less copy protection, more size visualization
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

64905 líneas
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", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. }
  2371. //species
  2372. function getSpeciesInfo(speciesList) {
  2373. let result = new Set();
  2374. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2375. result.add(entry)
  2376. });
  2377. return Array.from(result);
  2378. };
  2379. function getSpeciesInfoHelper(species) {
  2380. if (!speciesData[species]) {
  2381. console.warn(species + " doesn't exist");
  2382. return [];
  2383. }
  2384. if (speciesData[species].parents) {
  2385. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2386. } else {
  2387. return [species];
  2388. }
  2389. }
  2390. characterMakers.push(() => makeCharacter(
  2391. {
  2392. name: "Fen",
  2393. species: ["crux"],
  2394. description: {
  2395. title: "Bio",
  2396. text: "Very furry. Sheds on everything."
  2397. },
  2398. tags: [
  2399. "anthro",
  2400. "goo"
  2401. ]
  2402. },
  2403. {
  2404. front: {
  2405. height: math.unit(12, "feet"),
  2406. weight: math.unit(2400, "lb"),
  2407. preyCapacity: math.unit(1, "people"),
  2408. name: "Front",
  2409. image: {
  2410. source: "./media/characters/fen/front.svg",
  2411. extra: 1804/1562,
  2412. bottom: 205/2009
  2413. },
  2414. extraAttributes: {
  2415. pawSize: {
  2416. name: "Paw Size",
  2417. power: 2,
  2418. type: "area",
  2419. base: math.unit(0.35, "m^2")
  2420. }
  2421. }
  2422. },
  2423. diving: {
  2424. height: math.unit(4.9, "meters"),
  2425. weight: math.unit(2400, "lb"),
  2426. name: "Diving",
  2427. image: {
  2428. source: "./media/characters/fen/diving.svg"
  2429. }
  2430. },
  2431. sleeby: {
  2432. height: math.unit(3.45, "meters"),
  2433. weight: math.unit(2400, "lb"),
  2434. name: "Sleeby",
  2435. image: {
  2436. source: "./media/characters/fen/sleeby.svg"
  2437. }
  2438. },
  2439. goo: {
  2440. height: math.unit(12, "feet"),
  2441. weight: math.unit(3600, "lb"),
  2442. volume: math.unit(1000, "liters"),
  2443. preyCapacity: math.unit(6, "people"),
  2444. name: "Goo",
  2445. image: {
  2446. source: "./media/characters/fen/goo.svg",
  2447. extra: 1307/1071,
  2448. bottom: 134/1441
  2449. }
  2450. },
  2451. horror: {
  2452. height: math.unit(13.6, "feet"),
  2453. weight: math.unit(2400, "lb"),
  2454. preyCapacity: math.unit(1, "people"),
  2455. name: "Horror",
  2456. image: {
  2457. source: "./media/characters/fen/horror.svg",
  2458. extra: 893/797,
  2459. bottom: 0/893
  2460. }
  2461. },
  2462. gooNsfw: {
  2463. height: math.unit(12, "feet"),
  2464. weight: math.unit(3750, "lb"),
  2465. volume: math.unit(1000, "liters"),
  2466. preyCapacity: math.unit(6, "people"),
  2467. name: "Goo (NSFW)",
  2468. image: {
  2469. source: "./media/characters/fen/goo-nsfw.svg",
  2470. extra: 1875/1734,
  2471. bottom: 122/1997
  2472. }
  2473. },
  2474. maw: {
  2475. height: math.unit(5.03, "feet"),
  2476. name: "Maw",
  2477. image: {
  2478. source: "./media/characters/fen/maw.svg"
  2479. }
  2480. },
  2481. gooCeiling: {
  2482. height: math.unit(6.6, "feet"),
  2483. weight: math.unit(3000, "lb"),
  2484. volume: math.unit(1000, "liters"),
  2485. preyCapacity: math.unit(6, "people"),
  2486. name: "Maw (Goo)",
  2487. image: {
  2488. source: "./media/characters/fen/goo-maw.svg"
  2489. }
  2490. },
  2491. paw: {
  2492. height: math.unit(3.77, "feet"),
  2493. name: "Paw",
  2494. image: {
  2495. source: "./media/characters/fen/paw.svg"
  2496. },
  2497. extraAttributes: {
  2498. "toeSize": {
  2499. name: "Toe Size",
  2500. power: 2,
  2501. type: "area",
  2502. base: math.unit(0.02875, "m^2")
  2503. },
  2504. "pawSize": {
  2505. name: "Paw Size",
  2506. power: 2,
  2507. type: "area",
  2508. base: math.unit(0.378, "m^2")
  2509. },
  2510. }
  2511. },
  2512. tail: {
  2513. height: math.unit(12.1, "feet"),
  2514. name: "Tail",
  2515. image: {
  2516. source: "./media/characters/fen/tail.svg"
  2517. }
  2518. },
  2519. tailFull: {
  2520. height: math.unit(12.1, "feet"),
  2521. name: "Full Tail",
  2522. image: {
  2523. source: "./media/characters/fen/tail-full.svg"
  2524. }
  2525. },
  2526. back: {
  2527. height: math.unit(12, "feet"),
  2528. weight: math.unit(2400, "lb"),
  2529. name: "Back",
  2530. image: {
  2531. source: "./media/characters/fen/back.svg",
  2532. },
  2533. info: {
  2534. description: {
  2535. mode: "append",
  2536. text: "\n\nHe is not currently looking at you."
  2537. }
  2538. }
  2539. },
  2540. full: {
  2541. height: math.unit(1.85, "meter"),
  2542. weight: math.unit(3200, "lb"),
  2543. preyCapacity: math.unit(3, "people"),
  2544. name: "Full",
  2545. image: {
  2546. source: "./media/characters/fen/full.svg",
  2547. extra: 1133/859,
  2548. bottom: 145/1278
  2549. },
  2550. info: {
  2551. description: {
  2552. mode: "append",
  2553. text: "\n\nMunch."
  2554. }
  2555. }
  2556. },
  2557. gooLounging: {
  2558. height: math.unit(4.53, "feet"),
  2559. weight: math.unit(3000, "lb"),
  2560. preyCapacity: math.unit(6, "people"),
  2561. name: "Goo (Lounging)",
  2562. image: {
  2563. source: "./media/characters/fen/goo-lounging.svg",
  2564. bottom: 116 / 613
  2565. }
  2566. },
  2567. lounging: {
  2568. height: math.unit(10.52, "feet"),
  2569. weight: math.unit(2400, "lb"),
  2570. name: "Lounging",
  2571. image: {
  2572. source: "./media/characters/fen/lounging.svg"
  2573. }
  2574. },
  2575. },
  2576. [
  2577. {
  2578. name: "Small",
  2579. height: math.unit(2.2428, "meter")
  2580. },
  2581. {
  2582. name: "Normal",
  2583. height: math.unit(12, "feet"),
  2584. default: true,
  2585. },
  2586. {
  2587. name: "Big",
  2588. height: math.unit(20, "feet")
  2589. },
  2590. {
  2591. name: "Minimacro",
  2592. height: math.unit(40, "feet"),
  2593. info: {
  2594. description: {
  2595. mode: "append",
  2596. text: "\n\nTOO DAMN BIG"
  2597. }
  2598. }
  2599. },
  2600. {
  2601. name: "Macro",
  2602. height: math.unit(100, "feet"),
  2603. info: {
  2604. description: {
  2605. mode: "append",
  2606. text: "\n\nTOO DAMN BIG"
  2607. }
  2608. }
  2609. },
  2610. {
  2611. name: "Megamacro",
  2612. height: math.unit(2, "miles")
  2613. },
  2614. {
  2615. name: "Gigamacro",
  2616. height: math.unit(10, "earths")
  2617. },
  2618. ]
  2619. ))
  2620. characterMakers.push(() => makeCharacter(
  2621. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2622. {
  2623. front: {
  2624. height: math.unit(183, "cm"),
  2625. weight: math.unit(80, "kg"),
  2626. name: "Front",
  2627. image: {
  2628. source: "./media/characters/sofia-fluttertail/front.svg",
  2629. bottom: 0.01,
  2630. extra: 2154 / 2081
  2631. }
  2632. },
  2633. frontAlt: {
  2634. height: math.unit(183, "cm"),
  2635. weight: math.unit(80, "kg"),
  2636. name: "Front (alt)",
  2637. image: {
  2638. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2639. }
  2640. },
  2641. back: {
  2642. height: math.unit(183, "cm"),
  2643. weight: math.unit(80, "kg"),
  2644. name: "Back",
  2645. image: {
  2646. source: "./media/characters/sofia-fluttertail/back.svg"
  2647. }
  2648. },
  2649. kneeling: {
  2650. height: math.unit(125, "cm"),
  2651. weight: math.unit(80, "kg"),
  2652. name: "Kneeling",
  2653. image: {
  2654. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2655. extra: 1033 / 977,
  2656. bottom: 23.7 / 1057
  2657. }
  2658. },
  2659. maw: {
  2660. height: math.unit(183 / 5, "cm"),
  2661. name: "Maw",
  2662. image: {
  2663. source: "./media/characters/sofia-fluttertail/maw.svg"
  2664. }
  2665. },
  2666. mawcloseup: {
  2667. height: math.unit(183 / 5 * 0.41, "cm"),
  2668. name: "Maw (Closeup)",
  2669. image: {
  2670. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2671. }
  2672. },
  2673. paws: {
  2674. height: math.unit(1.17, "feet"),
  2675. name: "Paws",
  2676. image: {
  2677. source: "./media/characters/sofia-fluttertail/paws.svg",
  2678. extra: 851 / 851,
  2679. bottom: 17 / 868
  2680. }
  2681. },
  2682. },
  2683. [
  2684. {
  2685. name: "Normal",
  2686. height: math.unit(1.83, "meter")
  2687. },
  2688. {
  2689. name: "Size Thief",
  2690. height: math.unit(18, "feet")
  2691. },
  2692. {
  2693. name: "50 Foot Collie",
  2694. height: math.unit(50, "feet")
  2695. },
  2696. {
  2697. name: "Macro",
  2698. height: math.unit(96, "feet"),
  2699. default: true
  2700. },
  2701. {
  2702. name: "Megamerger",
  2703. height: math.unit(650, "feet")
  2704. },
  2705. ]
  2706. ))
  2707. characterMakers.push(() => makeCharacter(
  2708. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2709. {
  2710. front: {
  2711. height: math.unit(7, "feet"),
  2712. weight: math.unit(100, "kg"),
  2713. name: "Front",
  2714. image: {
  2715. source: "./media/characters/march/front.svg",
  2716. extra: 1992/1851,
  2717. bottom: 39/2031
  2718. }
  2719. },
  2720. foot: {
  2721. height: math.unit(0.9, "feet"),
  2722. name: "Foot",
  2723. image: {
  2724. source: "./media/characters/march/foot.svg"
  2725. }
  2726. },
  2727. },
  2728. [
  2729. {
  2730. name: "Normal",
  2731. height: math.unit(7.9, "feet")
  2732. },
  2733. {
  2734. name: "Macro",
  2735. height: math.unit(220, "meters")
  2736. },
  2737. {
  2738. name: "Megamacro",
  2739. height: math.unit(2.98, "km"),
  2740. default: true
  2741. },
  2742. {
  2743. name: "Gigamacro",
  2744. height: math.unit(15963, "km")
  2745. },
  2746. {
  2747. name: "Teramacro",
  2748. height: math.unit(2980000000, "km")
  2749. },
  2750. {
  2751. name: "Examacro",
  2752. height: math.unit(250, "parsecs")
  2753. },
  2754. ]
  2755. ))
  2756. characterMakers.push(() => makeCharacter(
  2757. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2758. {
  2759. front: {
  2760. height: math.unit(6, "feet"),
  2761. weight: math.unit(60, "kg"),
  2762. name: "Front",
  2763. image: {
  2764. source: "./media/characters/noir/front.svg",
  2765. extra: 1,
  2766. bottom: 0.032
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(6.6, "feet")
  2774. },
  2775. {
  2776. name: "Macro",
  2777. height: math.unit(500, "feet")
  2778. },
  2779. {
  2780. name: "Megamacro",
  2781. height: math.unit(2.5, "km"),
  2782. default: true
  2783. },
  2784. {
  2785. name: "Gigamacro",
  2786. height: math.unit(22500, "km")
  2787. },
  2788. {
  2789. name: "Teramacro",
  2790. height: math.unit(2500000000, "km")
  2791. },
  2792. {
  2793. name: "Examacro",
  2794. height: math.unit(200, "parsecs")
  2795. },
  2796. ]
  2797. ))
  2798. characterMakers.push(() => makeCharacter(
  2799. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2800. {
  2801. front: {
  2802. height: math.unit(7, "feet"),
  2803. weight: math.unit(100, "kg"),
  2804. name: "Front",
  2805. image: {
  2806. source: "./media/characters/okuri/front.svg",
  2807. extra: 739/665,
  2808. bottom: 39/778
  2809. }
  2810. },
  2811. back: {
  2812. height: math.unit(7, "feet"),
  2813. weight: math.unit(100, "kg"),
  2814. name: "Back",
  2815. image: {
  2816. source: "./media/characters/okuri/back.svg",
  2817. extra: 734/653,
  2818. bottom: 13/747
  2819. }
  2820. },
  2821. sitting: {
  2822. height: math.unit(2.95, "feet"),
  2823. weight: math.unit(100, "kg"),
  2824. name: "Sitting",
  2825. image: {
  2826. source: "./media/characters/okuri/sitting.svg",
  2827. extra: 370/318,
  2828. bottom: 99/469
  2829. }
  2830. },
  2831. },
  2832. [
  2833. {
  2834. name: "Smallest",
  2835. height: math.unit(5 + 2/12, "feet")
  2836. },
  2837. {
  2838. name: "Smaller",
  2839. height: math.unit(300, "feet")
  2840. },
  2841. {
  2842. name: "Small",
  2843. height: math.unit(1000, "feet")
  2844. },
  2845. {
  2846. name: "Macro",
  2847. height: math.unit(1, "mile")
  2848. },
  2849. {
  2850. name: "Mega Macro (Small)",
  2851. height: math.unit(20, "km")
  2852. },
  2853. {
  2854. name: "Mega Macro (Large)",
  2855. height: math.unit(600, "km")
  2856. },
  2857. {
  2858. name: "Giga Macro",
  2859. height: math.unit(10000, "km")
  2860. },
  2861. {
  2862. name: "Normal",
  2863. height: math.unit(577560, "km"),
  2864. default: true
  2865. },
  2866. {
  2867. name: "Large",
  2868. height: math.unit(4, "galaxies")
  2869. },
  2870. {
  2871. name: "Largest",
  2872. height: math.unit(15, "multiverses")
  2873. },
  2874. ]
  2875. ))
  2876. characterMakers.push(() => makeCharacter(
  2877. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2878. {
  2879. front: {
  2880. height: math.unit(7, "feet"),
  2881. weight: math.unit(100, "kg"),
  2882. name: "Front",
  2883. image: {
  2884. source: "./media/characters/manny/front.svg",
  2885. extra: 1,
  2886. bottom: 0.06
  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/manny/back.svg",
  2895. extra: 1,
  2896. bottom: 0.014
  2897. }
  2898. },
  2899. },
  2900. [
  2901. {
  2902. name: "Normal",
  2903. height: math.unit(7, "feet"),
  2904. },
  2905. {
  2906. name: "Macro",
  2907. height: math.unit(78, "feet"),
  2908. default: true
  2909. },
  2910. {
  2911. name: "Macro+",
  2912. height: math.unit(300, "meters")
  2913. },
  2914. {
  2915. name: "Macro++",
  2916. height: math.unit(2400, "meters")
  2917. },
  2918. {
  2919. name: "Megamacro",
  2920. height: math.unit(5167, "meters")
  2921. },
  2922. {
  2923. name: "Gigamacro",
  2924. height: math.unit(41769, "miles")
  2925. },
  2926. ]
  2927. ))
  2928. characterMakers.push(() => makeCharacter(
  2929. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2930. {
  2931. front: {
  2932. height: math.unit(7, "feet"),
  2933. weight: math.unit(100, "kg"),
  2934. name: "Front",
  2935. image: {
  2936. source: "./media/characters/adake/front-1.svg"
  2937. }
  2938. },
  2939. frontAlt: {
  2940. height: math.unit(7, "feet"),
  2941. weight: math.unit(100, "kg"),
  2942. name: "Front (Alt)",
  2943. image: {
  2944. source: "./media/characters/adake/front-2.svg",
  2945. extra: 1,
  2946. bottom: 0.01
  2947. }
  2948. },
  2949. back: {
  2950. height: math.unit(7, "feet"),
  2951. weight: math.unit(100, "kg"),
  2952. name: "Back",
  2953. image: {
  2954. source: "./media/characters/adake/back.svg",
  2955. }
  2956. },
  2957. kneel: {
  2958. height: math.unit(5.385, "feet"),
  2959. weight: math.unit(100, "kg"),
  2960. name: "Kneeling",
  2961. image: {
  2962. source: "./media/characters/adake/kneel.svg",
  2963. bottom: 0.052
  2964. }
  2965. },
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(7, "feet"),
  2971. },
  2972. {
  2973. name: "Macro",
  2974. height: math.unit(78, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Macro+",
  2979. height: math.unit(300, "meters")
  2980. },
  2981. {
  2982. name: "Macro++",
  2983. height: math.unit(2400, "meters")
  2984. },
  2985. {
  2986. name: "Megamacro",
  2987. height: math.unit(5167, "meters")
  2988. },
  2989. {
  2990. name: "Gigamacro",
  2991. height: math.unit(41769, "miles")
  2992. },
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2997. {
  2998. front: {
  2999. height: math.unit(1.65, "meters"),
  3000. weight: math.unit(50, "kg"),
  3001. name: "Front",
  3002. image: {
  3003. source: "./media/characters/elijah/front.svg",
  3004. extra: 858 / 830,
  3005. bottom: 95.5 / 953.8559
  3006. }
  3007. },
  3008. back: {
  3009. height: math.unit(1.65, "meters"),
  3010. weight: math.unit(50, "kg"),
  3011. name: "Back",
  3012. image: {
  3013. source: "./media/characters/elijah/back.svg",
  3014. extra: 895 / 850,
  3015. bottom: 5.3 / 897.956
  3016. }
  3017. },
  3018. frontNsfw: {
  3019. height: math.unit(1.65, "meters"),
  3020. weight: math.unit(50, "kg"),
  3021. name: "Front (NSFW)",
  3022. image: {
  3023. source: "./media/characters/elijah/front-nsfw.svg",
  3024. extra: 858 / 830,
  3025. bottom: 95.5 / 953.8559
  3026. }
  3027. },
  3028. backNsfw: {
  3029. height: math.unit(1.65, "meters"),
  3030. weight: math.unit(50, "kg"),
  3031. name: "Back (NSFW)",
  3032. image: {
  3033. source: "./media/characters/elijah/back-nsfw.svg",
  3034. extra: 895 / 850,
  3035. bottom: 5.3 / 897.956
  3036. }
  3037. },
  3038. dick: {
  3039. height: math.unit(1, "feet"),
  3040. name: "Dick",
  3041. image: {
  3042. source: "./media/characters/elijah/dick.svg"
  3043. }
  3044. },
  3045. beakOpen: {
  3046. height: math.unit(1.25, "feet"),
  3047. name: "Beak (Open)",
  3048. image: {
  3049. source: "./media/characters/elijah/beak-open.svg"
  3050. }
  3051. },
  3052. beakShut: {
  3053. height: math.unit(1.25, "feet"),
  3054. name: "Beak (Shut)",
  3055. image: {
  3056. source: "./media/characters/elijah/beak-shut.svg"
  3057. }
  3058. },
  3059. footFlexing: {
  3060. height: math.unit(1.61, "feet"),
  3061. name: "Foot (Flexing)",
  3062. image: {
  3063. source: "./media/characters/elijah/foot-flexing.svg"
  3064. }
  3065. },
  3066. footStepping: {
  3067. height: math.unit(1.44, "feet"),
  3068. name: "Foot (Stepping)",
  3069. image: {
  3070. source: "./media/characters/elijah/foot-stepping.svg"
  3071. }
  3072. },
  3073. plantigradeLeg: {
  3074. height: math.unit(2.34, "feet"),
  3075. name: "Plantigrade Leg",
  3076. image: {
  3077. source: "./media/characters/elijah/plantigrade-leg.svg"
  3078. }
  3079. },
  3080. plantigradeFootLeft: {
  3081. height: math.unit(0.9, "feet"),
  3082. name: "Plantigrade Foot (Left)",
  3083. image: {
  3084. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3085. }
  3086. },
  3087. plantigradeFootRight: {
  3088. height: math.unit(0.9, "feet"),
  3089. name: "Plantigrade Foot (Right)",
  3090. image: {
  3091. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3092. }
  3093. },
  3094. },
  3095. [
  3096. {
  3097. name: "Normal",
  3098. height: math.unit(1.65, "meters")
  3099. },
  3100. {
  3101. name: "Macro",
  3102. height: math.unit(55, "meters"),
  3103. default: true
  3104. },
  3105. {
  3106. name: "Macro+",
  3107. height: math.unit(105, "meters")
  3108. },
  3109. ]
  3110. ))
  3111. characterMakers.push(() => makeCharacter(
  3112. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3113. {
  3114. front: {
  3115. height: math.unit(7 + 2/12, "feet"),
  3116. weight: math.unit(320, "kg"),
  3117. preyCapacity: math.unit(0.276549935, "people"),
  3118. name: "Front",
  3119. image: {
  3120. source: "./media/characters/rai/front.svg",
  3121. extra: 1802/1696,
  3122. bottom: 68/1870
  3123. },
  3124. form: "anthro",
  3125. default: true
  3126. },
  3127. frontDressed: {
  3128. height: math.unit(7 + 2/12, "feet"),
  3129. weight: math.unit(320, "kg"),
  3130. preyCapacity: math.unit(0.276549935, "people"),
  3131. name: "Front (Dressed)",
  3132. image: {
  3133. source: "./media/characters/rai/front-dressed.svg",
  3134. extra: 1802/1696,
  3135. bottom: 68/1870
  3136. },
  3137. form: "anthro"
  3138. },
  3139. side: {
  3140. height: math.unit(7 + 2/12, "feet"),
  3141. weight: math.unit(320, "kg"),
  3142. preyCapacity: math.unit(0.276549935, "people"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/rai/side.svg",
  3146. extra: 1789/1710,
  3147. bottom: 115/1904
  3148. },
  3149. form: "anthro"
  3150. },
  3151. back: {
  3152. height: math.unit(7 + 2/12, "feet"),
  3153. weight: math.unit(320, "kg"),
  3154. preyCapacity: math.unit(0.276549935, "people"),
  3155. name: "Back",
  3156. image: {
  3157. source: "./media/characters/rai/back.svg",
  3158. extra: 1770/1707,
  3159. bottom: 28/1798
  3160. },
  3161. form: "anthro"
  3162. },
  3163. feral: {
  3164. height: math.unit(9.5, "feet"),
  3165. weight: math.unit(640, "kg"),
  3166. preyCapacity: math.unit(4, "people"),
  3167. name: "Feral",
  3168. image: {
  3169. source: "./media/characters/rai/feral.svg",
  3170. extra: 945/553,
  3171. bottom: 176/1121
  3172. },
  3173. form: "feral",
  3174. default: true
  3175. },
  3176. dragon: {
  3177. height: math.unit(23, "feet"),
  3178. weight: math.unit(50000, "lb"),
  3179. name: "Dragon",
  3180. image: {
  3181. source: "./media/characters/rai/dragon.svg",
  3182. extra: 2498 / 2030,
  3183. bottom: 85.2 / 2584
  3184. },
  3185. form: "dragon",
  3186. default: true
  3187. },
  3188. maw: {
  3189. height: math.unit(1.69, "feet"),
  3190. name: "Maw",
  3191. image: {
  3192. source: "./media/characters/rai/maw.svg"
  3193. },
  3194. form: "anthro"
  3195. },
  3196. },
  3197. [
  3198. {
  3199. name: "Normal",
  3200. height: math.unit(7 + 2/12, "feet"),
  3201. form: "anthro"
  3202. },
  3203. {
  3204. name: "Big",
  3205. height: math.unit(11, "feet"),
  3206. form: "anthro"
  3207. },
  3208. {
  3209. name: "Minimacro",
  3210. height: math.unit(77, "feet"),
  3211. form: "anthro"
  3212. },
  3213. {
  3214. name: "Macro",
  3215. height: math.unit(302, "feet"),
  3216. default: true,
  3217. form: "anthro"
  3218. },
  3219. {
  3220. name: "Normal",
  3221. height: math.unit(9.5, "feet"),
  3222. form: "feral",
  3223. default: true
  3224. },
  3225. {
  3226. name: "Normal",
  3227. height: math.unit(23, "feet"),
  3228. form: "dragon",
  3229. default: true
  3230. }
  3231. ],
  3232. {
  3233. "anthro": {
  3234. name: "Anthro",
  3235. default: true
  3236. },
  3237. "feral": {
  3238. name: "Feral",
  3239. },
  3240. "dragon": {
  3241. name: "Dragon",
  3242. },
  3243. }
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3247. {
  3248. frontDressed: {
  3249. height: math.unit(216, "feet"),
  3250. weight: math.unit(7000000, "lb"),
  3251. preyCapacity: math.unit(1321, "people"),
  3252. name: "Front (Dressed)",
  3253. image: {
  3254. source: "./media/characters/jazzy/front-dressed.svg",
  3255. extra: 2738 / 2651,
  3256. bottom: 41.8 / 2786
  3257. }
  3258. },
  3259. backDressed: {
  3260. height: math.unit(216, "feet"),
  3261. weight: math.unit(7000000, "lb"),
  3262. preyCapacity: math.unit(1321, "people"),
  3263. name: "Back (Dressed)",
  3264. image: {
  3265. source: "./media/characters/jazzy/back-dressed.svg",
  3266. extra: 2775 / 2673,
  3267. bottom: 36.8 / 2817
  3268. }
  3269. },
  3270. front: {
  3271. height: math.unit(216, "feet"),
  3272. weight: math.unit(7000000, "lb"),
  3273. preyCapacity: math.unit(1321, "people"),
  3274. name: "Front",
  3275. image: {
  3276. source: "./media/characters/jazzy/front.svg",
  3277. extra: 2738 / 2651,
  3278. bottom: 41.8 / 2786
  3279. }
  3280. },
  3281. back: {
  3282. height: math.unit(216, "feet"),
  3283. weight: math.unit(7000000, "lb"),
  3284. preyCapacity: math.unit(1321, "people"),
  3285. name: "Back",
  3286. image: {
  3287. source: "./media/characters/jazzy/back.svg",
  3288. extra: 2775 / 2673,
  3289. bottom: 36.8 / 2817
  3290. }
  3291. },
  3292. maw: {
  3293. height: math.unit(20, "feet"),
  3294. name: "Maw",
  3295. image: {
  3296. source: "./media/characters/jazzy/maw.svg"
  3297. }
  3298. },
  3299. paws: {
  3300. height: math.unit(27.5, "feet"),
  3301. name: "Paws",
  3302. image: {
  3303. source: "./media/characters/jazzy/paws.svg"
  3304. }
  3305. },
  3306. eye: {
  3307. height: math.unit(4.4, "feet"),
  3308. name: "Eye",
  3309. image: {
  3310. source: "./media/characters/jazzy/eye.svg"
  3311. }
  3312. },
  3313. droneOffense: {
  3314. height: math.unit(9.5, "inches"),
  3315. name: "Drone (Offense)",
  3316. image: {
  3317. source: "./media/characters/jazzy/drone-offense.svg"
  3318. }
  3319. },
  3320. droneRecon: {
  3321. height: math.unit(9.5, "inches"),
  3322. name: "Drone (Recon)",
  3323. image: {
  3324. source: "./media/characters/jazzy/drone-recon.svg"
  3325. }
  3326. },
  3327. droneDefense: {
  3328. height: math.unit(9.5, "inches"),
  3329. name: "Drone (Defense)",
  3330. image: {
  3331. source: "./media/characters/jazzy/drone-defense.svg"
  3332. }
  3333. },
  3334. },
  3335. [
  3336. {
  3337. name: "Macro",
  3338. height: math.unit(216, "feet"),
  3339. default: true
  3340. },
  3341. ]
  3342. ))
  3343. characterMakers.push(() => makeCharacter(
  3344. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3345. {
  3346. front: {
  3347. height: math.unit(9 + 6/12, "feet"),
  3348. weight: math.unit(700, "lb"),
  3349. name: "Front",
  3350. image: {
  3351. source: "./media/characters/flamm/front.svg",
  3352. extra: 1736/1596,
  3353. bottom: 93/1829
  3354. }
  3355. },
  3356. buff: {
  3357. height: math.unit(9 + 6/12, "feet"),
  3358. weight: math.unit(950, "lb"),
  3359. name: "Buff",
  3360. image: {
  3361. source: "./media/characters/flamm/buff.svg",
  3362. extra: 3018/2874,
  3363. bottom: 221/3239
  3364. }
  3365. },
  3366. },
  3367. [
  3368. {
  3369. name: "Normal",
  3370. height: math.unit(9.5, "feet")
  3371. },
  3372. {
  3373. name: "Macro",
  3374. height: math.unit(200, "feet"),
  3375. default: true
  3376. },
  3377. ]
  3378. ))
  3379. characterMakers.push(() => makeCharacter(
  3380. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3381. {
  3382. front: {
  3383. height: math.unit(5 + 3/12, "feet"),
  3384. weight: math.unit(60, "kg"),
  3385. name: "Front",
  3386. image: {
  3387. source: "./media/characters/zephiro/front.svg",
  3388. extra: 1873/1761,
  3389. bottom: 147/2020
  3390. }
  3391. },
  3392. side: {
  3393. height: math.unit(5 + 3/12, "feet"),
  3394. weight: math.unit(60, "kg"),
  3395. name: "Side",
  3396. image: {
  3397. source: "./media/characters/zephiro/side.svg",
  3398. extra: 1929/1827,
  3399. bottom: 65/1994
  3400. }
  3401. },
  3402. back: {
  3403. height: math.unit(5 + 3/12, "feet"),
  3404. weight: math.unit(60, "kg"),
  3405. name: "Back",
  3406. image: {
  3407. source: "./media/characters/zephiro/back.svg",
  3408. extra: 1926/1816,
  3409. bottom: 41/1967
  3410. }
  3411. },
  3412. hand: {
  3413. height: math.unit(0.68, "feet"),
  3414. name: "Hand",
  3415. image: {
  3416. source: "./media/characters/zephiro/hand.svg"
  3417. }
  3418. },
  3419. paw: {
  3420. height: math.unit(1, "feet"),
  3421. name: "Paw",
  3422. image: {
  3423. source: "./media/characters/zephiro/paw.svg"
  3424. }
  3425. },
  3426. beans: {
  3427. height: math.unit(0.93, "feet"),
  3428. name: "Beans",
  3429. image: {
  3430. source: "./media/characters/zephiro/beans.svg"
  3431. }
  3432. },
  3433. },
  3434. [
  3435. {
  3436. name: "Micro",
  3437. height: math.unit(3, "inches")
  3438. },
  3439. {
  3440. name: "Normal",
  3441. height: math.unit(5 + 3 / 12, "feet"),
  3442. default: true
  3443. },
  3444. {
  3445. name: "Macro",
  3446. height: math.unit(118, "feet")
  3447. },
  3448. ]
  3449. ))
  3450. characterMakers.push(() => makeCharacter(
  3451. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3452. {
  3453. front: {
  3454. height: math.unit(5, "feet"),
  3455. weight: math.unit(90, "kg"),
  3456. preyCapacity: math.unit(14, "people"),
  3457. name: "Front",
  3458. image: {
  3459. source: "./media/characters/fory/front.svg",
  3460. extra: 2862 / 2674,
  3461. bottom: 180 / 3043.8
  3462. },
  3463. form: "weaselbun",
  3464. default: true,
  3465. extraAttributes: {
  3466. "pawSize": {
  3467. name: "Paw Size",
  3468. power: 2,
  3469. type: "area",
  3470. base: math.unit(0.1596, "m^2")
  3471. },
  3472. "pawLength": {
  3473. name: "Paw Length",
  3474. power: 1,
  3475. type: "length",
  3476. base: math.unit(0.7, "m")
  3477. }
  3478. }
  3479. },
  3480. back: {
  3481. height: math.unit(5, "feet"),
  3482. weight: math.unit(90, "kg"),
  3483. preyCapacity: math.unit(14, "people"),
  3484. name: "Back",
  3485. image: {
  3486. source: "./media/characters/fory/back.svg",
  3487. extra: 1790/1672,
  3488. bottom: 84/1874
  3489. },
  3490. form: "weaselbun",
  3491. extraAttributes: {
  3492. "pawSize": {
  3493. name: "Paw Size",
  3494. power: 2,
  3495. type: "area",
  3496. base: math.unit(0.1596, "m^2")
  3497. },
  3498. "pawLength": {
  3499. name: "Paw Length",
  3500. power: 1,
  3501. type: "length",
  3502. base: math.unit(0.7, "m")
  3503. }
  3504. }
  3505. },
  3506. paw: {
  3507. height: math.unit(2.14, "feet"),
  3508. name: "Paw",
  3509. image: {
  3510. source: "./media/characters/fory/paw.svg"
  3511. },
  3512. form: "weaselbun",
  3513. extraAttributes: {
  3514. "pawSize": {
  3515. name: "Paw Size",
  3516. power: 2,
  3517. type: "area",
  3518. base: math.unit(0.1596, "m^2")
  3519. },
  3520. "pawLength": {
  3521. name: "Paw Length",
  3522. power: 1,
  3523. type: "length",
  3524. base: math.unit(0.48, "m")
  3525. }
  3526. }
  3527. },
  3528. bunBack: {
  3529. height: math.unit(3, "feet"),
  3530. weight: math.unit(20, "kg"),
  3531. preyCapacity: math.unit(3, "people"),
  3532. name: "Back",
  3533. image: {
  3534. source: "./media/characters/fory/bun-back.svg",
  3535. extra: 1749/1564,
  3536. bottom: 246/1995
  3537. },
  3538. form: "bun",
  3539. default: true,
  3540. extraAttributes: {
  3541. "pawSize": {
  3542. name: "Paw Size",
  3543. power: 2,
  3544. type: "area",
  3545. base: math.unit(0.072, "m^2")
  3546. },
  3547. "pawLength": {
  3548. name: "Paw Length",
  3549. power: 1,
  3550. type: "length",
  3551. base: math.unit(0.45, "m")
  3552. }
  3553. }
  3554. },
  3555. },
  3556. [
  3557. {
  3558. name: "Normal",
  3559. height: math.unit(5, "feet"),
  3560. form: "weaselbun"
  3561. },
  3562. {
  3563. name: "Macro",
  3564. height: math.unit(50, "feet"),
  3565. default: true,
  3566. form: "weaselbun"
  3567. },
  3568. {
  3569. name: "Megamacro",
  3570. height: math.unit(10, "miles"),
  3571. form: "weaselbun"
  3572. },
  3573. {
  3574. name: "Gigamacro",
  3575. height: math.unit(5, "earths"),
  3576. form: "weaselbun"
  3577. },
  3578. {
  3579. name: "Normal",
  3580. height: math.unit(3, "feet"),
  3581. default: true,
  3582. form: "bun"
  3583. },
  3584. {
  3585. name: "Fun-Size",
  3586. height: math.unit(12, "feet"),
  3587. form: "bun"
  3588. },
  3589. {
  3590. name: "Macro",
  3591. height: math.unit(100, "feet"),
  3592. form: "bun"
  3593. },
  3594. {
  3595. name: "Planetary",
  3596. height: math.unit(3, "earths"),
  3597. form: "bun"
  3598. },
  3599. ],
  3600. {
  3601. "weaselbun": {
  3602. name: "Weaselbun",
  3603. default: true
  3604. },
  3605. "bun": {
  3606. name: "Bun",
  3607. },
  3608. }
  3609. ))
  3610. characterMakers.push(() => makeCharacter(
  3611. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3612. {
  3613. front: {
  3614. height: math.unit(7, "feet"),
  3615. weight: math.unit(90, "kg"),
  3616. name: "Front",
  3617. image: {
  3618. source: "./media/characters/kurrikage/front.svg",
  3619. extra: 1845/1733,
  3620. bottom: 119/1964
  3621. }
  3622. },
  3623. back: {
  3624. height: math.unit(7, "feet"),
  3625. weight: math.unit(90, "kg"),
  3626. name: "Back",
  3627. image: {
  3628. source: "./media/characters/kurrikage/back.svg",
  3629. extra: 1790/1677,
  3630. bottom: 61/1851
  3631. }
  3632. },
  3633. dressed: {
  3634. height: math.unit(7, "feet"),
  3635. weight: math.unit(90, "kg"),
  3636. name: "Dressed",
  3637. image: {
  3638. source: "./media/characters/kurrikage/dressed.svg",
  3639. extra: 1845/1733,
  3640. bottom: 119/1964
  3641. }
  3642. },
  3643. foot: {
  3644. height: math.unit(1.5, "feet"),
  3645. name: "Foot",
  3646. image: {
  3647. source: "./media/characters/kurrikage/foot.svg"
  3648. }
  3649. },
  3650. staff: {
  3651. height: math.unit(6.7, "feet"),
  3652. name: "Staff",
  3653. image: {
  3654. source: "./media/characters/kurrikage/staff.svg"
  3655. }
  3656. },
  3657. peek: {
  3658. height: math.unit(1.05, "feet"),
  3659. name: "Peeking",
  3660. image: {
  3661. source: "./media/characters/kurrikage/peek.svg",
  3662. bottom: 0.08
  3663. }
  3664. },
  3665. },
  3666. [
  3667. {
  3668. name: "Normal",
  3669. height: math.unit(12, "feet"),
  3670. default: true
  3671. },
  3672. {
  3673. name: "Big",
  3674. height: math.unit(20, "feet")
  3675. },
  3676. {
  3677. name: "Macro",
  3678. height: math.unit(500, "feet")
  3679. },
  3680. {
  3681. name: "Megamacro",
  3682. height: math.unit(20, "miles")
  3683. },
  3684. ]
  3685. ))
  3686. characterMakers.push(() => makeCharacter(
  3687. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3688. {
  3689. front: {
  3690. height: math.unit(6, "feet"),
  3691. weight: math.unit(75, "kg"),
  3692. name: "Front",
  3693. image: {
  3694. source: "./media/characters/shingo/front.svg",
  3695. extra: 1900/1825,
  3696. bottom: 82/1982
  3697. }
  3698. },
  3699. side: {
  3700. height: math.unit(6, "feet"),
  3701. weight: math.unit(75, "kg"),
  3702. name: "Side",
  3703. image: {
  3704. source: "./media/characters/shingo/side.svg",
  3705. extra: 1930/1865,
  3706. bottom: 16/1946
  3707. }
  3708. },
  3709. back: {
  3710. height: math.unit(6, "feet"),
  3711. weight: math.unit(75, "kg"),
  3712. name: "Back",
  3713. image: {
  3714. source: "./media/characters/shingo/back.svg",
  3715. extra: 1922/1852,
  3716. bottom: 16/1938
  3717. }
  3718. },
  3719. frontDressed: {
  3720. height: math.unit(6, "feet"),
  3721. weight: math.unit(150, "lb"),
  3722. name: "Front-dressed",
  3723. image: {
  3724. source: "./media/characters/shingo/front-dressed.svg",
  3725. extra: 1900/1825,
  3726. bottom: 82/1982
  3727. }
  3728. },
  3729. paw: {
  3730. height: math.unit(1.29, "feet"),
  3731. name: "Paw",
  3732. image: {
  3733. source: "./media/characters/shingo/paw.svg"
  3734. }
  3735. },
  3736. hand: {
  3737. height: math.unit(1.07, "feet"),
  3738. name: "Hand",
  3739. image: {
  3740. source: "./media/characters/shingo/hand.svg"
  3741. }
  3742. },
  3743. frontAlt: {
  3744. height: math.unit(6, "feet"),
  3745. weight: math.unit(75, "kg"),
  3746. name: "Front (Alt)",
  3747. image: {
  3748. source: "./media/characters/shingo/front-alt.svg",
  3749. extra: 3511 / 3338,
  3750. bottom: 0.005
  3751. }
  3752. },
  3753. frontAlt2: {
  3754. height: math.unit(6, "feet"),
  3755. weight: math.unit(75, "kg"),
  3756. name: "Front (Alt 2)",
  3757. image: {
  3758. source: "./media/characters/shingo/front-alt-2.svg",
  3759. extra: 706/681,
  3760. bottom: 11/717
  3761. }
  3762. },
  3763. pawAlt: {
  3764. height: math.unit(1, "feet"),
  3765. name: "Paw (Alt)",
  3766. image: {
  3767. source: "./media/characters/shingo/paw-alt.svg"
  3768. }
  3769. },
  3770. },
  3771. [
  3772. {
  3773. name: "Micro",
  3774. height: math.unit(4, "inches")
  3775. },
  3776. {
  3777. name: "Normal",
  3778. height: math.unit(6, "feet"),
  3779. default: true
  3780. },
  3781. {
  3782. name: "Macro",
  3783. height: math.unit(108, "feet")
  3784. },
  3785. {
  3786. name: "Macro+",
  3787. height: math.unit(1500, "feet")
  3788. },
  3789. ]
  3790. ))
  3791. characterMakers.push(() => makeCharacter(
  3792. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3793. {
  3794. side: {
  3795. height: math.unit(6, "feet"),
  3796. weight: math.unit(75, "kg"),
  3797. name: "Side",
  3798. image: {
  3799. source: "./media/characters/aigey/side.svg"
  3800. }
  3801. },
  3802. },
  3803. [
  3804. {
  3805. name: "Macro",
  3806. height: math.unit(200, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Megamacro",
  3811. height: math.unit(100, "miles")
  3812. },
  3813. ]
  3814. )
  3815. )
  3816. characterMakers.push(() => makeCharacter(
  3817. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3818. {
  3819. front: {
  3820. height: math.unit(5 + 5 / 12, "feet"),
  3821. weight: math.unit(75, "kg"),
  3822. name: "Front",
  3823. image: {
  3824. source: "./media/characters/natasha/front.svg",
  3825. extra: 859 / 824,
  3826. bottom: 23 / 879.6
  3827. }
  3828. },
  3829. frontNsfw: {
  3830. height: math.unit(5 + 5 / 12, "feet"),
  3831. weight: math.unit(75, "kg"),
  3832. name: "Front (NSFW)",
  3833. image: {
  3834. source: "./media/characters/natasha/front-nsfw.svg",
  3835. extra: 859 / 824,
  3836. bottom: 23 / 879.6
  3837. }
  3838. },
  3839. frontErect: {
  3840. height: math.unit(5 + 5 / 12, "feet"),
  3841. weight: math.unit(75, "kg"),
  3842. name: "Front (Erect)",
  3843. image: {
  3844. source: "./media/characters/natasha/front-erect.svg",
  3845. extra: 859 / 824,
  3846. bottom: 23 / 879.6
  3847. }
  3848. },
  3849. back: {
  3850. height: math.unit(5 + 5 / 12, "feet"),
  3851. weight: math.unit(75, "kg"),
  3852. name: "Back",
  3853. image: {
  3854. source: "./media/characters/natasha/back.svg",
  3855. extra: 887.9 / 852.6,
  3856. bottom: 9.7 / 896.4
  3857. }
  3858. },
  3859. backAlt: {
  3860. height: math.unit(5 + 5 / 12, "feet"),
  3861. weight: math.unit(75, "kg"),
  3862. name: "Back (Alt)",
  3863. image: {
  3864. source: "./media/characters/natasha/back-alt.svg",
  3865. extra: 1236.7 / 1192,
  3866. bottom: 22.3 / 1258.2
  3867. }
  3868. },
  3869. dick: {
  3870. height: math.unit(1.772, "feet"),
  3871. name: "Dick",
  3872. image: {
  3873. source: "./media/characters/natasha/dick.svg"
  3874. }
  3875. },
  3876. paw: {
  3877. height: math.unit(0.250, "meters"),
  3878. name: "Paw",
  3879. image: {
  3880. source: "./media/characters/natasha/paw.svg"
  3881. },
  3882. extraAttributes: {
  3883. "toeSize": {
  3884. name: "Toe Size",
  3885. power: 2,
  3886. type: "area",
  3887. base: math.unit(0.0024, "m^2")
  3888. },
  3889. "padSize": {
  3890. name: "Pad Size",
  3891. power: 2,
  3892. type: "area",
  3893. base: math.unit(0.00889, "m^2")
  3894. },
  3895. "pawSize": {
  3896. name: "Paw Size",
  3897. power: 2,
  3898. type: "area",
  3899. base: math.unit(0.023667, "m^2")
  3900. },
  3901. }
  3902. },
  3903. },
  3904. [
  3905. {
  3906. name: "Shortstack",
  3907. height: math.unit(3, "feet"),
  3908. default: true
  3909. },
  3910. {
  3911. name: "Normal",
  3912. height: math.unit(5 + 5 / 12, "feet")
  3913. },
  3914. {
  3915. name: "Large",
  3916. height: math.unit(12, "feet")
  3917. },
  3918. {
  3919. name: "Macro",
  3920. height: math.unit(100, "feet")
  3921. },
  3922. {
  3923. name: "Macro+",
  3924. height: math.unit(260, "feet")
  3925. },
  3926. {
  3927. name: "Macro++",
  3928. height: math.unit(1, "mile")
  3929. },
  3930. ]
  3931. ))
  3932. characterMakers.push(() => makeCharacter(
  3933. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3934. {
  3935. front: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(75, "kg"),
  3938. name: "Front",
  3939. image: {
  3940. source: "./media/characters/malik/front.svg",
  3941. extra: 1750/1561,
  3942. bottom: 80/1830
  3943. },
  3944. extraAttributes: {
  3945. "toeSize": {
  3946. name: "Toe Size",
  3947. power: 2,
  3948. type: "area",
  3949. base: math.unit(0.0159, "m^2")
  3950. },
  3951. "pawSize": {
  3952. name: "Paw Size",
  3953. power: 2,
  3954. type: "area",
  3955. base: math.unit(0.09834, "m^2")
  3956. },
  3957. }
  3958. },
  3959. side: {
  3960. height: math.unit(6, "feet"),
  3961. weight: math.unit(75, "kg"),
  3962. name: "Side",
  3963. image: {
  3964. source: "./media/characters/malik/side.svg",
  3965. extra: 1802/1685,
  3966. bottom: 42/1844
  3967. },
  3968. extraAttributes: {
  3969. "toeSize": {
  3970. name: "Toe Size",
  3971. power: 2,
  3972. type: "area",
  3973. base: math.unit(0.0159, "m^2")
  3974. },
  3975. "pawSize": {
  3976. name: "Paw Size",
  3977. power: 2,
  3978. type: "area",
  3979. base: math.unit(0.09834, "m^2")
  3980. },
  3981. }
  3982. },
  3983. back: {
  3984. height: math.unit(6, "feet"),
  3985. weight: math.unit(75, "kg"),
  3986. name: "Back",
  3987. image: {
  3988. source: "./media/characters/malik/back.svg",
  3989. extra: 1803/1607,
  3990. bottom: 33/1836
  3991. },
  3992. extraAttributes: {
  3993. "toeSize": {
  3994. name: "Toe Size",
  3995. power: 2,
  3996. type: "area",
  3997. base: math.unit(0.0159, "m^2")
  3998. },
  3999. "pawSize": {
  4000. name: "Paw Size",
  4001. power: 2,
  4002. type: "area",
  4003. base: math.unit(0.09834, "m^2")
  4004. },
  4005. }
  4006. },
  4007. },
  4008. [
  4009. {
  4010. name: "Macro",
  4011. height: math.unit(156, "feet"),
  4012. default: true
  4013. },
  4014. {
  4015. name: "Macro+",
  4016. height: math.unit(1188, "feet")
  4017. },
  4018. ]
  4019. ))
  4020. characterMakers.push(() => makeCharacter(
  4021. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4022. {
  4023. front: {
  4024. height: math.unit(6, "feet"),
  4025. weight: math.unit(75, "kg"),
  4026. name: "Front",
  4027. image: {
  4028. source: "./media/characters/sefer/front.svg",
  4029. extra: 848 / 659,
  4030. bottom: 28.3 / 876.442
  4031. }
  4032. },
  4033. back: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(75, "kg"),
  4036. name: "Back",
  4037. image: {
  4038. source: "./media/characters/sefer/back.svg",
  4039. extra: 864 / 695,
  4040. bottom: 10 / 871
  4041. }
  4042. },
  4043. frontDressed: {
  4044. height: math.unit(6, "feet"),
  4045. weight: math.unit(75, "kg"),
  4046. name: "Dressed",
  4047. image: {
  4048. source: "./media/characters/sefer/dressed.svg",
  4049. extra: 839 / 653,
  4050. bottom: 37.6 / 878
  4051. }
  4052. },
  4053. },
  4054. [
  4055. {
  4056. name: "Normal",
  4057. height: math.unit(6, "feet"),
  4058. default: true
  4059. },
  4060. {
  4061. name: "Big",
  4062. height: math.unit(8, "meters")
  4063. },
  4064. ]
  4065. ))
  4066. characterMakers.push(() => makeCharacter(
  4067. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4068. {
  4069. body: {
  4070. height: math.unit(2.2428, "meter"),
  4071. weight: math.unit(124.738, "kg"),
  4072. name: "Body",
  4073. image: {
  4074. extra: 1225 / 1050,
  4075. source: "./media/characters/north/front.svg"
  4076. }
  4077. }
  4078. },
  4079. [
  4080. {
  4081. name: "Micro",
  4082. height: math.unit(4, "inches")
  4083. },
  4084. {
  4085. name: "Macro",
  4086. height: math.unit(63, "meters")
  4087. },
  4088. {
  4089. name: "Megamacro",
  4090. height: math.unit(101, "miles"),
  4091. default: true
  4092. }
  4093. ]
  4094. ))
  4095. characterMakers.push(() => makeCharacter(
  4096. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4097. {
  4098. angled: {
  4099. height: math.unit(4, "meter"),
  4100. weight: math.unit(150, "kg"),
  4101. name: "Angled",
  4102. image: {
  4103. source: "./media/characters/talan/angled-sfw.svg",
  4104. bottom: 29 / 3734
  4105. }
  4106. },
  4107. angledNsfw: {
  4108. height: math.unit(4, "meter"),
  4109. weight: math.unit(150, "kg"),
  4110. name: "Angled (NSFW)",
  4111. image: {
  4112. source: "./media/characters/talan/angled-nsfw.svg",
  4113. bottom: 29 / 3734
  4114. }
  4115. },
  4116. frontNsfw: {
  4117. height: math.unit(4, "meter"),
  4118. weight: math.unit(150, "kg"),
  4119. name: "Front (NSFW)",
  4120. image: {
  4121. source: "./media/characters/talan/front-nsfw.svg",
  4122. bottom: 29 / 3734
  4123. }
  4124. },
  4125. sideNsfw: {
  4126. height: math.unit(4, "meter"),
  4127. weight: math.unit(150, "kg"),
  4128. name: "Side (NSFW)",
  4129. image: {
  4130. source: "./media/characters/talan/side-nsfw.svg",
  4131. bottom: 29 / 3734
  4132. }
  4133. },
  4134. back: {
  4135. height: math.unit(4, "meter"),
  4136. weight: math.unit(150, "kg"),
  4137. name: "Back",
  4138. image: {
  4139. source: "./media/characters/talan/back.svg"
  4140. }
  4141. },
  4142. dickBottom: {
  4143. height: math.unit(0.621, "meter"),
  4144. name: "Dick (Bottom)",
  4145. image: {
  4146. source: "./media/characters/talan/dick-bottom.svg"
  4147. }
  4148. },
  4149. dickTop: {
  4150. height: math.unit(0.621, "meter"),
  4151. name: "Dick (Top)",
  4152. image: {
  4153. source: "./media/characters/talan/dick-top.svg"
  4154. }
  4155. },
  4156. dickSide: {
  4157. height: math.unit(0.305, "meter"),
  4158. name: "Dick (Side)",
  4159. image: {
  4160. source: "./media/characters/talan/dick-side.svg"
  4161. }
  4162. },
  4163. dickFront: {
  4164. height: math.unit(0.305, "meter"),
  4165. name: "Dick (Front)",
  4166. image: {
  4167. source: "./media/characters/talan/dick-front.svg"
  4168. }
  4169. },
  4170. },
  4171. [
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(4, "meters")
  4175. },
  4176. {
  4177. name: "Macro",
  4178. height: math.unit(100, "meters")
  4179. },
  4180. {
  4181. name: "Megamacro",
  4182. height: math.unit(2, "miles"),
  4183. default: true
  4184. },
  4185. {
  4186. name: "Gigamacro",
  4187. height: math.unit(5000, "miles")
  4188. },
  4189. {
  4190. name: "Teramacro",
  4191. height: math.unit(100, "parsecs")
  4192. }
  4193. ]
  4194. ))
  4195. characterMakers.push(() => makeCharacter(
  4196. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4197. {
  4198. front: {
  4199. height: math.unit(2, "meter"),
  4200. weight: math.unit(90, "kg"),
  4201. name: "Front",
  4202. image: {
  4203. source: "./media/characters/gael'rathus/front.svg"
  4204. }
  4205. },
  4206. frontAlt: {
  4207. height: math.unit(2, "meter"),
  4208. weight: math.unit(90, "kg"),
  4209. name: "Front (alt)",
  4210. image: {
  4211. source: "./media/characters/gael'rathus/front-alt.svg"
  4212. }
  4213. },
  4214. frontAlt2: {
  4215. height: math.unit(2, "meter"),
  4216. weight: math.unit(90, "kg"),
  4217. name: "Front (alt 2)",
  4218. image: {
  4219. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4220. }
  4221. }
  4222. },
  4223. [
  4224. {
  4225. name: "Normal",
  4226. height: math.unit(9, "feet"),
  4227. default: true
  4228. },
  4229. {
  4230. name: "Large",
  4231. height: math.unit(25, "feet")
  4232. },
  4233. {
  4234. name: "Macro",
  4235. height: math.unit(0.25, "miles")
  4236. },
  4237. {
  4238. name: "Megamacro",
  4239. height: math.unit(10, "miles")
  4240. }
  4241. ]
  4242. ))
  4243. characterMakers.push(() => makeCharacter(
  4244. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4245. {
  4246. side: {
  4247. height: math.unit(2, "meter"),
  4248. weight: math.unit(140, "kg"),
  4249. name: "Side",
  4250. image: {
  4251. source: "./media/characters/sosha/side.svg",
  4252. extra: 1170/1006,
  4253. bottom: 94/1264
  4254. }
  4255. },
  4256. maw: {
  4257. height: math.unit(2.87, "feet"),
  4258. name: "Maw",
  4259. image: {
  4260. source: "./media/characters/sosha/maw.svg",
  4261. extra: 966/865,
  4262. bottom: 0/966
  4263. }
  4264. },
  4265. cooch: {
  4266. height: math.unit(5.6, "feet"),
  4267. name: "Cooch",
  4268. image: {
  4269. source: "./media/characters/sosha/cooch.svg"
  4270. }
  4271. },
  4272. },
  4273. [
  4274. {
  4275. name: "Normal",
  4276. height: math.unit(12, "feet"),
  4277. default: true
  4278. }
  4279. ]
  4280. ))
  4281. characterMakers.push(() => makeCharacter(
  4282. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4283. {
  4284. side: {
  4285. height: math.unit(5 + 5 / 12, "feet"),
  4286. weight: math.unit(170, "kg"),
  4287. name: "Side",
  4288. image: {
  4289. source: "./media/characters/runnola/side.svg",
  4290. extra: 741 / 448,
  4291. bottom: 0.05
  4292. }
  4293. },
  4294. },
  4295. [
  4296. {
  4297. name: "Small",
  4298. height: math.unit(3, "feet")
  4299. },
  4300. {
  4301. name: "Normal",
  4302. height: math.unit(5 + 5 / 12, "feet"),
  4303. default: true
  4304. },
  4305. {
  4306. name: "Big",
  4307. height: math.unit(10, "feet")
  4308. },
  4309. ]
  4310. ))
  4311. characterMakers.push(() => makeCharacter(
  4312. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4313. {
  4314. front: {
  4315. height: math.unit(2, "meter"),
  4316. weight: math.unit(50, "kg"),
  4317. name: "Front",
  4318. image: {
  4319. source: "./media/characters/kurribird/front.svg",
  4320. bottom: 0.015
  4321. }
  4322. },
  4323. frontAlt: {
  4324. height: math.unit(1.5, "meter"),
  4325. weight: math.unit(50, "kg"),
  4326. name: "Front (Alt)",
  4327. image: {
  4328. source: "./media/characters/kurribird/front-alt.svg",
  4329. extra: 1.45
  4330. }
  4331. },
  4332. },
  4333. [
  4334. {
  4335. name: "Normal",
  4336. height: math.unit(7, "feet")
  4337. },
  4338. {
  4339. name: "Big",
  4340. height: math.unit(12, "feet"),
  4341. default: true
  4342. },
  4343. {
  4344. name: "Macro",
  4345. height: math.unit(1500, "feet")
  4346. },
  4347. {
  4348. name: "Megamacro",
  4349. height: math.unit(2, "miles")
  4350. }
  4351. ]
  4352. ))
  4353. characterMakers.push(() => makeCharacter(
  4354. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4355. {
  4356. front: {
  4357. height: math.unit(2, "meter"),
  4358. weight: math.unit(80, "kg"),
  4359. name: "Front",
  4360. image: {
  4361. source: "./media/characters/elbial/front.svg",
  4362. extra: 1643 / 1556,
  4363. bottom: 60.2 / 1696
  4364. }
  4365. },
  4366. side: {
  4367. height: math.unit(2, "meter"),
  4368. weight: math.unit(80, "kg"),
  4369. name: "Side",
  4370. image: {
  4371. source: "./media/characters/elbial/side.svg",
  4372. extra: 1601/1528,
  4373. bottom: 97/1698
  4374. }
  4375. },
  4376. back: {
  4377. height: math.unit(2, "meter"),
  4378. weight: math.unit(80, "kg"),
  4379. name: "Back",
  4380. image: {
  4381. source: "./media/characters/elbial/back.svg",
  4382. extra: 1653/1569,
  4383. bottom: 20/1673
  4384. }
  4385. },
  4386. frontDressed: {
  4387. height: math.unit(2, "meter"),
  4388. weight: math.unit(80, "kg"),
  4389. name: "Front (Dressed)",
  4390. image: {
  4391. source: "./media/characters/elbial/front-dressed.svg",
  4392. extra: 1638/1569,
  4393. bottom: 70/1708
  4394. }
  4395. },
  4396. genitals: {
  4397. height: math.unit(2 / 3.367, "meter"),
  4398. name: "Genitals",
  4399. image: {
  4400. source: "./media/characters/elbial/genitals.svg"
  4401. }
  4402. },
  4403. },
  4404. [
  4405. {
  4406. name: "Large",
  4407. height: math.unit(100, "feet")
  4408. },
  4409. {
  4410. name: "Macro",
  4411. height: math.unit(500, "feet"),
  4412. default: true
  4413. },
  4414. {
  4415. name: "Megamacro",
  4416. height: math.unit(10, "miles")
  4417. },
  4418. {
  4419. name: "Gigamacro",
  4420. height: math.unit(25000, "miles")
  4421. },
  4422. {
  4423. name: "Full-Size",
  4424. height: math.unit(8000000, "gigaparsecs")
  4425. }
  4426. ]
  4427. ))
  4428. characterMakers.push(() => makeCharacter(
  4429. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4430. {
  4431. front: {
  4432. height: math.unit(2, "meter"),
  4433. weight: math.unit(60, "kg"),
  4434. name: "Front",
  4435. image: {
  4436. source: "./media/characters/noah/front.svg",
  4437. extra: 1383/1313,
  4438. bottom: 104/1487
  4439. }
  4440. },
  4441. hand: {
  4442. height: math.unit(0.6, "feet"),
  4443. name: "Hand",
  4444. image: {
  4445. source: "./media/characters/noah/hand.svg"
  4446. }
  4447. },
  4448. talons: {
  4449. height: math.unit(1.385, "feet"),
  4450. name: "Talons",
  4451. image: {
  4452. source: "./media/characters/noah/talons.svg"
  4453. }
  4454. },
  4455. beak: {
  4456. height: math.unit(0.43, "feet"),
  4457. name: "Beak",
  4458. image: {
  4459. source: "./media/characters/noah/beak.svg"
  4460. }
  4461. },
  4462. collar: {
  4463. height: math.unit(0.88, "feet"),
  4464. name: "Collar",
  4465. image: {
  4466. source: "./media/characters/noah/collar.svg"
  4467. }
  4468. },
  4469. eyeNarrow: {
  4470. height: math.unit(0.18, "feet"),
  4471. name: "Eye (Narrow)",
  4472. image: {
  4473. source: "./media/characters/noah/eye-narrow.svg"
  4474. }
  4475. },
  4476. eyeNormal: {
  4477. height: math.unit(0.18, "feet"),
  4478. name: "Eye (Normal)",
  4479. image: {
  4480. source: "./media/characters/noah/eye-normal.svg"
  4481. }
  4482. },
  4483. eyeWide: {
  4484. height: math.unit(0.18, "feet"),
  4485. name: "Eye (Wide)",
  4486. image: {
  4487. source: "./media/characters/noah/eye-wide.svg"
  4488. }
  4489. },
  4490. ear: {
  4491. height: math.unit(0.64, "feet"),
  4492. name: "Ear",
  4493. image: {
  4494. source: "./media/characters/noah/ear.svg"
  4495. }
  4496. },
  4497. },
  4498. [
  4499. {
  4500. name: "Large",
  4501. height: math.unit(50, "feet")
  4502. },
  4503. {
  4504. name: "Macro",
  4505. height: math.unit(750, "feet"),
  4506. default: true
  4507. },
  4508. {
  4509. name: "Megamacro",
  4510. height: math.unit(50, "miles")
  4511. },
  4512. {
  4513. name: "Gigamacro",
  4514. height: math.unit(100000, "miles")
  4515. },
  4516. {
  4517. name: "Full-Size",
  4518. height: math.unit(3000000000, "miles")
  4519. }
  4520. ]
  4521. ))
  4522. characterMakers.push(() => makeCharacter(
  4523. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4524. {
  4525. front: {
  4526. height: math.unit(2, "meter"),
  4527. weight: math.unit(80, "kg"),
  4528. name: "Front",
  4529. image: {
  4530. source: "./media/characters/natalya/front.svg"
  4531. }
  4532. },
  4533. back: {
  4534. height: math.unit(2, "meter"),
  4535. weight: math.unit(80, "kg"),
  4536. name: "Back",
  4537. image: {
  4538. source: "./media/characters/natalya/back.svg"
  4539. }
  4540. }
  4541. },
  4542. [
  4543. {
  4544. name: "Normal",
  4545. height: math.unit(150, "feet"),
  4546. default: true
  4547. },
  4548. {
  4549. name: "Megamacro",
  4550. height: math.unit(5, "miles")
  4551. },
  4552. {
  4553. name: "Full-Size",
  4554. height: math.unit(600, "kiloparsecs")
  4555. }
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4560. {
  4561. front: {
  4562. height: math.unit(2, "meter"),
  4563. weight: math.unit(50, "kg"),
  4564. name: "Front",
  4565. image: {
  4566. source: "./media/characters/erestrebah/front.svg",
  4567. extra: 1262/1162,
  4568. bottom: 96/1358
  4569. }
  4570. },
  4571. back: {
  4572. height: math.unit(2, "meter"),
  4573. weight: math.unit(50, "kg"),
  4574. name: "Back",
  4575. image: {
  4576. source: "./media/characters/erestrebah/back.svg",
  4577. extra: 1257/1139,
  4578. bottom: 13/1270
  4579. }
  4580. },
  4581. wing: {
  4582. height: math.unit(2, "meter"),
  4583. weight: math.unit(50, "kg"),
  4584. name: "Wing",
  4585. image: {
  4586. source: "./media/characters/erestrebah/wing.svg",
  4587. extra: 1262/1162,
  4588. bottom: 96/1358
  4589. }
  4590. },
  4591. mouth: {
  4592. height: math.unit(0.39, "feet"),
  4593. name: "Mouth",
  4594. image: {
  4595. source: "./media/characters/erestrebah/mouth.svg"
  4596. }
  4597. }
  4598. },
  4599. [
  4600. {
  4601. name: "Normal",
  4602. height: math.unit(10, "feet")
  4603. },
  4604. {
  4605. name: "Large",
  4606. height: math.unit(50, "feet"),
  4607. default: true
  4608. },
  4609. {
  4610. name: "Macro",
  4611. height: math.unit(300, "feet")
  4612. },
  4613. {
  4614. name: "Macro+",
  4615. height: math.unit(750, "feet")
  4616. },
  4617. {
  4618. name: "Megamacro",
  4619. height: math.unit(3, "miles")
  4620. }
  4621. ]
  4622. ))
  4623. characterMakers.push(() => makeCharacter(
  4624. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4625. {
  4626. front: {
  4627. height: math.unit(2, "meter"),
  4628. weight: math.unit(80, "kg"),
  4629. name: "Front",
  4630. image: {
  4631. source: "./media/characters/jennifer/front.svg",
  4632. bottom: 0.11,
  4633. extra: 1.16
  4634. }
  4635. },
  4636. frontAlt: {
  4637. height: math.unit(2, "meter"),
  4638. weight: math.unit(80, "kg"),
  4639. name: "Front (Alt)",
  4640. image: {
  4641. source: "./media/characters/jennifer/front-alt.svg"
  4642. }
  4643. }
  4644. },
  4645. [
  4646. {
  4647. name: "Canon Height",
  4648. height: math.unit(120, "feet"),
  4649. default: true
  4650. },
  4651. {
  4652. name: "Macro+",
  4653. height: math.unit(300, "feet")
  4654. },
  4655. {
  4656. name: "Megamacro",
  4657. height: math.unit(20000, "feet")
  4658. }
  4659. ]
  4660. ))
  4661. characterMakers.push(() => makeCharacter(
  4662. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4663. {
  4664. front: {
  4665. height: math.unit(2, "meter"),
  4666. weight: math.unit(50, "kg"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/kalista/front.svg",
  4670. extra: 1314/1145,
  4671. bottom: 101/1415
  4672. }
  4673. },
  4674. back: {
  4675. height: math.unit(2, "meter"),
  4676. weight: math.unit(50, "kg"),
  4677. name: "Back",
  4678. image: {
  4679. source: "./media/characters/kalista/back.svg",
  4680. extra: 1366 / 1156,
  4681. bottom: 33.9 / 1362.78
  4682. }
  4683. }
  4684. },
  4685. [
  4686. {
  4687. name: "Uncomfortably Small",
  4688. height: math.unit(10, "feet")
  4689. },
  4690. {
  4691. name: "Small",
  4692. height: math.unit(30, "feet")
  4693. },
  4694. {
  4695. name: "Macro",
  4696. height: math.unit(100, "feet"),
  4697. default: true
  4698. },
  4699. {
  4700. name: "Macro+",
  4701. height: math.unit(2000, "feet")
  4702. },
  4703. {
  4704. name: "True Form",
  4705. height: math.unit(8924, "miles")
  4706. }
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4711. {
  4712. front: {
  4713. height: math.unit(2, "meter"),
  4714. weight: math.unit(120, "kg"),
  4715. name: "Front",
  4716. image: {
  4717. source: "./media/characters/ggv/front.svg"
  4718. }
  4719. },
  4720. side: {
  4721. height: math.unit(2, "meter"),
  4722. weight: math.unit(120, "kg"),
  4723. name: "Side",
  4724. image: {
  4725. source: "./media/characters/ggv/side.svg"
  4726. }
  4727. }
  4728. },
  4729. [
  4730. {
  4731. name: "Extremely Puny",
  4732. height: math.unit(9 + 5 / 12, "feet")
  4733. },
  4734. {
  4735. name: "Horribly Small",
  4736. height: math.unit(47.7, "miles"),
  4737. default: true
  4738. },
  4739. {
  4740. name: "Reasonably Sized",
  4741. height: math.unit(25000, "parsecs")
  4742. },
  4743. {
  4744. name: "Slightly Uncompressed",
  4745. height: math.unit(7.77e31, "parsecs")
  4746. },
  4747. {
  4748. name: "Omniversal",
  4749. height: math.unit(1e300, "meters")
  4750. },
  4751. ]
  4752. ))
  4753. characterMakers.push(() => makeCharacter(
  4754. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4755. {
  4756. front: {
  4757. height: math.unit(2, "meter"),
  4758. weight: math.unit(75, "lb"),
  4759. name: "Front",
  4760. image: {
  4761. source: "./media/characters/napalm/front.svg"
  4762. }
  4763. },
  4764. back: {
  4765. height: math.unit(2, "meter"),
  4766. weight: math.unit(75, "lb"),
  4767. name: "Back",
  4768. image: {
  4769. source: "./media/characters/napalm/back.svg"
  4770. }
  4771. }
  4772. },
  4773. [
  4774. {
  4775. name: "Standard",
  4776. height: math.unit(55, "feet"),
  4777. default: true
  4778. }
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4783. {
  4784. front: {
  4785. height: math.unit(7 + 5 / 6, "feet"),
  4786. weight: math.unit(325, "lb"),
  4787. name: "Front",
  4788. image: {
  4789. source: "./media/characters/asana/front.svg",
  4790. extra: 1133 / 1060,
  4791. bottom: 15.2 / 1148.6
  4792. }
  4793. },
  4794. back: {
  4795. height: math.unit(7 + 5 / 6, "feet"),
  4796. weight: math.unit(325, "lb"),
  4797. name: "Back",
  4798. image: {
  4799. source: "./media/characters/asana/back.svg",
  4800. extra: 1114 / 1043,
  4801. bottom: 5 / 1120
  4802. }
  4803. },
  4804. dressedDark: {
  4805. height: math.unit(7 + 5 / 6, "feet"),
  4806. weight: math.unit(325, "lb"),
  4807. name: "Dressed (Dark)",
  4808. image: {
  4809. source: "./media/characters/asana/dressed-dark.svg",
  4810. extra: 1133 / 1060,
  4811. bottom: 15.2 / 1148.6
  4812. }
  4813. },
  4814. dressedLight: {
  4815. height: math.unit(7 + 5 / 6, "feet"),
  4816. weight: math.unit(325, "lb"),
  4817. name: "Dressed (Light)",
  4818. image: {
  4819. source: "./media/characters/asana/dressed-light.svg",
  4820. extra: 1133 / 1060,
  4821. bottom: 15.2 / 1148.6
  4822. }
  4823. },
  4824. },
  4825. [
  4826. {
  4827. name: "Standard",
  4828. height: math.unit(7 + 5 / 6, "feet"),
  4829. default: true
  4830. },
  4831. {
  4832. name: "Large",
  4833. height: math.unit(10, "meters")
  4834. },
  4835. {
  4836. name: "Macro",
  4837. height: math.unit(2500, "meters")
  4838. },
  4839. {
  4840. name: "Megamacro",
  4841. height: math.unit(5e6, "meters")
  4842. },
  4843. {
  4844. name: "Examacro",
  4845. height: math.unit(5e12, "lightyears")
  4846. },
  4847. {
  4848. name: "Max Size",
  4849. height: math.unit(1e31, "lightyears")
  4850. }
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4855. {
  4856. front: {
  4857. height: math.unit(2, "meter"),
  4858. weight: math.unit(60, "kg"),
  4859. name: "Front",
  4860. image: {
  4861. source: "./media/characters/ebony/front.svg",
  4862. bottom: 0.03,
  4863. extra: 1045 / 810 + 0.03
  4864. }
  4865. },
  4866. side: {
  4867. height: math.unit(2, "meter"),
  4868. weight: math.unit(60, "kg"),
  4869. name: "Side",
  4870. image: {
  4871. source: "./media/characters/ebony/side.svg",
  4872. bottom: 0.03,
  4873. extra: 1045 / 810 + 0.03
  4874. }
  4875. },
  4876. back: {
  4877. height: math.unit(2, "meter"),
  4878. weight: math.unit(60, "kg"),
  4879. name: "Back",
  4880. image: {
  4881. source: "./media/characters/ebony/back.svg",
  4882. bottom: 0.01,
  4883. extra: 1045 / 810 + 0.01
  4884. }
  4885. },
  4886. },
  4887. [
  4888. // TODO check why I did this lol
  4889. {
  4890. name: "Standard",
  4891. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4892. default: true
  4893. },
  4894. {
  4895. name: "Macro",
  4896. height: math.unit(200, "feet")
  4897. },
  4898. {
  4899. name: "Gigamacro",
  4900. height: math.unit(13000, "km")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4906. {
  4907. front: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(175, "lb"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/mountain/front.svg",
  4913. extra: 972 / 955,
  4914. bottom: 64 / 1036.6
  4915. }
  4916. },
  4917. back: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(175, "lb"),
  4920. name: "Back",
  4921. image: {
  4922. source: "./media/characters/mountain/back.svg",
  4923. extra: 970 / 950,
  4924. bottom: 28.25 / 999
  4925. }
  4926. },
  4927. },
  4928. [
  4929. {
  4930. name: "Large",
  4931. height: math.unit(20, "meters")
  4932. },
  4933. {
  4934. name: "Macro",
  4935. height: math.unit(300, "meters")
  4936. },
  4937. {
  4938. name: "Gigamacro",
  4939. height: math.unit(10000, "km"),
  4940. default: true
  4941. },
  4942. {
  4943. name: "Examacro",
  4944. height: math.unit(10e9, "lightyears")
  4945. }
  4946. ]
  4947. ))
  4948. characterMakers.push(() => makeCharacter(
  4949. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4950. {
  4951. front: {
  4952. height: math.unit(8, "feet"),
  4953. weight: math.unit(500, "lb"),
  4954. name: "Front",
  4955. image: {
  4956. source: "./media/characters/rick/front.svg"
  4957. }
  4958. }
  4959. },
  4960. [
  4961. {
  4962. name: "Normal",
  4963. height: math.unit(8, "feet"),
  4964. default: true
  4965. },
  4966. {
  4967. name: "Macro",
  4968. height: math.unit(5, "km")
  4969. }
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4974. {
  4975. front: {
  4976. height: math.unit(8, "feet"),
  4977. weight: math.unit(120, "lb"),
  4978. name: "Front",
  4979. image: {
  4980. source: "./media/characters/ona/front.svg"
  4981. }
  4982. },
  4983. frontAlt: {
  4984. height: math.unit(8, "feet"),
  4985. weight: math.unit(120, "lb"),
  4986. name: "Front (Alt)",
  4987. image: {
  4988. source: "./media/characters/ona/front-alt.svg"
  4989. }
  4990. },
  4991. back: {
  4992. height: math.unit(8, "feet"),
  4993. weight: math.unit(120, "lb"),
  4994. name: "Back",
  4995. image: {
  4996. source: "./media/characters/ona/back.svg"
  4997. }
  4998. },
  4999. foot: {
  5000. height: math.unit(1.1, "feet"),
  5001. name: "Foot",
  5002. image: {
  5003. source: "./media/characters/ona/foot.svg"
  5004. }
  5005. }
  5006. },
  5007. [
  5008. {
  5009. name: "Megamacro",
  5010. height: math.unit(70, "km"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Gigamacro",
  5015. height: math.unit(681818, "miles")
  5016. },
  5017. {
  5018. name: "Examacro",
  5019. height: math.unit(3800000, "lightyears")
  5020. },
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5025. {
  5026. front: {
  5027. height: math.unit(12, "feet"),
  5028. weight: math.unit(3000, "lb"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/mech/front.svg",
  5032. extra: 2900 / 2770,
  5033. bottom: 110 / 3010
  5034. }
  5035. },
  5036. back: {
  5037. height: math.unit(12, "feet"),
  5038. weight: math.unit(3000, "lb"),
  5039. name: "Back",
  5040. image: {
  5041. source: "./media/characters/mech/back.svg",
  5042. extra: 3011 / 2890,
  5043. bottom: 94 / 3105
  5044. }
  5045. },
  5046. maw: {
  5047. height: math.unit(3.07, "feet"),
  5048. name: "Maw",
  5049. image: {
  5050. source: "./media/characters/mech/maw.svg"
  5051. }
  5052. },
  5053. head: {
  5054. height: math.unit(3.07, "feet"),
  5055. name: "Head",
  5056. image: {
  5057. source: "./media/characters/mech/head.svg"
  5058. }
  5059. },
  5060. dick: {
  5061. height: math.unit(1.43, "feet"),
  5062. name: "Dick",
  5063. image: {
  5064. source: "./media/characters/mech/dick.svg"
  5065. }
  5066. },
  5067. },
  5068. [
  5069. {
  5070. name: "Normal",
  5071. height: math.unit(12, "feet")
  5072. },
  5073. {
  5074. name: "Macro",
  5075. height: math.unit(300, "feet"),
  5076. default: true
  5077. },
  5078. {
  5079. name: "Macro+",
  5080. height: math.unit(1500, "feet")
  5081. },
  5082. ]
  5083. ))
  5084. characterMakers.push(() => makeCharacter(
  5085. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5086. {
  5087. front: {
  5088. height: math.unit(1.3, "meter"),
  5089. weight: math.unit(30, "kg"),
  5090. name: "Front",
  5091. image: {
  5092. source: "./media/characters/gregory/front.svg",
  5093. }
  5094. }
  5095. },
  5096. [
  5097. {
  5098. name: "Normal",
  5099. height: math.unit(1.3, "meter"),
  5100. default: true
  5101. },
  5102. {
  5103. name: "Macro",
  5104. height: math.unit(20, "meter")
  5105. }
  5106. ]
  5107. ))
  5108. characterMakers.push(() => makeCharacter(
  5109. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5110. {
  5111. front: {
  5112. height: math.unit(2.8, "meter"),
  5113. weight: math.unit(200, "kg"),
  5114. name: "Front",
  5115. image: {
  5116. source: "./media/characters/elory/front.svg",
  5117. }
  5118. }
  5119. },
  5120. [
  5121. {
  5122. name: "Normal",
  5123. height: math.unit(2.8, "meter"),
  5124. default: true
  5125. },
  5126. {
  5127. name: "Macro",
  5128. height: math.unit(38, "meter")
  5129. }
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5134. {
  5135. front: {
  5136. height: math.unit(470, "feet"),
  5137. weight: math.unit(924, "tons"),
  5138. name: "Front",
  5139. image: {
  5140. source: "./media/characters/angelpatamon/front.svg",
  5141. }
  5142. }
  5143. },
  5144. [
  5145. {
  5146. name: "Normal",
  5147. height: math.unit(470, "feet"),
  5148. default: true
  5149. },
  5150. {
  5151. name: "Deity Size I",
  5152. height: math.unit(28651.2, "km")
  5153. },
  5154. {
  5155. name: "Deity Size II",
  5156. height: math.unit(171907.2, "km")
  5157. }
  5158. ]
  5159. ))
  5160. characterMakers.push(() => makeCharacter(
  5161. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5162. {
  5163. side: {
  5164. height: math.unit(7.2, "meter"),
  5165. weight: math.unit(8.2, "tons"),
  5166. name: "Side",
  5167. image: {
  5168. source: "./media/characters/cryae/side.svg",
  5169. extra: 3500 / 1500
  5170. }
  5171. }
  5172. },
  5173. [
  5174. {
  5175. name: "Normal",
  5176. height: math.unit(7.2, "meter"),
  5177. default: true
  5178. }
  5179. ]
  5180. ))
  5181. characterMakers.push(() => makeCharacter(
  5182. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5183. {
  5184. front: {
  5185. height: math.unit(6, "feet"),
  5186. weight: math.unit(175, "lb"),
  5187. name: "Front",
  5188. image: {
  5189. source: "./media/characters/xera/front.svg",
  5190. extra: 2377 / 1972,
  5191. bottom: 75.5 / 2452
  5192. }
  5193. },
  5194. side: {
  5195. height: math.unit(6, "feet"),
  5196. weight: math.unit(175, "lb"),
  5197. name: "Side",
  5198. image: {
  5199. source: "./media/characters/xera/side.svg",
  5200. extra: 2345 / 2019,
  5201. bottom: 39.7 / 2384
  5202. }
  5203. },
  5204. back: {
  5205. height: math.unit(6, "feet"),
  5206. weight: math.unit(175, "lb"),
  5207. name: "Back",
  5208. image: {
  5209. source: "./media/characters/xera/back.svg",
  5210. extra: 2095 / 1984,
  5211. bottom: 67 / 2166
  5212. }
  5213. },
  5214. },
  5215. [
  5216. {
  5217. name: "Small",
  5218. height: math.unit(10, "feet")
  5219. },
  5220. {
  5221. name: "Macro",
  5222. height: math.unit(500, "meters"),
  5223. default: true
  5224. },
  5225. {
  5226. name: "Macro+",
  5227. height: math.unit(10, "km")
  5228. },
  5229. {
  5230. name: "Gigamacro",
  5231. height: math.unit(25000, "km")
  5232. },
  5233. {
  5234. name: "Teramacro",
  5235. height: math.unit(3e6, "km")
  5236. }
  5237. ]
  5238. ))
  5239. characterMakers.push(() => makeCharacter(
  5240. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5241. {
  5242. front: {
  5243. height: math.unit(6, "feet"),
  5244. weight: math.unit(175, "lb"),
  5245. name: "Front",
  5246. image: {
  5247. source: "./media/characters/nebula/front.svg",
  5248. extra: 2566 / 2362,
  5249. bottom: 81 / 2644
  5250. }
  5251. }
  5252. },
  5253. [
  5254. {
  5255. name: "Small",
  5256. height: math.unit(4.5, "meters")
  5257. },
  5258. {
  5259. name: "Macro",
  5260. height: math.unit(1500, "meters"),
  5261. default: true
  5262. },
  5263. {
  5264. name: "Megamacro",
  5265. height: math.unit(150, "km")
  5266. },
  5267. {
  5268. name: "Gigamacro",
  5269. height: math.unit(27000, "km")
  5270. }
  5271. ]
  5272. ))
  5273. characterMakers.push(() => makeCharacter(
  5274. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5275. {
  5276. front: {
  5277. height: math.unit(6, "feet"),
  5278. weight: math.unit(225, "lb"),
  5279. name: "Front",
  5280. image: {
  5281. source: "./media/characters/abysgar/front.svg",
  5282. extra: 1739/1614,
  5283. bottom: 71/1810
  5284. }
  5285. },
  5286. frontNsfw: {
  5287. height: math.unit(6, "feet"),
  5288. weight: math.unit(225, "lb"),
  5289. name: "Front (NSFW)",
  5290. image: {
  5291. source: "./media/characters/abysgar/front-nsfw.svg",
  5292. extra: 1739/1614,
  5293. bottom: 71/1810
  5294. }
  5295. },
  5296. back: {
  5297. height: math.unit(4.6, "feet"),
  5298. weight: math.unit(225, "lb"),
  5299. name: "Back",
  5300. image: {
  5301. source: "./media/characters/abysgar/back.svg",
  5302. extra: 1384/1327,
  5303. bottom: 0/1384
  5304. }
  5305. },
  5306. head: {
  5307. height: math.unit(1.25, "feet"),
  5308. name: "Head",
  5309. image: {
  5310. source: "./media/characters/abysgar/head.svg",
  5311. extra: 669/569,
  5312. bottom: 0/669
  5313. }
  5314. },
  5315. },
  5316. [
  5317. {
  5318. name: "Small",
  5319. height: math.unit(4.5, "meters")
  5320. },
  5321. {
  5322. name: "Macro",
  5323. height: math.unit(1250, "meters"),
  5324. default: true
  5325. },
  5326. {
  5327. name: "Megamacro",
  5328. height: math.unit(125, "km")
  5329. },
  5330. {
  5331. name: "Gigamacro",
  5332. height: math.unit(26000, "km")
  5333. }
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5338. {
  5339. front: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(180, "lb"),
  5342. name: "Front",
  5343. image: {
  5344. source: "./media/characters/yakuz/front.svg"
  5345. }
  5346. }
  5347. },
  5348. [
  5349. {
  5350. name: "Small",
  5351. height: math.unit(5, "meters")
  5352. },
  5353. {
  5354. name: "Macro",
  5355. height: math.unit(1500, "meters"),
  5356. default: true
  5357. },
  5358. {
  5359. name: "Megamacro",
  5360. height: math.unit(200, "km")
  5361. },
  5362. {
  5363. name: "Gigamacro",
  5364. height: math.unit(100000, "km")
  5365. }
  5366. ]
  5367. ))
  5368. characterMakers.push(() => makeCharacter(
  5369. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5370. {
  5371. front: {
  5372. height: math.unit(6, "feet"),
  5373. weight: math.unit(175, "lb"),
  5374. name: "Front",
  5375. image: {
  5376. source: "./media/characters/mirova/front.svg",
  5377. extra: 3334 / 3071,
  5378. bottom: 42 / 3375.6
  5379. }
  5380. }
  5381. },
  5382. [
  5383. {
  5384. name: "Small",
  5385. height: math.unit(5, "meters")
  5386. },
  5387. {
  5388. name: "Macro",
  5389. height: math.unit(900, "meters"),
  5390. default: true
  5391. },
  5392. {
  5393. name: "Megamacro",
  5394. height: math.unit(135, "km")
  5395. },
  5396. {
  5397. name: "Gigamacro",
  5398. height: math.unit(20000, "km")
  5399. }
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5404. {
  5405. side: {
  5406. height: math.unit(28.35, "feet"),
  5407. weight: math.unit(99.75, "tons"),
  5408. name: "Side",
  5409. image: {
  5410. source: "./media/characters/asana-mech/side.svg",
  5411. extra: 923 / 699,
  5412. bottom: 50 / 975
  5413. }
  5414. },
  5415. chaingun: {
  5416. height: math.unit(7, "feet"),
  5417. weight: math.unit(2400, "lb"),
  5418. name: "Chaingun",
  5419. image: {
  5420. source: "./media/characters/asana-mech/chaingun.svg"
  5421. }
  5422. },
  5423. laser: {
  5424. height: math.unit(7.12, "feet"),
  5425. weight: math.unit(2000, "lb"),
  5426. name: "Laser",
  5427. image: {
  5428. source: "./media/characters/asana-mech/laser.svg"
  5429. }
  5430. },
  5431. },
  5432. [
  5433. {
  5434. name: "Normal",
  5435. height: math.unit(28.35, "feet"),
  5436. default: true
  5437. },
  5438. {
  5439. name: "Macro",
  5440. height: math.unit(2500, "feet")
  5441. },
  5442. {
  5443. name: "Megamacro",
  5444. height: math.unit(25, "miles")
  5445. },
  5446. {
  5447. name: "Examacro",
  5448. height: math.unit(6e8, "lightyears")
  5449. },
  5450. ]
  5451. ))
  5452. characterMakers.push(() => makeCharacter(
  5453. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5454. {
  5455. front: {
  5456. height: math.unit(5, "meters"),
  5457. weight: math.unit(1000, "kg"),
  5458. name: "Front",
  5459. image: {
  5460. source: "./media/characters/asche/front.svg",
  5461. extra: 1258 / 1190,
  5462. bottom: 47 / 1305
  5463. }
  5464. },
  5465. frontUnderwear: {
  5466. height: math.unit(5, "meters"),
  5467. weight: math.unit(1000, "kg"),
  5468. name: "Front (Underwear)",
  5469. image: {
  5470. source: "./media/characters/asche/front-underwear.svg",
  5471. extra: 1258 / 1190,
  5472. bottom: 47 / 1305
  5473. }
  5474. },
  5475. frontDressed: {
  5476. height: math.unit(5, "meters"),
  5477. weight: math.unit(1000, "kg"),
  5478. name: "Front (Dressed)",
  5479. image: {
  5480. source: "./media/characters/asche/front-dressed.svg",
  5481. extra: 1258 / 1190,
  5482. bottom: 47 / 1305
  5483. }
  5484. },
  5485. frontArmor: {
  5486. height: math.unit(5, "meters"),
  5487. weight: math.unit(1000, "kg"),
  5488. name: "Front (Armored)",
  5489. image: {
  5490. source: "./media/characters/asche/front-armored.svg",
  5491. extra: 1374 / 1308,
  5492. bottom: 23 / 1397
  5493. }
  5494. },
  5495. mp724: {
  5496. height: math.unit(0.96, "meters"),
  5497. weight: math.unit(38, "kg"),
  5498. name: "H&K MP724",
  5499. image: {
  5500. source: "./media/characters/asche/h&k-mp724.svg"
  5501. }
  5502. },
  5503. side: {
  5504. height: math.unit(5, "meters"),
  5505. weight: math.unit(1000, "kg"),
  5506. name: "Side",
  5507. image: {
  5508. source: "./media/characters/asche/side.svg",
  5509. extra: 1717 / 1609,
  5510. bottom: 0.005
  5511. }
  5512. },
  5513. back: {
  5514. height: math.unit(5, "meters"),
  5515. weight: math.unit(1000, "kg"),
  5516. name: "Back",
  5517. image: {
  5518. source: "./media/characters/asche/back.svg",
  5519. extra: 1570 / 1501
  5520. }
  5521. },
  5522. },
  5523. [
  5524. {
  5525. name: "DEFCON 5",
  5526. height: math.unit(5, "meters")
  5527. },
  5528. {
  5529. name: "DEFCON 4",
  5530. height: math.unit(500, "meters"),
  5531. default: true
  5532. },
  5533. {
  5534. name: "DEFCON 3",
  5535. height: math.unit(5, "km")
  5536. },
  5537. {
  5538. name: "DEFCON 2",
  5539. height: math.unit(500, "km")
  5540. },
  5541. {
  5542. name: "DEFCON 1",
  5543. height: math.unit(500000, "km")
  5544. },
  5545. {
  5546. name: "DEFCON 0",
  5547. height: math.unit(3, "gigaparsecs")
  5548. },
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(7, "feet"),
  5556. weight: math.unit(92.7, "kg"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/gale/front.svg",
  5560. extra: 977/919,
  5561. bottom: 105/1082
  5562. }
  5563. },
  5564. side: {
  5565. height: math.unit(6.7, "feet"),
  5566. weight: math.unit(92.7, "kg"),
  5567. name: "Side",
  5568. image: {
  5569. source: "./media/characters/gale/side.svg",
  5570. extra: 978/922,
  5571. bottom: 140/1118
  5572. }
  5573. },
  5574. back: {
  5575. height: math.unit(7, "feet"),
  5576. weight: math.unit(92.7, "kg"),
  5577. name: "Back",
  5578. image: {
  5579. source: "./media/characters/gale/back.svg",
  5580. extra: 966/920,
  5581. bottom: 61/1027
  5582. }
  5583. },
  5584. maw: {
  5585. height: math.unit(2.23, "feet"),
  5586. name: "Maw",
  5587. image: {
  5588. source: "./media/characters/gale/maw.svg"
  5589. }
  5590. },
  5591. foot: {
  5592. height: math.unit(2.1, "feet"),
  5593. name: "Foot",
  5594. image: {
  5595. source: "./media/characters/gale/foot.svg"
  5596. }
  5597. },
  5598. },
  5599. [
  5600. {
  5601. name: "Normal",
  5602. height: math.unit(7, "feet")
  5603. },
  5604. {
  5605. name: "Macro",
  5606. height: math.unit(150, "feet"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Macro+",
  5611. height: math.unit(300, "feet")
  5612. },
  5613. ]
  5614. ))
  5615. characterMakers.push(() => makeCharacter(
  5616. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5617. {
  5618. front: {
  5619. height: math.unit(5 + 10/12, "feet"),
  5620. weight: math.unit(67, "kg"),
  5621. name: "Front",
  5622. image: {
  5623. source: "./media/characters/draylen/front.svg",
  5624. extra: 832/777,
  5625. bottom: 85/917
  5626. }
  5627. }
  5628. },
  5629. [
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(5 + 10/12, "feet")
  5633. },
  5634. {
  5635. name: "Macro",
  5636. height: math.unit(150, "feet"),
  5637. default: true
  5638. }
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5643. {
  5644. front: {
  5645. height: math.unit(7 + 9 / 12, "feet"),
  5646. weight: math.unit(379, "lbs"),
  5647. name: "Front",
  5648. image: {
  5649. source: "./media/characters/chez/front.svg"
  5650. }
  5651. },
  5652. side: {
  5653. height: math.unit(7 + 9 / 12, "feet"),
  5654. weight: math.unit(379, "lbs"),
  5655. name: "Side",
  5656. image: {
  5657. source: "./media/characters/chez/side.svg"
  5658. }
  5659. }
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(7 + 9 / 12, "feet"),
  5665. default: true
  5666. },
  5667. {
  5668. name: "God King",
  5669. height: math.unit(9750000, "meters")
  5670. }
  5671. ]
  5672. ))
  5673. characterMakers.push(() => makeCharacter(
  5674. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5675. {
  5676. front: {
  5677. height: math.unit(6, "feet"),
  5678. weight: math.unit(275, "lbs"),
  5679. name: "Front",
  5680. image: {
  5681. source: "./media/characters/kaylum/front.svg",
  5682. bottom: 0.01,
  5683. extra: 1166 / 1031
  5684. }
  5685. },
  5686. frontWingless: {
  5687. height: math.unit(6, "feet"),
  5688. weight: math.unit(275, "lbs"),
  5689. name: "Front (Wingless)",
  5690. image: {
  5691. source: "./media/characters/kaylum/front-wingless.svg",
  5692. bottom: 0.01,
  5693. extra: 1117 / 1031
  5694. }
  5695. }
  5696. },
  5697. [
  5698. {
  5699. name: "Normal",
  5700. height: math.unit(3.05, "meters")
  5701. },
  5702. {
  5703. name: "Master",
  5704. height: math.unit(5.5, "meters")
  5705. },
  5706. {
  5707. name: "Rampage",
  5708. height: math.unit(19, "meters")
  5709. },
  5710. {
  5711. name: "Macro Lite",
  5712. height: math.unit(37, "meters")
  5713. },
  5714. {
  5715. name: "Hyper Predator",
  5716. height: math.unit(61, "meters")
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(138, "meters"),
  5721. default: true
  5722. }
  5723. ]
  5724. ))
  5725. characterMakers.push(() => makeCharacter(
  5726. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5727. {
  5728. front: {
  5729. height: math.unit(5 + 5 / 12, "feet"),
  5730. weight: math.unit(120, "lbs"),
  5731. name: "Front",
  5732. image: {
  5733. source: "./media/characters/geta/front.svg",
  5734. extra: 1003/933,
  5735. bottom: 21/1024
  5736. }
  5737. },
  5738. paw: {
  5739. height: math.unit(0.35, "feet"),
  5740. name: "Paw",
  5741. image: {
  5742. source: "./media/characters/geta/paw.svg"
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Micro",
  5749. height: math.unit(3, "inches"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Normal",
  5754. height: math.unit(5 + 5 / 12, "feet")
  5755. }
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5760. {
  5761. front: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(300, "lbs"),
  5764. name: "Front",
  5765. image: {
  5766. source: "./media/characters/tyrnn/front.svg"
  5767. }
  5768. }
  5769. },
  5770. [
  5771. {
  5772. name: "Main Height",
  5773. height: math.unit(355, "feet"),
  5774. default: true
  5775. },
  5776. {
  5777. name: "Fave. Height",
  5778. height: math.unit(2400, "feet")
  5779. }
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5784. {
  5785. front: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(300, "lbs"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/appledectomy/front.svg"
  5791. }
  5792. }
  5793. },
  5794. [
  5795. {
  5796. name: "Macro",
  5797. height: math.unit(2500, "feet")
  5798. },
  5799. {
  5800. name: "Megamacro",
  5801. height: math.unit(50, "miles"),
  5802. default: true
  5803. },
  5804. {
  5805. name: "Gigamacro",
  5806. height: math.unit(5000, "miles")
  5807. },
  5808. {
  5809. name: "Teramacro",
  5810. height: math.unit(250000, "miles")
  5811. },
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(200, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/vulpes/front.svg",
  5823. extra: 573 / 543,
  5824. bottom: 0.033
  5825. }
  5826. },
  5827. side: {
  5828. height: math.unit(6, "feet"),
  5829. weight: math.unit(200, "lbs"),
  5830. name: "Side",
  5831. image: {
  5832. source: "./media/characters/vulpes/side.svg",
  5833. extra: 577 / 549,
  5834. bottom: 11 / 588
  5835. }
  5836. },
  5837. back: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(200, "lbs"),
  5840. name: "Back",
  5841. image: {
  5842. source: "./media/characters/vulpes/back.svg",
  5843. extra: 573 / 549,
  5844. bottom: 20 / 593
  5845. }
  5846. },
  5847. feet: {
  5848. height: math.unit(1.276, "feet"),
  5849. name: "Feet",
  5850. image: {
  5851. source: "./media/characters/vulpes/feet.svg"
  5852. }
  5853. },
  5854. maw: {
  5855. height: math.unit(1.18, "feet"),
  5856. name: "Maw",
  5857. image: {
  5858. source: "./media/characters/vulpes/maw.svg"
  5859. }
  5860. },
  5861. },
  5862. [
  5863. {
  5864. name: "Micro",
  5865. height: math.unit(2, "inches")
  5866. },
  5867. {
  5868. name: "Normal",
  5869. height: math.unit(6.3, "feet")
  5870. },
  5871. {
  5872. name: "Macro",
  5873. height: math.unit(850, "feet")
  5874. },
  5875. {
  5876. name: "Megamacro",
  5877. height: math.unit(7500, "feet"),
  5878. default: true
  5879. },
  5880. {
  5881. name: "Gigamacro",
  5882. height: math.unit(570000, "miles")
  5883. }
  5884. ]
  5885. ))
  5886. characterMakers.push(() => makeCharacter(
  5887. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5888. {
  5889. front: {
  5890. height: math.unit(6, "feet"),
  5891. weight: math.unit(210, "lbs"),
  5892. name: "Front",
  5893. image: {
  5894. source: "./media/characters/rain-fallen/front.svg"
  5895. }
  5896. },
  5897. side: {
  5898. height: math.unit(6, "feet"),
  5899. weight: math.unit(210, "lbs"),
  5900. name: "Side",
  5901. image: {
  5902. source: "./media/characters/rain-fallen/side.svg"
  5903. }
  5904. },
  5905. back: {
  5906. height: math.unit(6, "feet"),
  5907. weight: math.unit(210, "lbs"),
  5908. name: "Back",
  5909. image: {
  5910. source: "./media/characters/rain-fallen/back.svg"
  5911. }
  5912. },
  5913. feral: {
  5914. height: math.unit(9, "feet"),
  5915. weight: math.unit(700, "lbs"),
  5916. name: "Feral",
  5917. image: {
  5918. source: "./media/characters/rain-fallen/feral.svg"
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Meddling with Mortals",
  5925. height: math.unit(8 + 8/12, "feet")
  5926. },
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(5, "meter")
  5930. },
  5931. {
  5932. name: "Macro",
  5933. height: math.unit(150, "meter"),
  5934. default: true
  5935. },
  5936. {
  5937. name: "Megamacro",
  5938. height: math.unit(278e6, "meter")
  5939. },
  5940. {
  5941. name: "Gigamacro",
  5942. height: math.unit(2e9, "meter")
  5943. },
  5944. {
  5945. name: "Teramacro",
  5946. height: math.unit(8e12, "meter")
  5947. },
  5948. {
  5949. name: "Devourer",
  5950. height: math.unit(14, "zettameters")
  5951. },
  5952. {
  5953. name: "Scarlet King",
  5954. height: math.unit(18, "yottameters")
  5955. },
  5956. {
  5957. name: "Void",
  5958. height: math.unit(1e88, "yottameters")
  5959. }
  5960. ]
  5961. ))
  5962. characterMakers.push(() => makeCharacter(
  5963. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5964. {
  5965. standing: {
  5966. height: math.unit(6, "feet"),
  5967. weight: math.unit(180, "lbs"),
  5968. name: "Standing",
  5969. image: {
  5970. source: "./media/characters/zaakira/standing.svg",
  5971. extra: 1599/1504,
  5972. bottom: 39/1638
  5973. }
  5974. },
  5975. laying: {
  5976. height: math.unit(3.3, "feet"),
  5977. weight: math.unit(180, "lbs"),
  5978. name: "Laying",
  5979. image: {
  5980. source: "./media/characters/zaakira/laying.svg"
  5981. }
  5982. },
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(12, "feet")
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(279, "feet"),
  5992. default: true
  5993. }
  5994. ]
  5995. ))
  5996. characterMakers.push(() => makeCharacter(
  5997. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5998. {
  5999. femSfw: {
  6000. height: math.unit(8, "feet"),
  6001. weight: math.unit(350, "lb"),
  6002. name: "Fem",
  6003. image: {
  6004. source: "./media/characters/sigvald/fem-sfw.svg",
  6005. extra: 182 / 164,
  6006. bottom: 8.7 / 190.5
  6007. }
  6008. },
  6009. femNsfw: {
  6010. height: math.unit(8, "feet"),
  6011. weight: math.unit(350, "lb"),
  6012. name: "Fem (NSFW)",
  6013. image: {
  6014. source: "./media/characters/sigvald/fem-nsfw.svg",
  6015. extra: 182 / 164,
  6016. bottom: 8.7 / 190.5
  6017. }
  6018. },
  6019. maleNsfw: {
  6020. height: math.unit(8, "feet"),
  6021. weight: math.unit(350, "lb"),
  6022. name: "Male (NSFW)",
  6023. image: {
  6024. source: "./media/characters/sigvald/male-nsfw.svg",
  6025. extra: 182 / 164,
  6026. bottom: 8.7 / 190.5
  6027. }
  6028. },
  6029. hermNsfw: {
  6030. height: math.unit(8, "feet"),
  6031. weight: math.unit(350, "lb"),
  6032. name: "Herm (NSFW)",
  6033. image: {
  6034. source: "./media/characters/sigvald/herm-nsfw.svg",
  6035. extra: 182 / 164,
  6036. bottom: 8.7 / 190.5
  6037. }
  6038. },
  6039. dick: {
  6040. height: math.unit(2.36, "feet"),
  6041. name: "Dick",
  6042. image: {
  6043. source: "./media/characters/sigvald/dick.svg"
  6044. }
  6045. },
  6046. eye: {
  6047. height: math.unit(0.31, "feet"),
  6048. name: "Eye",
  6049. image: {
  6050. source: "./media/characters/sigvald/eye.svg"
  6051. }
  6052. },
  6053. mouth: {
  6054. height: math.unit(0.92, "feet"),
  6055. name: "Mouth",
  6056. image: {
  6057. source: "./media/characters/sigvald/mouth.svg"
  6058. }
  6059. },
  6060. paws: {
  6061. height: math.unit(2.2, "feet"),
  6062. name: "Paws",
  6063. image: {
  6064. source: "./media/characters/sigvald/paws.svg"
  6065. }
  6066. }
  6067. },
  6068. [
  6069. {
  6070. name: "Normal",
  6071. height: math.unit(8, "feet")
  6072. },
  6073. {
  6074. name: "Large",
  6075. height: math.unit(12, "feet")
  6076. },
  6077. {
  6078. name: "Larger",
  6079. height: math.unit(20, "feet")
  6080. },
  6081. {
  6082. name: "Macro",
  6083. height: math.unit(150, "feet")
  6084. },
  6085. {
  6086. name: "Macro+",
  6087. height: math.unit(200, "feet"),
  6088. default: true
  6089. },
  6090. ]
  6091. ))
  6092. characterMakers.push(() => makeCharacter(
  6093. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6094. {
  6095. side: {
  6096. height: math.unit(12, "feet"),
  6097. weight: math.unit(2000, "kg"),
  6098. name: "Side",
  6099. image: {
  6100. source: "./media/characters/scott/side.svg",
  6101. extra: 754 / 724,
  6102. bottom: 0.069
  6103. }
  6104. },
  6105. upright: {
  6106. height: math.unit(12, "feet"),
  6107. weight: math.unit(2000, "kg"),
  6108. name: "Upright",
  6109. image: {
  6110. source: "./media/characters/scott/upright.svg",
  6111. extra: 3881 / 3722,
  6112. bottom: 0.05
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(12, "feet"),
  6120. default: true
  6121. },
  6122. ]
  6123. ))
  6124. characterMakers.push(() => makeCharacter(
  6125. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6126. {
  6127. side: {
  6128. height: math.unit(8, "meters"),
  6129. weight: math.unit(84755, "lbs"),
  6130. name: "Side",
  6131. image: {
  6132. source: "./media/characters/tobias/side.svg",
  6133. extra: 1474 / 1096,
  6134. bottom: 38.9 / 1513.1235
  6135. }
  6136. },
  6137. maw: {
  6138. height: math.unit(2.3, "meters"),
  6139. name: "Maw",
  6140. image: {
  6141. source: "./media/characters/tobias/maw.svg"
  6142. }
  6143. },
  6144. burp: {
  6145. height: math.unit(2.85, "meters"),
  6146. name: "Burp",
  6147. image: {
  6148. source: "./media/characters/tobias/burp.svg"
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(8, "meters"),
  6156. default: true
  6157. },
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6162. {
  6163. front: {
  6164. height: math.unit(5.5, "feet"),
  6165. weight: math.unit(400, "lbs"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/kieran/front.svg",
  6169. extra: 2694 / 2364,
  6170. bottom: 217 / 2908
  6171. }
  6172. },
  6173. side: {
  6174. height: math.unit(5.5, "feet"),
  6175. weight: math.unit(400, "lbs"),
  6176. name: "Side",
  6177. image: {
  6178. source: "./media/characters/kieran/side.svg",
  6179. extra: 875 / 777,
  6180. bottom: 84.6 / 959
  6181. }
  6182. },
  6183. },
  6184. [
  6185. {
  6186. name: "Normal",
  6187. height: math.unit(5.5, "feet"),
  6188. default: true
  6189. },
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6194. {
  6195. side: {
  6196. height: math.unit(2, "meters"),
  6197. weight: math.unit(70, "kg"),
  6198. name: "Side",
  6199. image: {
  6200. source: "./media/characters/sanya/side.svg",
  6201. bottom: 0.02,
  6202. extra: 1.02
  6203. }
  6204. },
  6205. },
  6206. [
  6207. {
  6208. name: "Small",
  6209. height: math.unit(2, "meters")
  6210. },
  6211. {
  6212. name: "Normal",
  6213. height: math.unit(3, "meters")
  6214. },
  6215. {
  6216. name: "Macro",
  6217. height: math.unit(16, "meters"),
  6218. default: true
  6219. },
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6224. {
  6225. front: {
  6226. height: math.unit(2, "meters"),
  6227. weight: math.unit(120, "kg"),
  6228. name: "Front",
  6229. image: {
  6230. source: "./media/characters/miranda/front.svg",
  6231. extra: 195 / 185,
  6232. bottom: 10.9 / 206.5
  6233. }
  6234. },
  6235. back: {
  6236. height: math.unit(2, "meters"),
  6237. weight: math.unit(120, "kg"),
  6238. name: "Back",
  6239. image: {
  6240. source: "./media/characters/miranda/back.svg",
  6241. extra: 201 / 193,
  6242. bottom: 2.3 / 203.7
  6243. }
  6244. },
  6245. },
  6246. [
  6247. {
  6248. name: "Normal",
  6249. height: math.unit(10, "feet"),
  6250. default: true
  6251. }
  6252. ]
  6253. ))
  6254. characterMakers.push(() => makeCharacter(
  6255. { name: "James", species: ["deer"], tags: ["anthro"] },
  6256. {
  6257. side: {
  6258. height: math.unit(2, "meters"),
  6259. weight: math.unit(100, "kg"),
  6260. name: "Front",
  6261. image: {
  6262. source: "./media/characters/james/front.svg",
  6263. extra: 10 / 8.5
  6264. }
  6265. },
  6266. },
  6267. [
  6268. {
  6269. name: "Normal",
  6270. height: math.unit(8.5, "feet"),
  6271. default: true
  6272. }
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6277. {
  6278. side: {
  6279. height: math.unit(9.5, "feet"),
  6280. weight: math.unit(2500, "lbs"),
  6281. name: "Side",
  6282. image: {
  6283. source: "./media/characters/heather/side.svg"
  6284. }
  6285. },
  6286. },
  6287. [
  6288. {
  6289. name: "Normal",
  6290. height: math.unit(9.5, "feet"),
  6291. default: true
  6292. }
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6297. {
  6298. side: {
  6299. height: math.unit(6.5, "feet"),
  6300. weight: math.unit(400, "lbs"),
  6301. name: "Side",
  6302. image: {
  6303. source: "./media/characters/lukas/side.svg",
  6304. extra: 7.25 / 6.5
  6305. }
  6306. },
  6307. },
  6308. [
  6309. {
  6310. name: "Normal",
  6311. height: math.unit(6.5, "feet"),
  6312. default: true
  6313. }
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6318. {
  6319. side: {
  6320. height: math.unit(5, "feet"),
  6321. weight: math.unit(3000, "lbs"),
  6322. name: "Side",
  6323. image: {
  6324. source: "./media/characters/louise/side.svg"
  6325. }
  6326. },
  6327. },
  6328. [
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(5, "feet"),
  6332. default: true
  6333. }
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6338. {
  6339. side: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(150, "lbs"),
  6342. name: "Side",
  6343. image: {
  6344. source: "./media/characters/ramona/side.svg",
  6345. extra: 871/854,
  6346. bottom: 41/912
  6347. }
  6348. },
  6349. },
  6350. [
  6351. {
  6352. name: "Normal",
  6353. height: math.unit(6 + 4/12, "feet")
  6354. },
  6355. {
  6356. name: "Minimacro",
  6357. height: math.unit(5.3, "meters"),
  6358. default: true
  6359. },
  6360. {
  6361. name: "Macro",
  6362. height: math.unit(20, "stories")
  6363. },
  6364. {
  6365. name: "Macro+",
  6366. height: math.unit(50, "stories")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6372. {
  6373. standing: {
  6374. height: math.unit(5.75, "feet"),
  6375. weight: math.unit(160, "lbs"),
  6376. name: "Standing",
  6377. image: {
  6378. source: "./media/characters/deerpuff/standing.svg",
  6379. extra: 682 / 624
  6380. }
  6381. },
  6382. sitting: {
  6383. height: math.unit(5.75 / 1.79, "feet"),
  6384. weight: math.unit(160, "lbs"),
  6385. name: "Sitting",
  6386. image: {
  6387. source: "./media/characters/deerpuff/sitting.svg",
  6388. bottom: 44 / 400,
  6389. extra: 1
  6390. }
  6391. },
  6392. taurLaying: {
  6393. height: math.unit(6, "feet"),
  6394. weight: math.unit(400, "lbs"),
  6395. name: "Taur (Laying)",
  6396. image: {
  6397. source: "./media/characters/deerpuff/taur-laying.svg"
  6398. }
  6399. },
  6400. },
  6401. [
  6402. {
  6403. name: "Puffball",
  6404. height: math.unit(6, "inches")
  6405. },
  6406. {
  6407. name: "Normalpuff",
  6408. height: math.unit(5.75, "feet")
  6409. },
  6410. {
  6411. name: "Macropuff",
  6412. height: math.unit(1500, "feet"),
  6413. default: true
  6414. },
  6415. {
  6416. name: "Megapuff",
  6417. height: math.unit(500, "miles")
  6418. },
  6419. {
  6420. name: "Gigapuff",
  6421. height: math.unit(250000, "miles")
  6422. },
  6423. {
  6424. name: "Omegapuff",
  6425. height: math.unit(1000, "lightyears")
  6426. },
  6427. ]
  6428. ))
  6429. characterMakers.push(() => makeCharacter(
  6430. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6431. {
  6432. stomping: {
  6433. height: math.unit(6, "feet"),
  6434. weight: math.unit(170, "lbs"),
  6435. name: "Stomping",
  6436. image: {
  6437. source: "./media/characters/vivian/stomping.svg"
  6438. }
  6439. },
  6440. sitting: {
  6441. height: math.unit(6 / 1.75, "feet"),
  6442. weight: math.unit(170, "lbs"),
  6443. name: "Sitting",
  6444. image: {
  6445. source: "./media/characters/vivian/sitting.svg",
  6446. bottom: 1 / 6.4,
  6447. extra: 1,
  6448. }
  6449. },
  6450. },
  6451. [
  6452. {
  6453. name: "Normal",
  6454. height: math.unit(7, "feet"),
  6455. default: true
  6456. },
  6457. {
  6458. name: "Macro",
  6459. height: math.unit(10, "stories")
  6460. },
  6461. {
  6462. name: "Macro+",
  6463. height: math.unit(30, "stories")
  6464. },
  6465. {
  6466. name: "Megamacro",
  6467. height: math.unit(10, "miles")
  6468. },
  6469. {
  6470. name: "Megamacro+",
  6471. height: math.unit(2750000, "meters")
  6472. },
  6473. ]
  6474. ))
  6475. characterMakers.push(() => makeCharacter(
  6476. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6477. {
  6478. front: {
  6479. height: math.unit(6, "feet"),
  6480. weight: math.unit(160, "lbs"),
  6481. name: "Front",
  6482. image: {
  6483. source: "./media/characters/prince/front.svg",
  6484. extra: 1938/1682,
  6485. bottom: 45/1983
  6486. }
  6487. },
  6488. back: {
  6489. height: math.unit(6, "feet"),
  6490. weight: math.unit(160, "lbs"),
  6491. name: "Back",
  6492. image: {
  6493. source: "./media/characters/prince/back.svg",
  6494. extra: 1955/1726,
  6495. bottom: 6/1961
  6496. }
  6497. },
  6498. },
  6499. [
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(7.75, "feet"),
  6503. default: true
  6504. },
  6505. {
  6506. name: "Not cute",
  6507. height: math.unit(17, "feet")
  6508. },
  6509. {
  6510. name: "I said NOT",
  6511. height: math.unit(91, "feet")
  6512. },
  6513. {
  6514. name: "Please stop",
  6515. height: math.unit(560, "feet")
  6516. },
  6517. {
  6518. name: "What have you done",
  6519. height: math.unit(2200, "feet")
  6520. },
  6521. {
  6522. name: "Deer God",
  6523. height: math.unit(3.6, "miles")
  6524. },
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6529. {
  6530. standing: {
  6531. height: math.unit(6, "feet"),
  6532. weight: math.unit(300, "lbs"),
  6533. name: "Standing",
  6534. image: {
  6535. source: "./media/characters/psymon/standing.svg",
  6536. extra: 1888 / 1810,
  6537. bottom: 0.05
  6538. }
  6539. },
  6540. slithering: {
  6541. height: math.unit(6, "feet"),
  6542. weight: math.unit(300, "lbs"),
  6543. name: "Slithering",
  6544. image: {
  6545. source: "./media/characters/psymon/slithering.svg",
  6546. extra: 1330 / 1224
  6547. }
  6548. },
  6549. slitheringAlt: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(300, "lbs"),
  6552. name: "Slithering (Alt)",
  6553. image: {
  6554. source: "./media/characters/psymon/slithering-alt.svg",
  6555. extra: 1330 / 1224
  6556. }
  6557. },
  6558. },
  6559. [
  6560. {
  6561. name: "Normal",
  6562. height: math.unit(11.25, "feet"),
  6563. default: true
  6564. },
  6565. {
  6566. name: "Large",
  6567. height: math.unit(27, "feet")
  6568. },
  6569. {
  6570. name: "Giant",
  6571. height: math.unit(87, "feet")
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(365, "feet")
  6576. },
  6577. {
  6578. name: "Megamacro",
  6579. height: math.unit(3, "miles")
  6580. },
  6581. {
  6582. name: "World Serpent",
  6583. height: math.unit(8000, "miles")
  6584. },
  6585. ]
  6586. ))
  6587. characterMakers.push(() => makeCharacter(
  6588. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6589. {
  6590. front: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(180, "lbs"),
  6593. name: "Front",
  6594. image: {
  6595. source: "./media/characters/daimos/front.svg",
  6596. extra: 4160 / 3897,
  6597. bottom: 0.021
  6598. }
  6599. }
  6600. },
  6601. [
  6602. {
  6603. name: "Normal",
  6604. height: math.unit(8, "feet"),
  6605. default: true
  6606. },
  6607. {
  6608. name: "Big Dog",
  6609. height: math.unit(22, "feet")
  6610. },
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(127, "feet")
  6614. },
  6615. {
  6616. name: "Megamacro",
  6617. height: math.unit(3600, "feet")
  6618. },
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6623. {
  6624. side: {
  6625. height: math.unit(6, "feet"),
  6626. weight: math.unit(180, "lbs"),
  6627. name: "Side",
  6628. image: {
  6629. source: "./media/characters/blake/side.svg",
  6630. extra: 1212 / 1120,
  6631. bottom: 0.05
  6632. }
  6633. },
  6634. crouched: {
  6635. height: math.unit(6 * 0.57, "feet"),
  6636. weight: math.unit(180, "lbs"),
  6637. name: "Crouched",
  6638. image: {
  6639. source: "./media/characters/blake/crouched.svg",
  6640. extra: 840 / 587,
  6641. bottom: 0.04
  6642. }
  6643. },
  6644. bent: {
  6645. height: math.unit(6 * 0.75, "feet"),
  6646. weight: math.unit(180, "lbs"),
  6647. name: "Bent",
  6648. image: {
  6649. source: "./media/characters/blake/bent.svg",
  6650. extra: 592 / 544,
  6651. bottom: 0.035
  6652. }
  6653. },
  6654. },
  6655. [
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(8 + 1 / 6, "feet"),
  6659. default: true
  6660. },
  6661. {
  6662. name: "Big Backside",
  6663. height: math.unit(37, "feet")
  6664. },
  6665. {
  6666. name: "Subway Shredder",
  6667. height: math.unit(72, "feet")
  6668. },
  6669. {
  6670. name: "City Carver",
  6671. height: math.unit(1675, "feet")
  6672. },
  6673. {
  6674. name: "Tectonic Tweaker",
  6675. height: math.unit(2300, "miles")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(180, "lbs"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/guisetto/front.svg",
  6688. extra: 856 / 817,
  6689. bottom: 0.06
  6690. }
  6691. },
  6692. airborne: {
  6693. height: math.unit(6, "feet"),
  6694. weight: math.unit(180, "lbs"),
  6695. name: "Airborne",
  6696. image: {
  6697. source: "./media/characters/guisetto/airborne.svg",
  6698. extra: 584 / 525
  6699. }
  6700. },
  6701. },
  6702. [
  6703. {
  6704. name: "Normal",
  6705. height: math.unit(10 + 11 / 12, "feet"),
  6706. default: true
  6707. },
  6708. {
  6709. name: "Large",
  6710. height: math.unit(35, "feet")
  6711. },
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(475, "feet")
  6715. },
  6716. ]
  6717. ))
  6718. characterMakers.push(() => makeCharacter(
  6719. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6720. {
  6721. front: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(180, "lbs"),
  6724. name: "Front",
  6725. image: {
  6726. source: "./media/characters/luxor/front.svg",
  6727. extra: 2940 / 2152
  6728. }
  6729. },
  6730. back: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(180, "lbs"),
  6733. name: "Back",
  6734. image: {
  6735. source: "./media/characters/luxor/back.svg",
  6736. extra: 1083 / 960
  6737. }
  6738. },
  6739. },
  6740. [
  6741. {
  6742. name: "Normal",
  6743. height: math.unit(5 + 5 / 6, "feet"),
  6744. default: true
  6745. },
  6746. {
  6747. name: "Lamp",
  6748. height: math.unit(50, "feet")
  6749. },
  6750. {
  6751. name: "Lämp",
  6752. height: math.unit(300, "feet")
  6753. },
  6754. {
  6755. name: "The sun is a lamp",
  6756. height: math.unit(250000, "miles")
  6757. },
  6758. ]
  6759. ))
  6760. characterMakers.push(() => makeCharacter(
  6761. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6762. {
  6763. front: {
  6764. height: math.unit(6, "feet"),
  6765. weight: math.unit(50, "lbs"),
  6766. name: "Front",
  6767. image: {
  6768. source: "./media/characters/huoyan/front.svg"
  6769. }
  6770. },
  6771. side: {
  6772. height: math.unit(6, "feet"),
  6773. weight: math.unit(180, "lbs"),
  6774. name: "Side",
  6775. image: {
  6776. source: "./media/characters/huoyan/side.svg"
  6777. }
  6778. },
  6779. },
  6780. [
  6781. {
  6782. name: "Chef",
  6783. height: math.unit(9, "feet")
  6784. },
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(65, "feet"),
  6788. default: true
  6789. },
  6790. {
  6791. name: "Macro",
  6792. height: math.unit(780, "feet")
  6793. },
  6794. {
  6795. name: "Flaming Mountain",
  6796. height: math.unit(4.8, "miles")
  6797. },
  6798. {
  6799. name: "Celestial",
  6800. height: math.unit(765000, "miles")
  6801. },
  6802. ]
  6803. ))
  6804. characterMakers.push(() => makeCharacter(
  6805. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6806. {
  6807. front: {
  6808. height: math.unit(5 + 3 / 4, "feet"),
  6809. weight: math.unit(120, "lbs"),
  6810. name: "Front",
  6811. image: {
  6812. source: "./media/characters/tails/front.svg"
  6813. }
  6814. }
  6815. },
  6816. [
  6817. {
  6818. name: "Normal",
  6819. height: math.unit(5 + 3 / 4, "feet"),
  6820. default: true
  6821. }
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(4, "feet"),
  6829. weight: math.unit(50, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/rainy/front.svg"
  6833. }
  6834. }
  6835. },
  6836. [
  6837. {
  6838. name: "Macro",
  6839. height: math.unit(800, "feet"),
  6840. default: true
  6841. }
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(6, "feet"),
  6849. weight: math.unit(150, "lbs"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/rainier/front.svg"
  6853. }
  6854. }
  6855. },
  6856. [
  6857. {
  6858. name: "Micro",
  6859. height: math.unit(2, "mm"),
  6860. default: true
  6861. }
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(8 + 4/12, "feet"),
  6869. weight: math.unit(450, "kilograms"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/andy-renard/front.svg",
  6873. extra: 862/809,
  6874. bottom: 85/947
  6875. },
  6876. extraAttributes: {
  6877. "pawSize": {
  6878. name: "Paw Size",
  6879. power: 2,
  6880. type: "area",
  6881. base: math.unit(0.45*0.3, "meters^2")
  6882. },
  6883. "handSize": {
  6884. name: "Hand Size",
  6885. power: 2,
  6886. type: "area",
  6887. base: math.unit(0.4 * 0.3, "meters^2")
  6888. },
  6889. "cockSize": {
  6890. name: "Cock Length",
  6891. power: 1,
  6892. type: "length",
  6893. base: math.unit(0.75, "meters")
  6894. },
  6895. "ballDiameter": {
  6896. name: "Ball Diameter",
  6897. power: 1,
  6898. type: "length",
  6899. base: math.unit(0.3, "meters")
  6900. },
  6901. "ballVolume": {
  6902. name: "Ball Volume",
  6903. power: 3,
  6904. type: "volume",
  6905. base: math.unit(0.01413716694, "meters^3")
  6906. },
  6907. }
  6908. },
  6909. back: {
  6910. height: math.unit(8 + 4/12, "feet"),
  6911. weight: math.unit(450, "kilograms"),
  6912. name: "Back",
  6913. image: {
  6914. source: "./media/characters/andy-renard/back.svg",
  6915. extra: 1112/1033,
  6916. bottom: 64/1176
  6917. },
  6918. extraAttributes: {
  6919. "pawSize": {
  6920. name: "Paw Size",
  6921. power: 2,
  6922. type: "area",
  6923. base: math.unit(0.45*0.3, "meters^2")
  6924. },
  6925. "handSize": {
  6926. name: "Hand Size",
  6927. power: 2,
  6928. type: "area",
  6929. base: math.unit(0.4 * 0.3, "meters^2")
  6930. },
  6931. "cockSize": {
  6932. name: "Cock Length",
  6933. power: 1,
  6934. type: "length",
  6935. base: math.unit(0.75, "meters")
  6936. },
  6937. "ballDiameter": {
  6938. name: "Ball Diameter",
  6939. power: 1,
  6940. type: "length",
  6941. base: math.unit(0.3, "meters")
  6942. },
  6943. "ballVolume": {
  6944. name: "Ball Volume",
  6945. power: 3,
  6946. type: "volume",
  6947. base: math.unit(0.01413716694, "meters^3")
  6948. },
  6949. }
  6950. },
  6951. },
  6952. [
  6953. {
  6954. name: "Tall",
  6955. height: math.unit(6 + 8/12, "feet")
  6956. },
  6957. {
  6958. name: "Very Tall",
  6959. height: math.unit(8 + 4/12, "feet")
  6960. },
  6961. {
  6962. name: "Mini Macro",
  6963. height: math.unit(15, "feet"),
  6964. default: true
  6965. },
  6966. {
  6967. name: "Giant",
  6968. height: math.unit(50, "feet")
  6969. },
  6970. {
  6971. name: "Nice",
  6972. height: math.unit(69, "feet")
  6973. },
  6974. {
  6975. name: "Macro",
  6976. height: math.unit(100, "feet")
  6977. },
  6978. {
  6979. name: "Enormous",
  6980. height: math.unit(500, "feet")
  6981. },
  6982. {
  6983. name: "Gargantuan",
  6984. height: math.unit(1000, "feet")
  6985. },
  6986. {
  6987. name: "Mega",
  6988. height: math.unit(1, "mile")
  6989. },
  6990. {
  6991. name: "Giga",
  6992. height: math.unit(50, "miles")
  6993. },
  6994. {
  6995. name: "Tera",
  6996. height: math.unit(1000, "miles")
  6997. },
  6998. {
  6999. name: "Cosmic",
  7000. height: math.unit(1.5, "galaxies")
  7001. },
  7002. {
  7003. name: "God",
  7004. height: math.unit(1.5, "universes")
  7005. },
  7006. {
  7007. name: "Chief Execute God",
  7008. height: math.unit(1.5, "multiverses")
  7009. },
  7010. ]
  7011. ))
  7012. characterMakers.push(() => makeCharacter(
  7013. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7014. {
  7015. front: {
  7016. height: math.unit(6, "feet"),
  7017. weight: math.unit(210, "lbs"),
  7018. name: "Front",
  7019. image: {
  7020. source: "./media/characters/cimmaron/front-sfw.svg",
  7021. extra: 701 / 676,
  7022. bottom: 0.046
  7023. }
  7024. },
  7025. back: {
  7026. height: math.unit(6, "feet"),
  7027. weight: math.unit(210, "lbs"),
  7028. name: "Back",
  7029. image: {
  7030. source: "./media/characters/cimmaron/back-sfw.svg",
  7031. extra: 701 / 676,
  7032. bottom: 0.046
  7033. }
  7034. },
  7035. frontNsfw: {
  7036. height: math.unit(6, "feet"),
  7037. weight: math.unit(210, "lbs"),
  7038. name: "Front (NSFW)",
  7039. image: {
  7040. source: "./media/characters/cimmaron/front-nsfw.svg",
  7041. extra: 701 / 676,
  7042. bottom: 0.046
  7043. }
  7044. },
  7045. backNsfw: {
  7046. height: math.unit(6, "feet"),
  7047. weight: math.unit(210, "lbs"),
  7048. name: "Back (NSFW)",
  7049. image: {
  7050. source: "./media/characters/cimmaron/back-nsfw.svg",
  7051. extra: 701 / 676,
  7052. bottom: 0.046
  7053. }
  7054. },
  7055. dick: {
  7056. height: math.unit(1.714, "feet"),
  7057. name: "Dick",
  7058. image: {
  7059. source: "./media/characters/cimmaron/dick.svg"
  7060. }
  7061. },
  7062. },
  7063. [
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(6, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Macro Mayor",
  7071. height: math.unit(350, "meters")
  7072. },
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7077. {
  7078. front: {
  7079. height: math.unit(6, "feet"),
  7080. weight: math.unit(200, "lbs"),
  7081. name: "Front",
  7082. image: {
  7083. source: "./media/characters/akari/front.svg",
  7084. extra: 962 / 901,
  7085. bottom: 0.04
  7086. }
  7087. }
  7088. },
  7089. [
  7090. {
  7091. name: "Micro",
  7092. height: math.unit(5, "inches"),
  7093. default: true
  7094. },
  7095. {
  7096. name: "Normal",
  7097. height: math.unit(7, "feet")
  7098. },
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(140, "lbs"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/cynosura/front.svg",
  7110. extra: 437/410,
  7111. bottom: 9/446
  7112. }
  7113. },
  7114. back: {
  7115. height: math.unit(6, "feet"),
  7116. weight: math.unit(140, "lbs"),
  7117. name: "Back",
  7118. image: {
  7119. source: "./media/characters/cynosura/back.svg",
  7120. extra: 1304/1160,
  7121. bottom: 71/1375
  7122. }
  7123. },
  7124. },
  7125. [
  7126. {
  7127. name: "Micro",
  7128. height: math.unit(4, "inches")
  7129. },
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(5.75, "feet"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Tall",
  7137. height: math.unit(10, "feet")
  7138. },
  7139. {
  7140. name: "Big",
  7141. height: math.unit(20, "feet")
  7142. },
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(50, "feet")
  7146. },
  7147. ]
  7148. ))
  7149. characterMakers.push(() => makeCharacter(
  7150. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7151. {
  7152. front: {
  7153. height: math.unit(13 + 2/12, "feet"),
  7154. weight: math.unit(800, "kg"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/gin/front.svg",
  7158. extra: 1312/1191,
  7159. bottom: 45/1357
  7160. }
  7161. },
  7162. mouth: {
  7163. height: math.unit(2.39 * 1.8, "feet"),
  7164. name: "Mouth",
  7165. image: {
  7166. source: "./media/characters/gin/mouth.svg"
  7167. }
  7168. },
  7169. hand: {
  7170. height: math.unit(1.57 * 2.19, "feet"),
  7171. name: "Hand",
  7172. image: {
  7173. source: "./media/characters/gin/hand.svg"
  7174. }
  7175. },
  7176. foot: {
  7177. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7178. name: "Foot",
  7179. image: {
  7180. source: "./media/characters/gin/foot.svg"
  7181. }
  7182. },
  7183. sole: {
  7184. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7185. name: "Sole",
  7186. image: {
  7187. source: "./media/characters/gin/sole.svg"
  7188. }
  7189. },
  7190. },
  7191. [
  7192. {
  7193. name: "Very Small",
  7194. height: math.unit(13 + 2 / 12, "feet")
  7195. },
  7196. {
  7197. name: "Micro",
  7198. height: math.unit(600, "miles")
  7199. },
  7200. {
  7201. name: "Regular",
  7202. height: math.unit(20, "earths"),
  7203. default: true
  7204. },
  7205. {
  7206. name: "Macro",
  7207. height: math.unit(2.2, "solarradii")
  7208. },
  7209. {
  7210. name: "Teramacro",
  7211. height: math.unit(1.2, "galaxies")
  7212. },
  7213. {
  7214. name: "Omegamacro",
  7215. height: math.unit(200, "universes")
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(6 + 1 / 6, "feet"),
  7224. weight: math.unit(178, "lbs"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/guy/front.svg"
  7228. }
  7229. }
  7230. },
  7231. [
  7232. {
  7233. name: "Normal",
  7234. height: math.unit(6 + 1 / 6, "feet"),
  7235. default: true
  7236. },
  7237. {
  7238. name: "Large",
  7239. height: math.unit(25 + 7 / 12, "feet")
  7240. },
  7241. {
  7242. name: "Macro",
  7243. height: math.unit(60 + 9 / 12, "feet")
  7244. },
  7245. {
  7246. name: "Macro+",
  7247. height: math.unit(246, "feet")
  7248. },
  7249. {
  7250. name: "Macro++",
  7251. height: math.unit(878, "feet")
  7252. }
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(9, "feet"),
  7260. weight: math.unit(800, "lbs"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/tiberius/front.svg",
  7264. extra: 2295 / 2071
  7265. }
  7266. },
  7267. back: {
  7268. height: math.unit(9, "feet"),
  7269. weight: math.unit(800, "lbs"),
  7270. name: "Back",
  7271. image: {
  7272. source: "./media/characters/tiberius/back.svg",
  7273. extra: 2373 / 2160
  7274. }
  7275. },
  7276. },
  7277. [
  7278. {
  7279. name: "Normal",
  7280. height: math.unit(9, "feet"),
  7281. default: true
  7282. }
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7287. {
  7288. front: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(600, "lbs"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/surgo/front.svg",
  7294. extra: 3591 / 2227
  7295. }
  7296. },
  7297. back: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(600, "lbs"),
  7300. name: "Back",
  7301. image: {
  7302. source: "./media/characters/surgo/back.svg",
  7303. extra: 3557 / 2228
  7304. }
  7305. },
  7306. laying: {
  7307. height: math.unit(6 * 0.85, "feet"),
  7308. weight: math.unit(600, "lbs"),
  7309. name: "Laying",
  7310. image: {
  7311. source: "./media/characters/surgo/laying.svg"
  7312. }
  7313. },
  7314. },
  7315. [
  7316. {
  7317. name: "Normal",
  7318. height: math.unit(6, "feet"),
  7319. default: true
  7320. }
  7321. ]
  7322. ))
  7323. characterMakers.push(() => makeCharacter(
  7324. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7325. {
  7326. side: {
  7327. height: math.unit(6, "feet"),
  7328. weight: math.unit(150, "lbs"),
  7329. name: "Side",
  7330. image: {
  7331. source: "./media/characters/cibus/side.svg",
  7332. extra: 800 / 400
  7333. }
  7334. },
  7335. },
  7336. [
  7337. {
  7338. name: "Normal",
  7339. height: math.unit(6, "feet"),
  7340. default: true
  7341. }
  7342. ]
  7343. ))
  7344. characterMakers.push(() => makeCharacter(
  7345. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7346. {
  7347. front: {
  7348. height: math.unit(6, "feet"),
  7349. weight: math.unit(240, "lbs"),
  7350. name: "Front",
  7351. image: {
  7352. source: "./media/characters/nibbles/front.svg"
  7353. }
  7354. },
  7355. side: {
  7356. height: math.unit(6, "feet"),
  7357. weight: math.unit(240, "lbs"),
  7358. name: "Side",
  7359. image: {
  7360. source: "./media/characters/nibbles/side.svg"
  7361. }
  7362. },
  7363. },
  7364. [
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(9, "feet"),
  7368. default: true
  7369. }
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7374. {
  7375. side: {
  7376. height: math.unit(5 + 1 / 6, "feet"),
  7377. weight: math.unit(130, "lbs"),
  7378. name: "Side",
  7379. image: {
  7380. source: "./media/characters/rikky/side.svg",
  7381. extra: 851 / 801
  7382. }
  7383. },
  7384. },
  7385. [
  7386. {
  7387. name: "Normal",
  7388. height: math.unit(5 + 1 / 6, "feet")
  7389. },
  7390. {
  7391. name: "Macro",
  7392. height: math.unit(152, "feet"),
  7393. default: true
  7394. },
  7395. {
  7396. name: "Megamacro",
  7397. height: math.unit(7, "miles")
  7398. }
  7399. ]
  7400. ))
  7401. characterMakers.push(() => makeCharacter(
  7402. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7403. {
  7404. side: {
  7405. height: math.unit(370, "cm"),
  7406. weight: math.unit(350, "lbs"),
  7407. name: "Side",
  7408. image: {
  7409. source: "./media/characters/malfressa/side.svg"
  7410. }
  7411. },
  7412. walking: {
  7413. height: math.unit(370, "cm"),
  7414. weight: math.unit(350, "lbs"),
  7415. name: "Walking",
  7416. image: {
  7417. source: "./media/characters/malfressa/walking.svg"
  7418. }
  7419. },
  7420. feral: {
  7421. height: math.unit(2500, "cm"),
  7422. weight: math.unit(100000, "lbs"),
  7423. name: "Feral",
  7424. image: {
  7425. source: "./media/characters/malfressa/feral.svg",
  7426. extra: 2108 / 837,
  7427. bottom: 0.02
  7428. }
  7429. },
  7430. },
  7431. [
  7432. {
  7433. name: "Normal",
  7434. height: math.unit(370, "cm")
  7435. },
  7436. {
  7437. name: "Macro",
  7438. height: math.unit(300, "meters"),
  7439. default: true
  7440. }
  7441. ]
  7442. ))
  7443. characterMakers.push(() => makeCharacter(
  7444. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7445. {
  7446. front: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(60, "kg"),
  7449. name: "Front",
  7450. image: {
  7451. source: "./media/characters/jaro/front.svg",
  7452. extra: 845/817,
  7453. bottom: 45/890
  7454. }
  7455. },
  7456. back: {
  7457. height: math.unit(6, "feet"),
  7458. weight: math.unit(60, "kg"),
  7459. name: "Back",
  7460. image: {
  7461. source: "./media/characters/jaro/back.svg",
  7462. extra: 847/817,
  7463. bottom: 34/881
  7464. }
  7465. },
  7466. },
  7467. [
  7468. {
  7469. name: "Micro",
  7470. height: math.unit(7, "inches")
  7471. },
  7472. {
  7473. name: "Normal",
  7474. height: math.unit(5.5, "feet"),
  7475. default: true
  7476. },
  7477. {
  7478. name: "Minimacro",
  7479. height: math.unit(20, "feet")
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(200, "meters")
  7484. }
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7489. {
  7490. front: {
  7491. height: math.unit(6, "feet"),
  7492. weight: math.unit(195, "lb"),
  7493. name: "Front",
  7494. image: {
  7495. source: "./media/characters/rogue/front.svg"
  7496. }
  7497. },
  7498. },
  7499. [
  7500. {
  7501. name: "Macro",
  7502. height: math.unit(90, "feet"),
  7503. default: true
  7504. },
  7505. ]
  7506. ))
  7507. characterMakers.push(() => makeCharacter(
  7508. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7509. {
  7510. standing: {
  7511. height: math.unit(5 + 8 / 12, "feet"),
  7512. weight: math.unit(140, "lb"),
  7513. name: "Standing",
  7514. image: {
  7515. source: "./media/characters/piper/standing.svg",
  7516. extra: 1440/1284,
  7517. bottom: 66/1506
  7518. }
  7519. },
  7520. running: {
  7521. height: math.unit(5 + 8 / 12, "feet"),
  7522. weight: math.unit(140, "lb"),
  7523. name: "Running",
  7524. image: {
  7525. source: "./media/characters/piper/running.svg",
  7526. extra: 3948/3655,
  7527. bottom: 0/3948
  7528. }
  7529. },
  7530. sole: {
  7531. height: math.unit(0.81, "feet"),
  7532. weight: math.unit(2, "kg"),
  7533. name: "Sole",
  7534. image: {
  7535. source: "./media/characters/piper/sole.svg"
  7536. }
  7537. },
  7538. nipple: {
  7539. height: math.unit(0.25, "feet"),
  7540. weight: math.unit(1.5, "lb"),
  7541. name: "Nipple",
  7542. image: {
  7543. source: "./media/characters/piper/nipple.svg"
  7544. }
  7545. },
  7546. head: {
  7547. height: math.unit(1.1, "feet"),
  7548. name: "Head",
  7549. image: {
  7550. source: "./media/characters/piper/head.svg"
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Micro",
  7557. height: math.unit(2, "inches")
  7558. },
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(5 + 8 / 12, "feet")
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(250, "feet"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Megamacro",
  7570. height: math.unit(7, "miles")
  7571. },
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(220, "lb"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/gemini/front.svg"
  7583. }
  7584. },
  7585. back: {
  7586. height: math.unit(6, "feet"),
  7587. weight: math.unit(220, "lb"),
  7588. name: "Back",
  7589. image: {
  7590. source: "./media/characters/gemini/back.svg"
  7591. }
  7592. },
  7593. kneeling: {
  7594. height: math.unit(6 / 1.5, "feet"),
  7595. weight: math.unit(220, "lb"),
  7596. name: "Kneeling",
  7597. image: {
  7598. source: "./media/characters/gemini/kneeling.svg",
  7599. bottom: 0.02
  7600. }
  7601. },
  7602. },
  7603. [
  7604. {
  7605. name: "Macro",
  7606. height: math.unit(300, "meters"),
  7607. default: true
  7608. },
  7609. {
  7610. name: "Megamacro",
  7611. height: math.unit(6900, "meters")
  7612. },
  7613. ]
  7614. ))
  7615. characterMakers.push(() => makeCharacter(
  7616. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7617. {
  7618. anthro: {
  7619. height: math.unit(2.35, "meters"),
  7620. weight: math.unit(73, "kg"),
  7621. name: "Anthro",
  7622. image: {
  7623. source: "./media/characters/alicia/anthro.svg",
  7624. extra: 2571 / 2385,
  7625. bottom: 75 / 2648
  7626. }
  7627. },
  7628. paw: {
  7629. height: math.unit(1.32, "feet"),
  7630. name: "Paw",
  7631. image: {
  7632. source: "./media/characters/alicia/paw.svg"
  7633. }
  7634. },
  7635. feral: {
  7636. height: math.unit(1.69, "meters"),
  7637. weight: math.unit(73, "kg"),
  7638. name: "Feral",
  7639. image: {
  7640. source: "./media/characters/alicia/feral.svg",
  7641. extra: 2123 / 1715,
  7642. bottom: 222 / 2349
  7643. }
  7644. },
  7645. },
  7646. [
  7647. {
  7648. name: "Normal",
  7649. height: math.unit(2.35, "meters")
  7650. },
  7651. {
  7652. name: "Macro",
  7653. height: math.unit(60, "meters"),
  7654. default: true
  7655. },
  7656. {
  7657. name: "Megamacro",
  7658. height: math.unit(10000, "kilometers")
  7659. },
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(7, "feet"),
  7667. weight: math.unit(250, "lbs"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/archy/front.svg"
  7671. }
  7672. }
  7673. },
  7674. [
  7675. {
  7676. name: "Micro",
  7677. height: math.unit(1, "inch")
  7678. },
  7679. {
  7680. name: "Shorty",
  7681. height: math.unit(5, "feet")
  7682. },
  7683. {
  7684. name: "Normal",
  7685. height: math.unit(7, "feet")
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(600, "meters"),
  7690. default: true
  7691. },
  7692. {
  7693. name: "Megamacro",
  7694. height: math.unit(1, "mile")
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7700. {
  7701. front: {
  7702. height: math.unit(1.65, "meters"),
  7703. weight: math.unit(74, "kg"),
  7704. name: "Front",
  7705. image: {
  7706. source: "./media/characters/berri/front.svg",
  7707. extra: 857 / 837,
  7708. bottom: 18 / 877
  7709. }
  7710. },
  7711. bum: {
  7712. height: math.unit(1.46, "feet"),
  7713. name: "Bum",
  7714. image: {
  7715. source: "./media/characters/berri/bum.svg"
  7716. }
  7717. },
  7718. mouth: {
  7719. height: math.unit(0.44, "feet"),
  7720. name: "Mouth",
  7721. image: {
  7722. source: "./media/characters/berri/mouth.svg"
  7723. }
  7724. },
  7725. paw: {
  7726. height: math.unit(0.826, "feet"),
  7727. name: "Paw",
  7728. image: {
  7729. source: "./media/characters/berri/paw.svg"
  7730. }
  7731. },
  7732. },
  7733. [
  7734. {
  7735. name: "Normal",
  7736. height: math.unit(1.65, "meters")
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(60, "m"),
  7741. default: true
  7742. },
  7743. {
  7744. name: "Megamacro",
  7745. height: math.unit(9.213, "km")
  7746. },
  7747. {
  7748. name: "Planet Eater",
  7749. height: math.unit(489, "megameters")
  7750. },
  7751. {
  7752. name: "Teramacro",
  7753. height: math.unit(2471635000000, "meters")
  7754. },
  7755. {
  7756. name: "Examacro",
  7757. height: math.unit(8.0624e+26, "meters")
  7758. }
  7759. ]
  7760. ))
  7761. characterMakers.push(() => makeCharacter(
  7762. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7763. {
  7764. front: {
  7765. height: math.unit(1.72, "meters"),
  7766. weight: math.unit(68, "kg"),
  7767. name: "Front",
  7768. image: {
  7769. source: "./media/characters/lexi/front.svg"
  7770. }
  7771. }
  7772. },
  7773. [
  7774. {
  7775. name: "Very Smol",
  7776. height: math.unit(10, "mm")
  7777. },
  7778. {
  7779. name: "Micro",
  7780. height: math.unit(6.8, "cm"),
  7781. default: true
  7782. },
  7783. {
  7784. name: "Normal",
  7785. height: math.unit(1.72, "m")
  7786. }
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7791. {
  7792. front: {
  7793. height: math.unit(1.69, "meters"),
  7794. weight: math.unit(68, "kg"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/martin/front.svg",
  7798. extra: 596 / 581
  7799. }
  7800. }
  7801. },
  7802. [
  7803. {
  7804. name: "Micro",
  7805. height: math.unit(6.85, "cm"),
  7806. default: true
  7807. },
  7808. {
  7809. name: "Normal",
  7810. height: math.unit(1.69, "m")
  7811. }
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7816. {
  7817. front: {
  7818. height: math.unit(1.69, "meters"),
  7819. weight: math.unit(68, "kg"),
  7820. name: "Front",
  7821. image: {
  7822. source: "./media/characters/juno/front.svg"
  7823. }
  7824. }
  7825. },
  7826. [
  7827. {
  7828. name: "Micro",
  7829. height: math.unit(7, "cm")
  7830. },
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(1.89, "m")
  7834. },
  7835. {
  7836. name: "Macro",
  7837. height: math.unit(353, "meters"),
  7838. default: true
  7839. }
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(1.93, "meters"),
  7847. weight: math.unit(83, "kg"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/samantha/front.svg"
  7851. }
  7852. },
  7853. frontClothed: {
  7854. height: math.unit(1.93, "meters"),
  7855. weight: math.unit(83, "kg"),
  7856. name: "Front (Clothed)",
  7857. image: {
  7858. source: "./media/characters/samantha/front-clothed.svg"
  7859. }
  7860. },
  7861. back: {
  7862. height: math.unit(1.93, "meters"),
  7863. weight: math.unit(83, "kg"),
  7864. name: "Back",
  7865. image: {
  7866. source: "./media/characters/samantha/back.svg"
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Normal",
  7873. height: math.unit(1.93, "m")
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(74, "meters"),
  7878. default: true
  7879. },
  7880. {
  7881. name: "Macro+",
  7882. height: math.unit(223, "meters"),
  7883. },
  7884. {
  7885. name: "Megamacro",
  7886. height: math.unit(8381, "meters"),
  7887. },
  7888. {
  7889. name: "Megamacro+",
  7890. height: math.unit(12000, "kilometers")
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7896. {
  7897. front: {
  7898. height: math.unit(1.92, "meters"),
  7899. weight: math.unit(80, "kg"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/dr-clay/front.svg"
  7903. }
  7904. },
  7905. frontClothed: {
  7906. height: math.unit(1.92, "meters"),
  7907. weight: math.unit(80, "kg"),
  7908. name: "Front (Clothed)",
  7909. image: {
  7910. source: "./media/characters/dr-clay/front-clothed.svg"
  7911. }
  7912. }
  7913. },
  7914. [
  7915. {
  7916. name: "Normal",
  7917. height: math.unit(1.92, "m")
  7918. },
  7919. {
  7920. name: "Macro",
  7921. height: math.unit(214, "meters"),
  7922. default: true
  7923. },
  7924. {
  7925. name: "Macro+",
  7926. height: math.unit(12.237, "meters"),
  7927. },
  7928. {
  7929. name: "Megamacro",
  7930. height: math.unit(557, "megameters"),
  7931. },
  7932. {
  7933. name: "Unimaginable",
  7934. height: math.unit(120e9, "lightyears")
  7935. },
  7936. ]
  7937. ))
  7938. characterMakers.push(() => makeCharacter(
  7939. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7940. {
  7941. front: {
  7942. height: math.unit(2, "meters"),
  7943. weight: math.unit(80, "kg"),
  7944. name: "Front",
  7945. image: {
  7946. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7947. }
  7948. }
  7949. },
  7950. [
  7951. {
  7952. name: "Teramacro",
  7953. height: math.unit(500000, "lightyears"),
  7954. default: true
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7960. {
  7961. crux: {
  7962. height: math.unit(2, "meters"),
  7963. weight: math.unit(150, "kg"),
  7964. name: "Crux",
  7965. image: {
  7966. source: "./media/characters/vemus/crux.svg",
  7967. extra: 1074/936,
  7968. bottom: 23/1097
  7969. }
  7970. },
  7971. skunkTanuki: {
  7972. height: math.unit(2, "meters"),
  7973. weight: math.unit(150, "kg"),
  7974. name: "Skunk-Tanuki",
  7975. image: {
  7976. source: "./media/characters/vemus/skunk-tanuki.svg",
  7977. extra: 926/893,
  7978. bottom: 20/946
  7979. }
  7980. },
  7981. },
  7982. [
  7983. {
  7984. name: "Normal",
  7985. height: math.unit(4, "meters"),
  7986. default: true
  7987. },
  7988. {
  7989. name: "Big",
  7990. height: math.unit(8, "meters")
  7991. },
  7992. {
  7993. name: "Macro",
  7994. height: math.unit(100, "meters")
  7995. },
  7996. {
  7997. name: "Macro+",
  7998. height: math.unit(1500, "meters")
  7999. },
  8000. {
  8001. name: "Stellar",
  8002. height: math.unit(14e8, "meters")
  8003. },
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8008. {
  8009. front: {
  8010. height: math.unit(2, "meters"),
  8011. weight: math.unit(70, "kg"),
  8012. name: "Front",
  8013. image: {
  8014. source: "./media/characters/beherit/front.svg",
  8015. extra: 1234/1109,
  8016. bottom: 55/1289
  8017. }
  8018. }
  8019. },
  8020. [
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(6, "feet")
  8024. },
  8025. {
  8026. name: "Lorg",
  8027. height: math.unit(25, "feet"),
  8028. default: true
  8029. },
  8030. {
  8031. name: "Lorger",
  8032. height: math.unit(75, "feet")
  8033. },
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(200, "meters")
  8037. },
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8042. {
  8043. front: {
  8044. height: math.unit(2, "meters"),
  8045. weight: math.unit(150, "kg"),
  8046. name: "Front",
  8047. image: {
  8048. source: "./media/characters/everett/front.svg",
  8049. extra: 1017/866,
  8050. bottom: 86/1103
  8051. }
  8052. },
  8053. paw: {
  8054. height: math.unit(2 / 3.6, "meters"),
  8055. name: "Paw",
  8056. image: {
  8057. source: "./media/characters/everett/paw.svg"
  8058. }
  8059. },
  8060. },
  8061. [
  8062. {
  8063. name: "Normal",
  8064. height: math.unit(15, "feet"),
  8065. default: true
  8066. },
  8067. {
  8068. name: "Lorg",
  8069. height: math.unit(70, "feet"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Lorger",
  8074. height: math.unit(250, "feet")
  8075. },
  8076. {
  8077. name: "Macro",
  8078. height: math.unit(500, "meters")
  8079. },
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8084. {
  8085. front: {
  8086. height: math.unit(2, "meters"),
  8087. weight: math.unit(86, "kg"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/rose/front.svg",
  8091. extra: 1785/1636,
  8092. bottom: 30/1815
  8093. },
  8094. form: "liom",
  8095. default: true
  8096. },
  8097. frontSporty: {
  8098. height: math.unit(2, "meters"),
  8099. weight: math.unit(86, "kg"),
  8100. name: "Front (Sporty)",
  8101. image: {
  8102. source: "./media/characters/rose/front-sporty.svg",
  8103. extra: 350/335,
  8104. bottom: 10/360
  8105. },
  8106. form: "liom"
  8107. },
  8108. frontAlt: {
  8109. height: math.unit(1.6, "meters"),
  8110. weight: math.unit(86, "kg"),
  8111. name: "Front (Alt)",
  8112. image: {
  8113. source: "./media/characters/rose/front-alt.svg",
  8114. extra: 299/283,
  8115. bottom: 3/302
  8116. },
  8117. form: "liom"
  8118. },
  8119. plush: {
  8120. height: math.unit(2, "meters"),
  8121. weight: math.unit(86/3, "kg"),
  8122. name: "Plush",
  8123. image: {
  8124. source: "./media/characters/rose/plush.svg",
  8125. extra: 361/337,
  8126. bottom: 11/372
  8127. },
  8128. form: "plush",
  8129. default: true
  8130. },
  8131. faeStanding: {
  8132. height: math.unit(10, "cm"),
  8133. weight: math.unit(10, "grams"),
  8134. name: "Standing",
  8135. image: {
  8136. source: "./media/characters/rose/fae-standing.svg",
  8137. extra: 1189/1060,
  8138. bottom: 27/1216
  8139. },
  8140. form: "fae",
  8141. default: true
  8142. },
  8143. faeSitting: {
  8144. height: math.unit(5, "cm"),
  8145. weight: math.unit(10, "grams"),
  8146. name: "Sitting",
  8147. image: {
  8148. source: "./media/characters/rose/fae-sitting.svg",
  8149. extra: 737/577,
  8150. bottom: 356/1093
  8151. },
  8152. form: "fae"
  8153. },
  8154. faePaw: {
  8155. height: math.unit(1.35, "cm"),
  8156. name: "Paw",
  8157. image: {
  8158. source: "./media/characters/rose/fae-paw.svg"
  8159. },
  8160. form: "fae"
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "True Micro",
  8166. height: math.unit(9, "cm"),
  8167. form: "liom"
  8168. },
  8169. {
  8170. name: "Micro",
  8171. height: math.unit(16, "cm"),
  8172. form: "liom"
  8173. },
  8174. {
  8175. name: "Normal",
  8176. height: math.unit(1.85, "meters"),
  8177. default: true,
  8178. form: "liom"
  8179. },
  8180. {
  8181. name: "Mini-Macro",
  8182. height: math.unit(5, "meters"),
  8183. form: "liom"
  8184. },
  8185. {
  8186. name: "Macro",
  8187. height: math.unit(15, "meters"),
  8188. form: "liom"
  8189. },
  8190. {
  8191. name: "True Macro",
  8192. height: math.unit(40, "meters"),
  8193. form: "liom"
  8194. },
  8195. {
  8196. name: "City Scale",
  8197. height: math.unit(1, "km"),
  8198. form: "liom"
  8199. },
  8200. {
  8201. name: "Plushie",
  8202. height: math.unit(9, "cm"),
  8203. form: "plush",
  8204. default: true
  8205. },
  8206. {
  8207. name: "Fae",
  8208. height: math.unit(10, "cm"),
  8209. form: "fae",
  8210. default: true
  8211. },
  8212. ],
  8213. {
  8214. "liom": {
  8215. name: "Liom"
  8216. },
  8217. "plush": {
  8218. name: "Plush"
  8219. },
  8220. "fae": {
  8221. name: "Fae Fox",
  8222. default: true
  8223. }
  8224. }
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(2, "meters"),
  8231. weight: math.unit(350, "lbs"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/regal/front.svg"
  8235. }
  8236. },
  8237. back: {
  8238. height: math.unit(2, "meters"),
  8239. weight: math.unit(350, "lbs"),
  8240. name: "Back",
  8241. image: {
  8242. source: "./media/characters/regal/back.svg"
  8243. }
  8244. },
  8245. },
  8246. [
  8247. {
  8248. name: "Macro",
  8249. height: math.unit(350, "feet"),
  8250. default: true
  8251. }
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8256. {
  8257. standing: {
  8258. height: math.unit(4 + 11/12, "feet"),
  8259. weight: math.unit(100, "lb"),
  8260. name: "Standing",
  8261. image: {
  8262. source: "./media/characters/opal/standing.svg",
  8263. extra: 1588/1513,
  8264. bottom: 23/1611
  8265. }
  8266. },
  8267. sitting: {
  8268. height: math.unit(2.3, "feet"),
  8269. weight: math.unit(100, "lb"),
  8270. name: "Sitting",
  8271. image: {
  8272. source: "./media/characters/opal/sitting.svg",
  8273. extra: 1031/892,
  8274. bottom: 142/1173
  8275. }
  8276. },
  8277. hand: {
  8278. height: math.unit(0.59, "feet"),
  8279. name: "Hand",
  8280. image: {
  8281. source: "./media/characters/opal/hand.svg"
  8282. }
  8283. },
  8284. foot: {
  8285. height: math.unit(0.61, "feet"),
  8286. name: "Foot",
  8287. image: {
  8288. source: "./media/characters/opal/foot.svg"
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Small",
  8295. height: math.unit(4 + 11 / 12, "feet")
  8296. },
  8297. {
  8298. name: "Normal",
  8299. height: math.unit(20, "feet"),
  8300. default: true
  8301. },
  8302. {
  8303. name: "Macro",
  8304. height: math.unit(120, "feet")
  8305. },
  8306. {
  8307. name: "Megamacro",
  8308. height: math.unit(80, "miles")
  8309. },
  8310. {
  8311. name: "True Size",
  8312. height: math.unit(100000, "lightyears")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(6, "feet"),
  8321. weight: math.unit(200, "lbs"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/vector-wuff/front.svg"
  8325. }
  8326. }
  8327. },
  8328. [
  8329. {
  8330. name: "Normal",
  8331. height: math.unit(2.8, "meters")
  8332. },
  8333. {
  8334. name: "Macro",
  8335. height: math.unit(450, "meters"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Megamacro",
  8340. height: math.unit(15, "kilometers")
  8341. }
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8346. {
  8347. front: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(256, "lbs"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/dannik/front.svg"
  8353. }
  8354. }
  8355. },
  8356. [
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(69.57, "meters"),
  8360. default: true
  8361. },
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8366. {
  8367. front: {
  8368. height: math.unit(6, "feet"),
  8369. weight: math.unit(120, "lbs"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/azura-saharah/front.svg"
  8373. }
  8374. },
  8375. back: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(120, "lbs"),
  8378. name: "Back",
  8379. image: {
  8380. source: "./media/characters/azura-saharah/back.svg"
  8381. }
  8382. },
  8383. },
  8384. [
  8385. {
  8386. name: "Macro",
  8387. height: math.unit(100, "feet"),
  8388. default: true
  8389. },
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8394. {
  8395. side: {
  8396. height: math.unit(5 + 4 / 12, "feet"),
  8397. weight: math.unit(163, "lbs"),
  8398. name: "Side",
  8399. image: {
  8400. source: "./media/characters/kennedy/side.svg"
  8401. }
  8402. }
  8403. },
  8404. [
  8405. {
  8406. name: "Standard Doggo",
  8407. height: math.unit(5 + 4 / 12, "feet")
  8408. },
  8409. {
  8410. name: "Big Doggo",
  8411. height: math.unit(25 + 3 / 12, "feet"),
  8412. default: true
  8413. },
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(5 + 5/12, "feet"),
  8421. weight: math.unit(100, "lbs"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/odios-de-lunar/front.svg",
  8425. extra: 1468/1323,
  8426. bottom: 22/1490
  8427. }
  8428. }
  8429. },
  8430. [
  8431. {
  8432. name: "Micro",
  8433. height: math.unit(3, "inches")
  8434. },
  8435. {
  8436. name: "Normal",
  8437. height: math.unit(5.5, "feet"),
  8438. default: true
  8439. },
  8440. {
  8441. name: "Macro",
  8442. height: math.unit(100, "feet")
  8443. },
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8448. {
  8449. back: {
  8450. height: math.unit(6, "feet"),
  8451. weight: math.unit(220, "lbs"),
  8452. name: "Back",
  8453. image: {
  8454. source: "./media/characters/mandake/back.svg"
  8455. }
  8456. }
  8457. },
  8458. [
  8459. {
  8460. name: "Normal",
  8461. height: math.unit(7, "feet"),
  8462. default: true
  8463. },
  8464. {
  8465. name: "Macro",
  8466. height: math.unit(78, "feet")
  8467. },
  8468. {
  8469. name: "Macro+",
  8470. height: math.unit(300, "meters")
  8471. },
  8472. {
  8473. name: "Macro++",
  8474. height: math.unit(2400, "feet")
  8475. },
  8476. {
  8477. name: "Megamacro",
  8478. height: math.unit(5167, "meters")
  8479. },
  8480. {
  8481. name: "Gigamacro",
  8482. height: math.unit(41769, "miles")
  8483. },
  8484. ]
  8485. ))
  8486. characterMakers.push(() => makeCharacter(
  8487. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8488. {
  8489. front: {
  8490. height: math.unit(6, "feet"),
  8491. weight: math.unit(120, "lbs"),
  8492. name: "Front",
  8493. image: {
  8494. source: "./media/characters/yozey/front.svg"
  8495. }
  8496. },
  8497. frontAlt: {
  8498. height: math.unit(6, "feet"),
  8499. weight: math.unit(120, "lbs"),
  8500. name: "Front (Alt)",
  8501. image: {
  8502. source: "./media/characters/yozey/front-alt.svg"
  8503. }
  8504. },
  8505. side: {
  8506. height: math.unit(6, "feet"),
  8507. weight: math.unit(120, "lbs"),
  8508. name: "Side",
  8509. image: {
  8510. source: "./media/characters/yozey/side.svg"
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Micro",
  8517. height: math.unit(3, "inches"),
  8518. default: true
  8519. },
  8520. {
  8521. name: "Normal",
  8522. height: math.unit(6, "feet")
  8523. }
  8524. ]
  8525. ))
  8526. characterMakers.push(() => makeCharacter(
  8527. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8528. {
  8529. front: {
  8530. height: math.unit(6, "feet"),
  8531. weight: math.unit(103, "lbs"),
  8532. name: "Front",
  8533. image: {
  8534. source: "./media/characters/valeska-voss/front.svg"
  8535. }
  8536. }
  8537. },
  8538. [
  8539. {
  8540. name: "Mini-Sized Sub",
  8541. height: math.unit(3.1, "inches")
  8542. },
  8543. {
  8544. name: "Mid-Sized Sub",
  8545. height: math.unit(6.2, "inches")
  8546. },
  8547. {
  8548. name: "Full-Sized Sub",
  8549. height: math.unit(9.3, "inches")
  8550. },
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(5 + 2 / 12, "foot"),
  8554. default: true
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(6, "feet"),
  8563. weight: math.unit(160, "lbs"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/gene-zeta/front.svg",
  8567. extra: 3006 / 2826,
  8568. bottom: 182 / 3188
  8569. }
  8570. }
  8571. },
  8572. [
  8573. {
  8574. name: "Micro",
  8575. height: math.unit(6, "inches")
  8576. },
  8577. {
  8578. name: "Normal",
  8579. height: math.unit(5 + 11 / 12, "foot"),
  8580. default: true
  8581. },
  8582. {
  8583. name: "Macro",
  8584. height: math.unit(140, "feet")
  8585. },
  8586. {
  8587. name: "Supercharged",
  8588. height: math.unit(2500, "feet")
  8589. },
  8590. ]
  8591. ))
  8592. characterMakers.push(() => makeCharacter(
  8593. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8594. {
  8595. front: {
  8596. height: math.unit(6, "feet"),
  8597. weight: math.unit(350, "lbs"),
  8598. name: "Front",
  8599. image: {
  8600. source: "./media/characters/razinox/front.svg",
  8601. extra: 1686 / 1548,
  8602. bottom: 28.2 / 1868
  8603. }
  8604. },
  8605. back: {
  8606. height: math.unit(6, "feet"),
  8607. weight: math.unit(350, "lbs"),
  8608. name: "Back",
  8609. image: {
  8610. source: "./media/characters/razinox/back.svg",
  8611. extra: 1660 / 1590,
  8612. bottom: 15 / 1665
  8613. }
  8614. },
  8615. },
  8616. [
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(10 + 8 / 12, "foot")
  8620. },
  8621. {
  8622. name: "Minimacro",
  8623. height: math.unit(15, "foot")
  8624. },
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(60, "foot"),
  8628. default: true
  8629. },
  8630. {
  8631. name: "Megamacro",
  8632. height: math.unit(5, "miles")
  8633. },
  8634. {
  8635. name: "Gigamacro",
  8636. height: math.unit(6000, "miles")
  8637. },
  8638. ]
  8639. ))
  8640. characterMakers.push(() => makeCharacter(
  8641. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8642. {
  8643. front: {
  8644. height: math.unit(6, "feet"),
  8645. weight: math.unit(150, "lbs"),
  8646. name: "Front",
  8647. image: {
  8648. source: "./media/characters/cobalt/front.svg"
  8649. }
  8650. }
  8651. },
  8652. [
  8653. {
  8654. name: "Normal",
  8655. height: math.unit(8 + 1 / 12, "foot")
  8656. },
  8657. {
  8658. name: "Macro",
  8659. height: math.unit(111, "foot"),
  8660. default: true
  8661. },
  8662. {
  8663. name: "Supracosmic",
  8664. height: math.unit(1e42, "feet")
  8665. },
  8666. ]
  8667. ))
  8668. characterMakers.push(() => makeCharacter(
  8669. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8670. {
  8671. front: {
  8672. height: math.unit(5, "inches"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/amanda/front.svg",
  8676. extra: 926/791,
  8677. bottom: 38/964
  8678. }
  8679. },
  8680. back: {
  8681. height: math.unit(5, "inches"),
  8682. name: "Back",
  8683. image: {
  8684. source: "./media/characters/amanda/back.svg",
  8685. extra: 909/805,
  8686. bottom: 43/952
  8687. }
  8688. },
  8689. },
  8690. [
  8691. {
  8692. name: "Micro",
  8693. height: math.unit(5, "inches"),
  8694. default: true
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(2.75, "meters"),
  8703. weight: math.unit(1200, "lb"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/teal/front.svg",
  8707. extra: 2463 / 2320,
  8708. bottom: 166 / 2629
  8709. }
  8710. },
  8711. back: {
  8712. height: math.unit(2.75, "meters"),
  8713. weight: math.unit(1200, "lb"),
  8714. name: "Back",
  8715. image: {
  8716. source: "./media/characters/teal/back.svg",
  8717. extra: 2580 / 2489,
  8718. bottom: 151 / 2731
  8719. }
  8720. },
  8721. sitting: {
  8722. height: math.unit(1.9, "meters"),
  8723. weight: math.unit(1200, "lb"),
  8724. name: "Sitting",
  8725. image: {
  8726. source: "./media/characters/teal/sitting.svg",
  8727. extra: 623 / 590,
  8728. bottom: 121 / 744
  8729. }
  8730. },
  8731. standing: {
  8732. height: math.unit(2.75, "meters"),
  8733. weight: math.unit(1200, "lb"),
  8734. name: "Standing",
  8735. image: {
  8736. source: "./media/characters/teal/standing.svg",
  8737. extra: 923 / 893,
  8738. bottom: 60 / 983
  8739. }
  8740. },
  8741. stretching: {
  8742. height: math.unit(3.65, "meters"),
  8743. weight: math.unit(1200, "lb"),
  8744. name: "Stretching",
  8745. image: {
  8746. source: "./media/characters/teal/stretching.svg",
  8747. extra: 1276 / 1244,
  8748. bottom: 0 / 1276
  8749. }
  8750. },
  8751. legged: {
  8752. height: math.unit(1.3, "meters"),
  8753. weight: math.unit(100, "lb"),
  8754. name: "Legged",
  8755. image: {
  8756. source: "./media/characters/teal/legged.svg",
  8757. extra: 462 / 437,
  8758. bottom: 24 / 486
  8759. }
  8760. },
  8761. naga: {
  8762. height: math.unit(5.4, "meters"),
  8763. weight: math.unit(4000, "lb"),
  8764. name: "Naga",
  8765. image: {
  8766. source: "./media/characters/teal/naga.svg",
  8767. extra: 1902 / 1858,
  8768. bottom: 0 / 1902
  8769. }
  8770. },
  8771. hand: {
  8772. height: math.unit(0.52, "meters"),
  8773. name: "Hand",
  8774. image: {
  8775. source: "./media/characters/teal/hand.svg"
  8776. }
  8777. },
  8778. maw: {
  8779. height: math.unit(0.43, "meters"),
  8780. name: "Maw",
  8781. image: {
  8782. source: "./media/characters/teal/maw.svg"
  8783. }
  8784. },
  8785. slit: {
  8786. height: math.unit(0.25, "meters"),
  8787. name: "Slit",
  8788. image: {
  8789. source: "./media/characters/teal/slit.svg"
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Normal",
  8796. height: math.unit(2.75, "meters"),
  8797. default: true
  8798. },
  8799. {
  8800. name: "Macro",
  8801. height: math.unit(300, "feet")
  8802. },
  8803. {
  8804. name: "Macro+",
  8805. height: math.unit(2000, "feet")
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8811. {
  8812. frontCat: {
  8813. height: math.unit(6, "feet"),
  8814. weight: math.unit(180, "lbs"),
  8815. name: "Front (Cat)",
  8816. image: {
  8817. source: "./media/characters/ravin-amulet/front-cat.svg"
  8818. }
  8819. },
  8820. frontCatAlt: {
  8821. height: math.unit(6, "feet"),
  8822. weight: math.unit(180, "lbs"),
  8823. name: "Front (Alt, Cat)",
  8824. image: {
  8825. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8826. }
  8827. },
  8828. frontWerewolf: {
  8829. height: math.unit(6 * 1.2, "feet"),
  8830. weight: math.unit(225, "lbs"),
  8831. name: "Front (Werewolf)",
  8832. image: {
  8833. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8834. }
  8835. },
  8836. backWerewolf: {
  8837. height: math.unit(6 * 1.2, "feet"),
  8838. weight: math.unit(225, "lbs"),
  8839. name: "Back (Werewolf)",
  8840. image: {
  8841. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8842. }
  8843. },
  8844. },
  8845. [
  8846. {
  8847. name: "Nano",
  8848. height: math.unit(1, "micrometer")
  8849. },
  8850. {
  8851. name: "Micro",
  8852. height: math.unit(1, "inch")
  8853. },
  8854. {
  8855. name: "Normal",
  8856. height: math.unit(6, "feet"),
  8857. default: true
  8858. },
  8859. {
  8860. name: "Macro",
  8861. height: math.unit(60, "feet")
  8862. }
  8863. ]
  8864. ))
  8865. characterMakers.push(() => makeCharacter(
  8866. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8867. {
  8868. front: {
  8869. height: math.unit(6, "feet"),
  8870. weight: math.unit(165, "lbs"),
  8871. name: "Front",
  8872. image: {
  8873. source: "./media/characters/fluoresce/front.svg"
  8874. }
  8875. }
  8876. },
  8877. [
  8878. {
  8879. name: "Micro",
  8880. height: math.unit(6, "cm")
  8881. },
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(5 + 7 / 12, "feet"),
  8885. default: true
  8886. },
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(56, "feet")
  8890. },
  8891. {
  8892. name: "Megamacro",
  8893. height: math.unit(1.9, "miles")
  8894. },
  8895. ]
  8896. ))
  8897. characterMakers.push(() => makeCharacter(
  8898. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8899. {
  8900. front: {
  8901. height: math.unit(9 + 6 / 12, "feet"),
  8902. weight: math.unit(523, "lbs"),
  8903. name: "Side",
  8904. image: {
  8905. source: "./media/characters/aurora/side.svg",
  8906. extra: 474/393,
  8907. bottom: 5/479
  8908. }
  8909. }
  8910. },
  8911. [
  8912. {
  8913. name: "Normal",
  8914. height: math.unit(9 + 6 / 12, "feet")
  8915. },
  8916. {
  8917. name: "Macro",
  8918. height: math.unit(96, "feet"),
  8919. default: true
  8920. },
  8921. {
  8922. name: "Macro+",
  8923. height: math.unit(243, "feet")
  8924. },
  8925. ]
  8926. ))
  8927. characterMakers.push(() => makeCharacter(
  8928. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8929. {
  8930. front: {
  8931. height: math.unit(194, "cm"),
  8932. weight: math.unit(90, "kg"),
  8933. name: "Front",
  8934. image: {
  8935. source: "./media/characters/ranek/front.svg",
  8936. extra: 1862/1791,
  8937. bottom: 80/1942
  8938. }
  8939. },
  8940. back: {
  8941. height: math.unit(194, "cm"),
  8942. weight: math.unit(90, "kg"),
  8943. name: "Back",
  8944. image: {
  8945. source: "./media/characters/ranek/back.svg",
  8946. extra: 1853/1787,
  8947. bottom: 74/1927
  8948. }
  8949. },
  8950. feral: {
  8951. height: math.unit(30, "cm"),
  8952. weight: math.unit(1.6, "lbs"),
  8953. name: "Feral",
  8954. image: {
  8955. source: "./media/characters/ranek/feral.svg",
  8956. extra: 990/631,
  8957. bottom: 29/1019
  8958. }
  8959. },
  8960. },
  8961. [
  8962. {
  8963. name: "Normal",
  8964. height: math.unit(194, "cm"),
  8965. default: true
  8966. },
  8967. {
  8968. name: "Macro",
  8969. height: math.unit(100, "meters")
  8970. },
  8971. ]
  8972. ))
  8973. characterMakers.push(() => makeCharacter(
  8974. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8975. {
  8976. front: {
  8977. height: math.unit(5 + 6 / 12, "feet"),
  8978. weight: math.unit(153, "lbs"),
  8979. name: "Front",
  8980. image: {
  8981. source: "./media/characters/andrew-cooper/front.svg"
  8982. }
  8983. },
  8984. },
  8985. [
  8986. {
  8987. name: "Nano",
  8988. height: math.unit(1, "mm")
  8989. },
  8990. {
  8991. name: "Micro",
  8992. height: math.unit(2, "inches")
  8993. },
  8994. {
  8995. name: "Normal",
  8996. height: math.unit(5 + 6 / 12, "feet"),
  8997. default: true
  8998. }
  8999. ]
  9000. ))
  9001. characterMakers.push(() => makeCharacter(
  9002. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9003. {
  9004. front: {
  9005. height: math.unit(6, "feet"),
  9006. weight: math.unit(180, "lbs"),
  9007. name: "Front",
  9008. image: {
  9009. source: "./media/characters/akane-sato/front.svg",
  9010. extra: 1219 / 1140
  9011. }
  9012. },
  9013. back: {
  9014. height: math.unit(6, "feet"),
  9015. weight: math.unit(180, "lbs"),
  9016. name: "Back",
  9017. image: {
  9018. source: "./media/characters/akane-sato/back.svg",
  9019. extra: 1219 / 1170
  9020. }
  9021. },
  9022. },
  9023. [
  9024. {
  9025. name: "Normal",
  9026. height: math.unit(2.5, "meters")
  9027. },
  9028. {
  9029. name: "Macro",
  9030. height: math.unit(250, "meters"),
  9031. default: true
  9032. },
  9033. {
  9034. name: "Megamacro",
  9035. height: math.unit(25, "km")
  9036. },
  9037. ]
  9038. ))
  9039. characterMakers.push(() => makeCharacter(
  9040. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9041. {
  9042. front: {
  9043. height: math.unit(6, "feet"),
  9044. weight: math.unit(65, "kg"),
  9045. name: "Front",
  9046. image: {
  9047. source: "./media/characters/rook/front.svg",
  9048. extra: 960 / 950
  9049. }
  9050. }
  9051. },
  9052. [
  9053. {
  9054. name: "Normal",
  9055. height: math.unit(8.8, "feet")
  9056. },
  9057. {
  9058. name: "Macro",
  9059. height: math.unit(88, "feet"),
  9060. default: true
  9061. },
  9062. {
  9063. name: "Megamacro",
  9064. height: math.unit(8, "miles")
  9065. },
  9066. ]
  9067. ))
  9068. characterMakers.push(() => makeCharacter(
  9069. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9070. {
  9071. front: {
  9072. height: math.unit(12 + 2 / 12, "feet"),
  9073. weight: math.unit(808, "lbs"),
  9074. name: "Front",
  9075. image: {
  9076. source: "./media/characters/prodigy/front.svg"
  9077. }
  9078. }
  9079. },
  9080. [
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(12 + 2 / 12, "feet"),
  9084. default: true
  9085. },
  9086. {
  9087. name: "Macro",
  9088. height: math.unit(143, "feet")
  9089. },
  9090. {
  9091. name: "Macro+",
  9092. height: math.unit(400, "feet")
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9098. {
  9099. front: {
  9100. height: math.unit(6, "feet"),
  9101. weight: math.unit(225, "lbs"),
  9102. name: "Front",
  9103. image: {
  9104. source: "./media/characters/daniel/front.svg"
  9105. }
  9106. },
  9107. leaning: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(225, "lbs"),
  9110. name: "Leaning",
  9111. image: {
  9112. source: "./media/characters/daniel/leaning.svg"
  9113. }
  9114. },
  9115. },
  9116. [
  9117. {
  9118. name: "Macro",
  9119. height: math.unit(1000, "feet"),
  9120. default: true
  9121. },
  9122. ]
  9123. ))
  9124. characterMakers.push(() => makeCharacter(
  9125. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9126. {
  9127. front: {
  9128. height: math.unit(6, "feet"),
  9129. weight: math.unit(88, "lbs"),
  9130. name: "Front",
  9131. image: {
  9132. source: "./media/characters/chiros/front.svg",
  9133. extra: 306 / 226
  9134. }
  9135. },
  9136. side: {
  9137. height: math.unit(6, "feet"),
  9138. weight: math.unit(88, "lbs"),
  9139. name: "Side",
  9140. image: {
  9141. source: "./media/characters/chiros/side.svg",
  9142. extra: 306 / 226
  9143. }
  9144. },
  9145. },
  9146. [
  9147. {
  9148. name: "Normal",
  9149. height: math.unit(6, "cm"),
  9150. default: true
  9151. },
  9152. ]
  9153. ))
  9154. characterMakers.push(() => makeCharacter(
  9155. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9156. {
  9157. front: {
  9158. height: math.unit(6, "feet"),
  9159. weight: math.unit(100, "lbs"),
  9160. name: "Front",
  9161. image: {
  9162. source: "./media/characters/selka/front.svg",
  9163. extra: 947 / 887
  9164. }
  9165. }
  9166. },
  9167. [
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(5, "cm"),
  9171. default: true
  9172. },
  9173. ]
  9174. ))
  9175. characterMakers.push(() => makeCharacter(
  9176. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9177. {
  9178. front: {
  9179. height: math.unit(8 + 3 / 12, "feet"),
  9180. weight: math.unit(424, "lbs"),
  9181. name: "Front",
  9182. image: {
  9183. source: "./media/characters/verin/front.svg",
  9184. extra: 1845 / 1550
  9185. }
  9186. },
  9187. frontArmored: {
  9188. height: math.unit(8 + 3 / 12, "feet"),
  9189. weight: math.unit(424, "lbs"),
  9190. name: "Front (Armored)",
  9191. image: {
  9192. source: "./media/characters/verin/front-armor.svg",
  9193. extra: 1845 / 1550,
  9194. bottom: 0.01
  9195. }
  9196. },
  9197. back: {
  9198. height: math.unit(8 + 3 / 12, "feet"),
  9199. weight: math.unit(424, "lbs"),
  9200. name: "Back",
  9201. image: {
  9202. source: "./media/characters/verin/back.svg",
  9203. bottom: 0.1,
  9204. extra: 1
  9205. }
  9206. },
  9207. foot: {
  9208. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9209. name: "Foot",
  9210. image: {
  9211. source: "./media/characters/verin/foot.svg"
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(8 + 3 / 12, "feet")
  9219. },
  9220. {
  9221. name: "Minimacro",
  9222. height: math.unit(21, "feet"),
  9223. default: true
  9224. },
  9225. {
  9226. name: "Macro",
  9227. height: math.unit(626, "feet")
  9228. },
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9233. {
  9234. front: {
  9235. height: math.unit(2.718, "meters"),
  9236. weight: math.unit(150, "lbs"),
  9237. name: "Front",
  9238. image: {
  9239. source: "./media/characters/sovrim-terraquian/front.svg",
  9240. extra: 1752/1689,
  9241. bottom: 36/1788
  9242. }
  9243. },
  9244. back: {
  9245. height: math.unit(2.718, "meters"),
  9246. weight: math.unit(150, "lbs"),
  9247. name: "Back",
  9248. image: {
  9249. source: "./media/characters/sovrim-terraquian/back.svg",
  9250. extra: 1698/1657,
  9251. bottom: 58/1756
  9252. }
  9253. },
  9254. tongue: {
  9255. height: math.unit(2.865, "feet"),
  9256. name: "Tongue",
  9257. image: {
  9258. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9259. }
  9260. },
  9261. hand: {
  9262. height: math.unit(1.61, "feet"),
  9263. name: "Hand",
  9264. image: {
  9265. source: "./media/characters/sovrim-terraquian/hand.svg"
  9266. }
  9267. },
  9268. foot: {
  9269. height: math.unit(1.05, "feet"),
  9270. name: "Foot",
  9271. image: {
  9272. source: "./media/characters/sovrim-terraquian/foot.svg"
  9273. }
  9274. },
  9275. footAlt: {
  9276. height: math.unit(0.88, "feet"),
  9277. name: "Foot (Alt)",
  9278. image: {
  9279. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9280. }
  9281. },
  9282. },
  9283. [
  9284. {
  9285. name: "Micro",
  9286. height: math.unit(2, "inches")
  9287. },
  9288. {
  9289. name: "Small",
  9290. height: math.unit(1, "meter")
  9291. },
  9292. {
  9293. name: "Normal",
  9294. height: math.unit(Math.E, "meters"),
  9295. default: true
  9296. },
  9297. {
  9298. name: "Macro",
  9299. height: math.unit(20, "meters")
  9300. },
  9301. {
  9302. name: "Macro+",
  9303. height: math.unit(400, "meters")
  9304. },
  9305. ]
  9306. ))
  9307. characterMakers.push(() => makeCharacter(
  9308. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9309. {
  9310. front: {
  9311. height: math.unit(7, "feet"),
  9312. weight: math.unit(489, "lbs"),
  9313. name: "Front",
  9314. image: {
  9315. source: "./media/characters/reece-silvermane/front.svg",
  9316. bottom: 0.02,
  9317. extra: 1
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Macro",
  9324. height: math.unit(1.5, "miles"),
  9325. default: true
  9326. },
  9327. ]
  9328. ))
  9329. characterMakers.push(() => makeCharacter(
  9330. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9331. {
  9332. front: {
  9333. height: math.unit(6, "feet"),
  9334. weight: math.unit(78, "kg"),
  9335. name: "Front",
  9336. image: {
  9337. source: "./media/characters/kane/front.svg",
  9338. extra: 978 / 899
  9339. }
  9340. },
  9341. back: {
  9342. height: math.unit(6, "feet"),
  9343. weight: math.unit(78, "kg"),
  9344. name: "Back",
  9345. image: {
  9346. source: "./media/characters/kane/back.svg",
  9347. extra: 1966/1800,
  9348. bottom: 0/1966
  9349. }
  9350. },
  9351. head: {
  9352. height: math.unit(1.4, "feet"),
  9353. name: "Head",
  9354. image: {
  9355. source: "./media/characters/kane/head.svg"
  9356. }
  9357. },
  9358. },
  9359. [
  9360. {
  9361. name: "Normal",
  9362. height: math.unit(2.1, "m"),
  9363. },
  9364. {
  9365. name: "Macro",
  9366. height: math.unit(1, "km"),
  9367. default: true
  9368. },
  9369. ]
  9370. ))
  9371. characterMakers.push(() => makeCharacter(
  9372. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9373. {
  9374. front: {
  9375. height: math.unit(6, "feet"),
  9376. weight: math.unit(200, "kg"),
  9377. name: "Front",
  9378. image: {
  9379. source: "./media/characters/tegon/front.svg",
  9380. bottom: 0.01,
  9381. extra: 1
  9382. }
  9383. },
  9384. },
  9385. [
  9386. {
  9387. name: "Micro",
  9388. height: math.unit(1, "inch")
  9389. },
  9390. {
  9391. name: "Normal",
  9392. height: math.unit(6 + 3 / 12, "feet"),
  9393. default: true
  9394. },
  9395. {
  9396. name: "Macro",
  9397. height: math.unit(300, "feet")
  9398. },
  9399. {
  9400. name: "Megamacro",
  9401. height: math.unit(69, "miles")
  9402. },
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9407. {
  9408. side: {
  9409. height: math.unit(6, "feet"),
  9410. weight: math.unit(2304, "lbs"),
  9411. name: "Side",
  9412. image: {
  9413. source: "./media/characters/arcturax/side.svg",
  9414. extra: 790 / 376,
  9415. bottom: 0.01
  9416. }
  9417. },
  9418. },
  9419. [
  9420. {
  9421. name: "Micro",
  9422. height: math.unit(2, "inch")
  9423. },
  9424. {
  9425. name: "Normal",
  9426. height: math.unit(6, "feet")
  9427. },
  9428. {
  9429. name: "Macro",
  9430. height: math.unit(39, "feet"),
  9431. default: true
  9432. },
  9433. {
  9434. name: "Megamacro",
  9435. height: math.unit(7, "miles")
  9436. },
  9437. ]
  9438. ))
  9439. characterMakers.push(() => makeCharacter(
  9440. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9441. {
  9442. front: {
  9443. height: math.unit(6, "feet"),
  9444. weight: math.unit(50, "lbs"),
  9445. name: "Front",
  9446. image: {
  9447. source: "./media/characters/sentri/front.svg",
  9448. extra: 1750 / 1570,
  9449. bottom: 0.025
  9450. }
  9451. },
  9452. frontAlt: {
  9453. height: math.unit(6, "feet"),
  9454. weight: math.unit(50, "lbs"),
  9455. name: "Front (Alt)",
  9456. image: {
  9457. source: "./media/characters/sentri/front-alt.svg",
  9458. extra: 1750 / 1570,
  9459. bottom: 0.025
  9460. }
  9461. },
  9462. },
  9463. [
  9464. {
  9465. name: "Normal",
  9466. height: math.unit(15, "feet"),
  9467. default: true
  9468. },
  9469. {
  9470. name: "Macro",
  9471. height: math.unit(2500, "feet")
  9472. }
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9477. {
  9478. front: {
  9479. height: math.unit(5 + 8 / 12, "feet"),
  9480. weight: math.unit(130, "lbs"),
  9481. name: "Front",
  9482. image: {
  9483. source: "./media/characters/corvin/front.svg",
  9484. extra: 1803 / 1629
  9485. }
  9486. },
  9487. frontShirt: {
  9488. height: math.unit(5 + 8 / 12, "feet"),
  9489. weight: math.unit(130, "lbs"),
  9490. name: "Front (Shirt)",
  9491. image: {
  9492. source: "./media/characters/corvin/front-shirt.svg",
  9493. extra: 1803 / 1629
  9494. }
  9495. },
  9496. frontPoncho: {
  9497. height: math.unit(5 + 8 / 12, "feet"),
  9498. weight: math.unit(130, "lbs"),
  9499. name: "Front (Poncho)",
  9500. image: {
  9501. source: "./media/characters/corvin/front-poncho.svg",
  9502. extra: 1803 / 1629
  9503. }
  9504. },
  9505. side: {
  9506. height: math.unit(5 + 8 / 12, "feet"),
  9507. weight: math.unit(130, "lbs"),
  9508. name: "Side",
  9509. image: {
  9510. source: "./media/characters/corvin/side.svg",
  9511. extra: 1012 / 945
  9512. }
  9513. },
  9514. back: {
  9515. height: math.unit(5 + 8 / 12, "feet"),
  9516. weight: math.unit(130, "lbs"),
  9517. name: "Back",
  9518. image: {
  9519. source: "./media/characters/corvin/back.svg",
  9520. extra: 1803 / 1629
  9521. }
  9522. },
  9523. },
  9524. [
  9525. {
  9526. name: "Micro",
  9527. height: math.unit(3, "inches")
  9528. },
  9529. {
  9530. name: "Normal",
  9531. height: math.unit(5 + 8 / 12, "feet")
  9532. },
  9533. {
  9534. name: "Macro",
  9535. height: math.unit(300, "feet"),
  9536. default: true
  9537. },
  9538. {
  9539. name: "Megamacro",
  9540. height: math.unit(500, "miles")
  9541. }
  9542. ]
  9543. ))
  9544. characterMakers.push(() => makeCharacter(
  9545. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9546. {
  9547. front: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(135, "lbs"),
  9550. name: "Front",
  9551. image: {
  9552. source: "./media/characters/q/front.svg",
  9553. extra: 854 / 752,
  9554. bottom: 0.005
  9555. }
  9556. },
  9557. back: {
  9558. height: math.unit(6, "feet"),
  9559. weight: math.unit(130, "lbs"),
  9560. name: "Back",
  9561. image: {
  9562. source: "./media/characters/q/back.svg",
  9563. extra: 854 / 752
  9564. }
  9565. },
  9566. },
  9567. [
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(90, "feet"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Extra Macro",
  9575. height: math.unit(300, "feet"),
  9576. },
  9577. {
  9578. name: "BIG WALF",
  9579. height: math.unit(750, "feet"),
  9580. },
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9585. {
  9586. front: {
  9587. height: math.unit(3, "feet"),
  9588. weight: math.unit(28, "lbs"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/citrine/front.svg"
  9592. }
  9593. }
  9594. },
  9595. [
  9596. {
  9597. name: "Normal",
  9598. height: math.unit(3, "feet"),
  9599. default: true
  9600. }
  9601. ]
  9602. ))
  9603. characterMakers.push(() => makeCharacter(
  9604. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9605. {
  9606. front: {
  9607. height: math.unit(14, "feet"),
  9608. weight: math.unit(1450, "kg"),
  9609. preyCapacity: math.unit(15, "people"),
  9610. name: "Front",
  9611. image: {
  9612. source: "./media/characters/aura-starwind/front.svg",
  9613. extra: 1440/1327,
  9614. bottom: 11/1451
  9615. }
  9616. },
  9617. side: {
  9618. height: math.unit(14, "feet"),
  9619. weight: math.unit(1450, "kg"),
  9620. preyCapacity: math.unit(15, "people"),
  9621. name: "Side",
  9622. image: {
  9623. source: "./media/characters/aura-starwind/side.svg",
  9624. extra: 1654 / 1497
  9625. }
  9626. },
  9627. taur: {
  9628. height: math.unit(18, "feet"),
  9629. weight: math.unit(5500, "kg"),
  9630. preyCapacity: math.unit(50, "people"),
  9631. name: "Taur",
  9632. image: {
  9633. source: "./media/characters/aura-starwind/taur.svg",
  9634. extra: 1760 / 1650
  9635. }
  9636. },
  9637. feral: {
  9638. height: math.unit(46, "feet"),
  9639. weight: math.unit(25000, "kg"),
  9640. preyCapacity: math.unit(120, "people"),
  9641. name: "Feral",
  9642. image: {
  9643. source: "./media/characters/aura-starwind/feral.svg"
  9644. }
  9645. },
  9646. },
  9647. [
  9648. {
  9649. name: "Normal",
  9650. height: math.unit(14, "feet"),
  9651. default: true
  9652. },
  9653. {
  9654. name: "Macro",
  9655. height: math.unit(50, "meters")
  9656. },
  9657. {
  9658. name: "Megamacro",
  9659. height: math.unit(5000, "meters")
  9660. },
  9661. {
  9662. name: "Gigamacro",
  9663. height: math.unit(100000, "kilometers")
  9664. },
  9665. ]
  9666. ))
  9667. characterMakers.push(() => makeCharacter(
  9668. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9669. {
  9670. front: {
  9671. height: math.unit(2 + 7 / 12, "feet"),
  9672. weight: math.unit(32, "lbs"),
  9673. name: "Front",
  9674. image: {
  9675. source: "./media/characters/rivet/front.svg",
  9676. extra: 1716 / 1658,
  9677. bottom: 0.03
  9678. }
  9679. },
  9680. foot: {
  9681. height: math.unit(0.551, "feet"),
  9682. name: "Rivet's Foot",
  9683. image: {
  9684. source: "./media/characters/rivet/foot.svg"
  9685. },
  9686. rename: true
  9687. }
  9688. },
  9689. [
  9690. {
  9691. name: "Micro",
  9692. height: math.unit(1.5, "inches"),
  9693. },
  9694. {
  9695. name: "Normal",
  9696. height: math.unit(2 + 7 / 12, "feet"),
  9697. default: true
  9698. },
  9699. {
  9700. name: "Macro",
  9701. height: math.unit(85, "feet")
  9702. },
  9703. {
  9704. name: "Megamacro",
  9705. height: math.unit(2.2, "km")
  9706. }
  9707. ]
  9708. ))
  9709. characterMakers.push(() => makeCharacter(
  9710. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9711. {
  9712. front: {
  9713. height: math.unit(5 + 9 / 12, "feet"),
  9714. weight: math.unit(150, "lbs"),
  9715. name: "Front",
  9716. image: {
  9717. source: "./media/characters/coffee/front.svg",
  9718. extra: 946/880,
  9719. bottom: 66/1012
  9720. }
  9721. },
  9722. foot: {
  9723. height: math.unit(1.29, "feet"),
  9724. name: "Foot",
  9725. image: {
  9726. source: "./media/characters/coffee/foot.svg"
  9727. }
  9728. },
  9729. },
  9730. [
  9731. {
  9732. name: "Micro",
  9733. height: math.unit(2, "inches"),
  9734. },
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(5 + 9 / 12, "feet"),
  9738. default: true
  9739. },
  9740. {
  9741. name: "Macro",
  9742. height: math.unit(800, "feet")
  9743. },
  9744. {
  9745. name: "Megamacro",
  9746. height: math.unit(25, "miles")
  9747. }
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(6, "feet"),
  9755. weight: math.unit(200, "lbs"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/chari-gal/front.svg",
  9759. extra: 735/649,
  9760. bottom: 55/790
  9761. },
  9762. form: "normal",
  9763. default: true
  9764. },
  9765. back: {
  9766. height: math.unit(6, "feet"),
  9767. weight: math.unit(200, "lb"),
  9768. name: "Back",
  9769. image: {
  9770. source: "./media/characters/chari-gal/back.svg",
  9771. extra: 762/666,
  9772. bottom: 31/793
  9773. },
  9774. form: "normal"
  9775. },
  9776. mouth: {
  9777. height: math.unit(1.35, "feet"),
  9778. name: "Mouth",
  9779. image: {
  9780. source: "./media/characters/chari-gal/mouth.svg"
  9781. },
  9782. form: "normal"
  9783. },
  9784. gigantamax: {
  9785. height: math.unit(6 * 16, "feet"),
  9786. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9787. name: "Gigantamax",
  9788. image: {
  9789. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9790. extra: 1507/1149,
  9791. bottom: 254/1761
  9792. },
  9793. form: "gigantamax",
  9794. default: true
  9795. },
  9796. },
  9797. [
  9798. {
  9799. name: "Normal",
  9800. height: math.unit(5 + 7 / 12, "feet"),
  9801. form: "normal",
  9802. },
  9803. {
  9804. name: "Macro",
  9805. height: math.unit(200, "feet"),
  9806. default: true,
  9807. form: "normal"
  9808. },
  9809. {
  9810. name: "Normal",
  9811. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9812. form: "gigantamax",
  9813. },
  9814. {
  9815. name: "Macro",
  9816. height: math.unit(16 * 200, "feet"),
  9817. default: true,
  9818. form: "gigantamax"
  9819. },
  9820. ],
  9821. {
  9822. "normal": {
  9823. name: "Normal",
  9824. default: true
  9825. },
  9826. "gigantamax": {
  9827. name: "Gigantamax",
  9828. },
  9829. }
  9830. ))
  9831. characterMakers.push(() => makeCharacter(
  9832. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9833. {
  9834. front: {
  9835. height: math.unit(6, "feet"),
  9836. weight: math.unit(150, "lbs"),
  9837. name: "Front",
  9838. image: {
  9839. source: "./media/characters/nova/front.svg",
  9840. extra: 5000 / 4722,
  9841. bottom: 0.02
  9842. }
  9843. }
  9844. },
  9845. [
  9846. {
  9847. name: "Micro-",
  9848. height: math.unit(0.8, "inches")
  9849. },
  9850. {
  9851. name: "Micro",
  9852. height: math.unit(2, "inches"),
  9853. default: true
  9854. },
  9855. ]
  9856. ))
  9857. characterMakers.push(() => makeCharacter(
  9858. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9859. {
  9860. koboldFront: {
  9861. height: math.unit(3 + 1 / 12, "feet"),
  9862. weight: math.unit(21.7, "lbs"),
  9863. name: "Front",
  9864. image: {
  9865. source: "./media/characters/argent/kobold-front.svg",
  9866. extra: 1471 / 1331,
  9867. bottom: 100.8 / 1575.5
  9868. },
  9869. form: "kobold",
  9870. default: true
  9871. },
  9872. dragonFront: {
  9873. height: math.unit(75, "inches"),
  9874. name: "Front",
  9875. image: {
  9876. source: "./media/characters/argent/dragon-front.svg",
  9877. extra: 1389/1248,
  9878. bottom: 54/1443
  9879. },
  9880. form: "dragon",
  9881. },
  9882. dragonBack: {
  9883. height: math.unit(75, "inches"),
  9884. name: "Back",
  9885. image: {
  9886. source: "./media/characters/argent/dragon-back.svg",
  9887. extra: 1399/1271,
  9888. bottom: 23/1422
  9889. },
  9890. form: "dragon",
  9891. },
  9892. dragonDressed: {
  9893. height: math.unit(75, "inches"),
  9894. name: "Dressed",
  9895. image: {
  9896. source: "./media/characters/argent/dragon-dressed.svg",
  9897. extra: 1350/1215,
  9898. bottom: 26/1376
  9899. },
  9900. form: "dragon"
  9901. },
  9902. dragonHead: {
  9903. height: math.unit(23.5, "inches"),
  9904. name: "Head",
  9905. image: {
  9906. source: "./media/characters/argent/dragon-head.svg"
  9907. },
  9908. form: "dragon",
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Micro",
  9914. height: math.unit(2, "inches"),
  9915. form: "kobold",
  9916. },
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(3 + 1 / 12, "feet"),
  9920. form: "kobold",
  9921. default: true
  9922. },
  9923. {
  9924. name: "Macro",
  9925. height: math.unit(120, "feet"),
  9926. form: "kobold",
  9927. },
  9928. {
  9929. name: "Speck",
  9930. height: math.unit(1, "mm"),
  9931. form: "dragon",
  9932. },
  9933. {
  9934. name: "Tiny",
  9935. height: math.unit(1, "cm"),
  9936. form: "dragon",
  9937. },
  9938. {
  9939. name: "Micro",
  9940. height: math.unit(5, "cm"),
  9941. form: "dragon",
  9942. },
  9943. {
  9944. name: "Normal",
  9945. height: math.unit(75, "inches"),
  9946. form: "dragon",
  9947. default: true
  9948. },
  9949. {
  9950. name: "Extra Tall",
  9951. height: math.unit(9, "feet"),
  9952. form: "dragon",
  9953. },
  9954. {
  9955. name: "Inconvenient",
  9956. height: math.unit(5, "meters"),
  9957. form: "dragon",
  9958. },
  9959. {
  9960. name: "Macro",
  9961. height: math.unit(70, "meters"),
  9962. form: "dragon",
  9963. },
  9964. {
  9965. name: "Macro+",
  9966. height: math.unit(250, "meters"),
  9967. form: "dragon",
  9968. },
  9969. {
  9970. name: "Megamacro",
  9971. height: math.unit(20, "km"),
  9972. form: "dragon",
  9973. },
  9974. {
  9975. name: "Mountainous",
  9976. height: math.unit(100, "km"),
  9977. form: "dragon",
  9978. },
  9979. {
  9980. name: "Continental",
  9981. height: math.unit(2, "megameters"),
  9982. form: "dragon",
  9983. },
  9984. {
  9985. name: "Too Big",
  9986. height: math.unit(900, "megameters"),
  9987. form: "dragon",
  9988. },
  9989. ],
  9990. {
  9991. "kobold": {
  9992. name: "Kobold",
  9993. default: true
  9994. },
  9995. "dragon": {
  9996. name: "Dragon",
  9997. },
  9998. }
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10002. {
  10003. lamp: {
  10004. height: math.unit(7 * 1559 / 989, "feet"),
  10005. name: "Magic Lamp",
  10006. image: {
  10007. source: "./media/characters/mira-al-cul/lamp.svg",
  10008. extra: 1617 / 1559
  10009. }
  10010. },
  10011. front: {
  10012. height: math.unit(7, "feet"),
  10013. name: "Front",
  10014. image: {
  10015. source: "./media/characters/mira-al-cul/front.svg",
  10016. extra: 1044 / 990
  10017. }
  10018. },
  10019. },
  10020. [
  10021. {
  10022. name: "Heavily Restricted",
  10023. height: math.unit(7 * 1559 / 989, "feet")
  10024. },
  10025. {
  10026. name: "Freshly Freed",
  10027. height: math.unit(50 * 1559 / 989, "feet")
  10028. },
  10029. {
  10030. name: "World Encompassing",
  10031. height: math.unit(10000 * 1559 / 989, "miles")
  10032. },
  10033. {
  10034. name: "Galactic",
  10035. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10036. },
  10037. {
  10038. name: "Palmed Universe",
  10039. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10040. default: true
  10041. },
  10042. {
  10043. name: "Multiversal Matriarch",
  10044. height: math.unit(8.87e10, "yottameters")
  10045. },
  10046. {
  10047. name: "Void Mother",
  10048. height: math.unit(3.14e110, "yottaparsecs")
  10049. },
  10050. {
  10051. name: "Toying with Transcendence",
  10052. height: math.unit(1e307, "meters")
  10053. },
  10054. ]
  10055. ))
  10056. characterMakers.push(() => makeCharacter(
  10057. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10058. {
  10059. front: {
  10060. height: math.unit(17 + 1 / 12, "feet"),
  10061. weight: math.unit(476.2 * 5, "lbs"),
  10062. name: "Front",
  10063. image: {
  10064. source: "./media/characters/kuro-shi-uchū/front.svg",
  10065. extra: 2329 / 1835,
  10066. bottom: 0.02
  10067. }
  10068. },
  10069. },
  10070. [
  10071. {
  10072. name: "Micro",
  10073. height: math.unit(2, "inches")
  10074. },
  10075. {
  10076. name: "Normal",
  10077. height: math.unit(12, "meters")
  10078. },
  10079. {
  10080. name: "Planetary",
  10081. height: math.unit(0.00929, "AU"),
  10082. default: true
  10083. },
  10084. {
  10085. name: "Universal",
  10086. height: math.unit(20, "gigaparsecs")
  10087. },
  10088. ]
  10089. ))
  10090. characterMakers.push(() => makeCharacter(
  10091. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10092. {
  10093. front: {
  10094. height: math.unit(5 + 2 / 12, "feet"),
  10095. weight: math.unit(120, "lbs"),
  10096. name: "Front",
  10097. image: {
  10098. source: "./media/characters/katherine/front.svg",
  10099. extra: 2075 / 1969
  10100. }
  10101. },
  10102. dress: {
  10103. height: math.unit(5 + 2 / 12, "feet"),
  10104. weight: math.unit(120, "lbs"),
  10105. name: "Dress",
  10106. image: {
  10107. source: "./media/characters/katherine/dress.svg",
  10108. extra: 2258 / 2064
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Micro",
  10115. height: math.unit(1, "inches"),
  10116. default: true
  10117. },
  10118. {
  10119. name: "Normal",
  10120. height: math.unit(5 + 2 / 12, "feet")
  10121. },
  10122. {
  10123. name: "Macro",
  10124. height: math.unit(100, "meters")
  10125. },
  10126. {
  10127. name: "Megamacro",
  10128. height: math.unit(80, "miles")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(7 + 8 / 12, "feet"),
  10137. weight: math.unit(250, "lbs"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/yevis/front.svg",
  10141. extra: 1938 / 1755
  10142. }
  10143. }
  10144. },
  10145. [
  10146. {
  10147. name: "Mortal",
  10148. height: math.unit(7 + 8 / 12, "feet")
  10149. },
  10150. {
  10151. name: "Battle",
  10152. height: math.unit(25 + 11 / 12, "feet")
  10153. },
  10154. {
  10155. name: "Wrath",
  10156. height: math.unit(1654 + 11 / 12, "feet")
  10157. },
  10158. {
  10159. name: "Planet Destroyer",
  10160. height: math.unit(12000, "miles")
  10161. },
  10162. {
  10163. name: "Galaxy Conqueror",
  10164. height: math.unit(1.45, "zettameters"),
  10165. default: true
  10166. },
  10167. {
  10168. name: "Universal War",
  10169. height: math.unit(184, "gigaparsecs")
  10170. },
  10171. {
  10172. name: "Eternity War",
  10173. height: math.unit(1.98e55, "yottaparsecs")
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10179. {
  10180. front: {
  10181. height: math.unit(5 + 8 / 12, "feet"),
  10182. weight: math.unit(63, "kg"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/xavier/front.svg",
  10186. extra: 944 / 883
  10187. }
  10188. },
  10189. frontStretch: {
  10190. height: math.unit(5 + 8 / 12, "feet"),
  10191. weight: math.unit(63, "kg"),
  10192. name: "Stretching",
  10193. image: {
  10194. source: "./media/characters/xavier/front-stretch.svg",
  10195. extra: 962 / 820
  10196. }
  10197. },
  10198. },
  10199. [
  10200. {
  10201. name: "Normal",
  10202. height: math.unit(5 + 8 / 12, "feet")
  10203. },
  10204. {
  10205. name: "Macro",
  10206. height: math.unit(100, "meters"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "McLargeHuge",
  10211. height: math.unit(10, "miles")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10217. {
  10218. front: {
  10219. height: math.unit(5 + 5 / 12, "feet"),
  10220. weight: math.unit(150, "lb"),
  10221. name: "Front",
  10222. image: {
  10223. source: "./media/characters/joshii/front.svg",
  10224. extra: 765 / 653,
  10225. bottom: 51 / 816
  10226. }
  10227. },
  10228. foot: {
  10229. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10230. name: "Foot",
  10231. image: {
  10232. source: "./media/characters/joshii/foot.svg"
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Micro",
  10239. height: math.unit(2, "inches")
  10240. },
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(5 + 5 / 12, "feet")
  10244. },
  10245. {
  10246. name: "Macro",
  10247. height: math.unit(785, "feet"),
  10248. default: true
  10249. },
  10250. {
  10251. name: "Megamacro",
  10252. height: math.unit(24.5, "miles")
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(6, "feet"),
  10261. weight: math.unit(150, "lb"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/goddess-elizabeth/front.svg",
  10265. extra: 1800 / 1525,
  10266. bottom: 0.005
  10267. }
  10268. },
  10269. foot: {
  10270. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10271. name: "Foot",
  10272. image: {
  10273. source: "./media/characters/goddess-elizabeth/foot.svg"
  10274. }
  10275. },
  10276. mouth: {
  10277. height: math.unit(6, "feet"),
  10278. name: "Mouth",
  10279. image: {
  10280. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Micro",
  10287. height: math.unit(12, "feet")
  10288. },
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(80, "miles"),
  10292. default: true
  10293. },
  10294. {
  10295. name: "Macro",
  10296. height: math.unit(15000, "parsecs")
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(5 + 9 / 12, "feet"),
  10305. weight: math.unit(144, "lb"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/kara/front.svg"
  10309. }
  10310. },
  10311. feet: {
  10312. height: math.unit(6 / 6.765, "feet"),
  10313. name: "Kara's Feet",
  10314. rename: true,
  10315. image: {
  10316. source: "./media/characters/kara/feet.svg"
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(5 + 9 / 12, "feet")
  10324. },
  10325. {
  10326. name: "Macro",
  10327. height: math.unit(174, "feet"),
  10328. default: true
  10329. },
  10330. ]
  10331. ))
  10332. characterMakers.push(() => makeCharacter(
  10333. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10334. {
  10335. front: {
  10336. height: math.unit(18, "feet"),
  10337. weight: math.unit(4050, "lb"),
  10338. name: "Front",
  10339. image: {
  10340. source: "./media/characters/tyrone/front.svg",
  10341. extra: 2405 / 2270,
  10342. bottom: 182 / 2587
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Normal",
  10349. height: math.unit(18, "feet"),
  10350. default: true
  10351. },
  10352. {
  10353. name: "Macro",
  10354. height: math.unit(300, "feet")
  10355. },
  10356. {
  10357. name: "Megamacro",
  10358. height: math.unit(15, "km")
  10359. },
  10360. {
  10361. name: "Gigamacro",
  10362. height: math.unit(500, "km")
  10363. },
  10364. {
  10365. name: "Teramacro",
  10366. height: math.unit(0.5, "gigameters")
  10367. },
  10368. {
  10369. name: "Omnimacro",
  10370. height: math.unit(1e252, "yottauniverse")
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(7 + 8 / 12, "feet"),
  10379. weight: math.unit(120, "lb"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/danny/front.svg",
  10383. extra: 1490 / 1350
  10384. }
  10385. },
  10386. back: {
  10387. height: math.unit(7 + 8 / 12, "feet"),
  10388. weight: math.unit(120, "lb"),
  10389. name: "Back",
  10390. image: {
  10391. source: "./media/characters/danny/back.svg",
  10392. extra: 1490 / 1350
  10393. }
  10394. },
  10395. },
  10396. [
  10397. {
  10398. name: "Normal",
  10399. height: math.unit(7 + 8 / 12, "feet"),
  10400. default: true
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10406. {
  10407. front: {
  10408. height: math.unit(3.5, "inches"),
  10409. weight: math.unit(19, "grams"),
  10410. name: "Front",
  10411. image: {
  10412. source: "./media/characters/mallow/front.svg",
  10413. extra: 471 / 431
  10414. }
  10415. },
  10416. back: {
  10417. height: math.unit(3.5, "inches"),
  10418. weight: math.unit(19, "grams"),
  10419. name: "Back",
  10420. image: {
  10421. source: "./media/characters/mallow/back.svg",
  10422. extra: 471 / 431
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Normal",
  10429. height: math.unit(3.5, "inches"),
  10430. default: true
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10436. {
  10437. front: {
  10438. height: math.unit(9, "feet"),
  10439. weight: math.unit(230, "kg"),
  10440. name: "Front",
  10441. image: {
  10442. source: "./media/characters/starry-aqua/front.svg"
  10443. }
  10444. },
  10445. back: {
  10446. height: math.unit(9, "feet"),
  10447. weight: math.unit(230, "kg"),
  10448. name: "Back",
  10449. image: {
  10450. source: "./media/characters/starry-aqua/back.svg"
  10451. }
  10452. },
  10453. hand: {
  10454. height: math.unit(9 * 0.1168, "feet"),
  10455. name: "Hand",
  10456. image: {
  10457. source: "./media/characters/starry-aqua/hand.svg"
  10458. }
  10459. },
  10460. foot: {
  10461. height: math.unit(9 * 0.18, "feet"),
  10462. name: "Foot",
  10463. image: {
  10464. source: "./media/characters/starry-aqua/foot.svg"
  10465. }
  10466. }
  10467. },
  10468. [
  10469. {
  10470. name: "Micro",
  10471. height: math.unit(3, "inches")
  10472. },
  10473. {
  10474. name: "Normal",
  10475. height: math.unit(9, "feet")
  10476. },
  10477. {
  10478. name: "Macro",
  10479. height: math.unit(300, "feet"),
  10480. default: true
  10481. },
  10482. {
  10483. name: "Megamacro",
  10484. height: math.unit(3200, "feet")
  10485. }
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(15, "feet"),
  10493. weight: math.unit(5026, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/luka-towers/front.svg",
  10497. extra: 1269/1133,
  10498. bottom: 51/1320
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(15, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Minimacro",
  10510. height: math.unit(25, "feet")
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(320, "feet")
  10515. },
  10516. {
  10517. name: "Megamacro",
  10518. height: math.unit(35000, "feet")
  10519. },
  10520. {
  10521. name: "Gigamacro",
  10522. height: math.unit(4000, "miles")
  10523. },
  10524. {
  10525. name: "Teramacro",
  10526. height: math.unit(15000, "miles")
  10527. },
  10528. ]
  10529. ))
  10530. characterMakers.push(() => makeCharacter(
  10531. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10532. {
  10533. front: {
  10534. height: math.unit(6, "feet"),
  10535. weight: math.unit(150, "lb"),
  10536. name: "Front",
  10537. image: {
  10538. source: "./media/characters/natalie-nightring/front.svg",
  10539. extra: 1,
  10540. bottom: 0.06
  10541. }
  10542. },
  10543. },
  10544. [
  10545. {
  10546. name: "Uh Oh",
  10547. height: math.unit(0.1, "mm")
  10548. },
  10549. {
  10550. name: "Small",
  10551. height: math.unit(3, "inches")
  10552. },
  10553. {
  10554. name: "Human Scale",
  10555. height: math.unit(6, "feet")
  10556. },
  10557. {
  10558. name: "Librarian",
  10559. height: math.unit(50, "feet"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Immense",
  10564. height: math.unit(200, "miles")
  10565. },
  10566. ]
  10567. ))
  10568. characterMakers.push(() => makeCharacter(
  10569. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10570. {
  10571. front: {
  10572. height: math.unit(6, "feet"),
  10573. weight: math.unit(180, "lbs"),
  10574. name: "Front",
  10575. image: {
  10576. source: "./media/characters/danni-rosie/front.svg",
  10577. extra: 1260 / 1128,
  10578. bottom: 0.022
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Micro",
  10585. height: math.unit(2, "inches"),
  10586. default: true
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(5 + 9 / 12, "feet"),
  10595. weight: math.unit(220, "lb"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/samantha-kruse/front.svg",
  10599. extra: (985 / 935),
  10600. bottom: 0.03
  10601. }
  10602. },
  10603. frontUndressed: {
  10604. height: math.unit(5 + 9 / 12, "feet"),
  10605. weight: math.unit(220, "lb"),
  10606. name: "Front (Undressed)",
  10607. image: {
  10608. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10609. extra: (973 / 923),
  10610. bottom: 0.025
  10611. }
  10612. },
  10613. fat: {
  10614. height: math.unit(5 + 9 / 12, "feet"),
  10615. weight: math.unit(900, "lb"),
  10616. name: "Front (Fat)",
  10617. image: {
  10618. source: "./media/characters/samantha-kruse/fat.svg",
  10619. extra: 2688 / 2561
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Normal",
  10626. height: math.unit(5 + 9 / 12, "feet"),
  10627. default: true
  10628. }
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10633. {
  10634. back: {
  10635. height: math.unit(5 + 4 / 12, "feet"),
  10636. weight: math.unit(4963, "lb"),
  10637. name: "Back",
  10638. image: {
  10639. source: "./media/characters/amelia-rosie/back.svg",
  10640. extra: 1113 / 963,
  10641. bottom: 0.01
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Level 0",
  10648. height: math.unit(5 + 4 / 12, "feet")
  10649. },
  10650. {
  10651. name: "Level 1",
  10652. height: math.unit(164597, "feet"),
  10653. default: true
  10654. },
  10655. {
  10656. name: "Level 2",
  10657. height: math.unit(956243, "miles")
  10658. },
  10659. {
  10660. name: "Level 3",
  10661. height: math.unit(29421709423, "miles")
  10662. },
  10663. {
  10664. name: "Level 4",
  10665. height: math.unit(154, "lightyears")
  10666. },
  10667. {
  10668. name: "Level 5",
  10669. height: math.unit(4738272, "lightyears")
  10670. },
  10671. {
  10672. name: "Level 6",
  10673. height: math.unit(145787152896, "lightyears")
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(5 + 11 / 12, "feet"),
  10682. weight: math.unit(65, "kg"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/rook-kitara/front.svg",
  10686. extra: 1347 / 1274,
  10687. bottom: 0.005
  10688. }
  10689. },
  10690. },
  10691. [
  10692. {
  10693. name: "Totally Unfair",
  10694. height: math.unit(1.8, "mm")
  10695. },
  10696. {
  10697. name: "Lap Rookie",
  10698. height: math.unit(1.4, "feet")
  10699. },
  10700. {
  10701. name: "Normal",
  10702. height: math.unit(5 + 11 / 12, "feet"),
  10703. default: true
  10704. },
  10705. {
  10706. name: "How Did This Happen",
  10707. height: math.unit(80, "miles")
  10708. }
  10709. ]
  10710. ))
  10711. characterMakers.push(() => makeCharacter(
  10712. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10713. {
  10714. front: {
  10715. height: math.unit(7, "feet"),
  10716. weight: math.unit(300, "lb"),
  10717. name: "Front",
  10718. image: {
  10719. source: "./media/characters/pisces/front.svg",
  10720. extra: 2255 / 2115,
  10721. bottom: 0.03
  10722. }
  10723. },
  10724. back: {
  10725. height: math.unit(7, "feet"),
  10726. weight: math.unit(300, "lb"),
  10727. name: "Back",
  10728. image: {
  10729. source: "./media/characters/pisces/back.svg",
  10730. extra: 2146 / 2055,
  10731. bottom: 0.04
  10732. }
  10733. },
  10734. },
  10735. [
  10736. {
  10737. name: "Normal",
  10738. height: math.unit(7, "feet"),
  10739. default: true
  10740. },
  10741. {
  10742. name: "Swimming Pool",
  10743. height: math.unit(12.2, "meters")
  10744. },
  10745. {
  10746. name: "Olympic Swimming Pool",
  10747. height: math.unit(56.3, "meters")
  10748. },
  10749. {
  10750. name: "Lake Superior",
  10751. height: math.unit(93900, "meters")
  10752. },
  10753. {
  10754. name: "Mediterranean Sea",
  10755. height: math.unit(644457, "meters")
  10756. },
  10757. {
  10758. name: "World's Oceans",
  10759. height: math.unit(4567491, "meters")
  10760. },
  10761. ]
  10762. ))
  10763. characterMakers.push(() => makeCharacter(
  10764. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10765. {
  10766. front: {
  10767. height: math.unit(2.3, "meters"),
  10768. weight: math.unit(120, "kg"),
  10769. name: "Front",
  10770. image: {
  10771. source: "./media/characters/zelas/front.svg"
  10772. }
  10773. },
  10774. side: {
  10775. height: math.unit(2.3, "meters"),
  10776. weight: math.unit(120, "kg"),
  10777. name: "Side",
  10778. image: {
  10779. source: "./media/characters/zelas/side.svg"
  10780. }
  10781. },
  10782. back: {
  10783. height: math.unit(2.3, "meters"),
  10784. weight: math.unit(120, "kg"),
  10785. name: "Back",
  10786. image: {
  10787. source: "./media/characters/zelas/back.svg"
  10788. }
  10789. },
  10790. foot: {
  10791. height: math.unit(1.116, "feet"),
  10792. name: "Foot",
  10793. image: {
  10794. source: "./media/characters/zelas/foot.svg"
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Normal",
  10801. height: math.unit(2.3, "meters")
  10802. },
  10803. {
  10804. name: "Macro",
  10805. height: math.unit(30, "meters"),
  10806. default: true
  10807. },
  10808. ]
  10809. ))
  10810. characterMakers.push(() => makeCharacter(
  10811. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10812. {
  10813. front: {
  10814. height: math.unit(1, "inch"),
  10815. weight: math.unit(0.21, "grams"),
  10816. name: "Front",
  10817. image: {
  10818. source: "./media/characters/talbot/front.svg",
  10819. extra: 594 / 544
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Micro",
  10826. height: math.unit(1, "inch"),
  10827. default: true
  10828. },
  10829. ]
  10830. ))
  10831. characterMakers.push(() => makeCharacter(
  10832. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10833. {
  10834. front: {
  10835. height: math.unit(3 + 3 / 12, "feet"),
  10836. weight: math.unit(51.8, "lb"),
  10837. name: "Front",
  10838. image: {
  10839. source: "./media/characters/fliss/front.svg",
  10840. extra: 840 / 640
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Teeny Tiny",
  10847. height: math.unit(1, "mm")
  10848. },
  10849. {
  10850. name: "Small",
  10851. height: math.unit(1, "inch"),
  10852. default: true
  10853. },
  10854. {
  10855. name: "Standard Sylveon",
  10856. height: math.unit(3 + 3 / 12, "feet")
  10857. },
  10858. {
  10859. name: "Large Nuisance",
  10860. height: math.unit(33, "feet")
  10861. },
  10862. {
  10863. name: "City Filler",
  10864. height: math.unit(3000, "feet")
  10865. },
  10866. {
  10867. name: "New Horizon",
  10868. height: math.unit(6000, "miles")
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10874. {
  10875. front: {
  10876. height: math.unit(5, "cm"),
  10877. weight: math.unit(1.94, "g"),
  10878. name: "Front",
  10879. image: {
  10880. source: "./media/characters/fleta/front.svg",
  10881. extra: 835 / 803
  10882. }
  10883. },
  10884. back: {
  10885. height: math.unit(5, "cm"),
  10886. weight: math.unit(1.94, "g"),
  10887. name: "Back",
  10888. image: {
  10889. source: "./media/characters/fleta/back.svg",
  10890. extra: 835 / 803
  10891. }
  10892. },
  10893. },
  10894. [
  10895. {
  10896. name: "Micro",
  10897. height: math.unit(5, "cm"),
  10898. default: true
  10899. },
  10900. ]
  10901. ))
  10902. characterMakers.push(() => makeCharacter(
  10903. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10904. {
  10905. front: {
  10906. height: math.unit(6, "feet"),
  10907. weight: math.unit(225, "lb"),
  10908. name: "Front",
  10909. image: {
  10910. source: "./media/characters/dominic/front.svg",
  10911. extra: 1770 / 1620,
  10912. bottom: 0.025
  10913. }
  10914. },
  10915. back: {
  10916. height: math.unit(6, "feet"),
  10917. weight: math.unit(225, "lb"),
  10918. name: "Back",
  10919. image: {
  10920. source: "./media/characters/dominic/back.svg",
  10921. extra: 1745 / 1620,
  10922. bottom: 0.065
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Nano",
  10929. height: math.unit(0.1, "mm")
  10930. },
  10931. {
  10932. name: "Micro-",
  10933. height: math.unit(1, "mm")
  10934. },
  10935. {
  10936. name: "Micro",
  10937. height: math.unit(4, "inches")
  10938. },
  10939. {
  10940. name: "Normal",
  10941. height: math.unit(6 + 4 / 12, "feet"),
  10942. default: true
  10943. },
  10944. {
  10945. name: "Macro",
  10946. height: math.unit(115, "feet")
  10947. },
  10948. {
  10949. name: "Macro+",
  10950. height: math.unit(955, "feet")
  10951. },
  10952. {
  10953. name: "Megamacro",
  10954. height: math.unit(8990, "feet")
  10955. },
  10956. {
  10957. name: "Gigmacro",
  10958. height: math.unit(9310, "miles")
  10959. },
  10960. {
  10961. name: "Teramacro",
  10962. height: math.unit(1567005010, "miles")
  10963. },
  10964. {
  10965. name: "Examacro",
  10966. height: math.unit(1425, "parsecs")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(400, "feet"),
  10975. weight: math.unit(44444444, "lb"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/major-colonel/front.svg"
  10979. }
  10980. },
  10981. back: {
  10982. height: math.unit(400, "feet"),
  10983. weight: math.unit(44444444, "lb"),
  10984. name: "Back",
  10985. image: {
  10986. source: "./media/characters/major-colonel/back.svg"
  10987. }
  10988. },
  10989. },
  10990. [
  10991. {
  10992. name: "Macro",
  10993. height: math.unit(400, "feet"),
  10994. default: true
  10995. },
  10996. ]
  10997. ))
  10998. characterMakers.push(() => makeCharacter(
  10999. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11000. {
  11001. catFront: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(120, "lb"),
  11004. name: "Front (Cat Side)",
  11005. image: {
  11006. source: "./media/characters/axel-lycan/cat-front.svg",
  11007. extra: 430 / 402,
  11008. bottom: 43 / 472.35
  11009. }
  11010. },
  11011. catBack: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(120, "lb"),
  11014. name: "Back (Cat Side)",
  11015. image: {
  11016. source: "./media/characters/axel-lycan/cat-back.svg",
  11017. extra: 447 / 419,
  11018. bottom: 23.3 / 469
  11019. }
  11020. },
  11021. wolfFront: {
  11022. height: math.unit(6, "feet"),
  11023. weight: math.unit(120, "lb"),
  11024. name: "Front (Wolf Side)",
  11025. image: {
  11026. source: "./media/characters/axel-lycan/wolf-front.svg",
  11027. extra: 485 / 456,
  11028. bottom: 19 / 504
  11029. }
  11030. },
  11031. wolfBack: {
  11032. height: math.unit(6, "feet"),
  11033. weight: math.unit(120, "lb"),
  11034. name: "Back (Wolf Side)",
  11035. image: {
  11036. source: "./media/characters/axel-lycan/wolf-back.svg",
  11037. extra: 475 / 438,
  11038. bottom: 39.2 / 514
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Macro",
  11045. height: math.unit(1, "km"),
  11046. default: true
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11052. {
  11053. front: {
  11054. height: math.unit(5 + 9 / 12, "feet"),
  11055. weight: math.unit(175, "lb"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/vanrel-hyena/front.svg",
  11059. extra: 1086 / 1010,
  11060. bottom: 0.04
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(5 + 9 / 12, "feet"),
  11068. default: true
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11074. {
  11075. front: {
  11076. height: math.unit(6, "feet"),
  11077. weight: math.unit(103, "lb"),
  11078. name: "Front",
  11079. image: {
  11080. source: "./media/characters/abbott-absol/front.svg",
  11081. extra: 765/694,
  11082. bottom: 47/812
  11083. }
  11084. },
  11085. },
  11086. [
  11087. {
  11088. name: "Megamicro",
  11089. height: math.unit(0.1, "mm")
  11090. },
  11091. {
  11092. name: "Micro",
  11093. height: math.unit(1, "inch")
  11094. },
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(6, "feet"),
  11098. default: true
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11104. {
  11105. front: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(264, "lb"),
  11108. name: "Front",
  11109. image: {
  11110. source: "./media/characters/hector/front.svg",
  11111. extra: 2280 / 2130,
  11112. bottom: 0.07
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Normal",
  11119. height: math.unit(12.25, "foot"),
  11120. default: true
  11121. },
  11122. {
  11123. name: "Macro",
  11124. height: math.unit(160, "feet")
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11130. {
  11131. front: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(150, "lb"),
  11134. name: "Front",
  11135. image: {
  11136. source: "./media/characters/sal/front.svg",
  11137. extra: 1846 / 1699,
  11138. bottom: 0.04
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Megamacro",
  11145. height: math.unit(10, "miles"),
  11146. default: true
  11147. },
  11148. ]
  11149. ))
  11150. characterMakers.push(() => makeCharacter(
  11151. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11152. {
  11153. front: {
  11154. height: math.unit(3, "meters"),
  11155. weight: math.unit(450, "kg"),
  11156. name: "front",
  11157. image: {
  11158. source: "./media/characters/ranger/front.svg",
  11159. extra: 2401 / 2243,
  11160. bottom: 0.05
  11161. }
  11162. },
  11163. },
  11164. [
  11165. {
  11166. name: "Normal",
  11167. height: math.unit(3, "meters"),
  11168. default: true
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(14, "feet"),
  11177. weight: math.unit(800, "kg"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/theresa/front.svg",
  11181. extra: 3575 / 3346,
  11182. bottom: 0.03
  11183. }
  11184. },
  11185. },
  11186. [
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(14, "feet"),
  11190. default: true
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11196. {
  11197. front: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(3, "kg"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/ine/front.svg",
  11203. extra: 678 / 539,
  11204. bottom: 0.023
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Normal",
  11211. height: math.unit(2.265, "feet"),
  11212. default: true
  11213. },
  11214. ]
  11215. ))
  11216. characterMakers.push(() => makeCharacter(
  11217. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11218. {
  11219. front: {
  11220. height: math.unit(5, "feet"),
  11221. weight: math.unit(30, "kg"),
  11222. name: "Front",
  11223. image: {
  11224. source: "./media/characters/vial/front.svg",
  11225. extra: 1365 / 1277,
  11226. bottom: 0.04
  11227. }
  11228. },
  11229. },
  11230. [
  11231. {
  11232. name: "Normal",
  11233. height: math.unit(5, "feet"),
  11234. default: true
  11235. },
  11236. ]
  11237. ))
  11238. characterMakers.push(() => makeCharacter(
  11239. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11240. {
  11241. side: {
  11242. height: math.unit(3.4, "meters"),
  11243. weight: math.unit(1000, "lb"),
  11244. name: "Side",
  11245. image: {
  11246. source: "./media/characters/rovoska/side.svg",
  11247. extra: 4403 / 1515
  11248. }
  11249. },
  11250. },
  11251. [
  11252. {
  11253. name: "Normal",
  11254. height: math.unit(3.4, "meters"),
  11255. default: true
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11261. {
  11262. front: {
  11263. height: math.unit(8, "feet"),
  11264. weight: math.unit(315, "lb"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/gunner-rotthbauer/front.svg"
  11268. }
  11269. },
  11270. back: {
  11271. height: math.unit(8, "feet"),
  11272. weight: math.unit(315, "lb"),
  11273. name: "Back",
  11274. image: {
  11275. source: "./media/characters/gunner-rotthbauer/back.svg"
  11276. }
  11277. },
  11278. },
  11279. [
  11280. {
  11281. name: "Micro",
  11282. height: math.unit(3.5, "inches")
  11283. },
  11284. {
  11285. name: "Normal",
  11286. height: math.unit(8, "feet"),
  11287. default: true
  11288. },
  11289. {
  11290. name: "Macro",
  11291. height: math.unit(250, "feet")
  11292. },
  11293. {
  11294. name: "Megamacro",
  11295. height: math.unit(1, "AU")
  11296. },
  11297. ]
  11298. ))
  11299. characterMakers.push(() => makeCharacter(
  11300. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11301. {
  11302. front: {
  11303. height: math.unit(5 + 5 / 12, "feet"),
  11304. weight: math.unit(140, "lb"),
  11305. name: "Front",
  11306. image: {
  11307. source: "./media/characters/allatia/front.svg",
  11308. extra: 1227 / 1180,
  11309. bottom: 0.027
  11310. }
  11311. },
  11312. },
  11313. [
  11314. {
  11315. name: "Normal",
  11316. height: math.unit(5 + 5 / 12, "feet")
  11317. },
  11318. {
  11319. name: "Macro",
  11320. height: math.unit(250, "feet"),
  11321. default: true
  11322. },
  11323. {
  11324. name: "Megamacro",
  11325. height: math.unit(8, "miles")
  11326. }
  11327. ]
  11328. ))
  11329. characterMakers.push(() => makeCharacter(
  11330. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11331. {
  11332. front: {
  11333. height: math.unit(6, "feet"),
  11334. weight: math.unit(120, "lb"),
  11335. name: "Front",
  11336. image: {
  11337. source: "./media/characters/tene/front.svg",
  11338. extra: 814/750,
  11339. bottom: 36/850
  11340. }
  11341. },
  11342. stomping: {
  11343. height: math.unit(2.025, "meters"),
  11344. weight: math.unit(120, "lb"),
  11345. name: "Stomping",
  11346. image: {
  11347. source: "./media/characters/tene/stomping.svg",
  11348. extra: 885/821,
  11349. bottom: 15/900
  11350. }
  11351. },
  11352. sitting: {
  11353. height: math.unit(1, "meter"),
  11354. weight: math.unit(120, "lb"),
  11355. name: "Sitting",
  11356. image: {
  11357. source: "./media/characters/tene/sitting.svg",
  11358. extra: 396/366,
  11359. bottom: 79/475
  11360. }
  11361. },
  11362. smiling: {
  11363. height: math.unit(1.2, "feet"),
  11364. name: "Smiling",
  11365. image: {
  11366. source: "./media/characters/tene/smiling.svg",
  11367. extra: 1364/1071,
  11368. bottom: 0/1364
  11369. }
  11370. },
  11371. smug: {
  11372. height: math.unit(1.3, "feet"),
  11373. name: "Smug",
  11374. image: {
  11375. source: "./media/characters/tene/smug.svg",
  11376. extra: 1323/1082,
  11377. bottom: 0/1323
  11378. }
  11379. },
  11380. feral: {
  11381. height: math.unit(3.9, "feet"),
  11382. weight: math.unit(250, "lb"),
  11383. name: "Feral",
  11384. image: {
  11385. source: "./media/characters/tene/feral.svg",
  11386. extra: 717 / 458,
  11387. bottom: 0.179
  11388. }
  11389. },
  11390. },
  11391. [
  11392. {
  11393. name: "Normal",
  11394. height: math.unit(6, "feet")
  11395. },
  11396. {
  11397. name: "Macro",
  11398. height: math.unit(300, "feet"),
  11399. default: true
  11400. },
  11401. {
  11402. name: "Megamacro",
  11403. height: math.unit(5, "miles")
  11404. },
  11405. ]
  11406. ))
  11407. characterMakers.push(() => makeCharacter(
  11408. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11409. {
  11410. side: {
  11411. height: math.unit(6, "feet"),
  11412. name: "Side",
  11413. image: {
  11414. source: "./media/characters/evander/side.svg",
  11415. extra: 877 / 477
  11416. }
  11417. },
  11418. },
  11419. [
  11420. {
  11421. name: "Normal",
  11422. height: math.unit(0.83, "meters"),
  11423. default: true
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11429. {
  11430. front: {
  11431. height: math.unit(12, "feet"),
  11432. weight: math.unit(1000, "lb"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11436. extra: 1762 / 1611
  11437. }
  11438. },
  11439. back: {
  11440. height: math.unit(12, "feet"),
  11441. weight: math.unit(1000, "lb"),
  11442. name: "Back",
  11443. image: {
  11444. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11445. extra: 1762 / 1611
  11446. }
  11447. },
  11448. },
  11449. [
  11450. {
  11451. name: "Normal",
  11452. height: math.unit(12, "feet"),
  11453. default: true
  11454. },
  11455. {
  11456. name: "Kaiju",
  11457. height: math.unit(150, "feet")
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11463. {
  11464. front: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(150, "lb"),
  11467. name: "Front",
  11468. image: {
  11469. source: "./media/characters/zero-alurus/front.svg"
  11470. }
  11471. },
  11472. back: {
  11473. height: math.unit(6, "feet"),
  11474. weight: math.unit(150, "lb"),
  11475. name: "Back",
  11476. image: {
  11477. source: "./media/characters/zero-alurus/back.svg"
  11478. }
  11479. },
  11480. },
  11481. [
  11482. {
  11483. name: "Normal",
  11484. height: math.unit(5 + 10 / 12, "feet")
  11485. },
  11486. {
  11487. name: "Macro",
  11488. height: math.unit(60, "feet"),
  11489. default: true
  11490. },
  11491. {
  11492. name: "Macro+",
  11493. height: math.unit(450, "feet")
  11494. },
  11495. ]
  11496. ))
  11497. characterMakers.push(() => makeCharacter(
  11498. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11499. {
  11500. front: {
  11501. height: math.unit(6, "feet"),
  11502. weight: math.unit(200, "lb"),
  11503. name: "Front",
  11504. image: {
  11505. source: "./media/characters/mega-shi/front.svg",
  11506. extra: 1279 / 1250,
  11507. bottom: 0.02
  11508. }
  11509. },
  11510. back: {
  11511. height: math.unit(6, "feet"),
  11512. weight: math.unit(200, "lb"),
  11513. name: "Back",
  11514. image: {
  11515. source: "./media/characters/mega-shi/back.svg",
  11516. extra: 1279 / 1250,
  11517. bottom: 0.02
  11518. }
  11519. },
  11520. },
  11521. [
  11522. {
  11523. name: "Micro",
  11524. height: math.unit(16 + 6 / 12, "feet")
  11525. },
  11526. {
  11527. name: "Third Dimension",
  11528. height: math.unit(40, "meters")
  11529. },
  11530. {
  11531. name: "Normal",
  11532. height: math.unit(660, "feet"),
  11533. default: true
  11534. },
  11535. {
  11536. name: "Megamacro",
  11537. height: math.unit(10, "miles")
  11538. },
  11539. {
  11540. name: "Planetary Launch",
  11541. height: math.unit(500, "miles")
  11542. },
  11543. {
  11544. name: "Interstellar",
  11545. height: math.unit(1e9, "miles")
  11546. },
  11547. {
  11548. name: "Leaving the Universe",
  11549. height: math.unit(1, "gigaparsec")
  11550. },
  11551. {
  11552. name: "Travelling Universes",
  11553. height: math.unit(30e15, "parsecs")
  11554. },
  11555. ]
  11556. ))
  11557. characterMakers.push(() => makeCharacter(
  11558. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11559. {
  11560. front: {
  11561. height: math.unit(5 + 4/12, "feet"),
  11562. weight: math.unit(120, "lb"),
  11563. name: "Front",
  11564. image: {
  11565. source: "./media/characters/odyssey/front.svg",
  11566. extra: 1747/1571,
  11567. bottom: 47/1794
  11568. }
  11569. },
  11570. side: {
  11571. height: math.unit(5.1, "feet"),
  11572. weight: math.unit(120, "lb"),
  11573. name: "Side",
  11574. image: {
  11575. source: "./media/characters/odyssey/side.svg",
  11576. extra: 1847/1619,
  11577. bottom: 47/1894
  11578. }
  11579. },
  11580. lounging: {
  11581. height: math.unit(1.464, "feet"),
  11582. weight: math.unit(120, "lb"),
  11583. name: "Lounging",
  11584. image: {
  11585. source: "./media/characters/odyssey/lounging.svg",
  11586. extra: 1235/837,
  11587. bottom: 551/1786
  11588. }
  11589. },
  11590. },
  11591. [
  11592. {
  11593. name: "Normal",
  11594. height: math.unit(5 + 4 / 12, "feet")
  11595. },
  11596. {
  11597. name: "Macro",
  11598. height: math.unit(1, "km")
  11599. },
  11600. {
  11601. name: "Megamacro",
  11602. height: math.unit(3000, "km")
  11603. },
  11604. {
  11605. name: "Gigamacro",
  11606. height: math.unit(1, "AU"),
  11607. default: true
  11608. },
  11609. {
  11610. name: "Omniversal",
  11611. height: math.unit(100e14, "lightyears")
  11612. },
  11613. ]
  11614. ))
  11615. characterMakers.push(() => makeCharacter(
  11616. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11617. {
  11618. front: {
  11619. height: math.unit(5 + 10/12, "feet"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/mekuto/front.svg",
  11623. extra: 875/835,
  11624. bottom: 46/921
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Minimicro",
  11631. height: math.unit(0.2, "inches")
  11632. },
  11633. {
  11634. name: "Micro",
  11635. height: math.unit(1.5, "inches")
  11636. },
  11637. {
  11638. name: "Normal",
  11639. height: math.unit(5 + 10 / 12, "feet"),
  11640. default: true
  11641. },
  11642. {
  11643. name: "Minimacro",
  11644. height: math.unit(17 + 9 / 12, "feet")
  11645. },
  11646. {
  11647. name: "Macro",
  11648. height: math.unit(177.5, "feet")
  11649. },
  11650. {
  11651. name: "Megamacro",
  11652. height: math.unit(152, "miles")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(6.5, "inches"),
  11661. weight: math.unit(13, "oz"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/dafydd-tomos/front.svg",
  11665. extra: 2990 / 2603,
  11666. bottom: 0.03
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Micro",
  11673. height: math.unit(6.5, "inches"),
  11674. default: true
  11675. },
  11676. ]
  11677. ))
  11678. characterMakers.push(() => makeCharacter(
  11679. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11680. {
  11681. front: {
  11682. height: math.unit(6, "feet"),
  11683. weight: math.unit(150, "lb"),
  11684. name: "Front",
  11685. image: {
  11686. source: "./media/characters/splinter/front.svg",
  11687. extra: 2990 / 2882,
  11688. bottom: 0.04
  11689. }
  11690. },
  11691. back: {
  11692. height: math.unit(6, "feet"),
  11693. weight: math.unit(150, "lb"),
  11694. name: "Back",
  11695. image: {
  11696. source: "./media/characters/splinter/back.svg",
  11697. extra: 2990 / 2882,
  11698. bottom: 0.04
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(6, "feet")
  11706. },
  11707. {
  11708. name: "Macro",
  11709. height: math.unit(230, "meters"),
  11710. default: true
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(4 + 10 / 12, "feet"),
  11719. weight: math.unit(480, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/snow-gabumon/front.svg",
  11723. extra: 1140 / 963,
  11724. bottom: 0.058
  11725. }
  11726. },
  11727. back: {
  11728. height: math.unit(4 + 10 / 12, "feet"),
  11729. weight: math.unit(480, "lb"),
  11730. name: "Back",
  11731. image: {
  11732. source: "./media/characters/snow-gabumon/back.svg",
  11733. extra: 1115 / 962,
  11734. bottom: 0.041
  11735. }
  11736. },
  11737. frontUndresed: {
  11738. height: math.unit(4 + 10 / 12, "feet"),
  11739. weight: math.unit(480, "lb"),
  11740. name: "Front (Undressed)",
  11741. image: {
  11742. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11743. extra: 1061 / 960,
  11744. bottom: 0.045
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Micro",
  11751. height: math.unit(1, "inch")
  11752. },
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(4 + 10 / 12, "feet"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Macro",
  11760. height: math.unit(200, "feet")
  11761. },
  11762. {
  11763. name: "Megamacro",
  11764. height: math.unit(120, "miles")
  11765. },
  11766. {
  11767. name: "Gigamacro",
  11768. height: math.unit(9800, "miles")
  11769. },
  11770. ]
  11771. ))
  11772. characterMakers.push(() => makeCharacter(
  11773. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11774. {
  11775. front: {
  11776. height: math.unit(1.7, "meters"),
  11777. weight: math.unit(140, "lb"),
  11778. name: "Front",
  11779. image: {
  11780. source: "./media/characters/moody/front.svg",
  11781. extra: 3226 / 3007,
  11782. bottom: 0.087
  11783. }
  11784. },
  11785. },
  11786. [
  11787. {
  11788. name: "Micro",
  11789. height: math.unit(1, "mm")
  11790. },
  11791. {
  11792. name: "Normal",
  11793. height: math.unit(1.7, "meters"),
  11794. default: true
  11795. },
  11796. {
  11797. name: "Macro",
  11798. height: math.unit(80, "meters")
  11799. },
  11800. {
  11801. name: "Macro+",
  11802. height: math.unit(500, "meters")
  11803. },
  11804. ]
  11805. ))
  11806. characterMakers.push(() => makeCharacter(
  11807. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11808. {
  11809. front: {
  11810. height: math.unit(6, "feet"),
  11811. weight: math.unit(150, "lb"),
  11812. name: "Front",
  11813. image: {
  11814. source: "./media/characters/zyas/front.svg",
  11815. extra: 1180 / 1120,
  11816. bottom: 0.045
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Normal",
  11823. height: math.unit(10, "feet"),
  11824. default: true
  11825. },
  11826. {
  11827. name: "Macro",
  11828. height: math.unit(500, "feet")
  11829. },
  11830. {
  11831. name: "Megamacro",
  11832. height: math.unit(5, "miles")
  11833. },
  11834. {
  11835. name: "Teramacro",
  11836. height: math.unit(150000, "miles")
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11842. {
  11843. front: {
  11844. height: math.unit(6, "feet"),
  11845. weight: math.unit(150, "lb"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/cuon/front.svg",
  11849. extra: 1390 / 1320,
  11850. bottom: 0.008
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Micro",
  11857. height: math.unit(3, "inches")
  11858. },
  11859. {
  11860. name: "Normal",
  11861. height: math.unit(18 + 9 / 12, "feet"),
  11862. default: true
  11863. },
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(360, "feet")
  11867. },
  11868. {
  11869. name: "Megamacro",
  11870. height: math.unit(360, "miles")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(2.4, "meters"),
  11879. weight: math.unit(70, "kg"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/nyanuxk/front.svg",
  11883. extra: 1172 / 1084,
  11884. bottom: 0.065
  11885. }
  11886. },
  11887. side: {
  11888. height: math.unit(2.4, "meters"),
  11889. weight: math.unit(70, "kg"),
  11890. name: "Side",
  11891. image: {
  11892. source: "./media/characters/nyanuxk/side.svg",
  11893. extra: 1190 / 1132,
  11894. bottom: 0.007
  11895. }
  11896. },
  11897. back: {
  11898. height: math.unit(2.4, "meters"),
  11899. weight: math.unit(70, "kg"),
  11900. name: "Back",
  11901. image: {
  11902. source: "./media/characters/nyanuxk/back.svg",
  11903. extra: 1200 / 1141,
  11904. bottom: 0.015
  11905. }
  11906. },
  11907. foot: {
  11908. height: math.unit(0.52, "meters"),
  11909. name: "Foot",
  11910. image: {
  11911. source: "./media/characters/nyanuxk/foot.svg"
  11912. }
  11913. },
  11914. },
  11915. [
  11916. {
  11917. name: "Micro",
  11918. height: math.unit(2, "cm")
  11919. },
  11920. {
  11921. name: "Normal",
  11922. height: math.unit(2.4, "meters"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Smaller Macro",
  11927. height: math.unit(120, "meters")
  11928. },
  11929. {
  11930. name: "Bigger Macro",
  11931. height: math.unit(1.2, "km")
  11932. },
  11933. {
  11934. name: "Megamacro",
  11935. height: math.unit(15, "kilometers")
  11936. },
  11937. {
  11938. name: "Gigamacro",
  11939. height: math.unit(2000, "km")
  11940. },
  11941. {
  11942. name: "Teramacro",
  11943. height: math.unit(500000, "km")
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11949. {
  11950. side: {
  11951. height: math.unit(6, "feet"),
  11952. name: "Side",
  11953. image: {
  11954. source: "./media/characters/ailbhe/side.svg",
  11955. extra: 757 / 464,
  11956. bottom: 0.041
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Normal",
  11963. height: math.unit(1.07, "meters"),
  11964. default: true
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(6, "feet"),
  11973. weight: math.unit(120, "kg"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/zevulfius/front.svg",
  11977. extra: 965 / 903
  11978. }
  11979. },
  11980. side: {
  11981. height: math.unit(6, "feet"),
  11982. weight: math.unit(120, "kg"),
  11983. name: "Side",
  11984. image: {
  11985. source: "./media/characters/zevulfius/side.svg",
  11986. extra: 939 / 900
  11987. }
  11988. },
  11989. back: {
  11990. height: math.unit(6, "feet"),
  11991. weight: math.unit(120, "kg"),
  11992. name: "Back",
  11993. image: {
  11994. source: "./media/characters/zevulfius/back.svg",
  11995. extra: 918 / 854,
  11996. bottom: 0.005
  11997. }
  11998. },
  11999. foot: {
  12000. height: math.unit(6 / 3.72, "feet"),
  12001. name: "Foot",
  12002. image: {
  12003. source: "./media/characters/zevulfius/foot.svg"
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Macro",
  12010. height: math.unit(750, "meters")
  12011. },
  12012. {
  12013. name: "Megamacro",
  12014. height: math.unit(20, "km"),
  12015. default: true
  12016. },
  12017. {
  12018. name: "Gigamacro",
  12019. height: math.unit(2000, "km")
  12020. },
  12021. {
  12022. name: "Teramacro",
  12023. height: math.unit(250000, "km")
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(100, "feet"),
  12032. weight: math.unit(350, "kg"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/rikes/front.svg",
  12036. extra: 1565 / 1483,
  12037. bottom: 0.017
  12038. }
  12039. },
  12040. },
  12041. [
  12042. {
  12043. name: "Macro",
  12044. height: math.unit(100, "feet"),
  12045. default: true
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12051. {
  12052. front: {
  12053. height: math.unit(8, "feet"),
  12054. weight: math.unit(356, "lb"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/adam-silver-mane/front.svg",
  12058. extra: 1036/937,
  12059. bottom: 63/1099
  12060. }
  12061. },
  12062. side: {
  12063. height: math.unit(8, "feet"),
  12064. weight: math.unit(356, "lb"),
  12065. name: "Side",
  12066. image: {
  12067. source: "./media/characters/adam-silver-mane/side.svg",
  12068. extra: 997/901,
  12069. bottom: 59/1056
  12070. }
  12071. },
  12072. frontNsfw: {
  12073. height: math.unit(8, "feet"),
  12074. weight: math.unit(356, "lb"),
  12075. name: "Front (NSFW)",
  12076. image: {
  12077. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12078. extra: 1036/937,
  12079. bottom: 63/1099
  12080. }
  12081. },
  12082. sideNsfw: {
  12083. height: math.unit(8, "feet"),
  12084. weight: math.unit(356, "lb"),
  12085. name: "Side (NSFW)",
  12086. image: {
  12087. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12088. extra: 997/901,
  12089. bottom: 59/1056
  12090. }
  12091. },
  12092. dick: {
  12093. height: math.unit(2.1, "feet"),
  12094. name: "Dick",
  12095. image: {
  12096. source: "./media/characters/adam-silver-mane/dick.svg"
  12097. }
  12098. },
  12099. taur: {
  12100. height: math.unit(16, "feet"),
  12101. weight: math.unit(1500, "kg"),
  12102. name: "Taur",
  12103. image: {
  12104. source: "./media/characters/adam-silver-mane/taur.svg",
  12105. extra: 1713 / 1571,
  12106. bottom: 0.01
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Normal",
  12113. height: math.unit(8, "feet")
  12114. },
  12115. {
  12116. name: "Minimacro",
  12117. height: math.unit(80, "feet")
  12118. },
  12119. {
  12120. name: "MDA",
  12121. height: math.unit(80, "meters")
  12122. },
  12123. {
  12124. name: "Macro",
  12125. height: math.unit(800, "feet"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Megamacro",
  12130. height: math.unit(8000, "feet")
  12131. },
  12132. {
  12133. name: "Gigamacro",
  12134. height: math.unit(800, "miles")
  12135. },
  12136. {
  12137. name: "Teramacro",
  12138. height: math.unit(80000, "miles")
  12139. },
  12140. {
  12141. name: "Celestial",
  12142. height: math.unit(8e6, "miles")
  12143. },
  12144. {
  12145. name: "Star Dragon",
  12146. height: math.unit(800000, "parsecs")
  12147. },
  12148. {
  12149. name: "Godly",
  12150. height: math.unit(800, "teraparsecs")
  12151. },
  12152. ]
  12153. ))
  12154. characterMakers.push(() => makeCharacter(
  12155. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12156. {
  12157. front: {
  12158. height: math.unit(6, "feet"),
  12159. weight: math.unit(150, "lb"),
  12160. name: "Front",
  12161. image: {
  12162. source: "./media/characters/ky'owin/front.svg",
  12163. extra: 3862/3053,
  12164. bottom: 74/3936
  12165. }
  12166. },
  12167. },
  12168. [
  12169. {
  12170. name: "Normal",
  12171. height: math.unit(6 + 8 / 12, "feet")
  12172. },
  12173. {
  12174. name: "Large",
  12175. height: math.unit(68, "feet")
  12176. },
  12177. {
  12178. name: "Macro",
  12179. height: math.unit(132, "feet")
  12180. },
  12181. {
  12182. name: "Macro+",
  12183. height: math.unit(340, "feet")
  12184. },
  12185. {
  12186. name: "Macro++",
  12187. height: math.unit(680, "feet"),
  12188. default: true
  12189. },
  12190. {
  12191. name: "Megamacro",
  12192. height: math.unit(1, "mile")
  12193. },
  12194. {
  12195. name: "Megamacro+",
  12196. height: math.unit(10, "miles")
  12197. },
  12198. ]
  12199. ))
  12200. characterMakers.push(() => makeCharacter(
  12201. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12202. {
  12203. front: {
  12204. height: math.unit(4, "feet"),
  12205. weight: math.unit(50, "lb"),
  12206. name: "Front",
  12207. image: {
  12208. source: "./media/characters/mal/front.svg",
  12209. extra: 785 / 724,
  12210. bottom: 0.07
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Micro",
  12217. height: math.unit(4, "inches")
  12218. },
  12219. {
  12220. name: "Normal",
  12221. height: math.unit(4, "feet"),
  12222. default: true
  12223. },
  12224. {
  12225. name: "Macro",
  12226. height: math.unit(200, "feet")
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(6, "feet"),
  12235. weight: math.unit(150, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/jordan-deware/front.svg",
  12239. extra: 1191 / 1012
  12240. }
  12241. },
  12242. },
  12243. [
  12244. {
  12245. name: "Nano",
  12246. height: math.unit(0.01, "mm")
  12247. },
  12248. {
  12249. name: "Minimicro",
  12250. height: math.unit(1, "mm")
  12251. },
  12252. {
  12253. name: "Micro",
  12254. height: math.unit(0.5, "inches")
  12255. },
  12256. {
  12257. name: "Normal",
  12258. height: math.unit(4, "feet"),
  12259. default: true
  12260. },
  12261. {
  12262. name: "Minimacro",
  12263. height: math.unit(40, "meters")
  12264. },
  12265. {
  12266. name: "Small Macro",
  12267. height: math.unit(400, "meters")
  12268. },
  12269. {
  12270. name: "Macro",
  12271. height: math.unit(4, "miles")
  12272. },
  12273. {
  12274. name: "Megamacro",
  12275. height: math.unit(40, "miles")
  12276. },
  12277. {
  12278. name: "Megamacro+",
  12279. height: math.unit(400, "miles")
  12280. },
  12281. {
  12282. name: "Gigamacro",
  12283. height: math.unit(400000, "miles")
  12284. },
  12285. ]
  12286. ))
  12287. characterMakers.push(() => makeCharacter(
  12288. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12289. {
  12290. side: {
  12291. height: math.unit(6, "feet"),
  12292. weight: math.unit(150, "lb"),
  12293. name: "Side",
  12294. image: {
  12295. source: "./media/characters/kimiko/side.svg",
  12296. extra: 600 / 358
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(15, "feet"),
  12304. default: true
  12305. },
  12306. {
  12307. name: "Macro",
  12308. height: math.unit(220, "feet")
  12309. },
  12310. {
  12311. name: "Macro+",
  12312. height: math.unit(1450, "feet")
  12313. },
  12314. {
  12315. name: "Megamacro",
  12316. height: math.unit(11500, "feet")
  12317. },
  12318. {
  12319. name: "Gigamacro",
  12320. height: math.unit(9500, "miles")
  12321. },
  12322. {
  12323. name: "Teramacro",
  12324. height: math.unit(2208005005, "miles")
  12325. },
  12326. {
  12327. name: "Examacro",
  12328. height: math.unit(2750, "parsecs")
  12329. },
  12330. {
  12331. name: "Zettamacro",
  12332. height: math.unit(101500, "parsecs")
  12333. },
  12334. ]
  12335. ))
  12336. characterMakers.push(() => makeCharacter(
  12337. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12338. {
  12339. front: {
  12340. height: math.unit(6, "feet"),
  12341. weight: math.unit(70, "kg"),
  12342. name: "Front",
  12343. image: {
  12344. source: "./media/characters/andrew-sleepy/front.svg"
  12345. }
  12346. },
  12347. side: {
  12348. height: math.unit(6, "feet"),
  12349. weight: math.unit(70, "kg"),
  12350. name: "Side",
  12351. image: {
  12352. source: "./media/characters/andrew-sleepy/side.svg"
  12353. }
  12354. },
  12355. },
  12356. [
  12357. {
  12358. name: "Micro",
  12359. height: math.unit(1, "mm"),
  12360. default: true
  12361. },
  12362. ]
  12363. ))
  12364. characterMakers.push(() => makeCharacter(
  12365. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12366. {
  12367. front: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(150, "lb"),
  12370. name: "Front",
  12371. image: {
  12372. source: "./media/characters/judio/front.svg",
  12373. extra: 1258 / 1110
  12374. }
  12375. },
  12376. },
  12377. [
  12378. {
  12379. name: "Normal",
  12380. height: math.unit(5 + 6 / 12, "feet")
  12381. },
  12382. {
  12383. name: "Macro",
  12384. height: math.unit(1000, "feet"),
  12385. default: true
  12386. },
  12387. {
  12388. name: "Megamacro",
  12389. height: math.unit(10, "miles")
  12390. },
  12391. ]
  12392. ))
  12393. characterMakers.push(() => makeCharacter(
  12394. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12395. {
  12396. frontDressed: {
  12397. height: math.unit(6, "feet"),
  12398. weight: math.unit(68, "kg"),
  12399. name: "Front (Dressed)",
  12400. image: {
  12401. source: "./media/characters/nomaxice/front-dressed.svg",
  12402. extra: 1137/824,
  12403. bottom: 74/1211
  12404. }
  12405. },
  12406. frontShorts: {
  12407. height: math.unit(6, "feet"),
  12408. weight: math.unit(68, "kg"),
  12409. name: "Front (Shorts)",
  12410. image: {
  12411. source: "./media/characters/nomaxice/front-shorts.svg",
  12412. extra: 1137/824,
  12413. bottom: 74/1211
  12414. }
  12415. },
  12416. back: {
  12417. height: math.unit(6, "feet"),
  12418. weight: math.unit(68, "kg"),
  12419. name: "Back",
  12420. image: {
  12421. source: "./media/characters/nomaxice/back.svg",
  12422. extra: 822/786,
  12423. bottom: 39/861
  12424. }
  12425. },
  12426. hand: {
  12427. height: math.unit(0.565, "feet"),
  12428. name: "Hand",
  12429. image: {
  12430. source: "./media/characters/nomaxice/hand.svg"
  12431. }
  12432. },
  12433. foot: {
  12434. height: math.unit(1, "feet"),
  12435. name: "Foot",
  12436. image: {
  12437. source: "./media/characters/nomaxice/foot.svg"
  12438. }
  12439. },
  12440. },
  12441. [
  12442. {
  12443. name: "Micro",
  12444. height: math.unit(8, "cm")
  12445. },
  12446. {
  12447. name: "Norm",
  12448. height: math.unit(1.82, "m")
  12449. },
  12450. {
  12451. name: "Norm+",
  12452. height: math.unit(8.8, "feet"),
  12453. default: true
  12454. },
  12455. {
  12456. name: "Big",
  12457. height: math.unit(8, "meters")
  12458. },
  12459. {
  12460. name: "Macro",
  12461. height: math.unit(18, "meters")
  12462. },
  12463. {
  12464. name: "Macro+",
  12465. height: math.unit(88, "meters")
  12466. },
  12467. ]
  12468. ))
  12469. characterMakers.push(() => makeCharacter(
  12470. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12471. {
  12472. front: {
  12473. height: math.unit(12, "feet"),
  12474. weight: math.unit(1.5, "tons"),
  12475. name: "Front",
  12476. image: {
  12477. source: "./media/characters/dydros/front.svg",
  12478. extra: 863 / 800,
  12479. bottom: 0.015
  12480. }
  12481. },
  12482. back: {
  12483. height: math.unit(12, "feet"),
  12484. weight: math.unit(1.5, "tons"),
  12485. name: "Back",
  12486. image: {
  12487. source: "./media/characters/dydros/back.svg",
  12488. extra: 900 / 843,
  12489. bottom: 0.005
  12490. }
  12491. },
  12492. },
  12493. [
  12494. {
  12495. name: "Normal",
  12496. height: math.unit(12, "feet"),
  12497. default: true
  12498. },
  12499. ]
  12500. ))
  12501. characterMakers.push(() => makeCharacter(
  12502. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12503. {
  12504. front: {
  12505. height: math.unit(6, "feet"),
  12506. weight: math.unit(100, "kg"),
  12507. name: "Front",
  12508. image: {
  12509. source: "./media/characters/riggi/front.svg",
  12510. extra: 5787 / 5303
  12511. }
  12512. },
  12513. hyper: {
  12514. height: math.unit(6 * 5 / 3, "feet"),
  12515. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12516. name: "Hyper",
  12517. image: {
  12518. source: "./media/characters/riggi/hyper.svg",
  12519. extra: 3595 / 3485
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Small Macro",
  12526. height: math.unit(50, "feet")
  12527. },
  12528. {
  12529. name: "Default",
  12530. height: math.unit(200, "feet"),
  12531. default: true
  12532. },
  12533. {
  12534. name: "Loom",
  12535. height: math.unit(10000, "feet")
  12536. },
  12537. {
  12538. name: "Cruising Altitude",
  12539. height: math.unit(30000, "feet")
  12540. },
  12541. {
  12542. name: "Megamacro",
  12543. height: math.unit(100, "miles")
  12544. },
  12545. {
  12546. name: "Continent Sized",
  12547. height: math.unit(2800, "miles")
  12548. },
  12549. {
  12550. name: "Earth Sized",
  12551. height: math.unit(8000, "miles")
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12557. {
  12558. front: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(250, "lb"),
  12561. name: "Front",
  12562. image: {
  12563. source: "./media/characters/alexi/front.svg",
  12564. extra: 3483 / 3291,
  12565. bottom: 0.04
  12566. }
  12567. },
  12568. back: {
  12569. height: math.unit(6, "feet"),
  12570. weight: math.unit(250, "lb"),
  12571. name: "Back",
  12572. image: {
  12573. source: "./media/characters/alexi/back.svg",
  12574. extra: 3533 / 3356,
  12575. bottom: 0.021
  12576. }
  12577. },
  12578. frontTransforming: {
  12579. height: math.unit(8.58, "feet"),
  12580. weight: math.unit(1300, "lb"),
  12581. name: "Transforming",
  12582. image: {
  12583. source: "./media/characters/alexi/front-transforming.svg",
  12584. extra: 437 / 409,
  12585. bottom: 19 / 458.66
  12586. }
  12587. },
  12588. frontTransformed: {
  12589. height: math.unit(12.5, "feet"),
  12590. weight: math.unit(4000, "lb"),
  12591. name: "Transformed",
  12592. image: {
  12593. source: "./media/characters/alexi/front-transformed.svg",
  12594. extra: 639 / 614,
  12595. bottom: 30.55 / 671
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Normal",
  12602. height: math.unit(14, "feet"),
  12603. default: true
  12604. },
  12605. {
  12606. name: "Minimacro",
  12607. height: math.unit(30, "meters")
  12608. },
  12609. {
  12610. name: "Macro",
  12611. height: math.unit(500, "meters")
  12612. },
  12613. {
  12614. name: "Megamacro",
  12615. height: math.unit(9000, "km")
  12616. },
  12617. {
  12618. name: "Teramacro",
  12619. height: math.unit(384000, "km")
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12625. {
  12626. front: {
  12627. height: math.unit(6, "feet"),
  12628. weight: math.unit(150, "lb"),
  12629. name: "Front",
  12630. image: {
  12631. source: "./media/characters/kayroo/front.svg",
  12632. extra: 1153 / 1038,
  12633. bottom: 0.06
  12634. }
  12635. },
  12636. foot: {
  12637. height: math.unit(6, "feet"),
  12638. weight: math.unit(150, "lb"),
  12639. name: "Foot",
  12640. image: {
  12641. source: "./media/characters/kayroo/foot.svg"
  12642. }
  12643. },
  12644. },
  12645. [
  12646. {
  12647. name: "Normal",
  12648. height: math.unit(8, "feet"),
  12649. default: true
  12650. },
  12651. {
  12652. name: "Minimacro",
  12653. height: math.unit(250, "feet")
  12654. },
  12655. {
  12656. name: "Macro",
  12657. height: math.unit(2800, "feet")
  12658. },
  12659. {
  12660. name: "Megamacro",
  12661. height: math.unit(5200, "feet")
  12662. },
  12663. {
  12664. name: "Gigamacro",
  12665. height: math.unit(27000, "feet")
  12666. },
  12667. {
  12668. name: "Omega",
  12669. height: math.unit(45000, "feet")
  12670. },
  12671. ]
  12672. ))
  12673. characterMakers.push(() => makeCharacter(
  12674. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12675. {
  12676. front: {
  12677. height: math.unit(18, "feet"),
  12678. weight: math.unit(5800, "lb"),
  12679. name: "Front",
  12680. image: {
  12681. source: "./media/characters/rhys/front.svg",
  12682. extra: 3386 / 3090,
  12683. bottom: 0.07
  12684. }
  12685. },
  12686. },
  12687. [
  12688. {
  12689. name: "Normal",
  12690. height: math.unit(18, "feet"),
  12691. default: true
  12692. },
  12693. {
  12694. name: "Working Size",
  12695. height: math.unit(200, "feet")
  12696. },
  12697. {
  12698. name: "Demolition Size",
  12699. height: math.unit(2000, "feet")
  12700. },
  12701. {
  12702. name: "Maximum Licensed Size",
  12703. height: math.unit(5, "miles")
  12704. },
  12705. {
  12706. name: "Maximum Observed Size",
  12707. height: math.unit(10, "yottameters")
  12708. },
  12709. ]
  12710. ))
  12711. characterMakers.push(() => makeCharacter(
  12712. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12713. {
  12714. front: {
  12715. height: math.unit(6, "feet"),
  12716. weight: math.unit(250, "lb"),
  12717. name: "Front",
  12718. image: {
  12719. source: "./media/characters/toto/front.svg",
  12720. extra: 527 / 479,
  12721. bottom: 0.05
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Micro",
  12728. height: math.unit(3, "feet")
  12729. },
  12730. {
  12731. name: "Normal",
  12732. height: math.unit(10, "feet")
  12733. },
  12734. {
  12735. name: "Macro",
  12736. height: math.unit(150, "feet"),
  12737. default: true
  12738. },
  12739. {
  12740. name: "Megamacro",
  12741. height: math.unit(1200, "feet")
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "King", species: ["lion"], tags: ["anthro"] },
  12747. {
  12748. back: {
  12749. height: math.unit(6, "feet"),
  12750. weight: math.unit(150, "lb"),
  12751. name: "Back",
  12752. image: {
  12753. source: "./media/characters/king/back.svg"
  12754. }
  12755. },
  12756. },
  12757. [
  12758. {
  12759. name: "Micro",
  12760. height: math.unit(2, "inches")
  12761. },
  12762. {
  12763. name: "Normal",
  12764. height: math.unit(8, "feet")
  12765. },
  12766. {
  12767. name: "Macro",
  12768. height: math.unit(200, "feet"),
  12769. default: true
  12770. },
  12771. {
  12772. name: "Megamacro",
  12773. height: math.unit(50, "miles")
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12779. {
  12780. front: {
  12781. height: math.unit(11, "feet"),
  12782. weight: math.unit(1400, "lb"),
  12783. name: "Front",
  12784. image: {
  12785. source: "./media/characters/cordite/front.svg",
  12786. extra: 1919/1827,
  12787. bottom: 40/1959
  12788. }
  12789. },
  12790. side: {
  12791. height: math.unit(11, "feet"),
  12792. weight: math.unit(1400, "lb"),
  12793. name: "Side",
  12794. image: {
  12795. source: "./media/characters/cordite/side.svg",
  12796. extra: 1908/1793,
  12797. bottom: 38/1946
  12798. }
  12799. },
  12800. back: {
  12801. height: math.unit(11, "feet"),
  12802. weight: math.unit(1400, "lb"),
  12803. name: "Back",
  12804. image: {
  12805. source: "./media/characters/cordite/back.svg",
  12806. extra: 1938/1837,
  12807. bottom: 10/1948
  12808. }
  12809. },
  12810. feral: {
  12811. height: math.unit(2, "feet"),
  12812. weight: math.unit(90, "lb"),
  12813. name: "Feral",
  12814. image: {
  12815. source: "./media/characters/cordite/feral.svg",
  12816. extra: 1260 / 755,
  12817. bottom: 0.05
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Normal",
  12824. height: math.unit(11, "feet"),
  12825. default: true
  12826. },
  12827. ]
  12828. ))
  12829. characterMakers.push(() => makeCharacter(
  12830. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12831. {
  12832. front: {
  12833. height: math.unit(6, "feet"),
  12834. weight: math.unit(150, "lb"),
  12835. name: "Front",
  12836. image: {
  12837. source: "./media/characters/pianostrong/front.svg",
  12838. extra: 6577 / 6254,
  12839. bottom: 0.02
  12840. }
  12841. },
  12842. side: {
  12843. height: math.unit(6, "feet"),
  12844. weight: math.unit(150, "lb"),
  12845. name: "Side",
  12846. image: {
  12847. source: "./media/characters/pianostrong/side.svg",
  12848. extra: 6106 / 5730
  12849. }
  12850. },
  12851. back: {
  12852. height: math.unit(6, "feet"),
  12853. weight: math.unit(150, "lb"),
  12854. name: "Back",
  12855. image: {
  12856. source: "./media/characters/pianostrong/back.svg",
  12857. extra: 6085 / 5733,
  12858. bottom: 0.01
  12859. }
  12860. },
  12861. },
  12862. [
  12863. {
  12864. name: "Macro",
  12865. height: math.unit(100, "feet")
  12866. },
  12867. {
  12868. name: "Macro+",
  12869. height: math.unit(300, "feet"),
  12870. default: true
  12871. },
  12872. {
  12873. name: "Macro++",
  12874. height: math.unit(1000, "feet")
  12875. },
  12876. ]
  12877. ))
  12878. characterMakers.push(() => makeCharacter(
  12879. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12880. {
  12881. front: {
  12882. height: math.unit(6, "feet"),
  12883. weight: math.unit(150, "lb"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/kona/front.svg",
  12887. extra: 2960 / 2629,
  12888. bottom: 0.005
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Normal",
  12895. height: math.unit(11 + 8 / 12, "feet")
  12896. },
  12897. {
  12898. name: "Macro",
  12899. height: math.unit(850, "feet"),
  12900. default: true
  12901. },
  12902. {
  12903. name: "Macro+",
  12904. height: math.unit(1.5, "km"),
  12905. default: true
  12906. },
  12907. {
  12908. name: "Megamacro",
  12909. height: math.unit(80, "miles")
  12910. },
  12911. {
  12912. name: "Gigamacro",
  12913. height: math.unit(3500, "miles")
  12914. },
  12915. ]
  12916. ))
  12917. characterMakers.push(() => makeCharacter(
  12918. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12919. {
  12920. side: {
  12921. height: math.unit(1.9, "meters"),
  12922. weight: math.unit(326, "kg"),
  12923. name: "Side",
  12924. image: {
  12925. source: "./media/characters/levi/side.svg",
  12926. extra: 1704 / 1334,
  12927. bottom: 0.02
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(1.9, "meters"),
  12935. default: true
  12936. },
  12937. {
  12938. name: "Macro",
  12939. height: math.unit(20, "meters")
  12940. },
  12941. {
  12942. name: "Macro+",
  12943. height: math.unit(200, "meters")
  12944. },
  12945. {
  12946. name: "Megamacro",
  12947. height: math.unit(2, "km")
  12948. },
  12949. {
  12950. name: "Megamacro+",
  12951. height: math.unit(20, "km")
  12952. },
  12953. {
  12954. name: "Gigamacro",
  12955. height: math.unit(2500, "km")
  12956. },
  12957. {
  12958. name: "Gigamacro+",
  12959. height: math.unit(120000, "km")
  12960. },
  12961. {
  12962. name: "Teramacro",
  12963. height: math.unit(7.77e6, "km")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(6 + 4/12, "feet"),
  12972. weight: math.unit(190, "lb"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/bmc/front.svg",
  12976. extra: 1626/1472,
  12977. bottom: 79/1705
  12978. }
  12979. },
  12980. back: {
  12981. height: math.unit(6 + 4/12, "feet"),
  12982. weight: math.unit(190, "lb"),
  12983. name: "Back",
  12984. image: {
  12985. source: "./media/characters/bmc/back.svg",
  12986. extra: 1640/1479,
  12987. bottom: 45/1685
  12988. }
  12989. },
  12990. frontArmor: {
  12991. height: math.unit(6 + 4/12, "feet"),
  12992. weight: math.unit(190, "lb"),
  12993. name: "Front-armor",
  12994. image: {
  12995. source: "./media/characters/bmc/front-armor.svg",
  12996. extra: 1538/1468,
  12997. bottom: 79/1617
  12998. }
  12999. },
  13000. },
  13001. [
  13002. {
  13003. name: "Human-sized",
  13004. height: math.unit(6 + 4 / 12, "feet")
  13005. },
  13006. {
  13007. name: "Interactive Size",
  13008. height: math.unit(25, "feet")
  13009. },
  13010. {
  13011. name: "Small",
  13012. height: math.unit(250, "feet")
  13013. },
  13014. {
  13015. name: "Normal",
  13016. height: math.unit(1250, "feet"),
  13017. default: true
  13018. },
  13019. {
  13020. name: "Good Day",
  13021. height: math.unit(88, "miles")
  13022. },
  13023. {
  13024. name: "Largest Measured Size",
  13025. height: math.unit(105.960, "galaxies")
  13026. },
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13031. {
  13032. front: {
  13033. height: math.unit(20, "feet"),
  13034. weight: math.unit(2016, "kg"),
  13035. name: "Front",
  13036. image: {
  13037. source: "./media/characters/sven-the-kaiju/front.svg",
  13038. extra: 1277/1250,
  13039. bottom: 35/1312
  13040. }
  13041. },
  13042. mouth: {
  13043. height: math.unit(1.85, "feet"),
  13044. name: "Mouth",
  13045. image: {
  13046. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Fairy",
  13053. height: math.unit(6, "inches")
  13054. },
  13055. {
  13056. name: "Normal",
  13057. height: math.unit(20, "feet"),
  13058. default: true
  13059. },
  13060. {
  13061. name: "Rampage",
  13062. height: math.unit(200, "feet")
  13063. },
  13064. {
  13065. name: "Archfey Forest Guardian",
  13066. height: math.unit(1, "mile")
  13067. },
  13068. ]
  13069. ))
  13070. characterMakers.push(() => makeCharacter(
  13071. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13072. {
  13073. front: {
  13074. height: math.unit(4, "meters"),
  13075. weight: math.unit(2, "tons"),
  13076. name: "Front",
  13077. image: {
  13078. source: "./media/characters/marik/front.svg",
  13079. extra: 1057 / 1003,
  13080. bottom: 0.08
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Normal",
  13087. height: math.unit(4, "meters"),
  13088. default: true
  13089. },
  13090. {
  13091. name: "Macro",
  13092. height: math.unit(20, "meters")
  13093. },
  13094. {
  13095. name: "Megamacro",
  13096. height: math.unit(50, "km")
  13097. },
  13098. {
  13099. name: "Gigamacro",
  13100. height: math.unit(100, "km")
  13101. },
  13102. {
  13103. name: "Alpha Macro",
  13104. height: math.unit(7.88e7, "yottameters")
  13105. },
  13106. ]
  13107. ))
  13108. characterMakers.push(() => makeCharacter(
  13109. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13110. {
  13111. front: {
  13112. height: math.unit(6, "feet"),
  13113. weight: math.unit(110, "lb"),
  13114. name: "Front",
  13115. image: {
  13116. source: "./media/characters/mel/front.svg",
  13117. extra: 736 / 617,
  13118. bottom: 0.017
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Pico",
  13125. height: math.unit(3, "pm")
  13126. },
  13127. {
  13128. name: "Nano",
  13129. height: math.unit(3, "nm")
  13130. },
  13131. {
  13132. name: "Micro",
  13133. height: math.unit(0.3, "mm"),
  13134. default: true
  13135. },
  13136. {
  13137. name: "Micro+",
  13138. height: math.unit(3, "mm")
  13139. },
  13140. {
  13141. name: "Normal",
  13142. height: math.unit(5 + 10.5 / 12, "feet")
  13143. },
  13144. ]
  13145. ))
  13146. characterMakers.push(() => makeCharacter(
  13147. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13148. {
  13149. kaiju: {
  13150. height: math.unit(1.75, "meters"),
  13151. weight: math.unit(55, "kg"),
  13152. name: "Kaiju",
  13153. image: {
  13154. source: "./media/characters/lykonous/kaiju.svg",
  13155. extra: 1055 / 946,
  13156. bottom: 0.135
  13157. }
  13158. },
  13159. },
  13160. [
  13161. {
  13162. name: "Normal",
  13163. height: math.unit(2.5, "meters"),
  13164. default: true
  13165. },
  13166. {
  13167. name: "Kaiju Dragon",
  13168. height: math.unit(60, "meters")
  13169. },
  13170. {
  13171. name: "Mega Kaiju",
  13172. height: math.unit(120, "km")
  13173. },
  13174. {
  13175. name: "Giga Kaiju",
  13176. height: math.unit(200, "megameters")
  13177. },
  13178. {
  13179. name: "Terra Kaiju",
  13180. height: math.unit(400, "gigameters")
  13181. },
  13182. {
  13183. name: "Kaiju Dragon God",
  13184. height: math.unit(13000, "exaparsecs")
  13185. },
  13186. ]
  13187. ))
  13188. characterMakers.push(() => makeCharacter(
  13189. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13190. {
  13191. front: {
  13192. height: math.unit(6, "feet"),
  13193. weight: math.unit(150, "lb"),
  13194. name: "Front",
  13195. image: {
  13196. source: "./media/characters/blü/front.svg",
  13197. extra: 1883 / 1564,
  13198. bottom: 0.031
  13199. }
  13200. },
  13201. },
  13202. [
  13203. {
  13204. name: "Normal",
  13205. height: math.unit(13, "feet"),
  13206. default: true
  13207. },
  13208. {
  13209. name: "Big Boi",
  13210. height: math.unit(150, "meters")
  13211. },
  13212. {
  13213. name: "Mini Stomper",
  13214. height: math.unit(300, "meters")
  13215. },
  13216. {
  13217. name: "Macro",
  13218. height: math.unit(1000, "meters")
  13219. },
  13220. {
  13221. name: "Megamacro",
  13222. height: math.unit(11000, "meters")
  13223. },
  13224. {
  13225. name: "Gigamacro",
  13226. height: math.unit(11000, "km")
  13227. },
  13228. {
  13229. name: "Teramacro",
  13230. height: math.unit(420000, "km")
  13231. },
  13232. {
  13233. name: "Examacro",
  13234. height: math.unit(120, "parsecs")
  13235. },
  13236. {
  13237. name: "God Tho",
  13238. height: math.unit(98000000000, "parsecs")
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13244. {
  13245. taurFront: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(200, "lb"),
  13248. name: "Taur (Front)",
  13249. image: {
  13250. source: "./media/characters/scales/taur-front.svg",
  13251. extra: 1,
  13252. bottom: 0.05
  13253. }
  13254. },
  13255. taurBack: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(200, "lb"),
  13258. name: "Taur (Back)",
  13259. image: {
  13260. source: "./media/characters/scales/taur-back.svg",
  13261. extra: 1,
  13262. bottom: 0.08
  13263. }
  13264. },
  13265. anthro: {
  13266. height: math.unit(6 * 7 / 12, "feet"),
  13267. weight: math.unit(100, "lb"),
  13268. name: "Anthro",
  13269. image: {
  13270. source: "./media/characters/scales/anthro.svg",
  13271. extra: 1,
  13272. bottom: 0.06
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Normal",
  13279. height: math.unit(12, "feet"),
  13280. default: true
  13281. },
  13282. ]
  13283. ))
  13284. characterMakers.push(() => makeCharacter(
  13285. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13286. {
  13287. front: {
  13288. height: math.unit(6, "feet"),
  13289. weight: math.unit(150, "lb"),
  13290. name: "Front",
  13291. image: {
  13292. source: "./media/characters/koragos/front.svg",
  13293. extra: 841 / 794,
  13294. bottom: 0.035
  13295. }
  13296. },
  13297. back: {
  13298. height: math.unit(6, "feet"),
  13299. weight: math.unit(150, "lb"),
  13300. name: "Back",
  13301. image: {
  13302. source: "./media/characters/koragos/back.svg",
  13303. extra: 841 / 810,
  13304. bottom: 0.022
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(6 + 11 / 12, "feet"),
  13312. default: true
  13313. },
  13314. {
  13315. name: "Macro",
  13316. height: math.unit(490, "feet")
  13317. },
  13318. {
  13319. name: "Megamacro",
  13320. height: math.unit(10, "miles")
  13321. },
  13322. {
  13323. name: "Gigamacro",
  13324. height: math.unit(50, "miles")
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13330. {
  13331. front: {
  13332. height: math.unit(6, "feet"),
  13333. weight: math.unit(250, "lb"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/xylrem/front.svg",
  13337. extra: 3323 / 3050,
  13338. bottom: 0.065
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Micro",
  13345. height: math.unit(4, "feet")
  13346. },
  13347. {
  13348. name: "Normal",
  13349. height: math.unit(16, "feet"),
  13350. default: true
  13351. },
  13352. {
  13353. name: "Macro",
  13354. height: math.unit(2720, "feet")
  13355. },
  13356. {
  13357. name: "Megamacro",
  13358. height: math.unit(25000, "miles")
  13359. },
  13360. ]
  13361. ))
  13362. characterMakers.push(() => makeCharacter(
  13363. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13364. {
  13365. front: {
  13366. height: math.unit(8, "feet"),
  13367. weight: math.unit(250, "kg"),
  13368. name: "Front",
  13369. image: {
  13370. source: "./media/characters/ikideru/front.svg",
  13371. extra: 930 / 870,
  13372. bottom: 0.087
  13373. }
  13374. },
  13375. back: {
  13376. height: math.unit(8, "feet"),
  13377. weight: math.unit(250, "kg"),
  13378. name: "Back",
  13379. image: {
  13380. source: "./media/characters/ikideru/back.svg",
  13381. extra: 919 / 852,
  13382. bottom: 0.055
  13383. }
  13384. },
  13385. },
  13386. [
  13387. {
  13388. name: "Rare",
  13389. height: math.unit(8, "feet"),
  13390. default: true
  13391. },
  13392. {
  13393. name: "Playful Loom",
  13394. height: math.unit(80, "feet")
  13395. },
  13396. {
  13397. name: "City Leaner",
  13398. height: math.unit(230, "feet")
  13399. },
  13400. {
  13401. name: "Megamacro",
  13402. height: math.unit(2500, "feet")
  13403. },
  13404. {
  13405. name: "Gigamacro",
  13406. height: math.unit(26400, "feet")
  13407. },
  13408. {
  13409. name: "Tectonic Shifter",
  13410. height: math.unit(1.7, "megameters")
  13411. },
  13412. {
  13413. name: "Planet Carer",
  13414. height: math.unit(21, "megameters")
  13415. },
  13416. {
  13417. name: "God",
  13418. height: math.unit(11157.22, "parsecs")
  13419. },
  13420. ]
  13421. ))
  13422. characterMakers.push(() => makeCharacter(
  13423. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13424. {
  13425. front: {
  13426. height: math.unit(6, "feet"),
  13427. weight: math.unit(120, "lb"),
  13428. name: "Front",
  13429. image: {
  13430. source: "./media/characters/neo/front.svg"
  13431. }
  13432. },
  13433. },
  13434. [
  13435. {
  13436. name: "Micro",
  13437. height: math.unit(2, "inches"),
  13438. default: true
  13439. },
  13440. {
  13441. name: "Human Size",
  13442. height: math.unit(5 + 8 / 12, "feet")
  13443. },
  13444. ]
  13445. ))
  13446. characterMakers.push(() => makeCharacter(
  13447. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13448. {
  13449. front: {
  13450. height: math.unit(13 + 10 / 12, "feet"),
  13451. weight: math.unit(5320, "lb"),
  13452. name: "Front",
  13453. image: {
  13454. source: "./media/characters/chauncey-chantz/front.svg",
  13455. extra: 1587 / 1435,
  13456. bottom: 0.02
  13457. }
  13458. },
  13459. },
  13460. [
  13461. {
  13462. name: "Normal",
  13463. height: math.unit(13 + 10 / 12, "feet"),
  13464. default: true
  13465. },
  13466. {
  13467. name: "Macro",
  13468. height: math.unit(45, "feet")
  13469. },
  13470. {
  13471. name: "Megamacro",
  13472. height: math.unit(250, "miles")
  13473. },
  13474. {
  13475. name: "Planetary",
  13476. height: math.unit(10000, "miles")
  13477. },
  13478. {
  13479. name: "Galactic",
  13480. height: math.unit(40000, "parsecs")
  13481. },
  13482. {
  13483. name: "Universal",
  13484. height: math.unit(1, "yottameter")
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13490. {
  13491. front: {
  13492. height: math.unit(6, "feet"),
  13493. weight: math.unit(150, "lb"),
  13494. name: "Front",
  13495. image: {
  13496. source: "./media/characters/epifox/front.svg",
  13497. extra: 1,
  13498. bottom: 0.075
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Micro",
  13505. height: math.unit(6, "inches")
  13506. },
  13507. {
  13508. name: "Normal",
  13509. height: math.unit(12, "feet"),
  13510. default: true
  13511. },
  13512. {
  13513. name: "Macro",
  13514. height: math.unit(3810, "feet")
  13515. },
  13516. {
  13517. name: "Megamacro",
  13518. height: math.unit(500, "miles")
  13519. },
  13520. ]
  13521. ))
  13522. characterMakers.push(() => makeCharacter(
  13523. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13524. {
  13525. front: {
  13526. height: math.unit(1.8796, "m"),
  13527. weight: math.unit(230, "lb"),
  13528. name: "Front",
  13529. image: {
  13530. source: "./media/characters/colin-t/front.svg",
  13531. extra: 1272 / 1193,
  13532. bottom: 0.07
  13533. }
  13534. },
  13535. },
  13536. [
  13537. {
  13538. name: "Micro",
  13539. height: math.unit(0.571, "meters")
  13540. },
  13541. {
  13542. name: "Normal",
  13543. height: math.unit(1.8796, "meters"),
  13544. default: true
  13545. },
  13546. {
  13547. name: "Tall",
  13548. height: math.unit(4, "meters")
  13549. },
  13550. {
  13551. name: "Macro",
  13552. height: math.unit(67.241, "meters")
  13553. },
  13554. {
  13555. name: "Megamacro",
  13556. height: math.unit(371.856, "meters")
  13557. },
  13558. {
  13559. name: "Planetary",
  13560. height: math.unit(12631.5689, "km")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13566. {
  13567. front: {
  13568. height: math.unit(1.85, "meters"),
  13569. weight: math.unit(80, "kg"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/matvei/front.svg",
  13573. extra: 456/447,
  13574. bottom: 8/464
  13575. }
  13576. },
  13577. back: {
  13578. height: math.unit(1.85, "meters"),
  13579. weight: math.unit(80, "kg"),
  13580. name: "Back",
  13581. image: {
  13582. source: "./media/characters/matvei/back.svg",
  13583. extra: 434/427,
  13584. bottom: 11/445
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(1.85, "meters"),
  13592. default: true
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(5 + 9 / 12, "feet"),
  13601. weight: math.unit(70, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/quincy/front.svg",
  13605. extra: 3041 / 2751
  13606. }
  13607. },
  13608. back: {
  13609. height: math.unit(5 + 9 / 12, "feet"),
  13610. weight: math.unit(70, "lb"),
  13611. name: "Back",
  13612. image: {
  13613. source: "./media/characters/quincy/back.svg",
  13614. extra: 3041 / 2751
  13615. }
  13616. },
  13617. flying: {
  13618. height: math.unit(5 + 4 / 12, "feet"),
  13619. weight: math.unit(70, "lb"),
  13620. name: "Flying",
  13621. image: {
  13622. source: "./media/characters/quincy/flying.svg",
  13623. extra: 1044 / 930
  13624. }
  13625. },
  13626. },
  13627. [
  13628. {
  13629. name: "Micro",
  13630. height: math.unit(3, "cm")
  13631. },
  13632. {
  13633. name: "Normal",
  13634. height: math.unit(5 + 9 / 12, "feet")
  13635. },
  13636. {
  13637. name: "Macro",
  13638. height: math.unit(200, "meters"),
  13639. default: true
  13640. },
  13641. {
  13642. name: "Megamacro",
  13643. height: math.unit(1000, "meters")
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13649. {
  13650. front: {
  13651. height: math.unit(3 + 11/12, "feet"),
  13652. weight: math.unit(50, "lb"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/vanrel/front.svg",
  13656. extra: 1104/949,
  13657. bottom: 52/1156
  13658. }
  13659. },
  13660. back: {
  13661. height: math.unit(3 + 11/12, "feet"),
  13662. weight: math.unit(50, "lb"),
  13663. name: "Back",
  13664. image: {
  13665. source: "./media/characters/vanrel/back.svg",
  13666. extra: 1119/976,
  13667. bottom: 37/1156
  13668. }
  13669. },
  13670. tome: {
  13671. height: math.unit(1.35, "feet"),
  13672. weight: math.unit(10, "lb"),
  13673. name: "Vanrel's Tome",
  13674. rename: true,
  13675. image: {
  13676. source: "./media/characters/vanrel/tome.svg"
  13677. }
  13678. },
  13679. beans: {
  13680. height: math.unit(0.89, "feet"),
  13681. name: "Beans",
  13682. image: {
  13683. source: "./media/characters/vanrel/beans.svg"
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Normal",
  13690. height: math.unit(3 + 11/12, "feet"),
  13691. default: true
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13697. {
  13698. front: {
  13699. height: math.unit(7 + 5 / 12, "feet"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/kuiper-vanrel/front.svg",
  13703. extra: 1219/1169,
  13704. bottom: 69/1288
  13705. }
  13706. },
  13707. back: {
  13708. height: math.unit(7 + 5 / 12, "feet"),
  13709. name: "Back",
  13710. image: {
  13711. source: "./media/characters/kuiper-vanrel/back.svg",
  13712. extra: 1236/1193,
  13713. bottom: 27/1263
  13714. }
  13715. },
  13716. foot: {
  13717. height: math.unit(0.55, "meters"),
  13718. name: "Foot",
  13719. image: {
  13720. source: "./media/characters/kuiper-vanrel/foot.svg",
  13721. }
  13722. },
  13723. battle: {
  13724. height: math.unit(6.824, "feet"),
  13725. name: "Battle",
  13726. image: {
  13727. source: "./media/characters/kuiper-vanrel/battle.svg",
  13728. extra: 1466 / 1327,
  13729. bottom: 29 / 1492.5
  13730. }
  13731. },
  13732. meerkui: {
  13733. height: math.unit(18, "inches"),
  13734. name: "Meerkui",
  13735. image: {
  13736. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13737. extra: 1354/1289,
  13738. bottom: 69/1423
  13739. }
  13740. },
  13741. },
  13742. [
  13743. {
  13744. name: "Normal",
  13745. height: math.unit(7 + 5 / 12, "feet"),
  13746. default: true
  13747. },
  13748. ]
  13749. ))
  13750. characterMakers.push(() => makeCharacter(
  13751. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13752. {
  13753. front: {
  13754. height: math.unit(8 + 5 / 12, "feet"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/keset-vanrel/front.svg",
  13758. extra: 1231/1148,
  13759. bottom: 82/1313
  13760. }
  13761. },
  13762. back: {
  13763. height: math.unit(8 + 5 / 12, "feet"),
  13764. name: "Back",
  13765. image: {
  13766. source: "./media/characters/keset-vanrel/back.svg",
  13767. extra: 1240/1174,
  13768. bottom: 33/1273
  13769. }
  13770. },
  13771. hand: {
  13772. height: math.unit(0.6, "meters"),
  13773. name: "Hand",
  13774. image: {
  13775. source: "./media/characters/keset-vanrel/hand.svg"
  13776. }
  13777. },
  13778. foot: {
  13779. height: math.unit(0.94978, "meters"),
  13780. name: "Foot",
  13781. image: {
  13782. source: "./media/characters/keset-vanrel/foot.svg"
  13783. }
  13784. },
  13785. battle: {
  13786. height: math.unit(7.408, "feet"),
  13787. name: "Battle",
  13788. image: {
  13789. source: "./media/characters/keset-vanrel/battle.svg",
  13790. extra: 1890 / 1386,
  13791. bottom: 73.28 / 1970
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Normal",
  13798. height: math.unit(8 + 5 / 12, "feet"),
  13799. default: true
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(6, "feet"),
  13808. weight: math.unit(150, "lb"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/neos/front.svg",
  13812. extra: 1696 / 992,
  13813. bottom: 0.14
  13814. }
  13815. },
  13816. },
  13817. [
  13818. {
  13819. name: "Normal",
  13820. height: math.unit(54, "cm"),
  13821. default: true
  13822. },
  13823. {
  13824. name: "Macro",
  13825. height: math.unit(100, "m")
  13826. },
  13827. {
  13828. name: "Megamacro",
  13829. height: math.unit(10, "km")
  13830. },
  13831. {
  13832. name: "Megamacro+",
  13833. height: math.unit(100, "km")
  13834. },
  13835. {
  13836. name: "Gigamacro",
  13837. height: math.unit(100, "Mm")
  13838. },
  13839. {
  13840. name: "Teramacro",
  13841. height: math.unit(100, "Gm")
  13842. },
  13843. {
  13844. name: "Examacro",
  13845. height: math.unit(100, "Em")
  13846. },
  13847. {
  13848. name: "Godly",
  13849. height: math.unit(10000, "Ym")
  13850. },
  13851. {
  13852. name: "Beyond Godly",
  13853. height: math.unit(25, "multiverses")
  13854. },
  13855. ]
  13856. ))
  13857. characterMakers.push(() => makeCharacter(
  13858. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13859. {
  13860. feminine: {
  13861. height: math.unit(5, "feet"),
  13862. weight: math.unit(100, "lb"),
  13863. name: "Feminine",
  13864. image: {
  13865. source: "./media/characters/sammy-mouse/feminine.svg",
  13866. extra: 2526 / 2425,
  13867. bottom: 0.123
  13868. }
  13869. },
  13870. masculine: {
  13871. height: math.unit(5, "feet"),
  13872. weight: math.unit(100, "lb"),
  13873. name: "Masculine",
  13874. image: {
  13875. source: "./media/characters/sammy-mouse/masculine.svg",
  13876. extra: 2526 / 2425,
  13877. bottom: 0.123
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Micro",
  13884. height: math.unit(5, "inches")
  13885. },
  13886. {
  13887. name: "Normal",
  13888. height: math.unit(5, "feet"),
  13889. default: true
  13890. },
  13891. {
  13892. name: "Macro",
  13893. height: math.unit(60, "feet")
  13894. },
  13895. ]
  13896. ))
  13897. characterMakers.push(() => makeCharacter(
  13898. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13899. {
  13900. front: {
  13901. height: math.unit(4, "feet"),
  13902. weight: math.unit(50, "lb"),
  13903. name: "Front",
  13904. image: {
  13905. source: "./media/characters/kole/front.svg",
  13906. extra: 1423 / 1303,
  13907. bottom: 0.025
  13908. }
  13909. },
  13910. back: {
  13911. height: math.unit(4, "feet"),
  13912. weight: math.unit(50, "lb"),
  13913. name: "Back",
  13914. image: {
  13915. source: "./media/characters/kole/back.svg",
  13916. extra: 1426 / 1280,
  13917. bottom: 0.02
  13918. }
  13919. },
  13920. },
  13921. [
  13922. {
  13923. name: "Normal",
  13924. height: math.unit(4, "feet"),
  13925. default: true
  13926. },
  13927. ]
  13928. ))
  13929. characterMakers.push(() => makeCharacter(
  13930. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13931. {
  13932. front: {
  13933. height: math.unit(2.5, "feet"),
  13934. weight: math.unit(32, "lb"),
  13935. name: "Front",
  13936. image: {
  13937. source: "./media/characters/rufran/front.svg",
  13938. extra: 1313/885,
  13939. bottom: 94/1407
  13940. }
  13941. },
  13942. side: {
  13943. height: math.unit(2.5, "feet"),
  13944. weight: math.unit(32, "lb"),
  13945. name: "Side",
  13946. image: {
  13947. source: "./media/characters/rufran/side.svg",
  13948. extra: 1109/852,
  13949. bottom: 118/1227
  13950. }
  13951. },
  13952. back: {
  13953. height: math.unit(2.5, "feet"),
  13954. weight: math.unit(32, "lb"),
  13955. name: "Back",
  13956. image: {
  13957. source: "./media/characters/rufran/back.svg",
  13958. extra: 1280/878,
  13959. bottom: 131/1411
  13960. }
  13961. },
  13962. mouth: {
  13963. height: math.unit(1.13, "feet"),
  13964. name: "Mouth",
  13965. image: {
  13966. source: "./media/characters/rufran/mouth.svg"
  13967. }
  13968. },
  13969. foot: {
  13970. height: math.unit(1.33, "feet"),
  13971. name: "Foot",
  13972. image: {
  13973. source: "./media/characters/rufran/foot.svg"
  13974. }
  13975. },
  13976. koboldFront: {
  13977. height: math.unit(2 + 6 / 12, "feet"),
  13978. weight: math.unit(20, "lb"),
  13979. name: "Front (Kobold)",
  13980. image: {
  13981. source: "./media/characters/rufran/kobold-front.svg",
  13982. extra: 2041 / 1839,
  13983. bottom: 0.055
  13984. }
  13985. },
  13986. koboldBack: {
  13987. height: math.unit(2 + 6 / 12, "feet"),
  13988. weight: math.unit(20, "lb"),
  13989. name: "Back (Kobold)",
  13990. image: {
  13991. source: "./media/characters/rufran/kobold-back.svg",
  13992. extra: 2054 / 1839,
  13993. bottom: 0.01
  13994. }
  13995. },
  13996. koboldHand: {
  13997. height: math.unit(0.2166, "meters"),
  13998. name: "Hand (Kobold)",
  13999. image: {
  14000. source: "./media/characters/rufran/kobold-hand.svg"
  14001. }
  14002. },
  14003. koboldFoot: {
  14004. height: math.unit(0.185, "meters"),
  14005. name: "Foot (Kobold)",
  14006. image: {
  14007. source: "./media/characters/rufran/kobold-foot.svg"
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Micro",
  14014. height: math.unit(1, "inch")
  14015. },
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(2 + 6 / 12, "feet"),
  14019. default: true
  14020. },
  14021. {
  14022. name: "Big",
  14023. height: math.unit(60, "feet")
  14024. },
  14025. {
  14026. name: "Macro",
  14027. height: math.unit(325, "feet")
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14033. {
  14034. front: {
  14035. height: math.unit(0.3, "meters"),
  14036. weight: math.unit(3.5, "kg"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/chip/front.svg",
  14040. extra: 748 / 674
  14041. }
  14042. },
  14043. },
  14044. [
  14045. {
  14046. name: "Micro",
  14047. height: math.unit(1, "inch"),
  14048. default: true
  14049. },
  14050. ]
  14051. ))
  14052. characterMakers.push(() => makeCharacter(
  14053. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14054. {
  14055. side: {
  14056. height: math.unit(2.3, "meters"),
  14057. weight: math.unit(3500, "lb"),
  14058. name: "Side",
  14059. image: {
  14060. source: "./media/characters/torvid/side.svg",
  14061. extra: 1972 / 722,
  14062. bottom: 0.035
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Normal",
  14069. height: math.unit(2.3, "meters"),
  14070. default: true
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14076. {
  14077. front: {
  14078. height: math.unit(2, "meters"),
  14079. weight: math.unit(150.5, "kg"),
  14080. name: "Front",
  14081. image: {
  14082. source: "./media/characters/susan/front.svg",
  14083. extra: 693 / 635,
  14084. bottom: 0.05
  14085. }
  14086. },
  14087. },
  14088. [
  14089. {
  14090. name: "Megamacro",
  14091. height: math.unit(505, "miles"),
  14092. default: true
  14093. },
  14094. ]
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14098. {
  14099. front: {
  14100. height: math.unit(6, "feet"),
  14101. weight: math.unit(150, "lb"),
  14102. name: "Front",
  14103. image: {
  14104. source: "./media/characters/raindrops/front.svg",
  14105. extra: 2655 / 2461,
  14106. bottom: 49 / 2705
  14107. }
  14108. },
  14109. back: {
  14110. height: math.unit(6, "feet"),
  14111. weight: math.unit(150, "lb"),
  14112. name: "Back",
  14113. image: {
  14114. source: "./media/characters/raindrops/back.svg",
  14115. extra: 2574 / 2400,
  14116. bottom: 65 / 2634
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Micro",
  14123. height: math.unit(6, "inches")
  14124. },
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(6 + 2 / 12, "feet")
  14128. },
  14129. {
  14130. name: "Macro",
  14131. height: math.unit(131, "feet"),
  14132. default: true
  14133. },
  14134. {
  14135. name: "Megamacro",
  14136. height: math.unit(15, "miles")
  14137. },
  14138. {
  14139. name: "Gigamacro",
  14140. height: math.unit(4000, "miles")
  14141. },
  14142. {
  14143. name: "Teramacro",
  14144. height: math.unit(315000, "miles")
  14145. },
  14146. ]
  14147. ))
  14148. characterMakers.push(() => makeCharacter(
  14149. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14150. {
  14151. front: {
  14152. height: math.unit(2.794, "meters"),
  14153. weight: math.unit(325, "kg"),
  14154. name: "Front",
  14155. image: {
  14156. source: "./media/characters/tezwa/front.svg",
  14157. extra: 2083 / 1906,
  14158. bottom: 0.031
  14159. }
  14160. },
  14161. foot: {
  14162. height: math.unit(0.687, "meters"),
  14163. name: "Foot",
  14164. image: {
  14165. source: "./media/characters/tezwa/foot.svg"
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Normal",
  14172. height: math.unit(9 + 2 / 12, "feet"),
  14173. default: true
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(58, "feet"),
  14182. weight: math.unit(89000, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/typhus/front.svg",
  14186. extra: 816 / 800,
  14187. bottom: 0.065
  14188. }
  14189. },
  14190. },
  14191. [
  14192. {
  14193. name: "Macro",
  14194. height: math.unit(58, "feet"),
  14195. default: true
  14196. },
  14197. ]
  14198. ))
  14199. characterMakers.push(() => makeCharacter(
  14200. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14201. {
  14202. front: {
  14203. height: math.unit(12, "feet"),
  14204. weight: math.unit(6, "tonnes"),
  14205. name: "Front",
  14206. image: {
  14207. source: "./media/characters/lyra-von-wulf/front.svg",
  14208. extra: 1,
  14209. bottom: 0.10
  14210. }
  14211. },
  14212. frontMecha: {
  14213. height: math.unit(12, "feet"),
  14214. weight: math.unit(12, "tonnes"),
  14215. name: "Front (Mecha)",
  14216. image: {
  14217. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14218. extra: 1,
  14219. bottom: 0.042
  14220. }
  14221. },
  14222. maw: {
  14223. height: math.unit(2.2, "feet"),
  14224. name: "Maw",
  14225. image: {
  14226. source: "./media/characters/lyra-von-wulf/maw.svg"
  14227. }
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Normal",
  14233. height: math.unit(12, "feet"),
  14234. default: true
  14235. },
  14236. {
  14237. name: "Classic",
  14238. height: math.unit(50, "feet")
  14239. },
  14240. {
  14241. name: "Macro",
  14242. height: math.unit(500, "feet")
  14243. },
  14244. {
  14245. name: "Megamacro",
  14246. height: math.unit(1, "mile")
  14247. },
  14248. {
  14249. name: "Gigamacro",
  14250. height: math.unit(400, "miles")
  14251. },
  14252. {
  14253. name: "Teramacro",
  14254. height: math.unit(22000, "miles")
  14255. },
  14256. {
  14257. name: "Solarmacro",
  14258. height: math.unit(8600000, "miles")
  14259. },
  14260. {
  14261. name: "Galactic",
  14262. height: math.unit(1057000, "lightyears")
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(6 + 10 / 12, "feet"),
  14271. weight: math.unit(150, "lb"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/dixon/front.svg",
  14275. extra: 3361 / 3209,
  14276. bottom: 0.01
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Normal",
  14283. height: math.unit(6 + 10 / 12, "feet"),
  14284. default: true
  14285. },
  14286. {
  14287. name: "Big",
  14288. height: math.unit(12, "meters")
  14289. },
  14290. {
  14291. name: "Macro",
  14292. height: math.unit(500, "meters")
  14293. },
  14294. {
  14295. name: "Megamacro",
  14296. height: math.unit(2, "km")
  14297. },
  14298. ]
  14299. ))
  14300. characterMakers.push(() => makeCharacter(
  14301. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14302. {
  14303. front: {
  14304. height: math.unit(185, "cm"),
  14305. weight: math.unit(68, "kg"),
  14306. name: "Front",
  14307. image: {
  14308. source: "./media/characters/kauko/front.svg",
  14309. extra: 1455 / 1421,
  14310. bottom: 0.03
  14311. }
  14312. },
  14313. back: {
  14314. height: math.unit(185, "cm"),
  14315. weight: math.unit(68, "kg"),
  14316. name: "Back",
  14317. image: {
  14318. source: "./media/characters/kauko/back.svg",
  14319. extra: 1455 / 1421,
  14320. bottom: 0.004
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Normal",
  14327. height: math.unit(185, "cm"),
  14328. default: true
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14334. {
  14335. frontSfw: {
  14336. height: math.unit(5, "meters"),
  14337. weight: math.unit(4250, "lb"),
  14338. name: "Front",
  14339. image: {
  14340. source: "./media/characters/varg/front-sfw.svg",
  14341. extra: 1103/1010,
  14342. bottom: 50/1153
  14343. },
  14344. form: "anthro",
  14345. default: true
  14346. },
  14347. backSfw: {
  14348. height: math.unit(5, "meters"),
  14349. weight: math.unit(4250, "lb"),
  14350. name: "Back",
  14351. image: {
  14352. source: "./media/characters/varg/back-sfw.svg",
  14353. extra: 1038/1022,
  14354. bottom: 36/1074
  14355. },
  14356. form: "anthro"
  14357. },
  14358. frontNsfw: {
  14359. height: math.unit(5, "meters"),
  14360. weight: math.unit(4250, "lb"),
  14361. name: "Front (NSFW)",
  14362. image: {
  14363. source: "./media/characters/varg/front-nsfw.svg",
  14364. extra: 1103/1010,
  14365. bottom: 50/1153
  14366. },
  14367. form: "anthro"
  14368. },
  14369. sheath: {
  14370. height: math.unit(3.8, "feet"),
  14371. weight: math.unit(90, "kilograms"),
  14372. name: "Sheath",
  14373. image: {
  14374. source: "./media/characters/varg/sheath.svg"
  14375. },
  14376. form: "anthro"
  14377. },
  14378. dick: {
  14379. height: math.unit(4.6, "feet"),
  14380. weight: math.unit(451, "kilograms"),
  14381. name: "Dick",
  14382. image: {
  14383. source: "./media/characters/varg/dick.svg"
  14384. },
  14385. form: "anthro"
  14386. },
  14387. feralSfw: {
  14388. height: math.unit(5, "meters"),
  14389. weight: math.unit(100000, "lb"),
  14390. name: "Side",
  14391. image: {
  14392. source: "./media/characters/varg/feral-sfw.svg",
  14393. extra: 1065/511,
  14394. bottom: 211/1276
  14395. },
  14396. form: "feral",
  14397. default: true
  14398. },
  14399. feralNsfw: {
  14400. height: math.unit(5, "meters"),
  14401. weight: math.unit(100000, "lb"),
  14402. name: "Side (NSFW)",
  14403. image: {
  14404. source: "./media/characters/varg/feral-nsfw.svg",
  14405. extra: 1065/511,
  14406. bottom: 211/1276
  14407. },
  14408. form: "feral",
  14409. },
  14410. feralSheath: {
  14411. height: math.unit(9.8, "feet"),
  14412. weight: math.unit(2000, "kilograms"),
  14413. name: "Sheath",
  14414. image: {
  14415. source: "./media/characters/varg/sheath.svg"
  14416. },
  14417. form: "feral"
  14418. },
  14419. feralDick: {
  14420. height: math.unit(13.11, "feet"),
  14421. weight: math.unit(10440, "kilograms"),
  14422. name: "Dick",
  14423. image: {
  14424. source: "./media/characters/varg/dick.svg"
  14425. },
  14426. form: "feral"
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(5, "meters"),
  14433. form: "anthro"
  14434. },
  14435. {
  14436. name: "Macro",
  14437. height: math.unit(200, "meters"),
  14438. form: "anthro"
  14439. },
  14440. {
  14441. name: "Megamacro",
  14442. height: math.unit(20, "kilometers"),
  14443. form: "anthro"
  14444. },
  14445. {
  14446. name: "True Size",
  14447. height: math.unit(211, "km"),
  14448. form: "anthro",
  14449. default: true
  14450. },
  14451. {
  14452. name: "Gigamacro",
  14453. height: math.unit(1000, "km"),
  14454. form: "anthro"
  14455. },
  14456. {
  14457. name: "Gigamacro+",
  14458. height: math.unit(8000, "km"),
  14459. form: "anthro"
  14460. },
  14461. {
  14462. name: "Teramacro",
  14463. height: math.unit(1000000, "km"),
  14464. form: "anthro"
  14465. },
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(5, "meters"),
  14469. form: "feral"
  14470. },
  14471. {
  14472. name: "Macro",
  14473. height: math.unit(200, "meters"),
  14474. form: "feral"
  14475. },
  14476. {
  14477. name: "Megamacro",
  14478. height: math.unit(20, "kilometers"),
  14479. form: "feral"
  14480. },
  14481. {
  14482. name: "True Size",
  14483. height: math.unit(211, "km"),
  14484. form: "feral",
  14485. default: true
  14486. },
  14487. {
  14488. name: "Gigamacro",
  14489. height: math.unit(1000, "km"),
  14490. form: "feral"
  14491. },
  14492. {
  14493. name: "Gigamacro+",
  14494. height: math.unit(8000, "km"),
  14495. form: "feral"
  14496. },
  14497. {
  14498. name: "Teramacro",
  14499. height: math.unit(1000000, "km"),
  14500. form: "feral"
  14501. },
  14502. ],
  14503. {
  14504. "anthro": {
  14505. name: "Anthro",
  14506. default: true
  14507. },
  14508. "feral": {
  14509. name: "Feral",
  14510. },
  14511. }
  14512. ))
  14513. characterMakers.push(() => makeCharacter(
  14514. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14515. {
  14516. front: {
  14517. height: math.unit(7 + 7 / 12, "feet"),
  14518. weight: math.unit(267, "lb"),
  14519. name: "Front",
  14520. image: {
  14521. source: "./media/characters/dayza/front.svg",
  14522. extra: 1262 / 1200,
  14523. bottom: 0.035
  14524. }
  14525. },
  14526. side: {
  14527. height: math.unit(7 + 7 / 12, "feet"),
  14528. weight: math.unit(267, "lb"),
  14529. name: "Side",
  14530. image: {
  14531. source: "./media/characters/dayza/side.svg",
  14532. extra: 1295 / 1245,
  14533. bottom: 0.05
  14534. }
  14535. },
  14536. back: {
  14537. height: math.unit(7 + 7 / 12, "feet"),
  14538. weight: math.unit(267, "lb"),
  14539. name: "Back",
  14540. image: {
  14541. source: "./media/characters/dayza/back.svg",
  14542. extra: 1241 / 1170
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Normal",
  14549. height: math.unit(7 + 7 / 12, "feet"),
  14550. default: true
  14551. },
  14552. {
  14553. name: "Macro",
  14554. height: math.unit(155, "feet")
  14555. },
  14556. ]
  14557. ))
  14558. characterMakers.push(() => makeCharacter(
  14559. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14560. {
  14561. front: {
  14562. height: math.unit(6 + 5 / 12, "feet"),
  14563. weight: math.unit(160, "lb"),
  14564. name: "Front",
  14565. image: {
  14566. source: "./media/characters/xanthos/front.svg",
  14567. extra: 1,
  14568. bottom: 0.04
  14569. }
  14570. },
  14571. back: {
  14572. height: math.unit(6 + 5 / 12, "feet"),
  14573. weight: math.unit(160, "lb"),
  14574. name: "Back",
  14575. image: {
  14576. source: "./media/characters/xanthos/back.svg",
  14577. extra: 1,
  14578. bottom: 0.03
  14579. }
  14580. },
  14581. hand: {
  14582. height: math.unit(0.928, "feet"),
  14583. name: "Hand",
  14584. image: {
  14585. source: "./media/characters/xanthos/hand.svg"
  14586. }
  14587. },
  14588. foot: {
  14589. height: math.unit(1.286, "feet"),
  14590. name: "Foot",
  14591. image: {
  14592. source: "./media/characters/xanthos/foot.svg"
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Normal",
  14599. height: math.unit(6 + 5 / 12, "feet"),
  14600. default: true
  14601. },
  14602. {
  14603. name: "Normal+",
  14604. height: math.unit(6, "meters")
  14605. },
  14606. {
  14607. name: "Macro",
  14608. height: math.unit(40, "feet")
  14609. },
  14610. {
  14611. name: "Macro+",
  14612. height: math.unit(200, "meters")
  14613. },
  14614. {
  14615. name: "Megamacro",
  14616. height: math.unit(20, "km")
  14617. },
  14618. {
  14619. name: "Megamacro+",
  14620. height: math.unit(100, "km")
  14621. },
  14622. {
  14623. name: "Gigamacro",
  14624. height: math.unit(200, "megameters")
  14625. },
  14626. {
  14627. name: "Gigamacro+",
  14628. height: math.unit(1.5, "gigameters")
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(6 + 3 / 12, "feet"),
  14637. weight: math.unit(215, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/grynn/front.svg",
  14641. extra: 4627 / 4209,
  14642. bottom: 0.047
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Micro",
  14649. height: math.unit(6, "inches")
  14650. },
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(6 + 3 / 12, "feet"),
  14654. default: true
  14655. },
  14656. {
  14657. name: "Big",
  14658. height: math.unit(104, "feet")
  14659. },
  14660. {
  14661. name: "Macro",
  14662. height: math.unit(944, "feet")
  14663. },
  14664. {
  14665. name: "Macro+",
  14666. height: math.unit(9480, "feet")
  14667. },
  14668. {
  14669. name: "Megamacro",
  14670. height: math.unit(78752, "feet")
  14671. },
  14672. {
  14673. name: "Megamacro+",
  14674. height: math.unit(630128, "feet")
  14675. },
  14676. {
  14677. name: "Megamacro++",
  14678. height: math.unit(3150695, "feet")
  14679. },
  14680. ]
  14681. ))
  14682. characterMakers.push(() => makeCharacter(
  14683. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14684. {
  14685. front: {
  14686. height: math.unit(7 + 5 / 12, "feet"),
  14687. weight: math.unit(450, "lb"),
  14688. name: "Front",
  14689. image: {
  14690. source: "./media/characters/mocha-aura/front.svg",
  14691. extra: 1907 / 1817,
  14692. bottom: 0.04
  14693. }
  14694. },
  14695. back: {
  14696. height: math.unit(7 + 5 / 12, "feet"),
  14697. weight: math.unit(450, "lb"),
  14698. name: "Back",
  14699. image: {
  14700. source: "./media/characters/mocha-aura/back.svg",
  14701. extra: 1900 / 1825,
  14702. bottom: 0.045
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Nano",
  14709. height: math.unit(1, "nm")
  14710. },
  14711. {
  14712. name: "Megamicro",
  14713. height: math.unit(1, "mm")
  14714. },
  14715. {
  14716. name: "Micro",
  14717. height: math.unit(3, "inches")
  14718. },
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(7 + 5 / 12, "feet"),
  14722. default: true
  14723. },
  14724. {
  14725. name: "Macro",
  14726. height: math.unit(30, "feet")
  14727. },
  14728. {
  14729. name: "Megamacro",
  14730. height: math.unit(3500, "feet")
  14731. },
  14732. {
  14733. name: "Teramacro",
  14734. height: math.unit(500000, "miles")
  14735. },
  14736. {
  14737. name: "Petamacro",
  14738. height: math.unit(50000000000000000, "parsecs")
  14739. },
  14740. ]
  14741. ))
  14742. characterMakers.push(() => makeCharacter(
  14743. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14744. {
  14745. front: {
  14746. height: math.unit(6, "feet"),
  14747. weight: math.unit(150, "lb"),
  14748. name: "Front",
  14749. image: {
  14750. source: "./media/characters/ilisha-devya/front.svg",
  14751. extra: 1053/1049,
  14752. bottom: 270/1323
  14753. }
  14754. },
  14755. back: {
  14756. height: math.unit(6, "feet"),
  14757. weight: math.unit(150, "lb"),
  14758. name: "Back",
  14759. image: {
  14760. source: "./media/characters/ilisha-devya/back.svg",
  14761. extra: 1131/1128,
  14762. bottom: 39/1170
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Macro",
  14769. height: math.unit(500, "feet"),
  14770. default: true
  14771. },
  14772. {
  14773. name: "Megamacro",
  14774. height: math.unit(10, "miles")
  14775. },
  14776. {
  14777. name: "Gigamacro",
  14778. height: math.unit(100000, "miles")
  14779. },
  14780. {
  14781. name: "Examacro",
  14782. height: math.unit(1e9, "lightyears")
  14783. },
  14784. {
  14785. name: "Omniversal",
  14786. height: math.unit(1e33, "lightyears")
  14787. },
  14788. {
  14789. name: "Beyond Infinite",
  14790. height: math.unit(1e100, "lightyears")
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14796. {
  14797. Side: {
  14798. height: math.unit(6, "feet"),
  14799. weight: math.unit(150, "lb"),
  14800. name: "Side",
  14801. image: {
  14802. source: "./media/characters/mira/side.svg",
  14803. extra: 900 / 799,
  14804. bottom: 0.02
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Human Size",
  14811. height: math.unit(6, "feet")
  14812. },
  14813. {
  14814. name: "Macro",
  14815. height: math.unit(100, "feet"),
  14816. default: true
  14817. },
  14818. {
  14819. name: "Megamacro",
  14820. height: math.unit(10, "miles")
  14821. },
  14822. {
  14823. name: "Gigamacro",
  14824. height: math.unit(25000, "miles")
  14825. },
  14826. {
  14827. name: "Teramacro",
  14828. height: math.unit(300, "AU")
  14829. },
  14830. {
  14831. name: "Full Size",
  14832. height: math.unit(4.5e10, "lightyears")
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(6, "feet"),
  14841. weight: math.unit(150, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/holly/front.svg",
  14845. extra: 639 / 606
  14846. }
  14847. },
  14848. back: {
  14849. height: math.unit(6, "feet"),
  14850. weight: math.unit(150, "lb"),
  14851. name: "Back",
  14852. image: {
  14853. source: "./media/characters/holly/back.svg",
  14854. extra: 623 / 598
  14855. }
  14856. },
  14857. frontWorking: {
  14858. height: math.unit(6, "feet"),
  14859. weight: math.unit(150, "lb"),
  14860. name: "Front (Working)",
  14861. image: {
  14862. source: "./media/characters/holly/front-working.svg",
  14863. extra: 607 / 577,
  14864. bottom: 0.048
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(12 + 3 / 12, "feet"),
  14872. default: true
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(6, "feet"),
  14881. weight: math.unit(150, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/porter/front.svg",
  14885. extra: 1,
  14886. bottom: 0.01
  14887. }
  14888. },
  14889. frontRobes: {
  14890. height: math.unit(6, "feet"),
  14891. weight: math.unit(150, "lb"),
  14892. name: "Front (Robes)",
  14893. image: {
  14894. source: "./media/characters/porter/front-robes.svg",
  14895. extra: 1.01,
  14896. bottom: 0.01
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Normal",
  14903. height: math.unit(11 + 9 / 12, "feet"),
  14904. default: true
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14910. {
  14911. legendary: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(150, "lb"),
  14914. name: "Legendary",
  14915. image: {
  14916. source: "./media/characters/lucy/legendary.svg",
  14917. extra: 1355 / 1100,
  14918. bottom: 0.045
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Legendary",
  14925. height: math.unit(86882 * 2, "miles"),
  14926. default: true
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(6, "feet"),
  14935. weight: math.unit(150, "lb"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/drusilla/front.svg",
  14939. extra: 678 / 635,
  14940. bottom: 0.03
  14941. }
  14942. },
  14943. back: {
  14944. height: math.unit(6, "feet"),
  14945. weight: math.unit(150, "lb"),
  14946. name: "Back",
  14947. image: {
  14948. source: "./media/characters/drusilla/back.svg",
  14949. extra: 678 / 635,
  14950. bottom: 0.005
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Macro",
  14957. height: math.unit(100, "feet")
  14958. },
  14959. {
  14960. name: "Canon Height",
  14961. height: math.unit(2000, "feet"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14968. {
  14969. front: {
  14970. height: math.unit(6, "feet"),
  14971. weight: math.unit(180, "lb"),
  14972. name: "Front",
  14973. image: {
  14974. source: "./media/characters/renard-thatch/front.svg",
  14975. extra: 2411 / 2275,
  14976. bottom: 0.01
  14977. }
  14978. },
  14979. frontPosing: {
  14980. height: math.unit(6, "feet"),
  14981. weight: math.unit(180, "lb"),
  14982. name: "Front (Posing)",
  14983. image: {
  14984. source: "./media/characters/renard-thatch/front-posing.svg",
  14985. extra: 2381 / 2261,
  14986. bottom: 0.01
  14987. }
  14988. },
  14989. back: {
  14990. height: math.unit(6, "feet"),
  14991. weight: math.unit(180, "lb"),
  14992. name: "Back",
  14993. image: {
  14994. source: "./media/characters/renard-thatch/back.svg",
  14995. extra: 2428 / 2288
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Micro",
  15002. height: math.unit(3, "inches")
  15003. },
  15004. {
  15005. name: "Default",
  15006. height: math.unit(6, "feet"),
  15007. default: true
  15008. },
  15009. {
  15010. name: "Macro",
  15011. height: math.unit(75, "feet")
  15012. },
  15013. ]
  15014. ))
  15015. characterMakers.push(() => makeCharacter(
  15016. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15017. {
  15018. front: {
  15019. height: math.unit(1450, "feet"),
  15020. weight: math.unit(1.21e6, "tons"),
  15021. name: "Front",
  15022. image: {
  15023. source: "./media/characters/sekvra/front.svg",
  15024. extra: 1193/1190,
  15025. bottom: 78/1271
  15026. }
  15027. },
  15028. side: {
  15029. height: math.unit(1450, "feet"),
  15030. weight: math.unit(1.21e6, "tons"),
  15031. name: "Side",
  15032. image: {
  15033. source: "./media/characters/sekvra/side.svg",
  15034. extra: 1193/1190,
  15035. bottom: 52/1245
  15036. }
  15037. },
  15038. back: {
  15039. height: math.unit(1450, "feet"),
  15040. weight: math.unit(1.21e6, "tons"),
  15041. name: "Back",
  15042. image: {
  15043. source: "./media/characters/sekvra/back.svg",
  15044. extra: 1219/1216,
  15045. bottom: 21/1240
  15046. }
  15047. },
  15048. frontClothed: {
  15049. height: math.unit(1450, "feet"),
  15050. weight: math.unit(1.21e6, "tons"),
  15051. name: "Front (Clothed)",
  15052. image: {
  15053. source: "./media/characters/sekvra/front-clothed.svg",
  15054. extra: 1192/1189,
  15055. bottom: 79/1271
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Macro",
  15062. height: math.unit(1450, "feet"),
  15063. default: true
  15064. },
  15065. {
  15066. name: "Megamacro",
  15067. height: math.unit(15000, "feet")
  15068. },
  15069. ]
  15070. ))
  15071. characterMakers.push(() => makeCharacter(
  15072. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15073. {
  15074. front: {
  15075. height: math.unit(6, "feet"),
  15076. weight: math.unit(150, "lb"),
  15077. name: "Front",
  15078. image: {
  15079. source: "./media/characters/carmine/front.svg",
  15080. extra: 1557/1538,
  15081. bottom: 68/1625
  15082. }
  15083. },
  15084. frontArmor: {
  15085. height: math.unit(6, "feet"),
  15086. weight: math.unit(150, "lb"),
  15087. name: "Front (Armor)",
  15088. image: {
  15089. source: "./media/characters/carmine/front-armor.svg",
  15090. extra: 1549/1530,
  15091. bottom: 82/1631
  15092. }
  15093. },
  15094. mouth: {
  15095. height: math.unit(0.55, "feet"),
  15096. name: "Mouth",
  15097. image: {
  15098. source: "./media/characters/carmine/mouth.svg"
  15099. }
  15100. },
  15101. hand: {
  15102. height: math.unit(1.05, "feet"),
  15103. name: "Hand",
  15104. image: {
  15105. source: "./media/characters/carmine/hand.svg"
  15106. }
  15107. },
  15108. foot: {
  15109. height: math.unit(0.6, "feet"),
  15110. name: "Foot",
  15111. image: {
  15112. source: "./media/characters/carmine/foot.svg"
  15113. }
  15114. },
  15115. },
  15116. [
  15117. {
  15118. name: "Large",
  15119. height: math.unit(1, "mile")
  15120. },
  15121. {
  15122. name: "Huge",
  15123. height: math.unit(40, "miles"),
  15124. default: true
  15125. },
  15126. {
  15127. name: "Colossal",
  15128. height: math.unit(2500, "miles")
  15129. },
  15130. ]
  15131. ))
  15132. characterMakers.push(() => makeCharacter(
  15133. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15134. {
  15135. front: {
  15136. height: math.unit(6, "feet"),
  15137. weight: math.unit(150, "lb"),
  15138. name: "Front",
  15139. image: {
  15140. source: "./media/characters/elyssia/front.svg",
  15141. extra: 2201 / 2035,
  15142. bottom: 0.05
  15143. }
  15144. },
  15145. frontClothed: {
  15146. height: math.unit(6, "feet"),
  15147. weight: math.unit(150, "lb"),
  15148. name: "Front (Clothed)",
  15149. image: {
  15150. source: "./media/characters/elyssia/front-clothed.svg",
  15151. extra: 2201 / 2035,
  15152. bottom: 0.05
  15153. }
  15154. },
  15155. back: {
  15156. height: math.unit(6, "feet"),
  15157. weight: math.unit(150, "lb"),
  15158. name: "Back",
  15159. image: {
  15160. source: "./media/characters/elyssia/back.svg",
  15161. extra: 2201 / 2035,
  15162. bottom: 0.013
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Smaller",
  15169. height: math.unit(150, "feet")
  15170. },
  15171. {
  15172. name: "Standard",
  15173. height: math.unit(1400, "feet"),
  15174. default: true
  15175. },
  15176. {
  15177. name: "Distracted",
  15178. height: math.unit(15000, "feet")
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15184. {
  15185. front: {
  15186. height: math.unit(7 + 4/12, "feet"),
  15187. weight: math.unit(690, "lb"),
  15188. name: "Front",
  15189. image: {
  15190. source: "./media/characters/geno-maxwell/front.svg",
  15191. extra: 984/856,
  15192. bottom: 87/1071
  15193. }
  15194. },
  15195. back: {
  15196. height: math.unit(7 + 4/12, "feet"),
  15197. weight: math.unit(690, "lb"),
  15198. name: "Back",
  15199. image: {
  15200. source: "./media/characters/geno-maxwell/back.svg",
  15201. extra: 981/854,
  15202. bottom: 57/1038
  15203. }
  15204. },
  15205. frontCostume: {
  15206. height: math.unit(7 + 4/12, "feet"),
  15207. weight: math.unit(690, "lb"),
  15208. name: "Front (Costume)",
  15209. image: {
  15210. source: "./media/characters/geno-maxwell/front-costume.svg",
  15211. extra: 984/856,
  15212. bottom: 87/1071
  15213. }
  15214. },
  15215. backcostume: {
  15216. height: math.unit(7 + 4/12, "feet"),
  15217. weight: math.unit(690, "lb"),
  15218. name: "Back (Costume)",
  15219. image: {
  15220. source: "./media/characters/geno-maxwell/back-costume.svg",
  15221. extra: 981/854,
  15222. bottom: 57/1038
  15223. }
  15224. },
  15225. },
  15226. [
  15227. {
  15228. name: "Micro",
  15229. height: math.unit(3, "inches")
  15230. },
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(7 + 4 / 12, "feet"),
  15234. default: true
  15235. },
  15236. {
  15237. name: "Macro",
  15238. height: math.unit(220, "feet")
  15239. },
  15240. {
  15241. name: "Megamacro",
  15242. height: math.unit(11, "miles")
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15248. {
  15249. front: {
  15250. height: math.unit(7 + 4/12, "feet"),
  15251. weight: math.unit(750, "lb"),
  15252. name: "Front",
  15253. image: {
  15254. source: "./media/characters/regena-maxwell/front.svg",
  15255. extra: 984/856,
  15256. bottom: 87/1071
  15257. }
  15258. },
  15259. back: {
  15260. height: math.unit(7 + 4/12, "feet"),
  15261. weight: math.unit(750, "lb"),
  15262. name: "Back",
  15263. image: {
  15264. source: "./media/characters/regena-maxwell/back.svg",
  15265. extra: 981/854,
  15266. bottom: 57/1038
  15267. }
  15268. },
  15269. frontCostume: {
  15270. height: math.unit(7 + 4/12, "feet"),
  15271. weight: math.unit(750, "lb"),
  15272. name: "Front (Costume)",
  15273. image: {
  15274. source: "./media/characters/regena-maxwell/front-costume.svg",
  15275. extra: 984/856,
  15276. bottom: 87/1071
  15277. }
  15278. },
  15279. backcostume: {
  15280. height: math.unit(7 + 4/12, "feet"),
  15281. weight: math.unit(750, "lb"),
  15282. name: "Back (Costume)",
  15283. image: {
  15284. source: "./media/characters/regena-maxwell/back-costume.svg",
  15285. extra: 981/854,
  15286. bottom: 57/1038
  15287. }
  15288. },
  15289. },
  15290. [
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(7 + 4 / 12, "feet"),
  15294. default: true
  15295. },
  15296. {
  15297. name: "Macro",
  15298. height: math.unit(220, "feet")
  15299. },
  15300. {
  15301. name: "Megamacro",
  15302. height: math.unit(11, "miles")
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15308. {
  15309. front: {
  15310. height: math.unit(6, "feet"),
  15311. weight: math.unit(150, "lb"),
  15312. name: "Front",
  15313. image: {
  15314. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15315. extra: 860 / 690,
  15316. bottom: 0.03
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(1.7, "meters"),
  15324. default: true
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15330. {
  15331. front: {
  15332. height: math.unit(6, "feet"),
  15333. weight: math.unit(150, "lb"),
  15334. name: "Front",
  15335. image: {
  15336. source: "./media/characters/quilly/front.svg",
  15337. extra: 890 / 776
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Gigamacro",
  15344. height: math.unit(404090, "miles"),
  15345. default: true
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(7 + 8 / 12, "feet"),
  15354. weight: math.unit(350, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/tempest/front.svg",
  15358. extra: 1175 / 1086,
  15359. bottom: 0.02
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(7 + 8 / 12, "feet"),
  15367. default: true
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15373. {
  15374. side: {
  15375. height: math.unit(4 + 5 / 12, "feet"),
  15376. weight: math.unit(80, "lb"),
  15377. name: "Side",
  15378. image: {
  15379. source: "./media/characters/rodger/side.svg",
  15380. extra: 1235 / 1118
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Micro",
  15387. height: math.unit(1, "inch")
  15388. },
  15389. {
  15390. name: "Normal",
  15391. height: math.unit(4 + 5 / 12, "feet"),
  15392. default: true
  15393. },
  15394. {
  15395. name: "Macro",
  15396. height: math.unit(120, "feet")
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(150, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/danyel/front.svg",
  15409. extra: 1185 / 1123,
  15410. bottom: 0.05
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Shrunken",
  15417. height: math.unit(0.5, "mm")
  15418. },
  15419. {
  15420. name: "Micro",
  15421. height: math.unit(1, "mm"),
  15422. default: true
  15423. },
  15424. {
  15425. name: "Upsized",
  15426. height: math.unit(5 + 5 / 12, "feet")
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(5 + 6 / 12, "feet"),
  15435. weight: math.unit(200, "lb"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/vivian-bijoux/front.svg",
  15439. extra: 1217/1209,
  15440. bottom: 76/1293
  15441. }
  15442. },
  15443. back: {
  15444. height: math.unit(5 + 6 / 12, "feet"),
  15445. weight: math.unit(200, "lb"),
  15446. name: "Back",
  15447. image: {
  15448. source: "./media/characters/vivian-bijoux/back.svg",
  15449. extra: 1214/1208,
  15450. bottom: 51/1265
  15451. }
  15452. },
  15453. dressed: {
  15454. height: math.unit(5 + 6 / 12, "feet"),
  15455. weight: math.unit(200, "lb"),
  15456. name: "Dressed",
  15457. image: {
  15458. source: "./media/characters/vivian-bijoux/dressed.svg",
  15459. extra: 1217/1209,
  15460. bottom: 76/1293
  15461. }
  15462. },
  15463. },
  15464. [
  15465. {
  15466. name: "Normal",
  15467. height: math.unit(5 + 6 / 12, "feet"),
  15468. default: true
  15469. },
  15470. {
  15471. name: "Bad Dream",
  15472. height: math.unit(500, "feet")
  15473. },
  15474. {
  15475. name: "Nightmare",
  15476. height: math.unit(500, "miles")
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15482. {
  15483. front: {
  15484. height: math.unit(6 + 1 / 12, "feet"),
  15485. weight: math.unit(260, "lb"),
  15486. name: "Front",
  15487. image: {
  15488. source: "./media/characters/zeta/front.svg",
  15489. extra: 1968 / 1889,
  15490. bottom: 0.06
  15491. }
  15492. },
  15493. back: {
  15494. height: math.unit(6 + 1 / 12, "feet"),
  15495. weight: math.unit(260, "lb"),
  15496. name: "Back",
  15497. image: {
  15498. source: "./media/characters/zeta/back.svg",
  15499. extra: 1944 / 1858,
  15500. bottom: 0.03
  15501. }
  15502. },
  15503. hand: {
  15504. height: math.unit(1.112, "feet"),
  15505. name: "Hand",
  15506. image: {
  15507. source: "./media/characters/zeta/hand.svg"
  15508. }
  15509. },
  15510. foot: {
  15511. height: math.unit(1.48, "feet"),
  15512. name: "Foot",
  15513. image: {
  15514. source: "./media/characters/zeta/foot.svg"
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Micro",
  15521. height: math.unit(6, "inches")
  15522. },
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(6 + 1 / 12, "feet"),
  15526. default: true
  15527. },
  15528. {
  15529. name: "Macro",
  15530. height: math.unit(20, "feet")
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(6, "feet"),
  15539. weight: math.unit(150, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/jamie-larsen/front.svg",
  15543. extra: 962 / 933,
  15544. bottom: 0.02
  15545. }
  15546. },
  15547. back: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(150, "lb"),
  15550. name: "Back",
  15551. image: {
  15552. source: "./media/characters/jamie-larsen/back.svg",
  15553. extra: 997 / 946
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Macro",
  15560. height: math.unit(28 + 7 / 12, "feet"),
  15561. default: true
  15562. },
  15563. {
  15564. name: "Macro+",
  15565. height: math.unit(180, "feet")
  15566. },
  15567. {
  15568. name: "Megamacro",
  15569. height: math.unit(10, "miles")
  15570. },
  15571. {
  15572. name: "Gigamacro",
  15573. height: math.unit(200000, "miles")
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(6, "feet"),
  15582. weight: math.unit(120, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/vance/front.svg",
  15586. extra: 1980 / 1890,
  15587. bottom: 0.09
  15588. }
  15589. },
  15590. back: {
  15591. height: math.unit(6, "feet"),
  15592. weight: math.unit(120, "lb"),
  15593. name: "Back",
  15594. image: {
  15595. source: "./media/characters/vance/back.svg",
  15596. extra: 2081 / 1994,
  15597. bottom: 0.014
  15598. }
  15599. },
  15600. hand: {
  15601. height: math.unit(0.88, "feet"),
  15602. name: "Hand",
  15603. image: {
  15604. source: "./media/characters/vance/hand.svg"
  15605. }
  15606. },
  15607. foot: {
  15608. height: math.unit(0.64, "feet"),
  15609. name: "Foot",
  15610. image: {
  15611. source: "./media/characters/vance/foot.svg"
  15612. }
  15613. },
  15614. },
  15615. [
  15616. {
  15617. name: "Small",
  15618. height: math.unit(90, "feet"),
  15619. default: true
  15620. },
  15621. {
  15622. name: "Macro",
  15623. height: math.unit(100, "meters")
  15624. },
  15625. {
  15626. name: "Megamacro",
  15627. height: math.unit(15, "miles")
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(180, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/xochitl/front.svg",
  15640. extra: 2297 / 2261,
  15641. bottom: 0.065
  15642. }
  15643. },
  15644. back: {
  15645. height: math.unit(6, "feet"),
  15646. weight: math.unit(180, "lb"),
  15647. name: "Back",
  15648. image: {
  15649. source: "./media/characters/xochitl/back.svg",
  15650. extra: 2386 / 2354,
  15651. bottom: 0.01
  15652. }
  15653. },
  15654. foot: {
  15655. height: math.unit(6 / 5 * 1.15, "feet"),
  15656. weight: math.unit(150, "lb"),
  15657. name: "Foot",
  15658. image: {
  15659. source: "./media/characters/xochitl/foot.svg"
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Macro",
  15666. height: math.unit(80, "feet")
  15667. },
  15668. {
  15669. name: "Macro+",
  15670. height: math.unit(400, "feet"),
  15671. default: true
  15672. },
  15673. {
  15674. name: "Gigamacro",
  15675. height: math.unit(80000, "miles")
  15676. },
  15677. {
  15678. name: "Gigamacro+",
  15679. height: math.unit(400000, "miles")
  15680. },
  15681. {
  15682. name: "Teramacro",
  15683. height: math.unit(300, "AU")
  15684. },
  15685. ]
  15686. ))
  15687. characterMakers.push(() => makeCharacter(
  15688. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15689. {
  15690. front: {
  15691. height: math.unit(6, "feet"),
  15692. weight: math.unit(150, "lb"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/vincent/front.svg",
  15696. extra: 1130 / 1080,
  15697. bottom: 0.055
  15698. }
  15699. },
  15700. beak: {
  15701. height: math.unit(6 * 0.1, "feet"),
  15702. name: "Beak",
  15703. image: {
  15704. source: "./media/characters/vincent/beak.svg"
  15705. }
  15706. },
  15707. hand: {
  15708. height: math.unit(6 * 0.85, "feet"),
  15709. weight: math.unit(150, "lb"),
  15710. name: "Hand",
  15711. image: {
  15712. source: "./media/characters/vincent/hand.svg"
  15713. }
  15714. },
  15715. foot: {
  15716. height: math.unit(6 * 0.19, "feet"),
  15717. weight: math.unit(150, "lb"),
  15718. name: "Foot",
  15719. image: {
  15720. source: "./media/characters/vincent/foot.svg"
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Base",
  15727. height: math.unit(6 + 5 / 12, "feet"),
  15728. default: true
  15729. },
  15730. {
  15731. name: "Macro",
  15732. height: math.unit(300, "feet")
  15733. },
  15734. {
  15735. name: "Megamacro",
  15736. height: math.unit(2, "miles")
  15737. },
  15738. {
  15739. name: "Gigamacro",
  15740. height: math.unit(1000, "miles")
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15746. {
  15747. front: {
  15748. height: math.unit(2, "meters"),
  15749. weight: math.unit(500, "kg"),
  15750. name: "Front",
  15751. image: {
  15752. source: "./media/characters/coatl/front.svg",
  15753. extra: 3948 / 3500,
  15754. bottom: 0.082
  15755. }
  15756. },
  15757. },
  15758. [
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(4, "meters")
  15762. },
  15763. {
  15764. name: "Macro",
  15765. height: math.unit(100, "meters"),
  15766. default: true
  15767. },
  15768. {
  15769. name: "Macro+",
  15770. height: math.unit(300, "meters")
  15771. },
  15772. {
  15773. name: "Megamacro",
  15774. height: math.unit(3, "gigameters")
  15775. },
  15776. {
  15777. name: "Megamacro+",
  15778. height: math.unit(300, "terameters")
  15779. },
  15780. {
  15781. name: "Megamacro++",
  15782. height: math.unit(3, "lightyears")
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15788. {
  15789. front: {
  15790. height: math.unit(6, "feet"),
  15791. weight: math.unit(50, "kg"),
  15792. name: "front",
  15793. image: {
  15794. source: "./media/characters/shiroryu/front.svg",
  15795. extra: 1990 / 1935
  15796. }
  15797. },
  15798. },
  15799. [
  15800. {
  15801. name: "Mortal Mingling",
  15802. height: math.unit(3, "meters")
  15803. },
  15804. {
  15805. name: "Kaiju-ish",
  15806. height: math.unit(250, "meters")
  15807. },
  15808. {
  15809. name: "Somewhat Godly",
  15810. height: math.unit(400, "km"),
  15811. default: true
  15812. },
  15813. {
  15814. name: "Planetary",
  15815. height: math.unit(300, "megameters")
  15816. },
  15817. {
  15818. name: "Galaxy-dwarfing",
  15819. height: math.unit(450, "kiloparsecs")
  15820. },
  15821. {
  15822. name: "Universe Eater",
  15823. height: math.unit(150, "gigaparsecs")
  15824. },
  15825. {
  15826. name: "Almost Immeasurable",
  15827. height: math.unit(1.3e266, "yottaparsecs")
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(6, "feet"),
  15836. weight: math.unit(150, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/umeko/front.svg",
  15840. extra: 1,
  15841. bottom: 0.019
  15842. }
  15843. },
  15844. frontArmored: {
  15845. height: math.unit(6, "feet"),
  15846. weight: math.unit(150, "lb"),
  15847. name: "Front (Armored)",
  15848. image: {
  15849. source: "./media/characters/umeko/front-armored.svg",
  15850. extra: 1,
  15851. bottom: 0.021
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Macro",
  15858. height: math.unit(220, "feet"),
  15859. default: true
  15860. },
  15861. {
  15862. name: "Guardian Dragon",
  15863. height: math.unit(50, "miles")
  15864. },
  15865. {
  15866. name: "Cosmic",
  15867. height: math.unit(800000, "miles")
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(6, "feet"),
  15876. weight: math.unit(150, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/cassidy/front.svg",
  15880. extra: 810/808,
  15881. bottom: 41/851
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Canon Height",
  15888. height: math.unit(120, "feet"),
  15889. default: true
  15890. },
  15891. {
  15892. name: "Macro+",
  15893. height: math.unit(400, "feet")
  15894. },
  15895. {
  15896. name: "Macro++",
  15897. height: math.unit(4000, "feet")
  15898. },
  15899. {
  15900. name: "Megamacro",
  15901. height: math.unit(3, "miles")
  15902. },
  15903. ]
  15904. ))
  15905. characterMakers.push(() => makeCharacter(
  15906. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15907. {
  15908. front: {
  15909. height: math.unit(6, "feet"),
  15910. weight: math.unit(150, "lb"),
  15911. name: "Front",
  15912. image: {
  15913. source: "./media/characters/isaac/front.svg",
  15914. extra: 896 / 815,
  15915. bottom: 0.11
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Human Size",
  15922. height: math.unit(8, "feet"),
  15923. default: true
  15924. },
  15925. {
  15926. name: "Macro",
  15927. height: math.unit(400, "feet")
  15928. },
  15929. {
  15930. name: "Megamacro",
  15931. height: math.unit(50, "miles")
  15932. },
  15933. {
  15934. name: "Canon Height",
  15935. height: math.unit(200, "AU")
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15941. {
  15942. front: {
  15943. height: math.unit(6, "feet"),
  15944. weight: math.unit(72, "kg"),
  15945. name: "Front",
  15946. image: {
  15947. source: "./media/characters/sleekit/front.svg",
  15948. extra: 4693 / 4487,
  15949. bottom: 0.012
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Minimum Height",
  15956. height: math.unit(10, "meters")
  15957. },
  15958. {
  15959. name: "Smaller",
  15960. height: math.unit(25, "meters")
  15961. },
  15962. {
  15963. name: "Larger",
  15964. height: math.unit(38, "meters"),
  15965. default: true
  15966. },
  15967. {
  15968. name: "Maximum height",
  15969. height: math.unit(100, "meters")
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(6, "feet"),
  15978. weight: math.unit(150, "lb"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/nillia/front.svg",
  15982. extra: 719/665,
  15983. bottom: 6/725
  15984. }
  15985. },
  15986. back: {
  15987. height: math.unit(6, "feet"),
  15988. weight: math.unit(150, "lb"),
  15989. name: "Back",
  15990. image: {
  15991. source: "./media/characters/nillia/back.svg",
  15992. extra: 705/651,
  15993. bottom: 5/710
  15994. }
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Canon Height",
  16000. height: math.unit(489, "feet"),
  16001. default: true
  16002. }
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16007. {
  16008. front: {
  16009. height: math.unit(6, "feet"),
  16010. weight: math.unit(150, "lb"),
  16011. name: "Front",
  16012. image: {
  16013. source: "./media/characters/mesmyriza/front.svg",
  16014. extra: 1541/1291,
  16015. bottom: 87/1628
  16016. }
  16017. },
  16018. foot: {
  16019. height: math.unit(6 / (250 / 35), "feet"),
  16020. name: "Foot",
  16021. image: {
  16022. source: "./media/characters/mesmyriza/foot.svg"
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Macro",
  16029. height: math.unit(457, "meters"),
  16030. default: true
  16031. },
  16032. {
  16033. name: "Megamacro",
  16034. height: math.unit(8, "megameters")
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(6, "feet"),
  16043. weight: math.unit(250, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/saudade/front.svg",
  16047. extra: 1172 / 1139,
  16048. bottom: 0.035
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Micro",
  16055. height: math.unit(3, "inches")
  16056. },
  16057. {
  16058. name: "Normal",
  16059. height: math.unit(6, "feet"),
  16060. default: true
  16061. },
  16062. {
  16063. name: "Macro",
  16064. height: math.unit(50, "feet")
  16065. },
  16066. {
  16067. name: "Megamacro",
  16068. height: math.unit(2800, "feet")
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(5 + 4 / 12, "feet"),
  16077. weight: math.unit(100, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/keireer/front.svg",
  16081. extra: 716 / 666,
  16082. bottom: 0.05
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(5 + 4 / 12, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16096. {
  16097. front: {
  16098. height: math.unit(5.5, "feet"),
  16099. weight: math.unit(90, "kg"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/mirja/front.svg",
  16103. extra: 1452/1262,
  16104. bottom: 67/1519
  16105. }
  16106. },
  16107. frontDressed: {
  16108. height: math.unit(5.5, "feet"),
  16109. weight: math.unit(90, "lb"),
  16110. name: "Front (Dressed)",
  16111. image: {
  16112. source: "./media/characters/mirja/dressed.svg",
  16113. extra: 1452/1262,
  16114. bottom: 67/1519
  16115. }
  16116. },
  16117. back: {
  16118. height: math.unit(6, "feet"),
  16119. weight: math.unit(90, "lb"),
  16120. name: "Back",
  16121. image: {
  16122. source: "./media/characters/mirja/back.svg",
  16123. extra: 1892/1795,
  16124. bottom: 48/1940
  16125. }
  16126. },
  16127. maw: {
  16128. height: math.unit(1.312, "feet"),
  16129. name: "Maw",
  16130. image: {
  16131. source: "./media/characters/mirja/maw.svg"
  16132. }
  16133. },
  16134. paw: {
  16135. height: math.unit(1.15, "feet"),
  16136. name: "Paw",
  16137. image: {
  16138. source: "./media/characters/mirja/paw.svg"
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "\"Incognito\"",
  16145. height: math.unit(3, "meters")
  16146. },
  16147. {
  16148. name: "Strolling Size",
  16149. height: math.unit(15, "km")
  16150. },
  16151. {
  16152. name: "Larger Strolling Size",
  16153. height: math.unit(400, "km")
  16154. },
  16155. {
  16156. name: "Preferred Size",
  16157. height: math.unit(5000, "km"),
  16158. default: true
  16159. },
  16160. {
  16161. name: "True Size",
  16162. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16168. {
  16169. front: {
  16170. height: math.unit(15, "feet"),
  16171. weight: math.unit(880, "kg"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/nightraver/front.svg",
  16175. extra: 2444 / 2160,
  16176. bottom: 0.027
  16177. }
  16178. },
  16179. back: {
  16180. height: math.unit(15, "feet"),
  16181. weight: math.unit(880, "kg"),
  16182. name: "Back",
  16183. image: {
  16184. source: "./media/characters/nightraver/back.svg",
  16185. extra: 2309 / 2180,
  16186. bottom: 0.005
  16187. }
  16188. },
  16189. sole: {
  16190. height: math.unit(2.878, "feet"),
  16191. name: "Sole",
  16192. image: {
  16193. source: "./media/characters/nightraver/sole.svg"
  16194. }
  16195. },
  16196. foot: {
  16197. height: math.unit(2.285, "feet"),
  16198. name: "Foot",
  16199. image: {
  16200. source: "./media/characters/nightraver/foot.svg"
  16201. }
  16202. },
  16203. maw: {
  16204. height: math.unit(2.67, "feet"),
  16205. name: "Maw",
  16206. image: {
  16207. source: "./media/characters/nightraver/maw.svg"
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Micro",
  16214. height: math.unit(1, "cm")
  16215. },
  16216. {
  16217. name: "Normal",
  16218. height: math.unit(15, "feet"),
  16219. default: true
  16220. },
  16221. {
  16222. name: "Macro",
  16223. height: math.unit(300, "feet")
  16224. },
  16225. {
  16226. name: "Megamacro",
  16227. height: math.unit(300, "miles")
  16228. },
  16229. {
  16230. name: "Gigamacro",
  16231. height: math.unit(10000, "miles")
  16232. },
  16233. ]
  16234. ))
  16235. characterMakers.push(() => makeCharacter(
  16236. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16237. {
  16238. side: {
  16239. height: math.unit(2, "inches"),
  16240. weight: math.unit(5, "grams"),
  16241. name: "Side",
  16242. image: {
  16243. source: "./media/characters/arc/side.svg"
  16244. }
  16245. },
  16246. },
  16247. [
  16248. {
  16249. name: "Micro",
  16250. height: math.unit(2, "inches"),
  16251. default: true
  16252. },
  16253. ]
  16254. ))
  16255. characterMakers.push(() => makeCharacter(
  16256. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16257. {
  16258. front: {
  16259. height: math.unit(1.1938, "meters"),
  16260. weight: math.unit(54, "kg"),
  16261. name: "Front",
  16262. image: {
  16263. source: "./media/characters/nebula-shahar/front.svg",
  16264. extra: 1642 / 1436,
  16265. bottom: 0.06
  16266. }
  16267. },
  16268. },
  16269. [
  16270. {
  16271. name: "Megamicro",
  16272. height: math.unit(0.3, "mm")
  16273. },
  16274. {
  16275. name: "Micro",
  16276. height: math.unit(3, "cm")
  16277. },
  16278. {
  16279. name: "Normal",
  16280. height: math.unit(138, "cm"),
  16281. default: true
  16282. },
  16283. {
  16284. name: "Macro",
  16285. height: math.unit(30, "m")
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(5.24, "feet"),
  16294. weight: math.unit(150, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/shayla/front.svg",
  16298. extra: 1512 / 1414,
  16299. bottom: 0.01
  16300. }
  16301. },
  16302. back: {
  16303. height: math.unit(5.24, "feet"),
  16304. weight: math.unit(150, "lb"),
  16305. name: "Back",
  16306. image: {
  16307. source: "./media/characters/shayla/back.svg",
  16308. extra: 1512 / 1414
  16309. }
  16310. },
  16311. hand: {
  16312. height: math.unit(0.7781496062992126, "feet"),
  16313. name: "Hand",
  16314. image: {
  16315. source: "./media/characters/shayla/hand.svg"
  16316. }
  16317. },
  16318. foot: {
  16319. height: math.unit(1.4206036745406823, "feet"),
  16320. name: "Foot",
  16321. image: {
  16322. source: "./media/characters/shayla/foot.svg"
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Micro",
  16329. height: math.unit(0.32, "feet")
  16330. },
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(5.24, "feet"),
  16334. default: true
  16335. },
  16336. {
  16337. name: "Macro",
  16338. height: math.unit(492.12, "feet")
  16339. },
  16340. {
  16341. name: "Megamacro",
  16342. height: math.unit(186.41, "miles")
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(2.2, "m"),
  16351. weight: math.unit(120, "kg"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/pia-jr/front.svg",
  16355. extra: 1000 / 970,
  16356. bottom: 0.035
  16357. }
  16358. },
  16359. hand: {
  16360. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16361. name: "Hand",
  16362. image: {
  16363. source: "./media/characters/pia-jr/hand.svg"
  16364. }
  16365. },
  16366. paw: {
  16367. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16368. name: "Paw",
  16369. image: {
  16370. source: "./media/characters/pia-jr/paw.svg"
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Micro",
  16377. height: math.unit(1.2, "cm")
  16378. },
  16379. {
  16380. name: "Normal",
  16381. height: math.unit(2.2, "m"),
  16382. default: true
  16383. },
  16384. {
  16385. name: "Macro",
  16386. height: math.unit(180, "m")
  16387. },
  16388. {
  16389. name: "Megamacro",
  16390. height: math.unit(420, "km")
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(2, "m"),
  16399. weight: math.unit(115, "kg"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/pia-sr/front.svg",
  16403. extra: 760 / 730,
  16404. bottom: 0.015
  16405. }
  16406. },
  16407. back: {
  16408. height: math.unit(2, "m"),
  16409. weight: math.unit(115, "kg"),
  16410. name: "Back",
  16411. image: {
  16412. source: "./media/characters/pia-sr/back.svg",
  16413. extra: 760 / 730,
  16414. bottom: 0.01
  16415. }
  16416. },
  16417. hand: {
  16418. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16419. name: "Hand",
  16420. image: {
  16421. source: "./media/characters/pia-sr/hand.svg"
  16422. }
  16423. },
  16424. foot: {
  16425. height: math.unit(1.83, "feet"),
  16426. name: "Foot",
  16427. image: {
  16428. source: "./media/characters/pia-sr/foot.svg"
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Micro",
  16435. height: math.unit(88, "mm")
  16436. },
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(2, "m"),
  16440. default: true
  16441. },
  16442. {
  16443. name: "Macro",
  16444. height: math.unit(200, "m")
  16445. },
  16446. {
  16447. name: "Megamacro",
  16448. height: math.unit(420, "km")
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16454. {
  16455. front: {
  16456. height: math.unit(8 + 2 / 12, "feet"),
  16457. weight: math.unit(300, "lb"),
  16458. name: "Front",
  16459. image: {
  16460. source: "./media/characters/kibibyte/front.svg",
  16461. extra: 2221 / 2098,
  16462. bottom: 0.04
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Normal",
  16469. height: math.unit(8 + 2 / 12, "feet"),
  16470. default: true
  16471. },
  16472. {
  16473. name: "Socialable Macro",
  16474. height: math.unit(50, "feet")
  16475. },
  16476. {
  16477. name: "Macro",
  16478. height: math.unit(300, "feet")
  16479. },
  16480. {
  16481. name: "Megamacro",
  16482. height: math.unit(500, "miles")
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16488. {
  16489. front: {
  16490. height: math.unit(6, "feet"),
  16491. weight: math.unit(150, "lb"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/felix/front.svg",
  16495. extra: 762 / 722,
  16496. bottom: 0.02
  16497. }
  16498. },
  16499. frontClothed: {
  16500. height: math.unit(6, "feet"),
  16501. weight: math.unit(150, "lb"),
  16502. name: "Front (Clothed)",
  16503. image: {
  16504. source: "./media/characters/felix/front-clothed.svg",
  16505. extra: 762 / 722,
  16506. bottom: 0.02
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(6 + 8 / 12, "feet"),
  16514. default: true
  16515. },
  16516. {
  16517. name: "Macro",
  16518. height: math.unit(2600, "feet")
  16519. },
  16520. {
  16521. name: "Megamacro",
  16522. height: math.unit(450, "miles")
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(6 + 1 / 12, "feet"),
  16531. weight: math.unit(250, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/tobo/front.svg",
  16535. extra: 608 / 586,
  16536. bottom: 0.023
  16537. }
  16538. },
  16539. back: {
  16540. height: math.unit(6 + 1 / 12, "feet"),
  16541. weight: math.unit(250, "lb"),
  16542. name: "Back",
  16543. image: {
  16544. source: "./media/characters/tobo/back.svg",
  16545. extra: 608 / 586
  16546. }
  16547. },
  16548. },
  16549. [
  16550. {
  16551. name: "Nano",
  16552. height: math.unit(2, "nm")
  16553. },
  16554. {
  16555. name: "Megamicro",
  16556. height: math.unit(0.1, "mm")
  16557. },
  16558. {
  16559. name: "Micro",
  16560. height: math.unit(1, "inch"),
  16561. default: true
  16562. },
  16563. {
  16564. name: "Human-sized",
  16565. height: math.unit(6 + 1 / 12, "feet")
  16566. },
  16567. {
  16568. name: "Macro",
  16569. height: math.unit(250, "feet")
  16570. },
  16571. {
  16572. name: "Megamacro",
  16573. height: math.unit(75, "miles")
  16574. },
  16575. {
  16576. name: "Texas-sized",
  16577. height: math.unit(750, "miles")
  16578. },
  16579. {
  16580. name: "Teramacro",
  16581. height: math.unit(50000, "miles")
  16582. },
  16583. ]
  16584. ))
  16585. characterMakers.push(() => makeCharacter(
  16586. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16587. {
  16588. front: {
  16589. height: math.unit(6, "feet"),
  16590. weight: math.unit(269, "lb"),
  16591. name: "Front",
  16592. image: {
  16593. source: "./media/characters/danny-kapowsky/front.svg",
  16594. extra: 766 / 736,
  16595. bottom: 0.044
  16596. }
  16597. },
  16598. back: {
  16599. height: math.unit(6, "feet"),
  16600. weight: math.unit(269, "lb"),
  16601. name: "Back",
  16602. image: {
  16603. source: "./media/characters/danny-kapowsky/back.svg",
  16604. extra: 797 / 760,
  16605. bottom: 0.025
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Macro",
  16612. height: math.unit(150, "feet"),
  16613. default: true
  16614. },
  16615. {
  16616. name: "Macro+",
  16617. height: math.unit(200, "feet")
  16618. },
  16619. {
  16620. name: "Macro++",
  16621. height: math.unit(300, "feet")
  16622. },
  16623. {
  16624. name: "Macro+++",
  16625. height: math.unit(400, "feet")
  16626. },
  16627. ]
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16631. {
  16632. side: {
  16633. height: math.unit(6, "feet"),
  16634. weight: math.unit(170, "lb"),
  16635. name: "Side",
  16636. image: {
  16637. source: "./media/characters/finn/side.svg",
  16638. extra: 1953 / 1807,
  16639. bottom: 0.057
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Megamacro",
  16646. height: math.unit(14445, "feet"),
  16647. default: true
  16648. },
  16649. ]
  16650. ))
  16651. characterMakers.push(() => makeCharacter(
  16652. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16653. {
  16654. front: {
  16655. height: math.unit(5 + 6 / 12, "feet"),
  16656. weight: math.unit(125, "lb"),
  16657. name: "Front",
  16658. image: {
  16659. source: "./media/characters/roy/front.svg",
  16660. extra: 1,
  16661. bottom: 0.11
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Micro",
  16668. height: math.unit(3, "inches"),
  16669. default: true
  16670. },
  16671. {
  16672. name: "Normal",
  16673. height: math.unit(5 + 6 / 12, "feet")
  16674. },
  16675. {
  16676. name: "Lesser Macro",
  16677. height: math.unit(60, "feet")
  16678. },
  16679. {
  16680. name: "Greater Macro",
  16681. height: math.unit(120, "feet")
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(6, "feet"),
  16690. weight: math.unit(100, "lb"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/aevsivs/front.svg",
  16694. extra: 1,
  16695. bottom: 0.03
  16696. }
  16697. },
  16698. back: {
  16699. height: math.unit(6, "feet"),
  16700. weight: math.unit(100, "lb"),
  16701. name: "Back",
  16702. image: {
  16703. source: "./media/characters/aevsivs/back.svg"
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Micro",
  16710. height: math.unit(2, "inches"),
  16711. default: true
  16712. },
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(5, "feet")
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(5 + 7 / 12, "feet"),
  16724. weight: math.unit(159, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/hildegard/front.svg",
  16728. extra: 289 / 269,
  16729. bottom: 7.63 / 297.8
  16730. }
  16731. },
  16732. back: {
  16733. height: math.unit(5 + 7 / 12, "feet"),
  16734. weight: math.unit(159, "lb"),
  16735. name: "Back",
  16736. image: {
  16737. source: "./media/characters/hildegard/back.svg",
  16738. extra: 280 / 260,
  16739. bottom: 2.3 / 282
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(5 + 7 / 12, "feet"),
  16747. default: true
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16753. {
  16754. bernard: {
  16755. height: math.unit(2 + 7 / 12, "feet"),
  16756. weight: math.unit(66, "lb"),
  16757. name: "Bernard",
  16758. rename: true,
  16759. image: {
  16760. source: "./media/characters/bernard-wilder/bernard.svg",
  16761. extra: 192 / 128,
  16762. bottom: 0.05
  16763. }
  16764. },
  16765. wilder: {
  16766. height: math.unit(5 + 8 / 12, "feet"),
  16767. weight: math.unit(143, "lb"),
  16768. name: "Wilder",
  16769. rename: true,
  16770. image: {
  16771. source: "./media/characters/bernard-wilder/wilder.svg",
  16772. extra: 361 / 312,
  16773. bottom: 0.02
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(2 + 7 / 12, "feet"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16787. {
  16788. anthro: {
  16789. height: math.unit(6 + 1 / 12, "feet"),
  16790. weight: math.unit(155, "lb"),
  16791. name: "Anthro",
  16792. image: {
  16793. source: "./media/characters/hearth/anthro.svg",
  16794. extra: 1178/1136,
  16795. bottom: 28/1206
  16796. }
  16797. },
  16798. feral: {
  16799. height: math.unit(3.78, "feet"),
  16800. weight: math.unit(35, "kg"),
  16801. name: "Feral",
  16802. image: {
  16803. source: "./media/characters/hearth/feral.svg",
  16804. extra: 153 / 135,
  16805. bottom: 0.03
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Normal",
  16812. height: math.unit(6 + 1 / 12, "feet"),
  16813. default: true
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(6, "feet"),
  16822. weight: math.unit(182, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/ingrid/front.svg",
  16826. extra: 294 / 268,
  16827. bottom: 0.027
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(6, "feet"),
  16835. default: true
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16841. {
  16842. eevee: {
  16843. height: math.unit(2 + 10 / 12, "feet"),
  16844. weight: math.unit(86, "lb"),
  16845. name: "Malgam",
  16846. image: {
  16847. source: "./media/characters/malgam/eevee.svg",
  16848. extra: 952/784,
  16849. bottom: 38/990
  16850. }
  16851. },
  16852. sylveon: {
  16853. height: math.unit(4, "feet"),
  16854. weight: math.unit(101, "lb"),
  16855. name: "Future Malgam",
  16856. rename: true,
  16857. image: {
  16858. source: "./media/characters/malgam/sylveon.svg",
  16859. extra: 371 / 325,
  16860. bottom: 0.015
  16861. }
  16862. },
  16863. gigantamax: {
  16864. height: math.unit(50, "feet"),
  16865. name: "Gigantamax Malgam",
  16866. rename: true,
  16867. image: {
  16868. source: "./media/characters/malgam/gigantamax.svg"
  16869. }
  16870. },
  16871. },
  16872. [
  16873. {
  16874. name: "Normal",
  16875. height: math.unit(2 + 10 / 12, "feet"),
  16876. default: true
  16877. },
  16878. ]
  16879. ))
  16880. characterMakers.push(() => makeCharacter(
  16881. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16882. {
  16883. front: {
  16884. height: math.unit(5 + 11 / 12, "feet"),
  16885. weight: math.unit(188, "lb"),
  16886. name: "Front",
  16887. image: {
  16888. source: "./media/characters/fleur/front.svg",
  16889. extra: 309 / 283,
  16890. bottom: 0.007
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(5 + 11 / 12, "feet"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16904. {
  16905. front: {
  16906. height: math.unit(5 + 4 / 12, "feet"),
  16907. weight: math.unit(122, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/jude/front.svg",
  16911. extra: 288 / 273,
  16912. bottom: 0.03
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(5 + 4 / 12, "feet"),
  16920. default: true
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16926. {
  16927. front: {
  16928. height: math.unit(5 + 11 / 12, "feet"),
  16929. weight: math.unit(190, "lb"),
  16930. name: "Front",
  16931. image: {
  16932. source: "./media/characters/seara/front.svg",
  16933. extra: 1,
  16934. bottom: 0.05
  16935. }
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Normal",
  16941. height: math.unit(5 + 11 / 12, "feet"),
  16942. default: true
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16948. {
  16949. front: {
  16950. height: math.unit(16 + 5 / 12, "feet"),
  16951. weight: math.unit(524, "lb"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/caspian-lugia/front.svg",
  16955. extra: 1,
  16956. bottom: 0.04
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Normal",
  16963. height: math.unit(16 + 5 / 12, "feet"),
  16964. default: true
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16970. {
  16971. front: {
  16972. height: math.unit(5 + 7 / 12, "feet"),
  16973. weight: math.unit(170, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/mika/front.svg",
  16977. extra: 1,
  16978. bottom: 0.016
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(5 + 7 / 12, "feet"),
  16986. default: true
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16992. {
  16993. front: {
  16994. height: math.unit(6 + 2 / 12, "feet"),
  16995. weight: math.unit(268, "lb"),
  16996. name: "Front",
  16997. image: {
  16998. source: "./media/characters/sol/front.svg",
  16999. extra: 247 / 231,
  17000. bottom: 0.05
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(6 + 2 / 12, "feet"),
  17008. default: true
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17014. {
  17015. buizel: {
  17016. height: math.unit(2 + 5 / 12, "feet"),
  17017. weight: math.unit(87, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/umiko/buizel.svg",
  17021. extra: 172 / 157,
  17022. bottom: 0.01
  17023. },
  17024. form: "buizel",
  17025. default: true
  17026. },
  17027. floatzel: {
  17028. height: math.unit(5 + 9 / 12, "feet"),
  17029. weight: math.unit(250, "lb"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/umiko/floatzel.svg",
  17033. extra: 1076/1006,
  17034. bottom: 15/1091
  17035. },
  17036. form: "floatzel",
  17037. default: true
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(2 + 5 / 12, "feet"),
  17044. form: "buizel",
  17045. default: true
  17046. },
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(5 + 9 / 12, "feet"),
  17050. form: "floatzel",
  17051. default: true
  17052. },
  17053. ],
  17054. {
  17055. "buizel": {
  17056. name: "Buizel"
  17057. },
  17058. "floatzel": {
  17059. name: "Floatzel",
  17060. default: true
  17061. }
  17062. }
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17066. {
  17067. front: {
  17068. height: math.unit(6 + 2 / 12, "feet"),
  17069. weight: math.unit(146, "lb"),
  17070. name: "Front",
  17071. image: {
  17072. source: "./media/characters/iliac/front.svg",
  17073. extra: 389 / 365,
  17074. bottom: 0.035
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(6 + 2 / 12, "feet"),
  17082. default: true
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(6, "feet"),
  17091. weight: math.unit(170, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/topaz/front.svg",
  17095. extra: 317 / 303,
  17096. bottom: 0.055
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(6, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(5 + 11 / 12, "feet"),
  17113. weight: math.unit(144, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/gabriel/front.svg",
  17117. extra: 285 / 262,
  17118. bottom: 0.004
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(5 + 11 / 12, "feet"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17132. {
  17133. side: {
  17134. height: math.unit(6 + 5 / 12, "feet"),
  17135. weight: math.unit(300, "lb"),
  17136. name: "Side",
  17137. image: {
  17138. source: "./media/characters/tempest-suicune/side.svg",
  17139. extra: 195 / 154,
  17140. bottom: 0.04
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(6 + 5 / 12, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(7 + 2 / 12, "feet"),
  17157. weight: math.unit(322, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/vulcan/front.svg",
  17161. extra: 154 / 147,
  17162. bottom: 0.04
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(7 + 2 / 12, "feet"),
  17170. default: true
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17176. {
  17177. front: {
  17178. height: math.unit(5 + 10 / 12, "feet"),
  17179. weight: math.unit(264, "lb"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/gault/front.svg",
  17183. extra: 161 / 140,
  17184. bottom: 0.028
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(5 + 10 / 12, "feet"),
  17192. default: true
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17198. {
  17199. front: {
  17200. height: math.unit(6, "feet"),
  17201. weight: math.unit(150, "lb"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/shard/front.svg",
  17205. extra: 273 / 238,
  17206. bottom: 0.02
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(3 + 6 / 12, "feet"),
  17214. default: true
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17220. {
  17221. front: {
  17222. height: math.unit(5 + 11 / 12, "feet"),
  17223. weight: math.unit(146, "lb"),
  17224. name: "Front",
  17225. image: {
  17226. source: "./media/characters/ashe/front.svg",
  17227. extra: 400 / 373,
  17228. bottom: 0.01
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(5 + 11 / 12, "feet"),
  17236. default: true
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17242. {
  17243. front: {
  17244. height: math.unit(5 + 5 / 12, "feet"),
  17245. weight: math.unit(135, "lb"),
  17246. name: "Front",
  17247. image: {
  17248. source: "./media/characters/beatrix/front.svg",
  17249. extra: 392 / 379,
  17250. bottom: 0.01
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(6, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17264. {
  17265. front: {
  17266. height: math.unit(6 + 2/12, "feet"),
  17267. weight: math.unit(135, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/ignatius/front.svg",
  17271. extra: 1380/1259,
  17272. bottom: 27/1407
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(6 + 2/12, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(6 + 2 / 12, "feet"),
  17289. weight: math.unit(138, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/mei-li/front.svg",
  17293. extra: 237 / 229,
  17294. bottom: 0.03
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(6 + 2 / 12, "feet"),
  17302. default: true
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17308. {
  17309. front: {
  17310. height: math.unit(2 + 4 / 12, "feet"),
  17311. weight: math.unit(62, "lb"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/puru/front.svg",
  17315. extra: 206 / 149,
  17316. bottom: 0.06
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(2 + 4 / 12, "feet"),
  17324. default: true
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17330. {
  17331. anthro: {
  17332. height: math.unit(5 + 8/12, "feet"),
  17333. weight: math.unit(200, "lb"),
  17334. energyNeed: math.unit(2000, "kcal"),
  17335. name: "Anthro",
  17336. image: {
  17337. source: "./media/characters/kee/anthro.svg",
  17338. extra: 3251/3184,
  17339. bottom: 250/3501
  17340. }
  17341. },
  17342. taur: {
  17343. height: math.unit(11, "feet"),
  17344. weight: math.unit(500, "lb"),
  17345. energyNeed: math.unit(5000, "kcal"),
  17346. name: "Taur",
  17347. image: {
  17348. source: "./media/characters/kee/taur.svg",
  17349. extra: 1362/1320,
  17350. bottom: 83/1445
  17351. }
  17352. },
  17353. },
  17354. [
  17355. {
  17356. name: "Normal",
  17357. height: math.unit(5 + 8/12, "feet"),
  17358. default: true
  17359. },
  17360. {
  17361. name: "Macro",
  17362. height: math.unit(35, "feet")
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17368. {
  17369. anthro: {
  17370. height: math.unit(7, "feet"),
  17371. weight: math.unit(190, "lb"),
  17372. name: "Anthro",
  17373. image: {
  17374. source: "./media/characters/cobalt-dracha/anthro.svg",
  17375. extra: 231 / 225,
  17376. bottom: 0.04
  17377. }
  17378. },
  17379. feral: {
  17380. height: math.unit(9 + 7 / 12, "feet"),
  17381. weight: math.unit(294, "lb"),
  17382. name: "Feral",
  17383. image: {
  17384. source: "./media/characters/cobalt-dracha/feral.svg",
  17385. extra: 692 / 633,
  17386. bottom: 0.05
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(7, "feet"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17400. {
  17401. fallen: {
  17402. height: math.unit(11 + 8 / 12, "feet"),
  17403. weight: math.unit(485, "lb"),
  17404. name: "Java (Fallen)",
  17405. rename: true,
  17406. image: {
  17407. source: "./media/characters/java/fallen.svg",
  17408. extra: 226 / 208,
  17409. bottom: 0.005
  17410. }
  17411. },
  17412. godkin: {
  17413. height: math.unit(10 + 6 / 12, "feet"),
  17414. weight: math.unit(328, "lb"),
  17415. name: "Java (Godkin)",
  17416. rename: true,
  17417. image: {
  17418. source: "./media/characters/java/godkin.svg",
  17419. extra: 1104/1068,
  17420. bottom: 36/1140
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(11 + 8 / 12, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(5 + 9 / 12, "feet"),
  17437. weight: math.unit(170, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/purna/front.svg",
  17441. extra: 239 / 229,
  17442. bottom: 0.01
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(5 + 9 / 12, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17456. {
  17457. front: {
  17458. height: math.unit(5 + 9 / 12, "feet"),
  17459. weight: math.unit(142, "lb"),
  17460. name: "Front",
  17461. image: {
  17462. source: "./media/characters/kuva/front.svg",
  17463. extra: 281 / 271,
  17464. bottom: 0.006
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(5 + 9 / 12, "feet"),
  17472. default: true
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17478. {
  17479. anthro: {
  17480. height: math.unit(9 + 2 / 12, "feet"),
  17481. weight: math.unit(270, "lb"),
  17482. name: "Anthro",
  17483. image: {
  17484. source: "./media/characters/embra/anthro.svg",
  17485. extra: 200 / 187,
  17486. bottom: 0.02
  17487. }
  17488. },
  17489. feral: {
  17490. height: math.unit(18 + 8 / 12, "feet"),
  17491. weight: math.unit(576, "lb"),
  17492. name: "Feral",
  17493. image: {
  17494. source: "./media/characters/embra/feral.svg",
  17495. extra: 152 / 137,
  17496. bottom: 0.037
  17497. }
  17498. },
  17499. },
  17500. [
  17501. {
  17502. name: "Normal",
  17503. height: math.unit(9 + 2 / 12, "feet"),
  17504. default: true
  17505. },
  17506. ]
  17507. ))
  17508. characterMakers.push(() => makeCharacter(
  17509. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17510. {
  17511. anthro: {
  17512. height: math.unit(10 + 9 / 12, "feet"),
  17513. weight: math.unit(224, "lb"),
  17514. name: "Anthro",
  17515. image: {
  17516. source: "./media/characters/grottos/anthro.svg",
  17517. extra: 350 / 332,
  17518. bottom: 0.045
  17519. }
  17520. },
  17521. feral: {
  17522. height: math.unit(20 + 7 / 12, "feet"),
  17523. weight: math.unit(629, "lb"),
  17524. name: "Feral",
  17525. image: {
  17526. source: "./media/characters/grottos/feral.svg",
  17527. extra: 207 / 190,
  17528. bottom: 0.05
  17529. }
  17530. },
  17531. },
  17532. [
  17533. {
  17534. name: "Normal",
  17535. height: math.unit(10 + 9 / 12, "feet"),
  17536. default: true
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17542. {
  17543. anthro: {
  17544. height: math.unit(9 + 6 / 12, "feet"),
  17545. weight: math.unit(298, "lb"),
  17546. name: "Anthro",
  17547. image: {
  17548. source: "./media/characters/frifna/anthro.svg",
  17549. extra: 282 / 269,
  17550. bottom: 0.015
  17551. }
  17552. },
  17553. feral: {
  17554. height: math.unit(16 + 2 / 12, "feet"),
  17555. weight: math.unit(624, "lb"),
  17556. name: "Feral",
  17557. image: {
  17558. source: "./media/characters/frifna/feral.svg"
  17559. }
  17560. },
  17561. },
  17562. [
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(9 + 6 / 12, "feet"),
  17566. default: true
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(6 + 2 / 12, "feet"),
  17575. weight: math.unit(168, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/elise/front.svg",
  17579. extra: 276 / 271
  17580. }
  17581. },
  17582. },
  17583. [
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(6 + 2 / 12, "feet"),
  17587. default: true
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(5 + 10 / 12, "feet"),
  17596. weight: math.unit(210, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/glade/front.svg",
  17600. extra: 258 / 247,
  17601. bottom: 0.008
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(5 + 10 / 12, "feet"),
  17609. default: true
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17615. {
  17616. front: {
  17617. height: math.unit(5 + 10 / 12, "feet"),
  17618. weight: math.unit(129, "lb"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/rina/front.svg",
  17622. extra: 266 / 255,
  17623. bottom: 0.005
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Normal",
  17630. height: math.unit(5 + 10 / 12, "feet"),
  17631. default: true
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17637. {
  17638. front: {
  17639. height: math.unit(6 + 1 / 12, "feet"),
  17640. weight: math.unit(192, "lb"),
  17641. name: "Front",
  17642. image: {
  17643. source: "./media/characters/veronica/front.svg",
  17644. extra: 319 / 309,
  17645. bottom: 0.005
  17646. }
  17647. },
  17648. },
  17649. [
  17650. {
  17651. name: "Normal",
  17652. height: math.unit(6 + 1 / 12, "feet"),
  17653. default: true
  17654. },
  17655. ]
  17656. ))
  17657. characterMakers.push(() => makeCharacter(
  17658. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17659. {
  17660. front: {
  17661. height: math.unit(9 + 3 / 12, "feet"),
  17662. weight: math.unit(1100, "lb"),
  17663. name: "Front",
  17664. image: {
  17665. source: "./media/characters/braxton/front.svg",
  17666. extra: 1057 / 984,
  17667. bottom: 0.05
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Normal",
  17674. height: math.unit(9 + 3 / 12, "feet")
  17675. },
  17676. {
  17677. name: "Giant",
  17678. height: math.unit(300, "feet"),
  17679. default: true
  17680. },
  17681. {
  17682. name: "Macro",
  17683. height: math.unit(700, "feet")
  17684. },
  17685. {
  17686. name: "Megamacro",
  17687. height: math.unit(6000, "feet")
  17688. },
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17693. {
  17694. front: {
  17695. height: math.unit(6 + 7 / 12, "feet"),
  17696. weight: math.unit(150, "lb"),
  17697. name: "Front",
  17698. image: {
  17699. source: "./media/characters/blue-feyonics/front.svg",
  17700. extra: 1403 / 1306,
  17701. bottom: 0.047
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(6 + 7 / 12, "feet"),
  17709. default: true
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17715. {
  17716. front: {
  17717. height: math.unit(1.8, "meters"),
  17718. weight: math.unit(60, "kg"),
  17719. name: "Front",
  17720. image: {
  17721. source: "./media/characters/maxwell/front.svg",
  17722. extra: 2060 / 1873
  17723. }
  17724. },
  17725. },
  17726. [
  17727. {
  17728. name: "Micro",
  17729. height: math.unit(1, "mm")
  17730. },
  17731. {
  17732. name: "Normal",
  17733. height: math.unit(1.8, "meter"),
  17734. default: true
  17735. },
  17736. {
  17737. name: "Macro",
  17738. height: math.unit(30, "meters")
  17739. },
  17740. {
  17741. name: "Megamacro",
  17742. height: math.unit(10, "km")
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17748. {
  17749. front: {
  17750. height: math.unit(6, "feet"),
  17751. weight: math.unit(150, "lb"),
  17752. name: "Front",
  17753. image: {
  17754. source: "./media/characters/jack/front.svg",
  17755. extra: 1754 / 1640,
  17756. bottom: 0.01
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(80000, "feet"),
  17764. default: true
  17765. },
  17766. {
  17767. name: "Max size",
  17768. height: math.unit(10, "lightyears")
  17769. },
  17770. ]
  17771. ))
  17772. characterMakers.push(() => makeCharacter(
  17773. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17774. {
  17775. urban: {
  17776. height: math.unit(5, "feet"),
  17777. weight: math.unit(240, "lb"),
  17778. name: "Urban",
  17779. image: {
  17780. source: "./media/characters/cafat/urban.svg",
  17781. extra: 1223/1126,
  17782. bottom: 205/1428
  17783. }
  17784. },
  17785. summer: {
  17786. height: math.unit(5, "feet"),
  17787. weight: math.unit(240, "lb"),
  17788. name: "Summer",
  17789. image: {
  17790. source: "./media/characters/cafat/summer.svg",
  17791. extra: 1223/1126,
  17792. bottom: 205/1428
  17793. }
  17794. },
  17795. winter: {
  17796. height: math.unit(5, "feet"),
  17797. weight: math.unit(240, "lb"),
  17798. name: "Winter",
  17799. image: {
  17800. source: "./media/characters/cafat/winter.svg",
  17801. extra: 1223/1126,
  17802. bottom: 205/1428
  17803. }
  17804. },
  17805. lingerie: {
  17806. height: math.unit(5, "feet"),
  17807. weight: math.unit(240, "lb"),
  17808. name: "Lingerie",
  17809. image: {
  17810. source: "./media/characters/cafat/lingerie.svg",
  17811. extra: 1223/1126,
  17812. bottom: 205/1428
  17813. }
  17814. },
  17815. upright: {
  17816. height: math.unit(6.3, "feet"),
  17817. weight: math.unit(240, "lb"),
  17818. name: "Upright",
  17819. image: {
  17820. source: "./media/characters/cafat/upright.svg",
  17821. bottom: 0.01
  17822. }
  17823. },
  17824. uprightFull: {
  17825. height: math.unit(6.3, "feet"),
  17826. weight: math.unit(240, "lb"),
  17827. name: "Upright (Full)",
  17828. image: {
  17829. source: "./media/characters/cafat/upright-full.svg",
  17830. bottom: 0.01
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Small",
  17837. height: math.unit(5, "feet"),
  17838. default: true
  17839. },
  17840. {
  17841. name: "Large",
  17842. height: math.unit(13, "feet")
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(6, "feet"),
  17851. weight: math.unit(150, "lb"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/verin-raharra/front.svg",
  17855. extra: 5019 / 4835,
  17856. bottom: 0.023
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(7 + 5 / 12, "feet"),
  17864. default: true
  17865. },
  17866. {
  17867. name: "Upsized",
  17868. height: math.unit(20, "feet")
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17874. {
  17875. front: {
  17876. height: math.unit(7, "feet"),
  17877. weight: math.unit(230, "lb"),
  17878. name: "Front",
  17879. image: {
  17880. source: "./media/characters/nakata/front.svg",
  17881. extra: 1.005,
  17882. bottom: 0.01
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(7, "feet"),
  17890. default: true
  17891. },
  17892. {
  17893. name: "Big",
  17894. height: math.unit(14, "feet")
  17895. },
  17896. {
  17897. name: "Macro",
  17898. height: math.unit(400, "feet")
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(4.91, "feet"),
  17907. weight: math.unit(100, "lb"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/lily/front.svg",
  17911. extra: 1585 / 1415,
  17912. bottom: 0.02
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(4.91, "feet"),
  17920. default: true
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17926. {
  17927. laying: {
  17928. height: math.unit(4 + 4 / 12, "feet"),
  17929. weight: math.unit(600, "lb"),
  17930. name: "Laying",
  17931. image: {
  17932. source: "./media/characters/sheila/laying.svg",
  17933. extra: 1333 / 1265,
  17934. bottom: 0.16
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(4 + 4 / 12, "feet"),
  17942. default: true
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17948. {
  17949. front: {
  17950. height: math.unit(6, "feet"),
  17951. weight: math.unit(190, "lb"),
  17952. name: "Front",
  17953. image: {
  17954. source: "./media/characters/sax/front.svg",
  17955. extra: 1187 / 973,
  17956. bottom: 0.042
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Micro",
  17963. height: math.unit(4, "inches"),
  17964. default: true
  17965. },
  17966. ]
  17967. ))
  17968. characterMakers.push(() => makeCharacter(
  17969. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17970. {
  17971. front: {
  17972. height: math.unit(6, "feet"),
  17973. weight: math.unit(150, "lb"),
  17974. name: "Front",
  17975. image: {
  17976. source: "./media/characters/pandora/front.svg",
  17977. extra: 2720 / 2556,
  17978. bottom: 0.015
  17979. }
  17980. },
  17981. back: {
  17982. height: math.unit(6, "feet"),
  17983. weight: math.unit(150, "lb"),
  17984. name: "Back",
  17985. image: {
  17986. source: "./media/characters/pandora/back.svg",
  17987. extra: 2720 / 2556,
  17988. bottom: 0.01
  17989. }
  17990. },
  17991. beans: {
  17992. height: math.unit(6 / 8, "feet"),
  17993. name: "Beans",
  17994. image: {
  17995. source: "./media/characters/pandora/beans.svg"
  17996. }
  17997. },
  17998. collar: {
  17999. height: math.unit(0.31, "feet"),
  18000. name: "Collar",
  18001. image: {
  18002. source: "./media/characters/pandora/collar.svg"
  18003. }
  18004. },
  18005. skirt: {
  18006. height: math.unit(6, "feet"),
  18007. weight: math.unit(150, "lb"),
  18008. name: "Skirt",
  18009. image: {
  18010. source: "./media/characters/pandora/skirt.svg",
  18011. extra: 1622 / 1525,
  18012. bottom: 0.015
  18013. }
  18014. },
  18015. hoodie: {
  18016. height: math.unit(6, "feet"),
  18017. weight: math.unit(150, "lb"),
  18018. name: "Hoodie",
  18019. image: {
  18020. source: "./media/characters/pandora/hoodie.svg",
  18021. extra: 1622 / 1525,
  18022. bottom: 0.015
  18023. }
  18024. },
  18025. casual: {
  18026. height: math.unit(6, "feet"),
  18027. weight: math.unit(150, "lb"),
  18028. name: "Casual",
  18029. image: {
  18030. source: "./media/characters/pandora/casual.svg",
  18031. extra: 1622 / 1525,
  18032. bottom: 0.015
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Normal",
  18039. height: math.unit(6, "feet")
  18040. },
  18041. {
  18042. name: "Big Steppy",
  18043. height: math.unit(1, "km"),
  18044. default: true
  18045. },
  18046. {
  18047. name: "Galactic Steppy",
  18048. height: math.unit(2, "gigameters")
  18049. },
  18050. ]
  18051. ))
  18052. characterMakers.push(() => makeCharacter(
  18053. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18054. {
  18055. side: {
  18056. height: math.unit(10, "feet"),
  18057. weight: math.unit(800, "kg"),
  18058. name: "Side",
  18059. image: {
  18060. source: "./media/characters/venio-darcony/side.svg",
  18061. extra: 1373 / 1003,
  18062. bottom: 0.037
  18063. }
  18064. },
  18065. front: {
  18066. height: math.unit(19, "feet"),
  18067. weight: math.unit(800, "kg"),
  18068. name: "Front",
  18069. image: {
  18070. source: "./media/characters/venio-darcony/front.svg"
  18071. }
  18072. },
  18073. back: {
  18074. height: math.unit(19, "feet"),
  18075. weight: math.unit(800, "kg"),
  18076. name: "Back",
  18077. image: {
  18078. source: "./media/characters/venio-darcony/back.svg"
  18079. }
  18080. },
  18081. sideNsfw: {
  18082. height: math.unit(10, "feet"),
  18083. weight: math.unit(800, "kg"),
  18084. name: "Side (NSFW)",
  18085. image: {
  18086. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18087. extra: 1373 / 1003,
  18088. bottom: 0.037
  18089. }
  18090. },
  18091. frontNsfw: {
  18092. height: math.unit(19, "feet"),
  18093. weight: math.unit(800, "kg"),
  18094. name: "Front (NSFW)",
  18095. image: {
  18096. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18097. }
  18098. },
  18099. backNsfw: {
  18100. height: math.unit(19, "feet"),
  18101. weight: math.unit(800, "kg"),
  18102. name: "Back (NSFW)",
  18103. image: {
  18104. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18105. }
  18106. },
  18107. sideArmored: {
  18108. height: math.unit(10, "feet"),
  18109. weight: math.unit(800, "kg"),
  18110. name: "Side (Armored)",
  18111. image: {
  18112. source: "./media/characters/venio-darcony/side-armored.svg",
  18113. extra: 1373 / 1003,
  18114. bottom: 0.037
  18115. }
  18116. },
  18117. frontArmored: {
  18118. height: math.unit(19, "feet"),
  18119. weight: math.unit(900, "kg"),
  18120. name: "Front (Armored)",
  18121. image: {
  18122. source: "./media/characters/venio-darcony/front-armored.svg"
  18123. }
  18124. },
  18125. backArmored: {
  18126. height: math.unit(19, "feet"),
  18127. weight: math.unit(900, "kg"),
  18128. name: "Back (Armored)",
  18129. image: {
  18130. source: "./media/characters/venio-darcony/back-armored.svg"
  18131. }
  18132. },
  18133. sword: {
  18134. height: math.unit(10, "feet"),
  18135. weight: math.unit(50, "lb"),
  18136. name: "Sword",
  18137. image: {
  18138. source: "./media/characters/venio-darcony/sword.svg"
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Normal",
  18145. height: math.unit(10, "feet")
  18146. },
  18147. {
  18148. name: "Macro",
  18149. height: math.unit(130, "feet"),
  18150. default: true
  18151. },
  18152. {
  18153. name: "Macro+",
  18154. height: math.unit(240, "feet")
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(6, "feet"),
  18163. weight: math.unit(150, "lb"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/veski/front.svg",
  18167. extra: 1299 / 1225,
  18168. bottom: 0.04
  18169. }
  18170. },
  18171. back: {
  18172. height: math.unit(6, "feet"),
  18173. weight: math.unit(150, "lb"),
  18174. name: "Back",
  18175. image: {
  18176. source: "./media/characters/veski/back.svg",
  18177. extra: 1299 / 1225,
  18178. bottom: 0.008
  18179. }
  18180. },
  18181. maw: {
  18182. height: math.unit(1.5 * 1.21, "feet"),
  18183. name: "Maw",
  18184. image: {
  18185. source: "./media/characters/veski/maw.svg"
  18186. }
  18187. },
  18188. },
  18189. [
  18190. {
  18191. name: "Macro",
  18192. height: math.unit(2, "km"),
  18193. default: true
  18194. },
  18195. ]
  18196. ))
  18197. characterMakers.push(() => makeCharacter(
  18198. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18199. {
  18200. front: {
  18201. height: math.unit(5 + 7 / 12, "feet"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/isabelle/front.svg",
  18205. extra: 2130 / 1976,
  18206. bottom: 0.05
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Supermicro",
  18213. height: math.unit(10, "micrometers")
  18214. },
  18215. {
  18216. name: "Micro",
  18217. height: math.unit(1, "inch")
  18218. },
  18219. {
  18220. name: "Tiny",
  18221. height: math.unit(5, "inches")
  18222. },
  18223. {
  18224. name: "Standard",
  18225. height: math.unit(5 + 7 / 12, "inches")
  18226. },
  18227. {
  18228. name: "Macro",
  18229. height: math.unit(80, "meters"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Megamacro",
  18234. height: math.unit(250, "meters")
  18235. },
  18236. {
  18237. name: "Gigamacro",
  18238. height: math.unit(5, "km")
  18239. },
  18240. {
  18241. name: "Cosmic",
  18242. height: math.unit(2.5e6, "miles")
  18243. },
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18248. {
  18249. front: {
  18250. height: math.unit(6, "feet"),
  18251. weight: math.unit(150, "lb"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/hanzo/front.svg",
  18255. extra: 374 / 344,
  18256. bottom: 0.02
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(8, "feet"),
  18264. default: true
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(7, "feet"),
  18273. weight: math.unit(130, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/anna/front.svg",
  18277. extra: 169 / 145,
  18278. bottom: 0.06
  18279. }
  18280. },
  18281. full: {
  18282. height: math.unit(4.96, "feet"),
  18283. weight: math.unit(220, "lb"),
  18284. name: "Full",
  18285. image: {
  18286. source: "./media/characters/anna/full.svg",
  18287. extra: 138 / 114,
  18288. bottom: 0.15
  18289. }
  18290. },
  18291. tongue: {
  18292. height: math.unit(2.53, "feet"),
  18293. name: "Tongue",
  18294. image: {
  18295. source: "./media/characters/anna/tongue.svg"
  18296. }
  18297. },
  18298. },
  18299. [
  18300. {
  18301. name: "Normal",
  18302. height: math.unit(7, "feet"),
  18303. default: true
  18304. },
  18305. ]
  18306. ))
  18307. characterMakers.push(() => makeCharacter(
  18308. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18309. {
  18310. front: {
  18311. height: math.unit(7, "feet"),
  18312. weight: math.unit(150, "lb"),
  18313. name: "Front",
  18314. image: {
  18315. source: "./media/characters/ian-corvid/front.svg",
  18316. extra: 150 / 142,
  18317. bottom: 0.02
  18318. }
  18319. },
  18320. back: {
  18321. height: math.unit(7, "feet"),
  18322. weight: math.unit(150, "lb"),
  18323. name: "Back",
  18324. image: {
  18325. source: "./media/characters/ian-corvid/back.svg",
  18326. extra: 150 / 143,
  18327. bottom: 0.01
  18328. }
  18329. },
  18330. stomping: {
  18331. height: math.unit(7, "feet"),
  18332. weight: math.unit(150, "lb"),
  18333. name: "Stomping",
  18334. image: {
  18335. source: "./media/characters/ian-corvid/stomping.svg",
  18336. extra: 76 / 72
  18337. }
  18338. },
  18339. sitting: {
  18340. height: math.unit(7 / 1.8, "feet"),
  18341. weight: math.unit(150, "lb"),
  18342. name: "Sitting",
  18343. image: {
  18344. source: "./media/characters/ian-corvid/sitting.svg",
  18345. extra: 1400 / 1269,
  18346. bottom: 0.15
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Tiny Microw",
  18353. height: math.unit(1, "inch")
  18354. },
  18355. {
  18356. name: "Microw",
  18357. height: math.unit(6, "inches")
  18358. },
  18359. {
  18360. name: "Crow",
  18361. height: math.unit(7 + 1 / 12, "feet"),
  18362. default: true
  18363. },
  18364. {
  18365. name: "Macrow",
  18366. height: math.unit(176, "feet")
  18367. },
  18368. ]
  18369. ))
  18370. characterMakers.push(() => makeCharacter(
  18371. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18372. {
  18373. front: {
  18374. height: math.unit(5 + 7 / 12, "feet"),
  18375. weight: math.unit(147, "lb"),
  18376. name: "Front",
  18377. image: {
  18378. source: "./media/characters/natalie-kellon/front.svg",
  18379. extra: 1214 / 1141,
  18380. bottom: 0.02
  18381. }
  18382. },
  18383. },
  18384. [
  18385. {
  18386. name: "Micro",
  18387. height: math.unit(1 / 16, "inch")
  18388. },
  18389. {
  18390. name: "Tiny",
  18391. height: math.unit(4, "inches")
  18392. },
  18393. {
  18394. name: "Normal",
  18395. height: math.unit(5 + 7 / 12, "feet"),
  18396. default: true
  18397. },
  18398. {
  18399. name: "Amazon",
  18400. height: math.unit(12, "feet")
  18401. },
  18402. {
  18403. name: "Giantess",
  18404. height: math.unit(160, "meters")
  18405. },
  18406. {
  18407. name: "Titaness",
  18408. height: math.unit(800, "meters")
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18414. {
  18415. front: {
  18416. height: math.unit(6, "feet"),
  18417. weight: math.unit(150, "lb"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/alluria/front.svg",
  18421. extra: 806 / 738,
  18422. bottom: 0.01
  18423. }
  18424. },
  18425. side: {
  18426. height: math.unit(6, "feet"),
  18427. weight: math.unit(150, "lb"),
  18428. name: "Side",
  18429. image: {
  18430. source: "./media/characters/alluria/side.svg",
  18431. extra: 800 / 750,
  18432. }
  18433. },
  18434. back: {
  18435. height: math.unit(6, "feet"),
  18436. weight: math.unit(150, "lb"),
  18437. name: "Back",
  18438. image: {
  18439. source: "./media/characters/alluria/back.svg",
  18440. extra: 806 / 738,
  18441. }
  18442. },
  18443. frontMaid: {
  18444. height: math.unit(6, "feet"),
  18445. weight: math.unit(150, "lb"),
  18446. name: "Front (Maid)",
  18447. image: {
  18448. source: "./media/characters/alluria/front-maid.svg",
  18449. extra: 806 / 738,
  18450. bottom: 0.01
  18451. }
  18452. },
  18453. sideMaid: {
  18454. height: math.unit(6, "feet"),
  18455. weight: math.unit(150, "lb"),
  18456. name: "Side (Maid)",
  18457. image: {
  18458. source: "./media/characters/alluria/side-maid.svg",
  18459. extra: 800 / 750,
  18460. bottom: 0.005
  18461. }
  18462. },
  18463. backMaid: {
  18464. height: math.unit(6, "feet"),
  18465. weight: math.unit(150, "lb"),
  18466. name: "Back (Maid)",
  18467. image: {
  18468. source: "./media/characters/alluria/back-maid.svg",
  18469. extra: 806 / 738,
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Micro",
  18476. height: math.unit(6, "inches"),
  18477. default: true
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18483. {
  18484. front: {
  18485. height: math.unit(6, "feet"),
  18486. weight: math.unit(150, "lb"),
  18487. name: "Front",
  18488. image: {
  18489. source: "./media/characters/kyle/front.svg",
  18490. extra: 1069 / 962,
  18491. bottom: 77.228 / 1727.45
  18492. }
  18493. },
  18494. },
  18495. [
  18496. {
  18497. name: "Macro",
  18498. height: math.unit(150, "feet"),
  18499. default: true
  18500. },
  18501. ]
  18502. ))
  18503. characterMakers.push(() => makeCharacter(
  18504. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18505. {
  18506. front: {
  18507. height: math.unit(6, "feet"),
  18508. weight: math.unit(300, "lb"),
  18509. name: "Front",
  18510. image: {
  18511. source: "./media/characters/duncan/front.svg",
  18512. extra: 1650 / 1482,
  18513. bottom: 0.05
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Macro",
  18520. height: math.unit(100, "feet"),
  18521. default: true
  18522. },
  18523. ]
  18524. ))
  18525. characterMakers.push(() => makeCharacter(
  18526. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18527. {
  18528. front: {
  18529. height: math.unit(5 + 4 / 12, "feet"),
  18530. weight: math.unit(220, "lb"),
  18531. name: "Front",
  18532. image: {
  18533. source: "./media/characters/memory/front.svg",
  18534. extra: 3641 / 3545,
  18535. bottom: 0.03
  18536. }
  18537. },
  18538. back: {
  18539. height: math.unit(5 + 4 / 12, "feet"),
  18540. weight: math.unit(220, "lb"),
  18541. name: "Back",
  18542. image: {
  18543. source: "./media/characters/memory/back.svg",
  18544. extra: 3641 / 3545,
  18545. bottom: 0.025
  18546. }
  18547. },
  18548. frontSkirt: {
  18549. height: math.unit(5 + 4 / 12, "feet"),
  18550. weight: math.unit(220, "lb"),
  18551. name: "Front (Skirt)",
  18552. image: {
  18553. source: "./media/characters/memory/front-skirt.svg",
  18554. extra: 3641 / 3545,
  18555. bottom: 0.03
  18556. }
  18557. },
  18558. frontDress: {
  18559. height: math.unit(5 + 4 / 12, "feet"),
  18560. weight: math.unit(220, "lb"),
  18561. name: "Front (Dress)",
  18562. image: {
  18563. source: "./media/characters/memory/front-dress.svg",
  18564. extra: 3641 / 3545,
  18565. bottom: 0.03
  18566. }
  18567. },
  18568. },
  18569. [
  18570. {
  18571. name: "Micro",
  18572. height: math.unit(6, "inches"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "Normal",
  18577. height: math.unit(5 + 4 / 12, "feet")
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(4 + 11 / 12, "feet"),
  18586. weight: math.unit(100, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/luno/front.svg",
  18590. extra: 1535 / 1487,
  18591. bottom: 0.03
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Micro",
  18598. height: math.unit(3, "inches")
  18599. },
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(4 + 11 / 12, "feet"),
  18603. default: true
  18604. },
  18605. {
  18606. name: "Macro",
  18607. height: math.unit(300, "feet")
  18608. },
  18609. {
  18610. name: "Megamacro",
  18611. height: math.unit(700, "miles")
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18617. {
  18618. front: {
  18619. height: math.unit(6 + 2 / 12, "feet"),
  18620. weight: math.unit(170, "lb"),
  18621. name: "Front",
  18622. image: {
  18623. source: "./media/characters/jamesy/front.svg",
  18624. extra: 440 / 382,
  18625. bottom: 0.005
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Micro",
  18632. height: math.unit(3, "inches")
  18633. },
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(6 + 2 / 12, "feet"),
  18637. default: true
  18638. },
  18639. {
  18640. name: "Macro",
  18641. height: math.unit(300, "feet")
  18642. },
  18643. {
  18644. name: "Megamacro",
  18645. height: math.unit(700, "miles")
  18646. },
  18647. ]
  18648. ))
  18649. characterMakers.push(() => makeCharacter(
  18650. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18651. {
  18652. front: {
  18653. height: math.unit(6, "feet"),
  18654. weight: math.unit(160, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/mark/front.svg",
  18658. extra: 3300 / 3100,
  18659. bottom: 136.42 / 3440.47
  18660. }
  18661. },
  18662. },
  18663. [
  18664. {
  18665. name: "Macro",
  18666. height: math.unit(120, "meters")
  18667. },
  18668. {
  18669. name: "Bigger Macro",
  18670. height: math.unit(350, "meters")
  18671. },
  18672. {
  18673. name: "Megamacro",
  18674. height: math.unit(8, "km"),
  18675. default: true
  18676. },
  18677. {
  18678. name: "Continental",
  18679. height: math.unit(4550, "km")
  18680. },
  18681. {
  18682. name: "Planetary",
  18683. height: math.unit(65000, "km")
  18684. },
  18685. ]
  18686. ))
  18687. characterMakers.push(() => makeCharacter(
  18688. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18689. {
  18690. front: {
  18691. height: math.unit(6, "feet"),
  18692. weight: math.unit(400, "lb"),
  18693. name: "Front",
  18694. image: {
  18695. source: "./media/characters/mac/front.svg",
  18696. extra: 1048 / 987.7,
  18697. bottom: 60 / 1107.6,
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Macro",
  18704. height: math.unit(500, "feet"),
  18705. default: true
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(5 + 2 / 12, "feet"),
  18714. weight: math.unit(190, "lb"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/bari/front.svg",
  18718. extra: 3156 / 2880,
  18719. bottom: 0.03
  18720. }
  18721. },
  18722. back: {
  18723. height: math.unit(5 + 2 / 12, "feet"),
  18724. weight: math.unit(190, "lb"),
  18725. name: "Back",
  18726. image: {
  18727. source: "./media/characters/bari/back.svg",
  18728. extra: 3260 / 2834,
  18729. bottom: 0.025
  18730. }
  18731. },
  18732. frontPlush: {
  18733. height: math.unit(5 + 2 / 12, "feet"),
  18734. weight: math.unit(190, "lb"),
  18735. name: "Front (Plush)",
  18736. image: {
  18737. source: "./media/characters/bari/front-plush.svg",
  18738. extra: 1112 / 1061,
  18739. bottom: 0.002
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Micro",
  18746. height: math.unit(3, "inches")
  18747. },
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(5 + 2 / 12, "feet"),
  18751. default: true
  18752. },
  18753. {
  18754. name: "Macro",
  18755. height: math.unit(20, "feet")
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(6 + 1 / 12, "feet"),
  18764. weight: math.unit(275, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/hunter-misha-raven/front.svg"
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Mortal",
  18774. height: math.unit(6 + 1 / 12, "feet")
  18775. },
  18776. {
  18777. name: "Divine",
  18778. height: math.unit(1.12134e34, "parsecs"),
  18779. default: true
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(6 + 3 / 12, "feet"),
  18788. weight: math.unit(220, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/max-calore/front.svg",
  18792. extra: 1700 / 1648,
  18793. bottom: 0.01
  18794. }
  18795. },
  18796. back: {
  18797. height: math.unit(6 + 3 / 12, "feet"),
  18798. weight: math.unit(220, "lb"),
  18799. name: "Back",
  18800. image: {
  18801. source: "./media/characters/max-calore/back.svg",
  18802. extra: 1700 / 1648,
  18803. bottom: 0.01
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Normal",
  18810. height: math.unit(6 + 3 / 12, "feet"),
  18811. default: true
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18817. {
  18818. side: {
  18819. height: math.unit(2 + 8 / 12, "feet"),
  18820. weight: math.unit(99, "lb"),
  18821. name: "Side",
  18822. image: {
  18823. source: "./media/characters/aspen/side.svg",
  18824. extra: 152 / 138,
  18825. bottom: 0.032
  18826. }
  18827. },
  18828. },
  18829. [
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(2 + 8 / 12, "feet"),
  18833. default: true
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18839. {
  18840. side: {
  18841. height: math.unit(3 + 2 / 12, "feet"),
  18842. weight: math.unit(224, "lb"),
  18843. name: "Side",
  18844. image: {
  18845. source: "./media/characters/sheila-feral-wolf/side.svg",
  18846. extra: 179 / 166,
  18847. bottom: 0.03
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(3 + 2 / 12, "feet"),
  18855. default: true
  18856. },
  18857. ]
  18858. ))
  18859. characterMakers.push(() => makeCharacter(
  18860. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18861. {
  18862. side: {
  18863. height: math.unit(1 + 9 / 12, "feet"),
  18864. weight: math.unit(38, "lb"),
  18865. name: "Side",
  18866. image: {
  18867. source: "./media/characters/michelle/side.svg",
  18868. extra: 147 / 136.7,
  18869. bottom: 0.03
  18870. }
  18871. },
  18872. },
  18873. [
  18874. {
  18875. name: "Normal",
  18876. height: math.unit(1 + 9 / 12, "feet"),
  18877. default: true
  18878. },
  18879. ]
  18880. ))
  18881. characterMakers.push(() => makeCharacter(
  18882. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18883. {
  18884. front: {
  18885. height: math.unit(1.54, "feet"),
  18886. weight: math.unit(50, "lb"),
  18887. name: "Front",
  18888. image: {
  18889. source: "./media/characters/nino/front.svg"
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(1.54, "feet"),
  18897. default: true
  18898. },
  18899. ]
  18900. ))
  18901. characterMakers.push(() => makeCharacter(
  18902. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18903. {
  18904. front: {
  18905. height: math.unit(1.49, "feet"),
  18906. weight: math.unit(45, "lb"),
  18907. name: "Front",
  18908. image: {
  18909. source: "./media/characters/viola/front.svg"
  18910. }
  18911. },
  18912. },
  18913. [
  18914. {
  18915. name: "Normal",
  18916. height: math.unit(1.49, "feet"),
  18917. default: true
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18923. {
  18924. front: {
  18925. height: math.unit(6 + 5 / 12, "feet"),
  18926. weight: math.unit(580, "lb"),
  18927. name: "Front",
  18928. image: {
  18929. source: "./media/characters/atlas/front.svg",
  18930. extra: 298.5 / 290,
  18931. bottom: 0.015
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Normal",
  18938. height: math.unit(6 + 5 / 12, "feet"),
  18939. default: true
  18940. },
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18945. {
  18946. side: {
  18947. height: math.unit(15.6, "inches"),
  18948. weight: math.unit(10, "lb"),
  18949. name: "Side",
  18950. image: {
  18951. source: "./media/characters/davy/side.svg",
  18952. extra: 200 / 170,
  18953. bottom: 0.01
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(15.6, "inches"),
  18961. default: true
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18967. {
  18968. side: {
  18969. height: math.unit(4 + 8 / 12, "feet"),
  18970. weight: math.unit(166, "lb"),
  18971. name: "Side",
  18972. image: {
  18973. source: "./media/characters/fiona/side.svg",
  18974. extra: 232 / 220,
  18975. bottom: 0.03
  18976. }
  18977. },
  18978. },
  18979. [
  18980. {
  18981. name: "Normal",
  18982. height: math.unit(4 + 8 / 12, "feet"),
  18983. default: true
  18984. },
  18985. ]
  18986. ))
  18987. characterMakers.push(() => makeCharacter(
  18988. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18989. {
  18990. front: {
  18991. height: math.unit(26, "inches"),
  18992. weight: math.unit(35, "lb"),
  18993. name: "Front",
  18994. image: {
  18995. source: "./media/characters/lyla/front.svg",
  18996. bottom: 0.1
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(3, "feet"),
  19004. default: true
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  19010. {
  19011. side: {
  19012. height: math.unit(1.8, "feet"),
  19013. weight: math.unit(44, "lb"),
  19014. name: "Side",
  19015. image: {
  19016. source: "./media/characters/perseus/side.svg",
  19017. bottom: 0.21
  19018. }
  19019. },
  19020. },
  19021. [
  19022. {
  19023. name: "Normal",
  19024. height: math.unit(1.8, "feet"),
  19025. default: true
  19026. },
  19027. ]
  19028. ))
  19029. characterMakers.push(() => makeCharacter(
  19030. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19031. {
  19032. side: {
  19033. height: math.unit(4 + 2 / 12, "feet"),
  19034. weight: math.unit(20, "lb"),
  19035. name: "Side",
  19036. image: {
  19037. source: "./media/characters/remus/side.svg"
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(4 + 2 / 12, "feet"),
  19045. default: true
  19046. },
  19047. ]
  19048. ))
  19049. characterMakers.push(() => makeCharacter(
  19050. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19051. {
  19052. front: {
  19053. height: math.unit(4 + 11 / 12, "feet"),
  19054. weight: math.unit(114, "lb"),
  19055. name: "Front",
  19056. image: {
  19057. source: "./media/characters/raf/front.svg",
  19058. extra: 1504/1339,
  19059. bottom: 26/1530
  19060. }
  19061. },
  19062. side: {
  19063. height: math.unit(4 + 11 / 12, "feet"),
  19064. weight: math.unit(114, "lb"),
  19065. name: "Side",
  19066. image: {
  19067. source: "./media/characters/raf/side.svg",
  19068. extra: 1466/1316,
  19069. bottom: 29/1495
  19070. }
  19071. },
  19072. paw: {
  19073. height: math.unit(1.45, "feet"),
  19074. name: "Paw",
  19075. image: {
  19076. source: "./media/characters/raf/paw.svg"
  19077. },
  19078. extraAttributes: {
  19079. "toeSize": {
  19080. name: "Toe Size",
  19081. power: 2,
  19082. type: "area",
  19083. base: math.unit(0.004, "m^2")
  19084. },
  19085. "padSize": {
  19086. name: "Pad Size",
  19087. power: 2,
  19088. type: "area",
  19089. base: math.unit(0.04, "m^2")
  19090. },
  19091. "footSize": {
  19092. name: "Foot Size",
  19093. power: 2,
  19094. type: "area",
  19095. base: math.unit(0.08, "m^2")
  19096. },
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Micro",
  19103. height: math.unit(2, "inches")
  19104. },
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(4 + 11 / 12, "feet"),
  19108. default: true
  19109. },
  19110. {
  19111. name: "Macro",
  19112. height: math.unit(70, "feet")
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(1.5, "meters"),
  19121. weight: math.unit(68, "kg"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/liam-einarr/front.svg",
  19125. extra: 2822 / 2666
  19126. }
  19127. },
  19128. back: {
  19129. height: math.unit(1.5, "meters"),
  19130. weight: math.unit(68, "kg"),
  19131. name: "Back",
  19132. image: {
  19133. source: "./media/characters/liam-einarr/back.svg",
  19134. extra: 2822 / 2666,
  19135. bottom: 0.015
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Normal",
  19142. height: math.unit(1.5, "meters"),
  19143. default: true
  19144. },
  19145. {
  19146. name: "Macro",
  19147. height: math.unit(150, "meters")
  19148. },
  19149. {
  19150. name: "Megamacro",
  19151. height: math.unit(35, "km")
  19152. },
  19153. ]
  19154. ))
  19155. characterMakers.push(() => makeCharacter(
  19156. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19157. {
  19158. front: {
  19159. height: math.unit(6, "feet"),
  19160. weight: math.unit(75, "kg"),
  19161. name: "Front",
  19162. image: {
  19163. source: "./media/characters/linda/front.svg",
  19164. extra: 930 / 874,
  19165. bottom: 0.004
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(6, "feet"),
  19173. default: true
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19179. {
  19180. front: {
  19181. height: math.unit(6 + 8 / 12, "feet"),
  19182. weight: math.unit(220, "lb"),
  19183. name: "Front",
  19184. image: {
  19185. source: "./media/characters/caylex/front.svg",
  19186. extra: 821 / 772,
  19187. bottom: 0.07
  19188. }
  19189. },
  19190. back: {
  19191. height: math.unit(6 + 8 / 12, "feet"),
  19192. weight: math.unit(220, "lb"),
  19193. name: "Back",
  19194. image: {
  19195. source: "./media/characters/caylex/back.svg",
  19196. extra: 821 / 772,
  19197. bottom: 0.022
  19198. }
  19199. },
  19200. hand: {
  19201. height: math.unit(1.25, "feet"),
  19202. name: "Hand",
  19203. image: {
  19204. source: "./media/characters/caylex/hand.svg"
  19205. }
  19206. },
  19207. foot: {
  19208. height: math.unit(1.6, "feet"),
  19209. name: "Foot",
  19210. image: {
  19211. source: "./media/characters/caylex/foot.svg"
  19212. }
  19213. },
  19214. armored: {
  19215. height: math.unit(6 + 8 / 12, "feet"),
  19216. weight: math.unit(250, "lb"),
  19217. name: "Armored",
  19218. image: {
  19219. source: "./media/characters/caylex/armored.svg",
  19220. extra: 1420 / 1310,
  19221. bottom: 0.045
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Normal",
  19228. height: math.unit(6 + 8 / 12, "feet"),
  19229. default: true
  19230. },
  19231. {
  19232. name: "Normal+",
  19233. height: math.unit(12, "feet")
  19234. },
  19235. ]
  19236. ))
  19237. characterMakers.push(() => makeCharacter(
  19238. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19239. {
  19240. front: {
  19241. height: math.unit(7 + 6 / 12, "feet"),
  19242. weight: math.unit(288, "lb"),
  19243. name: "Front",
  19244. image: {
  19245. source: "./media/characters/alana/front.svg",
  19246. extra: 679 / 653,
  19247. bottom: 22.5 / 701
  19248. }
  19249. },
  19250. },
  19251. [
  19252. {
  19253. name: "Normal",
  19254. height: math.unit(7 + 6 / 12, "feet")
  19255. },
  19256. {
  19257. name: "Large",
  19258. height: math.unit(50, "feet")
  19259. },
  19260. {
  19261. name: "Macro",
  19262. height: math.unit(100, "feet"),
  19263. default: true
  19264. },
  19265. {
  19266. name: "Macro+",
  19267. height: math.unit(200, "feet")
  19268. },
  19269. ]
  19270. ))
  19271. characterMakers.push(() => makeCharacter(
  19272. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19273. {
  19274. front: {
  19275. height: math.unit(6 + 1 / 12, "feet"),
  19276. weight: math.unit(210, "lb"),
  19277. name: "Front",
  19278. image: {
  19279. source: "./media/characters/hasani/front.svg",
  19280. extra: 244 / 232,
  19281. bottom: 0.01
  19282. }
  19283. },
  19284. back: {
  19285. height: math.unit(6 + 1 / 12, "feet"),
  19286. weight: math.unit(210, "lb"),
  19287. name: "Back",
  19288. image: {
  19289. source: "./media/characters/hasani/back.svg",
  19290. extra: 244 / 232,
  19291. bottom: 0.01
  19292. }
  19293. },
  19294. },
  19295. [
  19296. {
  19297. name: "Normal",
  19298. height: math.unit(6 + 1 / 12, "feet")
  19299. },
  19300. {
  19301. name: "Macro",
  19302. height: math.unit(175, "feet"),
  19303. default: true
  19304. },
  19305. ]
  19306. ))
  19307. characterMakers.push(() => makeCharacter(
  19308. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19309. {
  19310. front: {
  19311. height: math.unit(1.82, "meters"),
  19312. weight: math.unit(140, "lb"),
  19313. name: "Front",
  19314. image: {
  19315. source: "./media/characters/nita/front.svg",
  19316. extra: 2473 / 2363,
  19317. bottom: 0.01
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(1.82, "m")
  19325. },
  19326. {
  19327. name: "Macro",
  19328. height: math.unit(300, "m")
  19329. },
  19330. {
  19331. name: "Mistake Canon",
  19332. height: math.unit(0.5, "miles"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Big Mistake",
  19337. height: math.unit(13, "miles")
  19338. },
  19339. {
  19340. name: "Playing God",
  19341. height: math.unit(2450, "miles")
  19342. },
  19343. ]
  19344. ))
  19345. characterMakers.push(() => makeCharacter(
  19346. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19347. {
  19348. front: {
  19349. height: math.unit(4, "feet"),
  19350. weight: math.unit(120, "lb"),
  19351. name: "Front",
  19352. image: {
  19353. source: "./media/characters/shiriko/front.svg",
  19354. extra: 970/934,
  19355. bottom: 5/975
  19356. }
  19357. },
  19358. },
  19359. [
  19360. {
  19361. name: "Normal",
  19362. height: math.unit(4, "feet"),
  19363. default: true
  19364. },
  19365. ]
  19366. ))
  19367. characterMakers.push(() => makeCharacter(
  19368. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19369. {
  19370. front: {
  19371. height: math.unit(6, "feet"),
  19372. name: "front",
  19373. image: {
  19374. source: "./media/characters/deja/front.svg",
  19375. extra: 926 / 840,
  19376. bottom: 0.07
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Planck Length",
  19383. height: math.unit(1.6e-35, "meters")
  19384. },
  19385. {
  19386. name: "Normal",
  19387. height: math.unit(30.48, "meters"),
  19388. default: true
  19389. },
  19390. {
  19391. name: "Universal",
  19392. height: math.unit(8.8e26, "meters")
  19393. },
  19394. ]
  19395. ))
  19396. characterMakers.push(() => makeCharacter(
  19397. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19398. {
  19399. side: {
  19400. height: math.unit(8, "feet"),
  19401. weight: math.unit(6300, "lb"),
  19402. name: "Side",
  19403. image: {
  19404. source: "./media/characters/anima/side.svg",
  19405. bottom: 0.035
  19406. }
  19407. },
  19408. },
  19409. [
  19410. {
  19411. name: "Normal",
  19412. height: math.unit(8, "feet"),
  19413. default: true
  19414. },
  19415. ]
  19416. ))
  19417. characterMakers.push(() => makeCharacter(
  19418. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19419. {
  19420. front: {
  19421. height: math.unit(8, "feet"),
  19422. weight: math.unit(350, "lb"),
  19423. name: "Front",
  19424. image: {
  19425. source: "./media/characters/bianca/front.svg",
  19426. extra: 234 / 225,
  19427. bottom: 0.03
  19428. }
  19429. },
  19430. },
  19431. [
  19432. {
  19433. name: "Normal",
  19434. height: math.unit(8, "feet"),
  19435. default: true
  19436. },
  19437. ]
  19438. ))
  19439. characterMakers.push(() => makeCharacter(
  19440. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19441. {
  19442. front: {
  19443. height: math.unit(11 + 5/12, "feet"),
  19444. weight: math.unit(1200, "lb"),
  19445. name: "Front",
  19446. image: {
  19447. source: "./media/characters/adinia/front.svg",
  19448. extra: 1767/1641,
  19449. bottom: 44/1811
  19450. },
  19451. extraAttributes: {
  19452. "energyIntake": {
  19453. name: "Energy Intake",
  19454. power: 3,
  19455. type: "energy",
  19456. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19457. },
  19458. }
  19459. },
  19460. back: {
  19461. height: math.unit(11 + 5/12, "feet"),
  19462. weight: math.unit(1200, "lb"),
  19463. name: "Back",
  19464. image: {
  19465. source: "./media/characters/adinia/back.svg",
  19466. extra: 1834/1684,
  19467. bottom: 14/1848
  19468. },
  19469. extraAttributes: {
  19470. "energyIntake": {
  19471. name: "Energy Intake",
  19472. power: 3,
  19473. type: "energy",
  19474. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19475. },
  19476. }
  19477. },
  19478. maw: {
  19479. height: math.unit(3.79, "feet"),
  19480. name: "Maw",
  19481. image: {
  19482. source: "./media/characters/adinia/maw.svg"
  19483. }
  19484. },
  19485. rump: {
  19486. height: math.unit(4.6, "feet"),
  19487. name: "Rump",
  19488. image: {
  19489. source: "./media/characters/adinia/rump.svg"
  19490. }
  19491. },
  19492. },
  19493. [
  19494. {
  19495. name: "Normal",
  19496. height: math.unit(11 + 5 / 12, "feet"),
  19497. default: true
  19498. },
  19499. ]
  19500. ))
  19501. characterMakers.push(() => makeCharacter(
  19502. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19503. {
  19504. front: {
  19505. height: math.unit(3, "meters"),
  19506. weight: math.unit(200, "kg"),
  19507. name: "Front",
  19508. image: {
  19509. source: "./media/characters/lykasa/front.svg",
  19510. extra: 1076 / 976,
  19511. bottom: 0.06
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(3, "meters")
  19519. },
  19520. {
  19521. name: "Kaiju",
  19522. height: math.unit(120, "meters"),
  19523. default: true
  19524. },
  19525. {
  19526. name: "Mega Kaiju",
  19527. height: math.unit(240, "km")
  19528. },
  19529. {
  19530. name: "Giga Kaiju",
  19531. height: math.unit(400, "megameters")
  19532. },
  19533. {
  19534. name: "Tera Kaiju",
  19535. height: math.unit(800, "gigameters")
  19536. },
  19537. {
  19538. name: "Kaiju Dragon Goddess",
  19539. height: math.unit(26, "zettaparsecs")
  19540. },
  19541. ]
  19542. ))
  19543. characterMakers.push(() => makeCharacter(
  19544. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19545. {
  19546. side: {
  19547. height: math.unit(283 / 124 * 6, "feet"),
  19548. weight: math.unit(35000, "lb"),
  19549. name: "Side",
  19550. image: {
  19551. source: "./media/characters/malfaren/side.svg",
  19552. extra: 1310/529,
  19553. bottom: 24/1334
  19554. }
  19555. },
  19556. front: {
  19557. height: math.unit(22.36, "feet"),
  19558. weight: math.unit(35000, "lb"),
  19559. name: "Front",
  19560. image: {
  19561. source: "./media/characters/malfaren/front.svg",
  19562. extra: 1237/1115,
  19563. bottom: 32/1269
  19564. }
  19565. },
  19566. maw: {
  19567. height: math.unit(6.9, "feet"),
  19568. name: "Maw",
  19569. image: {
  19570. source: "./media/characters/malfaren/maw.svg"
  19571. }
  19572. },
  19573. dick: {
  19574. height: math.unit(6.19, "feet"),
  19575. name: "Dick",
  19576. image: {
  19577. source: "./media/characters/malfaren/dick.svg"
  19578. }
  19579. },
  19580. eye: {
  19581. height: math.unit(0.69, "feet"),
  19582. name: "Eye",
  19583. image: {
  19584. source: "./media/characters/malfaren/eye.svg"
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Big",
  19591. height: math.unit(283 / 162 * 6, "feet"),
  19592. },
  19593. {
  19594. name: "Bigger",
  19595. height: math.unit(283 / 124 * 6, "feet")
  19596. },
  19597. {
  19598. name: "Massive",
  19599. height: math.unit(283 / 92 * 6, "feet"),
  19600. default: true
  19601. },
  19602. {
  19603. name: "👀💦",
  19604. height: math.unit(283 / 73 * 6, "feet"),
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(1.7, "m"),
  19613. weight: math.unit(70, "kg"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/kernel/front.svg",
  19617. extra: 222 / 210,
  19618. bottom: 0.007
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Nano",
  19625. height: math.unit(17, "micrometers")
  19626. },
  19627. {
  19628. name: "Micro",
  19629. height: math.unit(1.7, "mm")
  19630. },
  19631. {
  19632. name: "Small",
  19633. height: math.unit(1.7, "cm")
  19634. },
  19635. {
  19636. name: "Normal",
  19637. height: math.unit(1.7, "m"),
  19638. default: true
  19639. },
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19644. {
  19645. front: {
  19646. height: math.unit(1.75, "meters"),
  19647. weight: math.unit(65, "kg"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/jayne-folest/front.svg",
  19651. extra: 2115 / 2007,
  19652. bottom: 0.02
  19653. }
  19654. },
  19655. back: {
  19656. height: math.unit(1.75, "meters"),
  19657. weight: math.unit(65, "kg"),
  19658. name: "Back",
  19659. image: {
  19660. source: "./media/characters/jayne-folest/back.svg",
  19661. extra: 2115 / 2007,
  19662. bottom: 0.005
  19663. }
  19664. },
  19665. frontClothed: {
  19666. height: math.unit(1.75, "meters"),
  19667. weight: math.unit(65, "kg"),
  19668. name: "Front (Clothed)",
  19669. image: {
  19670. source: "./media/characters/jayne-folest/front-clothed.svg",
  19671. extra: 2115 / 2007,
  19672. bottom: 0.035
  19673. }
  19674. },
  19675. hand: {
  19676. height: math.unit(1 / 1.260, "feet"),
  19677. name: "Hand",
  19678. image: {
  19679. source: "./media/characters/jayne-folest/hand.svg"
  19680. }
  19681. },
  19682. foot: {
  19683. height: math.unit(1 / 0.918, "feet"),
  19684. name: "Foot",
  19685. image: {
  19686. source: "./media/characters/jayne-folest/foot.svg"
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Micro",
  19693. height: math.unit(4, "cm")
  19694. },
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(1.75, "meters")
  19698. },
  19699. {
  19700. name: "Macro",
  19701. height: math.unit(47.5, "meters"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(180, "cm"),
  19711. weight: math.unit(70, "kg"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/algier/front.svg",
  19715. extra: 596 / 572,
  19716. bottom: 0.04
  19717. }
  19718. },
  19719. back: {
  19720. height: math.unit(180, "cm"),
  19721. weight: math.unit(70, "kg"),
  19722. name: "Back",
  19723. image: {
  19724. source: "./media/characters/algier/back.svg",
  19725. extra: 596 / 572,
  19726. bottom: 0.025
  19727. }
  19728. },
  19729. frontdressed: {
  19730. height: math.unit(180, "cm"),
  19731. weight: math.unit(150, "kg"),
  19732. name: "Front-dressed",
  19733. image: {
  19734. source: "./media/characters/algier/front-dressed.svg",
  19735. extra: 596 / 572,
  19736. bottom: 0.038
  19737. }
  19738. },
  19739. },
  19740. [
  19741. {
  19742. name: "Micro",
  19743. height: math.unit(5, "cm")
  19744. },
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(180, "cm"),
  19748. default: true
  19749. },
  19750. {
  19751. name: "Macro",
  19752. height: math.unit(64, "m")
  19753. },
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19758. {
  19759. upright: {
  19760. height: math.unit(7, "feet"),
  19761. weight: math.unit(300, "lb"),
  19762. name: "Upright",
  19763. image: {
  19764. source: "./media/characters/pretzel/upright.svg",
  19765. extra: 534 / 522,
  19766. bottom: 0.065
  19767. }
  19768. },
  19769. sprawling: {
  19770. height: math.unit(3.75, "feet"),
  19771. weight: math.unit(300, "lb"),
  19772. name: "Sprawling",
  19773. image: {
  19774. source: "./media/characters/pretzel/sprawling.svg",
  19775. extra: 314 / 281,
  19776. bottom: 0.1
  19777. }
  19778. },
  19779. tongue: {
  19780. height: math.unit(2, "feet"),
  19781. name: "Tongue",
  19782. image: {
  19783. source: "./media/characters/pretzel/tongue.svg"
  19784. }
  19785. },
  19786. },
  19787. [
  19788. {
  19789. name: "Normal",
  19790. height: math.unit(7, "feet"),
  19791. default: true
  19792. },
  19793. {
  19794. name: "Oversized",
  19795. height: math.unit(15, "feet")
  19796. },
  19797. {
  19798. name: "Huge",
  19799. height: math.unit(30, "feet")
  19800. },
  19801. {
  19802. name: "Macro",
  19803. height: math.unit(250, "feet")
  19804. },
  19805. ]
  19806. ))
  19807. characterMakers.push(() => makeCharacter(
  19808. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19809. {
  19810. sideFront: {
  19811. height: math.unit(5 + 2 / 12, "feet"),
  19812. weight: math.unit(120, "lb"),
  19813. name: "Front Side",
  19814. image: {
  19815. source: "./media/characters/roxi/side-front.svg",
  19816. extra: 2924 / 2717,
  19817. bottom: 0.08
  19818. }
  19819. },
  19820. sideBack: {
  19821. height: math.unit(5 + 2 / 12, "feet"),
  19822. weight: math.unit(120, "lb"),
  19823. name: "Back Side",
  19824. image: {
  19825. source: "./media/characters/roxi/side-back.svg",
  19826. extra: 2904 / 2693,
  19827. bottom: 0.06
  19828. }
  19829. },
  19830. front: {
  19831. height: math.unit(5 + 2 / 12, "feet"),
  19832. weight: math.unit(120, "lb"),
  19833. name: "Front",
  19834. image: {
  19835. source: "./media/characters/roxi/front.svg",
  19836. extra: 2028 / 1907,
  19837. bottom: 0.01
  19838. }
  19839. },
  19840. frontAlt: {
  19841. height: math.unit(5 + 2 / 12, "feet"),
  19842. weight: math.unit(120, "lb"),
  19843. name: "Front (Alt)",
  19844. image: {
  19845. source: "./media/characters/roxi/front-alt.svg",
  19846. extra: 1828 / 1798,
  19847. bottom: 0.01
  19848. }
  19849. },
  19850. sitting: {
  19851. height: math.unit(2.8, "feet"),
  19852. weight: math.unit(120, "lb"),
  19853. name: "Sitting",
  19854. image: {
  19855. source: "./media/characters/roxi/sitting.svg",
  19856. extra: 2660 / 2462,
  19857. bottom: 0.1
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(5 + 2 / 12, "feet"),
  19865. default: true
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19871. {
  19872. side: {
  19873. height: math.unit(55, "feet"),
  19874. weight: math.unit(153, "tons"),
  19875. name: "Side",
  19876. image: {
  19877. source: "./media/characters/shadow/side.svg",
  19878. extra: 701 / 628,
  19879. bottom: 0.02
  19880. }
  19881. },
  19882. flying: {
  19883. height: math.unit(145, "feet"),
  19884. weight: math.unit(153, "tons"),
  19885. name: "Flying",
  19886. image: {
  19887. source: "./media/characters/shadow/flying.svg"
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(55, "feet"),
  19895. default: true
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(6, "feet"),
  19904. weight: math.unit(200, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/marcie/front.svg",
  19908. extra: 960 / 876,
  19909. bottom: 58 / 1017.87
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Macro",
  19916. height: math.unit(1, "mile"),
  19917. default: true
  19918. },
  19919. ]
  19920. ))
  19921. characterMakers.push(() => makeCharacter(
  19922. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19923. {
  19924. front: {
  19925. height: math.unit(7, "feet"),
  19926. weight: math.unit(200, "lb"),
  19927. name: "Front",
  19928. image: {
  19929. source: "./media/characters/kachina/front.svg",
  19930. extra: 1290.68 / 1119,
  19931. bottom: 36.5 / 1327.18
  19932. }
  19933. },
  19934. },
  19935. [
  19936. {
  19937. name: "Normal",
  19938. height: math.unit(7, "feet"),
  19939. default: true
  19940. },
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19945. {
  19946. looking: {
  19947. height: math.unit(2, "meters"),
  19948. weight: math.unit(300, "kg"),
  19949. name: "Looking",
  19950. image: {
  19951. source: "./media/characters/kash/looking.svg",
  19952. extra: 474 / 344,
  19953. bottom: 0.03
  19954. }
  19955. },
  19956. side: {
  19957. height: math.unit(2, "meters"),
  19958. weight: math.unit(300, "kg"),
  19959. name: "Side",
  19960. image: {
  19961. source: "./media/characters/kash/side.svg",
  19962. extra: 302 / 251,
  19963. bottom: 0.03
  19964. }
  19965. },
  19966. front: {
  19967. height: math.unit(2, "meters"),
  19968. weight: math.unit(300, "kg"),
  19969. name: "Front",
  19970. image: {
  19971. source: "./media/characters/kash/front.svg",
  19972. extra: 495 / 360,
  19973. bottom: 0.015
  19974. }
  19975. },
  19976. },
  19977. [
  19978. {
  19979. name: "Normal",
  19980. height: math.unit(2, "meters"),
  19981. default: true
  19982. },
  19983. {
  19984. name: "Big",
  19985. height: math.unit(3, "meters")
  19986. },
  19987. {
  19988. name: "Large",
  19989. height: math.unit(5, "meters")
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19995. {
  19996. feeding: {
  19997. height: math.unit(6.7, "feet"),
  19998. weight: math.unit(350, "lb"),
  19999. name: "Feeding",
  20000. image: {
  20001. source: "./media/characters/lalim/feeding.svg",
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(6.7, "feet"),
  20009. default: true
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20015. {
  20016. front: {
  20017. height: math.unit(9.5, "feet"),
  20018. weight: math.unit(600, "lb"),
  20019. name: "Front",
  20020. image: {
  20021. source: "./media/characters/de'vout/front.svg",
  20022. extra: 1443 / 1328,
  20023. bottom: 0.025
  20024. }
  20025. },
  20026. back: {
  20027. height: math.unit(9.5, "feet"),
  20028. weight: math.unit(600, "lb"),
  20029. name: "Back",
  20030. image: {
  20031. source: "./media/characters/de'vout/back.svg",
  20032. extra: 1443 / 1328
  20033. }
  20034. },
  20035. frontDressed: {
  20036. height: math.unit(9.5, "feet"),
  20037. weight: math.unit(600, "lb"),
  20038. name: "Front (Dressed",
  20039. image: {
  20040. source: "./media/characters/de'vout/front-dressed.svg",
  20041. extra: 1443 / 1328,
  20042. bottom: 0.025
  20043. }
  20044. },
  20045. backDressed: {
  20046. height: math.unit(9.5, "feet"),
  20047. weight: math.unit(600, "lb"),
  20048. name: "Back (Dressed",
  20049. image: {
  20050. source: "./media/characters/de'vout/back-dressed.svg",
  20051. extra: 1443 / 1328
  20052. }
  20053. },
  20054. },
  20055. [
  20056. {
  20057. name: "Normal",
  20058. height: math.unit(9.5, "feet"),
  20059. default: true
  20060. },
  20061. ]
  20062. ))
  20063. characterMakers.push(() => makeCharacter(
  20064. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20065. {
  20066. front: {
  20067. height: math.unit(8, "feet"),
  20068. weight: math.unit(225, "lb"),
  20069. name: "Front",
  20070. image: {
  20071. source: "./media/characters/talana/front.svg",
  20072. extra: 1410 / 1300,
  20073. bottom: 0.015
  20074. }
  20075. },
  20076. frontDressed: {
  20077. height: math.unit(8, "feet"),
  20078. weight: math.unit(225, "lb"),
  20079. name: "Front (Dressed",
  20080. image: {
  20081. source: "./media/characters/talana/front-dressed.svg",
  20082. extra: 1410 / 1300,
  20083. bottom: 0.015
  20084. }
  20085. },
  20086. },
  20087. [
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(8, "feet"),
  20091. default: true
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20097. {
  20098. side: {
  20099. height: math.unit(7.2, "feet"),
  20100. weight: math.unit(150, "lb"),
  20101. name: "Side",
  20102. image: {
  20103. source: "./media/characters/xeauvok/side.svg",
  20104. extra: 1975 / 1523,
  20105. bottom: 0.07
  20106. }
  20107. },
  20108. },
  20109. [
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(7.2, "feet"),
  20113. default: true
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20119. {
  20120. side: {
  20121. height: math.unit(4, "meters"),
  20122. weight: math.unit(2200, "kg"),
  20123. name: "Side",
  20124. image: {
  20125. source: "./media/characters/zara/side.svg",
  20126. extra: 765/744,
  20127. bottom: 156/921
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Normal",
  20134. height: math.unit(4, "meters"),
  20135. default: true
  20136. },
  20137. ]
  20138. ))
  20139. characterMakers.push(() => makeCharacter(
  20140. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20141. {
  20142. side: {
  20143. height: math.unit(6, "feet"),
  20144. weight: math.unit(150, "lb"),
  20145. name: "Side",
  20146. image: {
  20147. source: "./media/characters/richard-dragon/side.svg",
  20148. extra: 845 / 340,
  20149. bottom: 0.017
  20150. }
  20151. },
  20152. maw: {
  20153. height: math.unit(2.97, "feet"),
  20154. name: "Maw",
  20155. image: {
  20156. source: "./media/characters/richard-dragon/maw.svg"
  20157. }
  20158. },
  20159. },
  20160. [
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20165. {
  20166. front: {
  20167. height: math.unit(4, "feet"),
  20168. weight: math.unit(100, "lb"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/richard-smeargle/front.svg",
  20172. extra: 2952 / 2820,
  20173. bottom: 0.028
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Normal",
  20180. height: math.unit(4, "feet"),
  20181. default: true
  20182. },
  20183. {
  20184. name: "Dynamax",
  20185. height: math.unit(20, "meters")
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20191. {
  20192. front: {
  20193. height: math.unit(6, "feet"),
  20194. weight: math.unit(110, "lb"),
  20195. name: "Front",
  20196. image: {
  20197. source: "./media/characters/klay/front.svg",
  20198. extra: 962 / 883,
  20199. bottom: 0.04
  20200. }
  20201. },
  20202. back: {
  20203. height: math.unit(6, "feet"),
  20204. weight: math.unit(110, "lb"),
  20205. name: "Back",
  20206. image: {
  20207. source: "./media/characters/klay/back.svg",
  20208. extra: 962 / 883
  20209. }
  20210. },
  20211. beans: {
  20212. height: math.unit(1.15, "feet"),
  20213. name: "Beans",
  20214. image: {
  20215. source: "./media/characters/klay/beans.svg"
  20216. }
  20217. },
  20218. },
  20219. [
  20220. {
  20221. name: "Micro",
  20222. height: math.unit(6, "inches")
  20223. },
  20224. {
  20225. name: "Mini",
  20226. height: math.unit(3, "feet")
  20227. },
  20228. {
  20229. name: "Normal",
  20230. height: math.unit(6, "feet"),
  20231. default: true
  20232. },
  20233. {
  20234. name: "Big",
  20235. height: math.unit(25, "feet")
  20236. },
  20237. {
  20238. name: "Macro",
  20239. height: math.unit(100, "feet")
  20240. },
  20241. {
  20242. name: "Megamacro",
  20243. height: math.unit(400, "feet")
  20244. },
  20245. ]
  20246. ))
  20247. characterMakers.push(() => makeCharacter(
  20248. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20249. {
  20250. front: {
  20251. height: math.unit(6, "feet"),
  20252. weight: math.unit(160, "lb"),
  20253. name: "Front",
  20254. image: {
  20255. source: "./media/characters/marcus/front.svg",
  20256. extra: 734 / 676,
  20257. bottom: 0.03
  20258. }
  20259. },
  20260. },
  20261. [
  20262. {
  20263. name: "Little",
  20264. height: math.unit(6, "feet")
  20265. },
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(110, "feet"),
  20269. default: true
  20270. },
  20271. {
  20272. name: "Macro",
  20273. height: math.unit(250, "feet")
  20274. },
  20275. {
  20276. name: "Megamacro",
  20277. height: math.unit(1000, "feet")
  20278. },
  20279. ]
  20280. ))
  20281. characterMakers.push(() => makeCharacter(
  20282. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20283. {
  20284. front: {
  20285. height: math.unit(7, "feet"),
  20286. weight: math.unit(275, "lb"),
  20287. name: "Front",
  20288. image: {
  20289. source: "./media/characters/claude-delroute/front.svg",
  20290. extra: 902/827,
  20291. bottom: 26/928
  20292. }
  20293. },
  20294. side: {
  20295. height: math.unit(7, "feet"),
  20296. weight: math.unit(275, "lb"),
  20297. name: "Side",
  20298. image: {
  20299. source: "./media/characters/claude-delroute/side.svg",
  20300. extra: 908/853,
  20301. bottom: 16/924
  20302. }
  20303. },
  20304. back: {
  20305. height: math.unit(7, "feet"),
  20306. weight: math.unit(275, "lb"),
  20307. name: "Back",
  20308. image: {
  20309. source: "./media/characters/claude-delroute/back.svg",
  20310. extra: 911/829,
  20311. bottom: 18/929
  20312. }
  20313. },
  20314. maw: {
  20315. height: math.unit(0.6407, "meters"),
  20316. name: "Maw",
  20317. image: {
  20318. source: "./media/characters/claude-delroute/maw.svg"
  20319. }
  20320. },
  20321. },
  20322. [
  20323. {
  20324. name: "Normal",
  20325. height: math.unit(7, "feet"),
  20326. default: true
  20327. },
  20328. {
  20329. name: "Lorge",
  20330. height: math.unit(20, "feet")
  20331. },
  20332. ]
  20333. ))
  20334. characterMakers.push(() => makeCharacter(
  20335. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20336. {
  20337. front: {
  20338. height: math.unit(8 + 4 / 12, "feet"),
  20339. weight: math.unit(600, "lb"),
  20340. name: "Front",
  20341. image: {
  20342. source: "./media/characters/dragonien/front.svg",
  20343. extra: 100 / 94,
  20344. bottom: 3.3 / 103.3445
  20345. }
  20346. },
  20347. back: {
  20348. height: math.unit(8 + 4 / 12, "feet"),
  20349. weight: math.unit(600, "lb"),
  20350. name: "Back",
  20351. image: {
  20352. source: "./media/characters/dragonien/back.svg",
  20353. extra: 776 / 746,
  20354. bottom: 6.4 / 782.0616
  20355. }
  20356. },
  20357. foot: {
  20358. height: math.unit(1.54, "feet"),
  20359. name: "Foot",
  20360. image: {
  20361. source: "./media/characters/dragonien/foot.svg",
  20362. }
  20363. },
  20364. },
  20365. [
  20366. {
  20367. name: "Normal",
  20368. height: math.unit(8 + 4 / 12, "feet"),
  20369. default: true
  20370. },
  20371. {
  20372. name: "Macro",
  20373. height: math.unit(200, "feet")
  20374. },
  20375. {
  20376. name: "Megamacro",
  20377. height: math.unit(1, "mile")
  20378. },
  20379. {
  20380. name: "Gigamacro",
  20381. height: math.unit(1000, "miles")
  20382. },
  20383. ]
  20384. ))
  20385. characterMakers.push(() => makeCharacter(
  20386. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20387. {
  20388. front: {
  20389. height: math.unit(5 + 2 / 12, "feet"),
  20390. weight: math.unit(110, "lb"),
  20391. name: "Front",
  20392. image: {
  20393. source: "./media/characters/desta/front.svg",
  20394. extra: 767 / 726,
  20395. bottom: 11.7 / 779
  20396. }
  20397. },
  20398. back: {
  20399. height: math.unit(5 + 2 / 12, "feet"),
  20400. weight: math.unit(110, "lb"),
  20401. name: "Back",
  20402. image: {
  20403. source: "./media/characters/desta/back.svg",
  20404. extra: 777 / 728,
  20405. bottom: 6 / 784
  20406. }
  20407. },
  20408. frontAlt: {
  20409. height: math.unit(5 + 2 / 12, "feet"),
  20410. weight: math.unit(110, "lb"),
  20411. name: "Front",
  20412. image: {
  20413. source: "./media/characters/desta/front-alt.svg",
  20414. extra: 1482 / 1417
  20415. }
  20416. },
  20417. side: {
  20418. height: math.unit(5 + 2 / 12, "feet"),
  20419. weight: math.unit(110, "lb"),
  20420. name: "Side",
  20421. image: {
  20422. source: "./media/characters/desta/side.svg",
  20423. extra: 2579 / 2491,
  20424. bottom: 0.053
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Micro",
  20431. height: math.unit(6, "inches")
  20432. },
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(5 + 2 / 12, "feet"),
  20436. default: true
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(62, "feet")
  20441. },
  20442. {
  20443. name: "Megamacro",
  20444. height: math.unit(1800, "feet")
  20445. },
  20446. ]
  20447. ))
  20448. characterMakers.push(() => makeCharacter(
  20449. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20450. {
  20451. front: {
  20452. height: math.unit(10, "feet"),
  20453. weight: math.unit(700, "lb"),
  20454. name: "Front",
  20455. image: {
  20456. source: "./media/characters/storm-alystar/front.svg",
  20457. extra: 2112 / 1898,
  20458. bottom: 0.034
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Micro",
  20465. height: math.unit(3.5, "inches")
  20466. },
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(10, "feet"),
  20470. default: true
  20471. },
  20472. {
  20473. name: "Macro",
  20474. height: math.unit(400, "feet")
  20475. },
  20476. {
  20477. name: "Deific",
  20478. height: math.unit(60, "miles")
  20479. },
  20480. ]
  20481. ))
  20482. characterMakers.push(() => makeCharacter(
  20483. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20484. {
  20485. front: {
  20486. height: math.unit(2.35, "meters"),
  20487. weight: math.unit(119, "kg"),
  20488. name: "Front",
  20489. image: {
  20490. source: "./media/characters/ilia/front.svg",
  20491. extra: 1285 / 1255,
  20492. bottom: 0.06
  20493. }
  20494. },
  20495. },
  20496. [
  20497. {
  20498. name: "Normal",
  20499. height: math.unit(2.35, "meters")
  20500. },
  20501. {
  20502. name: "Macro",
  20503. height: math.unit(140, "meters"),
  20504. default: true
  20505. },
  20506. {
  20507. name: "Megamacro",
  20508. height: math.unit(100, "miles")
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20514. {
  20515. front: {
  20516. height: math.unit(6 + 5 / 12, "feet"),
  20517. weight: math.unit(190, "lb"),
  20518. name: "Front",
  20519. image: {
  20520. source: "./media/characters/kingdead/front.svg",
  20521. extra: 1228 / 1177
  20522. }
  20523. },
  20524. },
  20525. [
  20526. {
  20527. name: "Micro",
  20528. height: math.unit(7, "inches")
  20529. },
  20530. {
  20531. name: "Normal",
  20532. height: math.unit(6 + 5 / 12, "feet")
  20533. },
  20534. {
  20535. name: "Macro",
  20536. height: math.unit(150, "feet"),
  20537. default: true
  20538. },
  20539. {
  20540. name: "Megamacro",
  20541. height: math.unit(200, "miles")
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20547. {
  20548. front: {
  20549. height: math.unit(8, "feet"),
  20550. weight: math.unit(600, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/kyrehx/front.svg",
  20554. extra: 1195 / 1095,
  20555. bottom: 0.034
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Micro",
  20562. height: math.unit(2, "inches")
  20563. },
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(8, "feet"),
  20567. default: true
  20568. },
  20569. {
  20570. name: "Macro",
  20571. height: math.unit(255, "feet")
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20577. {
  20578. front: {
  20579. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20580. weight: math.unit(184, "lb"),
  20581. name: "Front",
  20582. image: {
  20583. source: "./media/characters/xang/front.svg",
  20584. extra: 845 / 755
  20585. }
  20586. },
  20587. },
  20588. [
  20589. {
  20590. name: "Normal",
  20591. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20592. default: true
  20593. },
  20594. {
  20595. name: "Macro",
  20596. height: math.unit(0.935 * 146, "feet")
  20597. },
  20598. {
  20599. name: "Megamacro",
  20600. height: math.unit(0.935 * 3, "miles")
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20606. {
  20607. frontDressed: {
  20608. height: math.unit(5 + 7 / 12, "feet"),
  20609. weight: math.unit(140, "lb"),
  20610. name: "Front (Dressed)",
  20611. image: {
  20612. source: "./media/characters/doc-weardno/front-dressed.svg",
  20613. extra: 263 / 234
  20614. }
  20615. },
  20616. backDressed: {
  20617. height: math.unit(5 + 7 / 12, "feet"),
  20618. weight: math.unit(140, "lb"),
  20619. name: "Back (Dressed)",
  20620. image: {
  20621. source: "./media/characters/doc-weardno/back-dressed.svg",
  20622. extra: 266 / 238
  20623. }
  20624. },
  20625. front: {
  20626. height: math.unit(5 + 7 / 12, "feet"),
  20627. weight: math.unit(140, "lb"),
  20628. name: "Front",
  20629. image: {
  20630. source: "./media/characters/doc-weardno/front.svg",
  20631. extra: 254 / 233
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Micro",
  20638. height: math.unit(3, "inches")
  20639. },
  20640. {
  20641. name: "Normal",
  20642. height: math.unit(5 + 7 / 12, "feet"),
  20643. default: true
  20644. },
  20645. {
  20646. name: "Macro",
  20647. height: math.unit(25, "feet")
  20648. },
  20649. {
  20650. name: "Megamacro",
  20651. height: math.unit(2, "miles")
  20652. },
  20653. ]
  20654. ))
  20655. characterMakers.push(() => makeCharacter(
  20656. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20657. {
  20658. front: {
  20659. height: math.unit(6 + 2 / 12, "feet"),
  20660. weight: math.unit(153, "lb"),
  20661. name: "Front",
  20662. image: {
  20663. source: "./media/characters/seth-whilst/front.svg",
  20664. bottom: 0.07
  20665. }
  20666. },
  20667. },
  20668. [
  20669. {
  20670. name: "Micro",
  20671. height: math.unit(5, "inches")
  20672. },
  20673. {
  20674. name: "Normal",
  20675. height: math.unit(6 + 2 / 12, "feet"),
  20676. default: true
  20677. },
  20678. ]
  20679. ))
  20680. characterMakers.push(() => makeCharacter(
  20681. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20682. {
  20683. front: {
  20684. height: math.unit(3, "inches"),
  20685. weight: math.unit(8, "grams"),
  20686. name: "Front",
  20687. image: {
  20688. source: "./media/characters/pocket-jabari/front.svg",
  20689. extra: 1024 / 974,
  20690. bottom: 0.039
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Minimicro",
  20697. height: math.unit(8, "mm")
  20698. },
  20699. {
  20700. name: "Micro",
  20701. height: math.unit(3, "inches"),
  20702. default: true
  20703. },
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(3, "feet")
  20707. },
  20708. ]
  20709. ))
  20710. characterMakers.push(() => makeCharacter(
  20711. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20712. {
  20713. frontDressed: {
  20714. height: math.unit(15, "feet"),
  20715. weight: math.unit(3280, "lb"),
  20716. name: "Front (Dressed)",
  20717. image: {
  20718. source: "./media/characters/sapphy/front-dressed.svg",
  20719. extra: 1951/1654,
  20720. bottom: 194/2145
  20721. },
  20722. form: "anthro",
  20723. default: true
  20724. },
  20725. backDressed: {
  20726. height: math.unit(15, "feet"),
  20727. weight: math.unit(3280, "lb"),
  20728. name: "Back (Dressed)",
  20729. image: {
  20730. source: "./media/characters/sapphy/back-dressed.svg",
  20731. extra: 2058/1918,
  20732. bottom: 125/2183
  20733. },
  20734. form: "anthro"
  20735. },
  20736. frontNude: {
  20737. height: math.unit(15, "feet"),
  20738. weight: math.unit(3280, "lb"),
  20739. name: "Front (Nude)",
  20740. image: {
  20741. source: "./media/characters/sapphy/front-nude.svg",
  20742. extra: 1951/1654,
  20743. bottom: 194/2145
  20744. },
  20745. form: "anthro"
  20746. },
  20747. backNude: {
  20748. height: math.unit(15, "feet"),
  20749. weight: math.unit(3280, "lb"),
  20750. name: "Back (Nude)",
  20751. image: {
  20752. source: "./media/characters/sapphy/back-nude.svg",
  20753. extra: 2058/1918,
  20754. bottom: 125/2183
  20755. },
  20756. form: "anthro"
  20757. },
  20758. full: {
  20759. height: math.unit(15, "feet"),
  20760. weight: math.unit(3280, "lb"),
  20761. name: "Full",
  20762. image: {
  20763. source: "./media/characters/sapphy/full.svg",
  20764. extra: 1396/1317,
  20765. bottom: 44/1440
  20766. },
  20767. form: "anthro"
  20768. },
  20769. dick: {
  20770. height: math.unit(3.8, "feet"),
  20771. name: "Dick",
  20772. image: {
  20773. source: "./media/characters/sapphy/dick.svg"
  20774. },
  20775. form: "anthro"
  20776. },
  20777. feral: {
  20778. height: math.unit(35, "feet"),
  20779. weight: math.unit(160, "tons"),
  20780. name: "Feral",
  20781. image: {
  20782. source: "./media/characters/sapphy/feral.svg",
  20783. extra: 1050/573,
  20784. bottom: 60/1110
  20785. },
  20786. form: "feral",
  20787. default: true
  20788. },
  20789. },
  20790. [
  20791. {
  20792. name: "Normal",
  20793. height: math.unit(15, "feet"),
  20794. form: "anthro"
  20795. },
  20796. {
  20797. name: "Casual Macro",
  20798. height: math.unit(120, "feet"),
  20799. form: "anthro"
  20800. },
  20801. {
  20802. name: "Macro",
  20803. height: math.unit(2150, "feet"),
  20804. default: true,
  20805. form: "anthro"
  20806. },
  20807. {
  20808. name: "Megamacro",
  20809. height: math.unit(8, "miles"),
  20810. form: "anthro"
  20811. },
  20812. {
  20813. name: "Galaxy Mom",
  20814. height: math.unit(6, "megalightyears"),
  20815. form: "anthro"
  20816. },
  20817. {
  20818. name: "Normal",
  20819. height: math.unit(35, "feet"),
  20820. form: "feral",
  20821. default: true
  20822. },
  20823. {
  20824. name: "Macro",
  20825. height: math.unit(300, "feet"),
  20826. form: "feral"
  20827. },
  20828. {
  20829. name: "Galaxy Mom",
  20830. height: math.unit(10, "megalightyears"),
  20831. form: "feral"
  20832. },
  20833. ],
  20834. {
  20835. "anthro": {
  20836. name: "Anthro",
  20837. default: true
  20838. },
  20839. "feral": {
  20840. name: "Feral"
  20841. }
  20842. }
  20843. ))
  20844. characterMakers.push(() => makeCharacter(
  20845. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20846. {
  20847. hyenaFront: {
  20848. height: math.unit(6, "feet"),
  20849. weight: math.unit(190, "lb"),
  20850. name: "Front",
  20851. image: {
  20852. source: "./media/characters/kiro/hyena-front.svg",
  20853. extra: 927/839,
  20854. bottom: 91/1018
  20855. },
  20856. form: "hyena",
  20857. default: true
  20858. },
  20859. front: {
  20860. height: math.unit(6, "feet"),
  20861. weight: math.unit(170, "lb"),
  20862. name: "Front",
  20863. image: {
  20864. source: "./media/characters/kiro/front.svg",
  20865. extra: 1064 / 1012,
  20866. bottom: 0.052
  20867. },
  20868. form: "folf",
  20869. default: true
  20870. },
  20871. },
  20872. [
  20873. {
  20874. name: "Micro",
  20875. height: math.unit(6, "inches"),
  20876. form: "folf"
  20877. },
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(6, "feet"),
  20881. form: "folf",
  20882. default: true
  20883. },
  20884. {
  20885. name: "Macro",
  20886. height: math.unit(72, "feet"),
  20887. form: "folf"
  20888. },
  20889. {
  20890. name: "Micro",
  20891. height: math.unit(6, "inches"),
  20892. form: "hyena"
  20893. },
  20894. {
  20895. name: "Normal",
  20896. height: math.unit(6, "feet"),
  20897. form: "hyena",
  20898. default: true
  20899. },
  20900. {
  20901. name: "Macro",
  20902. height: math.unit(72, "feet"),
  20903. form: "hyena"
  20904. },
  20905. ],
  20906. {
  20907. "hyena": {
  20908. name: "Hyena",
  20909. default: true
  20910. },
  20911. "folf": {
  20912. name: "Folf",
  20913. },
  20914. }
  20915. ))
  20916. characterMakers.push(() => makeCharacter(
  20917. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20918. {
  20919. front: {
  20920. height: math.unit(5 + 9 / 12, "feet"),
  20921. weight: math.unit(175, "lb"),
  20922. name: "Front",
  20923. image: {
  20924. source: "./media/characters/irishfox/front.svg",
  20925. extra: 1912 / 1680,
  20926. bottom: 0.02
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Nano",
  20933. height: math.unit(1, "mm")
  20934. },
  20935. {
  20936. name: "Micro",
  20937. height: math.unit(2, "inches")
  20938. },
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(5 + 9 / 12, "feet"),
  20942. default: true
  20943. },
  20944. {
  20945. name: "Macro",
  20946. height: math.unit(45, "feet")
  20947. },
  20948. ]
  20949. ))
  20950. characterMakers.push(() => makeCharacter(
  20951. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20952. {
  20953. front: {
  20954. height: math.unit(6 + 1 / 12, "feet"),
  20955. weight: math.unit(75, "lb"),
  20956. name: "Front",
  20957. image: {
  20958. source: "./media/characters/aronai-sieyes/front.svg",
  20959. extra: 1532/1450,
  20960. bottom: 42/1574
  20961. }
  20962. },
  20963. side: {
  20964. height: math.unit(6 + 1 / 12, "feet"),
  20965. weight: math.unit(75, "lb"),
  20966. name: "Side",
  20967. image: {
  20968. source: "./media/characters/aronai-sieyes/side.svg",
  20969. extra: 1422/1365,
  20970. bottom: 148/1570
  20971. }
  20972. },
  20973. back: {
  20974. height: math.unit(6 + 1 / 12, "feet"),
  20975. weight: math.unit(75, "lb"),
  20976. name: "Back",
  20977. image: {
  20978. source: "./media/characters/aronai-sieyes/back.svg",
  20979. extra: 1526/1464,
  20980. bottom: 51/1577
  20981. }
  20982. },
  20983. dressed: {
  20984. height: math.unit(6 + 1 / 12, "feet"),
  20985. weight: math.unit(75, "lb"),
  20986. name: "Dressed",
  20987. image: {
  20988. source: "./media/characters/aronai-sieyes/dressed.svg",
  20989. extra: 1559/1483,
  20990. bottom: 39/1598
  20991. }
  20992. },
  20993. slit: {
  20994. height: math.unit(1.3, "feet"),
  20995. name: "Slit",
  20996. image: {
  20997. source: "./media/characters/aronai-sieyes/slit.svg"
  20998. }
  20999. },
  21000. slitSpread: {
  21001. height: math.unit(0.9, "feet"),
  21002. name: "Slit (Spread)",
  21003. image: {
  21004. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21005. }
  21006. },
  21007. rump: {
  21008. height: math.unit(1.3, "feet"),
  21009. name: "Rump",
  21010. image: {
  21011. source: "./media/characters/aronai-sieyes/rump.svg"
  21012. }
  21013. },
  21014. maw: {
  21015. height: math.unit(1.25, "feet"),
  21016. name: "Maw",
  21017. image: {
  21018. source: "./media/characters/aronai-sieyes/maw.svg"
  21019. }
  21020. },
  21021. feral: {
  21022. height: math.unit(18, "feet"),
  21023. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21024. name: "Feral",
  21025. image: {
  21026. source: "./media/characters/aronai-sieyes/feral.svg",
  21027. extra: 1530 / 1240,
  21028. bottom: 0.035
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Micro",
  21035. height: math.unit(2, "inches")
  21036. },
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(6 + 1 / 12, "feet"),
  21040. default: true
  21041. }
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(12, "feet"),
  21049. weight: math.unit(410, "kg"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/xuna/front.svg",
  21053. extra: 2184 / 1980
  21054. }
  21055. },
  21056. side: {
  21057. height: math.unit(12, "feet"),
  21058. weight: math.unit(410, "kg"),
  21059. name: "Side",
  21060. image: {
  21061. source: "./media/characters/xuna/side.svg",
  21062. extra: 2184 / 1980
  21063. }
  21064. },
  21065. back: {
  21066. height: math.unit(12, "feet"),
  21067. weight: math.unit(410, "kg"),
  21068. name: "Back",
  21069. image: {
  21070. source: "./media/characters/xuna/back.svg",
  21071. extra: 2184 / 1980
  21072. }
  21073. },
  21074. },
  21075. [
  21076. {
  21077. name: "Nano glow",
  21078. height: math.unit(10, "nm")
  21079. },
  21080. {
  21081. name: "Micro floof",
  21082. height: math.unit(0.3, "m")
  21083. },
  21084. {
  21085. name: "Huggable softy boi",
  21086. height: math.unit(3.6576, "m"),
  21087. default: true
  21088. },
  21089. {
  21090. name: "Admirable floof",
  21091. height: math.unit(80, "meters")
  21092. },
  21093. {
  21094. name: "Gentle macro",
  21095. height: math.unit(300, "meters")
  21096. },
  21097. {
  21098. name: "Very careful floof",
  21099. height: math.unit(3200, "meters")
  21100. },
  21101. {
  21102. name: "The mega floof",
  21103. height: math.unit(36000, "meters")
  21104. },
  21105. {
  21106. name: "Giga-fur-Wicker",
  21107. height: math.unit(4800000, "meters")
  21108. },
  21109. {
  21110. name: "Licky world",
  21111. height: math.unit(20000000, "meters")
  21112. },
  21113. {
  21114. name: "Floofy cyan sun",
  21115. height: math.unit(1500000000, "meters")
  21116. },
  21117. {
  21118. name: "Milky Wicker",
  21119. height: math.unit(1000000000000000000000, "meters")
  21120. },
  21121. {
  21122. name: "The observing Wicker",
  21123. height: math.unit(999999999999999999999999999, "meters")
  21124. },
  21125. ]
  21126. ))
  21127. characterMakers.push(() => makeCharacter(
  21128. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21129. {
  21130. front: {
  21131. height: math.unit(5 + 9 / 12, "feet"),
  21132. weight: math.unit(150, "lb"),
  21133. name: "Front",
  21134. image: {
  21135. source: "./media/characters/arokha-sieyes/front.svg",
  21136. extra: 1425 / 1284,
  21137. bottom: 0.05
  21138. }
  21139. },
  21140. },
  21141. [
  21142. {
  21143. name: "Normal",
  21144. height: math.unit(5 + 9 / 12, "feet")
  21145. },
  21146. {
  21147. name: "Macro",
  21148. height: math.unit(30, "meters"),
  21149. default: true
  21150. },
  21151. ]
  21152. ))
  21153. characterMakers.push(() => makeCharacter(
  21154. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21155. {
  21156. front: {
  21157. height: math.unit(6, "feet"),
  21158. weight: math.unit(180, "lb"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/arokh-sieyes/front.svg",
  21162. extra: 1830 / 1769,
  21163. bottom: 0.01
  21164. }
  21165. },
  21166. },
  21167. [
  21168. {
  21169. name: "Normal",
  21170. height: math.unit(6, "feet")
  21171. },
  21172. {
  21173. name: "Macro",
  21174. height: math.unit(30, "meters"),
  21175. default: true
  21176. },
  21177. ]
  21178. ))
  21179. characterMakers.push(() => makeCharacter(
  21180. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21181. {
  21182. side: {
  21183. height: math.unit(13 + 1 / 12, "feet"),
  21184. weight: math.unit(8.5, "tonnes"),
  21185. preyCapacity: math.unit(36, "people"),
  21186. name: "Side",
  21187. image: {
  21188. source: "./media/characters/goldeneye/side.svg",
  21189. extra: 1139/741,
  21190. bottom: 98/1237
  21191. }
  21192. },
  21193. front: {
  21194. height: math.unit(5.1, "feet"),
  21195. weight: math.unit(8.5, "tonnes"),
  21196. preyCapacity: math.unit(36, "people"),
  21197. name: "Front",
  21198. image: {
  21199. source: "./media/characters/goldeneye/front.svg",
  21200. extra: 635/365,
  21201. bottom: 598/1233
  21202. }
  21203. },
  21204. maw: {
  21205. height: math.unit(6.6, "feet"),
  21206. name: "Maw",
  21207. image: {
  21208. source: "./media/characters/goldeneye/maw.svg"
  21209. }
  21210. },
  21211. headFront: {
  21212. height: math.unit(8, "feet"),
  21213. name: "Head (Front)",
  21214. image: {
  21215. source: "./media/characters/goldeneye/head-front.svg"
  21216. }
  21217. },
  21218. headSide: {
  21219. height: math.unit(6, "feet"),
  21220. name: "Head (Side)",
  21221. image: {
  21222. source: "./media/characters/goldeneye/head-side.svg"
  21223. }
  21224. },
  21225. headBack: {
  21226. height: math.unit(8, "feet"),
  21227. name: "Head (Back)",
  21228. image: {
  21229. source: "./media/characters/goldeneye/head-back.svg"
  21230. }
  21231. },
  21232. paw: {
  21233. height: math.unit(3.4, "feet"),
  21234. name: "Paw",
  21235. image: {
  21236. source: "./media/characters/goldeneye/paw.svg"
  21237. }
  21238. },
  21239. toering: {
  21240. height: math.unit(0.45, "feet"),
  21241. name: "Toering",
  21242. image: {
  21243. source: "./media/characters/goldeneye/toering.svg"
  21244. }
  21245. },
  21246. eyes: {
  21247. height: math.unit(0.5, "feet"),
  21248. name: "Eyes",
  21249. image: {
  21250. source: "./media/characters/goldeneye/eyes.svg"
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Normal",
  21257. height: math.unit(13 + 1 / 12, "feet"),
  21258. default: true
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21264. {
  21265. front: {
  21266. height: math.unit(6 + 1 / 12, "feet"),
  21267. weight: math.unit(210, "lb"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/leonardo-lycheborne/front.svg",
  21271. extra: 776/723,
  21272. bottom: 34/810
  21273. }
  21274. },
  21275. side: {
  21276. height: math.unit(6 + 1 / 12, "feet"),
  21277. weight: math.unit(210, "lb"),
  21278. name: "Side",
  21279. image: {
  21280. source: "./media/characters/leonardo-lycheborne/side.svg",
  21281. extra: 780/728,
  21282. bottom: 12/792
  21283. }
  21284. },
  21285. back: {
  21286. height: math.unit(6 + 1 / 12, "feet"),
  21287. weight: math.unit(210, "lb"),
  21288. name: "Back",
  21289. image: {
  21290. source: "./media/characters/leonardo-lycheborne/back.svg",
  21291. extra: 775/721,
  21292. bottom: 17/792
  21293. }
  21294. },
  21295. hand: {
  21296. height: math.unit(1.08, "feet"),
  21297. name: "Hand",
  21298. image: {
  21299. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21300. }
  21301. },
  21302. foot: {
  21303. height: math.unit(1.32, "feet"),
  21304. name: "Foot",
  21305. image: {
  21306. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21307. }
  21308. },
  21309. maw: {
  21310. height: math.unit(1, "feet"),
  21311. name: "Maw",
  21312. image: {
  21313. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21314. }
  21315. },
  21316. were: {
  21317. height: math.unit(20, "feet"),
  21318. weight: math.unit(7800, "lb"),
  21319. name: "Were",
  21320. image: {
  21321. source: "./media/characters/leonardo-lycheborne/were.svg",
  21322. extra: 1224/1165,
  21323. bottom: 72/1296
  21324. }
  21325. },
  21326. feral: {
  21327. height: math.unit(7.5, "feet"),
  21328. weight: math.unit(600, "lb"),
  21329. name: "Feral",
  21330. image: {
  21331. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21332. extra: 797/702,
  21333. bottom: 139/936
  21334. }
  21335. },
  21336. taur: {
  21337. height: math.unit(11, "feet"),
  21338. weight: math.unit(3300, "lb"),
  21339. name: "Taur",
  21340. image: {
  21341. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21342. extra: 1271/1197,
  21343. bottom: 47/1318
  21344. }
  21345. },
  21346. barghest: {
  21347. height: math.unit(11, "feet"),
  21348. weight: math.unit(1300, "lb"),
  21349. name: "Barghest",
  21350. image: {
  21351. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21352. extra: 1291/1204,
  21353. bottom: 37/1328
  21354. }
  21355. },
  21356. dick: {
  21357. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21358. name: "Dick",
  21359. image: {
  21360. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21361. }
  21362. },
  21363. dickWere: {
  21364. height: math.unit((20) / 3.8, "feet"),
  21365. name: "Dick (Were)",
  21366. image: {
  21367. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(6 + 1 / 12, "feet"),
  21375. default: true
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21381. {
  21382. front: {
  21383. height: math.unit(10, "feet"),
  21384. weight: math.unit(350, "lb"),
  21385. name: "Front",
  21386. image: {
  21387. source: "./media/characters/jet/front.svg",
  21388. extra: 2050 / 1980,
  21389. bottom: 0.013
  21390. }
  21391. },
  21392. back: {
  21393. height: math.unit(10, "feet"),
  21394. weight: math.unit(350, "lb"),
  21395. name: "Back",
  21396. image: {
  21397. source: "./media/characters/jet/back.svg",
  21398. extra: 2050 / 1980,
  21399. bottom: 0.013
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Micro",
  21406. height: math.unit(6, "inches")
  21407. },
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(10, "feet"),
  21411. default: true
  21412. },
  21413. {
  21414. name: "Macro",
  21415. height: math.unit(100, "feet")
  21416. },
  21417. ]
  21418. ))
  21419. characterMakers.push(() => makeCharacter(
  21420. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21421. {
  21422. front: {
  21423. height: math.unit(15, "feet"),
  21424. weight: math.unit(2800, "lb"),
  21425. name: "Front",
  21426. image: {
  21427. source: "./media/characters/tanarath/front.svg",
  21428. extra: 2392 / 2220,
  21429. bottom: 0.03
  21430. }
  21431. },
  21432. back: {
  21433. height: math.unit(15, "feet"),
  21434. weight: math.unit(2800, "lb"),
  21435. name: "Back",
  21436. image: {
  21437. source: "./media/characters/tanarath/back.svg",
  21438. extra: 2392 / 2220,
  21439. bottom: 0.03
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(15, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(7 + 1 / 12, "feet"),
  21456. weight: math.unit(175, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/patty-cattybatty/front.svg",
  21460. extra: 908 / 874,
  21461. bottom: 0.025
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Micro",
  21468. height: math.unit(1, "inch")
  21469. },
  21470. {
  21471. name: "Normal",
  21472. height: math.unit(7 + 1 / 12, "feet")
  21473. },
  21474. {
  21475. name: "Mini Macro",
  21476. height: math.unit(155, "feet")
  21477. },
  21478. {
  21479. name: "Macro",
  21480. height: math.unit(1077, "feet")
  21481. },
  21482. {
  21483. name: "Mega Macro",
  21484. height: math.unit(47650, "feet"),
  21485. default: true
  21486. },
  21487. {
  21488. name: "Giga Macro",
  21489. height: math.unit(440, "miles")
  21490. },
  21491. {
  21492. name: "Tera Macro",
  21493. height: math.unit(8700, "miles")
  21494. },
  21495. {
  21496. name: "Planetary Macro",
  21497. height: math.unit(32700, "miles")
  21498. },
  21499. {
  21500. name: "Solar Macro",
  21501. height: math.unit(550000, "miles")
  21502. },
  21503. {
  21504. name: "Celestial Macro",
  21505. height: math.unit(2.5, "AU")
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(4 + 5 / 12, "feet"),
  21514. weight: math.unit(90, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/cappu/front.svg",
  21518. extra: 1247 / 1152,
  21519. bottom: 0.012
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(4 + 5 / 12, "feet"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21533. {
  21534. frontDressed: {
  21535. height: math.unit(70, "cm"),
  21536. weight: math.unit(6, "kg"),
  21537. name: "Front (Dressed)",
  21538. image: {
  21539. source: "./media/characters/sebi/front-dressed.svg",
  21540. extra: 713.5 / 686.5,
  21541. bottom: 0.003
  21542. }
  21543. },
  21544. front: {
  21545. height: math.unit(70, "cm"),
  21546. weight: math.unit(5, "kg"),
  21547. name: "Front",
  21548. image: {
  21549. source: "./media/characters/sebi/front.svg",
  21550. extra: 713.5 / 686.5,
  21551. bottom: 0.003
  21552. }
  21553. }
  21554. },
  21555. [
  21556. {
  21557. name: "Normal",
  21558. height: math.unit(70, "cm"),
  21559. default: true
  21560. },
  21561. {
  21562. name: "Macro",
  21563. height: math.unit(8, "meters")
  21564. },
  21565. ]
  21566. ))
  21567. characterMakers.push(() => makeCharacter(
  21568. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21569. {
  21570. front: {
  21571. height: math.unit(6, "feet"),
  21572. weight: math.unit(150, "lb"),
  21573. name: "Front",
  21574. image: {
  21575. source: "./media/characters/typhek/front.svg",
  21576. extra: 1948 / 1929,
  21577. bottom: 0.025
  21578. }
  21579. },
  21580. side: {
  21581. height: math.unit(6, "feet"),
  21582. weight: math.unit(150, "lb"),
  21583. name: "Side",
  21584. image: {
  21585. source: "./media/characters/typhek/side.svg",
  21586. extra: 2034 / 2010,
  21587. bottom: 0.003
  21588. }
  21589. },
  21590. back: {
  21591. height: math.unit(6, "feet"),
  21592. weight: math.unit(150, "lb"),
  21593. name: "Back",
  21594. image: {
  21595. source: "./media/characters/typhek/back.svg",
  21596. extra: 2005 / 1978,
  21597. bottom: 0.004
  21598. }
  21599. },
  21600. palm: {
  21601. height: math.unit(1.2, "feet"),
  21602. name: "Palm",
  21603. image: {
  21604. source: "./media/characters/typhek/palm.svg"
  21605. }
  21606. },
  21607. fist: {
  21608. height: math.unit(1.1, "feet"),
  21609. name: "Fist",
  21610. image: {
  21611. source: "./media/characters/typhek/fist.svg"
  21612. }
  21613. },
  21614. foot: {
  21615. height: math.unit(1.57, "feet"),
  21616. name: "Foot",
  21617. image: {
  21618. source: "./media/characters/typhek/foot.svg"
  21619. }
  21620. },
  21621. sole: {
  21622. height: math.unit(2.05, "feet"),
  21623. name: "Sole",
  21624. image: {
  21625. source: "./media/characters/typhek/sole.svg"
  21626. }
  21627. },
  21628. },
  21629. [
  21630. {
  21631. name: "Macro",
  21632. height: math.unit(40, "stories"),
  21633. default: true
  21634. },
  21635. {
  21636. name: "Megamacro",
  21637. height: math.unit(1, "mile")
  21638. },
  21639. {
  21640. name: "Gigamacro",
  21641. height: math.unit(4000, "solarradii")
  21642. },
  21643. {
  21644. name: "Universal",
  21645. height: math.unit(1.1, "universes")
  21646. }
  21647. ]
  21648. ))
  21649. characterMakers.push(() => makeCharacter(
  21650. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21651. {
  21652. side: {
  21653. height: math.unit(5 + 7 / 12, "feet"),
  21654. weight: math.unit(150, "lb"),
  21655. name: "Side",
  21656. image: {
  21657. source: "./media/characters/kassy/side.svg",
  21658. extra: 1280 / 1225,
  21659. bottom: 0.002
  21660. }
  21661. },
  21662. front: {
  21663. height: math.unit(5 + 7 / 12, "feet"),
  21664. weight: math.unit(150, "lb"),
  21665. name: "Front",
  21666. image: {
  21667. source: "./media/characters/kassy/front.svg",
  21668. extra: 1280 / 1225,
  21669. bottom: 0.025
  21670. }
  21671. },
  21672. back: {
  21673. height: math.unit(5 + 7 / 12, "feet"),
  21674. weight: math.unit(150, "lb"),
  21675. name: "Back",
  21676. image: {
  21677. source: "./media/characters/kassy/back.svg",
  21678. extra: 1280 / 1225,
  21679. bottom: 0.002
  21680. }
  21681. },
  21682. foot: {
  21683. height: math.unit(1.266, "feet"),
  21684. name: "Foot",
  21685. image: {
  21686. source: "./media/characters/kassy/foot.svg"
  21687. }
  21688. },
  21689. },
  21690. [
  21691. {
  21692. name: "Normal",
  21693. height: math.unit(5 + 7 / 12, "feet")
  21694. },
  21695. {
  21696. name: "Macro",
  21697. height: math.unit(137, "feet"),
  21698. default: true
  21699. },
  21700. {
  21701. name: "Megamacro",
  21702. height: math.unit(1, "mile")
  21703. },
  21704. ]
  21705. ))
  21706. characterMakers.push(() => makeCharacter(
  21707. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21708. {
  21709. front: {
  21710. height: math.unit(6 + 1 / 12, "feet"),
  21711. weight: math.unit(200, "lb"),
  21712. name: "Front",
  21713. image: {
  21714. source: "./media/characters/neil/front.svg",
  21715. extra: 1326 / 1250,
  21716. bottom: 0.023
  21717. }
  21718. },
  21719. },
  21720. [
  21721. {
  21722. name: "Normal",
  21723. height: math.unit(6 + 1 / 12, "feet"),
  21724. default: true
  21725. },
  21726. {
  21727. name: "Macro",
  21728. height: math.unit(200, "feet")
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21734. {
  21735. front: {
  21736. height: math.unit(5 + 9 / 12, "feet"),
  21737. weight: math.unit(190, "lb"),
  21738. name: "Front",
  21739. image: {
  21740. source: "./media/characters/atticus/front.svg",
  21741. extra: 2934 / 2785,
  21742. bottom: 0.025
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Normal",
  21749. height: math.unit(5 + 9 / 12, "feet"),
  21750. default: true
  21751. },
  21752. {
  21753. name: "Macro",
  21754. height: math.unit(180, "feet")
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21760. {
  21761. side: {
  21762. height: math.unit(9, "feet"),
  21763. weight: math.unit(650, "lb"),
  21764. name: "Side",
  21765. image: {
  21766. source: "./media/characters/milo/side.svg",
  21767. extra: 2644 / 2310,
  21768. bottom: 0.032
  21769. }
  21770. },
  21771. },
  21772. [
  21773. {
  21774. name: "Normal",
  21775. height: math.unit(9, "feet"),
  21776. default: true
  21777. },
  21778. {
  21779. name: "Macro",
  21780. height: math.unit(300, "feet")
  21781. },
  21782. ]
  21783. ))
  21784. characterMakers.push(() => makeCharacter(
  21785. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21786. {
  21787. side: {
  21788. height: math.unit(8, "meters"),
  21789. weight: math.unit(90000, "kg"),
  21790. name: "Side",
  21791. image: {
  21792. source: "./media/characters/ijzer/side.svg",
  21793. extra: 2756 / 1600,
  21794. bottom: 0.01
  21795. }
  21796. },
  21797. },
  21798. [
  21799. {
  21800. name: "Small",
  21801. height: math.unit(3, "meters")
  21802. },
  21803. {
  21804. name: "Normal",
  21805. height: math.unit(8, "meters"),
  21806. default: true
  21807. },
  21808. {
  21809. name: "Normal+",
  21810. height: math.unit(10, "meters")
  21811. },
  21812. {
  21813. name: "Bigger",
  21814. height: math.unit(24, "meters")
  21815. },
  21816. {
  21817. name: "Huge",
  21818. height: math.unit(80, "meters")
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21824. {
  21825. front: {
  21826. height: math.unit(6 + 2 / 12, "feet"),
  21827. weight: math.unit(153, "lb"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/luca-cervicum/front.svg",
  21831. extra: 370 / 327,
  21832. bottom: 0.015
  21833. }
  21834. },
  21835. back: {
  21836. height: math.unit(6 + 2 / 12, "feet"),
  21837. weight: math.unit(153, "lb"),
  21838. name: "Back",
  21839. image: {
  21840. source: "./media/characters/luca-cervicum/back.svg",
  21841. extra: 367 / 333,
  21842. bottom: 0.005
  21843. }
  21844. },
  21845. frontGear: {
  21846. height: math.unit(6 + 2 / 12, "feet"),
  21847. weight: math.unit(173, "lb"),
  21848. name: "Front (Gear)",
  21849. image: {
  21850. source: "./media/characters/luca-cervicum/front-gear.svg",
  21851. extra: 377 / 333,
  21852. bottom: 0.006
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Normal",
  21859. height: math.unit(6 + 2 / 12, "feet"),
  21860. default: true
  21861. },
  21862. ]
  21863. ))
  21864. characterMakers.push(() => makeCharacter(
  21865. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21866. {
  21867. front: {
  21868. height: math.unit(6 + 1 / 12, "feet"),
  21869. weight: math.unit(304, "lb"),
  21870. name: "Front",
  21871. image: {
  21872. source: "./media/characters/oliver/front.svg",
  21873. extra: 157 / 143,
  21874. bottom: 0.08
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Normal",
  21881. height: math.unit(6 + 1 / 12, "feet"),
  21882. default: true
  21883. },
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21888. {
  21889. front: {
  21890. height: math.unit(5 + 7 / 12, "feet"),
  21891. weight: math.unit(140, "lb"),
  21892. name: "Front",
  21893. image: {
  21894. source: "./media/characters/shane/front.svg",
  21895. extra: 304 / 289,
  21896. bottom: 0.005
  21897. }
  21898. },
  21899. },
  21900. [
  21901. {
  21902. name: "Normal",
  21903. height: math.unit(5 + 7 / 12, "feet"),
  21904. default: true
  21905. },
  21906. ]
  21907. ))
  21908. characterMakers.push(() => makeCharacter(
  21909. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21910. {
  21911. front: {
  21912. height: math.unit(5 + 9 / 12, "feet"),
  21913. weight: math.unit(178, "lb"),
  21914. name: "Front",
  21915. image: {
  21916. source: "./media/characters/shin/front.svg",
  21917. extra: 159 / 151,
  21918. bottom: 0.015
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Normal",
  21925. height: math.unit(5 + 9 / 12, "feet"),
  21926. default: true
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21932. {
  21933. front: {
  21934. height: math.unit(5 + 10 / 12, "feet"),
  21935. weight: math.unit(168, "lb"),
  21936. name: "Front",
  21937. image: {
  21938. source: "./media/characters/xerxes/front.svg",
  21939. extra: 282 / 260,
  21940. bottom: 0.045
  21941. }
  21942. },
  21943. },
  21944. [
  21945. {
  21946. name: "Normal",
  21947. height: math.unit(5 + 10 / 12, "feet"),
  21948. default: true
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21954. {
  21955. front: {
  21956. height: math.unit(6 + 7 / 12, "feet"),
  21957. weight: math.unit(208, "lb"),
  21958. name: "Front",
  21959. image: {
  21960. source: "./media/characters/chaska/front.svg",
  21961. extra: 332 / 319,
  21962. bottom: 0.015
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Normal",
  21969. height: math.unit(6 + 7 / 12, "feet"),
  21970. default: true
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(5 + 8 / 12, "feet"),
  21979. weight: math.unit(208, "lb"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/enuk/front.svg",
  21983. extra: 437 / 406,
  21984. bottom: 0.02
  21985. }
  21986. },
  21987. },
  21988. [
  21989. {
  21990. name: "Normal",
  21991. height: math.unit(5 + 8 / 12, "feet"),
  21992. default: true
  21993. },
  21994. ]
  21995. ))
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21998. {
  21999. front: {
  22000. height: math.unit(5 + 10 / 12, "feet"),
  22001. weight: math.unit(252, "lb"),
  22002. name: "Front",
  22003. image: {
  22004. source: "./media/characters/bruun/front.svg",
  22005. extra: 197 / 187,
  22006. bottom: 0.012
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Normal",
  22013. height: math.unit(5 + 10 / 12, "feet"),
  22014. default: true
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(6 + 10 / 12, "feet"),
  22023. weight: math.unit(255, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/alexeev/front.svg",
  22027. extra: 213 / 200,
  22028. bottom: 0.05
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Normal",
  22035. height: math.unit(6 + 10 / 12, "feet"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(2 + 8 / 12, "feet"),
  22045. weight: math.unit(22, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/evelyn/front.svg",
  22049. extra: 208 / 180
  22050. }
  22051. },
  22052. },
  22053. [
  22054. {
  22055. name: "Normal",
  22056. height: math.unit(2 + 8 / 12, "feet"),
  22057. default: true
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22063. {
  22064. front: {
  22065. height: math.unit(5 + 9 / 12, "feet"),
  22066. weight: math.unit(139, "lb"),
  22067. name: "Front",
  22068. image: {
  22069. source: "./media/characters/inca/front.svg",
  22070. extra: 294 / 291,
  22071. bottom: 0.03
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(5 + 9 / 12, "feet"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22085. {
  22086. front: {
  22087. height: math.unit(6 + 3 / 12, "feet"),
  22088. weight: math.unit(185, "lb"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/mera/front.svg",
  22092. extra: 291 / 277,
  22093. bottom: 0.03
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(6 + 3 / 12, "feet"),
  22101. default: true
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22107. {
  22108. front: {
  22109. height: math.unit(6 + 7 / 12, "feet"),
  22110. weight: math.unit(160, "lb"),
  22111. name: "Front",
  22112. image: {
  22113. source: "./media/characters/ceres/front.svg",
  22114. extra: 1023 / 950,
  22115. bottom: 0.027
  22116. }
  22117. },
  22118. back: {
  22119. height: math.unit(6 + 7 / 12, "feet"),
  22120. weight: math.unit(160, "lb"),
  22121. name: "Back",
  22122. image: {
  22123. source: "./media/characters/ceres/back.svg",
  22124. extra: 1023 / 950
  22125. }
  22126. },
  22127. },
  22128. [
  22129. {
  22130. name: "Normal",
  22131. height: math.unit(6 + 7 / 12, "feet"),
  22132. default: true
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22138. {
  22139. front: {
  22140. height: math.unit(5 + 10 / 12, "feet"),
  22141. weight: math.unit(150, "lb"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/kris/front.svg",
  22145. extra: 885 / 803,
  22146. bottom: 0.03
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Normal",
  22153. height: math.unit(5 + 10 / 12, "feet"),
  22154. default: true
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22160. {
  22161. dragon_front: {
  22162. height: math.unit(5, "feet"),
  22163. name: "Front",
  22164. image: {
  22165. source: "./media/characters/taluthus/dragon-front.svg",
  22166. extra: 1203/1098,
  22167. bottom: 46/1249
  22168. },
  22169. form: "dragon",
  22170. default: true
  22171. },
  22172. dragon_maw: {
  22173. height: math.unit(2.35, "feet"),
  22174. name: "Maw",
  22175. image: {
  22176. source: "./media/characters/taluthus/dragon-maw.svg"
  22177. },
  22178. form: "dragon",
  22179. },
  22180. kitsune_front: {
  22181. height: math.unit(7, "feet"),
  22182. name: "Front",
  22183. image: {
  22184. source: "./media/characters/taluthus/kitsune-front.svg",
  22185. extra: 900/841,
  22186. bottom: 65/965
  22187. },
  22188. form: "kitsune",
  22189. default: true
  22190. },
  22191. },
  22192. [
  22193. {
  22194. name: "Normal",
  22195. height: math.unit(5, "feet"),
  22196. form: "dragon",
  22197. default: true,
  22198. },
  22199. {
  22200. name: "Normal",
  22201. height: math.unit(7, "feet"),
  22202. form: "kitsune",
  22203. default: true
  22204. },
  22205. {
  22206. name: "Macro",
  22207. height: math.unit(300, "feet"),
  22208. allForms: true
  22209. },
  22210. ],
  22211. {
  22212. "dragon": {
  22213. name: "Dragon",
  22214. default: true
  22215. },
  22216. "kitsune": {
  22217. name: "Kitsune",
  22218. },
  22219. }
  22220. ))
  22221. characterMakers.push(() => makeCharacter(
  22222. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22223. {
  22224. front: {
  22225. height: math.unit(5 + 9 / 12, "feet"),
  22226. weight: math.unit(145, "lb"),
  22227. name: "Front",
  22228. image: {
  22229. source: "./media/characters/dawn/front.svg",
  22230. extra: 2094 / 2016,
  22231. bottom: 0.025
  22232. }
  22233. },
  22234. back: {
  22235. height: math.unit(5 + 9 / 12, "feet"),
  22236. weight: math.unit(160, "lb"),
  22237. name: "Back",
  22238. image: {
  22239. source: "./media/characters/dawn/back.svg",
  22240. extra: 2112 / 2080,
  22241. bottom: 0.005
  22242. }
  22243. },
  22244. },
  22245. [
  22246. {
  22247. name: "Normal",
  22248. height: math.unit(6 + 7 / 12, "feet"),
  22249. default: true
  22250. },
  22251. ]
  22252. ))
  22253. characterMakers.push(() => makeCharacter(
  22254. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22255. {
  22256. anthro: {
  22257. height: math.unit(8 + 3 / 12, "feet"),
  22258. weight: math.unit(450, "lb"),
  22259. name: "Anthro",
  22260. image: {
  22261. source: "./media/characters/arador/anthro.svg",
  22262. extra: 1835 / 1718,
  22263. bottom: 0.025
  22264. }
  22265. },
  22266. feral: {
  22267. height: math.unit(4, "feet"),
  22268. weight: math.unit(200, "lb"),
  22269. name: "Feral",
  22270. image: {
  22271. source: "./media/characters/arador/feral.svg",
  22272. extra: 1683 / 1514,
  22273. bottom: 0.07
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Normal",
  22280. height: math.unit(8 + 3 / 12, "feet")
  22281. },
  22282. {
  22283. name: "Macro",
  22284. height: math.unit(82.5, "feet"),
  22285. default: true
  22286. },
  22287. ]
  22288. ))
  22289. characterMakers.push(() => makeCharacter(
  22290. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22291. {
  22292. front: {
  22293. height: math.unit(5 + 10 / 12, "feet"),
  22294. weight: math.unit(125, "lb"),
  22295. name: "Front",
  22296. image: {
  22297. source: "./media/characters/dharsi/front.svg",
  22298. extra: 716 / 630,
  22299. bottom: 0.035
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Nano",
  22306. height: math.unit(100, "nm")
  22307. },
  22308. {
  22309. name: "Micro",
  22310. height: math.unit(2, "inches")
  22311. },
  22312. {
  22313. name: "Normal",
  22314. height: math.unit(5 + 10 / 12, "feet"),
  22315. default: true
  22316. },
  22317. {
  22318. name: "Macro",
  22319. height: math.unit(1000, "feet")
  22320. },
  22321. {
  22322. name: "Megamacro",
  22323. height: math.unit(10, "miles")
  22324. },
  22325. {
  22326. name: "Gigamacro",
  22327. height: math.unit(3000, "miles")
  22328. },
  22329. {
  22330. name: "Teramacro",
  22331. height: math.unit(500000, "miles")
  22332. },
  22333. {
  22334. name: "Teramacro+",
  22335. height: math.unit(30, "galaxies")
  22336. },
  22337. ]
  22338. ))
  22339. characterMakers.push(() => makeCharacter(
  22340. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22341. {
  22342. front: {
  22343. height: math.unit(6, "feet"),
  22344. weight: math.unit(150, "lb"),
  22345. name: "Front",
  22346. image: {
  22347. source: "./media/characters/deathy/front.svg",
  22348. extra: 1552 / 1463,
  22349. bottom: 0.025
  22350. }
  22351. },
  22352. side: {
  22353. height: math.unit(6, "feet"),
  22354. weight: math.unit(150, "lb"),
  22355. name: "Side",
  22356. image: {
  22357. source: "./media/characters/deathy/side.svg",
  22358. extra: 1604 / 1455,
  22359. bottom: 0.025
  22360. }
  22361. },
  22362. back: {
  22363. height: math.unit(6, "feet"),
  22364. weight: math.unit(150, "lb"),
  22365. name: "Back",
  22366. image: {
  22367. source: "./media/characters/deathy/back.svg",
  22368. extra: 1580 / 1463,
  22369. bottom: 0.005
  22370. }
  22371. },
  22372. },
  22373. [
  22374. {
  22375. name: "Micro",
  22376. height: math.unit(5, "millimeters")
  22377. },
  22378. {
  22379. name: "Normal",
  22380. height: math.unit(6 + 5 / 12, "feet"),
  22381. default: true
  22382. },
  22383. ]
  22384. ))
  22385. characterMakers.push(() => makeCharacter(
  22386. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22387. {
  22388. front: {
  22389. height: math.unit(16, "feet"),
  22390. weight: math.unit(4000, "lb"),
  22391. name: "Front",
  22392. image: {
  22393. source: "./media/characters/juniper/front.svg",
  22394. bottom: 0.04
  22395. }
  22396. },
  22397. },
  22398. [
  22399. {
  22400. name: "Normal",
  22401. height: math.unit(16, "feet"),
  22402. default: true
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22408. {
  22409. front: {
  22410. height: math.unit(6, "feet"),
  22411. weight: math.unit(150, "lb"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/hipster/front.svg",
  22415. extra: 1312 / 1209,
  22416. bottom: 0.025
  22417. }
  22418. },
  22419. back: {
  22420. height: math.unit(6, "feet"),
  22421. weight: math.unit(150, "lb"),
  22422. name: "Back",
  22423. image: {
  22424. source: "./media/characters/hipster/back.svg",
  22425. extra: 1281 / 1196,
  22426. bottom: 0.01
  22427. }
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Micro",
  22433. height: math.unit(1, "mm")
  22434. },
  22435. {
  22436. name: "Normal",
  22437. height: math.unit(4, "inches"),
  22438. default: true
  22439. },
  22440. {
  22441. name: "Macro",
  22442. height: math.unit(500, "feet")
  22443. },
  22444. {
  22445. name: "Megamacro",
  22446. height: math.unit(1000, "miles")
  22447. },
  22448. ]
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22452. {
  22453. front: {
  22454. height: math.unit(6, "feet"),
  22455. weight: math.unit(150, "lb"),
  22456. name: "Front",
  22457. image: {
  22458. source: "./media/characters/tendirmuldr/front.svg",
  22459. extra: 1878 / 1772,
  22460. bottom: 0.015
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "Megamacro",
  22467. height: math.unit(1500, "miles"),
  22468. default: true
  22469. },
  22470. ]
  22471. ))
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22474. {
  22475. front: {
  22476. height: math.unit(14, "feet"),
  22477. weight: math.unit(12000, "lb"),
  22478. name: "Front",
  22479. image: {
  22480. source: "./media/characters/mort/front.svg",
  22481. extra: 365 / 318,
  22482. bottom: 0.01
  22483. }
  22484. },
  22485. side: {
  22486. height: math.unit(14, "feet"),
  22487. weight: math.unit(12000, "lb"),
  22488. name: "Side",
  22489. image: {
  22490. source: "./media/characters/mort/side.svg",
  22491. extra: 365 / 318,
  22492. bottom: 0.052
  22493. },
  22494. default: true
  22495. },
  22496. back: {
  22497. height: math.unit(14, "feet"),
  22498. weight: math.unit(12000, "lb"),
  22499. name: "Back",
  22500. image: {
  22501. source: "./media/characters/mort/back.svg",
  22502. extra: 371 / 332,
  22503. bottom: 0.18
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(14, "feet"),
  22511. default: true
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22517. {
  22518. front: {
  22519. height: math.unit(8, "feet"),
  22520. weight: math.unit(1, "ton"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/lycoa/front.svg",
  22524. extra: 1836/1728,
  22525. bottom: 81/1917
  22526. }
  22527. },
  22528. back: {
  22529. height: math.unit(8, "feet"),
  22530. weight: math.unit(1, "ton"),
  22531. name: "Back",
  22532. image: {
  22533. source: "./media/characters/lycoa/back.svg",
  22534. extra: 1785/1720,
  22535. bottom: 91/1876
  22536. }
  22537. },
  22538. head: {
  22539. height: math.unit(1.6243, "feet"),
  22540. name: "Head",
  22541. image: {
  22542. source: "./media/characters/lycoa/head.svg",
  22543. extra: 1011/782,
  22544. bottom: 0/1011
  22545. }
  22546. },
  22547. tailmaw: {
  22548. height: math.unit(1.9, "feet"),
  22549. name: "Tailmaw",
  22550. image: {
  22551. source: "./media/characters/lycoa/tailmaw.svg"
  22552. }
  22553. },
  22554. tentacles: {
  22555. height: math.unit(2.1, "feet"),
  22556. name: "Tentacles",
  22557. image: {
  22558. source: "./media/characters/lycoa/tentacles.svg"
  22559. }
  22560. },
  22561. dick: {
  22562. height: math.unit(1.73, "feet"),
  22563. name: "Dick",
  22564. image: {
  22565. source: "./media/characters/lycoa/dick.svg"
  22566. }
  22567. },
  22568. },
  22569. [
  22570. {
  22571. name: "Normal",
  22572. height: math.unit(8, "feet"),
  22573. default: true
  22574. },
  22575. {
  22576. name: "Macro",
  22577. height: math.unit(30, "feet")
  22578. },
  22579. ]
  22580. ))
  22581. characterMakers.push(() => makeCharacter(
  22582. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22583. {
  22584. front: {
  22585. height: math.unit(4 + 2 / 12, "feet"),
  22586. weight: math.unit(70, "lb"),
  22587. name: "Front",
  22588. image: {
  22589. source: "./media/characters/naldara/front.svg",
  22590. extra: 1664/1387,
  22591. bottom: 81/1745
  22592. },
  22593. form: "anthro",
  22594. default: true
  22595. },
  22596. naga: {
  22597. height: math.unit(20, "feet"),
  22598. weight: math.unit(15000, "kg"),
  22599. name: "Front",
  22600. image: {
  22601. source: "./media/characters/naldara/naga.svg",
  22602. extra: 1590/1396,
  22603. bottom: 285/1875
  22604. },
  22605. form: "naga",
  22606. default: true
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(4 + 2 / 12, "feet"),
  22613. form: "anthro",
  22614. default: true
  22615. },
  22616. {
  22617. name: "Normal",
  22618. height: math.unit(20, "feet"),
  22619. form: "naga",
  22620. default: true
  22621. },
  22622. ],
  22623. {
  22624. "anthro": {
  22625. name: "Anthro",
  22626. default: true
  22627. },
  22628. "naga": {
  22629. name: "Naga"
  22630. }
  22631. }
  22632. ))
  22633. characterMakers.push(() => makeCharacter(
  22634. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22635. {
  22636. front: {
  22637. height: math.unit(13 + 7 / 12, "feet"),
  22638. weight: math.unit(1500, "lb"),
  22639. name: "Front",
  22640. image: {
  22641. source: "./media/characters/briar/front.svg",
  22642. extra: 1223/1157,
  22643. bottom: 123/1346
  22644. }
  22645. },
  22646. },
  22647. [
  22648. {
  22649. name: "Normal",
  22650. height: math.unit(13 + 7 / 12, "feet"),
  22651. default: true
  22652. },
  22653. ]
  22654. ))
  22655. characterMakers.push(() => makeCharacter(
  22656. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22657. {
  22658. side: {
  22659. height: math.unit(16, "feet"),
  22660. weight: math.unit(500, "lb"),
  22661. name: "Side",
  22662. image: {
  22663. source: "./media/characters/vanguard/side.svg",
  22664. extra: 1022/914,
  22665. bottom: 30/1052
  22666. }
  22667. },
  22668. sideAlt: {
  22669. height: math.unit(10, "feet"),
  22670. weight: math.unit(500, "lb"),
  22671. name: "Side (Alt)",
  22672. image: {
  22673. source: "./media/characters/vanguard/side-alt.svg",
  22674. extra: 502 / 425,
  22675. bottom: 0.087
  22676. }
  22677. },
  22678. },
  22679. [
  22680. {
  22681. name: "Normal",
  22682. height: math.unit(17.71, "feet"),
  22683. default: true
  22684. },
  22685. ]
  22686. ))
  22687. characterMakers.push(() => makeCharacter(
  22688. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22689. {
  22690. front: {
  22691. height: math.unit(7.5, "feet"),
  22692. weight: math.unit(2, "lb"),
  22693. name: "Front",
  22694. image: {
  22695. source: "./media/characters/artemis/work-safe-front.svg",
  22696. extra: 1192 / 1075,
  22697. bottom: 0.07
  22698. },
  22699. form: "work-safe",
  22700. default: true
  22701. },
  22702. frontNsfw: {
  22703. height: math.unit(7.5, "feet"),
  22704. weight: math.unit(2, "lb"),
  22705. name: "Front",
  22706. image: {
  22707. source: "./media/characters/artemis/calibrating-front.svg",
  22708. extra: 1192 / 1075,
  22709. bottom: 0.07
  22710. },
  22711. form: "calibrating",
  22712. default: true
  22713. },
  22714. frontNsfwer: {
  22715. height: math.unit(7.5, "feet"),
  22716. weight: math.unit(2, "lb"),
  22717. name: "Front",
  22718. image: {
  22719. source: "./media/characters/artemis/oversize-load-front.svg",
  22720. extra: 1192 / 1075,
  22721. bottom: 0.07
  22722. },
  22723. form: "oversize-load",
  22724. default: true
  22725. },
  22726. side: {
  22727. height: math.unit(7.5, "feet"),
  22728. weight: math.unit(2, "lb"),
  22729. name: "Side",
  22730. image: {
  22731. source: "./media/characters/artemis/work-safe-side.svg",
  22732. extra: 1192 / 1075,
  22733. bottom: 0.07
  22734. },
  22735. form: "work-safe"
  22736. },
  22737. sideNsfw: {
  22738. height: math.unit(7.5, "feet"),
  22739. weight: math.unit(2, "lb"),
  22740. name: "Side",
  22741. image: {
  22742. source: "./media/characters/artemis/calibrating-side.svg",
  22743. extra: 1192 / 1075,
  22744. bottom: 0.07
  22745. },
  22746. form: "calibrating"
  22747. },
  22748. sideNsfwer: {
  22749. height: math.unit(7.5, "feet"),
  22750. weight: math.unit(2, "lb"),
  22751. name: "Side",
  22752. image: {
  22753. source: "./media/characters/artemis/oversize-load-side.svg",
  22754. extra: 1192 / 1075,
  22755. bottom: 0.07
  22756. },
  22757. form: "oversize-load"
  22758. },
  22759. maw: {
  22760. height: math.unit(1.1, "feet"),
  22761. name: "Maw",
  22762. image: {
  22763. source: "./media/characters/artemis/maw.svg"
  22764. },
  22765. form: "work-safe"
  22766. },
  22767. stomach: {
  22768. height: math.unit(0.95, "feet"),
  22769. name: "Stomach",
  22770. image: {
  22771. source: "./media/characters/artemis/stomach.svg"
  22772. },
  22773. form: "work-safe"
  22774. },
  22775. dickCanine: {
  22776. height: math.unit(1, "feet"),
  22777. name: "Dick (Canine)",
  22778. image: {
  22779. source: "./media/characters/artemis/dick-canine.svg"
  22780. },
  22781. form: "calibrating"
  22782. },
  22783. dickEquine: {
  22784. height: math.unit(0.85, "feet"),
  22785. name: "Dick (Equine)",
  22786. image: {
  22787. source: "./media/characters/artemis/dick-equine.svg"
  22788. },
  22789. form: "calibrating"
  22790. },
  22791. dickExotic: {
  22792. height: math.unit(0.85, "feet"),
  22793. name: "Dick (Exotic)",
  22794. image: {
  22795. source: "./media/characters/artemis/dick-exotic.svg"
  22796. },
  22797. form: "calibrating"
  22798. },
  22799. dickCanineBigger: {
  22800. height: math.unit(1 * 1.33, "feet"),
  22801. name: "Dick (Canine)",
  22802. image: {
  22803. source: "./media/characters/artemis/dick-canine.svg"
  22804. },
  22805. form: "oversize-load"
  22806. },
  22807. dickEquineBigger: {
  22808. height: math.unit(0.85 * 1.33, "feet"),
  22809. name: "Dick (Equine)",
  22810. image: {
  22811. source: "./media/characters/artemis/dick-equine.svg"
  22812. },
  22813. form: "oversize-load"
  22814. },
  22815. dickExoticBigger: {
  22816. height: math.unit(0.85 * 1.33, "feet"),
  22817. name: "Dick (Exotic)",
  22818. image: {
  22819. source: "./media/characters/artemis/dick-exotic.svg"
  22820. },
  22821. form: "oversize-load"
  22822. },
  22823. },
  22824. [
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(7.5, "feet"),
  22828. form: "work-safe",
  22829. default: true
  22830. },
  22831. {
  22832. name: "Normal",
  22833. height: math.unit(7.5, "feet"),
  22834. form: "calibrating",
  22835. default: true
  22836. },
  22837. {
  22838. name: "Normal",
  22839. height: math.unit(7.5, "feet"),
  22840. form: "oversize-load",
  22841. default: true
  22842. },
  22843. {
  22844. name: "Enlarged",
  22845. height: math.unit(12, "feet"),
  22846. form: "work-safe",
  22847. },
  22848. {
  22849. name: "Enlarged",
  22850. height: math.unit(12, "feet"),
  22851. form: "calibrating",
  22852. },
  22853. {
  22854. name: "Enlarged",
  22855. height: math.unit(12, "feet"),
  22856. form: "oversize-load",
  22857. },
  22858. ],
  22859. {
  22860. "work-safe": {
  22861. name: "Work-Safe",
  22862. default: true
  22863. },
  22864. "calibrating": {
  22865. name: "Calibrating"
  22866. },
  22867. "oversize-load": {
  22868. name: "Oversize Load"
  22869. }
  22870. }
  22871. ))
  22872. characterMakers.push(() => makeCharacter(
  22873. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22874. {
  22875. front: {
  22876. height: math.unit(5 + 3 / 12, "feet"),
  22877. weight: math.unit(160, "lb"),
  22878. name: "Front",
  22879. image: {
  22880. source: "./media/characters/kira/front.svg",
  22881. extra: 906 / 786,
  22882. bottom: 0.01
  22883. }
  22884. },
  22885. back: {
  22886. height: math.unit(5 + 3 / 12, "feet"),
  22887. weight: math.unit(160, "lb"),
  22888. name: "Back",
  22889. image: {
  22890. source: "./media/characters/kira/back.svg",
  22891. extra: 882 / 757,
  22892. bottom: 0.005
  22893. }
  22894. },
  22895. frontDressed: {
  22896. height: math.unit(5 + 3 / 12, "feet"),
  22897. weight: math.unit(160, "lb"),
  22898. name: "Front (Dressed)",
  22899. image: {
  22900. source: "./media/characters/kira/front-dressed.svg",
  22901. extra: 906 / 786,
  22902. bottom: 0.01
  22903. }
  22904. },
  22905. beans: {
  22906. height: math.unit(0.92, "feet"),
  22907. name: "Beans",
  22908. image: {
  22909. source: "./media/characters/kira/beans.svg"
  22910. }
  22911. },
  22912. },
  22913. [
  22914. {
  22915. name: "Normal",
  22916. height: math.unit(5 + 3 / 12, "feet"),
  22917. default: true
  22918. },
  22919. ]
  22920. ))
  22921. characterMakers.push(() => makeCharacter(
  22922. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22923. {
  22924. front: {
  22925. height: math.unit(5 + 4 / 12, "feet"),
  22926. weight: math.unit(145, "lb"),
  22927. name: "Front",
  22928. image: {
  22929. source: "./media/characters/scramble/front.svg",
  22930. extra: 763 / 727,
  22931. bottom: 0.05
  22932. }
  22933. },
  22934. back: {
  22935. height: math.unit(5 + 4 / 12, "feet"),
  22936. weight: math.unit(145, "lb"),
  22937. name: "Back",
  22938. image: {
  22939. source: "./media/characters/scramble/back.svg",
  22940. extra: 826 / 737,
  22941. bottom: 0.002
  22942. }
  22943. },
  22944. },
  22945. [
  22946. {
  22947. name: "Normal",
  22948. height: math.unit(5 + 4 / 12, "feet"),
  22949. default: true
  22950. },
  22951. ]
  22952. ))
  22953. characterMakers.push(() => makeCharacter(
  22954. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22955. {
  22956. side: {
  22957. height: math.unit(6 + 2 / 12, "feet"),
  22958. weight: math.unit(190, "lb"),
  22959. name: "Side",
  22960. image: {
  22961. source: "./media/characters/biscuit/side.svg",
  22962. extra: 858 / 791,
  22963. bottom: 0.044
  22964. }
  22965. },
  22966. },
  22967. [
  22968. {
  22969. name: "Normal",
  22970. height: math.unit(6 + 2 / 12, "feet"),
  22971. default: true
  22972. },
  22973. ]
  22974. ))
  22975. characterMakers.push(() => makeCharacter(
  22976. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22977. {
  22978. front: {
  22979. height: math.unit(5 + 2 / 12, "feet"),
  22980. weight: math.unit(120, "lb"),
  22981. name: "Front",
  22982. image: {
  22983. source: "./media/characters/poffin/front.svg",
  22984. extra: 786 / 680,
  22985. bottom: 0.005
  22986. }
  22987. },
  22988. },
  22989. [
  22990. {
  22991. name: "Normal",
  22992. height: math.unit(5 + 2 / 12, "feet"),
  22993. default: true
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22999. {
  23000. front: {
  23001. height: math.unit(6 + 3 / 12, "feet"),
  23002. weight: math.unit(519, "lb"),
  23003. name: "Front",
  23004. image: {
  23005. source: "./media/characters/dhari/front.svg",
  23006. extra: 1048 / 946,
  23007. bottom: 0.015
  23008. }
  23009. },
  23010. back: {
  23011. height: math.unit(6 + 3 / 12, "feet"),
  23012. weight: math.unit(519, "lb"),
  23013. name: "Back",
  23014. image: {
  23015. source: "./media/characters/dhari/back.svg",
  23016. extra: 1048 / 931,
  23017. bottom: 0.005
  23018. }
  23019. },
  23020. frontDressed: {
  23021. height: math.unit(6 + 3 / 12, "feet"),
  23022. weight: math.unit(519, "lb"),
  23023. name: "Front (Dressed)",
  23024. image: {
  23025. source: "./media/characters/dhari/front-dressed.svg",
  23026. extra: 1713 / 1546,
  23027. bottom: 0.02
  23028. }
  23029. },
  23030. backDressed: {
  23031. height: math.unit(6 + 3 / 12, "feet"),
  23032. weight: math.unit(519, "lb"),
  23033. name: "Back (Dressed)",
  23034. image: {
  23035. source: "./media/characters/dhari/back-dressed.svg",
  23036. extra: 1699 / 1537,
  23037. bottom: 0.01
  23038. }
  23039. },
  23040. maw: {
  23041. height: math.unit(0.95, "feet"),
  23042. name: "Maw",
  23043. image: {
  23044. source: "./media/characters/dhari/maw.svg"
  23045. }
  23046. },
  23047. wereFront: {
  23048. height: math.unit(12 + 8 / 12, "feet"),
  23049. weight: math.unit(4000, "lb"),
  23050. name: "Front (Were)",
  23051. image: {
  23052. source: "./media/characters/dhari/were-front.svg",
  23053. extra: 1065 / 969,
  23054. bottom: 0.015
  23055. }
  23056. },
  23057. wereBack: {
  23058. height: math.unit(12 + 8 / 12, "feet"),
  23059. weight: math.unit(4000, "lb"),
  23060. name: "Back (Were)",
  23061. image: {
  23062. source: "./media/characters/dhari/were-back.svg",
  23063. extra: 1065 / 969,
  23064. bottom: 0.012
  23065. }
  23066. },
  23067. wereMaw: {
  23068. height: math.unit(0.625, "meters"),
  23069. name: "Maw (Were)",
  23070. image: {
  23071. source: "./media/characters/dhari/were-maw.svg"
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(6 + 3 / 12, "feet"),
  23079. default: true
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23085. {
  23086. anthro: {
  23087. height: math.unit(5 + 7 / 12, "feet"),
  23088. weight: math.unit(175, "lb"),
  23089. name: "Anthro",
  23090. image: {
  23091. source: "./media/characters/rena-dyne/anthro.svg",
  23092. extra: 1849 / 1785,
  23093. bottom: 0.005
  23094. }
  23095. },
  23096. taur: {
  23097. height: math.unit(15 + 6 / 12, "feet"),
  23098. weight: math.unit(8000, "lb"),
  23099. name: "Taur",
  23100. image: {
  23101. source: "./media/characters/rena-dyne/taur.svg",
  23102. extra: 2315 / 2234,
  23103. bottom: 0.033
  23104. }
  23105. },
  23106. },
  23107. [
  23108. {
  23109. name: "Normal",
  23110. height: math.unit(5 + 7 / 12, "feet"),
  23111. default: true
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23117. {
  23118. front: {
  23119. height: math.unit(8, "feet"),
  23120. weight: math.unit(600, "lb"),
  23121. name: "Front",
  23122. image: {
  23123. source: "./media/characters/weremeep/front.svg",
  23124. extra: 970/849,
  23125. bottom: 7/977
  23126. }
  23127. },
  23128. },
  23129. [
  23130. {
  23131. name: "Normal",
  23132. height: math.unit(8, "feet"),
  23133. default: true
  23134. },
  23135. {
  23136. name: "Lorg",
  23137. height: math.unit(12, "feet")
  23138. },
  23139. {
  23140. name: "Oh Lawd She Comin'",
  23141. height: math.unit(20, "feet")
  23142. },
  23143. ]
  23144. ))
  23145. characterMakers.push(() => makeCharacter(
  23146. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23147. {
  23148. front: {
  23149. height: math.unit(4, "feet"),
  23150. weight: math.unit(90, "lb"),
  23151. name: "Front",
  23152. image: {
  23153. source: "./media/characters/reza/front.svg",
  23154. extra: 1183 / 1111,
  23155. bottom: 0.017
  23156. }
  23157. },
  23158. back: {
  23159. height: math.unit(4, "feet"),
  23160. weight: math.unit(90, "lb"),
  23161. name: "Back",
  23162. image: {
  23163. source: "./media/characters/reza/back.svg",
  23164. extra: 1183 / 1111,
  23165. bottom: 0.01
  23166. }
  23167. },
  23168. drake: {
  23169. height: math.unit(30, "feet"),
  23170. weight: math.unit(246960, "lb"),
  23171. name: "Drake",
  23172. image: {
  23173. source: "./media/characters/reza/drake.svg",
  23174. extra: 2350 / 2024,
  23175. bottom: 60.7 / 2403
  23176. }
  23177. },
  23178. },
  23179. [
  23180. {
  23181. name: "Normal",
  23182. height: math.unit(4, "feet"),
  23183. default: true
  23184. },
  23185. ]
  23186. ))
  23187. characterMakers.push(() => makeCharacter(
  23188. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23189. {
  23190. side: {
  23191. height: math.unit(15, "feet"),
  23192. weight: math.unit(14, "tons"),
  23193. name: "Side",
  23194. image: {
  23195. source: "./media/characters/athea/side.svg",
  23196. extra: 960 / 540,
  23197. bottom: 0.003
  23198. }
  23199. },
  23200. sitting: {
  23201. height: math.unit(6 * 2.85, "feet"),
  23202. weight: math.unit(14, "tons"),
  23203. name: "Sitting",
  23204. image: {
  23205. source: "./media/characters/athea/sitting.svg",
  23206. extra: 621 / 581,
  23207. bottom: 0.075
  23208. }
  23209. },
  23210. maw: {
  23211. height: math.unit(7.59498031496063, "feet"),
  23212. name: "Maw",
  23213. image: {
  23214. source: "./media/characters/athea/maw.svg"
  23215. }
  23216. },
  23217. },
  23218. [
  23219. {
  23220. name: "Lap Cat",
  23221. height: math.unit(2.5, "feet")
  23222. },
  23223. {
  23224. name: "Minimacro",
  23225. height: math.unit(15, "feet"),
  23226. default: true
  23227. },
  23228. {
  23229. name: "Macro",
  23230. height: math.unit(120, "feet")
  23231. },
  23232. {
  23233. name: "Macro+",
  23234. height: math.unit(640, "feet")
  23235. },
  23236. {
  23237. name: "Colossus",
  23238. height: math.unit(2.2, "miles")
  23239. },
  23240. ]
  23241. ))
  23242. characterMakers.push(() => makeCharacter(
  23243. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23244. {
  23245. front: {
  23246. height: math.unit(8 + 8 / 12, "feet"),
  23247. weight: math.unit(130, "kg"),
  23248. name: "Front",
  23249. image: {
  23250. source: "./media/characters/seroko/front.svg",
  23251. extra: 1385 / 1280,
  23252. bottom: 0.025
  23253. }
  23254. },
  23255. back: {
  23256. height: math.unit(8 + 8 / 12, "feet"),
  23257. weight: math.unit(130, "kg"),
  23258. name: "Back",
  23259. image: {
  23260. source: "./media/characters/seroko/back.svg",
  23261. extra: 1369 / 1238,
  23262. bottom: 0.018
  23263. }
  23264. },
  23265. frontDressed: {
  23266. height: math.unit(8 + 8 / 12, "feet"),
  23267. weight: math.unit(130, "kg"),
  23268. name: "Front (Dressed)",
  23269. image: {
  23270. source: "./media/characters/seroko/front-dressed.svg",
  23271. extra: 1366 / 1275,
  23272. bottom: 0.03
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Normal",
  23279. height: math.unit(8 + 8 / 12, "feet"),
  23280. default: true
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23286. {
  23287. front: {
  23288. height: math.unit(5.5, "feet"),
  23289. weight: math.unit(160, "lb"),
  23290. name: "Front",
  23291. image: {
  23292. source: "./media/characters/quatzi/front.svg",
  23293. extra: 2346 / 2242,
  23294. bottom: 0.015
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(5.5, "feet"),
  23302. default: true
  23303. },
  23304. {
  23305. name: "Big",
  23306. height: math.unit(7.7, "feet")
  23307. },
  23308. ]
  23309. ))
  23310. characterMakers.push(() => makeCharacter(
  23311. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23312. {
  23313. front: {
  23314. height: math.unit(5 + 11 / 12, "feet"),
  23315. weight: math.unit(180, "lb"),
  23316. name: "Front",
  23317. image: {
  23318. source: "./media/characters/sen/front.svg",
  23319. extra: 1321 / 1254,
  23320. bottom: 0.015
  23321. }
  23322. },
  23323. side: {
  23324. height: math.unit(5 + 11 / 12, "feet"),
  23325. weight: math.unit(180, "lb"),
  23326. name: "Side",
  23327. image: {
  23328. source: "./media/characters/sen/side.svg",
  23329. extra: 1321 / 1254,
  23330. bottom: 0.007
  23331. }
  23332. },
  23333. back: {
  23334. height: math.unit(5 + 11 / 12, "feet"),
  23335. weight: math.unit(180, "lb"),
  23336. name: "Back",
  23337. image: {
  23338. source: "./media/characters/sen/back.svg",
  23339. extra: 1321 / 1254
  23340. }
  23341. },
  23342. },
  23343. [
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(5 + 11 / 12, "feet"),
  23347. default: true
  23348. },
  23349. ]
  23350. ))
  23351. characterMakers.push(() => makeCharacter(
  23352. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23353. {
  23354. front: {
  23355. height: math.unit(166.6, "cm"),
  23356. weight: math.unit(66.6, "kg"),
  23357. name: "Front",
  23358. image: {
  23359. source: "./media/characters/fruity/front.svg",
  23360. extra: 1510 / 1386,
  23361. bottom: 0.04
  23362. }
  23363. },
  23364. back: {
  23365. height: math.unit(166.6, "cm"),
  23366. weight: math.unit(66.6, "lb"),
  23367. name: "Back",
  23368. image: {
  23369. source: "./media/characters/fruity/back.svg",
  23370. extra: 1563 / 1435,
  23371. bottom: 0.005
  23372. }
  23373. },
  23374. },
  23375. [
  23376. {
  23377. name: "Normal",
  23378. height: math.unit(166.6, "cm"),
  23379. default: true
  23380. },
  23381. {
  23382. name: "Demonic",
  23383. height: math.unit(166.6, "feet")
  23384. },
  23385. ]
  23386. ))
  23387. characterMakers.push(() => makeCharacter(
  23388. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23389. {
  23390. side: {
  23391. height: math.unit(10, "feet"),
  23392. weight: math.unit(500, "lb"),
  23393. name: "Side",
  23394. image: {
  23395. source: "./media/characters/zost/side.svg",
  23396. extra: 2870/2533,
  23397. bottom: 252/3122
  23398. }
  23399. },
  23400. mawFront: {
  23401. height: math.unit(1.08, "meters"),
  23402. name: "Maw (Front)",
  23403. image: {
  23404. source: "./media/characters/zost/maw-front.svg"
  23405. }
  23406. },
  23407. mawSide: {
  23408. height: math.unit(2.66, "feet"),
  23409. name: "Maw (Side)",
  23410. image: {
  23411. source: "./media/characters/zost/maw-side.svg"
  23412. }
  23413. },
  23414. wingspan: {
  23415. height: math.unit(7.4, "feet"),
  23416. name: "Wingspan",
  23417. image: {
  23418. source: "./media/characters/zost/wingspan.svg"
  23419. }
  23420. },
  23421. },
  23422. [
  23423. {
  23424. name: "Normal",
  23425. height: math.unit(10, "feet"),
  23426. default: true
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23432. {
  23433. front: {
  23434. height: math.unit(5 + 4 / 12, "feet"),
  23435. weight: math.unit(120, "lb"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/luci/front.svg",
  23439. extra: 1985 / 1884,
  23440. bottom: 0.04
  23441. }
  23442. },
  23443. back: {
  23444. height: math.unit(5 + 4 / 12, "feet"),
  23445. weight: math.unit(120, "lb"),
  23446. name: "Back",
  23447. image: {
  23448. source: "./media/characters/luci/back.svg",
  23449. extra: 1892 / 1791,
  23450. bottom: 0.002
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Normal",
  23457. height: math.unit(5 + 4 / 12, "feet"),
  23458. default: true
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23464. {
  23465. front: {
  23466. height: math.unit(1500, "feet"),
  23467. weight: math.unit(3.8e6, "tons"),
  23468. name: "Front",
  23469. image: {
  23470. source: "./media/characters/2th/front.svg",
  23471. extra: 3489 / 3350,
  23472. bottom: 0.1
  23473. }
  23474. },
  23475. foot: {
  23476. height: math.unit(461, "feet"),
  23477. name: "Foot",
  23478. image: {
  23479. source: "./media/characters/2th/foot.svg"
  23480. }
  23481. },
  23482. },
  23483. [
  23484. {
  23485. name: "\"Micro\"",
  23486. height: math.unit(15 + 7 / 12, "feet")
  23487. },
  23488. {
  23489. name: "Normal",
  23490. height: math.unit(1500, "feet"),
  23491. default: true
  23492. },
  23493. {
  23494. name: "Macro",
  23495. height: math.unit(5000, "feet")
  23496. },
  23497. {
  23498. name: "Megamacro",
  23499. height: math.unit(15, "miles")
  23500. },
  23501. {
  23502. name: "Gigamacro",
  23503. height: math.unit(4000, "miles")
  23504. },
  23505. {
  23506. name: "Galactic",
  23507. height: math.unit(50, "AU")
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23513. {
  23514. front: {
  23515. height: math.unit(5 + 6 / 12, "feet"),
  23516. weight: math.unit(220, "lb"),
  23517. name: "Front",
  23518. image: {
  23519. source: "./media/characters/amethyst/front.svg",
  23520. extra: 2078 / 2040,
  23521. bottom: 0.045
  23522. }
  23523. },
  23524. back: {
  23525. height: math.unit(5 + 6 / 12, "feet"),
  23526. weight: math.unit(220, "lb"),
  23527. name: "Back",
  23528. image: {
  23529. source: "./media/characters/amethyst/back.svg",
  23530. extra: 2021 / 1989,
  23531. bottom: 0.02
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(5 + 6 / 12, "feet"),
  23539. default: true
  23540. },
  23541. ]
  23542. ))
  23543. characterMakers.push(() => makeCharacter(
  23544. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23545. {
  23546. front: {
  23547. height: math.unit(4 + 11 / 12, "feet"),
  23548. weight: math.unit(120, "lb"),
  23549. name: "Front",
  23550. image: {
  23551. source: "./media/characters/yumi-akiyama/front.svg",
  23552. extra: 1327 / 1235,
  23553. bottom: 0.02
  23554. }
  23555. },
  23556. back: {
  23557. height: math.unit(4 + 11 / 12, "feet"),
  23558. weight: math.unit(120, "lb"),
  23559. name: "Back",
  23560. image: {
  23561. source: "./media/characters/yumi-akiyama/back.svg",
  23562. extra: 1287 / 1245,
  23563. bottom: 0.002
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Galactic",
  23570. height: math.unit(50, "galaxies"),
  23571. default: true
  23572. },
  23573. {
  23574. name: "Universal",
  23575. height: math.unit(100, "universes")
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(8, "feet"),
  23584. weight: math.unit(500, "lb"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/rifter-yrmori/front.svg",
  23588. extra: 1180 / 1125,
  23589. bottom: 0.02
  23590. }
  23591. },
  23592. back: {
  23593. height: math.unit(8, "feet"),
  23594. weight: math.unit(500, "lb"),
  23595. name: "Back",
  23596. image: {
  23597. source: "./media/characters/rifter-yrmori/back.svg",
  23598. extra: 1190 / 1145,
  23599. bottom: 0.001
  23600. }
  23601. },
  23602. wings: {
  23603. height: math.unit(7.75, "feet"),
  23604. weight: math.unit(500, "lb"),
  23605. name: "Wings",
  23606. image: {
  23607. source: "./media/characters/rifter-yrmori/wings.svg",
  23608. extra: 1357 / 1285
  23609. }
  23610. },
  23611. maw: {
  23612. height: math.unit(0.8, "feet"),
  23613. name: "Maw",
  23614. image: {
  23615. source: "./media/characters/rifter-yrmori/maw.svg"
  23616. }
  23617. },
  23618. mawfront: {
  23619. height: math.unit(1.45, "feet"),
  23620. name: "Maw (Front)",
  23621. image: {
  23622. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Normal",
  23629. height: math.unit(8, "feet"),
  23630. default: true
  23631. },
  23632. {
  23633. name: "Macro",
  23634. height: math.unit(42, "meters")
  23635. },
  23636. ]
  23637. ))
  23638. characterMakers.push(() => makeCharacter(
  23639. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23640. {
  23641. were: {
  23642. height: math.unit(25 + 6 / 12, "feet"),
  23643. weight: math.unit(10000, "lb"),
  23644. name: "Were",
  23645. image: {
  23646. source: "./media/characters/tahajin/were.svg",
  23647. extra: 801 / 770,
  23648. bottom: 0.042
  23649. }
  23650. },
  23651. aquatic: {
  23652. height: math.unit(6 + 4 / 12, "feet"),
  23653. weight: math.unit(160, "lb"),
  23654. name: "Aquatic",
  23655. image: {
  23656. source: "./media/characters/tahajin/aquatic.svg",
  23657. extra: 572 / 542,
  23658. bottom: 0.04
  23659. }
  23660. },
  23661. chow: {
  23662. height: math.unit(8 + 11 / 12, "feet"),
  23663. weight: math.unit(450, "lb"),
  23664. name: "Chow",
  23665. image: {
  23666. source: "./media/characters/tahajin/chow.svg",
  23667. extra: 660 / 640,
  23668. bottom: 0.015
  23669. }
  23670. },
  23671. demiNaga: {
  23672. height: math.unit(6 + 8 / 12, "feet"),
  23673. weight: math.unit(300, "lb"),
  23674. name: "Demi Naga",
  23675. image: {
  23676. source: "./media/characters/tahajin/demi-naga.svg",
  23677. extra: 643 / 615,
  23678. bottom: 0.1
  23679. }
  23680. },
  23681. data: {
  23682. height: math.unit(5, "inches"),
  23683. weight: math.unit(0.1, "lb"),
  23684. name: "Data",
  23685. image: {
  23686. source: "./media/characters/tahajin/data.svg"
  23687. }
  23688. },
  23689. fluu: {
  23690. height: math.unit(5 + 7 / 12, "feet"),
  23691. weight: math.unit(140, "lb"),
  23692. name: "Fluu",
  23693. image: {
  23694. source: "./media/characters/tahajin/fluu.svg",
  23695. extra: 628 / 592,
  23696. bottom: 0.02
  23697. }
  23698. },
  23699. starWarrior: {
  23700. height: math.unit(4 + 5 / 12, "feet"),
  23701. weight: math.unit(50, "lb"),
  23702. name: "Star Warrior",
  23703. image: {
  23704. source: "./media/characters/tahajin/star-warrior.svg"
  23705. }
  23706. },
  23707. },
  23708. [
  23709. {
  23710. name: "Normal",
  23711. height: math.unit(25 + 6 / 12, "feet"),
  23712. default: true
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23718. {
  23719. front: {
  23720. height: math.unit(8, "feet"),
  23721. weight: math.unit(350, "lb"),
  23722. name: "Front",
  23723. image: {
  23724. source: "./media/characters/gabira/front.svg",
  23725. extra: 1261/1154,
  23726. bottom: 51/1312
  23727. }
  23728. },
  23729. back: {
  23730. height: math.unit(8, "feet"),
  23731. weight: math.unit(350, "lb"),
  23732. name: "Back",
  23733. image: {
  23734. source: "./media/characters/gabira/back.svg",
  23735. extra: 1265/1163,
  23736. bottom: 46/1311
  23737. }
  23738. },
  23739. head: {
  23740. height: math.unit(2.85, "feet"),
  23741. name: "Head",
  23742. image: {
  23743. source: "./media/characters/gabira/head.svg"
  23744. }
  23745. },
  23746. },
  23747. [
  23748. {
  23749. name: "Normal",
  23750. height: math.unit(8, "feet"),
  23751. default: true
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23757. {
  23758. front: {
  23759. height: math.unit(5 + 3 / 12, "feet"),
  23760. weight: math.unit(137, "lb"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/sasha-katraine/front.svg",
  23764. extra: 1745/1694,
  23765. bottom: 37/1782
  23766. }
  23767. },
  23768. back: {
  23769. height: math.unit(5 + 3 / 12, "feet"),
  23770. weight: math.unit(137, "lb"),
  23771. name: "Back",
  23772. image: {
  23773. source: "./media/characters/sasha-katraine/back.svg",
  23774. extra: 1776/1699,
  23775. bottom: 26/1802
  23776. }
  23777. },
  23778. },
  23779. [
  23780. {
  23781. name: "Micro",
  23782. height: math.unit(5, "inches")
  23783. },
  23784. {
  23785. name: "Normal",
  23786. height: math.unit(5 + 3 / 12, "feet"),
  23787. default: true
  23788. },
  23789. ]
  23790. ))
  23791. characterMakers.push(() => makeCharacter(
  23792. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23793. {
  23794. side: {
  23795. height: math.unit(4, "inches"),
  23796. weight: math.unit(200, "grams"),
  23797. name: "Side",
  23798. image: {
  23799. source: "./media/characters/der/side.svg",
  23800. extra: 719 / 400,
  23801. bottom: 30.6 / 749.9187
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Micro",
  23808. height: math.unit(4, "inches"),
  23809. default: true
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23815. {
  23816. side: {
  23817. height: math.unit(30, "meters"),
  23818. weight: math.unit(700, "tonnes"),
  23819. name: "Side",
  23820. image: {
  23821. source: "./media/characters/fixerdragon/side.svg",
  23822. extra: (1293.0514 - 116.03) / 1106.86,
  23823. bottom: 116.03 / 1293.0514
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Planck",
  23830. height: math.unit(1.6e-35, "meters")
  23831. },
  23832. {
  23833. name: "Micro",
  23834. height: math.unit(0.4, "meters")
  23835. },
  23836. {
  23837. name: "Normal",
  23838. height: math.unit(30, "meters"),
  23839. default: true
  23840. },
  23841. {
  23842. name: "Megamacro",
  23843. height: math.unit(1.2, "megameters")
  23844. },
  23845. {
  23846. name: "Teramacro",
  23847. height: math.unit(130, "terameters")
  23848. },
  23849. {
  23850. name: "Yottamacro",
  23851. height: math.unit(6200, "yottameters")
  23852. },
  23853. ]
  23854. ));
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23857. {
  23858. front: {
  23859. height: math.unit(8, "feet"),
  23860. weight: math.unit(250, "lb"),
  23861. name: "Front",
  23862. image: {
  23863. source: "./media/characters/kite/front.svg",
  23864. extra: 2796 / 2659,
  23865. bottom: 0.002
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Normal",
  23872. height: math.unit(8, "feet"),
  23873. default: true
  23874. },
  23875. {
  23876. name: "Macro",
  23877. height: math.unit(360, "feet")
  23878. },
  23879. {
  23880. name: "Megamacro",
  23881. height: math.unit(1500, "feet")
  23882. },
  23883. ]
  23884. ))
  23885. characterMakers.push(() => makeCharacter(
  23886. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23887. {
  23888. anthro_front: {
  23889. height: math.unit(5 + 11/12, "feet"),
  23890. weight: math.unit(170, "lb"),
  23891. name: "Front",
  23892. image: {
  23893. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23894. extra: 1735/1585,
  23895. bottom: 96/1831
  23896. },
  23897. form: "anthro",
  23898. default: true
  23899. },
  23900. anthro_back: {
  23901. height: math.unit(5 + 11/12, "feet"),
  23902. weight: math.unit(170, "lb"),
  23903. name: "Back",
  23904. image: {
  23905. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23906. extra: 1749/1607,
  23907. bottom: 28/1777
  23908. },
  23909. form: "anthro"
  23910. },
  23911. anthro_male: {
  23912. height: math.unit(5 + 11/12, "feet"),
  23913. weight: math.unit(170, "lb"),
  23914. name: "Male",
  23915. image: {
  23916. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23917. extra: 1855/1713,
  23918. bottom: 63/1918
  23919. },
  23920. form: "anthro"
  23921. },
  23922. taur_front: {
  23923. height: math.unit(5 + 7/12, "feet"),
  23924. weight: math.unit(170, "lb"),
  23925. name: "Front",
  23926. image: {
  23927. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23928. extra: 1151/1059,
  23929. bottom: 356/1507
  23930. },
  23931. form: "taur",
  23932. default: true
  23933. },
  23934. anthro_frontDressed: {
  23935. height: math.unit(5 + 11/12, "feet"),
  23936. weight: math.unit(170, "lb"),
  23937. name: "Front (Dressed)",
  23938. image: {
  23939. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23940. extra: 1735/1585,
  23941. bottom: 96/1831
  23942. },
  23943. form: "anthro"
  23944. },
  23945. anthro_backDressed: {
  23946. height: math.unit(5 + 11/12, "feet"),
  23947. weight: math.unit(170, "lb"),
  23948. name: "Back (Dressed)",
  23949. image: {
  23950. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23951. extra: 1749/1607,
  23952. bottom: 28/1777
  23953. },
  23954. form: "anthro"
  23955. },
  23956. anthro_maleDressed: {
  23957. height: math.unit(5 + 11/12, "feet"),
  23958. weight: math.unit(170, "lb"),
  23959. name: "Male (Dressed)",
  23960. image: {
  23961. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23962. extra: 1855/1713,
  23963. bottom: 63/1918
  23964. },
  23965. form: "anthro"
  23966. },
  23967. taur_frontDressed: {
  23968. height: math.unit(5 + 7/12, "feet"),
  23969. weight: math.unit(170, "lb"),
  23970. name: "Front (Dressed)",
  23971. image: {
  23972. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23973. extra: 1151/1059,
  23974. bottom: 356/1507
  23975. },
  23976. form: "taur"
  23977. },
  23978. maw: {
  23979. height: math.unit(1.46, "feet"),
  23980. name: "Maw",
  23981. image: {
  23982. source: "./media/characters/poojawa-vynar/maw.svg"
  23983. },
  23984. allForms: true
  23985. },
  23986. head: {
  23987. height: math.unit(2.34, "feet"),
  23988. name: "Head",
  23989. image: {
  23990. source: "./media/characters/poojawa-vynar/head.svg"
  23991. },
  23992. allForms: true
  23993. },
  23994. leftPaw: {
  23995. height: math.unit(1.72, "feet"),
  23996. name: "Left Paw",
  23997. image: {
  23998. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23999. },
  24000. allForms: true
  24001. },
  24002. rightPaw: {
  24003. height: math.unit(1.61, "feet"),
  24004. name: "Right Paw",
  24005. image: {
  24006. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24007. },
  24008. allForms: true
  24009. },
  24010. toering: {
  24011. height: math.unit(2.9, "inches"),
  24012. name: "Toering",
  24013. image: {
  24014. source: "./media/characters/poojawa-vynar/toering.svg"
  24015. },
  24016. allForms: true
  24017. },
  24018. shaft: {
  24019. height: math.unit(0.625, "feet"),
  24020. name: "Shaft",
  24021. image: {
  24022. source: "./media/characters/poojawa-vynar/shaft.svg"
  24023. },
  24024. allForms: true
  24025. },
  24026. spade: {
  24027. height: math.unit(0.42, "feet"),
  24028. name: "Spade",
  24029. image: {
  24030. source: "./media/characters/poojawa-vynar/spade.svg"
  24031. },
  24032. allForms: true
  24033. },
  24034. },
  24035. [
  24036. {
  24037. name: "Shortstack",
  24038. height: math.unit(4, "feet"),
  24039. form: "anthro"
  24040. },
  24041. {
  24042. name: "Normal",
  24043. height: math.unit(5 + 11 / 12, "feet"),
  24044. form: "anthro",
  24045. default: true
  24046. },
  24047. {
  24048. name: "Tauric",
  24049. height: math.unit(4, "meters"),
  24050. form: "taur",
  24051. default: true
  24052. },
  24053. ],
  24054. {
  24055. "anthro": {
  24056. name: "Anthro",
  24057. default: true
  24058. },
  24059. "taur": {
  24060. name: "Taur",
  24061. },
  24062. }
  24063. ))
  24064. characterMakers.push(() => makeCharacter(
  24065. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24066. {
  24067. front: {
  24068. height: math.unit(293, "meters"),
  24069. weight: math.unit(70400, "tons"),
  24070. name: "Front",
  24071. image: {
  24072. source: "./media/characters/violette/front.svg",
  24073. extra: 1227 / 1180,
  24074. bottom: 0.005
  24075. }
  24076. },
  24077. back: {
  24078. height: math.unit(293, "meters"),
  24079. weight: math.unit(70400, "tons"),
  24080. name: "Back",
  24081. image: {
  24082. source: "./media/characters/violette/back.svg",
  24083. extra: 1227 / 1180,
  24084. bottom: 0.005
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Macro",
  24091. height: math.unit(293, "meters"),
  24092. default: true
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24098. {
  24099. front: {
  24100. height: math.unit(1050, "feet"),
  24101. weight: math.unit(200000, "tons"),
  24102. name: "Front",
  24103. image: {
  24104. source: "./media/characters/alessandra/front.svg",
  24105. extra: 960 / 912,
  24106. bottom: 0.06
  24107. }
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Macro",
  24113. height: math.unit(1050, "feet")
  24114. },
  24115. {
  24116. name: "Macro+",
  24117. height: math.unit(900, "meters"),
  24118. default: true
  24119. },
  24120. ]
  24121. ))
  24122. characterMakers.push(() => makeCharacter(
  24123. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24124. {
  24125. front: {
  24126. height: math.unit(5, "feet"),
  24127. weight: math.unit(187, "lb"),
  24128. name: "Front",
  24129. image: {
  24130. source: "./media/characters/person/front.svg",
  24131. extra: 3087 / 2945,
  24132. bottom: 91 / 3181
  24133. }
  24134. },
  24135. },
  24136. [
  24137. {
  24138. name: "Micro",
  24139. height: math.unit(3, "inches")
  24140. },
  24141. {
  24142. name: "Normal",
  24143. height: math.unit(5, "feet"),
  24144. default: true
  24145. },
  24146. {
  24147. name: "Macro",
  24148. height: math.unit(90, "feet")
  24149. },
  24150. {
  24151. name: "Max Size",
  24152. height: math.unit(280, "feet")
  24153. },
  24154. ]
  24155. ))
  24156. characterMakers.push(() => makeCharacter(
  24157. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24158. {
  24159. front: {
  24160. height: math.unit(4.5, "meters"),
  24161. weight: math.unit(3200, "lb"),
  24162. name: "Front",
  24163. image: {
  24164. source: "./media/characters/ty/front.svg",
  24165. extra: 1038 / 960,
  24166. bottom: 31.156 / 1068
  24167. }
  24168. },
  24169. back: {
  24170. height: math.unit(4.5, "meters"),
  24171. weight: math.unit(3200, "lb"),
  24172. name: "Back",
  24173. image: {
  24174. source: "./media/characters/ty/back.svg",
  24175. extra: 1044 / 966,
  24176. bottom: 7.48 / 1049
  24177. }
  24178. },
  24179. },
  24180. [
  24181. {
  24182. name: "Normal",
  24183. height: math.unit(4.5, "meters"),
  24184. default: true
  24185. },
  24186. ]
  24187. ))
  24188. characterMakers.push(() => makeCharacter(
  24189. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24190. {
  24191. front: {
  24192. height: math.unit(5 + 4 / 12, "feet"),
  24193. weight: math.unit(115, "lb"),
  24194. name: "Front",
  24195. image: {
  24196. source: "./media/characters/rocky/front.svg",
  24197. extra: 1012 / 975,
  24198. bottom: 54 / 1066
  24199. }
  24200. },
  24201. },
  24202. [
  24203. {
  24204. name: "Normal",
  24205. height: math.unit(5 + 4 / 12, "feet"),
  24206. default: true
  24207. },
  24208. ]
  24209. ))
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24212. {
  24213. upright: {
  24214. height: math.unit(6, "meters"),
  24215. weight: math.unit(4000, "kg"),
  24216. name: "Upright",
  24217. image: {
  24218. source: "./media/characters/ruin/upright.svg",
  24219. extra: 668 / 661,
  24220. bottom: 42 / 799.8396
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(6, "meters"),
  24228. default: true
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24234. {
  24235. front: {
  24236. height: math.unit(5, "feet"),
  24237. weight: math.unit(106, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/robin/front.svg",
  24241. extra: 862 / 799,
  24242. bottom: 42.4 / 914.8856
  24243. }
  24244. },
  24245. },
  24246. [
  24247. {
  24248. name: "Normal",
  24249. height: math.unit(5, "feet"),
  24250. default: true
  24251. },
  24252. ]
  24253. ))
  24254. characterMakers.push(() => makeCharacter(
  24255. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24256. {
  24257. side: {
  24258. height: math.unit(3, "feet"),
  24259. weight: math.unit(225, "lb"),
  24260. name: "Side",
  24261. image: {
  24262. source: "./media/characters/saian/side.svg",
  24263. extra: 566 / 356,
  24264. bottom: 79.7 / 643
  24265. }
  24266. },
  24267. maw: {
  24268. height: math.unit(2.85, "feet"),
  24269. name: "Maw",
  24270. image: {
  24271. source: "./media/characters/saian/maw.svg"
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Normal",
  24278. height: math.unit(3, "feet"),
  24279. default: true
  24280. },
  24281. ]
  24282. ))
  24283. characterMakers.push(() => makeCharacter(
  24284. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24285. {
  24286. side: {
  24287. height: math.unit(8, "feet"),
  24288. weight: math.unit(300, "lb"),
  24289. name: "Side",
  24290. image: {
  24291. source: "./media/characters/equus-silvermane/side.svg",
  24292. extra: 2176 / 2050,
  24293. bottom: 65.7 / 2245
  24294. }
  24295. },
  24296. front: {
  24297. height: math.unit(8, "feet"),
  24298. weight: math.unit(300, "lb"),
  24299. name: "Front",
  24300. image: {
  24301. source: "./media/characters/equus-silvermane/front.svg",
  24302. extra: 4633 / 4400,
  24303. bottom: 71.3 / 4706.915
  24304. }
  24305. },
  24306. sideStepping: {
  24307. height: math.unit(8, "feet"),
  24308. weight: math.unit(300, "lb"),
  24309. name: "Side (Stepping)",
  24310. image: {
  24311. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24312. extra: 1968 / 1860,
  24313. bottom: 16.4 / 1989
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(8, "feet")
  24321. },
  24322. {
  24323. name: "Minimacro",
  24324. height: math.unit(75, "feet"),
  24325. default: true
  24326. },
  24327. {
  24328. name: "Macro",
  24329. height: math.unit(150, "feet")
  24330. },
  24331. {
  24332. name: "Macro+",
  24333. height: math.unit(1000, "feet")
  24334. },
  24335. {
  24336. name: "Megamacro",
  24337. height: math.unit(1, "mile")
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24343. {
  24344. side: {
  24345. height: math.unit(20, "feet"),
  24346. weight: math.unit(30000, "kg"),
  24347. name: "Side",
  24348. image: {
  24349. source: "./media/characters/windar/side.svg",
  24350. extra: 1491 / 1248,
  24351. bottom: 82.56 / 1568
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Normal",
  24358. height: math.unit(20, "feet"),
  24359. default: true
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24365. {
  24366. side: {
  24367. height: math.unit(15.66, "feet"),
  24368. weight: math.unit(150, "lb"),
  24369. name: "Side",
  24370. image: {
  24371. source: "./media/characters/melody/side.svg",
  24372. extra: 1097 / 944,
  24373. bottom: 11.8 / 1109
  24374. }
  24375. },
  24376. sideOutfit: {
  24377. height: math.unit(15.66, "feet"),
  24378. weight: math.unit(150, "lb"),
  24379. name: "Side (Outfit)",
  24380. image: {
  24381. source: "./media/characters/melody/side-outfit.svg",
  24382. extra: 1097 / 944,
  24383. bottom: 11.8 / 1109
  24384. }
  24385. },
  24386. },
  24387. [
  24388. {
  24389. name: "Normal",
  24390. height: math.unit(15.66, "feet"),
  24391. default: true
  24392. },
  24393. ]
  24394. ))
  24395. characterMakers.push(() => makeCharacter(
  24396. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24397. {
  24398. armoredFront: {
  24399. height: math.unit(8, "feet"),
  24400. weight: math.unit(325, "lb"),
  24401. name: "Front",
  24402. image: {
  24403. source: "./media/characters/windera/armored-front.svg",
  24404. extra: 1830/1598,
  24405. bottom: 151/1981
  24406. },
  24407. form: "armored",
  24408. default: true
  24409. },
  24410. macroFront: {
  24411. height: math.unit(70, "feet"),
  24412. weight: math.unit(315453, "lb"),
  24413. name: "Front",
  24414. image: {
  24415. source: "./media/characters/windera/macro-front.svg",
  24416. extra: 963/883,
  24417. bottom: 23/986
  24418. },
  24419. form: "macro",
  24420. default: true
  24421. },
  24422. },
  24423. [
  24424. {
  24425. name: "Normal",
  24426. height: math.unit(8, "feet"),
  24427. default: true,
  24428. form: "armored"
  24429. },
  24430. {
  24431. name: "Normal",
  24432. height: math.unit(70, "feet"),
  24433. default: true,
  24434. form: "macro"
  24435. },
  24436. ],
  24437. {
  24438. "armored": {
  24439. name: "Armored",
  24440. default: true
  24441. },
  24442. "macro": {
  24443. name: "Macro",
  24444. },
  24445. }
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24449. {
  24450. front: {
  24451. height: math.unit(28.75, "feet"),
  24452. weight: math.unit(2000, "kg"),
  24453. name: "Front",
  24454. image: {
  24455. source: "./media/characters/sonear/front.svg",
  24456. extra: 1041.1 / 964.9,
  24457. bottom: 53.7 / 1096.6
  24458. }
  24459. },
  24460. },
  24461. [
  24462. {
  24463. name: "Normal",
  24464. height: math.unit(28.75, "feet"),
  24465. default: true
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24471. {
  24472. side: {
  24473. height: math.unit(25.5, "feet"),
  24474. weight: math.unit(23000, "kg"),
  24475. name: "Side",
  24476. image: {
  24477. source: "./media/characters/kanara/side.svg"
  24478. }
  24479. },
  24480. },
  24481. [
  24482. {
  24483. name: "Normal",
  24484. height: math.unit(25.5, "feet"),
  24485. default: true
  24486. },
  24487. ]
  24488. ))
  24489. characterMakers.push(() => makeCharacter(
  24490. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24491. {
  24492. side: {
  24493. height: math.unit(10, "feet"),
  24494. weight: math.unit(1000, "kg"),
  24495. name: "Side",
  24496. image: {
  24497. source: "./media/characters/ereus/side.svg",
  24498. extra: 1157 / 959,
  24499. bottom: 153 / 1312.5
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(10, "feet"),
  24507. default: true
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24513. {
  24514. side: {
  24515. height: math.unit(4.5, "feet"),
  24516. weight: math.unit(500, "lb"),
  24517. name: "Side",
  24518. image: {
  24519. source: "./media/characters/e-ter/side.svg",
  24520. extra: 1550 / 1248,
  24521. bottom: 146 / 1694
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Normal",
  24528. height: math.unit(4.5, "feet"),
  24529. default: true
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24535. {
  24536. side: {
  24537. height: math.unit(9.7, "feet"),
  24538. weight: math.unit(4000, "kg"),
  24539. name: "Side",
  24540. image: {
  24541. source: "./media/characters/yamie/side.svg"
  24542. }
  24543. },
  24544. },
  24545. [
  24546. {
  24547. name: "Normal",
  24548. height: math.unit(9.7, "feet"),
  24549. default: true
  24550. },
  24551. ]
  24552. ))
  24553. characterMakers.push(() => makeCharacter(
  24554. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24555. {
  24556. front: {
  24557. height: math.unit(50, "feet"),
  24558. weight: math.unit(50000, "kg"),
  24559. name: "Front",
  24560. image: {
  24561. source: "./media/characters/anders/front.svg",
  24562. extra: 570 / 539,
  24563. bottom: 14.7 / 586.7
  24564. }
  24565. },
  24566. },
  24567. [
  24568. {
  24569. name: "Large",
  24570. height: math.unit(50, "feet")
  24571. },
  24572. {
  24573. name: "Macro",
  24574. height: math.unit(2000, "feet"),
  24575. default: true
  24576. },
  24577. {
  24578. name: "Megamacro",
  24579. height: math.unit(12, "miles")
  24580. },
  24581. ]
  24582. ))
  24583. characterMakers.push(() => makeCharacter(
  24584. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24585. {
  24586. front: {
  24587. height: math.unit(7 + 2 / 12, "feet"),
  24588. weight: math.unit(300, "lb"),
  24589. name: "Front",
  24590. image: {
  24591. source: "./media/characters/reban/front.svg",
  24592. extra: 1287/1212,
  24593. bottom: 148/1435
  24594. }
  24595. },
  24596. head: {
  24597. height: math.unit(1.95, "feet"),
  24598. name: "Head",
  24599. image: {
  24600. source: "./media/characters/reban/head.svg"
  24601. }
  24602. },
  24603. maw: {
  24604. height: math.unit(0.95, "feet"),
  24605. name: "Maw",
  24606. image: {
  24607. source: "./media/characters/reban/maw.svg"
  24608. }
  24609. },
  24610. foot: {
  24611. height: math.unit(1.65, "feet"),
  24612. name: "Foot",
  24613. image: {
  24614. source: "./media/characters/reban/foot.svg"
  24615. }
  24616. },
  24617. dick: {
  24618. height: math.unit(7 / 5, "feet"),
  24619. name: "Dick",
  24620. image: {
  24621. source: "./media/characters/reban/dick.svg"
  24622. }
  24623. },
  24624. },
  24625. [
  24626. {
  24627. name: "Natural Height",
  24628. height: math.unit(7 + 2 / 12, "feet")
  24629. },
  24630. {
  24631. name: "Macro",
  24632. height: math.unit(500, "feet"),
  24633. default: true
  24634. },
  24635. {
  24636. name: "Canon Height",
  24637. height: math.unit(50, "AU")
  24638. },
  24639. ]
  24640. ))
  24641. characterMakers.push(() => makeCharacter(
  24642. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24643. {
  24644. front: {
  24645. height: math.unit(6, "feet"),
  24646. weight: math.unit(150, "lb"),
  24647. name: "Front",
  24648. image: {
  24649. source: "./media/characters/terrance-keayes/front.svg",
  24650. extra: 1.005,
  24651. bottom: 151 / 1615
  24652. }
  24653. },
  24654. side: {
  24655. height: math.unit(6, "feet"),
  24656. weight: math.unit(150, "lb"),
  24657. name: "Side",
  24658. image: {
  24659. source: "./media/characters/terrance-keayes/side.svg",
  24660. extra: 1.005,
  24661. bottom: 129.4 / 1544
  24662. }
  24663. },
  24664. back: {
  24665. height: math.unit(6, "feet"),
  24666. weight: math.unit(150, "lb"),
  24667. name: "Back",
  24668. image: {
  24669. source: "./media/characters/terrance-keayes/back.svg",
  24670. extra: 1.005,
  24671. bottom: 58.4 / 1557.3
  24672. }
  24673. },
  24674. dick: {
  24675. height: math.unit(6 * 0.208, "feet"),
  24676. name: "Dick",
  24677. image: {
  24678. source: "./media/characters/terrance-keayes/dick.svg"
  24679. }
  24680. },
  24681. },
  24682. [
  24683. {
  24684. name: "Canon Height",
  24685. height: math.unit(35, "miles"),
  24686. default: true
  24687. },
  24688. ]
  24689. ))
  24690. characterMakers.push(() => makeCharacter(
  24691. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24692. {
  24693. front: {
  24694. height: math.unit(6, "feet"),
  24695. weight: math.unit(150, "lb"),
  24696. name: "Front",
  24697. image: {
  24698. source: "./media/characters/ofelia/front.svg",
  24699. extra: 1130/1117,
  24700. bottom: 91/1221
  24701. }
  24702. },
  24703. back: {
  24704. height: math.unit(6, "feet"),
  24705. weight: math.unit(150, "lb"),
  24706. name: "Back",
  24707. image: {
  24708. source: "./media/characters/ofelia/back.svg",
  24709. extra: 1172/1159,
  24710. bottom: 28/1200
  24711. }
  24712. },
  24713. maw: {
  24714. height: math.unit(1, "feet"),
  24715. name: "Maw",
  24716. image: {
  24717. source: "./media/characters/ofelia/maw.svg"
  24718. }
  24719. },
  24720. foot: {
  24721. height: math.unit(1.949, "feet"),
  24722. name: "Foot",
  24723. image: {
  24724. source: "./media/characters/ofelia/foot.svg"
  24725. }
  24726. },
  24727. },
  24728. [
  24729. {
  24730. name: "Canon Height",
  24731. height: math.unit(2000, "miles"),
  24732. default: true
  24733. },
  24734. ]
  24735. ))
  24736. characterMakers.push(() => makeCharacter(
  24737. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24738. {
  24739. front: {
  24740. height: math.unit(6, "feet"),
  24741. weight: math.unit(150, "lb"),
  24742. name: "Front",
  24743. image: {
  24744. source: "./media/characters/samuel/front.svg",
  24745. extra: 265 / 258,
  24746. bottom: 2 / 266.1566
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Macro",
  24753. height: math.unit(100, "feet"),
  24754. default: true
  24755. },
  24756. {
  24757. name: "Full Size",
  24758. height: math.unit(1000, "miles")
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24764. {
  24765. front: {
  24766. height: math.unit(6, "feet"),
  24767. weight: math.unit(300, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/beishir-kiel/front.svg",
  24771. extra: 569 / 547,
  24772. bottom: 41.9 / 609
  24773. }
  24774. },
  24775. maw: {
  24776. height: math.unit(6 * 0.202, "feet"),
  24777. name: "Maw",
  24778. image: {
  24779. source: "./media/characters/beishir-kiel/maw.svg"
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Macro",
  24786. height: math.unit(300, "feet"),
  24787. default: true
  24788. },
  24789. ]
  24790. ))
  24791. characterMakers.push(() => makeCharacter(
  24792. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24793. {
  24794. front: {
  24795. height: math.unit(5 + 7/12, "feet"),
  24796. weight: math.unit(120, "lb"),
  24797. name: "Front",
  24798. image: {
  24799. source: "./media/characters/logan-grey/front.svg",
  24800. extra: 1836/1738,
  24801. bottom: 108/1944
  24802. }
  24803. },
  24804. back: {
  24805. height: math.unit(5 + 7/12, "feet"),
  24806. weight: math.unit(120, "lb"),
  24807. name: "Back",
  24808. image: {
  24809. source: "./media/characters/logan-grey/back.svg",
  24810. extra: 1880/1794,
  24811. bottom: 24/1904
  24812. }
  24813. },
  24814. frontSfw: {
  24815. height: math.unit(5 + 7/12, "feet"),
  24816. weight: math.unit(120, "lb"),
  24817. name: "Front (SFW)",
  24818. image: {
  24819. source: "./media/characters/logan-grey/front-sfw.svg",
  24820. extra: 1836/1738,
  24821. bottom: 108/1944
  24822. }
  24823. },
  24824. backSfw: {
  24825. height: math.unit(5 + 7/12, "feet"),
  24826. weight: math.unit(120, "lb"),
  24827. name: "Back (SFW)",
  24828. image: {
  24829. source: "./media/characters/logan-grey/back-sfw.svg",
  24830. extra: 1880/1794,
  24831. bottom: 24/1904
  24832. }
  24833. },
  24834. hands: {
  24835. height: math.unit(0.84, "feet"),
  24836. name: "Hands",
  24837. image: {
  24838. source: "./media/characters/logan-grey/hands.svg"
  24839. }
  24840. },
  24841. paws: {
  24842. height: math.unit(0.72, "feet"),
  24843. name: "Paws",
  24844. image: {
  24845. source: "./media/characters/logan-grey/paws.svg"
  24846. }
  24847. },
  24848. cock: {
  24849. height: math.unit(1.45, "feet"),
  24850. name: "Cock",
  24851. image: {
  24852. source: "./media/characters/logan-grey/cock.svg"
  24853. }
  24854. },
  24855. cockAlt: {
  24856. height: math.unit(1.437, "feet"),
  24857. name: "Cock (alt)",
  24858. image: {
  24859. source: "./media/characters/logan-grey/cock-alt.svg"
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Normal",
  24866. height: math.unit(5 + 8 / 12, "feet")
  24867. },
  24868. {
  24869. name: "The 500 Foot Femboy",
  24870. height: math.unit(500, "feet"),
  24871. default: true
  24872. },
  24873. {
  24874. name: "Megmacro",
  24875. height: math.unit(20, "miles")
  24876. },
  24877. ]
  24878. ))
  24879. characterMakers.push(() => makeCharacter(
  24880. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24881. {
  24882. front: {
  24883. height: math.unit(8 + 2 / 12, "feet"),
  24884. weight: math.unit(275, "lb"),
  24885. name: "Front",
  24886. image: {
  24887. source: "./media/characters/draganta/front.svg",
  24888. extra: 1177 / 1135,
  24889. bottom: 33.46 / 1212.1
  24890. }
  24891. },
  24892. },
  24893. [
  24894. {
  24895. name: "Normal",
  24896. height: math.unit(8 + 6 / 12, "feet"),
  24897. default: true
  24898. },
  24899. {
  24900. name: "Macro",
  24901. height: math.unit(150, "feet")
  24902. },
  24903. {
  24904. name: "Megamacro",
  24905. height: math.unit(1000, "miles")
  24906. },
  24907. ]
  24908. ))
  24909. characterMakers.push(() => makeCharacter(
  24910. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24911. {
  24912. front: {
  24913. height: math.unit(1.72, "m"),
  24914. weight: math.unit(80, "lb"),
  24915. name: "Front",
  24916. image: {
  24917. source: "./media/characters/voski/front.svg",
  24918. extra: 2076.22 / 2022.4,
  24919. bottom: 102.7 / 2177.3866
  24920. }
  24921. },
  24922. frontFlaccid: {
  24923. height: math.unit(1.72, "m"),
  24924. weight: math.unit(80, "lb"),
  24925. name: "Front (Flaccid)",
  24926. image: {
  24927. source: "./media/characters/voski/front-flaccid.svg",
  24928. extra: 2076.22 / 2022.4,
  24929. bottom: 102.7 / 2177.3866
  24930. }
  24931. },
  24932. frontErect: {
  24933. height: math.unit(1.72, "m"),
  24934. weight: math.unit(80, "lb"),
  24935. name: "Front (Erect)",
  24936. image: {
  24937. source: "./media/characters/voski/front-erect.svg",
  24938. extra: 2076.22 / 2022.4,
  24939. bottom: 102.7 / 2177.3866
  24940. }
  24941. },
  24942. back: {
  24943. height: math.unit(1.72, "m"),
  24944. weight: math.unit(80, "lb"),
  24945. name: "Back",
  24946. image: {
  24947. source: "./media/characters/voski/back.svg",
  24948. extra: 2104 / 2051,
  24949. bottom: 10.45 / 2113.63
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Normal",
  24956. height: math.unit(1.72, "m")
  24957. },
  24958. {
  24959. name: "Macro",
  24960. height: math.unit(55, "m"),
  24961. default: true
  24962. },
  24963. {
  24964. name: "Macro+",
  24965. height: math.unit(300, "m")
  24966. },
  24967. {
  24968. name: "Macro++",
  24969. height: math.unit(700, "m")
  24970. },
  24971. {
  24972. name: "Macro+++",
  24973. height: math.unit(4500, "m")
  24974. },
  24975. {
  24976. name: "Macro++++",
  24977. height: math.unit(45, "km")
  24978. },
  24979. {
  24980. name: "Macro+++++",
  24981. height: math.unit(1220, "km")
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24987. {
  24988. front: {
  24989. height: math.unit(2.3, "m"),
  24990. weight: math.unit(304, "kg"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/icowom-lee/front.svg",
  24994. extra: 985 / 955,
  24995. bottom: 25.4 / 1012
  24996. }
  24997. },
  24998. fronttentacles: {
  24999. height: math.unit(2.3, "m"),
  25000. weight: math.unit(304, "kg"),
  25001. name: "Front-tentacles",
  25002. image: {
  25003. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25004. extra: 985 / 955,
  25005. bottom: 25.4 / 1012
  25006. }
  25007. },
  25008. back: {
  25009. height: math.unit(2.3, "m"),
  25010. weight: math.unit(304, "kg"),
  25011. name: "Back",
  25012. image: {
  25013. source: "./media/characters/icowom-lee/back.svg",
  25014. extra: 975 / 954,
  25015. bottom: 9.5 / 985
  25016. }
  25017. },
  25018. backtentacles: {
  25019. height: math.unit(2.3, "m"),
  25020. weight: math.unit(304, "kg"),
  25021. name: "Back-tentacles",
  25022. image: {
  25023. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25024. extra: 975 / 954,
  25025. bottom: 9.5 / 985
  25026. }
  25027. },
  25028. frontDressed: {
  25029. height: math.unit(2.3, "m"),
  25030. weight: math.unit(304, "kg"),
  25031. name: "Front (Dressed)",
  25032. image: {
  25033. source: "./media/characters/icowom-lee/front-dressed.svg",
  25034. extra: 3076 / 2933,
  25035. bottom: 51.4 / 3125.1889
  25036. }
  25037. },
  25038. rump: {
  25039. height: math.unit(0.776, "meters"),
  25040. name: "Rump",
  25041. image: {
  25042. source: "./media/characters/icowom-lee/rump.svg"
  25043. }
  25044. },
  25045. genitals: {
  25046. height: math.unit(0.78, "meters"),
  25047. name: "Genitals",
  25048. image: {
  25049. source: "./media/characters/icowom-lee/genitals.svg"
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Normal",
  25056. height: math.unit(2.3, "meters"),
  25057. default: true
  25058. },
  25059. {
  25060. name: "Macro",
  25061. height: math.unit(94, "meters"),
  25062. default: true
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25068. {
  25069. front: {
  25070. height: math.unit(22, "meters"),
  25071. weight: math.unit(21000, "kg"),
  25072. name: "Front",
  25073. image: {
  25074. source: "./media/characters/shock-diamond/front.svg",
  25075. extra: 2204 / 2053,
  25076. bottom: 65 / 2239.47
  25077. }
  25078. },
  25079. frontNude: {
  25080. height: math.unit(22, "meters"),
  25081. weight: math.unit(21000, "kg"),
  25082. name: "Front (Nude)",
  25083. image: {
  25084. source: "./media/characters/shock-diamond/front-nude.svg",
  25085. extra: 2514 / 2285,
  25086. bottom: 13 / 2527.56
  25087. }
  25088. },
  25089. },
  25090. [
  25091. {
  25092. name: "Normal",
  25093. height: math.unit(3, "meters")
  25094. },
  25095. {
  25096. name: "Macro",
  25097. height: math.unit(22, "meters"),
  25098. default: true
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(5 + 4/12, "feet"),
  25107. weight: math.unit(125, "lb"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/rory/front.svg",
  25111. extra: 1790/1681,
  25112. bottom: 66/1856
  25113. },
  25114. form: "normal",
  25115. default: true
  25116. },
  25117. back: {
  25118. height: math.unit(5 + 4/12, "feet"),
  25119. weight: math.unit(125, "lb"),
  25120. name: "Back",
  25121. image: {
  25122. source: "./media/characters/rory/back.svg",
  25123. extra: 1805/1690,
  25124. bottom: 56/1861
  25125. },
  25126. form: "normal"
  25127. },
  25128. frontDressed: {
  25129. height: math.unit(5 + 4/12, "feet"),
  25130. weight: math.unit(125, "lb"),
  25131. name: "Front (Dressed)",
  25132. image: {
  25133. source: "./media/characters/rory/front-dressed.svg",
  25134. extra: 1790/1681,
  25135. bottom: 66/1856
  25136. },
  25137. form: "normal"
  25138. },
  25139. backDressed: {
  25140. height: math.unit(5 + 4/12, "feet"),
  25141. weight: math.unit(125, "lb"),
  25142. name: "Back (Dressed)",
  25143. image: {
  25144. source: "./media/characters/rory/back-dressed.svg",
  25145. extra: 1805/1690,
  25146. bottom: 56/1861
  25147. },
  25148. form: "normal"
  25149. },
  25150. frontNsfw: {
  25151. height: math.unit(5 + 4/12, "feet"),
  25152. weight: math.unit(125, "lb"),
  25153. name: "Front (NSFW)",
  25154. image: {
  25155. source: "./media/characters/rory/front-nsfw.svg",
  25156. extra: 1790/1681,
  25157. bottom: 66/1856
  25158. },
  25159. form: "normal"
  25160. },
  25161. backNsfw: {
  25162. height: math.unit(5 + 4/12, "feet"),
  25163. weight: math.unit(125, "lb"),
  25164. name: "Back (NSFW)",
  25165. image: {
  25166. source: "./media/characters/rory/back-nsfw.svg",
  25167. extra: 1805/1690,
  25168. bottom: 56/1861
  25169. },
  25170. form: "normal"
  25171. },
  25172. dick: {
  25173. height: math.unit(0.8, "feet"),
  25174. name: "Dick",
  25175. image: {
  25176. source: "./media/characters/rory/dick.svg"
  25177. },
  25178. form: "normal"
  25179. },
  25180. thicc_front: {
  25181. height: math.unit(5 + 4/12, "feet"),
  25182. weight: math.unit(195, "lb"),
  25183. name: "Front",
  25184. image: {
  25185. source: "./media/characters/rory/thicc-front.svg",
  25186. extra: 1220/1100,
  25187. bottom: 103/1323
  25188. },
  25189. form: "thicc",
  25190. default: true
  25191. },
  25192. thicc_back: {
  25193. height: math.unit(5 + 4/12, "feet"),
  25194. weight: math.unit(195, "lb"),
  25195. name: "Back",
  25196. image: {
  25197. source: "./media/characters/rory/thicc-back.svg",
  25198. extra: 1166/1086,
  25199. bottom: 35/1201
  25200. },
  25201. form: "thicc"
  25202. },
  25203. },
  25204. [
  25205. {
  25206. name: "Micro",
  25207. height: math.unit(3, "inches"),
  25208. allForms: true
  25209. },
  25210. {
  25211. name: "Normal",
  25212. height: math.unit(5 + 4/12, "feet"),
  25213. allForms: true,
  25214. default: true
  25215. },
  25216. {
  25217. name: "Macro",
  25218. height: math.unit(90, "feet"),
  25219. allForms: true
  25220. },
  25221. {
  25222. name: "Supercharged",
  25223. height: math.unit(270, "feet"),
  25224. allForms: true
  25225. },
  25226. ],
  25227. {
  25228. "normal": {
  25229. name: "Normal",
  25230. default: true
  25231. },
  25232. "thicc": {
  25233. name: "Thicc",
  25234. },
  25235. }
  25236. ))
  25237. characterMakers.push(() => makeCharacter(
  25238. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25239. {
  25240. front: {
  25241. height: math.unit(5 + 9 / 12, "feet"),
  25242. weight: math.unit(190, "lb"),
  25243. name: "Front",
  25244. image: {
  25245. source: "./media/characters/sprisk/front.svg",
  25246. extra: 1225 / 1180,
  25247. bottom: 42.7 / 1266.4
  25248. }
  25249. },
  25250. frontNsfw: {
  25251. height: math.unit(5 + 9 / 12, "feet"),
  25252. weight: math.unit(190, "lb"),
  25253. name: "Front (NSFW)",
  25254. image: {
  25255. source: "./media/characters/sprisk/front-nsfw.svg",
  25256. extra: 1225 / 1180,
  25257. bottom: 42.7 / 1266.4
  25258. }
  25259. },
  25260. back: {
  25261. height: math.unit(5 + 9 / 12, "feet"),
  25262. weight: math.unit(190, "lb"),
  25263. name: "Back",
  25264. image: {
  25265. source: "./media/characters/sprisk/back.svg",
  25266. extra: 1247 / 1200,
  25267. bottom: 5.6 / 1253.04
  25268. }
  25269. },
  25270. },
  25271. [
  25272. {
  25273. name: "Tiny",
  25274. height: math.unit(2, "inches")
  25275. },
  25276. {
  25277. name: "Normal",
  25278. height: math.unit(5 + 9 / 12, "feet"),
  25279. default: true
  25280. },
  25281. {
  25282. name: "Mini Macro",
  25283. height: math.unit(18, "feet")
  25284. },
  25285. {
  25286. name: "Macro",
  25287. height: math.unit(100, "feet")
  25288. },
  25289. {
  25290. name: "MACRO",
  25291. height: math.unit(50, "miles")
  25292. },
  25293. {
  25294. name: "M A C R O",
  25295. height: math.unit(300, "miles")
  25296. },
  25297. ]
  25298. ))
  25299. characterMakers.push(() => makeCharacter(
  25300. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25301. {
  25302. side: {
  25303. height: math.unit(15.6, "meters"),
  25304. weight: math.unit(700000, "kg"),
  25305. name: "Side",
  25306. image: {
  25307. source: "./media/characters/bunsen/side.svg",
  25308. extra: 1644 / 358
  25309. }
  25310. },
  25311. foot: {
  25312. height: math.unit(1.611 * 1644 / 358, "meter"),
  25313. name: "Foot",
  25314. image: {
  25315. source: "./media/characters/bunsen/foot.svg"
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "Small",
  25322. height: math.unit(10, "feet")
  25323. },
  25324. {
  25325. name: "Normal",
  25326. height: math.unit(15.6, "meters"),
  25327. default: true
  25328. },
  25329. ]
  25330. ))
  25331. characterMakers.push(() => makeCharacter(
  25332. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25333. {
  25334. front: {
  25335. height: math.unit(4 + 11 / 12, "feet"),
  25336. weight: math.unit(140, "lb"),
  25337. name: "Front",
  25338. image: {
  25339. source: "./media/characters/sesh/front.svg",
  25340. extra: 3420 / 3231,
  25341. bottom: 72 / 3949.5
  25342. }
  25343. },
  25344. },
  25345. [
  25346. {
  25347. name: "Normal",
  25348. height: math.unit(4 + 11 / 12, "feet")
  25349. },
  25350. {
  25351. name: "Grown",
  25352. height: math.unit(15, "feet"),
  25353. default: true
  25354. },
  25355. {
  25356. name: "Macro",
  25357. height: math.unit(1500, "feet")
  25358. },
  25359. {
  25360. name: "Megamacro",
  25361. height: math.unit(30, "miles")
  25362. },
  25363. {
  25364. name: "Continental",
  25365. height: math.unit(3000, "miles")
  25366. },
  25367. {
  25368. name: "Gravity Mass",
  25369. height: math.unit(300000, "miles")
  25370. },
  25371. {
  25372. name: "Planet Buster",
  25373. height: math.unit(30000000, "miles")
  25374. },
  25375. {
  25376. name: "Big",
  25377. height: math.unit(3000000000, "miles")
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25383. {
  25384. front: {
  25385. height: math.unit(9, "feet"),
  25386. weight: math.unit(350, "lb"),
  25387. name: "Front",
  25388. image: {
  25389. source: "./media/characters/pepper/front.svg",
  25390. extra: 1448 / 1312,
  25391. bottom: 9.4 / 1457.88
  25392. }
  25393. },
  25394. back: {
  25395. height: math.unit(9, "feet"),
  25396. weight: math.unit(350, "lb"),
  25397. name: "Back",
  25398. image: {
  25399. source: "./media/characters/pepper/back.svg",
  25400. extra: 1423 / 1300,
  25401. bottom: 4.6 / 1429
  25402. }
  25403. },
  25404. maw: {
  25405. height: math.unit(0.932, "feet"),
  25406. name: "Maw",
  25407. image: {
  25408. source: "./media/characters/pepper/maw.svg"
  25409. }
  25410. },
  25411. },
  25412. [
  25413. {
  25414. name: "Normal",
  25415. height: math.unit(9, "feet"),
  25416. default: true
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25422. {
  25423. front: {
  25424. height: math.unit(6, "feet"),
  25425. weight: math.unit(150, "lb"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/maelstrom/front.svg",
  25429. extra: 2100 / 1883,
  25430. bottom: 94 / 2196.7
  25431. }
  25432. },
  25433. },
  25434. [
  25435. {
  25436. name: "Less Kaiju",
  25437. height: math.unit(200, "feet")
  25438. },
  25439. {
  25440. name: "Kaiju",
  25441. height: math.unit(400, "feet"),
  25442. default: true
  25443. },
  25444. {
  25445. name: "Kaiju-er",
  25446. height: math.unit(600, "feet")
  25447. },
  25448. ]
  25449. ))
  25450. characterMakers.push(() => makeCharacter(
  25451. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25452. {
  25453. front: {
  25454. height: math.unit(6 + 5 / 12, "feet"),
  25455. weight: math.unit(180, "lb"),
  25456. name: "Front",
  25457. image: {
  25458. source: "./media/characters/lexir/front.svg",
  25459. extra: 180 / 172,
  25460. bottom: 12 / 192
  25461. }
  25462. },
  25463. back: {
  25464. height: math.unit(6 + 5 / 12, "feet"),
  25465. weight: math.unit(180, "lb"),
  25466. name: "Back",
  25467. image: {
  25468. source: "./media/characters/lexir/back.svg",
  25469. extra: 1273/1201,
  25470. bottom: 39/1312
  25471. }
  25472. },
  25473. },
  25474. [
  25475. {
  25476. name: "Very Smal",
  25477. height: math.unit(1, "nm")
  25478. },
  25479. {
  25480. name: "Normal",
  25481. height: math.unit(6 + 5 / 12, "feet"),
  25482. default: true
  25483. },
  25484. {
  25485. name: "Macro",
  25486. height: math.unit(1, "mile")
  25487. },
  25488. {
  25489. name: "Megamacro",
  25490. height: math.unit(50, "miles")
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25496. {
  25497. front: {
  25498. height: math.unit(1.5, "meters"),
  25499. weight: math.unit(100, "lb"),
  25500. name: "Front",
  25501. image: {
  25502. source: "./media/characters/maksio/front.svg",
  25503. extra: 1549 / 1531,
  25504. bottom: 123.7 / 1674.5429
  25505. }
  25506. },
  25507. back: {
  25508. height: math.unit(1.5, "meters"),
  25509. weight: math.unit(100, "lb"),
  25510. name: "Back",
  25511. image: {
  25512. source: "./media/characters/maksio/back.svg",
  25513. extra: 1541 / 1509,
  25514. bottom: 97 / 1639
  25515. }
  25516. },
  25517. hand: {
  25518. height: math.unit(0.621, "feet"),
  25519. name: "Hand",
  25520. image: {
  25521. source: "./media/characters/maksio/hand.svg"
  25522. }
  25523. },
  25524. foot: {
  25525. height: math.unit(1.611, "feet"),
  25526. name: "Foot",
  25527. image: {
  25528. source: "./media/characters/maksio/foot.svg"
  25529. }
  25530. },
  25531. },
  25532. [
  25533. {
  25534. name: "Shrunken",
  25535. height: math.unit(10, "cm")
  25536. },
  25537. {
  25538. name: "Normal",
  25539. height: math.unit(150, "cm"),
  25540. default: true
  25541. },
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25546. {
  25547. front: {
  25548. height: math.unit(100, "feet"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/erza-bear/front.svg",
  25552. extra: 2449 / 2390,
  25553. bottom: 46 / 2494
  25554. }
  25555. },
  25556. back: {
  25557. height: math.unit(100, "feet"),
  25558. name: "Back",
  25559. image: {
  25560. source: "./media/characters/erza-bear/back.svg",
  25561. extra: 2489 / 2430,
  25562. bottom: 85.4 / 2480
  25563. }
  25564. },
  25565. tail: {
  25566. height: math.unit(42, "feet"),
  25567. name: "Tail",
  25568. image: {
  25569. source: "./media/characters/erza-bear/tail.svg"
  25570. }
  25571. },
  25572. tongue: {
  25573. height: math.unit(8, "feet"),
  25574. name: "Tongue",
  25575. image: {
  25576. source: "./media/characters/erza-bear/tongue.svg"
  25577. }
  25578. },
  25579. dick: {
  25580. height: math.unit(10.5, "feet"),
  25581. name: "Dick",
  25582. image: {
  25583. source: "./media/characters/erza-bear/dick.svg"
  25584. }
  25585. },
  25586. dickVertical: {
  25587. height: math.unit(16.9, "feet"),
  25588. name: "Dick (Vertical)",
  25589. image: {
  25590. source: "./media/characters/erza-bear/dick-vertical.svg"
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Macro",
  25597. height: math.unit(100, "feet"),
  25598. default: true
  25599. },
  25600. ]
  25601. ))
  25602. characterMakers.push(() => makeCharacter(
  25603. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25604. {
  25605. front: {
  25606. height: math.unit(172, "cm"),
  25607. weight: math.unit(73, "kg"),
  25608. name: "Front",
  25609. image: {
  25610. source: "./media/characters/violet-flor/front.svg",
  25611. extra: 1530 / 1442,
  25612. bottom: 61.9 / 1588.8
  25613. }
  25614. },
  25615. back: {
  25616. height: math.unit(180, "cm"),
  25617. weight: math.unit(73, "kg"),
  25618. name: "Back",
  25619. image: {
  25620. source: "./media/characters/violet-flor/back.svg",
  25621. extra: 1692 / 1630,
  25622. bottom: 20 / 1712
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Normal",
  25629. height: math.unit(172, "cm"),
  25630. default: true
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25636. {
  25637. front: {
  25638. height: math.unit(6, "feet"),
  25639. weight: math.unit(220, "lb"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/lynn-rhea/front.svg",
  25643. extra: 310 / 273
  25644. }
  25645. },
  25646. back: {
  25647. height: math.unit(6, "feet"),
  25648. weight: math.unit(220, "lb"),
  25649. name: "Back",
  25650. image: {
  25651. source: "./media/characters/lynn-rhea/back.svg",
  25652. extra: 310 / 273
  25653. }
  25654. },
  25655. dicks: {
  25656. height: math.unit(0.9, "feet"),
  25657. name: "Dicks",
  25658. image: {
  25659. source: "./media/characters/lynn-rhea/dicks.svg"
  25660. }
  25661. },
  25662. slit: {
  25663. height: math.unit(0.4, "feet"),
  25664. name: "Slit",
  25665. image: {
  25666. source: "./media/characters/lynn-rhea/slit.svg"
  25667. }
  25668. },
  25669. },
  25670. [
  25671. {
  25672. name: "Micro",
  25673. height: math.unit(1, "inch")
  25674. },
  25675. {
  25676. name: "Macro",
  25677. height: math.unit(60, "feet"),
  25678. default: true
  25679. },
  25680. {
  25681. name: "Megamacro",
  25682. height: math.unit(2, "miles")
  25683. },
  25684. {
  25685. name: "Gigamacro",
  25686. height: math.unit(3, "earths")
  25687. },
  25688. {
  25689. name: "Galactic",
  25690. height: math.unit(0.8, "galaxies")
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25696. {
  25697. front: {
  25698. height: math.unit(1600, "feet"),
  25699. weight: math.unit(85758785169, "kg"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/valathos/front.svg",
  25703. extra: 1451 / 1339
  25704. }
  25705. },
  25706. },
  25707. [
  25708. {
  25709. name: "Macro",
  25710. height: math.unit(1600, "feet"),
  25711. default: true
  25712. },
  25713. ]
  25714. ))
  25715. characterMakers.push(() => makeCharacter(
  25716. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25717. {
  25718. front: {
  25719. height: math.unit(7 + 5 / 12, "feet"),
  25720. weight: math.unit(300, "lb"),
  25721. name: "Front",
  25722. image: {
  25723. source: "./media/characters/azula/front.svg",
  25724. extra: 3208 / 2880,
  25725. bottom: 80.2 / 3277
  25726. }
  25727. },
  25728. back: {
  25729. height: math.unit(7 + 5 / 12, "feet"),
  25730. weight: math.unit(300, "lb"),
  25731. name: "Back",
  25732. image: {
  25733. source: "./media/characters/azula/back.svg",
  25734. extra: 3169 / 2822,
  25735. bottom: 150.6 / 3321
  25736. }
  25737. },
  25738. },
  25739. [
  25740. {
  25741. name: "Normal",
  25742. height: math.unit(7 + 5 / 12, "feet"),
  25743. default: true
  25744. },
  25745. {
  25746. name: "Big",
  25747. height: math.unit(20, "feet")
  25748. },
  25749. ]
  25750. ))
  25751. characterMakers.push(() => makeCharacter(
  25752. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25753. {
  25754. front: {
  25755. height: math.unit(5 + 1 / 12, "feet"),
  25756. weight: math.unit(110, "lb"),
  25757. name: "Front",
  25758. image: {
  25759. source: "./media/characters/rupert/front.svg",
  25760. extra: 1549 / 1495,
  25761. bottom: 54.2 / 1604.4
  25762. }
  25763. },
  25764. },
  25765. [
  25766. {
  25767. name: "Normal",
  25768. height: math.unit(5 + 1 / 12, "feet"),
  25769. default: true
  25770. },
  25771. ]
  25772. ))
  25773. characterMakers.push(() => makeCharacter(
  25774. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25775. {
  25776. front: {
  25777. height: math.unit(8 + 4 / 12, "feet"),
  25778. weight: math.unit(350, "lb"),
  25779. name: "Front",
  25780. image: {
  25781. source: "./media/characters/sheera-castellar/front.svg",
  25782. extra: 1957 / 1894,
  25783. bottom: 26.97 / 1975.017
  25784. }
  25785. },
  25786. side: {
  25787. height: math.unit(8 + 4 / 12, "feet"),
  25788. weight: math.unit(350, "lb"),
  25789. name: "Side",
  25790. image: {
  25791. source: "./media/characters/sheera-castellar/side.svg",
  25792. extra: 1957 / 1894
  25793. }
  25794. },
  25795. back: {
  25796. height: math.unit(8 + 4 / 12, "feet"),
  25797. weight: math.unit(350, "lb"),
  25798. name: "Back",
  25799. image: {
  25800. source: "./media/characters/sheera-castellar/back.svg",
  25801. extra: 1957 / 1894
  25802. }
  25803. },
  25804. angled: {
  25805. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25806. weight: math.unit(350, "lb"),
  25807. name: "Angled",
  25808. image: {
  25809. source: "./media/characters/sheera-castellar/angled.svg",
  25810. extra: 1807 / 1707,
  25811. bottom: 68 / 1875
  25812. }
  25813. },
  25814. genitals: {
  25815. height: math.unit(2.2, "feet"),
  25816. name: "Genitals",
  25817. image: {
  25818. source: "./media/characters/sheera-castellar/genitals.svg"
  25819. }
  25820. },
  25821. taur: {
  25822. height: math.unit(10 + 6/12, "feet"),
  25823. name: "Taur",
  25824. image: {
  25825. source: "./media/characters/sheera-castellar/taur.svg",
  25826. extra: 2017/1909,
  25827. bottom: 185/2202
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(8 + 4 / 12, "feet")
  25835. },
  25836. {
  25837. name: "Macro",
  25838. height: math.unit(150, "feet"),
  25839. default: true
  25840. },
  25841. {
  25842. name: "Macro+",
  25843. height: math.unit(800, "feet")
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(6, "feet"),
  25852. weight: math.unit(150, "lb"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/jaipur/front.svg",
  25856. extra: 3860 / 3731,
  25857. bottom: 287 / 4140
  25858. }
  25859. },
  25860. back: {
  25861. height: math.unit(6, "feet"),
  25862. weight: math.unit(150, "lb"),
  25863. name: "Back",
  25864. image: {
  25865. source: "./media/characters/jaipur/back.svg",
  25866. extra: 1637/1561,
  25867. bottom: 154/1791
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Normal",
  25874. height: math.unit(1.85, "meters"),
  25875. default: true
  25876. },
  25877. {
  25878. name: "Macro",
  25879. height: math.unit(150, "meters")
  25880. },
  25881. {
  25882. name: "Macro+",
  25883. height: math.unit(0.5, "miles")
  25884. },
  25885. {
  25886. name: "Macro++",
  25887. height: math.unit(2.5, "miles")
  25888. },
  25889. {
  25890. name: "Macro+++",
  25891. height: math.unit(12, "miles")
  25892. },
  25893. {
  25894. name: "Macro++++",
  25895. height: math.unit(120, "miles")
  25896. },
  25897. {
  25898. name: "Macro+++++",
  25899. height: math.unit(1200, "miles")
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(6, "feet"),
  25908. weight: math.unit(150, "lb"),
  25909. name: "Front",
  25910. image: {
  25911. source: "./media/characters/sheila-wolf/front.svg",
  25912. extra: 1931 / 1808,
  25913. bottom: 29.5 / 1960
  25914. }
  25915. },
  25916. dick: {
  25917. height: math.unit(1.464, "feet"),
  25918. name: "Dick",
  25919. image: {
  25920. source: "./media/characters/sheila-wolf/dick.svg"
  25921. }
  25922. },
  25923. muzzle: {
  25924. height: math.unit(0.513, "feet"),
  25925. name: "Muzzle",
  25926. image: {
  25927. source: "./media/characters/sheila-wolf/muzzle.svg"
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Macro",
  25934. height: math.unit(70, "feet"),
  25935. default: true
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25941. {
  25942. front: {
  25943. height: math.unit(32, "meters"),
  25944. weight: math.unit(300000, "kg"),
  25945. name: "Front",
  25946. image: {
  25947. source: "./media/characters/almor/front.svg",
  25948. extra: 1408 / 1322,
  25949. bottom: 94.6 / 1506.5
  25950. }
  25951. },
  25952. },
  25953. [
  25954. {
  25955. name: "Macro",
  25956. height: math.unit(32, "meters"),
  25957. default: true
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25963. {
  25964. front: {
  25965. height: math.unit(7, "feet"),
  25966. weight: math.unit(200, "lb"),
  25967. name: "Front",
  25968. image: {
  25969. source: "./media/characters/silver/front.svg",
  25970. extra: 472.1 / 450.5,
  25971. bottom: 26.5 / 499.424
  25972. }
  25973. },
  25974. },
  25975. [
  25976. {
  25977. name: "Normal",
  25978. height: math.unit(7, "feet"),
  25979. default: true
  25980. },
  25981. {
  25982. name: "Macro",
  25983. height: math.unit(800, "feet")
  25984. },
  25985. {
  25986. name: "Megamacro",
  25987. height: math.unit(250, "miles")
  25988. },
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25993. {
  25994. front: {
  25995. height: math.unit(6, "feet"),
  25996. weight: math.unit(150, "lb"),
  25997. name: "Front",
  25998. image: {
  25999. source: "./media/characters/pliskin/front.svg",
  26000. extra: 1469 / 1359,
  26001. bottom: 70 / 1540
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Micro",
  26008. height: math.unit(3, "inches")
  26009. },
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(5 + 11 / 12, "feet"),
  26013. default: true
  26014. },
  26015. {
  26016. name: "Macro",
  26017. height: math.unit(120, "feet")
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26023. {
  26024. front: {
  26025. height: math.unit(6, "feet"),
  26026. weight: math.unit(150, "lb"),
  26027. name: "Front",
  26028. image: {
  26029. source: "./media/characters/sammy/front.svg",
  26030. extra: 1193 / 1089,
  26031. bottom: 30.5 / 1226
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Macro",
  26038. height: math.unit(1700, "feet"),
  26039. default: true
  26040. },
  26041. {
  26042. name: "Examacro",
  26043. height: math.unit(2.5e9, "lightyears")
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(21, "meters"),
  26052. weight: math.unit(12, "tonnes"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/kuru/front.svg",
  26056. extra: 4301 / 3785,
  26057. bottom: 371.3 / 4691
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Macro",
  26064. height: math.unit(21, "meters"),
  26065. default: true
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26071. {
  26072. front: {
  26073. height: math.unit(23, "meters"),
  26074. weight: math.unit(12.2, "tonnes"),
  26075. name: "Front",
  26076. image: {
  26077. source: "./media/characters/rakka/front.svg",
  26078. extra: 4670 / 4169,
  26079. bottom: 301 / 4968.7
  26080. }
  26081. },
  26082. },
  26083. [
  26084. {
  26085. name: "Macro",
  26086. height: math.unit(23, "meters"),
  26087. default: true
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26093. {
  26094. front: {
  26095. height: math.unit(6, "feet"),
  26096. weight: math.unit(150, "lb"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/rhys-feline/front.svg",
  26100. extra: 2488 / 2308,
  26101. bottom: 35.67 / 2519.19
  26102. }
  26103. },
  26104. },
  26105. [
  26106. {
  26107. name: "Really Small",
  26108. height: math.unit(1, "nm")
  26109. },
  26110. {
  26111. name: "Micro",
  26112. height: math.unit(4, "inches")
  26113. },
  26114. {
  26115. name: "Normal",
  26116. height: math.unit(4 + 10 / 12, "feet"),
  26117. default: true
  26118. },
  26119. {
  26120. name: "Macro",
  26121. height: math.unit(100, "feet")
  26122. },
  26123. {
  26124. name: "Megamacto",
  26125. height: math.unit(50, "miles")
  26126. },
  26127. ]
  26128. ))
  26129. characterMakers.push(() => makeCharacter(
  26130. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26131. {
  26132. side: {
  26133. height: math.unit(30, "feet"),
  26134. weight: math.unit(35000, "kg"),
  26135. name: "Side",
  26136. image: {
  26137. source: "./media/characters/alydar/side.svg",
  26138. extra: 234 / 222,
  26139. bottom: 6.5 / 241
  26140. }
  26141. },
  26142. front: {
  26143. height: math.unit(30, "feet"),
  26144. weight: math.unit(35000, "kg"),
  26145. name: "Front",
  26146. image: {
  26147. source: "./media/characters/alydar/front.svg",
  26148. extra: 223.37 / 210.2,
  26149. bottom: 22.3 / 246.76
  26150. }
  26151. },
  26152. top: {
  26153. height: math.unit(64.54, "feet"),
  26154. weight: math.unit(35000, "kg"),
  26155. name: "Top",
  26156. image: {
  26157. source: "./media/characters/alydar/top.svg"
  26158. }
  26159. },
  26160. anthro: {
  26161. height: math.unit(30, "feet"),
  26162. weight: math.unit(9000, "kg"),
  26163. name: "Anthro",
  26164. image: {
  26165. source: "./media/characters/alydar/anthro.svg",
  26166. extra: 432 / 421,
  26167. bottom: 7.18 / 440
  26168. }
  26169. },
  26170. maw: {
  26171. height: math.unit(11.693, "feet"),
  26172. name: "Maw",
  26173. image: {
  26174. source: "./media/characters/alydar/maw.svg"
  26175. }
  26176. },
  26177. head: {
  26178. height: math.unit(11.693, "feet"),
  26179. name: "Head",
  26180. image: {
  26181. source: "./media/characters/alydar/head.svg"
  26182. }
  26183. },
  26184. headAlt: {
  26185. height: math.unit(12.861, "feet"),
  26186. name: "Head (Alt)",
  26187. image: {
  26188. source: "./media/characters/alydar/head-alt.svg"
  26189. }
  26190. },
  26191. wing: {
  26192. height: math.unit(20.712, "feet"),
  26193. name: "Wing",
  26194. image: {
  26195. source: "./media/characters/alydar/wing.svg"
  26196. }
  26197. },
  26198. wingFeather: {
  26199. height: math.unit(9.662, "feet"),
  26200. name: "Wing Feather",
  26201. image: {
  26202. source: "./media/characters/alydar/wing-feather.svg"
  26203. }
  26204. },
  26205. countourFeather: {
  26206. height: math.unit(4.154, "feet"),
  26207. name: "Contour Feather",
  26208. image: {
  26209. source: "./media/characters/alydar/contour-feather.svg"
  26210. }
  26211. },
  26212. },
  26213. [
  26214. {
  26215. name: "Diplomatic",
  26216. height: math.unit(13, "feet"),
  26217. default: true
  26218. },
  26219. {
  26220. name: "Small",
  26221. height: math.unit(30, "feet")
  26222. },
  26223. {
  26224. name: "Normal",
  26225. height: math.unit(95, "feet"),
  26226. default: true
  26227. },
  26228. {
  26229. name: "Large",
  26230. height: math.unit(285, "feet")
  26231. },
  26232. {
  26233. name: "Incomprehensible",
  26234. height: math.unit(450, "megameters")
  26235. },
  26236. ]
  26237. ))
  26238. characterMakers.push(() => makeCharacter(
  26239. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26240. {
  26241. side: {
  26242. height: math.unit(11, "feet"),
  26243. weight: math.unit(1750, "kg"),
  26244. name: "Side",
  26245. image: {
  26246. source: "./media/characters/selicia/side.svg",
  26247. extra: 440 / 396,
  26248. bottom: 24.8 / 465.979
  26249. }
  26250. },
  26251. maw: {
  26252. height: math.unit(4.665, "feet"),
  26253. name: "Maw",
  26254. image: {
  26255. source: "./media/characters/selicia/maw.svg"
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(11, "feet"),
  26263. default: true
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26269. {
  26270. side: {
  26271. height: math.unit(2 + 6 / 12, "feet"),
  26272. weight: math.unit(30, "lb"),
  26273. name: "Side",
  26274. image: {
  26275. source: "./media/characters/layla/side.svg",
  26276. extra: 244 / 188,
  26277. bottom: 18.2 / 262.1
  26278. }
  26279. },
  26280. back: {
  26281. height: math.unit(2 + 6 / 12, "feet"),
  26282. weight: math.unit(30, "lb"),
  26283. name: "Back",
  26284. image: {
  26285. source: "./media/characters/layla/back.svg",
  26286. extra: 308 / 241.5,
  26287. bottom: 8.9 / 316.8
  26288. }
  26289. },
  26290. cumming: {
  26291. height: math.unit(2 + 6 / 12, "feet"),
  26292. weight: math.unit(30, "lb"),
  26293. name: "Cumming",
  26294. image: {
  26295. source: "./media/characters/layla/cumming.svg",
  26296. extra: 342 / 279,
  26297. bottom: 595 / 938
  26298. }
  26299. },
  26300. dickFlaccid: {
  26301. height: math.unit(2.595, "feet"),
  26302. name: "Flaccid Genitals",
  26303. image: {
  26304. source: "./media/characters/layla/dick-flaccid.svg"
  26305. }
  26306. },
  26307. dickErect: {
  26308. height: math.unit(2.359, "feet"),
  26309. name: "Erect Genitals",
  26310. image: {
  26311. source: "./media/characters/layla/dick-erect.svg"
  26312. }
  26313. },
  26314. dragon: {
  26315. height: math.unit(40, "feet"),
  26316. name: "Dragon",
  26317. image: {
  26318. source: "./media/characters/layla/dragon.svg",
  26319. extra: 610/535,
  26320. bottom: 367/977
  26321. }
  26322. },
  26323. taur: {
  26324. height: math.unit(30, "feet"),
  26325. name: "Taur",
  26326. image: {
  26327. source: "./media/characters/layla/taur.svg",
  26328. extra: 1268/1199,
  26329. bottom: 112/1380
  26330. }
  26331. },
  26332. },
  26333. [
  26334. {
  26335. name: "Micro",
  26336. height: math.unit(1, "inch")
  26337. },
  26338. {
  26339. name: "Small",
  26340. height: math.unit(1, "foot")
  26341. },
  26342. {
  26343. name: "Normal",
  26344. height: math.unit(2 + 6 / 12, "feet"),
  26345. default: true
  26346. },
  26347. {
  26348. name: "Macro",
  26349. height: math.unit(200, "feet")
  26350. },
  26351. {
  26352. name: "Megamacro",
  26353. height: math.unit(1000, "miles")
  26354. },
  26355. {
  26356. name: "Planetary",
  26357. height: math.unit(8000, "miles")
  26358. },
  26359. {
  26360. name: "True Layla",
  26361. height: math.unit(200000 * 7, "multiverses")
  26362. },
  26363. ]
  26364. ))
  26365. characterMakers.push(() => makeCharacter(
  26366. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26367. {
  26368. back: {
  26369. height: math.unit(10.5, "feet"),
  26370. weight: math.unit(800, "lb"),
  26371. name: "Back",
  26372. image: {
  26373. source: "./media/characters/knox/back.svg",
  26374. extra: 1486 / 1089,
  26375. bottom: 107 / 1601.4
  26376. }
  26377. },
  26378. side: {
  26379. height: math.unit(10.5, "feet"),
  26380. weight: math.unit(800, "lb"),
  26381. name: "Side",
  26382. image: {
  26383. source: "./media/characters/knox/side.svg",
  26384. extra: 244 / 218,
  26385. bottom: 14 / 260
  26386. }
  26387. },
  26388. },
  26389. [
  26390. {
  26391. name: "Compact",
  26392. height: math.unit(10.5, "feet"),
  26393. default: true
  26394. },
  26395. {
  26396. name: "Dynamax",
  26397. height: math.unit(210, "feet")
  26398. },
  26399. {
  26400. name: "Full Macro",
  26401. height: math.unit(850, "feet")
  26402. },
  26403. ]
  26404. ))
  26405. characterMakers.push(() => makeCharacter(
  26406. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26407. {
  26408. front: {
  26409. height: math.unit(28, "feet"),
  26410. weight: math.unit(10500, "lb"),
  26411. name: "Front",
  26412. image: {
  26413. source: "./media/characters/kayda/front.svg",
  26414. extra: 1536 / 1428,
  26415. bottom: 68.7 / 1603
  26416. }
  26417. },
  26418. back: {
  26419. height: math.unit(28, "feet"),
  26420. weight: math.unit(10500, "lb"),
  26421. name: "Back",
  26422. image: {
  26423. source: "./media/characters/kayda/back.svg",
  26424. extra: 1557 / 1464,
  26425. bottom: 39.5 / 1597.49
  26426. }
  26427. },
  26428. dick: {
  26429. height: math.unit(3.858, "feet"),
  26430. name: "Dick",
  26431. image: {
  26432. source: "./media/characters/kayda/dick.svg"
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Macro",
  26439. height: math.unit(28, "feet"),
  26440. default: true
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26446. {
  26447. front: {
  26448. height: math.unit(10 + 11 / 12, "feet"),
  26449. weight: math.unit(1400, "lb"),
  26450. name: "Front",
  26451. image: {
  26452. source: "./media/characters/brian/front.svg",
  26453. extra: 737 / 692,
  26454. bottom: 55.4 / 785
  26455. }
  26456. },
  26457. },
  26458. [
  26459. {
  26460. name: "Normal",
  26461. height: math.unit(10 + 11 / 12, "feet"),
  26462. default: true
  26463. },
  26464. ]
  26465. ))
  26466. characterMakers.push(() => makeCharacter(
  26467. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26468. {
  26469. front: {
  26470. height: math.unit(5 + 8 / 12, "feet"),
  26471. weight: math.unit(140, "lb"),
  26472. name: "Front",
  26473. image: {
  26474. source: "./media/characters/khemri/front.svg",
  26475. extra: 4780 / 4059,
  26476. bottom: 80.1 / 4859.25
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Micro",
  26483. height: math.unit(6, "inches")
  26484. },
  26485. {
  26486. name: "Normal",
  26487. height: math.unit(5 + 8 / 12, "feet"),
  26488. default: true
  26489. },
  26490. ]
  26491. ))
  26492. characterMakers.push(() => makeCharacter(
  26493. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26494. {
  26495. front: {
  26496. height: math.unit(13, "feet"),
  26497. weight: math.unit(1700, "lb"),
  26498. name: "Front",
  26499. image: {
  26500. source: "./media/characters/felix-braveheart/front.svg",
  26501. extra: 1222 / 1157,
  26502. bottom: 53.2 / 1280
  26503. }
  26504. },
  26505. back: {
  26506. height: math.unit(13, "feet"),
  26507. weight: math.unit(1700, "lb"),
  26508. name: "Back",
  26509. image: {
  26510. source: "./media/characters/felix-braveheart/back.svg",
  26511. extra: 1277 / 1203,
  26512. bottom: 50.2 / 1327
  26513. }
  26514. },
  26515. feral: {
  26516. height: math.unit(6, "feet"),
  26517. weight: math.unit(400, "lb"),
  26518. name: "Feral",
  26519. image: {
  26520. source: "./media/characters/felix-braveheart/feral.svg",
  26521. extra: 682 / 625,
  26522. bottom: 6.9 / 688
  26523. }
  26524. },
  26525. },
  26526. [
  26527. {
  26528. name: "Normal",
  26529. height: math.unit(13, "feet"),
  26530. default: true
  26531. },
  26532. ]
  26533. ))
  26534. characterMakers.push(() => makeCharacter(
  26535. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26536. {
  26537. side: {
  26538. height: math.unit(5 + 11 / 12, "feet"),
  26539. weight: math.unit(1400, "lb"),
  26540. name: "Side",
  26541. image: {
  26542. source: "./media/characters/shadow-blade/side.svg",
  26543. extra: 1726 / 1267,
  26544. bottom: 58.4 / 1785
  26545. }
  26546. },
  26547. },
  26548. [
  26549. {
  26550. name: "Normal",
  26551. height: math.unit(5 + 11 / 12, "feet"),
  26552. default: true
  26553. },
  26554. ]
  26555. ))
  26556. characterMakers.push(() => makeCharacter(
  26557. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26558. {
  26559. front: {
  26560. height: math.unit(1 + 6 / 12, "feet"),
  26561. weight: math.unit(25, "lb"),
  26562. name: "Front",
  26563. image: {
  26564. source: "./media/characters/karla-halldor/front.svg",
  26565. extra: 1459 / 1383,
  26566. bottom: 12 / 1472
  26567. }
  26568. },
  26569. },
  26570. [
  26571. {
  26572. name: "Normal",
  26573. height: math.unit(1 + 6 / 12, "feet"),
  26574. default: true
  26575. },
  26576. ]
  26577. ))
  26578. characterMakers.push(() => makeCharacter(
  26579. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26580. {
  26581. front: {
  26582. height: math.unit(6 + 2 / 12, "feet"),
  26583. weight: math.unit(160, "lb"),
  26584. name: "Front",
  26585. image: {
  26586. source: "./media/characters/ariam/front.svg",
  26587. extra: 1073/976,
  26588. bottom: 52/1125
  26589. }
  26590. },
  26591. back: {
  26592. height: math.unit(6 + 2/12, "feet"),
  26593. weight: math.unit(160, "lb"),
  26594. name: "Back",
  26595. image: {
  26596. source: "./media/characters/ariam/back.svg",
  26597. extra: 1103/1023,
  26598. bottom: 9/1112
  26599. }
  26600. },
  26601. dressed: {
  26602. height: math.unit(6 + 2/12, "feet"),
  26603. weight: math.unit(160, "lb"),
  26604. name: "Dressed",
  26605. image: {
  26606. source: "./media/characters/ariam/dressed.svg",
  26607. extra: 1099/1009,
  26608. bottom: 25/1124
  26609. }
  26610. },
  26611. squatting: {
  26612. height: math.unit(4.1, "feet"),
  26613. weight: math.unit(160, "lb"),
  26614. name: "Squatting",
  26615. image: {
  26616. source: "./media/characters/ariam/squatting.svg",
  26617. extra: 2617 / 2112,
  26618. bottom: 61.2 / 2681,
  26619. }
  26620. },
  26621. },
  26622. [
  26623. {
  26624. name: "Normal",
  26625. height: math.unit(6 + 2 / 12, "feet"),
  26626. default: true
  26627. },
  26628. {
  26629. name: "Normal+",
  26630. height: math.unit(4, "meters")
  26631. },
  26632. {
  26633. name: "Macro",
  26634. height: math.unit(50, "meters")
  26635. },
  26636. {
  26637. name: "Macro+",
  26638. height: math.unit(100, "meters")
  26639. },
  26640. {
  26641. name: "Megamacro",
  26642. height: math.unit(20, "km")
  26643. },
  26644. {
  26645. name: "Caretaker",
  26646. height: math.unit(444, "megameters")
  26647. },
  26648. ]
  26649. ))
  26650. characterMakers.push(() => makeCharacter(
  26651. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26652. {
  26653. front: {
  26654. height: math.unit(1.67, "meters"),
  26655. weight: math.unit(140, "lb"),
  26656. name: "Front",
  26657. image: {
  26658. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26659. extra: 438 / 410,
  26660. bottom: 0.75 / 439
  26661. }
  26662. },
  26663. },
  26664. [
  26665. {
  26666. name: "Shrunken",
  26667. height: math.unit(7.6, "cm")
  26668. },
  26669. {
  26670. name: "Human Scale",
  26671. height: math.unit(1.67, "meters")
  26672. },
  26673. {
  26674. name: "Wolxi Scale",
  26675. height: math.unit(36.7, "meters"),
  26676. default: true
  26677. },
  26678. ]
  26679. ))
  26680. characterMakers.push(() => makeCharacter(
  26681. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26682. {
  26683. front: {
  26684. height: math.unit(1.73, "meters"),
  26685. weight: math.unit(240, "lb"),
  26686. name: "Front",
  26687. image: {
  26688. source: "./media/characters/izue-two-mothers/front.svg",
  26689. extra: 469 / 437,
  26690. bottom: 1.24 / 470.6
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Shrunken",
  26697. height: math.unit(7.86, "cm")
  26698. },
  26699. {
  26700. name: "Human Scale",
  26701. height: math.unit(1.73, "meters")
  26702. },
  26703. {
  26704. name: "Wolxi Scale",
  26705. height: math.unit(38, "meters"),
  26706. default: true
  26707. },
  26708. ]
  26709. ))
  26710. characterMakers.push(() => makeCharacter(
  26711. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26712. {
  26713. front: {
  26714. height: math.unit(1.55, "meters"),
  26715. weight: math.unit(120, "lb"),
  26716. name: "Front",
  26717. image: {
  26718. source: "./media/characters/teeku-love-shack/front.svg",
  26719. extra: 387 / 362,
  26720. bottom: 1.51 / 388
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Shrunken",
  26727. height: math.unit(7, "cm")
  26728. },
  26729. {
  26730. name: "Human Scale",
  26731. height: math.unit(1.55, "meters")
  26732. },
  26733. {
  26734. name: "Wolxi Scale",
  26735. height: math.unit(34.1, "meters"),
  26736. default: true
  26737. },
  26738. ]
  26739. ))
  26740. characterMakers.push(() => makeCharacter(
  26741. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26742. {
  26743. front: {
  26744. height: math.unit(1.83, "meters"),
  26745. weight: math.unit(135, "lb"),
  26746. name: "Front",
  26747. image: {
  26748. source: "./media/characters/dejma-the-red/front.svg",
  26749. extra: 480 / 458,
  26750. bottom: 1.8 / 482
  26751. }
  26752. },
  26753. },
  26754. [
  26755. {
  26756. name: "Shrunken",
  26757. height: math.unit(8.3, "cm")
  26758. },
  26759. {
  26760. name: "Human Scale",
  26761. height: math.unit(1.83, "meters")
  26762. },
  26763. {
  26764. name: "Wolxi Scale",
  26765. height: math.unit(40, "meters"),
  26766. default: true
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26772. {
  26773. front: {
  26774. height: math.unit(1.78, "meters"),
  26775. weight: math.unit(65, "kg"),
  26776. name: "Front",
  26777. image: {
  26778. source: "./media/characters/aki/front.svg",
  26779. extra: 452 / 415
  26780. }
  26781. },
  26782. frontNsfw: {
  26783. height: math.unit(1.78, "meters"),
  26784. weight: math.unit(65, "kg"),
  26785. name: "Front (NSFW)",
  26786. image: {
  26787. source: "./media/characters/aki/front-nsfw.svg",
  26788. extra: 452 / 415
  26789. }
  26790. },
  26791. back: {
  26792. height: math.unit(1.78, "meters"),
  26793. weight: math.unit(65, "kg"),
  26794. name: "Back",
  26795. image: {
  26796. source: "./media/characters/aki/back.svg",
  26797. extra: 452 / 415
  26798. }
  26799. },
  26800. rump: {
  26801. height: math.unit(2.05, "feet"),
  26802. name: "Rump",
  26803. image: {
  26804. source: "./media/characters/aki/rump.svg"
  26805. }
  26806. },
  26807. dick: {
  26808. height: math.unit(0.95, "feet"),
  26809. name: "Dick",
  26810. image: {
  26811. source: "./media/characters/aki/dick.svg"
  26812. }
  26813. },
  26814. },
  26815. [
  26816. {
  26817. name: "Micro",
  26818. height: math.unit(15, "cm")
  26819. },
  26820. {
  26821. name: "Normal",
  26822. height: math.unit(178, "cm"),
  26823. default: true
  26824. },
  26825. {
  26826. name: "Macro",
  26827. height: math.unit(214, "m")
  26828. },
  26829. {
  26830. name: "Macro+",
  26831. height: math.unit(534, "m")
  26832. },
  26833. ]
  26834. ))
  26835. characterMakers.push(() => makeCharacter(
  26836. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26837. {
  26838. front: {
  26839. height: math.unit(5 + 5 / 12, "feet"),
  26840. weight: math.unit(120, "lb"),
  26841. name: "Front",
  26842. image: {
  26843. source: "./media/characters/ari/front.svg",
  26844. extra: 1550/1471,
  26845. bottom: 39/1589
  26846. }
  26847. },
  26848. },
  26849. [
  26850. {
  26851. name: "Normal",
  26852. height: math.unit(5 + 5 / 12, "feet")
  26853. },
  26854. {
  26855. name: "Macro",
  26856. height: math.unit(100, "feet"),
  26857. default: true
  26858. },
  26859. {
  26860. name: "Megamacro",
  26861. height: math.unit(100, "miles")
  26862. },
  26863. {
  26864. name: "Gigamacro",
  26865. height: math.unit(80000, "miles")
  26866. },
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26871. {
  26872. side: {
  26873. height: math.unit(9, "feet"),
  26874. weight: math.unit(400, "kg"),
  26875. name: "Side",
  26876. image: {
  26877. source: "./media/characters/bolt/side.svg",
  26878. extra: 1126 / 896,
  26879. bottom: 60 / 1187.3,
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Micro",
  26886. height: math.unit(5, "inches")
  26887. },
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(9, "feet"),
  26891. default: true
  26892. },
  26893. {
  26894. name: "Macro",
  26895. height: math.unit(700, "feet")
  26896. },
  26897. {
  26898. name: "Max Size",
  26899. height: math.unit(1.52e22, "yottameters")
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26905. {
  26906. front: {
  26907. height: math.unit(4.3, "meters"),
  26908. weight: math.unit(3, "tons"),
  26909. name: "Front",
  26910. image: {
  26911. source: "./media/characters/draekon-sylviar/front.svg",
  26912. extra: 2072/1512,
  26913. bottom: 74/2146
  26914. }
  26915. },
  26916. back: {
  26917. height: math.unit(4.3, "meters"),
  26918. weight: math.unit(3, "tons"),
  26919. name: "Back",
  26920. image: {
  26921. source: "./media/characters/draekon-sylviar/back.svg",
  26922. extra: 1639/1483,
  26923. bottom: 41/1680
  26924. }
  26925. },
  26926. feral: {
  26927. height: math.unit(1.15, "meters"),
  26928. weight: math.unit(3, "tons"),
  26929. name: "Feral",
  26930. image: {
  26931. source: "./media/characters/draekon-sylviar/feral.svg",
  26932. extra: 1033/395,
  26933. bottom: 130/1163
  26934. }
  26935. },
  26936. maw: {
  26937. height: math.unit(1.3, "meters"),
  26938. name: "Maw",
  26939. image: {
  26940. source: "./media/characters/draekon-sylviar/maw.svg"
  26941. }
  26942. },
  26943. mawSeparated: {
  26944. height: math.unit(1.53, "meters"),
  26945. name: "Separated Maw",
  26946. image: {
  26947. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26948. }
  26949. },
  26950. tail: {
  26951. height: math.unit(1.15, "meters"),
  26952. name: "Tail",
  26953. image: {
  26954. source: "./media/characters/draekon-sylviar/tail.svg"
  26955. }
  26956. },
  26957. tailDick: {
  26958. height: math.unit(1.15, "meters"),
  26959. name: "Tail (Dick)",
  26960. image: {
  26961. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26962. }
  26963. },
  26964. tailDickSeparated: {
  26965. height: math.unit(1.19, "meters"),
  26966. name: "Tail (Separated Dick)",
  26967. image: {
  26968. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26969. }
  26970. },
  26971. slit: {
  26972. height: math.unit(1, "meters"),
  26973. name: "Slit",
  26974. image: {
  26975. source: "./media/characters/draekon-sylviar/slit.svg"
  26976. }
  26977. },
  26978. dick: {
  26979. height: math.unit(1.15, "meters"),
  26980. name: "Dick",
  26981. image: {
  26982. source: "./media/characters/draekon-sylviar/dick.svg"
  26983. }
  26984. },
  26985. dickSeparated: {
  26986. height: math.unit(1.1, "meters"),
  26987. name: "Separated Dick",
  26988. image: {
  26989. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26990. }
  26991. },
  26992. sheath: {
  26993. height: math.unit(1.15, "meters"),
  26994. name: "Sheath",
  26995. image: {
  26996. source: "./media/characters/draekon-sylviar/sheath.svg"
  26997. }
  26998. },
  26999. },
  27000. [
  27001. {
  27002. name: "Small",
  27003. height: math.unit(4.53 / 2, "meters"),
  27004. default: true
  27005. },
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(4.53, "meters"),
  27009. default: true
  27010. },
  27011. {
  27012. name: "Large",
  27013. height: math.unit(4.53 * 2, "meters"),
  27014. },
  27015. ]
  27016. ))
  27017. characterMakers.push(() => makeCharacter(
  27018. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27019. {
  27020. front: {
  27021. height: math.unit(6 + 2 / 12, "feet"),
  27022. weight: math.unit(180, "lb"),
  27023. name: "Front",
  27024. image: {
  27025. source: "./media/characters/brawler/front.svg",
  27026. extra: 3301 / 3027,
  27027. bottom: 138 / 3439
  27028. }
  27029. },
  27030. },
  27031. [
  27032. {
  27033. name: "Normal",
  27034. height: math.unit(6 + 2 / 12, "feet"),
  27035. default: true
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(11, "feet"),
  27044. weight: math.unit(1000, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/alex/front.svg",
  27048. bottom: 44.5 / 620
  27049. }
  27050. },
  27051. },
  27052. [
  27053. {
  27054. name: "Micro",
  27055. height: math.unit(5, "inches")
  27056. },
  27057. {
  27058. name: "Normal",
  27059. height: math.unit(11, "feet"),
  27060. default: true
  27061. },
  27062. {
  27063. name: "Macro",
  27064. height: math.unit(9.5e9, "feet")
  27065. },
  27066. {
  27067. name: "Max Size",
  27068. height: math.unit(1.4e283, "yottameters")
  27069. },
  27070. ]
  27071. ))
  27072. characterMakers.push(() => makeCharacter(
  27073. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27074. {
  27075. female: {
  27076. height: math.unit(29.9, "m"),
  27077. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27078. name: "Female",
  27079. image: {
  27080. source: "./media/characters/zenari/female.svg",
  27081. extra: 3281.6 / 3217,
  27082. bottom: 72.2 / 3353
  27083. }
  27084. },
  27085. male: {
  27086. height: math.unit(27.7, "m"),
  27087. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27088. name: "Male",
  27089. image: {
  27090. source: "./media/characters/zenari/male.svg",
  27091. extra: 3008 / 2991,
  27092. bottom: 54.6 / 3069
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Macro",
  27099. height: math.unit(29.7, "meters"),
  27100. default: true
  27101. },
  27102. ]
  27103. ))
  27104. characterMakers.push(() => makeCharacter(
  27105. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27106. {
  27107. female: {
  27108. height: math.unit(23.8, "m"),
  27109. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27110. name: "Female",
  27111. image: {
  27112. source: "./media/characters/mactarian/female.svg",
  27113. extra: 2662 / 2569,
  27114. bottom: 73 / 2736
  27115. }
  27116. },
  27117. male: {
  27118. height: math.unit(23.8, "m"),
  27119. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27120. name: "Male",
  27121. image: {
  27122. source: "./media/characters/mactarian/male.svg",
  27123. extra: 2673 / 2600,
  27124. bottom: 76 / 2750
  27125. }
  27126. },
  27127. },
  27128. [
  27129. {
  27130. name: "Macro",
  27131. height: math.unit(23.8, "meters"),
  27132. default: true
  27133. },
  27134. ]
  27135. ))
  27136. characterMakers.push(() => makeCharacter(
  27137. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27138. {
  27139. female: {
  27140. height: math.unit(19.3, "m"),
  27141. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27142. name: "Female",
  27143. image: {
  27144. source: "./media/characters/umok/female.svg",
  27145. extra: 2186 / 2078,
  27146. bottom: 87 / 2277
  27147. }
  27148. },
  27149. male: {
  27150. height: math.unit(19.5, "m"),
  27151. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27152. name: "Male",
  27153. image: {
  27154. source: "./media/characters/umok/male.svg",
  27155. extra: 2233 / 2140,
  27156. bottom: 24.4 / 2258
  27157. }
  27158. },
  27159. },
  27160. [
  27161. {
  27162. name: "Macro",
  27163. height: math.unit(19.3, "meters"),
  27164. default: true
  27165. },
  27166. ]
  27167. ))
  27168. characterMakers.push(() => makeCharacter(
  27169. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27170. {
  27171. female: {
  27172. height: math.unit(26.15, "m"),
  27173. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27174. name: "Female",
  27175. image: {
  27176. source: "./media/characters/joraxian/female.svg",
  27177. extra: 2912 / 2824,
  27178. bottom: 36 / 2956
  27179. }
  27180. },
  27181. male: {
  27182. height: math.unit(25.4, "m"),
  27183. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27184. name: "Male",
  27185. image: {
  27186. source: "./media/characters/joraxian/male.svg",
  27187. extra: 2877 / 2721,
  27188. bottom: 82 / 2967
  27189. }
  27190. },
  27191. },
  27192. [
  27193. {
  27194. name: "Macro",
  27195. height: math.unit(26.15, "meters"),
  27196. default: true
  27197. },
  27198. ]
  27199. ))
  27200. characterMakers.push(() => makeCharacter(
  27201. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27202. {
  27203. female: {
  27204. height: math.unit(21.6, "m"),
  27205. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27206. name: "Female",
  27207. image: {
  27208. source: "./media/characters/sthara/female.svg",
  27209. extra: 2516 / 2347,
  27210. bottom: 21.5 / 2537
  27211. }
  27212. },
  27213. male: {
  27214. height: math.unit(24, "m"),
  27215. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27216. name: "Male",
  27217. image: {
  27218. source: "./media/characters/sthara/male.svg",
  27219. extra: 2732 / 2607,
  27220. bottom: 23 / 2732
  27221. }
  27222. },
  27223. },
  27224. [
  27225. {
  27226. name: "Macro",
  27227. height: math.unit(21.6, "meters"),
  27228. default: true
  27229. },
  27230. ]
  27231. ))
  27232. characterMakers.push(() => makeCharacter(
  27233. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27234. {
  27235. front: {
  27236. height: math.unit(6 + 4 / 12, "feet"),
  27237. weight: math.unit(175, "lb"),
  27238. name: "Front",
  27239. image: {
  27240. source: "./media/characters/luka-bryzant/front.svg",
  27241. extra: 311 / 289,
  27242. bottom: 4 / 315
  27243. }
  27244. },
  27245. back: {
  27246. height: math.unit(6 + 4 / 12, "feet"),
  27247. weight: math.unit(175, "lb"),
  27248. name: "Back",
  27249. image: {
  27250. source: "./media/characters/luka-bryzant/back.svg",
  27251. extra: 311 / 289,
  27252. bottom: 3.8 / 313.7
  27253. }
  27254. },
  27255. },
  27256. [
  27257. {
  27258. name: "Micro",
  27259. height: math.unit(10, "inches")
  27260. },
  27261. {
  27262. name: "Normal",
  27263. height: math.unit(6 + 4 / 12, "feet"),
  27264. default: true
  27265. },
  27266. {
  27267. name: "Large",
  27268. height: math.unit(12, "feet")
  27269. },
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27274. {
  27275. front: {
  27276. height: math.unit(5 + 7 / 12, "feet"),
  27277. weight: math.unit(185, "lb"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/aman-aquila/front.svg",
  27281. extra: 1013 / 976,
  27282. bottom: 45.6 / 1057
  27283. }
  27284. },
  27285. side: {
  27286. height: math.unit(5 + 7 / 12, "feet"),
  27287. weight: math.unit(185, "lb"),
  27288. name: "Side",
  27289. image: {
  27290. source: "./media/characters/aman-aquila/side.svg",
  27291. extra: 1054 / 1011,
  27292. bottom: 15 / 1070
  27293. }
  27294. },
  27295. back: {
  27296. height: math.unit(5 + 7 / 12, "feet"),
  27297. weight: math.unit(185, "lb"),
  27298. name: "Back",
  27299. image: {
  27300. source: "./media/characters/aman-aquila/back.svg",
  27301. extra: 1026 / 970,
  27302. bottom: 12 / 1039
  27303. }
  27304. },
  27305. head: {
  27306. height: math.unit(1.211, "feet"),
  27307. name: "Head",
  27308. image: {
  27309. source: "./media/characters/aman-aquila/head.svg",
  27310. }
  27311. },
  27312. },
  27313. [
  27314. {
  27315. name: "Minimicro",
  27316. height: math.unit(0.057, "inches")
  27317. },
  27318. {
  27319. name: "Micro",
  27320. height: math.unit(7, "inches")
  27321. },
  27322. {
  27323. name: "Mini",
  27324. height: math.unit(3 + 7 / 12, "feet")
  27325. },
  27326. {
  27327. name: "Normal",
  27328. height: math.unit(5 + 7 / 12, "feet"),
  27329. default: true
  27330. },
  27331. {
  27332. name: "Macro",
  27333. height: math.unit(157 + 7 / 12, "feet")
  27334. },
  27335. {
  27336. name: "Megamacro",
  27337. height: math.unit(1557 + 7 / 12, "feet")
  27338. },
  27339. {
  27340. name: "Gigamacro",
  27341. height: math.unit(15557 + 7 / 12, "feet")
  27342. },
  27343. ]
  27344. ))
  27345. characterMakers.push(() => makeCharacter(
  27346. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27347. {
  27348. front: {
  27349. height: math.unit(3 + 2 / 12, "inches"),
  27350. weight: math.unit(0.3, "ounces"),
  27351. name: "Front",
  27352. image: {
  27353. source: "./media/characters/hiphae/front.svg",
  27354. extra: 1931 / 1683,
  27355. bottom: 24 / 1955
  27356. }
  27357. },
  27358. },
  27359. [
  27360. {
  27361. name: "Normal",
  27362. height: math.unit(3 + 1 / 2, "inches"),
  27363. default: true
  27364. },
  27365. ]
  27366. ))
  27367. characterMakers.push(() => makeCharacter(
  27368. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27369. {
  27370. front: {
  27371. height: math.unit(5 + 10 / 12, "feet"),
  27372. weight: math.unit(165, "lb"),
  27373. name: "Front",
  27374. image: {
  27375. source: "./media/characters/nicky/front.svg",
  27376. extra: 3144 / 2886,
  27377. bottom: 45.6 / 3192
  27378. }
  27379. },
  27380. back: {
  27381. height: math.unit(5 + 10 / 12, "feet"),
  27382. weight: math.unit(165, "lb"),
  27383. name: "Back",
  27384. image: {
  27385. source: "./media/characters/nicky/back.svg",
  27386. extra: 3055 / 2804,
  27387. bottom: 28.4 / 3087
  27388. }
  27389. },
  27390. frontclothed: {
  27391. height: math.unit(5 + 10 / 12, "feet"),
  27392. weight: math.unit(165, "lb"),
  27393. name: "Front-clothed",
  27394. image: {
  27395. source: "./media/characters/nicky/front-clothed.svg",
  27396. extra: 3184.9 / 2926.9,
  27397. bottom: 86.5 / 3239.9
  27398. }
  27399. },
  27400. foot: {
  27401. height: math.unit(1.16, "feet"),
  27402. name: "Foot",
  27403. image: {
  27404. source: "./media/characters/nicky/foot.svg"
  27405. }
  27406. },
  27407. feet: {
  27408. height: math.unit(1.34, "feet"),
  27409. name: "Feet",
  27410. image: {
  27411. source: "./media/characters/nicky/feet.svg"
  27412. }
  27413. },
  27414. maw: {
  27415. height: math.unit(0.9, "feet"),
  27416. name: "Maw",
  27417. image: {
  27418. source: "./media/characters/nicky/maw.svg"
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(5 + 10 / 12, "feet"),
  27426. default: true
  27427. },
  27428. {
  27429. name: "Macro",
  27430. height: math.unit(60, "feet")
  27431. },
  27432. {
  27433. name: "Megamacro",
  27434. height: math.unit(1, "mile")
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27440. {
  27441. side: {
  27442. height: math.unit(10, "feet"),
  27443. weight: math.unit(600, "lb"),
  27444. name: "Side",
  27445. image: {
  27446. source: "./media/characters/blair/side.svg",
  27447. bottom: 16.6 / 475,
  27448. extra: 458 / 431
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Micro",
  27455. height: math.unit(8, "inches")
  27456. },
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(10, "feet"),
  27460. default: true
  27461. },
  27462. {
  27463. name: "Macro",
  27464. height: math.unit(180, "feet")
  27465. },
  27466. ]
  27467. ))
  27468. characterMakers.push(() => makeCharacter(
  27469. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27470. {
  27471. front: {
  27472. height: math.unit(5 + 4 / 12, "feet"),
  27473. weight: math.unit(125, "lb"),
  27474. name: "Front",
  27475. image: {
  27476. source: "./media/characters/fisher/front.svg",
  27477. extra: 444 / 390,
  27478. bottom: 2 / 444.8
  27479. }
  27480. },
  27481. },
  27482. [
  27483. {
  27484. name: "Micro",
  27485. height: math.unit(4, "inches")
  27486. },
  27487. {
  27488. name: "Normal",
  27489. height: math.unit(5 + 4 / 12, "feet"),
  27490. default: true
  27491. },
  27492. {
  27493. name: "Macro",
  27494. height: math.unit(100, "feet")
  27495. },
  27496. ]
  27497. ))
  27498. characterMakers.push(() => makeCharacter(
  27499. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27500. {
  27501. front: {
  27502. height: math.unit(6.71, "feet"),
  27503. weight: math.unit(200, "lb"),
  27504. preyCapacity: math.unit(1000000, "people"),
  27505. name: "Front",
  27506. image: {
  27507. source: "./media/characters/gliss/front.svg",
  27508. extra: 2347 / 2231,
  27509. bottom: 113 / 2462
  27510. }
  27511. },
  27512. hammerspaceSize: {
  27513. height: math.unit(6.71 * 717, "feet"),
  27514. weight: math.unit(200, "lb"),
  27515. preyCapacity: math.unit(1000000, "people"),
  27516. name: "Hammerspace Size",
  27517. image: {
  27518. source: "./media/characters/gliss/front.svg",
  27519. extra: 2347 / 2231,
  27520. bottom: 113 / 2462
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Normal",
  27527. height: math.unit(6.71, "feet"),
  27528. default: true
  27529. },
  27530. ]
  27531. ))
  27532. characterMakers.push(() => makeCharacter(
  27533. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27534. {
  27535. side: {
  27536. height: math.unit(1.44, "m"),
  27537. weight: math.unit(80, "kg"),
  27538. name: "Side",
  27539. image: {
  27540. source: "./media/characters/dune-anderson/side.svg",
  27541. bottom: 49 / 1426
  27542. }
  27543. },
  27544. },
  27545. [
  27546. {
  27547. name: "Wolf-sized",
  27548. height: math.unit(1.44, "meters")
  27549. },
  27550. {
  27551. name: "Normal",
  27552. height: math.unit(5.05, "meters"),
  27553. default: true
  27554. },
  27555. {
  27556. name: "Big",
  27557. height: math.unit(14.4, "meters")
  27558. },
  27559. {
  27560. name: "Huge",
  27561. height: math.unit(144, "meters")
  27562. },
  27563. ]
  27564. ))
  27565. characterMakers.push(() => makeCharacter(
  27566. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27567. {
  27568. front: {
  27569. height: math.unit(6, "feet"),
  27570. weight: math.unit(220, "lb"),
  27571. name: "Front",
  27572. image: {
  27573. source: "./media/characters/hind/front.svg",
  27574. extra: 1912/1787,
  27575. bottom: 52/1964
  27576. }
  27577. },
  27578. back: {
  27579. height: math.unit(6, "feet"),
  27580. weight: math.unit(220, "lb"),
  27581. name: "Back",
  27582. image: {
  27583. source: "./media/characters/hind/back.svg",
  27584. extra: 1901/1794,
  27585. bottom: 26/1927
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Normal",
  27592. height: math.unit(6, "feet"),
  27593. default: true
  27594. },
  27595. ]
  27596. ))
  27597. characterMakers.push(() => makeCharacter(
  27598. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27599. {
  27600. front: {
  27601. height: math.unit(2.1, "meters"),
  27602. weight: math.unit(150, "lb"),
  27603. name: "Front",
  27604. image: {
  27605. source: "./media/characters/tharquench-sizestealer/front.svg",
  27606. extra: 1605/1470,
  27607. bottom: 36/1641
  27608. }
  27609. },
  27610. frontAlt: {
  27611. height: math.unit(2.1, "meters"),
  27612. weight: math.unit(150, "lb"),
  27613. name: "Front (Alt)",
  27614. image: {
  27615. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27616. extra: 2318 / 2063,
  27617. bottom: 93.4 / 2410
  27618. }
  27619. },
  27620. },
  27621. [
  27622. {
  27623. name: "Nano",
  27624. height: math.unit(1, "mm")
  27625. },
  27626. {
  27627. name: "Micro",
  27628. height: math.unit(1, "cm")
  27629. },
  27630. {
  27631. name: "Normal",
  27632. height: math.unit(2.1, "meters"),
  27633. default: true
  27634. },
  27635. ]
  27636. ))
  27637. characterMakers.push(() => makeCharacter(
  27638. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27639. {
  27640. front: {
  27641. height: math.unit(7 + 5 / 12, "feet"),
  27642. weight: math.unit(357, "lb"),
  27643. name: "Front",
  27644. image: {
  27645. source: "./media/characters/solex-draconov/front.svg",
  27646. extra: 1993 / 1865,
  27647. bottom: 117 / 2111
  27648. }
  27649. },
  27650. },
  27651. [
  27652. {
  27653. name: "Natural Height",
  27654. height: math.unit(7 + 5 / 12, "feet"),
  27655. default: true
  27656. },
  27657. {
  27658. name: "Macro",
  27659. height: math.unit(350, "feet")
  27660. },
  27661. {
  27662. name: "Macro+",
  27663. height: math.unit(1000, "feet")
  27664. },
  27665. {
  27666. name: "Megamacro",
  27667. height: math.unit(20, "km")
  27668. },
  27669. {
  27670. name: "Megamacro+",
  27671. height: math.unit(1000, "km")
  27672. },
  27673. {
  27674. name: "Gigamacro",
  27675. height: math.unit(2.5, "Gm")
  27676. },
  27677. {
  27678. name: "Teramacro",
  27679. height: math.unit(15, "Tm")
  27680. },
  27681. {
  27682. name: "Galactic",
  27683. height: math.unit(30, "Zm")
  27684. },
  27685. {
  27686. name: "Universal",
  27687. height: math.unit(21000, "Ym")
  27688. },
  27689. {
  27690. name: "Omniversal",
  27691. height: math.unit(9.861e50, "Ym")
  27692. },
  27693. {
  27694. name: "Existential",
  27695. height: math.unit(1e300, "meters")
  27696. },
  27697. ]
  27698. ))
  27699. characterMakers.push(() => makeCharacter(
  27700. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27701. {
  27702. side: {
  27703. height: math.unit(25, "feet"),
  27704. weight: math.unit(90000, "lb"),
  27705. name: "Side",
  27706. image: {
  27707. source: "./media/characters/mandarax/side.svg",
  27708. extra: 614 / 332,
  27709. bottom: 55 / 630
  27710. }
  27711. },
  27712. lounging: {
  27713. height: math.unit(15.4, "feet"),
  27714. weight: math.unit(90000, "lb"),
  27715. name: "Lounging",
  27716. image: {
  27717. source: "./media/characters/mandarax/lounging.svg",
  27718. extra: 817/609,
  27719. bottom: 685/1502
  27720. }
  27721. },
  27722. head: {
  27723. height: math.unit(11.4, "feet"),
  27724. name: "Head",
  27725. image: {
  27726. source: "./media/characters/mandarax/head.svg"
  27727. }
  27728. },
  27729. belly: {
  27730. height: math.unit(33, "feet"),
  27731. name: "Belly",
  27732. preyCapacity: math.unit(500, "people"),
  27733. image: {
  27734. source: "./media/characters/mandarax/belly.svg"
  27735. }
  27736. },
  27737. dick: {
  27738. height: math.unit(8.46, "feet"),
  27739. name: "Dick",
  27740. image: {
  27741. source: "./media/characters/mandarax/dick.svg"
  27742. }
  27743. },
  27744. top: {
  27745. height: math.unit(28, "meters"),
  27746. name: "Top",
  27747. image: {
  27748. source: "./media/characters/mandarax/top.svg"
  27749. }
  27750. },
  27751. },
  27752. [
  27753. {
  27754. name: "Normal",
  27755. height: math.unit(25, "feet"),
  27756. default: true
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27762. {
  27763. front: {
  27764. height: math.unit(5, "feet"),
  27765. weight: math.unit(90, "lb"),
  27766. name: "Front",
  27767. image: {
  27768. source: "./media/characters/pixil/front.svg",
  27769. extra: 2000 / 1618,
  27770. bottom: 12.3 / 2011
  27771. }
  27772. },
  27773. },
  27774. [
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(5, "feet"),
  27778. default: true
  27779. },
  27780. {
  27781. name: "Megamacro",
  27782. height: math.unit(10, "miles"),
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27788. {
  27789. front: {
  27790. height: math.unit(7 + 2 / 12, "feet"),
  27791. weight: math.unit(200, "lb"),
  27792. name: "Front",
  27793. image: {
  27794. source: "./media/characters/angel/front.svg",
  27795. extra: 1946/1840,
  27796. bottom: 30/1976
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(7 + 2 / 12, "feet"),
  27804. default: true
  27805. },
  27806. {
  27807. name: "Macro",
  27808. height: math.unit(1000, "feet")
  27809. },
  27810. {
  27811. name: "Megamacro",
  27812. height: math.unit(2, "miles")
  27813. },
  27814. {
  27815. name: "Gigamacro",
  27816. height: math.unit(20, "earths")
  27817. },
  27818. ]
  27819. ))
  27820. characterMakers.push(() => makeCharacter(
  27821. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27822. {
  27823. front: {
  27824. height: math.unit(5, "feet"),
  27825. weight: math.unit(180, "lb"),
  27826. name: "Front",
  27827. image: {
  27828. source: "./media/characters/mekana/front.svg",
  27829. extra: 1671 / 1605,
  27830. bottom: 3.5 / 1691
  27831. }
  27832. },
  27833. side: {
  27834. height: math.unit(5, "feet"),
  27835. weight: math.unit(180, "lb"),
  27836. name: "Side",
  27837. image: {
  27838. source: "./media/characters/mekana/side.svg",
  27839. extra: 1671 / 1605,
  27840. bottom: 3.5 / 1691
  27841. }
  27842. },
  27843. back: {
  27844. height: math.unit(5, "feet"),
  27845. weight: math.unit(180, "lb"),
  27846. name: "Back",
  27847. image: {
  27848. source: "./media/characters/mekana/back.svg",
  27849. extra: 1671 / 1605,
  27850. bottom: 3.5 / 1691
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Normal",
  27857. height: math.unit(5, "feet"),
  27858. default: true
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27864. {
  27865. front: {
  27866. height: math.unit(4 + 6 / 12, "feet"),
  27867. weight: math.unit(80, "lb"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/pixie/front.svg",
  27871. extra: 1924 / 1825,
  27872. bottom: 22.4 / 1946
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Normal",
  27879. height: math.unit(4 + 6 / 12, "feet"),
  27880. default: true
  27881. },
  27882. {
  27883. name: "Macro",
  27884. height: math.unit(40, "feet")
  27885. },
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27890. {
  27891. front: {
  27892. height: math.unit(2.1, "meters"),
  27893. weight: math.unit(200, "lb"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/the-lascivious/front.svg",
  27897. extra: 1 / 0.893,
  27898. bottom: 3.5 / 573.7
  27899. }
  27900. },
  27901. },
  27902. [
  27903. {
  27904. name: "Human Scale",
  27905. height: math.unit(2.1, "meters")
  27906. },
  27907. {
  27908. name: "Wolxi Scale",
  27909. height: math.unit(46.2, "m"),
  27910. default: true
  27911. },
  27912. {
  27913. name: "Boinker of Buildings",
  27914. height: math.unit(10, "km")
  27915. },
  27916. {
  27917. name: "Shagger of Skyscrapers",
  27918. height: math.unit(40, "km")
  27919. },
  27920. {
  27921. name: "Banger of Boroughs",
  27922. height: math.unit(4000, "km")
  27923. },
  27924. {
  27925. name: "Screwer of States",
  27926. height: math.unit(100000, "km")
  27927. },
  27928. {
  27929. name: "Pounder of Planets",
  27930. height: math.unit(2000000, "km")
  27931. },
  27932. ]
  27933. ))
  27934. characterMakers.push(() => makeCharacter(
  27935. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27936. {
  27937. front: {
  27938. height: math.unit(6, "feet"),
  27939. weight: math.unit(150, "lb"),
  27940. name: "Front",
  27941. image: {
  27942. source: "./media/characters/aj/front.svg",
  27943. extra: 2039 / 1562,
  27944. bottom: 40 / 2079
  27945. }
  27946. },
  27947. },
  27948. [
  27949. {
  27950. name: "Normal",
  27951. height: math.unit(11 + 6 / 12, "feet"),
  27952. default: true
  27953. },
  27954. {
  27955. name: "Megamacro",
  27956. height: math.unit(60, "megameters")
  27957. },
  27958. ]
  27959. ))
  27960. characterMakers.push(() => makeCharacter(
  27961. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27962. {
  27963. side: {
  27964. height: math.unit(31 + 8 / 12, "feet"),
  27965. weight: math.unit(75000, "kg"),
  27966. name: "Side",
  27967. image: {
  27968. source: "./media/characters/koros/side.svg",
  27969. extra: 1442 / 1297,
  27970. bottom: 122.7 / 1562
  27971. }
  27972. },
  27973. dicksKingsCrown: {
  27974. height: math.unit(6, "feet"),
  27975. name: "Dicks (King's Crown)",
  27976. image: {
  27977. source: "./media/characters/koros/dicks-kings-crown.svg"
  27978. }
  27979. },
  27980. dicksTailSet: {
  27981. height: math.unit(3, "feet"),
  27982. name: "Dicks (Tail Set)",
  27983. image: {
  27984. source: "./media/characters/koros/dicks-tail-set.svg"
  27985. }
  27986. },
  27987. dickCumming: {
  27988. height: math.unit(7.98, "feet"),
  27989. name: "Dick (Cumming)",
  27990. image: {
  27991. source: "./media/characters/koros/dick-cumming.svg"
  27992. }
  27993. },
  27994. dicksBack: {
  27995. height: math.unit(5.9, "feet"),
  27996. name: "Dicks (Back)",
  27997. image: {
  27998. source: "./media/characters/koros/dicks-back.svg"
  27999. }
  28000. },
  28001. dicksFront: {
  28002. height: math.unit(3.72, "feet"),
  28003. name: "Dicks (Front)",
  28004. image: {
  28005. source: "./media/characters/koros/dicks-front.svg"
  28006. }
  28007. },
  28008. dicksPeeking: {
  28009. height: math.unit(3.0, "feet"),
  28010. name: "Dicks (Peeking)",
  28011. image: {
  28012. source: "./media/characters/koros/dicks-peeking.svg"
  28013. }
  28014. },
  28015. eye: {
  28016. height: math.unit(1.7, "feet"),
  28017. name: "Eye",
  28018. image: {
  28019. source: "./media/characters/koros/eye.svg"
  28020. }
  28021. },
  28022. headFront: {
  28023. height: math.unit(11.69, "feet"),
  28024. name: "Head (Front)",
  28025. image: {
  28026. source: "./media/characters/koros/head-front.svg"
  28027. }
  28028. },
  28029. headSide: {
  28030. height: math.unit(14, "feet"),
  28031. name: "Head (Side)",
  28032. image: {
  28033. source: "./media/characters/koros/head-side.svg"
  28034. }
  28035. },
  28036. leg: {
  28037. height: math.unit(17, "feet"),
  28038. name: "Leg",
  28039. image: {
  28040. source: "./media/characters/koros/leg.svg"
  28041. }
  28042. },
  28043. mawSide: {
  28044. height: math.unit(12.8, "feet"),
  28045. name: "Maw (Side)",
  28046. image: {
  28047. source: "./media/characters/koros/maw-side.svg"
  28048. }
  28049. },
  28050. mawSpitting: {
  28051. height: math.unit(17, "feet"),
  28052. name: "Maw (Spitting)",
  28053. image: {
  28054. source: "./media/characters/koros/maw-spitting.svg"
  28055. }
  28056. },
  28057. slit: {
  28058. height: math.unit(2.8, "feet"),
  28059. name: "Slit",
  28060. image: {
  28061. source: "./media/characters/koros/slit.svg"
  28062. }
  28063. },
  28064. stomach: {
  28065. height: math.unit(6.8, "feet"),
  28066. preyCapacity: math.unit(20, "people"),
  28067. name: "Stomach",
  28068. image: {
  28069. source: "./media/characters/koros/stomach.svg"
  28070. }
  28071. },
  28072. wingspanBottom: {
  28073. height: math.unit(114, "feet"),
  28074. name: "Wingspan (Bottom)",
  28075. image: {
  28076. source: "./media/characters/koros/wingspan-bottom.svg"
  28077. }
  28078. },
  28079. wingspanTop: {
  28080. height: math.unit(104, "feet"),
  28081. name: "Wingspan (Top)",
  28082. image: {
  28083. source: "./media/characters/koros/wingspan-top.svg"
  28084. }
  28085. },
  28086. },
  28087. [
  28088. {
  28089. name: "Normal",
  28090. height: math.unit(31 + 8 / 12, "feet"),
  28091. default: true
  28092. },
  28093. ]
  28094. ))
  28095. characterMakers.push(() => makeCharacter(
  28096. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28097. {
  28098. front: {
  28099. height: math.unit(18 + 5 / 12, "feet"),
  28100. weight: math.unit(3750, "kg"),
  28101. name: "Front",
  28102. image: {
  28103. source: "./media/characters/vexx/front.svg",
  28104. extra: 426 / 396,
  28105. bottom: 31.5 / 458
  28106. }
  28107. },
  28108. maw: {
  28109. height: math.unit(6, "feet"),
  28110. name: "Maw",
  28111. image: {
  28112. source: "./media/characters/vexx/maw.svg"
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(18 + 5 / 12, "feet"),
  28120. default: true
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28126. {
  28127. front: {
  28128. height: math.unit(17 + 6 / 12, "feet"),
  28129. weight: math.unit(150, "lb"),
  28130. name: "Front",
  28131. image: {
  28132. source: "./media/characters/baadra/front.svg",
  28133. extra: 1694/1553,
  28134. bottom: 179/1873
  28135. }
  28136. },
  28137. frontAlt: {
  28138. height: math.unit(17 + 6 / 12, "feet"),
  28139. weight: math.unit(150, "lb"),
  28140. name: "Front (Alt)",
  28141. image: {
  28142. source: "./media/characters/baadra/front-alt.svg",
  28143. extra: 3137 / 2890,
  28144. bottom: 168.4 / 3305
  28145. }
  28146. },
  28147. back: {
  28148. height: math.unit(17 + 6 / 12, "feet"),
  28149. weight: math.unit(150, "lb"),
  28150. name: "Back",
  28151. image: {
  28152. source: "./media/characters/baadra/back.svg",
  28153. extra: 3142 / 2890,
  28154. bottom: 220 / 3371
  28155. }
  28156. },
  28157. head: {
  28158. height: math.unit(5.45, "feet"),
  28159. name: "Head",
  28160. image: {
  28161. source: "./media/characters/baadra/head.svg"
  28162. }
  28163. },
  28164. headAngry: {
  28165. height: math.unit(4.95, "feet"),
  28166. name: "Head (Angry)",
  28167. image: {
  28168. source: "./media/characters/baadra/head-angry.svg"
  28169. }
  28170. },
  28171. headOpen: {
  28172. height: math.unit(6, "feet"),
  28173. name: "Head (Open)",
  28174. image: {
  28175. source: "./media/characters/baadra/head-open.svg"
  28176. }
  28177. },
  28178. },
  28179. [
  28180. {
  28181. name: "Normal",
  28182. height: math.unit(17 + 6 / 12, "feet"),
  28183. default: true
  28184. },
  28185. ]
  28186. ))
  28187. characterMakers.push(() => makeCharacter(
  28188. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28189. {
  28190. front: {
  28191. height: math.unit(7 + 3 / 12, "feet"),
  28192. weight: math.unit(180, "lb"),
  28193. name: "Front",
  28194. image: {
  28195. source: "./media/characters/juri/front.svg",
  28196. extra: 1401 / 1237,
  28197. bottom: 18.5 / 1418
  28198. }
  28199. },
  28200. side: {
  28201. height: math.unit(7 + 3 / 12, "feet"),
  28202. weight: math.unit(180, "lb"),
  28203. name: "Side",
  28204. image: {
  28205. source: "./media/characters/juri/side.svg",
  28206. extra: 1424 / 1242,
  28207. bottom: 18.5 / 1447
  28208. }
  28209. },
  28210. sitting: {
  28211. height: math.unit(6, "feet"),
  28212. weight: math.unit(180, "lb"),
  28213. name: "Sitting",
  28214. image: {
  28215. source: "./media/characters/juri/sitting.svg",
  28216. extra: 1270 / 1143,
  28217. bottom: 100 / 1343
  28218. }
  28219. },
  28220. back: {
  28221. height: math.unit(7 + 3 / 12, "feet"),
  28222. weight: math.unit(180, "lb"),
  28223. name: "Back",
  28224. image: {
  28225. source: "./media/characters/juri/back.svg",
  28226. extra: 1377 / 1240,
  28227. bottom: 23.7 / 1405
  28228. }
  28229. },
  28230. maw: {
  28231. height: math.unit(2.8, "feet"),
  28232. name: "Maw",
  28233. image: {
  28234. source: "./media/characters/juri/maw.svg"
  28235. }
  28236. },
  28237. stomach: {
  28238. height: math.unit(0.89, "feet"),
  28239. preyCapacity: math.unit(4, "liters"),
  28240. name: "Stomach",
  28241. image: {
  28242. source: "./media/characters/juri/stomach.svg"
  28243. }
  28244. },
  28245. },
  28246. [
  28247. {
  28248. name: "Normal",
  28249. height: math.unit(7 + 3 / 12, "feet"),
  28250. default: true
  28251. },
  28252. ]
  28253. ))
  28254. characterMakers.push(() => makeCharacter(
  28255. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28256. {
  28257. fox: {
  28258. height: math.unit(5 + 6 / 12, "feet"),
  28259. weight: math.unit(140, "lb"),
  28260. name: "Fox",
  28261. image: {
  28262. source: "./media/characters/maxene-sita/fox.svg",
  28263. extra: 146 / 138,
  28264. bottom: 2.1 / 148.19
  28265. }
  28266. },
  28267. foxLaying: {
  28268. height: math.unit(1.70, "feet"),
  28269. weight: math.unit(140, "lb"),
  28270. name: "Fox (Laying)",
  28271. image: {
  28272. source: "./media/characters/maxene-sita/fox-laying.svg",
  28273. extra: 910 / 572,
  28274. bottom: 71 / 981
  28275. }
  28276. },
  28277. kitsune: {
  28278. height: math.unit(10, "feet"),
  28279. weight: math.unit(800, "lb"),
  28280. name: "Kitsune",
  28281. image: {
  28282. source: "./media/characters/maxene-sita/kitsune.svg",
  28283. extra: 185 / 176,
  28284. bottom: 4.7 / 189.9
  28285. }
  28286. },
  28287. hellhound: {
  28288. height: math.unit(10, "feet"),
  28289. weight: math.unit(700, "lb"),
  28290. name: "Hellhound",
  28291. image: {
  28292. source: "./media/characters/maxene-sita/hellhound.svg",
  28293. extra: 1600 / 1545,
  28294. bottom: 81 / 1681
  28295. }
  28296. },
  28297. },
  28298. [
  28299. {
  28300. name: "Normal",
  28301. height: math.unit(5 + 6 / 12, "feet"),
  28302. default: true
  28303. },
  28304. ]
  28305. ))
  28306. characterMakers.push(() => makeCharacter(
  28307. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28308. {
  28309. front: {
  28310. height: math.unit(3 + 4 / 12, "feet"),
  28311. weight: math.unit(70, "lb"),
  28312. name: "Front",
  28313. image: {
  28314. source: "./media/characters/maia/front.svg",
  28315. extra: 227 / 219.5,
  28316. bottom: 40 / 267
  28317. }
  28318. },
  28319. back: {
  28320. height: math.unit(3 + 4 / 12, "feet"),
  28321. weight: math.unit(70, "lb"),
  28322. name: "Back",
  28323. image: {
  28324. source: "./media/characters/maia/back.svg",
  28325. extra: 237 / 225
  28326. }
  28327. },
  28328. },
  28329. [
  28330. {
  28331. name: "Normal",
  28332. height: math.unit(3 + 4 / 12, "feet"),
  28333. default: true
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(5 + 10 / 12, "feet"),
  28342. weight: math.unit(197, "lb"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/jabaro/front.svg",
  28346. extra: 225 / 216,
  28347. bottom: 5.06 / 230
  28348. }
  28349. },
  28350. back: {
  28351. height: math.unit(5 + 10 / 12, "feet"),
  28352. weight: math.unit(197, "lb"),
  28353. name: "Back",
  28354. image: {
  28355. source: "./media/characters/jabaro/back.svg",
  28356. extra: 225 / 219,
  28357. bottom: 1.9 / 227
  28358. }
  28359. },
  28360. },
  28361. [
  28362. {
  28363. name: "Normal",
  28364. height: math.unit(5 + 10 / 12, "feet"),
  28365. default: true
  28366. },
  28367. ]
  28368. ))
  28369. characterMakers.push(() => makeCharacter(
  28370. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28371. {
  28372. front: {
  28373. height: math.unit(5 + 8 / 12, "feet"),
  28374. weight: math.unit(139, "lb"),
  28375. name: "Front",
  28376. image: {
  28377. source: "./media/characters/risa/front.svg",
  28378. extra: 270 / 260,
  28379. bottom: 11.2 / 282
  28380. }
  28381. },
  28382. back: {
  28383. height: math.unit(5 + 8 / 12, "feet"),
  28384. weight: math.unit(139, "lb"),
  28385. name: "Back",
  28386. image: {
  28387. source: "./media/characters/risa/back.svg",
  28388. extra: 264 / 255,
  28389. bottom: 4 / 268
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(5 + 8 / 12, "feet"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28403. {
  28404. front: {
  28405. height: math.unit(2 + 11 / 12, "feet"),
  28406. weight: math.unit(30, "lb"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/weatley/front.svg",
  28410. bottom: 10.7 / 414,
  28411. extra: 403.5 / 362
  28412. }
  28413. },
  28414. back: {
  28415. height: math.unit(2 + 11 / 12, "feet"),
  28416. weight: math.unit(30, "lb"),
  28417. name: "Back",
  28418. image: {
  28419. source: "./media/characters/weatley/back.svg",
  28420. bottom: 10.7 / 414,
  28421. extra: 403.5 / 362
  28422. }
  28423. },
  28424. },
  28425. [
  28426. {
  28427. name: "Normal",
  28428. height: math.unit(2 + 11 / 12, "feet"),
  28429. default: true
  28430. },
  28431. ]
  28432. ))
  28433. characterMakers.push(() => makeCharacter(
  28434. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28435. {
  28436. front: {
  28437. height: math.unit(5 + 2 / 12, "feet"),
  28438. weight: math.unit(50, "kg"),
  28439. name: "Front",
  28440. image: {
  28441. source: "./media/characters/mercury-crescent/front.svg",
  28442. extra: 1088 / 1033,
  28443. bottom: 18.9 / 1109
  28444. }
  28445. },
  28446. },
  28447. [
  28448. {
  28449. name: "Normal",
  28450. height: math.unit(5 + 2 / 12, "feet"),
  28451. default: true
  28452. },
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28457. {
  28458. front: {
  28459. height: math.unit(2, "feet"),
  28460. weight: math.unit(15, "kg"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/diamond-jones/front.svg",
  28464. extra: 727/723,
  28465. bottom: 46/773
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Normal",
  28472. height: math.unit(2, "feet"),
  28473. default: true
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28479. {
  28480. front: {
  28481. height: math.unit(3, "feet"),
  28482. weight: math.unit(30, "kg"),
  28483. name: "Front",
  28484. image: {
  28485. source: "./media/characters/sweet-bit/front.svg",
  28486. extra: 675 / 567,
  28487. bottom: 27.7 / 703
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Normal",
  28494. height: math.unit(3, "feet"),
  28495. default: true
  28496. },
  28497. ]
  28498. ))
  28499. characterMakers.push(() => makeCharacter(
  28500. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28501. {
  28502. side: {
  28503. height: math.unit(9.178, "feet"),
  28504. weight: math.unit(500, "lb"),
  28505. name: "Side",
  28506. image: {
  28507. source: "./media/characters/umbrazen/side.svg",
  28508. extra: 1730 / 1473,
  28509. bottom: 34.6 / 1765
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Normal",
  28516. height: math.unit(9.178, "feet"),
  28517. default: true
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28523. {
  28524. front: {
  28525. height: math.unit(10, "feet"),
  28526. weight: math.unit(750, "lb"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/arlist/front.svg",
  28530. extra: 961 / 778,
  28531. bottom: 6.2 / 986
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Normal",
  28538. height: math.unit(10, "feet"),
  28539. default: true
  28540. },
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28545. {
  28546. front: {
  28547. height: math.unit(5 + 1 / 12, "feet"),
  28548. weight: math.unit(110, "lb"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/aradel/front.svg",
  28552. extra: 324 / 303,
  28553. bottom: 3.6 / 329.4
  28554. }
  28555. },
  28556. },
  28557. [
  28558. {
  28559. name: "Normal",
  28560. height: math.unit(5 + 1 / 12, "feet"),
  28561. default: true
  28562. },
  28563. ]
  28564. ))
  28565. characterMakers.push(() => makeCharacter(
  28566. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28567. {
  28568. dressed: {
  28569. height: math.unit(3 + 8 / 12, "feet"),
  28570. weight: math.unit(50, "lb"),
  28571. name: "Dressed",
  28572. image: {
  28573. source: "./media/characters/serryn/dressed.svg",
  28574. extra: 1792 / 1656,
  28575. bottom: 43.5 / 1840
  28576. }
  28577. },
  28578. nude: {
  28579. height: math.unit(3 + 8 / 12, "feet"),
  28580. weight: math.unit(50, "lb"),
  28581. name: "Nude",
  28582. image: {
  28583. source: "./media/characters/serryn/nude.svg",
  28584. extra: 1792 / 1656,
  28585. bottom: 43.5 / 1840
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(3 + 8 / 12, "feet"),
  28593. default: true
  28594. },
  28595. ]
  28596. ))
  28597. characterMakers.push(() => makeCharacter(
  28598. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28599. {
  28600. front: {
  28601. height: math.unit(7 + 10 / 12, "feet"),
  28602. weight: math.unit(255, "lb"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/xavier-thyme/front.svg",
  28606. extra: 3733 / 3642,
  28607. bottom: 131 / 3869
  28608. }
  28609. },
  28610. frontRaven: {
  28611. height: math.unit(7 + 10 / 12, "feet"),
  28612. weight: math.unit(255, "lb"),
  28613. name: "Front (Raven)",
  28614. image: {
  28615. source: "./media/characters/xavier-thyme/front-raven.svg",
  28616. extra: 4385 / 3642,
  28617. bottom: 131 / 4517
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Normal",
  28624. height: math.unit(7 + 10 / 12, "feet"),
  28625. default: true
  28626. },
  28627. ]
  28628. ))
  28629. characterMakers.push(() => makeCharacter(
  28630. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28631. {
  28632. front: {
  28633. height: math.unit(1.6, "m"),
  28634. weight: math.unit(50, "kg"),
  28635. name: "Front",
  28636. image: {
  28637. source: "./media/characters/kiki/front.svg",
  28638. extra: 4682 / 3610,
  28639. bottom: 115 / 4777
  28640. }
  28641. },
  28642. },
  28643. [
  28644. {
  28645. name: "Normal",
  28646. height: math.unit(1.6, "meters"),
  28647. default: true
  28648. },
  28649. ]
  28650. ))
  28651. characterMakers.push(() => makeCharacter(
  28652. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28653. {
  28654. front: {
  28655. height: math.unit(50, "m"),
  28656. weight: math.unit(500, "tonnes"),
  28657. name: "Front",
  28658. image: {
  28659. source: "./media/characters/ryoko/front.svg",
  28660. extra: 4632 / 3926,
  28661. bottom: 193 / 4823
  28662. }
  28663. },
  28664. },
  28665. [
  28666. {
  28667. name: "Normal",
  28668. height: math.unit(50, "meters"),
  28669. default: true
  28670. },
  28671. ]
  28672. ))
  28673. characterMakers.push(() => makeCharacter(
  28674. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28675. {
  28676. front: {
  28677. height: math.unit(30, "m"),
  28678. weight: math.unit(22, "tonnes"),
  28679. name: "Front",
  28680. image: {
  28681. source: "./media/characters/elio/front.svg",
  28682. extra: 4582 / 3720,
  28683. bottom: 236 / 4828
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Normal",
  28690. height: math.unit(30, "meters"),
  28691. default: true
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28697. {
  28698. front: {
  28699. height: math.unit(6 + 3 / 12, "feet"),
  28700. weight: math.unit(120, "lb"),
  28701. name: "Front",
  28702. image: {
  28703. source: "./media/characters/azura/front.svg",
  28704. extra: 1149 / 1135,
  28705. bottom: 45 / 1194
  28706. }
  28707. },
  28708. frontClothed: {
  28709. height: math.unit(6 + 3 / 12, "feet"),
  28710. weight: math.unit(120, "lb"),
  28711. name: "Front (Clothed)",
  28712. image: {
  28713. source: "./media/characters/azura/front-clothed.svg",
  28714. extra: 1149 / 1135,
  28715. bottom: 45 / 1194
  28716. }
  28717. },
  28718. },
  28719. [
  28720. {
  28721. name: "Normal",
  28722. height: math.unit(6 + 3 / 12, "feet"),
  28723. default: true
  28724. },
  28725. {
  28726. name: "Macro",
  28727. height: math.unit(20 + 6 / 12, "feet")
  28728. },
  28729. {
  28730. name: "Megamacro",
  28731. height: math.unit(12, "miles")
  28732. },
  28733. {
  28734. name: "Gigamacro",
  28735. height: math.unit(10000, "miles")
  28736. },
  28737. {
  28738. name: "Teramacro",
  28739. height: math.unit(900000, "miles")
  28740. },
  28741. ]
  28742. ))
  28743. characterMakers.push(() => makeCharacter(
  28744. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28745. {
  28746. front: {
  28747. height: math.unit(12, "feet"),
  28748. weight: math.unit(1, "ton"),
  28749. capacity: math.unit(660000, "gallons"),
  28750. name: "Front",
  28751. image: {
  28752. source: "./media/characters/zeus/front.svg",
  28753. extra: 5005 / 4717,
  28754. bottom: 363 / 5388
  28755. }
  28756. },
  28757. },
  28758. [
  28759. {
  28760. name: "Normal",
  28761. height: math.unit(12, "feet")
  28762. },
  28763. {
  28764. name: "Preferred Size",
  28765. height: math.unit(0.5, "miles"),
  28766. default: true
  28767. },
  28768. {
  28769. name: "Giga Horse",
  28770. height: math.unit(300, "miles")
  28771. },
  28772. {
  28773. name: "Riding Planets",
  28774. height: math.unit(30, "megameters")
  28775. },
  28776. {
  28777. name: "Cosmic Giant",
  28778. height: math.unit(3, "zettameters")
  28779. },
  28780. {
  28781. name: "Breeding God",
  28782. height: math.unit(9.92e22, "yottameters")
  28783. },
  28784. ]
  28785. ))
  28786. characterMakers.push(() => makeCharacter(
  28787. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28788. {
  28789. side: {
  28790. height: math.unit(9, "feet"),
  28791. weight: math.unit(1500, "kg"),
  28792. name: "Side",
  28793. image: {
  28794. source: "./media/characters/fang/side.svg",
  28795. extra: 924 / 866,
  28796. bottom: 47.5 / 972.3
  28797. }
  28798. },
  28799. },
  28800. [
  28801. {
  28802. name: "Normal",
  28803. height: math.unit(9, "feet"),
  28804. default: true
  28805. },
  28806. {
  28807. name: "Macro",
  28808. height: math.unit(75 + 6 / 12, "feet")
  28809. },
  28810. {
  28811. name: "Teramacro",
  28812. height: math.unit(50000, "miles")
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28818. {
  28819. front: {
  28820. height: math.unit(10, "feet"),
  28821. weight: math.unit(2, "tons"),
  28822. name: "Front",
  28823. image: {
  28824. source: "./media/characters/rekhit/front.svg",
  28825. extra: 2796 / 2590,
  28826. bottom: 225 / 3022
  28827. }
  28828. },
  28829. },
  28830. [
  28831. {
  28832. name: "Normal",
  28833. height: math.unit(10, "feet"),
  28834. default: true
  28835. },
  28836. {
  28837. name: "Macro",
  28838. height: math.unit(500, "feet")
  28839. },
  28840. ]
  28841. ))
  28842. characterMakers.push(() => makeCharacter(
  28843. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28844. {
  28845. front: {
  28846. height: math.unit(7 + 6.451 / 12, "feet"),
  28847. weight: math.unit(310, "lb"),
  28848. name: "Front",
  28849. image: {
  28850. source: "./media/characters/dahlia-verrick/front.svg",
  28851. extra: 1488 / 1365,
  28852. bottom: 6.2 / 1495
  28853. }
  28854. },
  28855. back: {
  28856. height: math.unit(7 + 6.451 / 12, "feet"),
  28857. weight: math.unit(310, "lb"),
  28858. name: "Back",
  28859. image: {
  28860. source: "./media/characters/dahlia-verrick/back.svg",
  28861. extra: 1472 / 1351,
  28862. bottom: 5.28 / 1477
  28863. }
  28864. },
  28865. frontBusiness: {
  28866. height: math.unit(7 + 6.451 / 12, "feet"),
  28867. weight: math.unit(200, "lb"),
  28868. name: "Front (Business)",
  28869. image: {
  28870. source: "./media/characters/dahlia-verrick/front-business.svg",
  28871. extra: 1478 / 1381,
  28872. bottom: 5.5 / 1484
  28873. }
  28874. },
  28875. frontCasual: {
  28876. height: math.unit(7 + 6.451 / 12, "feet"),
  28877. weight: math.unit(200, "lb"),
  28878. name: "Front (Casual)",
  28879. image: {
  28880. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28881. extra: 1478 / 1381,
  28882. bottom: 5.5 / 1484
  28883. }
  28884. },
  28885. },
  28886. [
  28887. {
  28888. name: "Travel-Sized",
  28889. height: math.unit(7.45, "inches")
  28890. },
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(7 + 6.451 / 12, "feet"),
  28894. default: true
  28895. },
  28896. {
  28897. name: "Hitting the Town",
  28898. height: math.unit(37 + 8 / 12, "feet")
  28899. },
  28900. {
  28901. name: "Stomp in the Suburbs",
  28902. height: math.unit(964 + 9.728 / 12, "feet")
  28903. },
  28904. {
  28905. name: "Sit on the City",
  28906. height: math.unit(61747 + 10.592 / 12, "feet")
  28907. },
  28908. {
  28909. name: "Glomp the Globe",
  28910. height: math.unit(252919327 + 4.832 / 12, "feet")
  28911. },
  28912. ]
  28913. ))
  28914. characterMakers.push(() => makeCharacter(
  28915. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28916. {
  28917. front: {
  28918. height: math.unit(6 + 4 / 12, "feet"),
  28919. weight: math.unit(320, "lb"),
  28920. name: "Front",
  28921. image: {
  28922. source: "./media/characters/balina-mahigan/front.svg",
  28923. extra: 447 / 428,
  28924. bottom: 18 / 466
  28925. }
  28926. },
  28927. back: {
  28928. height: math.unit(6 + 4 / 12, "feet"),
  28929. weight: math.unit(320, "lb"),
  28930. name: "Back",
  28931. image: {
  28932. source: "./media/characters/balina-mahigan/back.svg",
  28933. extra: 445 / 428,
  28934. bottom: 4.07 / 448
  28935. }
  28936. },
  28937. arm: {
  28938. height: math.unit(1.88, "feet"),
  28939. name: "Arm",
  28940. image: {
  28941. source: "./media/characters/balina-mahigan/arm.svg"
  28942. }
  28943. },
  28944. backPort: {
  28945. height: math.unit(0.685, "feet"),
  28946. name: "Back Port",
  28947. image: {
  28948. source: "./media/characters/balina-mahigan/back-port.svg"
  28949. }
  28950. },
  28951. hoofpaw: {
  28952. height: math.unit(1.41, "feet"),
  28953. name: "Hoofpaw",
  28954. image: {
  28955. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28956. }
  28957. },
  28958. leftHandBack: {
  28959. height: math.unit(0.938, "feet"),
  28960. name: "Left Hand (Back)",
  28961. image: {
  28962. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28963. }
  28964. },
  28965. leftHandFront: {
  28966. height: math.unit(0.938, "feet"),
  28967. name: "Left Hand (Front)",
  28968. image: {
  28969. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28970. }
  28971. },
  28972. rightHandBack: {
  28973. height: math.unit(0.95, "feet"),
  28974. name: "Right Hand (Back)",
  28975. image: {
  28976. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28977. }
  28978. },
  28979. rightHandFront: {
  28980. height: math.unit(0.95, "feet"),
  28981. name: "Right Hand (Front)",
  28982. image: {
  28983. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Normal",
  28990. height: math.unit(6 + 4 / 12, "feet"),
  28991. default: true
  28992. },
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28997. {
  28998. front: {
  28999. height: math.unit(6, "feet"),
  29000. weight: math.unit(320, "lb"),
  29001. name: "Front",
  29002. image: {
  29003. source: "./media/characters/balina-mejeri/front.svg",
  29004. extra: 517 / 488,
  29005. bottom: 44.2 / 561
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Normal",
  29012. height: math.unit(6 + 4 / 12, "feet")
  29013. },
  29014. {
  29015. name: "Business",
  29016. height: math.unit(155, "feet"),
  29017. default: true
  29018. },
  29019. ]
  29020. ))
  29021. characterMakers.push(() => makeCharacter(
  29022. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29023. {
  29024. kneeling: {
  29025. height: math.unit(6 + 4 / 12, "feet"),
  29026. weight: math.unit(300 * 20, "lb"),
  29027. name: "Kneeling",
  29028. image: {
  29029. source: "./media/characters/balbarian/kneeling.svg",
  29030. extra: 922 / 862,
  29031. bottom: 42.4 / 965
  29032. }
  29033. },
  29034. },
  29035. [
  29036. {
  29037. name: "Normal",
  29038. height: math.unit(6 + 4 / 12, "feet")
  29039. },
  29040. {
  29041. name: "Treasured",
  29042. height: math.unit(18 + 9 / 12, "feet"),
  29043. default: true
  29044. },
  29045. {
  29046. name: "Macro",
  29047. height: math.unit(900, "feet")
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(6 + 4 / 12, "feet"),
  29056. weight: math.unit(325, "lb"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/balina-amarini/front.svg",
  29060. extra: 415 / 403,
  29061. bottom: 19 / 433.4
  29062. }
  29063. },
  29064. back: {
  29065. height: math.unit(6 + 4 / 12, "feet"),
  29066. weight: math.unit(325, "lb"),
  29067. name: "Back",
  29068. image: {
  29069. source: "./media/characters/balina-amarini/back.svg",
  29070. extra: 415 / 403,
  29071. bottom: 13.5 / 432
  29072. }
  29073. },
  29074. overdrive: {
  29075. height: math.unit(6 + 4 / 12, "feet"),
  29076. weight: math.unit(400, "lb"),
  29077. name: "Overdrive",
  29078. image: {
  29079. source: "./media/characters/balina-amarini/overdrive.svg",
  29080. extra: 269 / 259,
  29081. bottom: 12 / 282
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Boom",
  29088. height: math.unit(9 + 10 / 12, "feet"),
  29089. default: true
  29090. },
  29091. {
  29092. name: "Macro",
  29093. height: math.unit(280, "feet")
  29094. },
  29095. ]
  29096. ))
  29097. characterMakers.push(() => makeCharacter(
  29098. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29099. {
  29100. goddess: {
  29101. height: math.unit(600, "feet"),
  29102. weight: math.unit(2000000, "tons"),
  29103. name: "Goddess",
  29104. image: {
  29105. source: "./media/characters/lady-kubwa/goddess.svg",
  29106. extra: 1240.5 / 1223,
  29107. bottom: 22 / 1263
  29108. }
  29109. },
  29110. goddesser: {
  29111. height: math.unit(900, "feet"),
  29112. weight: math.unit(20000000, "lb"),
  29113. name: "Goddess-er",
  29114. image: {
  29115. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29116. extra: 899 / 888,
  29117. bottom: 12.6 / 912
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Macro",
  29124. height: math.unit(600, "feet"),
  29125. default: true
  29126. },
  29127. {
  29128. name: "Megamacro",
  29129. height: math.unit(250, "miles")
  29130. },
  29131. ]
  29132. ))
  29133. characterMakers.push(() => makeCharacter(
  29134. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29135. {
  29136. front: {
  29137. height: math.unit(7 + 7 / 12, "feet"),
  29138. weight: math.unit(250, "lb"),
  29139. name: "Front",
  29140. image: {
  29141. source: "./media/characters/tala-grovehorn/front.svg",
  29142. extra: 2636 / 2525,
  29143. bottom: 147 / 2781
  29144. }
  29145. },
  29146. back: {
  29147. height: math.unit(7 + 7 / 12, "feet"),
  29148. weight: math.unit(250, "lb"),
  29149. name: "Back",
  29150. image: {
  29151. source: "./media/characters/tala-grovehorn/back.svg",
  29152. extra: 2635 / 2539,
  29153. bottom: 100 / 2732.8
  29154. }
  29155. },
  29156. mouth: {
  29157. height: math.unit(1.15, "feet"),
  29158. name: "Mouth",
  29159. image: {
  29160. source: "./media/characters/tala-grovehorn/mouth.svg"
  29161. }
  29162. },
  29163. dick: {
  29164. height: math.unit(2.36, "feet"),
  29165. name: "Dick",
  29166. image: {
  29167. source: "./media/characters/tala-grovehorn/dick.svg"
  29168. }
  29169. },
  29170. slit: {
  29171. height: math.unit(0.61, "feet"),
  29172. name: "Slit",
  29173. image: {
  29174. source: "./media/characters/tala-grovehorn/slit.svg"
  29175. }
  29176. },
  29177. },
  29178. [
  29179. ]
  29180. ))
  29181. characterMakers.push(() => makeCharacter(
  29182. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29183. {
  29184. front: {
  29185. height: math.unit(7 + 7 / 12, "feet"),
  29186. weight: math.unit(225, "lb"),
  29187. name: "Front",
  29188. image: {
  29189. source: "./media/characters/epona/front.svg",
  29190. extra: 2445 / 2290,
  29191. bottom: 251 / 2696
  29192. }
  29193. },
  29194. back: {
  29195. height: math.unit(7 + 7 / 12, "feet"),
  29196. weight: math.unit(225, "lb"),
  29197. name: "Back",
  29198. image: {
  29199. source: "./media/characters/epona/back.svg",
  29200. extra: 2546 / 2408,
  29201. bottom: 44 / 2589
  29202. }
  29203. },
  29204. genitals: {
  29205. height: math.unit(1.5, "feet"),
  29206. name: "Genitals",
  29207. image: {
  29208. source: "./media/characters/epona/genitals.svg"
  29209. }
  29210. },
  29211. },
  29212. [
  29213. {
  29214. name: "Normal",
  29215. height: math.unit(7 + 7 / 12, "feet"),
  29216. default: true
  29217. },
  29218. ]
  29219. ))
  29220. characterMakers.push(() => makeCharacter(
  29221. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29222. {
  29223. front: {
  29224. height: math.unit(7, "feet"),
  29225. weight: math.unit(518, "lb"),
  29226. name: "Front",
  29227. image: {
  29228. source: "./media/characters/avia-bloodbourn/front.svg",
  29229. extra: 1466 / 1350,
  29230. bottom: 65 / 1527
  29231. }
  29232. },
  29233. },
  29234. [
  29235. ]
  29236. ))
  29237. characterMakers.push(() => makeCharacter(
  29238. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29239. {
  29240. front: {
  29241. height: math.unit(9.35, "feet"),
  29242. weight: math.unit(600, "lb"),
  29243. name: "Front",
  29244. image: {
  29245. source: "./media/characters/amera/front.svg",
  29246. extra: 891 / 818,
  29247. bottom: 30 / 922.7
  29248. }
  29249. },
  29250. back: {
  29251. height: math.unit(9.35, "feet"),
  29252. weight: math.unit(600, "lb"),
  29253. name: "Back",
  29254. image: {
  29255. source: "./media/characters/amera/back.svg",
  29256. extra: 876 / 824,
  29257. bottom: 6.8 / 884
  29258. }
  29259. },
  29260. dick: {
  29261. height: math.unit(2.14, "feet"),
  29262. name: "Dick",
  29263. image: {
  29264. source: "./media/characters/amera/dick.svg"
  29265. }
  29266. },
  29267. },
  29268. [
  29269. {
  29270. name: "Normal",
  29271. height: math.unit(9.35, "feet"),
  29272. default: true
  29273. },
  29274. ]
  29275. ))
  29276. characterMakers.push(() => makeCharacter(
  29277. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29278. {
  29279. kneeling: {
  29280. height: math.unit(3 + 4 / 12, "feet"),
  29281. weight: math.unit(90, "lb"),
  29282. name: "Kneeling",
  29283. image: {
  29284. source: "./media/characters/rosewen/kneeling.svg",
  29285. extra: 1835 / 1571,
  29286. bottom: 27.7 / 1862
  29287. }
  29288. },
  29289. },
  29290. [
  29291. {
  29292. name: "Normal",
  29293. height: math.unit(3 + 4 / 12, "feet"),
  29294. default: true
  29295. },
  29296. ]
  29297. ))
  29298. characterMakers.push(() => makeCharacter(
  29299. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29300. {
  29301. front: {
  29302. height: math.unit(5 + 10 / 12, "feet"),
  29303. weight: math.unit(200, "lb"),
  29304. name: "Front",
  29305. image: {
  29306. source: "./media/characters/sabah/front.svg",
  29307. extra: 849 / 763,
  29308. bottom: 33.9 / 881
  29309. }
  29310. },
  29311. },
  29312. [
  29313. {
  29314. name: "Normal",
  29315. height: math.unit(5 + 10 / 12, "feet"),
  29316. default: true
  29317. },
  29318. ]
  29319. ))
  29320. characterMakers.push(() => makeCharacter(
  29321. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29322. {
  29323. front: {
  29324. height: math.unit(3 + 5 / 12, "feet"),
  29325. weight: math.unit(40, "kg"),
  29326. name: "Front",
  29327. image: {
  29328. source: "./media/characters/purple-flame/front.svg",
  29329. extra: 1577 / 1412,
  29330. bottom: 97 / 1694
  29331. }
  29332. },
  29333. frontDressed: {
  29334. height: math.unit(3 + 5 / 12, "feet"),
  29335. weight: math.unit(40, "kg"),
  29336. name: "Front (Dressed)",
  29337. image: {
  29338. source: "./media/characters/purple-flame/front-dressed.svg",
  29339. extra: 1577 / 1412,
  29340. bottom: 97 / 1694
  29341. }
  29342. },
  29343. headphones: {
  29344. height: math.unit(0.85, "feet"),
  29345. name: "Headphones",
  29346. image: {
  29347. source: "./media/characters/purple-flame/headphones.svg"
  29348. }
  29349. },
  29350. },
  29351. [
  29352. {
  29353. name: "Really Small",
  29354. height: math.unit(5, "cm")
  29355. },
  29356. {
  29357. name: "Micro",
  29358. height: math.unit(1 + 5 / 12, "feet")
  29359. },
  29360. {
  29361. name: "Normal",
  29362. height: math.unit(3 + 5 / 12, "feet"),
  29363. default: true
  29364. },
  29365. {
  29366. name: "Minimacro",
  29367. height: math.unit(125, "feet")
  29368. },
  29369. {
  29370. name: "Macro",
  29371. height: math.unit(0.5, "miles")
  29372. },
  29373. {
  29374. name: "Megamacro",
  29375. height: math.unit(50, "miles")
  29376. },
  29377. {
  29378. name: "Gigantic",
  29379. height: math.unit(750, "miles")
  29380. },
  29381. {
  29382. name: "Planetary",
  29383. height: math.unit(15000, "miles")
  29384. },
  29385. ]
  29386. ))
  29387. characterMakers.push(() => makeCharacter(
  29388. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29389. {
  29390. front: {
  29391. height: math.unit(14, "feet"),
  29392. weight: math.unit(959, "lb"),
  29393. name: "Front",
  29394. image: {
  29395. source: "./media/characters/arsenal/front.svg",
  29396. extra: 2357 / 2157,
  29397. bottom: 93 / 2458
  29398. }
  29399. },
  29400. },
  29401. [
  29402. {
  29403. name: "Normal",
  29404. height: math.unit(14, "feet"),
  29405. default: true
  29406. },
  29407. ]
  29408. ))
  29409. characterMakers.push(() => makeCharacter(
  29410. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29411. {
  29412. front: {
  29413. height: math.unit(6, "feet"),
  29414. weight: math.unit(150, "lb"),
  29415. name: "Front",
  29416. image: {
  29417. source: "./media/characters/adira/front.svg",
  29418. extra: 1078 / 1029,
  29419. bottom: 87 / 1166
  29420. }
  29421. },
  29422. },
  29423. [
  29424. {
  29425. name: "Micro",
  29426. height: math.unit(4, "inches"),
  29427. default: true
  29428. },
  29429. {
  29430. name: "Macro",
  29431. height: math.unit(50, "feet")
  29432. },
  29433. ]
  29434. ))
  29435. characterMakers.push(() => makeCharacter(
  29436. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29437. {
  29438. front: {
  29439. height: math.unit(16, "feet"),
  29440. weight: math.unit(1000, "lb"),
  29441. name: "Front",
  29442. image: {
  29443. source: "./media/characters/grim/front.svg",
  29444. extra: 622 / 614,
  29445. bottom: 18.1 / 642
  29446. }
  29447. },
  29448. back: {
  29449. height: math.unit(16, "feet"),
  29450. weight: math.unit(1000, "lb"),
  29451. name: "Back",
  29452. image: {
  29453. source: "./media/characters/grim/back.svg",
  29454. extra: 610.6 / 602,
  29455. bottom: 40.8 / 652
  29456. }
  29457. },
  29458. hunched: {
  29459. height: math.unit(9.75, "feet"),
  29460. weight: math.unit(1000, "lb"),
  29461. name: "Hunched",
  29462. image: {
  29463. source: "./media/characters/grim/hunched.svg",
  29464. extra: 304 / 297,
  29465. bottom: 35.4 / 394
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(16, "feet"),
  29473. default: true
  29474. },
  29475. ]
  29476. ))
  29477. characterMakers.push(() => makeCharacter(
  29478. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29479. {
  29480. front: {
  29481. height: math.unit(2.3, "meters"),
  29482. weight: math.unit(300, "lb"),
  29483. name: "Front",
  29484. image: {
  29485. source: "./media/characters/sinja/front-sfw.svg",
  29486. extra: 1393 / 1294,
  29487. bottom: 70 / 1463
  29488. }
  29489. },
  29490. frontNsfw: {
  29491. height: math.unit(2.3, "meters"),
  29492. weight: math.unit(300, "lb"),
  29493. name: "Front (NSFW)",
  29494. image: {
  29495. source: "./media/characters/sinja/front-nsfw.svg",
  29496. extra: 1393 / 1294,
  29497. bottom: 70 / 1463
  29498. }
  29499. },
  29500. back: {
  29501. height: math.unit(2.3, "meters"),
  29502. weight: math.unit(300, "lb"),
  29503. name: "Back",
  29504. image: {
  29505. source: "./media/characters/sinja/back.svg",
  29506. extra: 1393 / 1294,
  29507. bottom: 70 / 1463
  29508. }
  29509. },
  29510. head: {
  29511. height: math.unit(1.771, "feet"),
  29512. name: "Head",
  29513. image: {
  29514. source: "./media/characters/sinja/head.svg"
  29515. }
  29516. },
  29517. slit: {
  29518. height: math.unit(0.8, "feet"),
  29519. name: "Slit",
  29520. image: {
  29521. source: "./media/characters/sinja/slit.svg"
  29522. }
  29523. },
  29524. },
  29525. [
  29526. {
  29527. name: "Normal",
  29528. height: math.unit(2.3, "meters")
  29529. },
  29530. {
  29531. name: "Macro",
  29532. height: math.unit(91, "meters"),
  29533. default: true
  29534. },
  29535. {
  29536. name: "Megamacro",
  29537. height: math.unit(91440, "meters")
  29538. },
  29539. {
  29540. name: "Gigamacro",
  29541. height: math.unit(60960000, "meters")
  29542. },
  29543. {
  29544. name: "Teramacro",
  29545. height: math.unit(9144000000, "meters")
  29546. },
  29547. ]
  29548. ))
  29549. characterMakers.push(() => makeCharacter(
  29550. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29551. {
  29552. front: {
  29553. height: math.unit(1.7, "meters"),
  29554. weight: math.unit(130, "lb"),
  29555. name: "Front",
  29556. image: {
  29557. source: "./media/characters/kyu/front.svg",
  29558. extra: 415 / 395,
  29559. bottom: 5 / 420
  29560. }
  29561. },
  29562. head: {
  29563. height: math.unit(1.75, "feet"),
  29564. name: "Head",
  29565. image: {
  29566. source: "./media/characters/kyu/head.svg"
  29567. }
  29568. },
  29569. foot: {
  29570. height: math.unit(0.81, "feet"),
  29571. name: "Foot",
  29572. image: {
  29573. source: "./media/characters/kyu/foot.svg"
  29574. }
  29575. },
  29576. },
  29577. [
  29578. {
  29579. name: "Normal",
  29580. height: math.unit(1.7, "meters")
  29581. },
  29582. {
  29583. name: "Macro",
  29584. height: math.unit(131, "feet"),
  29585. default: true
  29586. },
  29587. {
  29588. name: "Megamacro",
  29589. height: math.unit(91440, "meters")
  29590. },
  29591. {
  29592. name: "Gigamacro",
  29593. height: math.unit(60960000, "meters")
  29594. },
  29595. {
  29596. name: "Teramacro",
  29597. height: math.unit(9144000000, "meters")
  29598. },
  29599. ]
  29600. ))
  29601. characterMakers.push(() => makeCharacter(
  29602. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29603. {
  29604. front: {
  29605. height: math.unit(7 + 1 / 12, "feet"),
  29606. weight: math.unit(250, "lb"),
  29607. name: "Front",
  29608. image: {
  29609. source: "./media/characters/joey/front.svg",
  29610. extra: 1791 / 1537,
  29611. bottom: 28 / 1816
  29612. }
  29613. },
  29614. },
  29615. [
  29616. {
  29617. name: "Micro",
  29618. height: math.unit(3, "inches")
  29619. },
  29620. {
  29621. name: "Normal",
  29622. height: math.unit(7 + 1 / 12, "feet"),
  29623. default: true
  29624. },
  29625. ]
  29626. ))
  29627. characterMakers.push(() => makeCharacter(
  29628. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29629. {
  29630. front: {
  29631. height: math.unit(165, "cm"),
  29632. weight: math.unit(140, "lb"),
  29633. name: "Front",
  29634. image: {
  29635. source: "./media/characters/sam-evans/front.svg",
  29636. extra: 3417 / 3230,
  29637. bottom: 41.3 / 3417
  29638. }
  29639. },
  29640. frontSixTails: {
  29641. height: math.unit(165, "cm"),
  29642. weight: math.unit(140, "lb"),
  29643. name: "Front-six-tails",
  29644. image: {
  29645. source: "./media/characters/sam-evans/front-six-tails.svg",
  29646. extra: 3417 / 3230,
  29647. bottom: 41.3 / 3417
  29648. }
  29649. },
  29650. back: {
  29651. height: math.unit(165, "cm"),
  29652. weight: math.unit(140, "lb"),
  29653. name: "Back",
  29654. image: {
  29655. source: "./media/characters/sam-evans/back.svg",
  29656. extra: 3227 / 3032,
  29657. bottom: 6.8 / 3234
  29658. }
  29659. },
  29660. face: {
  29661. height: math.unit(0.68, "feet"),
  29662. name: "Face",
  29663. image: {
  29664. source: "./media/characters/sam-evans/face.svg"
  29665. }
  29666. },
  29667. },
  29668. [
  29669. {
  29670. name: "Normal",
  29671. height: math.unit(165, "cm"),
  29672. default: true
  29673. },
  29674. {
  29675. name: "Macro",
  29676. height: math.unit(100, "meters")
  29677. },
  29678. {
  29679. name: "Macro+",
  29680. height: math.unit(800, "meters")
  29681. },
  29682. {
  29683. name: "Macro++",
  29684. height: math.unit(3, "km")
  29685. },
  29686. {
  29687. name: "Macro+++",
  29688. height: math.unit(30, "km")
  29689. },
  29690. ]
  29691. ))
  29692. characterMakers.push(() => makeCharacter(
  29693. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29694. {
  29695. front: {
  29696. height: math.unit(10, "feet"),
  29697. weight: math.unit(750, "lb"),
  29698. name: "Front",
  29699. image: {
  29700. source: "./media/characters/juliet-a/front.svg",
  29701. extra: 1766 / 1720,
  29702. bottom: 43 / 1809
  29703. }
  29704. },
  29705. back: {
  29706. height: math.unit(10, "feet"),
  29707. weight: math.unit(750, "lb"),
  29708. name: "Back",
  29709. image: {
  29710. source: "./media/characters/juliet-a/back.svg",
  29711. extra: 1781 / 1734,
  29712. bottom: 35 / 1810,
  29713. }
  29714. },
  29715. },
  29716. [
  29717. {
  29718. name: "Normal",
  29719. height: math.unit(10, "feet"),
  29720. default: true
  29721. },
  29722. {
  29723. name: "Dragon Form",
  29724. height: math.unit(250, "feet")
  29725. },
  29726. {
  29727. name: "Macro",
  29728. height: math.unit(1000, "feet")
  29729. },
  29730. {
  29731. name: "Megamacro",
  29732. height: math.unit(10000, "feet")
  29733. }
  29734. ]
  29735. ))
  29736. characterMakers.push(() => makeCharacter(
  29737. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29738. {
  29739. regular: {
  29740. height: math.unit(7 + 3 / 12, "feet"),
  29741. weight: math.unit(260, "lb"),
  29742. name: "Regular",
  29743. image: {
  29744. source: "./media/characters/wild/regular.svg",
  29745. extra: 97.45 / 92,
  29746. bottom: 6.8 / 104.3
  29747. }
  29748. },
  29749. biggums: {
  29750. height: math.unit(8 + 6 / 12, "feet"),
  29751. weight: math.unit(425, "lb"),
  29752. name: "Biggums",
  29753. image: {
  29754. source: "./media/characters/wild/biggums.svg",
  29755. extra: 97.45 / 92,
  29756. bottom: 7.5 / 132.34
  29757. }
  29758. },
  29759. mawRegular: {
  29760. height: math.unit(1.24, "feet"),
  29761. name: "Maw (Regular)",
  29762. image: {
  29763. source: "./media/characters/wild/maw.svg"
  29764. }
  29765. },
  29766. mawBiggums: {
  29767. height: math.unit(1.47, "feet"),
  29768. name: "Maw (Biggums)",
  29769. image: {
  29770. source: "./media/characters/wild/maw.svg"
  29771. }
  29772. },
  29773. },
  29774. [
  29775. {
  29776. name: "Normal",
  29777. height: math.unit(7 + 3 / 12, "feet"),
  29778. default: true
  29779. },
  29780. ]
  29781. ))
  29782. characterMakers.push(() => makeCharacter(
  29783. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29784. {
  29785. front: {
  29786. height: math.unit(2.5, "meters"),
  29787. weight: math.unit(200, "kg"),
  29788. name: "Front",
  29789. image: {
  29790. source: "./media/characters/vidar/front.svg",
  29791. extra: 2994 / 2795,
  29792. bottom: 56 / 3061
  29793. }
  29794. },
  29795. back: {
  29796. height: math.unit(2.5, "meters"),
  29797. weight: math.unit(200, "kg"),
  29798. name: "Back",
  29799. image: {
  29800. source: "./media/characters/vidar/back.svg",
  29801. extra: 3131 / 2928,
  29802. bottom: 13.5 / 3141.5
  29803. }
  29804. },
  29805. feral: {
  29806. height: math.unit(2.5, "meters"),
  29807. weight: math.unit(2000, "kg"),
  29808. name: "Feral",
  29809. image: {
  29810. source: "./media/characters/vidar/feral.svg",
  29811. extra: 2790 / 1765,
  29812. bottom: 6 / 2796
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Normal",
  29819. height: math.unit(2.5, "meters"),
  29820. default: true
  29821. },
  29822. {
  29823. name: "Macro",
  29824. height: math.unit(100, "meters")
  29825. },
  29826. ]
  29827. ))
  29828. characterMakers.push(() => makeCharacter(
  29829. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29830. {
  29831. front: {
  29832. height: math.unit(5 + 9 / 12, "feet"),
  29833. weight: math.unit(120, "lb"),
  29834. name: "Front",
  29835. image: {
  29836. source: "./media/characters/ash/front.svg",
  29837. extra: 2189 / 1961,
  29838. bottom: 5.2 / 2194
  29839. }
  29840. },
  29841. },
  29842. [
  29843. {
  29844. name: "Normal",
  29845. height: math.unit(5 + 9 / 12, "feet"),
  29846. default: true
  29847. },
  29848. ]
  29849. ))
  29850. characterMakers.push(() => makeCharacter(
  29851. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29852. {
  29853. front: {
  29854. height: math.unit(9, "feet"),
  29855. weight: math.unit(10000, "lb"),
  29856. name: "Front",
  29857. image: {
  29858. source: "./media/characters/gygabite/front.svg",
  29859. bottom: 31.7 / 537.8,
  29860. extra: 505 / 370
  29861. }
  29862. },
  29863. },
  29864. [
  29865. {
  29866. name: "Normal",
  29867. height: math.unit(9, "feet"),
  29868. default: true
  29869. },
  29870. ]
  29871. ))
  29872. characterMakers.push(() => makeCharacter(
  29873. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29874. {
  29875. front: {
  29876. height: math.unit(12, "feet"),
  29877. weight: math.unit(4000, "lb"),
  29878. name: "Front",
  29879. image: {
  29880. source: "./media/characters/p0tat0/front.svg",
  29881. extra: 1065 / 921,
  29882. bottom: 55.7 / 1121.25
  29883. }
  29884. },
  29885. },
  29886. [
  29887. {
  29888. name: "Normal",
  29889. height: math.unit(12, "feet"),
  29890. default: true
  29891. },
  29892. ]
  29893. ))
  29894. characterMakers.push(() => makeCharacter(
  29895. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29896. {
  29897. side: {
  29898. height: math.unit(6.5, "feet"),
  29899. weight: math.unit(800, "lb"),
  29900. name: "Side",
  29901. image: {
  29902. source: "./media/characters/dusk/side.svg",
  29903. extra: 615 / 373,
  29904. bottom: 53 / 664
  29905. }
  29906. },
  29907. sitting: {
  29908. height: math.unit(7, "feet"),
  29909. weight: math.unit(800, "lb"),
  29910. name: "Sitting",
  29911. image: {
  29912. source: "./media/characters/dusk/sitting.svg",
  29913. extra: 753 / 425,
  29914. bottom: 33 / 774
  29915. }
  29916. },
  29917. head: {
  29918. height: math.unit(6.1, "feet"),
  29919. name: "Head",
  29920. image: {
  29921. source: "./media/characters/dusk/head.svg"
  29922. }
  29923. },
  29924. },
  29925. [
  29926. {
  29927. name: "Normal",
  29928. height: math.unit(7, "feet"),
  29929. default: true
  29930. },
  29931. ]
  29932. ))
  29933. characterMakers.push(() => makeCharacter(
  29934. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29935. {
  29936. front: {
  29937. height: math.unit(15, "feet"),
  29938. weight: math.unit(7000, "lb"),
  29939. name: "Front",
  29940. image: {
  29941. source: "./media/characters/jay-direwolf/front.svg",
  29942. extra: 1810 / 1732,
  29943. bottom: 66 / 1892
  29944. }
  29945. },
  29946. },
  29947. [
  29948. {
  29949. name: "Normal",
  29950. height: math.unit(15, "feet"),
  29951. default: true
  29952. },
  29953. ]
  29954. ))
  29955. characterMakers.push(() => makeCharacter(
  29956. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29957. {
  29958. front: {
  29959. height: math.unit(4 + 9 / 12, "feet"),
  29960. weight: math.unit(130, "lb"),
  29961. name: "Front",
  29962. image: {
  29963. source: "./media/characters/anchovie/front.svg",
  29964. extra: 382 / 350,
  29965. bottom: 25 / 409
  29966. }
  29967. },
  29968. back: {
  29969. height: math.unit(4 + 9 / 12, "feet"),
  29970. weight: math.unit(130, "lb"),
  29971. name: "Back",
  29972. image: {
  29973. source: "./media/characters/anchovie/back.svg",
  29974. extra: 385 / 352,
  29975. bottom: 16.6 / 402
  29976. }
  29977. },
  29978. frontDressed: {
  29979. height: math.unit(4 + 9 / 12, "feet"),
  29980. weight: math.unit(130, "lb"),
  29981. name: "Front (Dressed)",
  29982. image: {
  29983. source: "./media/characters/anchovie/front-dressed.svg",
  29984. extra: 382 / 350,
  29985. bottom: 25 / 409
  29986. }
  29987. },
  29988. backDressed: {
  29989. height: math.unit(4 + 9 / 12, "feet"),
  29990. weight: math.unit(130, "lb"),
  29991. name: "Back (Dressed)",
  29992. image: {
  29993. source: "./media/characters/anchovie/back-dressed.svg",
  29994. extra: 385 / 352,
  29995. bottom: 16.6 / 402
  29996. }
  29997. },
  29998. },
  29999. [
  30000. {
  30001. name: "Micro",
  30002. height: math.unit(6.4, "inches")
  30003. },
  30004. {
  30005. name: "Normal",
  30006. height: math.unit(4 + 9 / 12, "feet"),
  30007. default: true
  30008. },
  30009. ]
  30010. ))
  30011. characterMakers.push(() => makeCharacter(
  30012. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30013. {
  30014. front: {
  30015. height: math.unit(2, "meters"),
  30016. weight: math.unit(180, "lb"),
  30017. name: "Front",
  30018. image: {
  30019. source: "./media/characters/acidrenamon/front.svg",
  30020. extra: 987 / 890,
  30021. bottom: 22.8 / 1009
  30022. }
  30023. },
  30024. back: {
  30025. height: math.unit(2, "meters"),
  30026. weight: math.unit(180, "lb"),
  30027. name: "Back",
  30028. image: {
  30029. source: "./media/characters/acidrenamon/back.svg",
  30030. extra: 983 / 891,
  30031. bottom: 8.4 / 992
  30032. }
  30033. },
  30034. head: {
  30035. height: math.unit(1.92, "feet"),
  30036. name: "Head",
  30037. image: {
  30038. source: "./media/characters/acidrenamon/head.svg"
  30039. }
  30040. },
  30041. rump: {
  30042. height: math.unit(1.72, "feet"),
  30043. name: "Rump",
  30044. image: {
  30045. source: "./media/characters/acidrenamon/rump.svg"
  30046. }
  30047. },
  30048. tail: {
  30049. height: math.unit(4.2, "feet"),
  30050. name: "Tail",
  30051. image: {
  30052. source: "./media/characters/acidrenamon/tail.svg"
  30053. }
  30054. },
  30055. },
  30056. [
  30057. {
  30058. name: "Normal",
  30059. height: math.unit(2, "meters"),
  30060. default: true
  30061. },
  30062. {
  30063. name: "Minimacro",
  30064. height: math.unit(7, "meters")
  30065. },
  30066. {
  30067. name: "Macro",
  30068. height: math.unit(200, "meters")
  30069. },
  30070. {
  30071. name: "Gigamacro",
  30072. height: math.unit(0.2, "earths")
  30073. },
  30074. ]
  30075. ))
  30076. characterMakers.push(() => makeCharacter(
  30077. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30078. {
  30079. front: {
  30080. height: math.unit(152, "feet"),
  30081. name: "Front",
  30082. image: {
  30083. source: "./media/characters/kenzie-lee/front.svg",
  30084. extra: 1869/1774,
  30085. bottom: 128/1997
  30086. }
  30087. },
  30088. side: {
  30089. height: math.unit(86, "feet"),
  30090. name: "Side",
  30091. image: {
  30092. source: "./media/characters/kenzie-lee/side.svg",
  30093. extra: 930/815,
  30094. bottom: 177/1107
  30095. }
  30096. },
  30097. paw: {
  30098. height: math.unit(15, "feet"),
  30099. name: "Paw",
  30100. image: {
  30101. source: "./media/characters/kenzie-lee/paw.svg"
  30102. }
  30103. },
  30104. },
  30105. [
  30106. {
  30107. name: "Kenzie Flea",
  30108. height: math.unit(2, "mm"),
  30109. default: true
  30110. },
  30111. {
  30112. name: "Micro",
  30113. height: math.unit(2, "inches")
  30114. },
  30115. {
  30116. name: "Normal",
  30117. height: math.unit(152, "feet")
  30118. },
  30119. {
  30120. name: "Megamacro",
  30121. height: math.unit(7, "miles")
  30122. },
  30123. {
  30124. name: "Gigamacro",
  30125. height: math.unit(8000, "miles")
  30126. },
  30127. ]
  30128. ))
  30129. characterMakers.push(() => makeCharacter(
  30130. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30131. {
  30132. front: {
  30133. height: math.unit(6, "feet"),
  30134. name: "Front",
  30135. image: {
  30136. source: "./media/characters/withers/front.svg",
  30137. extra: 1935/1760,
  30138. bottom: 72/2007
  30139. }
  30140. },
  30141. back: {
  30142. height: math.unit(6, "feet"),
  30143. name: "Back",
  30144. image: {
  30145. source: "./media/characters/withers/back.svg",
  30146. extra: 1944/1792,
  30147. bottom: 12/1956
  30148. }
  30149. },
  30150. dressed: {
  30151. height: math.unit(6, "feet"),
  30152. name: "Dressed",
  30153. image: {
  30154. source: "./media/characters/withers/dressed.svg",
  30155. extra: 1937/1765,
  30156. bottom: 73/2010
  30157. }
  30158. },
  30159. phase1: {
  30160. height: math.unit(1.1, "feet"),
  30161. name: "Phase 1",
  30162. image: {
  30163. source: "./media/characters/withers/phase-1.svg",
  30164. extra: 1885/1232,
  30165. bottom: 0/1885
  30166. }
  30167. },
  30168. phase2: {
  30169. height: math.unit(1.05, "feet"),
  30170. name: "Phase 2",
  30171. image: {
  30172. source: "./media/characters/withers/phase-2.svg",
  30173. extra: 1792/1090,
  30174. bottom: 0/1792
  30175. }
  30176. },
  30177. partyWipe: {
  30178. height: math.unit(1.1, "feet"),
  30179. name: "Party Wipe",
  30180. image: {
  30181. source: "./media/characters/withers/party-wipe.svg",
  30182. extra: 1864/1207,
  30183. bottom: 0/1864
  30184. }
  30185. },
  30186. },
  30187. [
  30188. {
  30189. name: "Macro",
  30190. height: math.unit(167, "feet"),
  30191. default: true
  30192. },
  30193. {
  30194. name: "Megamacro",
  30195. height: math.unit(15, "miles")
  30196. }
  30197. ]
  30198. ))
  30199. characterMakers.push(() => makeCharacter(
  30200. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30201. {
  30202. front: {
  30203. height: math.unit(6 + 7 / 12, "feet"),
  30204. weight: math.unit(250, "lb"),
  30205. name: "Front",
  30206. image: {
  30207. source: "./media/characters/nemoskii/front.svg",
  30208. extra: 2270 / 1734,
  30209. bottom: 86 / 2354
  30210. }
  30211. },
  30212. back: {
  30213. height: math.unit(6 + 7 / 12, "feet"),
  30214. weight: math.unit(250, "lb"),
  30215. name: "Back",
  30216. image: {
  30217. source: "./media/characters/nemoskii/back.svg",
  30218. extra: 1845 / 1788,
  30219. bottom: 10.5 / 1852
  30220. }
  30221. },
  30222. head: {
  30223. height: math.unit(1.31, "feet"),
  30224. name: "Head",
  30225. image: {
  30226. source: "./media/characters/nemoskii/head.svg"
  30227. }
  30228. },
  30229. },
  30230. [
  30231. {
  30232. name: "Micro",
  30233. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30234. },
  30235. {
  30236. name: "Normal",
  30237. height: math.unit(6 + 7 / 12, "feet"),
  30238. default: true
  30239. },
  30240. {
  30241. name: "Macro",
  30242. height: math.unit((6 + 7 / 12) * 150, "feet")
  30243. },
  30244. {
  30245. name: "Macro+",
  30246. height: math.unit((6 + 7 / 12) * 500, "feet")
  30247. },
  30248. {
  30249. name: "Megamacro",
  30250. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30251. },
  30252. ]
  30253. ))
  30254. characterMakers.push(() => makeCharacter(
  30255. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30256. {
  30257. front: {
  30258. height: math.unit(1, "mile"),
  30259. weight: math.unit(265261.9, "lb"),
  30260. name: "Front",
  30261. image: {
  30262. source: "./media/characters/shui/front.svg",
  30263. extra: 1633 / 1564,
  30264. bottom: 91.5 / 1726
  30265. }
  30266. },
  30267. },
  30268. [
  30269. {
  30270. name: "Macro",
  30271. height: math.unit(1, "mile"),
  30272. default: true
  30273. },
  30274. ]
  30275. ))
  30276. characterMakers.push(() => makeCharacter(
  30277. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30278. {
  30279. front: {
  30280. height: math.unit(12 + 6 / 12, "feet"),
  30281. weight: math.unit(1342, "lb"),
  30282. name: "Front",
  30283. image: {
  30284. source: "./media/characters/arokh-takakura/front.svg",
  30285. extra: 1089 / 1043,
  30286. bottom: 77.4 / 1176.7
  30287. }
  30288. },
  30289. back: {
  30290. height: math.unit(12 + 6 / 12, "feet"),
  30291. weight: math.unit(1342, "lb"),
  30292. name: "Back",
  30293. image: {
  30294. source: "./media/characters/arokh-takakura/back.svg",
  30295. extra: 1046 / 1019,
  30296. bottom: 102 / 1150
  30297. }
  30298. },
  30299. },
  30300. [
  30301. {
  30302. name: "Big",
  30303. height: math.unit(12 + 6 / 12, "feet"),
  30304. default: true
  30305. },
  30306. ]
  30307. ))
  30308. characterMakers.push(() => makeCharacter(
  30309. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30310. {
  30311. front: {
  30312. height: math.unit(5 + 6 / 12, "feet"),
  30313. weight: math.unit(150, "lb"),
  30314. name: "Front",
  30315. image: {
  30316. source: "./media/characters/theo/front.svg",
  30317. extra: 1184 / 1131,
  30318. bottom: 7.4 / 1191
  30319. }
  30320. },
  30321. },
  30322. [
  30323. {
  30324. name: "Micro",
  30325. height: math.unit(5, "inches")
  30326. },
  30327. {
  30328. name: "Normal",
  30329. height: math.unit(5 + 6 / 12, "feet"),
  30330. default: true
  30331. },
  30332. ]
  30333. ))
  30334. characterMakers.push(() => makeCharacter(
  30335. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30336. {
  30337. front: {
  30338. height: math.unit(5 + 9 / 12, "feet"),
  30339. weight: math.unit(130, "lb"),
  30340. name: "Front",
  30341. image: {
  30342. source: "./media/characters/cecelia-swift/front.svg",
  30343. extra: 502 / 484,
  30344. bottom: 23 / 523
  30345. }
  30346. },
  30347. back: {
  30348. height: math.unit(5 + 9 / 12, "feet"),
  30349. weight: math.unit(130, "lb"),
  30350. name: "Back",
  30351. image: {
  30352. source: "./media/characters/cecelia-swift/back.svg",
  30353. extra: 499 / 485,
  30354. bottom: 12 / 511
  30355. }
  30356. },
  30357. head: {
  30358. height: math.unit(0.90, "feet"),
  30359. name: "Head",
  30360. image: {
  30361. source: "./media/characters/cecelia-swift/head.svg"
  30362. }
  30363. },
  30364. rump: {
  30365. height: math.unit(1.75, "feet"),
  30366. name: "Rump",
  30367. image: {
  30368. source: "./media/characters/cecelia-swift/rump.svg"
  30369. }
  30370. },
  30371. },
  30372. [
  30373. {
  30374. name: "Normal",
  30375. height: math.unit(5 + 9 / 12, "feet"),
  30376. default: true
  30377. },
  30378. {
  30379. name: "Big",
  30380. height: math.unit(50, "feet")
  30381. },
  30382. {
  30383. name: "Macro",
  30384. height: math.unit(100, "feet")
  30385. },
  30386. {
  30387. name: "Macro+",
  30388. height: math.unit(500, "feet")
  30389. },
  30390. {
  30391. name: "Macro++",
  30392. height: math.unit(1000, "feet")
  30393. },
  30394. ]
  30395. ))
  30396. characterMakers.push(() => makeCharacter(
  30397. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30398. {
  30399. front: {
  30400. height: math.unit(6, "feet"),
  30401. weight: math.unit(150, "lb"),
  30402. name: "Front",
  30403. image: {
  30404. source: "./media/characters/kaunan/front.svg",
  30405. extra: 2890 / 2523,
  30406. bottom: 49 / 2939
  30407. }
  30408. },
  30409. },
  30410. [
  30411. {
  30412. name: "Macro",
  30413. height: math.unit(150, "feet"),
  30414. default: true
  30415. },
  30416. ]
  30417. ))
  30418. characterMakers.push(() => makeCharacter(
  30419. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30420. {
  30421. dressed: {
  30422. height: math.unit(175, "cm"),
  30423. weight: math.unit(60, "kg"),
  30424. name: "Dressed",
  30425. image: {
  30426. source: "./media/characters/fei/dressed.svg",
  30427. extra: 1402/1278,
  30428. bottom: 27/1429
  30429. }
  30430. },
  30431. nude: {
  30432. height: math.unit(175, "cm"),
  30433. weight: math.unit(60, "kg"),
  30434. name: "Nude",
  30435. image: {
  30436. source: "./media/characters/fei/nude.svg",
  30437. extra: 1402/1278,
  30438. bottom: 27/1429
  30439. }
  30440. },
  30441. heels: {
  30442. height: math.unit(0.466, "feet"),
  30443. name: "Heels",
  30444. image: {
  30445. source: "./media/characters/fei/heels.svg",
  30446. extra: 156/152,
  30447. bottom: 28/184
  30448. }
  30449. },
  30450. },
  30451. [
  30452. {
  30453. name: "Mortal",
  30454. height: math.unit(175, "cm")
  30455. },
  30456. {
  30457. name: "Normal",
  30458. height: math.unit(3500, "m")
  30459. },
  30460. {
  30461. name: "Stroll",
  30462. height: math.unit(18.4, "km"),
  30463. default: true
  30464. },
  30465. {
  30466. name: "Showoff",
  30467. height: math.unit(175, "km")
  30468. },
  30469. ]
  30470. ))
  30471. characterMakers.push(() => makeCharacter(
  30472. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30473. {
  30474. front: {
  30475. height: math.unit(7, "feet"),
  30476. weight: math.unit(1000, "kg"),
  30477. name: "Front",
  30478. image: {
  30479. source: "./media/characters/edrax/front.svg",
  30480. extra: 2838 / 2550,
  30481. bottom: 130 / 2968
  30482. }
  30483. },
  30484. },
  30485. [
  30486. {
  30487. name: "Small",
  30488. height: math.unit(7, "feet")
  30489. },
  30490. {
  30491. name: "Normal",
  30492. height: math.unit(1500, "meters")
  30493. },
  30494. {
  30495. name: "Mega",
  30496. height: math.unit(12000000, "km"),
  30497. default: true
  30498. },
  30499. {
  30500. name: "Megamacro",
  30501. height: math.unit(10600000, "lightyears")
  30502. },
  30503. {
  30504. name: "Hypermacro",
  30505. height: math.unit(256, "yottameters")
  30506. },
  30507. ]
  30508. ))
  30509. characterMakers.push(() => makeCharacter(
  30510. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30511. {
  30512. front: {
  30513. height: math.unit(10, "feet"),
  30514. weight: math.unit(750, "lb"),
  30515. name: "Front",
  30516. image: {
  30517. source: "./media/characters/clove/front.svg",
  30518. extra: 1918/1751,
  30519. bottom: 52/1970
  30520. }
  30521. },
  30522. back: {
  30523. height: math.unit(10, "feet"),
  30524. weight: math.unit(750, "lb"),
  30525. name: "Back",
  30526. image: {
  30527. source: "./media/characters/clove/back.svg",
  30528. extra: 1912/1747,
  30529. bottom: 50/1962
  30530. }
  30531. },
  30532. },
  30533. [
  30534. {
  30535. name: "Normal",
  30536. height: math.unit(10, "feet"),
  30537. default: true
  30538. },
  30539. ]
  30540. ))
  30541. characterMakers.push(() => makeCharacter(
  30542. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30543. {
  30544. front: {
  30545. height: math.unit(4, "feet"),
  30546. weight: math.unit(50, "lb"),
  30547. name: "Front",
  30548. image: {
  30549. source: "./media/characters/alex-rabbit/front.svg",
  30550. extra: 507 / 458,
  30551. bottom: 18.5 / 527
  30552. }
  30553. },
  30554. back: {
  30555. height: math.unit(4, "feet"),
  30556. weight: math.unit(50, "lb"),
  30557. name: "Back",
  30558. image: {
  30559. source: "./media/characters/alex-rabbit/back.svg",
  30560. extra: 502 / 460,
  30561. bottom: 18.9 / 521
  30562. }
  30563. },
  30564. },
  30565. [
  30566. {
  30567. name: "Normal",
  30568. height: math.unit(4, "feet"),
  30569. default: true
  30570. },
  30571. ]
  30572. ))
  30573. characterMakers.push(() => makeCharacter(
  30574. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30575. {
  30576. front: {
  30577. height: math.unit(1 + 3 / 12, "feet"),
  30578. weight: math.unit(80, "lb"),
  30579. name: "Front",
  30580. image: {
  30581. source: "./media/characters/zander-rose/front.svg",
  30582. extra: 916 / 797,
  30583. bottom: 17 / 933
  30584. }
  30585. },
  30586. back: {
  30587. height: math.unit(1 + 3 / 12, "feet"),
  30588. weight: math.unit(80, "lb"),
  30589. name: "Back",
  30590. image: {
  30591. source: "./media/characters/zander-rose/back.svg",
  30592. extra: 903 / 779,
  30593. bottom: 31 / 934
  30594. }
  30595. },
  30596. },
  30597. [
  30598. {
  30599. name: "Normal",
  30600. height: math.unit(1 + 3 / 12, "feet"),
  30601. default: true
  30602. },
  30603. ]
  30604. ))
  30605. characterMakers.push(() => makeCharacter(
  30606. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30607. {
  30608. anthro: {
  30609. height: math.unit(6, "feet"),
  30610. weight: math.unit(150, "lb"),
  30611. name: "Anthro",
  30612. image: {
  30613. source: "./media/characters/razz/anthro.svg",
  30614. extra: 1437 / 1343,
  30615. bottom: 48 / 1485
  30616. }
  30617. },
  30618. feral: {
  30619. height: math.unit(6, "feet"),
  30620. weight: math.unit(150, "lb"),
  30621. name: "Feral",
  30622. image: {
  30623. source: "./media/characters/razz/feral.svg",
  30624. extra: 2569 / 1385,
  30625. bottom: 95 / 2664
  30626. }
  30627. },
  30628. },
  30629. [
  30630. {
  30631. name: "Normal",
  30632. height: math.unit(6, "feet"),
  30633. default: true
  30634. },
  30635. ]
  30636. ))
  30637. characterMakers.push(() => makeCharacter(
  30638. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30639. {
  30640. front: {
  30641. height: math.unit(9 + 4 / 12, "feet"),
  30642. weight: math.unit(500, "lb"),
  30643. name: "Front",
  30644. image: {
  30645. source: "./media/characters/morrigan/front.svg",
  30646. extra: 2707 / 2579,
  30647. bottom: 156 / 2863
  30648. }
  30649. },
  30650. },
  30651. [
  30652. {
  30653. name: "Normal",
  30654. height: math.unit(9 + 4 / 12, "feet"),
  30655. default: true
  30656. },
  30657. ]
  30658. ))
  30659. characterMakers.push(() => makeCharacter(
  30660. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30661. {
  30662. front: {
  30663. height: math.unit(5, "stories"),
  30664. weight: math.unit(4000, "lb"),
  30665. name: "Front",
  30666. image: {
  30667. source: "./media/characters/jenene/front.svg",
  30668. extra: 1780 / 1710,
  30669. bottom: 57 / 1837
  30670. }
  30671. },
  30672. },
  30673. [
  30674. {
  30675. name: "Normal",
  30676. height: math.unit(5, "stories"),
  30677. default: true
  30678. },
  30679. ]
  30680. ))
  30681. characterMakers.push(() => makeCharacter(
  30682. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30683. {
  30684. taurSfw: {
  30685. height: math.unit(10, "meters"),
  30686. weight: math.unit(17500, "kg"),
  30687. name: "Taur",
  30688. image: {
  30689. source: "./media/characters/faey/taur-sfw.svg",
  30690. extra: 1200 / 968,
  30691. bottom: 41 / 1241
  30692. }
  30693. },
  30694. chestmaw: {
  30695. height: math.unit(2.01, "meters"),
  30696. name: "Chestmaw",
  30697. image: {
  30698. source: "./media/characters/faey/chestmaw.svg"
  30699. }
  30700. },
  30701. foot: {
  30702. height: math.unit(2.43, "meters"),
  30703. name: "Foot",
  30704. image: {
  30705. source: "./media/characters/faey/foot.svg"
  30706. }
  30707. },
  30708. jaws: {
  30709. height: math.unit(1.66, "meters"),
  30710. name: "Jaws",
  30711. image: {
  30712. source: "./media/characters/faey/jaws.svg"
  30713. }
  30714. },
  30715. tongues: {
  30716. height: math.unit(2.01, "meters"),
  30717. name: "Tongues",
  30718. image: {
  30719. source: "./media/characters/faey/tongues.svg"
  30720. }
  30721. },
  30722. },
  30723. [
  30724. {
  30725. name: "Small",
  30726. height: math.unit(10, "meters"),
  30727. default: true
  30728. },
  30729. {
  30730. name: "Big",
  30731. height: math.unit(500000, "km")
  30732. },
  30733. ]
  30734. ))
  30735. characterMakers.push(() => makeCharacter(
  30736. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30737. {
  30738. front: {
  30739. height: math.unit(7, "feet"),
  30740. weight: math.unit(275, "lb"),
  30741. name: "Front",
  30742. image: {
  30743. source: "./media/characters/roku/front.svg",
  30744. extra: 903 / 878,
  30745. bottom: 37 / 940
  30746. }
  30747. },
  30748. },
  30749. [
  30750. {
  30751. name: "Normal",
  30752. height: math.unit(7, "feet"),
  30753. default: true
  30754. },
  30755. {
  30756. name: "Macro",
  30757. height: math.unit(500, "feet")
  30758. },
  30759. {
  30760. name: "Megamacro",
  30761. height: math.unit(200, "miles")
  30762. },
  30763. ]
  30764. ))
  30765. characterMakers.push(() => makeCharacter(
  30766. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30767. {
  30768. front: {
  30769. height: math.unit(6 + 2 / 12, "feet"),
  30770. weight: math.unit(150, "lb"),
  30771. name: "Front",
  30772. image: {
  30773. source: "./media/characters/lira/front.svg",
  30774. extra: 1727 / 1605,
  30775. bottom: 26 / 1753
  30776. }
  30777. },
  30778. back: {
  30779. height: math.unit(6 + 2 / 12, "feet"),
  30780. weight: math.unit(150, "lb"),
  30781. name: "Back",
  30782. image: {
  30783. source: "./media/characters/lira/back.svg",
  30784. extra: 1713/1621,
  30785. bottom: 20/1733
  30786. }
  30787. },
  30788. hand: {
  30789. height: math.unit(0.75, "feet"),
  30790. name: "Hand",
  30791. image: {
  30792. source: "./media/characters/lira/hand.svg"
  30793. }
  30794. },
  30795. maw: {
  30796. height: math.unit(0.65, "feet"),
  30797. name: "Maw",
  30798. image: {
  30799. source: "./media/characters/lira/maw.svg"
  30800. }
  30801. },
  30802. pawDigi: {
  30803. height: math.unit(1.6, "feet"),
  30804. name: "Paw Digi",
  30805. image: {
  30806. source: "./media/characters/lira/paw-digi.svg"
  30807. }
  30808. },
  30809. pawPlanti: {
  30810. height: math.unit(1.4, "feet"),
  30811. name: "Paw Planti",
  30812. image: {
  30813. source: "./media/characters/lira/paw-planti.svg"
  30814. }
  30815. },
  30816. },
  30817. [
  30818. {
  30819. name: "Normal",
  30820. height: math.unit(6 + 2 / 12, "feet"),
  30821. default: true
  30822. },
  30823. {
  30824. name: "Macro",
  30825. height: math.unit(100, "feet")
  30826. },
  30827. {
  30828. name: "Macro²",
  30829. height: math.unit(1600, "feet")
  30830. },
  30831. {
  30832. name: "Planetary",
  30833. height: math.unit(20, "earths")
  30834. },
  30835. ]
  30836. ))
  30837. characterMakers.push(() => makeCharacter(
  30838. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30839. {
  30840. front: {
  30841. height: math.unit(6, "feet"),
  30842. weight: math.unit(150, "lb"),
  30843. name: "Front",
  30844. image: {
  30845. source: "./media/characters/hadjet/front.svg",
  30846. extra: 1480 / 1346,
  30847. bottom: 26 / 1506
  30848. }
  30849. },
  30850. frontNsfw: {
  30851. height: math.unit(6, "feet"),
  30852. weight: math.unit(150, "lb"),
  30853. name: "Front (NSFW)",
  30854. image: {
  30855. source: "./media/characters/hadjet/front-nsfw.svg",
  30856. extra: 1440 / 1358,
  30857. bottom: 52 / 1492
  30858. }
  30859. },
  30860. },
  30861. [
  30862. {
  30863. name: "Macro",
  30864. height: math.unit(10, "stories"),
  30865. default: true
  30866. },
  30867. {
  30868. name: "Megamacro",
  30869. height: math.unit(1.5, "miles")
  30870. },
  30871. {
  30872. name: "Megamacro+",
  30873. height: math.unit(5, "miles")
  30874. },
  30875. ]
  30876. ))
  30877. characterMakers.push(() => makeCharacter(
  30878. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30879. {
  30880. side: {
  30881. height: math.unit(106, "feet"),
  30882. weight: math.unit(500, "tonnes"),
  30883. name: "Side",
  30884. image: {
  30885. source: "./media/characters/kodran/side.svg",
  30886. extra: 553 / 480,
  30887. bottom: 33 / 586
  30888. }
  30889. },
  30890. front: {
  30891. height: math.unit(132, "feet"),
  30892. weight: math.unit(500, "tonnes"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/kodran/front.svg",
  30896. extra: 667 / 643,
  30897. bottom: 42 / 709
  30898. }
  30899. },
  30900. flying: {
  30901. height: math.unit(350, "feet"),
  30902. weight: math.unit(500, "tonnes"),
  30903. name: "Flying",
  30904. image: {
  30905. source: "./media/characters/kodran/flying.svg"
  30906. }
  30907. },
  30908. foot: {
  30909. height: math.unit(33, "feet"),
  30910. name: "Foot",
  30911. image: {
  30912. source: "./media/characters/kodran/foot.svg"
  30913. }
  30914. },
  30915. footFront: {
  30916. height: math.unit(19, "feet"),
  30917. name: "Foot (Front)",
  30918. image: {
  30919. source: "./media/characters/kodran/foot-front.svg",
  30920. extra: 261 / 261,
  30921. bottom: 91 / 352
  30922. }
  30923. },
  30924. headFront: {
  30925. height: math.unit(53, "feet"),
  30926. name: "Head (Front)",
  30927. image: {
  30928. source: "./media/characters/kodran/head-front.svg"
  30929. }
  30930. },
  30931. headSide: {
  30932. height: math.unit(65, "feet"),
  30933. name: "Head (Side)",
  30934. image: {
  30935. source: "./media/characters/kodran/head-side.svg"
  30936. }
  30937. },
  30938. throat: {
  30939. height: math.unit(79, "feet"),
  30940. name: "Throat",
  30941. image: {
  30942. source: "./media/characters/kodran/throat.svg"
  30943. }
  30944. },
  30945. },
  30946. [
  30947. {
  30948. name: "Large",
  30949. height: math.unit(106, "feet"),
  30950. default: true
  30951. },
  30952. ]
  30953. ))
  30954. characterMakers.push(() => makeCharacter(
  30955. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30956. {
  30957. side: {
  30958. height: math.unit(11, "feet"),
  30959. weight: math.unit(150, "lb"),
  30960. name: "Side",
  30961. image: {
  30962. source: "./media/characters/pyxaron/side.svg",
  30963. extra: 305 / 195,
  30964. bottom: 17 / 322
  30965. }
  30966. },
  30967. },
  30968. [
  30969. {
  30970. name: "Normal",
  30971. height: math.unit(11, "feet"),
  30972. default: true
  30973. },
  30974. ]
  30975. ))
  30976. characterMakers.push(() => makeCharacter(
  30977. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30978. {
  30979. front: {
  30980. height: math.unit(6, "feet"),
  30981. weight: math.unit(150, "lb"),
  30982. name: "Front",
  30983. image: {
  30984. source: "./media/characters/meep/front.svg",
  30985. extra: 88 / 80,
  30986. bottom: 6 / 94
  30987. }
  30988. },
  30989. },
  30990. [
  30991. {
  30992. name: "Fun Sized",
  30993. height: math.unit(2, "inches"),
  30994. default: true
  30995. },
  30996. {
  30997. name: "Friend Sized",
  30998. height: math.unit(8, "inches")
  30999. },
  31000. ]
  31001. ))
  31002. characterMakers.push(() => makeCharacter(
  31003. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31004. {
  31005. front: {
  31006. height: math.unit(15, "feet"),
  31007. weight: math.unit(2500, "lb"),
  31008. name: "Front",
  31009. image: {
  31010. source: "./media/characters/holly-rabbit/front.svg",
  31011. extra: 1433 / 1233,
  31012. bottom: 125 / 1558
  31013. }
  31014. },
  31015. dick: {
  31016. height: math.unit(4.6, "feet"),
  31017. name: "Dick",
  31018. image: {
  31019. source: "./media/characters/holly-rabbit/dick.svg"
  31020. }
  31021. },
  31022. },
  31023. [
  31024. {
  31025. name: "Normal",
  31026. height: math.unit(15, "feet"),
  31027. default: true
  31028. },
  31029. {
  31030. name: "Macro",
  31031. height: math.unit(250, "feet")
  31032. },
  31033. {
  31034. name: "Macro+",
  31035. height: math.unit(2500, "feet")
  31036. },
  31037. ]
  31038. ))
  31039. characterMakers.push(() => makeCharacter(
  31040. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31041. {
  31042. front: {
  31043. height: math.unit(3.02, "meters"),
  31044. weight: math.unit(500, "kg"),
  31045. name: "Front",
  31046. image: {
  31047. source: "./media/characters/drena/front.svg",
  31048. extra: 282 / 243,
  31049. bottom: 8 / 290
  31050. }
  31051. },
  31052. side: {
  31053. height: math.unit(3.02, "meters"),
  31054. weight: math.unit(500, "kg"),
  31055. name: "Side",
  31056. image: {
  31057. source: "./media/characters/drena/side.svg",
  31058. extra: 280 / 245,
  31059. bottom: 10 / 290
  31060. }
  31061. },
  31062. back: {
  31063. height: math.unit(3.02, "meters"),
  31064. weight: math.unit(500, "kg"),
  31065. name: "Back",
  31066. image: {
  31067. source: "./media/characters/drena/back.svg",
  31068. extra: 278 / 243,
  31069. bottom: 2 / 280
  31070. }
  31071. },
  31072. foot: {
  31073. height: math.unit(0.75, "meters"),
  31074. name: "Foot",
  31075. image: {
  31076. source: "./media/characters/drena/foot.svg"
  31077. }
  31078. },
  31079. maw: {
  31080. height: math.unit(0.82, "meters"),
  31081. name: "Maw",
  31082. image: {
  31083. source: "./media/characters/drena/maw.svg"
  31084. }
  31085. },
  31086. eating: {
  31087. height: math.unit(0.75, "meters"),
  31088. name: "Eating",
  31089. image: {
  31090. source: "./media/characters/drena/eating.svg"
  31091. }
  31092. },
  31093. rump: {
  31094. height: math.unit(0.93, "meters"),
  31095. name: "Rump",
  31096. image: {
  31097. source: "./media/characters/drena/rump.svg"
  31098. }
  31099. },
  31100. },
  31101. [
  31102. {
  31103. name: "Normal",
  31104. height: math.unit(3.02, "meters"),
  31105. default: true
  31106. },
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31111. {
  31112. front: {
  31113. height: math.unit(6 + 4 / 12, "feet"),
  31114. weight: math.unit(250, "lb"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/remmyzilla/front.svg",
  31118. extra: 4033 / 3588,
  31119. bottom: 123 / 4156
  31120. }
  31121. },
  31122. back: {
  31123. height: math.unit(6 + 4 / 12, "feet"),
  31124. weight: math.unit(250, "lb"),
  31125. name: "Back",
  31126. image: {
  31127. source: "./media/characters/remmyzilla/back.svg",
  31128. extra: 1696/1602,
  31129. bottom: 63/1759
  31130. }
  31131. },
  31132. paw: {
  31133. height: math.unit(1.73, "feet"),
  31134. name: "Paw",
  31135. image: {
  31136. source: "./media/characters/remmyzilla/paw.svg"
  31137. },
  31138. extraAttributes: {
  31139. "toeSize": {
  31140. name: "Toe Size",
  31141. power: 2,
  31142. type: "area",
  31143. base: math.unit(0.0035, "m^2")
  31144. },
  31145. "padSize": {
  31146. name: "Pad Size",
  31147. power: 2,
  31148. type: "area",
  31149. base: math.unit(0.015, "m^2")
  31150. },
  31151. "pawsize": {
  31152. name: "Paw Size",
  31153. power: 2,
  31154. type: "area",
  31155. base: math.unit(0.072, "m^2")
  31156. },
  31157. }
  31158. },
  31159. maw: {
  31160. height: math.unit(1.73, "feet"),
  31161. name: "Maw",
  31162. image: {
  31163. source: "./media/characters/remmyzilla/maw.svg"
  31164. }
  31165. },
  31166. },
  31167. [
  31168. {
  31169. name: "Normal",
  31170. height: math.unit(6 + 4 / 12, "feet")
  31171. },
  31172. {
  31173. name: "Minimacro",
  31174. height: math.unit(12 + 8 / 12, "feet")
  31175. },
  31176. {
  31177. name: "Normal",
  31178. height: math.unit(640, "feet"),
  31179. default: true
  31180. },
  31181. {
  31182. name: "Megamacro",
  31183. height: math.unit(6400, "feet")
  31184. },
  31185. {
  31186. name: "Gigamacro",
  31187. height: math.unit(64000, "miles")
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(2.5, "meters"),
  31196. weight: math.unit(300, "lb"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/lawrence/front.svg",
  31200. extra: 357 / 335,
  31201. bottom: 30 / 387
  31202. }
  31203. },
  31204. back: {
  31205. height: math.unit(2.5, "meters"),
  31206. weight: math.unit(300, "lb"),
  31207. name: "Back",
  31208. image: {
  31209. source: "./media/characters/lawrence/back.svg",
  31210. extra: 357 / 338,
  31211. bottom: 16 / 373
  31212. }
  31213. },
  31214. head: {
  31215. height: math.unit(0.9, "meter"),
  31216. name: "Head",
  31217. image: {
  31218. source: "./media/characters/lawrence/head.svg"
  31219. }
  31220. },
  31221. maw: {
  31222. height: math.unit(0.7, "meter"),
  31223. name: "Maw",
  31224. image: {
  31225. source: "./media/characters/lawrence/maw.svg"
  31226. }
  31227. },
  31228. footBottom: {
  31229. height: math.unit(0.5, "meter"),
  31230. name: "Foot (Bottom)",
  31231. image: {
  31232. source: "./media/characters/lawrence/foot-bottom.svg"
  31233. }
  31234. },
  31235. footTop: {
  31236. height: math.unit(0.5, "meter"),
  31237. name: "Foot (Top)",
  31238. image: {
  31239. source: "./media/characters/lawrence/foot-top.svg"
  31240. }
  31241. },
  31242. },
  31243. [
  31244. {
  31245. name: "Normal",
  31246. height: math.unit(2.5, "meters"),
  31247. default: true
  31248. },
  31249. {
  31250. name: "Macro",
  31251. height: math.unit(95, "meters")
  31252. },
  31253. {
  31254. name: "Megamacro",
  31255. height: math.unit(150, "km")
  31256. },
  31257. ]
  31258. ))
  31259. characterMakers.push(() => makeCharacter(
  31260. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31261. {
  31262. front: {
  31263. height: math.unit(4.2, "meters"),
  31264. preyCapacity: math.unit(50, "m^3"),
  31265. weight: math.unit(30, "tonnes"),
  31266. name: "Front",
  31267. image: {
  31268. source: "./media/characters/sydney/front.svg",
  31269. extra: 1177/1129,
  31270. bottom: 197/1374
  31271. },
  31272. extraAttributes: {
  31273. "length": {
  31274. name: "Length",
  31275. power: 1,
  31276. type: "length",
  31277. base: math.unit(21, "meters")
  31278. },
  31279. }
  31280. },
  31281. },
  31282. [
  31283. {
  31284. name: "Normal",
  31285. height: math.unit(4.2, "meters"),
  31286. default: true
  31287. },
  31288. ]
  31289. ))
  31290. characterMakers.push(() => makeCharacter(
  31291. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31292. {
  31293. back: {
  31294. height: math.unit(201, "feet"),
  31295. name: "Back",
  31296. image: {
  31297. source: "./media/characters/jessica/back.svg",
  31298. extra: 273 / 259,
  31299. bottom: 7 / 280
  31300. }
  31301. },
  31302. },
  31303. [
  31304. {
  31305. name: "Normal",
  31306. height: math.unit(201, "feet"),
  31307. default: true
  31308. },
  31309. {
  31310. name: "Megamacro",
  31311. height: math.unit(8, "miles")
  31312. },
  31313. ]
  31314. ))
  31315. characterMakers.push(() => makeCharacter(
  31316. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31317. {
  31318. side: {
  31319. height: math.unit(5.6, "m"),
  31320. weight: math.unit(8000, "kg"),
  31321. name: "Side",
  31322. image: {
  31323. source: "./media/characters/victoria/side.svg",
  31324. extra: 1542/1229,
  31325. bottom: 124/1666
  31326. }
  31327. },
  31328. maw: {
  31329. height: math.unit(7.14, "feet"),
  31330. name: "Maw",
  31331. image: {
  31332. source: "./media/characters/victoria/maw.svg"
  31333. }
  31334. },
  31335. },
  31336. [
  31337. {
  31338. name: "Normal",
  31339. height: math.unit(5.6, "m"),
  31340. default: true
  31341. },
  31342. ]
  31343. ))
  31344. characterMakers.push(() => makeCharacter(
  31345. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31346. {
  31347. front: {
  31348. height: math.unit(5 + 6 / 12, "feet"),
  31349. name: "Front",
  31350. image: {
  31351. source: "./media/characters/cat/front.svg",
  31352. extra: 1449/1295,
  31353. bottom: 34/1483
  31354. },
  31355. form: "cat",
  31356. default: true
  31357. },
  31358. back: {
  31359. height: math.unit(5 + 6 / 12, "feet"),
  31360. name: "Back",
  31361. image: {
  31362. source: "./media/characters/cat/back.svg",
  31363. extra: 1466/1301,
  31364. bottom: 19/1485
  31365. },
  31366. form: "cat"
  31367. },
  31368. taur: {
  31369. height: math.unit(7, "feet"),
  31370. name: "Taur",
  31371. image: {
  31372. source: "./media/characters/cat/taur.svg",
  31373. extra: 1389/1233,
  31374. bottom: 83/1472
  31375. },
  31376. form: "taur",
  31377. default: true
  31378. },
  31379. lucarioFront: {
  31380. height: math.unit(4, "feet"),
  31381. name: "Lucario (Front)",
  31382. image: {
  31383. source: "./media/characters/cat/lucario-front.svg",
  31384. extra: 1149/1019,
  31385. bottom: 84/1233
  31386. },
  31387. form: "lucario",
  31388. default: true
  31389. },
  31390. lucarioBack: {
  31391. height: math.unit(4, "feet"),
  31392. name: "Lucario (Back)",
  31393. image: {
  31394. source: "./media/characters/cat/lucario-back.svg",
  31395. extra: 1190/1059,
  31396. bottom: 33/1223
  31397. },
  31398. form: "lucario"
  31399. },
  31400. megaLucario: {
  31401. height: math.unit(4, "feet"),
  31402. name: "Mega Lucario",
  31403. image: {
  31404. source: "./media/characters/cat/mega-lucario.svg",
  31405. extra: 1515 / 1319,
  31406. bottom: 63 / 1578
  31407. },
  31408. form: "lucario"
  31409. },
  31410. nickit: {
  31411. height: math.unit(2, "feet"),
  31412. name: "Nickit",
  31413. image: {
  31414. source: "./media/characters/cat/nickit.svg",
  31415. extra: 1980 / 1585,
  31416. bottom: 102 / 2082
  31417. },
  31418. form: "nickit",
  31419. default: true
  31420. },
  31421. lopunnyFront: {
  31422. height: math.unit(5, "feet"),
  31423. name: "Lopunny (Front)",
  31424. image: {
  31425. source: "./media/characters/cat/lopunny-front.svg",
  31426. extra: 1782 / 1469,
  31427. bottom: 38 / 1820
  31428. },
  31429. form: "lopunny",
  31430. default: true
  31431. },
  31432. lopunnyBack: {
  31433. height: math.unit(5, "feet"),
  31434. name: "Lopunny (Back)",
  31435. image: {
  31436. source: "./media/characters/cat/lopunny-back.svg",
  31437. extra: 1660 / 1490,
  31438. bottom: 25 / 1685
  31439. },
  31440. form: "lopunny"
  31441. },
  31442. },
  31443. [
  31444. {
  31445. name: "Really small",
  31446. height: math.unit(1, "nm"),
  31447. allForms: true
  31448. },
  31449. {
  31450. name: "Micro",
  31451. height: math.unit(5, "inches"),
  31452. allForms: true
  31453. },
  31454. {
  31455. name: "Normal",
  31456. height: math.unit(5 + 6 / 12, "feet"),
  31457. default: true,
  31458. form: "cat"
  31459. },
  31460. {
  31461. name: "Normal",
  31462. height: math.unit(7, "feet"),
  31463. default: true,
  31464. form: "taur"
  31465. },
  31466. {
  31467. name: "Normal",
  31468. height: math.unit(4, "feet"),
  31469. default: true,
  31470. form: "lucario"
  31471. },
  31472. {
  31473. name: "Normal",
  31474. height: math.unit(2, "feet"),
  31475. default: true,
  31476. form: "nickit"
  31477. },
  31478. {
  31479. name: "Normal",
  31480. height: math.unit(5, "feet"),
  31481. default: true,
  31482. form: "lopunny"
  31483. },
  31484. {
  31485. name: "Macro",
  31486. height: math.unit(50, "feet"),
  31487. allForms: true
  31488. },
  31489. {
  31490. name: "Macro+",
  31491. height: math.unit(150, "feet"),
  31492. allForms: true
  31493. },
  31494. {
  31495. name: "Megamacro",
  31496. height: math.unit(100, "miles"),
  31497. allForms: true
  31498. },
  31499. ],
  31500. {
  31501. "cat": {
  31502. name: "Cat",
  31503. default: true
  31504. },
  31505. "taur": {
  31506. name: "Taur",
  31507. },
  31508. "lucario": {
  31509. name: "Lucario",
  31510. },
  31511. "nickit": {
  31512. name: "Nickit",
  31513. },
  31514. "lopunny": {
  31515. name: "Lopunny",
  31516. }
  31517. }
  31518. ))
  31519. characterMakers.push(() => makeCharacter(
  31520. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31521. {
  31522. front: {
  31523. height: math.unit(63.4, "meters"),
  31524. weight: math.unit(3.28349e+6, "kilograms"),
  31525. name: "Front",
  31526. image: {
  31527. source: "./media/characters/kirina-violet/front.svg",
  31528. extra: 2812 / 2725,
  31529. bottom: 0 / 2812
  31530. }
  31531. },
  31532. back: {
  31533. height: math.unit(63.4, "meters"),
  31534. weight: math.unit(3.28349e+6, "kilograms"),
  31535. name: "Back",
  31536. image: {
  31537. source: "./media/characters/kirina-violet/back.svg",
  31538. extra: 2812 / 2725,
  31539. bottom: 0 / 2812
  31540. }
  31541. },
  31542. mouth: {
  31543. height: math.unit(4.35, "meters"),
  31544. name: "Mouth",
  31545. image: {
  31546. source: "./media/characters/kirina-violet/mouth.svg"
  31547. }
  31548. },
  31549. paw: {
  31550. height: math.unit(5.6, "meters"),
  31551. name: "Paw",
  31552. image: {
  31553. source: "./media/characters/kirina-violet/paw.svg"
  31554. }
  31555. },
  31556. tail: {
  31557. height: math.unit(18, "meters"),
  31558. name: "Tail",
  31559. image: {
  31560. source: "./media/characters/kirina-violet/tail.svg"
  31561. }
  31562. },
  31563. },
  31564. [
  31565. {
  31566. name: "Macro",
  31567. height: math.unit(63.4, "meters"),
  31568. default: true
  31569. },
  31570. ]
  31571. ))
  31572. characterMakers.push(() => makeCharacter(
  31573. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31574. {
  31575. front: {
  31576. height: math.unit(75, "feet"),
  31577. name: "Front",
  31578. image: {
  31579. source: "./media/characters/cat-gigachu/front.svg",
  31580. extra: 1239/1027,
  31581. bottom: 32/1271
  31582. }
  31583. },
  31584. back: {
  31585. height: math.unit(75, "feet"),
  31586. name: "Back",
  31587. image: {
  31588. source: "./media/characters/cat-gigachu/back.svg",
  31589. extra: 1229/1030,
  31590. bottom: 9/1238
  31591. }
  31592. },
  31593. },
  31594. [
  31595. {
  31596. name: "Dynamax",
  31597. height: math.unit(75, "feet"),
  31598. default: true
  31599. },
  31600. ]
  31601. ))
  31602. characterMakers.push(() => makeCharacter(
  31603. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31604. {
  31605. front: {
  31606. height: math.unit(6, "feet"),
  31607. weight: math.unit(150, "lb"),
  31608. name: "Front",
  31609. image: {
  31610. source: "./media/characters/sfaiyan/front.svg",
  31611. extra: 999 / 978,
  31612. bottom: 5 / 1004
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Normal",
  31619. height: math.unit(1.82, "meters")
  31620. },
  31621. {
  31622. name: "Giant",
  31623. height: math.unit(2.27, "km"),
  31624. default: true
  31625. },
  31626. ]
  31627. ))
  31628. characterMakers.push(() => makeCharacter(
  31629. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31630. {
  31631. front: {
  31632. height: math.unit(179, "cm"),
  31633. weight: math.unit(100, "kg"),
  31634. name: "Front",
  31635. image: {
  31636. source: "./media/characters/raunehkeli/front.svg",
  31637. extra: 1934 / 1926,
  31638. bottom: 0 / 1934
  31639. }
  31640. },
  31641. },
  31642. [
  31643. {
  31644. name: "Normal",
  31645. height: math.unit(179, "cm")
  31646. },
  31647. {
  31648. name: "Maximum",
  31649. height: math.unit(575, "meters"),
  31650. default: true
  31651. },
  31652. ]
  31653. ))
  31654. characterMakers.push(() => makeCharacter(
  31655. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31656. {
  31657. front: {
  31658. height: math.unit(6, "feet"),
  31659. weight: math.unit(150, "lb"),
  31660. name: "Front",
  31661. image: {
  31662. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31663. extra: 2625 / 2518,
  31664. bottom: 60 / 2685
  31665. }
  31666. },
  31667. },
  31668. [
  31669. {
  31670. name: "Normal",
  31671. height: math.unit(6 + 2 / 12, "feet")
  31672. },
  31673. {
  31674. name: "Macro",
  31675. height: math.unit(1180, "feet"),
  31676. default: true
  31677. },
  31678. ]
  31679. ))
  31680. characterMakers.push(() => makeCharacter(
  31681. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31682. {
  31683. front: {
  31684. height: math.unit(5 + 6 / 12, "feet"),
  31685. weight: math.unit(108, "lb"),
  31686. name: "Front",
  31687. image: {
  31688. source: "./media/characters/lilith-zott/front.svg",
  31689. extra: 2510 / 2238,
  31690. bottom: 100 / 2610
  31691. }
  31692. },
  31693. frontDressed: {
  31694. height: math.unit(5 + 6 / 12, "feet"),
  31695. weight: math.unit(108, "lb"),
  31696. name: "Front (Dressed)",
  31697. image: {
  31698. source: "./media/characters/lilith-zott/front-dressed.svg",
  31699. extra: 2510 / 2238,
  31700. bottom: 100 / 2610
  31701. }
  31702. },
  31703. },
  31704. [
  31705. {
  31706. name: "Normal",
  31707. height: math.unit(5 + 6 / 12, "feet")
  31708. },
  31709. {
  31710. name: "Macro",
  31711. height: math.unit(1030, "feet"),
  31712. default: true
  31713. },
  31714. ]
  31715. ))
  31716. characterMakers.push(() => makeCharacter(
  31717. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31718. {
  31719. front: {
  31720. height: math.unit(6, "feet"),
  31721. weight: math.unit(150, "lb"),
  31722. name: "Front",
  31723. image: {
  31724. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31725. extra: 2567 / 2435,
  31726. bottom: 39 / 2606
  31727. }
  31728. },
  31729. frontSuper: {
  31730. height: math.unit(6, "feet"),
  31731. name: "Front (Super)",
  31732. image: {
  31733. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31734. extra: 2567 / 2435,
  31735. bottom: 39 / 2606
  31736. }
  31737. },
  31738. },
  31739. [
  31740. {
  31741. name: "Normal",
  31742. height: math.unit(5 + 10 / 12, "feet")
  31743. },
  31744. {
  31745. name: "Macro",
  31746. height: math.unit(1100, "feet"),
  31747. default: true
  31748. },
  31749. ]
  31750. ))
  31751. characterMakers.push(() => makeCharacter(
  31752. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31753. {
  31754. front: {
  31755. height: math.unit(100, "miles"),
  31756. name: "Front",
  31757. image: {
  31758. source: "./media/characters/sona/front.svg",
  31759. extra: 2433 / 2201,
  31760. bottom: 53 / 2486
  31761. }
  31762. },
  31763. foot: {
  31764. height: math.unit(16.1, "miles"),
  31765. name: "Foot",
  31766. image: {
  31767. source: "./media/characters/sona/foot.svg"
  31768. }
  31769. },
  31770. },
  31771. [
  31772. {
  31773. name: "Macro",
  31774. height: math.unit(100, "miles"),
  31775. default: true
  31776. },
  31777. ]
  31778. ))
  31779. characterMakers.push(() => makeCharacter(
  31780. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31781. {
  31782. front: {
  31783. height: math.unit(6, "feet"),
  31784. weight: math.unit(150, "lb"),
  31785. name: "Front",
  31786. image: {
  31787. source: "./media/characters/bailey/front.svg",
  31788. extra: 1778 / 1724,
  31789. bottom: 30 / 1808
  31790. }
  31791. },
  31792. },
  31793. [
  31794. {
  31795. name: "Micro",
  31796. height: math.unit(4, "inches")
  31797. },
  31798. {
  31799. name: "Normal",
  31800. height: math.unit(5 + 5 / 12, "feet"),
  31801. default: true
  31802. },
  31803. {
  31804. name: "Macro",
  31805. height: math.unit(250, "feet")
  31806. },
  31807. {
  31808. name: "Megamacro",
  31809. height: math.unit(100, "miles")
  31810. },
  31811. ]
  31812. ))
  31813. characterMakers.push(() => makeCharacter(
  31814. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31815. {
  31816. front: {
  31817. height: math.unit(5 + 2 / 12, "feet"),
  31818. weight: math.unit(120, "lb"),
  31819. name: "Front",
  31820. image: {
  31821. source: "./media/characters/snaps/front.svg",
  31822. extra: 2370 / 2177,
  31823. bottom: 48 / 2418
  31824. }
  31825. },
  31826. back: {
  31827. height: math.unit(5 + 2 / 12, "feet"),
  31828. weight: math.unit(120, "lb"),
  31829. name: "Back",
  31830. image: {
  31831. source: "./media/characters/snaps/back.svg",
  31832. extra: 2408 / 2258,
  31833. bottom: 15 / 2423
  31834. }
  31835. },
  31836. },
  31837. [
  31838. {
  31839. name: "Micro",
  31840. height: math.unit(9, "inches")
  31841. },
  31842. {
  31843. name: "Normal",
  31844. height: math.unit(5 + 2 / 12, "feet"),
  31845. default: true
  31846. },
  31847. {
  31848. name: "Mini Macro",
  31849. height: math.unit(10, "feet")
  31850. },
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31855. {
  31856. front: {
  31857. height: math.unit(1.8, "meters"),
  31858. weight: math.unit(85, "kg"),
  31859. name: "Front",
  31860. image: {
  31861. source: "./media/characters/azteck/front.svg",
  31862. extra: 2815 / 2625,
  31863. bottom: 89 / 2904
  31864. }
  31865. },
  31866. back: {
  31867. height: math.unit(1.8, "meters"),
  31868. weight: math.unit(85, "kg"),
  31869. name: "Back",
  31870. image: {
  31871. source: "./media/characters/azteck/back.svg",
  31872. extra: 2856 / 2648,
  31873. bottom: 85 / 2941
  31874. }
  31875. },
  31876. frontDressed: {
  31877. height: math.unit(1.8, "meters"),
  31878. weight: math.unit(85, "kg"),
  31879. name: "Front (Dressed)",
  31880. image: {
  31881. source: "./media/characters/azteck/front-dressed.svg",
  31882. extra: 2147 / 2003,
  31883. bottom: 68 / 2215
  31884. }
  31885. },
  31886. head: {
  31887. height: math.unit(0.47, "meters"),
  31888. weight: math.unit(85, "kg"),
  31889. name: "Head",
  31890. image: {
  31891. source: "./media/characters/azteck/head.svg"
  31892. }
  31893. },
  31894. },
  31895. [
  31896. {
  31897. name: "Bite sized",
  31898. height: math.unit(16, "cm")
  31899. },
  31900. {
  31901. name: "Normal",
  31902. height: math.unit(1.8, "meters"),
  31903. default: true
  31904. },
  31905. ]
  31906. ))
  31907. characterMakers.push(() => makeCharacter(
  31908. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31909. {
  31910. front: {
  31911. height: math.unit(6, "feet"),
  31912. weight: math.unit(150, "lb"),
  31913. name: "Front",
  31914. image: {
  31915. source: "./media/characters/pidge/front.svg",
  31916. extra: 1936/1820,
  31917. bottom: 0/1936
  31918. }
  31919. },
  31920. back: {
  31921. height: math.unit(6, "feet"),
  31922. weight: math.unit(150, "lb"),
  31923. name: "Back",
  31924. image: {
  31925. source: "./media/characters/pidge/back.svg",
  31926. extra: 1938/1843,
  31927. bottom: 0/1938
  31928. }
  31929. },
  31930. casual: {
  31931. height: math.unit(6, "feet"),
  31932. weight: math.unit(150, "lb"),
  31933. name: "Casual",
  31934. image: {
  31935. source: "./media/characters/pidge/casual.svg",
  31936. extra: 1936/1820,
  31937. bottom: 0/1936
  31938. }
  31939. },
  31940. tech: {
  31941. height: math.unit(6, "feet"),
  31942. weight: math.unit(150, "lb"),
  31943. name: "Tech",
  31944. image: {
  31945. source: "./media/characters/pidge/tech.svg",
  31946. extra: 1802/1682,
  31947. bottom: 0/1802
  31948. }
  31949. },
  31950. head: {
  31951. height: math.unit(1.61, "feet"),
  31952. name: "Head",
  31953. image: {
  31954. source: "./media/characters/pidge/head.svg"
  31955. }
  31956. },
  31957. collar: {
  31958. height: math.unit(0.82, "feet"),
  31959. name: "Collar",
  31960. image: {
  31961. source: "./media/characters/pidge/collar.svg"
  31962. }
  31963. },
  31964. },
  31965. [
  31966. {
  31967. name: "Macro",
  31968. height: math.unit(2, "mile"),
  31969. default: true
  31970. },
  31971. {
  31972. name: "PUPPY",
  31973. height: math.unit(20, "miles")
  31974. },
  31975. ]
  31976. ))
  31977. characterMakers.push(() => makeCharacter(
  31978. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31979. {
  31980. front: {
  31981. height: math.unit(6, "feet"),
  31982. weight: math.unit(150, "lb"),
  31983. name: "Front",
  31984. image: {
  31985. source: "./media/characters/en/front.svg",
  31986. extra: 1697 / 1563,
  31987. bottom: 103 / 1800
  31988. }
  31989. },
  31990. back: {
  31991. height: math.unit(6, "feet"),
  31992. weight: math.unit(150, "lb"),
  31993. name: "Back",
  31994. image: {
  31995. source: "./media/characters/en/back.svg",
  31996. extra: 1700 / 1570,
  31997. bottom: 51 / 1751
  31998. }
  31999. },
  32000. frontDressed: {
  32001. height: math.unit(6, "feet"),
  32002. weight: math.unit(150, "lb"),
  32003. name: "Front (Dressed)",
  32004. image: {
  32005. source: "./media/characters/en/front-dressed.svg",
  32006. extra: 1697 / 1563,
  32007. bottom: 103 / 1800
  32008. }
  32009. },
  32010. backDressed: {
  32011. height: math.unit(6, "feet"),
  32012. weight: math.unit(150, "lb"),
  32013. name: "Back (Dressed)",
  32014. image: {
  32015. source: "./media/characters/en/back-dressed.svg",
  32016. extra: 1700 / 1570,
  32017. bottom: 51 / 1751
  32018. }
  32019. },
  32020. },
  32021. [
  32022. {
  32023. name: "Macro",
  32024. height: math.unit(210, "feet"),
  32025. default: true
  32026. },
  32027. ]
  32028. ))
  32029. characterMakers.push(() => makeCharacter(
  32030. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32031. {
  32032. front: {
  32033. height: math.unit(6, "feet"),
  32034. weight: math.unit(150, "lb"),
  32035. name: "Front",
  32036. image: {
  32037. source: "./media/characters/haze-orris/front.svg",
  32038. extra: 3975 / 3525,
  32039. bottom: 137 / 4112
  32040. }
  32041. },
  32042. },
  32043. [
  32044. {
  32045. name: "Micro",
  32046. height: math.unit(150, "mm"),
  32047. default: true
  32048. },
  32049. ]
  32050. ))
  32051. characterMakers.push(() => makeCharacter(
  32052. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32053. {
  32054. front: {
  32055. height: math.unit(6, "feet"),
  32056. weight: math.unit(150, "lb"),
  32057. name: "Front",
  32058. image: {
  32059. source: "./media/characters/casselene-yaro/front.svg",
  32060. extra: 4721 / 4541,
  32061. bottom: 82 / 4803
  32062. }
  32063. },
  32064. back: {
  32065. height: math.unit(6, "feet"),
  32066. weight: math.unit(150, "lb"),
  32067. name: "Back",
  32068. image: {
  32069. source: "./media/characters/casselene-yaro/back.svg",
  32070. extra: 4569 / 4377,
  32071. bottom: 69 / 4638
  32072. }
  32073. },
  32074. dressed: {
  32075. height: math.unit(6, "feet"),
  32076. weight: math.unit(150, "lb"),
  32077. name: "Dressed",
  32078. image: {
  32079. source: "./media/characters/casselene-yaro/dressed.svg",
  32080. extra: 4721 / 4541,
  32081. bottom: 82 / 4803
  32082. }
  32083. },
  32084. maw: {
  32085. height: math.unit(1, "feet"),
  32086. name: "Maw",
  32087. image: {
  32088. source: "./media/characters/casselene-yaro/maw.svg"
  32089. }
  32090. },
  32091. },
  32092. [
  32093. {
  32094. name: "Macro",
  32095. height: math.unit(190, "feet"),
  32096. default: true
  32097. },
  32098. ]
  32099. ))
  32100. characterMakers.push(() => makeCharacter(
  32101. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32102. {
  32103. front: {
  32104. height: math.unit(10, "feet"),
  32105. weight: math.unit(15015, "lb"),
  32106. name: "Front",
  32107. image: {
  32108. source: "./media/characters/platine/front.svg",
  32109. extra: 1741/1650,
  32110. bottom: 84/1825
  32111. }
  32112. },
  32113. side: {
  32114. height: math.unit(10, "feet"),
  32115. weight: math.unit(15015, "lb"),
  32116. name: "Side",
  32117. image: {
  32118. source: "./media/characters/platine/side.svg",
  32119. extra: 1790/1705,
  32120. bottom: 29/1819
  32121. }
  32122. },
  32123. },
  32124. [
  32125. {
  32126. name: "Normal",
  32127. height: math.unit(10, "feet"),
  32128. default: true
  32129. },
  32130. {
  32131. name: "Macro",
  32132. height: math.unit(100, "feet")
  32133. },
  32134. {
  32135. name: "Megamacro",
  32136. height: math.unit(1000, "feet")
  32137. },
  32138. ]
  32139. ))
  32140. characterMakers.push(() => makeCharacter(
  32141. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32142. {
  32143. front: {
  32144. height: math.unit(15 + 5 / 12, "feet"),
  32145. weight: math.unit(4600, "lb"),
  32146. name: "Front",
  32147. image: {
  32148. source: "./media/characters/neapolitan-ananassa/front.svg",
  32149. extra: 2903 / 2736,
  32150. bottom: 0 / 2903
  32151. }
  32152. },
  32153. side: {
  32154. height: math.unit(15 + 5 / 12, "feet"),
  32155. weight: math.unit(4600, "lb"),
  32156. name: "Side",
  32157. image: {
  32158. source: "./media/characters/neapolitan-ananassa/side.svg",
  32159. extra: 2925 / 2719,
  32160. bottom: 0 / 2925
  32161. }
  32162. },
  32163. back: {
  32164. height: math.unit(15 + 5 / 12, "feet"),
  32165. weight: math.unit(4600, "lb"),
  32166. name: "Back",
  32167. image: {
  32168. source: "./media/characters/neapolitan-ananassa/back.svg",
  32169. extra: 2903 / 2736,
  32170. bottom: 0 / 2903
  32171. }
  32172. },
  32173. },
  32174. [
  32175. {
  32176. name: "Normal",
  32177. height: math.unit(15 + 5 / 12, "feet"),
  32178. default: true
  32179. },
  32180. {
  32181. name: "Post-Millenium",
  32182. height: math.unit(35 + 5 / 12, "feet")
  32183. },
  32184. {
  32185. name: "Post-Era",
  32186. height: math.unit(450 + 5 / 12, "feet")
  32187. },
  32188. ]
  32189. ))
  32190. characterMakers.push(() => makeCharacter(
  32191. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32192. {
  32193. front: {
  32194. height: math.unit(300, "meters"),
  32195. weight: math.unit(125000, "tonnes"),
  32196. name: "Front",
  32197. image: {
  32198. source: "./media/characters/pazuzu/front.svg",
  32199. extra: 877 / 794,
  32200. bottom: 47 / 924
  32201. }
  32202. },
  32203. },
  32204. [
  32205. {
  32206. name: "Macro",
  32207. height: math.unit(300, "meters"),
  32208. default: true
  32209. },
  32210. ]
  32211. ))
  32212. characterMakers.push(() => makeCharacter(
  32213. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32214. {
  32215. side: {
  32216. height: math.unit(10 + 7 / 12, "feet"),
  32217. weight: math.unit(2.5, "tons"),
  32218. name: "Side",
  32219. image: {
  32220. source: "./media/characters/aasha/side.svg",
  32221. extra: 1345 / 1245,
  32222. bottom: 111 / 1456
  32223. }
  32224. },
  32225. back: {
  32226. height: math.unit(10 + 7 / 12, "feet"),
  32227. weight: math.unit(2.5, "tons"),
  32228. name: "Back",
  32229. image: {
  32230. source: "./media/characters/aasha/back.svg",
  32231. extra: 1133 / 1057,
  32232. bottom: 257 / 1390
  32233. }
  32234. },
  32235. },
  32236. [
  32237. {
  32238. name: "Normal",
  32239. height: math.unit(10 + 7 / 12, "feet"),
  32240. default: true
  32241. },
  32242. ]
  32243. ))
  32244. characterMakers.push(() => makeCharacter(
  32245. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32246. {
  32247. front: {
  32248. height: math.unit(6 + 3 / 12, "feet"),
  32249. name: "Front",
  32250. image: {
  32251. source: "./media/characters/nevan/front.svg",
  32252. extra: 704 / 704,
  32253. bottom: 28 / 732
  32254. }
  32255. },
  32256. back: {
  32257. height: math.unit(6 + 3 / 12, "feet"),
  32258. name: "Back",
  32259. image: {
  32260. source: "./media/characters/nevan/back.svg",
  32261. extra: 714 / 714,
  32262. bottom: 21 / 735
  32263. }
  32264. },
  32265. frontFlaccid: {
  32266. height: math.unit(6 + 3 / 12, "feet"),
  32267. name: "Front (Flaccid)",
  32268. image: {
  32269. source: "./media/characters/nevan/front-flaccid.svg",
  32270. extra: 704 / 704,
  32271. bottom: 28 / 732
  32272. }
  32273. },
  32274. frontErect: {
  32275. height: math.unit(6 + 3 / 12, "feet"),
  32276. name: "Front (Erect)",
  32277. image: {
  32278. source: "./media/characters/nevan/front-erect.svg",
  32279. extra: 704 / 704,
  32280. bottom: 28 / 732
  32281. }
  32282. },
  32283. backFlaccid: {
  32284. height: math.unit(6 + 3 / 12, "feet"),
  32285. name: "Back (Flaccid)",
  32286. image: {
  32287. source: "./media/characters/nevan/back-flaccid.svg",
  32288. extra: 714 / 714,
  32289. bottom: 21 / 735
  32290. }
  32291. },
  32292. },
  32293. [
  32294. {
  32295. name: "Normal",
  32296. height: math.unit(6 + 3 / 12, "feet"),
  32297. default: true
  32298. },
  32299. ]
  32300. ))
  32301. characterMakers.push(() => makeCharacter(
  32302. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32303. {
  32304. front: {
  32305. height: math.unit(4, "feet"),
  32306. name: "Front",
  32307. image: {
  32308. source: "./media/characters/arhan/front.svg",
  32309. extra: 3368 / 3133,
  32310. bottom: 0 / 3368
  32311. }
  32312. },
  32313. side: {
  32314. height: math.unit(4, "feet"),
  32315. name: "Side",
  32316. image: {
  32317. source: "./media/characters/arhan/side.svg",
  32318. extra: 3347 / 3105,
  32319. bottom: 0 / 3347
  32320. }
  32321. },
  32322. tongue: {
  32323. height: math.unit(1.42, "feet"),
  32324. name: "Tongue",
  32325. image: {
  32326. source: "./media/characters/arhan/tongue.svg"
  32327. }
  32328. },
  32329. head: {
  32330. height: math.unit(0.85, "feet"),
  32331. name: "Head",
  32332. image: {
  32333. source: "./media/characters/arhan/head.svg"
  32334. }
  32335. },
  32336. },
  32337. [
  32338. {
  32339. name: "Normal",
  32340. height: math.unit(4, "feet"),
  32341. default: true
  32342. },
  32343. ]
  32344. ))
  32345. characterMakers.push(() => makeCharacter(
  32346. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32347. {
  32348. front: {
  32349. height: math.unit(5 + 7.5 / 12, "feet"),
  32350. weight: math.unit(120, "lb"),
  32351. name: "Front",
  32352. image: {
  32353. source: "./media/characters/digi-duncan/front.svg",
  32354. extra: 330 / 326,
  32355. bottom: 16 / 346
  32356. }
  32357. },
  32358. side: {
  32359. height: math.unit(5 + 7.5 / 12, "feet"),
  32360. weight: math.unit(120, "lb"),
  32361. name: "Side",
  32362. image: {
  32363. source: "./media/characters/digi-duncan/side.svg",
  32364. extra: 341 / 337,
  32365. bottom: 1 / 342
  32366. }
  32367. },
  32368. back: {
  32369. height: math.unit(5 + 7.5 / 12, "feet"),
  32370. weight: math.unit(120, "lb"),
  32371. name: "Back",
  32372. image: {
  32373. source: "./media/characters/digi-duncan/back.svg",
  32374. extra: 330 / 326,
  32375. bottom: 12 / 342
  32376. }
  32377. },
  32378. },
  32379. [
  32380. {
  32381. name: "Speck",
  32382. height: math.unit(0.25, "mm")
  32383. },
  32384. {
  32385. name: "Micro",
  32386. height: math.unit(5, "mm")
  32387. },
  32388. {
  32389. name: "Tiny",
  32390. height: math.unit(0.5, "inches"),
  32391. default: true
  32392. },
  32393. {
  32394. name: "Human",
  32395. height: math.unit(5 + 7.5 / 12, "feet")
  32396. },
  32397. {
  32398. name: "Minigiant",
  32399. height: math.unit(8 + 5.25, "feet")
  32400. },
  32401. {
  32402. name: "Giant",
  32403. height: math.unit(2000, "feet")
  32404. },
  32405. {
  32406. name: "Mega",
  32407. height: math.unit(371.1, "miles")
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32413. {
  32414. front: {
  32415. height: math.unit(2, "meters"),
  32416. weight: math.unit(350, "kg"),
  32417. name: "Front",
  32418. image: {
  32419. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32420. extra: 898 / 838,
  32421. bottom: 9 / 907
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Micro",
  32428. height: math.unit(8, "meters")
  32429. },
  32430. {
  32431. name: "Normal",
  32432. height: math.unit(50, "meters"),
  32433. default: true
  32434. },
  32435. {
  32436. name: "Macro",
  32437. height: math.unit(500, "meters")
  32438. },
  32439. ]
  32440. ))
  32441. characterMakers.push(() => makeCharacter(
  32442. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32443. {
  32444. front: {
  32445. height: math.unit(6 + 6 / 12, "feet"),
  32446. name: "Front",
  32447. image: {
  32448. source: "./media/characters/khardesh/front.svg",
  32449. extra: 1788/1596,
  32450. bottom: 66/1854
  32451. }
  32452. },
  32453. back: {
  32454. height: math.unit(6 + 6 / 12, "feet"),
  32455. name: "Back",
  32456. image: {
  32457. source: "./media/characters/khardesh/back.svg",
  32458. extra: 1781/1584,
  32459. bottom: 68/1849
  32460. }
  32461. },
  32462. },
  32463. [
  32464. {
  32465. name: "Normal",
  32466. height: math.unit(6 + 6 / 12, "feet"),
  32467. default: true
  32468. },
  32469. {
  32470. name: "Normal+",
  32471. height: math.unit(4, "meters")
  32472. },
  32473. {
  32474. name: "Macro",
  32475. height: math.unit(50, "meters")
  32476. },
  32477. {
  32478. name: "Macro+",
  32479. height: math.unit(100, "meters")
  32480. },
  32481. {
  32482. name: "Megamacro",
  32483. height: math.unit(20, "km")
  32484. },
  32485. ]
  32486. ))
  32487. characterMakers.push(() => makeCharacter(
  32488. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32489. {
  32490. front: {
  32491. height: math.unit(6, "feet"),
  32492. weight: math.unit(150, "lb"),
  32493. name: "Front",
  32494. image: {
  32495. source: "./media/characters/kosho/front.svg",
  32496. extra: 1847 / 1847,
  32497. bottom: 86 / 1933
  32498. }
  32499. },
  32500. },
  32501. [
  32502. {
  32503. name: "Second-stage micro",
  32504. height: math.unit(0.5, "inches")
  32505. },
  32506. {
  32507. name: "First-stage micro",
  32508. height: math.unit(6, "inches")
  32509. },
  32510. {
  32511. name: "Normal",
  32512. height: math.unit(6, "feet"),
  32513. default: true
  32514. },
  32515. {
  32516. name: "First-stage macro",
  32517. height: math.unit(72, "feet")
  32518. },
  32519. {
  32520. name: "Second-stage macro",
  32521. height: math.unit(864, "feet")
  32522. },
  32523. ]
  32524. ))
  32525. characterMakers.push(() => makeCharacter(
  32526. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32527. {
  32528. normal: {
  32529. height: math.unit(4 + 6 / 12, "feet"),
  32530. name: "Normal",
  32531. image: {
  32532. source: "./media/characters/hydra/normal.svg",
  32533. extra: 2833 / 2634,
  32534. bottom: 68 / 2901
  32535. }
  32536. },
  32537. smol: {
  32538. height: math.unit(0.705, "inches"),
  32539. name: "Smol",
  32540. image: {
  32541. source: "./media/characters/hydra/smol.svg",
  32542. extra: 2715 / 2540,
  32543. bottom: 0 / 2715
  32544. }
  32545. },
  32546. },
  32547. [
  32548. {
  32549. name: "Normal",
  32550. height: math.unit(4 + 6 / 12, "feet"),
  32551. default: true
  32552. }
  32553. ]
  32554. ))
  32555. characterMakers.push(() => makeCharacter(
  32556. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32557. {
  32558. front: {
  32559. height: math.unit(0.6, "cm"),
  32560. name: "Front",
  32561. image: {
  32562. source: "./media/characters/daz/front.svg",
  32563. extra: 1682 / 1164,
  32564. bottom: 42 / 1724
  32565. }
  32566. },
  32567. },
  32568. [
  32569. {
  32570. name: "Normal",
  32571. height: math.unit(0.6, "cm"),
  32572. default: true
  32573. },
  32574. ]
  32575. ))
  32576. characterMakers.push(() => makeCharacter(
  32577. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32578. {
  32579. front: {
  32580. height: math.unit(6, "feet"),
  32581. weight: math.unit(235, "lb"),
  32582. name: "Front",
  32583. image: {
  32584. source: "./media/characters/theo-pangolin/front.svg",
  32585. extra: 1996 / 1969,
  32586. bottom: 115 / 2111
  32587. }
  32588. },
  32589. back: {
  32590. height: math.unit(6, "feet"),
  32591. weight: math.unit(235, "lb"),
  32592. name: "Back",
  32593. image: {
  32594. source: "./media/characters/theo-pangolin/back.svg",
  32595. extra: 1979 / 1979,
  32596. bottom: 40 / 2019
  32597. }
  32598. },
  32599. feral: {
  32600. height: math.unit(2, "feet"),
  32601. weight: math.unit(30, "lb"),
  32602. name: "Feral",
  32603. image: {
  32604. source: "./media/characters/theo-pangolin/feral.svg",
  32605. extra: 803 / 791,
  32606. bottom: 181 / 984
  32607. }
  32608. },
  32609. footFive: {
  32610. height: math.unit(1.43, "feet"),
  32611. name: "Foot (Five Toes)",
  32612. image: {
  32613. source: "./media/characters/theo-pangolin/foot-five.svg"
  32614. }
  32615. },
  32616. footFour: {
  32617. height: math.unit(1.43, "feet"),
  32618. name: "Foot (Four Toes)",
  32619. image: {
  32620. source: "./media/characters/theo-pangolin/foot-four.svg"
  32621. }
  32622. },
  32623. handFour: {
  32624. height: math.unit(0.81, "feet"),
  32625. name: "Hand (Four Fingers)",
  32626. image: {
  32627. source: "./media/characters/theo-pangolin/hand-four.svg"
  32628. }
  32629. },
  32630. handThree: {
  32631. height: math.unit(0.81, "feet"),
  32632. name: "Hand (Three Fingers)",
  32633. image: {
  32634. source: "./media/characters/theo-pangolin/hand-three.svg"
  32635. }
  32636. },
  32637. headFront: {
  32638. height: math.unit(1.37, "feet"),
  32639. name: "Head (Front)",
  32640. image: {
  32641. source: "./media/characters/theo-pangolin/head-front.svg"
  32642. }
  32643. },
  32644. headSide: {
  32645. height: math.unit(1.43, "feet"),
  32646. name: "Head (Side)",
  32647. image: {
  32648. source: "./media/characters/theo-pangolin/head-side.svg"
  32649. }
  32650. },
  32651. tongue: {
  32652. height: math.unit(2.29, "feet"),
  32653. name: "Tongue",
  32654. image: {
  32655. source: "./media/characters/theo-pangolin/tongue.svg"
  32656. }
  32657. },
  32658. },
  32659. [
  32660. {
  32661. name: "Normal",
  32662. height: math.unit(6, "feet")
  32663. },
  32664. {
  32665. name: "Macro",
  32666. height: math.unit(400, "feet"),
  32667. default: true
  32668. },
  32669. ]
  32670. ))
  32671. characterMakers.push(() => makeCharacter(
  32672. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32673. {
  32674. front: {
  32675. height: math.unit(6, "inches"),
  32676. weight: math.unit(0.036, "kg"),
  32677. name: "Front",
  32678. image: {
  32679. source: "./media/characters/renée/front.svg",
  32680. extra: 900 / 886,
  32681. bottom: 8 / 908
  32682. }
  32683. },
  32684. },
  32685. [
  32686. {
  32687. name: "Nano",
  32688. height: math.unit(1, "nm")
  32689. },
  32690. {
  32691. name: "Micro",
  32692. height: math.unit(1, "mm")
  32693. },
  32694. {
  32695. name: "Normal",
  32696. height: math.unit(6, "inches")
  32697. },
  32698. {
  32699. name: "Macro",
  32700. height: math.unit(2000, "feet"),
  32701. default: true
  32702. },
  32703. {
  32704. name: "Megamacro",
  32705. height: math.unit(2, "km")
  32706. },
  32707. {
  32708. name: "Gigamacro",
  32709. height: math.unit(2000, "km")
  32710. },
  32711. {
  32712. name: "Teramacro",
  32713. height: math.unit(250000, "km")
  32714. },
  32715. ]
  32716. ))
  32717. characterMakers.push(() => makeCharacter(
  32718. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32719. {
  32720. front: {
  32721. height: math.unit(4, "meters"),
  32722. weight: math.unit(150, "kg"),
  32723. name: "Front",
  32724. image: {
  32725. source: "./media/characters/caledvwlch/front.svg",
  32726. extra: 1757/1537,
  32727. bottom: 31/1788
  32728. }
  32729. },
  32730. side: {
  32731. height: math.unit(4, "meters"),
  32732. weight: math.unit(150, "kg"),
  32733. name: "Side",
  32734. image: {
  32735. source: "./media/characters/caledvwlch/side.svg",
  32736. extra: 1605 / 1536,
  32737. bottom: 31 / 1636
  32738. }
  32739. },
  32740. back: {
  32741. height: math.unit(4, "meters"),
  32742. weight: math.unit(150, "kg"),
  32743. name: "Back",
  32744. image: {
  32745. source: "./media/characters/caledvwlch/back.svg",
  32746. extra: 1635 / 1565,
  32747. bottom: 27 / 1662
  32748. }
  32749. },
  32750. },
  32751. [
  32752. {
  32753. name: "\"Incognito\"",
  32754. height: math.unit(4, "meters")
  32755. },
  32756. {
  32757. name: "Small rampage",
  32758. height: math.unit(600, "meters")
  32759. },
  32760. {
  32761. name: "Mega",
  32762. height: math.unit(30, "km")
  32763. },
  32764. {
  32765. name: "Home-size",
  32766. height: math.unit(50, "km"),
  32767. default: true
  32768. },
  32769. {
  32770. name: "Giga",
  32771. height: math.unit(300, "km")
  32772. },
  32773. {
  32774. name: "Lounging",
  32775. height: math.unit(11000, "km")
  32776. },
  32777. {
  32778. name: "Planet snacking",
  32779. height: math.unit(2000000, "km")
  32780. },
  32781. ]
  32782. ))
  32783. characterMakers.push(() => makeCharacter(
  32784. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32785. {
  32786. front: {
  32787. height: math.unit(6, "feet"),
  32788. weight: math.unit(215, "lb"),
  32789. name: "Front",
  32790. image: {
  32791. source: "./media/characters/sapphire-svell/front.svg",
  32792. extra: 495 / 455,
  32793. bottom: 20 / 515
  32794. }
  32795. },
  32796. back: {
  32797. height: math.unit(6, "feet"),
  32798. weight: math.unit(216, "lb"),
  32799. name: "Back",
  32800. image: {
  32801. source: "./media/characters/sapphire-svell/back.svg",
  32802. extra: 497 / 477,
  32803. bottom: 7 / 504
  32804. }
  32805. },
  32806. maw: {
  32807. height: math.unit(1.57, "feet"),
  32808. name: "Maw",
  32809. image: {
  32810. source: "./media/characters/sapphire-svell/maw.svg"
  32811. }
  32812. },
  32813. foot: {
  32814. height: math.unit(1.07, "feet"),
  32815. name: "Foot",
  32816. image: {
  32817. source: "./media/characters/sapphire-svell/foot.svg"
  32818. }
  32819. },
  32820. toering: {
  32821. height: math.unit(1.7, "inch"),
  32822. name: "Toering",
  32823. image: {
  32824. source: "./media/characters/sapphire-svell/toering.svg"
  32825. }
  32826. },
  32827. },
  32828. [
  32829. {
  32830. name: "Normal",
  32831. height: math.unit(300, "feet"),
  32832. default: true
  32833. },
  32834. {
  32835. name: "Augmented",
  32836. height: math.unit(1250, "feet")
  32837. },
  32838. {
  32839. name: "Unleashed",
  32840. height: math.unit(3000, "feet")
  32841. },
  32842. ]
  32843. ))
  32844. characterMakers.push(() => makeCharacter(
  32845. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32846. {
  32847. side: {
  32848. height: math.unit(2 + 3 / 12, "feet"),
  32849. weight: math.unit(110, "lb"),
  32850. name: "Side",
  32851. image: {
  32852. source: "./media/characters/glitch-flux/side.svg",
  32853. extra: 997 / 805,
  32854. bottom: 20 / 1017
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Normal",
  32861. height: math.unit(2 + 3 / 12, "feet"),
  32862. default: true
  32863. },
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32868. {
  32869. front: {
  32870. height: math.unit(4, "meters"),
  32871. name: "Front",
  32872. image: {
  32873. source: "./media/characters/mid/front.svg",
  32874. extra: 507 / 476,
  32875. bottom: 17 / 524
  32876. }
  32877. },
  32878. back: {
  32879. height: math.unit(4, "meters"),
  32880. name: "Back",
  32881. image: {
  32882. source: "./media/characters/mid/back.svg",
  32883. extra: 519 / 487,
  32884. bottom: 7 / 526
  32885. }
  32886. },
  32887. stuck: {
  32888. height: math.unit(2.2, "meters"),
  32889. name: "Stuck",
  32890. image: {
  32891. source: "./media/characters/mid/stuck.svg",
  32892. extra: 1951 / 1869,
  32893. bottom: 88 / 2039
  32894. }
  32895. }
  32896. },
  32897. [
  32898. {
  32899. name: "Normal",
  32900. height: math.unit(4, "meters"),
  32901. default: true
  32902. },
  32903. {
  32904. name: "Big",
  32905. height: math.unit(10, "meters")
  32906. },
  32907. {
  32908. name: "Macro",
  32909. height: math.unit(800, "meters")
  32910. },
  32911. {
  32912. name: "Megamacro",
  32913. height: math.unit(100, "km")
  32914. },
  32915. {
  32916. name: "Overgrown",
  32917. height: math.unit(1, "parsec")
  32918. },
  32919. ]
  32920. ))
  32921. characterMakers.push(() => makeCharacter(
  32922. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32923. {
  32924. front: {
  32925. height: math.unit(2.5, "meters"),
  32926. weight: math.unit(225, "kg"),
  32927. name: "Front",
  32928. image: {
  32929. source: "./media/characters/iris/front.svg",
  32930. extra: 3348 / 3251,
  32931. bottom: 205 / 3553
  32932. }
  32933. },
  32934. maw: {
  32935. height: math.unit(0.56, "meter"),
  32936. name: "Maw",
  32937. image: {
  32938. source: "./media/characters/iris/maw.svg"
  32939. }
  32940. },
  32941. },
  32942. [
  32943. {
  32944. name: "Mewter cat",
  32945. height: math.unit(1.2, "meters")
  32946. },
  32947. {
  32948. name: "Normal",
  32949. height: math.unit(2.5, "meters"),
  32950. default: true
  32951. },
  32952. {
  32953. name: "Minimacro",
  32954. height: math.unit(18, "feet")
  32955. },
  32956. {
  32957. name: "Macro",
  32958. height: math.unit(140, "feet")
  32959. },
  32960. {
  32961. name: "Macro+",
  32962. height: math.unit(180, "meters")
  32963. },
  32964. {
  32965. name: "Megamacro",
  32966. height: math.unit(2746, "meters")
  32967. },
  32968. ]
  32969. ))
  32970. characterMakers.push(() => makeCharacter(
  32971. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32972. {
  32973. front: {
  32974. height: math.unit(6, "feet"),
  32975. weight: math.unit(135, "lb"),
  32976. name: "Front",
  32977. image: {
  32978. source: "./media/characters/axel/front.svg",
  32979. extra: 908 / 908,
  32980. bottom: 58 / 966
  32981. }
  32982. },
  32983. side: {
  32984. height: math.unit(6, "feet"),
  32985. weight: math.unit(135, "lb"),
  32986. name: "Side",
  32987. image: {
  32988. source: "./media/characters/axel/side.svg",
  32989. extra: 958 / 958,
  32990. bottom: 11 / 969
  32991. }
  32992. },
  32993. back: {
  32994. height: math.unit(6, "feet"),
  32995. weight: math.unit(135, "lb"),
  32996. name: "Back",
  32997. image: {
  32998. source: "./media/characters/axel/back.svg",
  32999. extra: 887 / 887,
  33000. bottom: 34 / 921
  33001. }
  33002. },
  33003. head: {
  33004. height: math.unit(1.07, "feet"),
  33005. name: "Head",
  33006. image: {
  33007. source: "./media/characters/axel/head.svg"
  33008. }
  33009. },
  33010. beak: {
  33011. height: math.unit(1.4, "feet"),
  33012. name: "Beak",
  33013. image: {
  33014. source: "./media/characters/axel/beak.svg"
  33015. }
  33016. },
  33017. beakSide: {
  33018. height: math.unit(1.4, "feet"),
  33019. name: "Beak Side",
  33020. image: {
  33021. source: "./media/characters/axel/beak-side.svg"
  33022. }
  33023. },
  33024. sheath: {
  33025. height: math.unit(0.5, "feet"),
  33026. name: "Sheath",
  33027. image: {
  33028. source: "./media/characters/axel/sheath.svg"
  33029. }
  33030. },
  33031. dick: {
  33032. height: math.unit(0.98, "feet"),
  33033. name: "Dick",
  33034. image: {
  33035. source: "./media/characters/axel/dick.svg"
  33036. }
  33037. },
  33038. },
  33039. [
  33040. {
  33041. name: "Macro",
  33042. height: math.unit(68, "meters"),
  33043. default: true
  33044. },
  33045. ]
  33046. ))
  33047. characterMakers.push(() => makeCharacter(
  33048. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33049. {
  33050. front: {
  33051. height: math.unit(3.5, "meters"),
  33052. weight: math.unit(1200, "kg"),
  33053. name: "Front",
  33054. image: {
  33055. source: "./media/characters/joanna/front.svg",
  33056. extra: 1596 / 1488,
  33057. bottom: 29 / 1625
  33058. }
  33059. },
  33060. back: {
  33061. height: math.unit(3.5, "meters"),
  33062. weight: math.unit(1200, "kg"),
  33063. name: "Back",
  33064. image: {
  33065. source: "./media/characters/joanna/back.svg",
  33066. extra: 1594 / 1495,
  33067. bottom: 26 / 1620
  33068. }
  33069. },
  33070. frontShorts: {
  33071. height: math.unit(3.5, "meters"),
  33072. weight: math.unit(1200, "kg"),
  33073. name: "Front (Shorts)",
  33074. image: {
  33075. source: "./media/characters/joanna/front-shorts.svg",
  33076. extra: 1596 / 1488,
  33077. bottom: 29 / 1625
  33078. }
  33079. },
  33080. frontBiker: {
  33081. height: math.unit(3.5, "meters"),
  33082. weight: math.unit(1200, "kg"),
  33083. name: "Front (Biker)",
  33084. image: {
  33085. source: "./media/characters/joanna/front-biker.svg",
  33086. extra: 1596 / 1488,
  33087. bottom: 29 / 1625
  33088. }
  33089. },
  33090. backBiker: {
  33091. height: math.unit(3.5, "meters"),
  33092. weight: math.unit(1200, "kg"),
  33093. name: "Back (Biker)",
  33094. image: {
  33095. source: "./media/characters/joanna/back-biker.svg",
  33096. extra: 1594 / 1495,
  33097. bottom: 88 / 1682
  33098. }
  33099. },
  33100. bikeLeft: {
  33101. height: math.unit(2.4, "meters"),
  33102. weight: math.unit(1600, "kg"),
  33103. name: "Bike (Left)",
  33104. image: {
  33105. source: "./media/characters/joanna/bike-left.svg",
  33106. extra: 720 / 720,
  33107. bottom: 8 / 728
  33108. }
  33109. },
  33110. bikeRight: {
  33111. height: math.unit(2.4, "meters"),
  33112. weight: math.unit(1600, "kg"),
  33113. name: "Bike (Right)",
  33114. image: {
  33115. source: "./media/characters/joanna/bike-right.svg",
  33116. extra: 720 / 720,
  33117. bottom: 8 / 728
  33118. }
  33119. },
  33120. },
  33121. [
  33122. {
  33123. name: "Incognito",
  33124. height: math.unit(3.5, "meters")
  33125. },
  33126. {
  33127. name: "Casual Big",
  33128. height: math.unit(200, "meters")
  33129. },
  33130. {
  33131. name: "Macro",
  33132. height: math.unit(600, "meters")
  33133. },
  33134. {
  33135. name: "Original",
  33136. height: math.unit(20, "km"),
  33137. default: true
  33138. },
  33139. {
  33140. name: "Giga",
  33141. height: math.unit(400, "km")
  33142. },
  33143. {
  33144. name: "Lounging",
  33145. height: math.unit(1500, "km")
  33146. },
  33147. {
  33148. name: "Planetary",
  33149. height: math.unit(200000, "km")
  33150. },
  33151. ]
  33152. ))
  33153. characterMakers.push(() => makeCharacter(
  33154. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33155. {
  33156. front: {
  33157. height: math.unit(6, "feet"),
  33158. weight: math.unit(150, "lb"),
  33159. name: "Front",
  33160. image: {
  33161. source: "./media/characters/hugo-sigil/front.svg",
  33162. extra: 522 / 500,
  33163. bottom: 2 / 524
  33164. }
  33165. },
  33166. back: {
  33167. height: math.unit(6, "feet"),
  33168. weight: math.unit(150, "lb"),
  33169. name: "Back",
  33170. image: {
  33171. source: "./media/characters/hugo-sigil/back.svg",
  33172. extra: 519 / 495,
  33173. bottom: 5 / 524
  33174. }
  33175. },
  33176. maw: {
  33177. height: math.unit(1.4, "feet"),
  33178. weight: math.unit(150, "lb"),
  33179. name: "Maw",
  33180. image: {
  33181. source: "./media/characters/hugo-sigil/maw.svg"
  33182. }
  33183. },
  33184. feet: {
  33185. height: math.unit(1.56, "feet"),
  33186. weight: math.unit(150, "lb"),
  33187. name: "Feet",
  33188. image: {
  33189. source: "./media/characters/hugo-sigil/feet.svg",
  33190. extra: 177 / 177,
  33191. bottom: 12 / 189
  33192. }
  33193. },
  33194. },
  33195. [
  33196. {
  33197. name: "Normal",
  33198. height: math.unit(6, "feet")
  33199. },
  33200. {
  33201. name: "Macro",
  33202. height: math.unit(200, "feet"),
  33203. default: true
  33204. },
  33205. ]
  33206. ))
  33207. characterMakers.push(() => makeCharacter(
  33208. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33209. {
  33210. front: {
  33211. height: math.unit(6, "feet"),
  33212. weight: math.unit(150, "lb"),
  33213. name: "Front",
  33214. image: {
  33215. source: "./media/characters/peri/front.svg",
  33216. extra: 2354 / 2233,
  33217. bottom: 49 / 2403
  33218. }
  33219. },
  33220. },
  33221. [
  33222. {
  33223. name: "Really Small",
  33224. height: math.unit(1, "nm")
  33225. },
  33226. {
  33227. name: "Micro",
  33228. height: math.unit(4, "inches")
  33229. },
  33230. {
  33231. name: "Normal",
  33232. height: math.unit(7, "inches"),
  33233. default: true
  33234. },
  33235. {
  33236. name: "Macro",
  33237. height: math.unit(400, "feet")
  33238. },
  33239. {
  33240. name: "Megamacro",
  33241. height: math.unit(100, "miles")
  33242. },
  33243. ]
  33244. ))
  33245. characterMakers.push(() => makeCharacter(
  33246. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33247. {
  33248. frontSlim: {
  33249. height: math.unit(7, "feet"),
  33250. name: "Front (Slim)",
  33251. image: {
  33252. source: "./media/characters/issilora/front-slim.svg",
  33253. extra: 529 / 449,
  33254. bottom: 53 / 582
  33255. }
  33256. },
  33257. sideSlim: {
  33258. height: math.unit(7, "feet"),
  33259. name: "Side (Slim)",
  33260. image: {
  33261. source: "./media/characters/issilora/side-slim.svg",
  33262. extra: 570 / 480,
  33263. bottom: 30 / 600
  33264. }
  33265. },
  33266. backSlim: {
  33267. height: math.unit(7, "feet"),
  33268. name: "Back (Slim)",
  33269. image: {
  33270. source: "./media/characters/issilora/back-slim.svg",
  33271. extra: 537 / 455,
  33272. bottom: 46 / 583
  33273. }
  33274. },
  33275. frontBuff: {
  33276. height: math.unit(7, "feet"),
  33277. name: "Front (Buff)",
  33278. image: {
  33279. source: "./media/characters/issilora/front-buff.svg",
  33280. extra: 2310 / 2035,
  33281. bottom: 335 / 2645
  33282. }
  33283. },
  33284. head: {
  33285. height: math.unit(1.94, "feet"),
  33286. name: "Head",
  33287. image: {
  33288. source: "./media/characters/issilora/head.svg"
  33289. }
  33290. },
  33291. },
  33292. [
  33293. {
  33294. name: "Minimum",
  33295. height: math.unit(7, "feet")
  33296. },
  33297. {
  33298. name: "Comfortable",
  33299. height: math.unit(17, "feet")
  33300. },
  33301. {
  33302. name: "Fun Size",
  33303. height: math.unit(47, "feet")
  33304. },
  33305. {
  33306. name: "Natural Macro",
  33307. height: math.unit(137, "feet"),
  33308. default: true
  33309. },
  33310. {
  33311. name: "Maximum Kaiju",
  33312. height: math.unit(397, "feet")
  33313. },
  33314. ]
  33315. ))
  33316. characterMakers.push(() => makeCharacter(
  33317. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33318. {
  33319. front: {
  33320. height: math.unit(50 + 9/12, "feet"),
  33321. weight: math.unit(32.8, "tons"),
  33322. name: "Front",
  33323. image: {
  33324. source: "./media/characters/irb'iiritaahn/front.svg",
  33325. extra: 1878/1826,
  33326. bottom: 326/2204
  33327. }
  33328. },
  33329. back: {
  33330. height: math.unit(50 + 9/12, "feet"),
  33331. weight: math.unit(32.8, "tons"),
  33332. name: "Back",
  33333. image: {
  33334. source: "./media/characters/irb'iiritaahn/back.svg",
  33335. extra: 2052/2018,
  33336. bottom: 152/2204
  33337. }
  33338. },
  33339. head: {
  33340. height: math.unit(12.86, "feet"),
  33341. name: "Head",
  33342. image: {
  33343. source: "./media/characters/irb'iiritaahn/head.svg"
  33344. }
  33345. },
  33346. maw: {
  33347. height: math.unit(9.66, "feet"),
  33348. name: "Maw",
  33349. image: {
  33350. source: "./media/characters/irb'iiritaahn/maw.svg"
  33351. }
  33352. },
  33353. frontDick: {
  33354. height: math.unit(8.78461, "feet"),
  33355. name: "Front Dick",
  33356. image: {
  33357. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33358. }
  33359. },
  33360. rearDick: {
  33361. height: math.unit(8.78461, "feet"),
  33362. name: "Rear Dick",
  33363. image: {
  33364. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33365. }
  33366. },
  33367. rearDickUnfolded: {
  33368. height: math.unit(8.78, "feet"),
  33369. name: "Rear Dick (Unfolded)",
  33370. image: {
  33371. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33372. }
  33373. },
  33374. wings: {
  33375. height: math.unit(43, "feet"),
  33376. name: "Wings",
  33377. image: {
  33378. source: "./media/characters/irb'iiritaahn/wings.svg"
  33379. }
  33380. },
  33381. },
  33382. [
  33383. {
  33384. name: "Macro",
  33385. height: math.unit(50 + 9/12, "feet"),
  33386. default: true
  33387. },
  33388. ]
  33389. ))
  33390. characterMakers.push(() => makeCharacter(
  33391. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33392. {
  33393. front: {
  33394. height: math.unit(205, "cm"),
  33395. weight: math.unit(102, "kg"),
  33396. name: "Front",
  33397. image: {
  33398. source: "./media/characters/irbisgreif/front.svg",
  33399. extra: 785/706,
  33400. bottom: 13/798
  33401. }
  33402. },
  33403. back: {
  33404. height: math.unit(205, "cm"),
  33405. weight: math.unit(102, "kg"),
  33406. name: "Back",
  33407. image: {
  33408. source: "./media/characters/irbisgreif/back.svg",
  33409. extra: 713/701,
  33410. bottom: 26/739
  33411. }
  33412. },
  33413. frontDressed: {
  33414. height: math.unit(216, "cm"),
  33415. weight: math.unit(102, "kg"),
  33416. name: "Front-dressed",
  33417. image: {
  33418. source: "./media/characters/irbisgreif/front-dressed.svg",
  33419. extra: 902/776,
  33420. bottom: 14/916
  33421. }
  33422. },
  33423. sideDressed: {
  33424. height: math.unit(195, "cm"),
  33425. weight: math.unit(102, "kg"),
  33426. name: "Side-dressed",
  33427. image: {
  33428. source: "./media/characters/irbisgreif/side-dressed.svg",
  33429. extra: 788/688,
  33430. bottom: 21/809
  33431. }
  33432. },
  33433. backDressed: {
  33434. height: math.unit(216, "cm"),
  33435. weight: math.unit(102, "kg"),
  33436. name: "Back-dressed",
  33437. image: {
  33438. source: "./media/characters/irbisgreif/back-dressed.svg",
  33439. extra: 901/783,
  33440. bottom: 10/911
  33441. }
  33442. },
  33443. dick: {
  33444. height: math.unit(0.49, "feet"),
  33445. name: "Dick",
  33446. image: {
  33447. source: "./media/characters/irbisgreif/dick.svg"
  33448. }
  33449. },
  33450. wingTop: {
  33451. height: math.unit(1.93 , "feet"),
  33452. name: "Wing-top",
  33453. image: {
  33454. source: "./media/characters/irbisgreif/wing-top.svg"
  33455. }
  33456. },
  33457. wingBottom: {
  33458. height: math.unit(1.93 , "feet"),
  33459. name: "Wing-bottom",
  33460. image: {
  33461. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33462. }
  33463. },
  33464. },
  33465. [
  33466. {
  33467. name: "Normal",
  33468. height: math.unit(216, "cm"),
  33469. default: true
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33475. {
  33476. front: {
  33477. height: math.unit(6, "feet"),
  33478. weight: math.unit(150, "lb"),
  33479. name: "Front",
  33480. image: {
  33481. source: "./media/characters/pride/front.svg",
  33482. extra: 1299/1230,
  33483. bottom: 18/1317
  33484. }
  33485. },
  33486. },
  33487. [
  33488. {
  33489. name: "Normal",
  33490. height: math.unit(7, "feet")
  33491. },
  33492. {
  33493. name: "Mini-macro",
  33494. height: math.unit(11, "feet")
  33495. },
  33496. {
  33497. name: "Macro",
  33498. height: math.unit(15, "meters"),
  33499. default: true
  33500. },
  33501. {
  33502. name: "Macro+",
  33503. height: math.unit(40, "meters")
  33504. },
  33505. ]
  33506. ))
  33507. characterMakers.push(() => makeCharacter(
  33508. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33509. {
  33510. front: {
  33511. height: math.unit(4 + 2 / 12, "feet"),
  33512. weight: math.unit(95, "lb"),
  33513. name: "Front",
  33514. image: {
  33515. source: "./media/characters/vaelophis-nyx/front.svg",
  33516. extra: 2532/2330,
  33517. bottom: 0/2532
  33518. }
  33519. },
  33520. back: {
  33521. height: math.unit(4 + 2 / 12, "feet"),
  33522. weight: math.unit(95, "lb"),
  33523. name: "Back",
  33524. image: {
  33525. source: "./media/characters/vaelophis-nyx/back.svg",
  33526. extra: 2484/2361,
  33527. bottom: 0/2484
  33528. }
  33529. },
  33530. feralSide: {
  33531. height: math.unit(2 + 1/12, "feet"),
  33532. weight: math.unit(20, "lb"),
  33533. name: "Feral (Side)",
  33534. image: {
  33535. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33536. extra: 1721/1581,
  33537. bottom: 70/1791
  33538. }
  33539. },
  33540. feralLazing: {
  33541. height: math.unit(1.08, "feet"),
  33542. weight: math.unit(20, "lb"),
  33543. name: "Feral (Lazing)",
  33544. image: {
  33545. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33546. extra: 822/822,
  33547. bottom: 248/1070
  33548. }
  33549. },
  33550. ear: {
  33551. height: math.unit(0.416, "feet"),
  33552. name: "Ear",
  33553. image: {
  33554. source: "./media/characters/vaelophis-nyx/ear.svg"
  33555. }
  33556. },
  33557. eye: {
  33558. height: math.unit(0.0748, "feet"),
  33559. name: "Eye",
  33560. image: {
  33561. source: "./media/characters/vaelophis-nyx/eye.svg"
  33562. }
  33563. },
  33564. mouth: {
  33565. height: math.unit(0.378, "feet"),
  33566. name: "Mouth",
  33567. image: {
  33568. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33569. }
  33570. },
  33571. spade: {
  33572. height: math.unit(0.55, "feet"),
  33573. name: "Spade",
  33574. image: {
  33575. source: "./media/characters/vaelophis-nyx/spade.svg"
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(4 + 2/12, "feet"),
  33583. default: true
  33584. },
  33585. ]
  33586. ))
  33587. characterMakers.push(() => makeCharacter(
  33588. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33589. {
  33590. front: {
  33591. height: math.unit(7, "feet"),
  33592. weight: math.unit(231, "lb"),
  33593. name: "Front",
  33594. image: {
  33595. source: "./media/characters/flux/front.svg",
  33596. extra: 919/871,
  33597. bottom: 0/919
  33598. }
  33599. },
  33600. back: {
  33601. height: math.unit(7, "feet"),
  33602. weight: math.unit(231, "lb"),
  33603. name: "Back",
  33604. image: {
  33605. source: "./media/characters/flux/back.svg",
  33606. extra: 1040/992,
  33607. bottom: 0/1040
  33608. }
  33609. },
  33610. frontDressed: {
  33611. height: math.unit(7, "feet"),
  33612. weight: math.unit(231, "lb"),
  33613. name: "Front (Dressed)",
  33614. image: {
  33615. source: "./media/characters/flux/front-dressed.svg",
  33616. extra: 919/871,
  33617. bottom: 0/919
  33618. }
  33619. },
  33620. feralSide: {
  33621. height: math.unit(5, "feet"),
  33622. weight: math.unit(150, "lb"),
  33623. name: "Feral (Side)",
  33624. image: {
  33625. source: "./media/characters/flux/feral-side.svg",
  33626. extra: 598/528,
  33627. bottom: 28/626
  33628. }
  33629. },
  33630. head: {
  33631. height: math.unit(1.585, "feet"),
  33632. name: "Head",
  33633. image: {
  33634. source: "./media/characters/flux/head.svg"
  33635. }
  33636. },
  33637. headSide: {
  33638. height: math.unit(1.74, "feet"),
  33639. name: "Head (Side)",
  33640. image: {
  33641. source: "./media/characters/flux/head-side.svg"
  33642. }
  33643. },
  33644. headSideFire: {
  33645. height: math.unit(1.76, "feet"),
  33646. name: "Head (Side, Fire)",
  33647. image: {
  33648. source: "./media/characters/flux/head-side-fire.svg"
  33649. }
  33650. },
  33651. },
  33652. [
  33653. {
  33654. name: "Normal",
  33655. height: math.unit(7, "feet"),
  33656. default: true
  33657. },
  33658. ]
  33659. ))
  33660. characterMakers.push(() => makeCharacter(
  33661. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33662. {
  33663. front: {
  33664. height: math.unit(9, "feet"),
  33665. weight: math.unit(1012, "lb"),
  33666. name: "Front",
  33667. image: {
  33668. source: "./media/characters/ulfra-lupae/front.svg",
  33669. extra: 1083/1011,
  33670. bottom: 67/1150
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Micro",
  33677. height: math.unit(6, "inches")
  33678. },
  33679. {
  33680. name: "Socializing",
  33681. height: math.unit(6 + 5/12, "feet")
  33682. },
  33683. {
  33684. name: "Normal",
  33685. height: math.unit(9, "feet"),
  33686. default: true
  33687. },
  33688. {
  33689. name: "Macro",
  33690. height: math.unit(150, "feet")
  33691. },
  33692. ]
  33693. ))
  33694. characterMakers.push(() => makeCharacter(
  33695. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33696. {
  33697. front: {
  33698. height: math.unit(5 + 2/12, "feet"),
  33699. weight: math.unit(120, "lb"),
  33700. name: "Front",
  33701. image: {
  33702. source: "./media/characters/timber/front.svg",
  33703. extra: 2814/2705,
  33704. bottom: 181/2995
  33705. }
  33706. },
  33707. },
  33708. [
  33709. {
  33710. name: "Normal",
  33711. height: math.unit(5 + 2/12, "feet"),
  33712. default: true
  33713. },
  33714. ]
  33715. ))
  33716. characterMakers.push(() => makeCharacter(
  33717. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33718. {
  33719. front: {
  33720. height: math.unit(9, "feet"),
  33721. name: "Front",
  33722. image: {
  33723. source: "./media/characters/nicki/front.svg",
  33724. extra: 1240/990,
  33725. bottom: 45/1285
  33726. },
  33727. form: "anthro",
  33728. default: true
  33729. },
  33730. side: {
  33731. height: math.unit(9, "feet"),
  33732. name: "Side",
  33733. image: {
  33734. source: "./media/characters/nicki/side.svg",
  33735. extra: 1047/973,
  33736. bottom: 61/1108
  33737. },
  33738. form: "anthro"
  33739. },
  33740. back: {
  33741. height: math.unit(9, "feet"),
  33742. name: "Back",
  33743. image: {
  33744. source: "./media/characters/nicki/back.svg",
  33745. extra: 1006/965,
  33746. bottom: 39/1045
  33747. },
  33748. form: "anthro"
  33749. },
  33750. taur: {
  33751. height: math.unit(15, "feet"),
  33752. name: "Taur",
  33753. image: {
  33754. source: "./media/characters/nicki/taur.svg",
  33755. extra: 1592/1347,
  33756. bottom: 0/1592
  33757. },
  33758. form: "taur",
  33759. default: true
  33760. },
  33761. },
  33762. [
  33763. {
  33764. name: "Normal",
  33765. height: math.unit(9, "feet"),
  33766. form: "anthro",
  33767. default: true
  33768. },
  33769. {
  33770. name: "Normal",
  33771. height: math.unit(15, "feet"),
  33772. form: "taur",
  33773. default: true
  33774. }
  33775. ],
  33776. {
  33777. "anthro": {
  33778. name: "Anthro",
  33779. default: true
  33780. },
  33781. "taur": {
  33782. name: "Taur"
  33783. }
  33784. }
  33785. ))
  33786. characterMakers.push(() => makeCharacter(
  33787. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33788. {
  33789. front: {
  33790. height: math.unit(7 + 10/12, "feet"),
  33791. weight: math.unit(3.5, "tons"),
  33792. name: "Front",
  33793. image: {
  33794. source: "./media/characters/lee/front.svg",
  33795. extra: 1773/1615,
  33796. bottom: 86/1859
  33797. }
  33798. },
  33799. hand: {
  33800. height: math.unit(1.78, "feet"),
  33801. name: "Hand",
  33802. image: {
  33803. source: "./media/characters/lee/hand.svg"
  33804. }
  33805. },
  33806. maw: {
  33807. height: math.unit(1.18, "feet"),
  33808. name: "Maw",
  33809. image: {
  33810. source: "./media/characters/lee/maw.svg"
  33811. }
  33812. },
  33813. },
  33814. [
  33815. {
  33816. name: "Normal",
  33817. height: math.unit(7 + 10/12, "feet"),
  33818. default: true
  33819. },
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33824. {
  33825. front: {
  33826. height: math.unit(9, "feet"),
  33827. name: "Front",
  33828. image: {
  33829. source: "./media/characters/guti/front.svg",
  33830. extra: 4551/4355,
  33831. bottom: 123/4674
  33832. }
  33833. },
  33834. tongue: {
  33835. height: math.unit(1, "feet"),
  33836. name: "Tongue",
  33837. image: {
  33838. source: "./media/characters/guti/tongue.svg"
  33839. }
  33840. },
  33841. paw: {
  33842. height: math.unit(1.18, "feet"),
  33843. name: "Paw",
  33844. image: {
  33845. source: "./media/characters/guti/paw.svg"
  33846. }
  33847. },
  33848. },
  33849. [
  33850. {
  33851. name: "Normal",
  33852. height: math.unit(9, "feet"),
  33853. default: true
  33854. },
  33855. ]
  33856. ))
  33857. characterMakers.push(() => makeCharacter(
  33858. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33859. {
  33860. side: {
  33861. height: math.unit(5, "meters"),
  33862. name: "Side",
  33863. image: {
  33864. source: "./media/characters/vesper/side.svg",
  33865. extra: 1605/1518,
  33866. bottom: 0/1605
  33867. }
  33868. },
  33869. },
  33870. [
  33871. {
  33872. name: "Small",
  33873. height: math.unit(5, "meters")
  33874. },
  33875. {
  33876. name: "Sage",
  33877. height: math.unit(100, "meters"),
  33878. default: true
  33879. },
  33880. {
  33881. name: "Fun Size",
  33882. height: math.unit(600, "meters")
  33883. },
  33884. {
  33885. name: "Goddess",
  33886. height: math.unit(20000, "km")
  33887. },
  33888. {
  33889. name: "Maximum",
  33890. height: math.unit(5, "galaxies")
  33891. },
  33892. ]
  33893. ))
  33894. characterMakers.push(() => makeCharacter(
  33895. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33896. {
  33897. front: {
  33898. height: math.unit(6 + 3/12, "feet"),
  33899. weight: math.unit(190, "lb"),
  33900. name: "Front",
  33901. image: {
  33902. source: "./media/characters/gawain/front.svg",
  33903. extra: 2222/2139,
  33904. bottom: 90/2312
  33905. }
  33906. },
  33907. back: {
  33908. height: math.unit(6 + 3/12, "feet"),
  33909. weight: math.unit(190, "lb"),
  33910. name: "Back",
  33911. image: {
  33912. source: "./media/characters/gawain/back.svg",
  33913. extra: 2199/2111,
  33914. bottom: 73/2272
  33915. }
  33916. },
  33917. },
  33918. [
  33919. {
  33920. name: "Normal",
  33921. height: math.unit(6 + 3/12, "feet"),
  33922. default: true
  33923. },
  33924. ]
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33928. {
  33929. side: {
  33930. height: math.unit(3.5, "meters"),
  33931. weight: math.unit(16000, "lb"),
  33932. name: "Side",
  33933. image: {
  33934. source: "./media/characters/dascalti/side.svg",
  33935. extra: 392/273,
  33936. bottom: 47/439
  33937. }
  33938. },
  33939. breath: {
  33940. height: math.unit(7.4, "feet"),
  33941. name: "Breath",
  33942. image: {
  33943. source: "./media/characters/dascalti/breath.svg"
  33944. }
  33945. },
  33946. fed: {
  33947. height: math.unit(3.6, "meters"),
  33948. weight: math.unit(16000, "lb"),
  33949. name: "Fed",
  33950. image: {
  33951. source: "./media/characters/dascalti/fed.svg",
  33952. extra: 1419/820,
  33953. bottom: 95/1514
  33954. }
  33955. },
  33956. },
  33957. [
  33958. {
  33959. name: "Normal",
  33960. height: math.unit(3.5, "meters"),
  33961. default: true
  33962. },
  33963. ]
  33964. ))
  33965. characterMakers.push(() => makeCharacter(
  33966. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33967. {
  33968. front: {
  33969. height: math.unit(3 + 5/12, "feet"),
  33970. name: "Front",
  33971. image: {
  33972. source: "./media/characters/mauve/front.svg",
  33973. extra: 1126/1033,
  33974. bottom: 65/1191
  33975. }
  33976. },
  33977. side: {
  33978. height: math.unit(3 + 5/12, "feet"),
  33979. name: "Side",
  33980. image: {
  33981. source: "./media/characters/mauve/side.svg",
  33982. extra: 1089/1001,
  33983. bottom: 29/1118
  33984. }
  33985. },
  33986. back: {
  33987. height: math.unit(3 + 5/12, "feet"),
  33988. name: "Back",
  33989. image: {
  33990. source: "./media/characters/mauve/back.svg",
  33991. extra: 1173/1053,
  33992. bottom: 109/1282
  33993. }
  33994. },
  33995. },
  33996. [
  33997. {
  33998. name: "Normal",
  33999. height: math.unit(3 + 5/12, "feet"),
  34000. default: true
  34001. },
  34002. ]
  34003. ))
  34004. characterMakers.push(() => makeCharacter(
  34005. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34006. {
  34007. front: {
  34008. height: math.unit(6 + 3/12, "feet"),
  34009. weight: math.unit(430, "lb"),
  34010. name: "Front",
  34011. image: {
  34012. source: "./media/characters/carlos/front.svg",
  34013. extra: 1964/1913,
  34014. bottom: 70/2034
  34015. }
  34016. },
  34017. },
  34018. [
  34019. {
  34020. name: "Normal",
  34021. height: math.unit(6 + 3/12, "feet"),
  34022. default: true
  34023. },
  34024. ]
  34025. ))
  34026. characterMakers.push(() => makeCharacter(
  34027. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34028. {
  34029. back: {
  34030. height: math.unit(5 + 10/12, "feet"),
  34031. weight: math.unit(200, "lb"),
  34032. name: "Back",
  34033. image: {
  34034. source: "./media/characters/jax/back.svg",
  34035. extra: 764/739,
  34036. bottom: 25/789
  34037. }
  34038. },
  34039. },
  34040. [
  34041. {
  34042. name: "Normal",
  34043. height: math.unit(5 + 10/12, "feet"),
  34044. default: true
  34045. },
  34046. ]
  34047. ))
  34048. characterMakers.push(() => makeCharacter(
  34049. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34050. {
  34051. front: {
  34052. height: math.unit(8, "feet"),
  34053. weight: math.unit(250, "lb"),
  34054. name: "Front",
  34055. image: {
  34056. source: "./media/characters/eikthynir/front.svg",
  34057. extra: 1332/1166,
  34058. bottom: 82/1414
  34059. }
  34060. },
  34061. back: {
  34062. height: math.unit(8, "feet"),
  34063. weight: math.unit(250, "lb"),
  34064. name: "Back",
  34065. image: {
  34066. source: "./media/characters/eikthynir/back.svg",
  34067. extra: 1342/1190,
  34068. bottom: 19/1361
  34069. }
  34070. },
  34071. dick: {
  34072. height: math.unit(2.35, "feet"),
  34073. name: "Dick",
  34074. image: {
  34075. source: "./media/characters/eikthynir/dick.svg"
  34076. }
  34077. },
  34078. },
  34079. [
  34080. {
  34081. name: "Normal",
  34082. height: math.unit(8, "feet"),
  34083. default: true
  34084. },
  34085. ]
  34086. ))
  34087. characterMakers.push(() => makeCharacter(
  34088. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34089. {
  34090. front: {
  34091. height: math.unit(99, "meters"),
  34092. weight: math.unit(13000, "tons"),
  34093. name: "Front",
  34094. image: {
  34095. source: "./media/characters/zlmos/front.svg",
  34096. extra: 2202/1992,
  34097. bottom: 315/2517
  34098. }
  34099. },
  34100. },
  34101. [
  34102. {
  34103. name: "Macro",
  34104. height: math.unit(99, "meters"),
  34105. default: true
  34106. },
  34107. ]
  34108. ))
  34109. characterMakers.push(() => makeCharacter(
  34110. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34111. {
  34112. front: {
  34113. height: math.unit(6 + 5/12, "feet"),
  34114. name: "Front",
  34115. image: {
  34116. source: "./media/characters/purri/front.svg",
  34117. extra: 1698/1610,
  34118. bottom: 32/1730
  34119. }
  34120. },
  34121. frontAlt: {
  34122. height: math.unit(6 + 5/12, "feet"),
  34123. name: "Front (Alt)",
  34124. image: {
  34125. source: "./media/characters/purri/front-alt.svg",
  34126. extra: 450/420,
  34127. bottom: 26/476
  34128. }
  34129. },
  34130. boots: {
  34131. height: math.unit(5.5, "feet"),
  34132. name: "Boots",
  34133. image: {
  34134. source: "./media/characters/purri/boots.svg",
  34135. extra: 905/853,
  34136. bottom: 18/923
  34137. },
  34138. extraAttributes: {
  34139. "shoeSize": {
  34140. name: "Shoe Size",
  34141. power: 1,
  34142. type: "length",
  34143. base: math.unit(12, "ShoeSizeMensUS")
  34144. },
  34145. "platformHeight": {
  34146. name: "Platform Height",
  34147. power: 1,
  34148. type: "length",
  34149. base: math.unit(2, "inches")
  34150. },
  34151. }
  34152. },
  34153. lying: {
  34154. height: math.unit(2, "feet"),
  34155. name: "Lying",
  34156. image: {
  34157. source: "./media/characters/purri/lying.svg",
  34158. extra: 940/843,
  34159. bottom: 146/1086
  34160. }
  34161. },
  34162. devious: {
  34163. height: math.unit(1.77, "feet"),
  34164. name: "Devious",
  34165. image: {
  34166. source: "./media/characters/purri/devious.svg",
  34167. extra: 1440/1155,
  34168. bottom: 147/1587
  34169. }
  34170. },
  34171. bean: {
  34172. height: math.unit(1.94, "feet"),
  34173. name: "Bean",
  34174. image: {
  34175. source: "./media/characters/purri/bean.svg"
  34176. }
  34177. },
  34178. },
  34179. [
  34180. {
  34181. name: "Micro",
  34182. height: math.unit(1, "mm")
  34183. },
  34184. {
  34185. name: "Normal",
  34186. height: math.unit(6 + 5/12, "feet"),
  34187. default: true
  34188. },
  34189. {
  34190. name: "Macro :3c",
  34191. height: math.unit(2, "miles")
  34192. },
  34193. ]
  34194. ))
  34195. characterMakers.push(() => makeCharacter(
  34196. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34197. {
  34198. front: {
  34199. height: math.unit(6 + 2/12, "feet"),
  34200. weight: math.unit(250, "lb"),
  34201. name: "Front",
  34202. image: {
  34203. source: "./media/characters/moonlight/front.svg",
  34204. extra: 1044/908,
  34205. bottom: 56/1100
  34206. }
  34207. },
  34208. feral: {
  34209. height: math.unit(3 + 1/12, "feet"),
  34210. weight: math.unit(50, "kg"),
  34211. name: "Feral",
  34212. image: {
  34213. source: "./media/characters/moonlight/feral.svg",
  34214. extra: 3705/2791,
  34215. bottom: 145/3850
  34216. }
  34217. },
  34218. paw: {
  34219. height: math.unit(1, "feet"),
  34220. name: "Paw",
  34221. image: {
  34222. source: "./media/characters/moonlight/paw.svg"
  34223. }
  34224. },
  34225. paws: {
  34226. height: math.unit(0.98, "feet"),
  34227. name: "Paws",
  34228. image: {
  34229. source: "./media/characters/moonlight/paws.svg",
  34230. extra: 939/939,
  34231. bottom: 50/989
  34232. }
  34233. },
  34234. mouth: {
  34235. height: math.unit(0.48, "feet"),
  34236. name: "Mouth",
  34237. image: {
  34238. source: "./media/characters/moonlight/mouth.svg"
  34239. }
  34240. },
  34241. dick: {
  34242. height: math.unit(1.46, "feet"),
  34243. name: "Dick",
  34244. image: {
  34245. source: "./media/characters/moonlight/dick.svg"
  34246. }
  34247. },
  34248. },
  34249. [
  34250. {
  34251. name: "Normal",
  34252. height: math.unit(6 + 2/12, "feet"),
  34253. default: true
  34254. },
  34255. {
  34256. name: "Macro",
  34257. height: math.unit(300, "feet")
  34258. },
  34259. {
  34260. name: "Macro+",
  34261. height: math.unit(1, "mile")
  34262. },
  34263. {
  34264. name: "Mt. Moon",
  34265. height: math.unit(5, "miles")
  34266. },
  34267. {
  34268. name: "Megamacro",
  34269. height: math.unit(15, "miles")
  34270. },
  34271. ]
  34272. ))
  34273. characterMakers.push(() => makeCharacter(
  34274. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34275. {
  34276. back: {
  34277. height: math.unit(6, "feet"),
  34278. weight: math.unit(150, "lb"),
  34279. name: "Back",
  34280. image: {
  34281. source: "./media/characters/sylen/back.svg",
  34282. extra: 1335/1273,
  34283. bottom: 107/1442
  34284. }
  34285. },
  34286. },
  34287. [
  34288. {
  34289. name: "Normal",
  34290. height: math.unit(5 + 5/12, "feet")
  34291. },
  34292. {
  34293. name: "Megamacro",
  34294. height: math.unit(3, "miles"),
  34295. default: true
  34296. },
  34297. ]
  34298. ))
  34299. characterMakers.push(() => makeCharacter(
  34300. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34301. {
  34302. front: {
  34303. height: math.unit(6, "feet"),
  34304. weight: math.unit(190, "lb"),
  34305. name: "Front",
  34306. image: {
  34307. source: "./media/characters/huttser/front.svg",
  34308. extra: 1152/1058,
  34309. bottom: 23/1175
  34310. }
  34311. },
  34312. side: {
  34313. height: math.unit(6, "feet"),
  34314. weight: math.unit(190, "lb"),
  34315. name: "Side",
  34316. image: {
  34317. source: "./media/characters/huttser/side.svg",
  34318. extra: 1174/1065,
  34319. bottom: 18/1192
  34320. }
  34321. },
  34322. back: {
  34323. height: math.unit(6, "feet"),
  34324. weight: math.unit(190, "lb"),
  34325. name: "Back",
  34326. image: {
  34327. source: "./media/characters/huttser/back.svg",
  34328. extra: 1158/1056,
  34329. bottom: 12/1170
  34330. }
  34331. },
  34332. },
  34333. [
  34334. ]
  34335. ))
  34336. characterMakers.push(() => makeCharacter(
  34337. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34338. {
  34339. side: {
  34340. height: math.unit(12 + 9/12, "feet"),
  34341. weight: math.unit(15000, "lb"),
  34342. name: "Side",
  34343. image: {
  34344. source: "./media/characters/faan/side.svg",
  34345. extra: 2747/2697,
  34346. bottom: 0/2747
  34347. }
  34348. },
  34349. front: {
  34350. height: math.unit(12 + 9/12, "feet"),
  34351. weight: math.unit(15000, "lb"),
  34352. name: "Front",
  34353. image: {
  34354. source: "./media/characters/faan/front.svg",
  34355. extra: 607/571,
  34356. bottom: 24/631
  34357. }
  34358. },
  34359. head: {
  34360. height: math.unit(2.85, "feet"),
  34361. name: "Head",
  34362. image: {
  34363. source: "./media/characters/faan/head.svg"
  34364. }
  34365. },
  34366. headAlt: {
  34367. height: math.unit(3.13, "feet"),
  34368. name: "Head-alt",
  34369. image: {
  34370. source: "./media/characters/faan/head-alt.svg"
  34371. }
  34372. },
  34373. },
  34374. [
  34375. {
  34376. name: "Normal",
  34377. height: math.unit(12 + 9/12, "feet"),
  34378. default: true
  34379. },
  34380. ]
  34381. ))
  34382. characterMakers.push(() => makeCharacter(
  34383. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34384. {
  34385. front: {
  34386. height: math.unit(6, "feet"),
  34387. weight: math.unit(300, "lb"),
  34388. name: "Front",
  34389. image: {
  34390. source: "./media/characters/tanio/front.svg",
  34391. extra: 711/673,
  34392. bottom: 25/736
  34393. }
  34394. },
  34395. },
  34396. [
  34397. {
  34398. name: "Normal",
  34399. height: math.unit(6, "feet"),
  34400. default: true
  34401. },
  34402. ]
  34403. ))
  34404. characterMakers.push(() => makeCharacter(
  34405. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34406. {
  34407. front: {
  34408. height: math.unit(3, "inches"),
  34409. name: "Front",
  34410. image: {
  34411. source: "./media/characters/noboru/front.svg",
  34412. extra: 1039/932,
  34413. bottom: 18/1057
  34414. }
  34415. },
  34416. },
  34417. [
  34418. {
  34419. name: "Micro",
  34420. height: math.unit(3, "inches"),
  34421. default: true
  34422. },
  34423. ]
  34424. ))
  34425. characterMakers.push(() => makeCharacter(
  34426. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34427. {
  34428. front: {
  34429. height: math.unit(1.85, "meters"),
  34430. weight: math.unit(80, "kg"),
  34431. name: "Front",
  34432. image: {
  34433. source: "./media/characters/daniel-barrett/front.svg",
  34434. extra: 355/337,
  34435. bottom: 9/364
  34436. }
  34437. },
  34438. },
  34439. [
  34440. {
  34441. name: "Pico",
  34442. height: math.unit(0.0433, "mm")
  34443. },
  34444. {
  34445. name: "Nano",
  34446. height: math.unit(1.5, "mm")
  34447. },
  34448. {
  34449. name: "Micro",
  34450. height: math.unit(5.3, "cm"),
  34451. default: true
  34452. },
  34453. {
  34454. name: "Normal",
  34455. height: math.unit(1.85, "meters")
  34456. },
  34457. {
  34458. name: "Macro",
  34459. height: math.unit(64.7, "meters")
  34460. },
  34461. {
  34462. name: "Megamacro",
  34463. height: math.unit(2.26, "km")
  34464. },
  34465. {
  34466. name: "Gigamacro",
  34467. height: math.unit(79, "km")
  34468. },
  34469. {
  34470. name: "Teramacro",
  34471. height: math.unit(2765, "km")
  34472. },
  34473. {
  34474. name: "Petamacro",
  34475. height: math.unit(96678, "km")
  34476. },
  34477. ]
  34478. ))
  34479. characterMakers.push(() => makeCharacter(
  34480. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34481. {
  34482. front: {
  34483. height: math.unit(30, "meters"),
  34484. weight: math.unit(400, "tons"),
  34485. name: "Front",
  34486. image: {
  34487. source: "./media/characters/zeel/front.svg",
  34488. extra: 2599/2599,
  34489. bottom: 226/2825
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Macro",
  34496. height: math.unit(30, "meters"),
  34497. default: true
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(6 + 7/12, "feet"),
  34506. weight: math.unit(210, "lb"),
  34507. name: "Front",
  34508. image: {
  34509. source: "./media/characters/tarn/front.svg",
  34510. extra: 3517/3220,
  34511. bottom: 91/3608
  34512. }
  34513. },
  34514. back: {
  34515. height: math.unit(6 + 7/12, "feet"),
  34516. weight: math.unit(210, "lb"),
  34517. name: "Back",
  34518. image: {
  34519. source: "./media/characters/tarn/back.svg",
  34520. extra: 3566/3241,
  34521. bottom: 34/3600
  34522. }
  34523. },
  34524. dick: {
  34525. height: math.unit(1.65, "feet"),
  34526. name: "Dick",
  34527. image: {
  34528. source: "./media/characters/tarn/dick.svg"
  34529. }
  34530. },
  34531. paw: {
  34532. height: math.unit(1.80, "feet"),
  34533. name: "Paw",
  34534. image: {
  34535. source: "./media/characters/tarn/paw.svg"
  34536. }
  34537. },
  34538. tongue: {
  34539. height: math.unit(0.97, "feet"),
  34540. name: "Tongue",
  34541. image: {
  34542. source: "./media/characters/tarn/tongue.svg"
  34543. }
  34544. },
  34545. },
  34546. [
  34547. {
  34548. name: "Micro",
  34549. height: math.unit(4, "inches")
  34550. },
  34551. {
  34552. name: "Normal",
  34553. height: math.unit(6 + 7/12, "feet"),
  34554. default: true
  34555. },
  34556. {
  34557. name: "Macro",
  34558. height: math.unit(300, "feet")
  34559. },
  34560. ]
  34561. ))
  34562. characterMakers.push(() => makeCharacter(
  34563. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34564. {
  34565. front: {
  34566. height: math.unit(5 + 7/12, "feet"),
  34567. weight: math.unit(80, "kg"),
  34568. name: "Front",
  34569. image: {
  34570. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34571. extra: 3023/2865,
  34572. bottom: 33/3056
  34573. }
  34574. },
  34575. back: {
  34576. height: math.unit(5 + 7/12, "feet"),
  34577. weight: math.unit(80, "kg"),
  34578. name: "Back",
  34579. image: {
  34580. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34581. extra: 3020/2886,
  34582. bottom: 30/3050
  34583. }
  34584. },
  34585. dick: {
  34586. height: math.unit(0.98, "feet"),
  34587. name: "Dick",
  34588. image: {
  34589. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34590. }
  34591. },
  34592. anatomy: {
  34593. height: math.unit(2.86, "feet"),
  34594. name: "Anatomy",
  34595. image: {
  34596. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34597. }
  34598. },
  34599. },
  34600. [
  34601. {
  34602. name: "Really Small",
  34603. height: math.unit(2, "inches")
  34604. },
  34605. {
  34606. name: "Micro",
  34607. height: math.unit(5.583, "inches")
  34608. },
  34609. {
  34610. name: "Normal",
  34611. height: math.unit(5 + 7/12, "feet"),
  34612. default: true
  34613. },
  34614. {
  34615. name: "Macro",
  34616. height: math.unit(67, "feet")
  34617. },
  34618. {
  34619. name: "Megamacro",
  34620. height: math.unit(134, "feet")
  34621. },
  34622. ]
  34623. ))
  34624. characterMakers.push(() => makeCharacter(
  34625. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34626. {
  34627. front: {
  34628. height: math.unit(9, "feet"),
  34629. weight: math.unit(120, "lb"),
  34630. name: "Front",
  34631. image: {
  34632. source: "./media/characters/sally/front.svg",
  34633. extra: 1506/1349,
  34634. bottom: 66/1572
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Normal",
  34641. height: math.unit(9, "feet"),
  34642. default: true
  34643. },
  34644. ]
  34645. ))
  34646. characterMakers.push(() => makeCharacter(
  34647. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34648. {
  34649. front: {
  34650. height: math.unit(8, "feet"),
  34651. weight: math.unit(900, "lb"),
  34652. name: "Front",
  34653. image: {
  34654. source: "./media/characters/owen/front.svg",
  34655. extra: 1761/1657,
  34656. bottom: 74/1835
  34657. }
  34658. },
  34659. side: {
  34660. height: math.unit(8, "feet"),
  34661. weight: math.unit(900, "lb"),
  34662. name: "Side",
  34663. image: {
  34664. source: "./media/characters/owen/side.svg",
  34665. extra: 1797/1734,
  34666. bottom: 30/1827
  34667. }
  34668. },
  34669. back: {
  34670. height: math.unit(8, "feet"),
  34671. weight: math.unit(900, "lb"),
  34672. name: "Back",
  34673. image: {
  34674. source: "./media/characters/owen/back.svg",
  34675. extra: 1796/1706,
  34676. bottom: 59/1855
  34677. }
  34678. },
  34679. maw: {
  34680. height: math.unit(1.76, "feet"),
  34681. name: "Maw",
  34682. image: {
  34683. source: "./media/characters/owen/maw.svg"
  34684. }
  34685. },
  34686. },
  34687. [
  34688. {
  34689. name: "Normal",
  34690. height: math.unit(8, "feet"),
  34691. default: true
  34692. },
  34693. ]
  34694. ))
  34695. characterMakers.push(() => makeCharacter(
  34696. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34697. {
  34698. front: {
  34699. height: math.unit(4, "feet"),
  34700. weight: math.unit(400, "lb"),
  34701. name: "Front",
  34702. image: {
  34703. source: "./media/characters/ryth/front.svg",
  34704. extra: 1920/1748,
  34705. bottom: 42/1962
  34706. }
  34707. },
  34708. back: {
  34709. height: math.unit(4, "feet"),
  34710. weight: math.unit(400, "lb"),
  34711. name: "Back",
  34712. image: {
  34713. source: "./media/characters/ryth/back.svg",
  34714. extra: 1897/1690,
  34715. bottom: 89/1986
  34716. }
  34717. },
  34718. mouth: {
  34719. height: math.unit(1.39, "feet"),
  34720. name: "Mouth",
  34721. image: {
  34722. source: "./media/characters/ryth/mouth.svg"
  34723. }
  34724. },
  34725. tailmaw: {
  34726. height: math.unit(1.23, "feet"),
  34727. name: "Tailmaw",
  34728. image: {
  34729. source: "./media/characters/ryth/tailmaw.svg"
  34730. }
  34731. },
  34732. goia: {
  34733. height: math.unit(4, "meters"),
  34734. weight: math.unit(10800, "lb"),
  34735. name: "Goia",
  34736. image: {
  34737. source: "./media/characters/ryth/goia.svg",
  34738. extra: 745/640,
  34739. bottom: 107/852
  34740. }
  34741. },
  34742. goiaFront: {
  34743. height: math.unit(4, "meters"),
  34744. weight: math.unit(10800, "lb"),
  34745. name: "Goia (Front)",
  34746. image: {
  34747. source: "./media/characters/ryth/goia-front.svg",
  34748. extra: 750/586,
  34749. bottom: 114/864
  34750. }
  34751. },
  34752. goiaMaw: {
  34753. height: math.unit(5.55, "feet"),
  34754. name: "Goia Maw",
  34755. image: {
  34756. source: "./media/characters/ryth/goia-maw.svg"
  34757. }
  34758. },
  34759. goiaForepaw: {
  34760. height: math.unit(3.5, "feet"),
  34761. name: "Goia Forepaw",
  34762. image: {
  34763. source: "./media/characters/ryth/goia-forepaw.svg"
  34764. }
  34765. },
  34766. goiaHindpaw: {
  34767. height: math.unit(5.55, "feet"),
  34768. name: "Goia Hindpaw",
  34769. image: {
  34770. source: "./media/characters/ryth/goia-hindpaw.svg"
  34771. }
  34772. },
  34773. },
  34774. [
  34775. {
  34776. name: "Normal",
  34777. height: math.unit(4, "feet"),
  34778. default: true
  34779. },
  34780. ]
  34781. ))
  34782. characterMakers.push(() => makeCharacter(
  34783. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34784. {
  34785. front: {
  34786. height: math.unit(7, "feet"),
  34787. weight: math.unit(180, "lb"),
  34788. name: "Front",
  34789. image: {
  34790. source: "./media/characters/necrolance/front.svg",
  34791. extra: 1062/947,
  34792. bottom: 41/1103
  34793. }
  34794. },
  34795. back: {
  34796. height: math.unit(7, "feet"),
  34797. weight: math.unit(180, "lb"),
  34798. name: "Back",
  34799. image: {
  34800. source: "./media/characters/necrolance/back.svg",
  34801. extra: 1045/984,
  34802. bottom: 14/1059
  34803. }
  34804. },
  34805. wing: {
  34806. height: math.unit(2.67, "feet"),
  34807. name: "Wing",
  34808. image: {
  34809. source: "./media/characters/necrolance/wing.svg"
  34810. }
  34811. },
  34812. },
  34813. [
  34814. {
  34815. name: "Normal",
  34816. height: math.unit(7, "feet"),
  34817. default: true
  34818. },
  34819. ]
  34820. ))
  34821. characterMakers.push(() => makeCharacter(
  34822. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34823. {
  34824. front: {
  34825. height: math.unit(76, "meters"),
  34826. weight: math.unit(30000, "tons"),
  34827. name: "Front",
  34828. image: {
  34829. source: "./media/characters/tyler/front.svg",
  34830. extra: 1640/1640,
  34831. bottom: 114/1754
  34832. }
  34833. },
  34834. },
  34835. [
  34836. {
  34837. name: "Macro",
  34838. height: math.unit(76, "meters"),
  34839. default: true
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34845. {
  34846. front: {
  34847. height: math.unit(4 + 11/12, "feet"),
  34848. weight: math.unit(132, "lb"),
  34849. name: "Front",
  34850. image: {
  34851. source: "./media/characters/icey/front.svg",
  34852. extra: 2750/2550,
  34853. bottom: 33/2783
  34854. }
  34855. },
  34856. back: {
  34857. height: math.unit(4 + 11/12, "feet"),
  34858. weight: math.unit(132, "lb"),
  34859. name: "Back",
  34860. image: {
  34861. source: "./media/characters/icey/back.svg",
  34862. extra: 2624/2481,
  34863. bottom: 35/2659
  34864. }
  34865. },
  34866. },
  34867. [
  34868. {
  34869. name: "Normal",
  34870. height: math.unit(4 + 11/12, "feet"),
  34871. default: true
  34872. },
  34873. ]
  34874. ))
  34875. characterMakers.push(() => makeCharacter(
  34876. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34877. {
  34878. front: {
  34879. height: math.unit(100, "feet"),
  34880. weight: math.unit(0, "lb"),
  34881. name: "Front",
  34882. image: {
  34883. source: "./media/characters/smile/front.svg",
  34884. extra: 2983/2912,
  34885. bottom: 162/3145
  34886. }
  34887. },
  34888. back: {
  34889. height: math.unit(100, "feet"),
  34890. weight: math.unit(0, "lb"),
  34891. name: "Back",
  34892. image: {
  34893. source: "./media/characters/smile/back.svg",
  34894. extra: 3143/3031,
  34895. bottom: 91/3234
  34896. }
  34897. },
  34898. head: {
  34899. height: math.unit(26.3, "feet"),
  34900. weight: math.unit(0, "lb"),
  34901. name: "Head",
  34902. image: {
  34903. source: "./media/characters/smile/head.svg"
  34904. }
  34905. },
  34906. collar: {
  34907. height: math.unit(5.3, "feet"),
  34908. weight: math.unit(0, "lb"),
  34909. name: "Collar",
  34910. image: {
  34911. source: "./media/characters/smile/collar.svg"
  34912. }
  34913. },
  34914. },
  34915. [
  34916. {
  34917. name: "Macro",
  34918. height: math.unit(100, "feet"),
  34919. default: true
  34920. },
  34921. ]
  34922. ))
  34923. characterMakers.push(() => makeCharacter(
  34924. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34925. {
  34926. dragon: {
  34927. height: math.unit(26, "feet"),
  34928. weight: math.unit(36, "tons"),
  34929. name: "Dragon",
  34930. image: {
  34931. source: "./media/characters/arimphae/dragon.svg",
  34932. extra: 1574/983,
  34933. bottom: 357/1931
  34934. }
  34935. },
  34936. drake: {
  34937. height: math.unit(9, "feet"),
  34938. weight: math.unit(1.5, "tons"),
  34939. name: "Drake",
  34940. image: {
  34941. source: "./media/characters/arimphae/drake.svg",
  34942. extra: 1120/925,
  34943. bottom: 435/1555
  34944. }
  34945. },
  34946. },
  34947. [
  34948. {
  34949. name: "Small",
  34950. height: math.unit(26*5/9, "feet")
  34951. },
  34952. {
  34953. name: "Normal",
  34954. height: math.unit(26, "feet"),
  34955. default: true
  34956. },
  34957. ]
  34958. ))
  34959. characterMakers.push(() => makeCharacter(
  34960. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34961. {
  34962. front: {
  34963. height: math.unit(8 + 9/12, "feet"),
  34964. name: "Front",
  34965. image: {
  34966. source: "./media/characters/xander/front.svg",
  34967. extra: 1237/974,
  34968. bottom: 94/1331
  34969. }
  34970. },
  34971. },
  34972. [
  34973. {
  34974. name: "Normal",
  34975. height: math.unit(8 + 9/12, "feet"),
  34976. default: true
  34977. },
  34978. {
  34979. name: "Gaze Grabber",
  34980. height: math.unit(13 + 8/12, "feet")
  34981. },
  34982. {
  34983. name: "Jaw Dropper",
  34984. height: math.unit(27, "feet")
  34985. },
  34986. {
  34987. name: "Show Stopper",
  34988. height: math.unit(136, "feet")
  34989. },
  34990. {
  34991. name: "Superstar",
  34992. height: math.unit(1.9e6, "miles")
  34993. },
  34994. ]
  34995. ))
  34996. characterMakers.push(() => makeCharacter(
  34997. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34998. {
  34999. side: {
  35000. height: math.unit(2100, "feet"),
  35001. name: "Side",
  35002. image: {
  35003. source: "./media/characters/osiris/side.svg",
  35004. extra: 1105/939,
  35005. bottom: 167/1272
  35006. }
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Macro",
  35012. height: math.unit(2100, "feet"),
  35013. default: true
  35014. },
  35015. ]
  35016. ))
  35017. characterMakers.push(() => makeCharacter(
  35018. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35019. {
  35020. front: {
  35021. height: math.unit(6 + 8/12, "feet"),
  35022. weight: math.unit(225, "lb"),
  35023. name: "Front",
  35024. image: {
  35025. source: "./media/characters/rhys-londe/front.svg",
  35026. extra: 2258/2141,
  35027. bottom: 188/2446
  35028. }
  35029. },
  35030. back: {
  35031. height: math.unit(6 + 8/12, "feet"),
  35032. weight: math.unit(225, "lb"),
  35033. name: "Back",
  35034. image: {
  35035. source: "./media/characters/rhys-londe/back.svg",
  35036. extra: 2237/2137,
  35037. bottom: 63/2300
  35038. }
  35039. },
  35040. frontNsfw: {
  35041. height: math.unit(6 + 8/12, "feet"),
  35042. weight: math.unit(225, "lb"),
  35043. name: "Front (NSFW)",
  35044. image: {
  35045. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35046. extra: 2258/2141,
  35047. bottom: 188/2446
  35048. }
  35049. },
  35050. backNsfw: {
  35051. height: math.unit(6 + 8/12, "feet"),
  35052. weight: math.unit(225, "lb"),
  35053. name: "Back (NSFW)",
  35054. image: {
  35055. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35056. extra: 2237/2137,
  35057. bottom: 63/2300
  35058. }
  35059. },
  35060. dick: {
  35061. height: math.unit(30, "inches"),
  35062. name: "Dick",
  35063. image: {
  35064. source: "./media/characters/rhys-londe/dick.svg"
  35065. }
  35066. },
  35067. maw: {
  35068. height: math.unit(1.6, "feet"),
  35069. name: "Maw",
  35070. image: {
  35071. source: "./media/characters/rhys-londe/maw.svg"
  35072. }
  35073. },
  35074. },
  35075. [
  35076. {
  35077. name: "Normal",
  35078. height: math.unit(6 + 8/12, "feet"),
  35079. default: true
  35080. },
  35081. ]
  35082. ))
  35083. characterMakers.push(() => makeCharacter(
  35084. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35085. {
  35086. front: {
  35087. height: math.unit(3 + 10/12, "feet"),
  35088. weight: math.unit(90, "lb"),
  35089. name: "Front",
  35090. image: {
  35091. source: "./media/characters/taivas-ensim/front.svg",
  35092. extra: 1327/1216,
  35093. bottom: 96/1423
  35094. }
  35095. },
  35096. back: {
  35097. height: math.unit(3 + 10/12, "feet"),
  35098. weight: math.unit(90, "lb"),
  35099. name: "Back",
  35100. image: {
  35101. source: "./media/characters/taivas-ensim/back.svg",
  35102. extra: 1355/1247,
  35103. bottom: 11/1366
  35104. }
  35105. },
  35106. frontNsfw: {
  35107. height: math.unit(3 + 10/12, "feet"),
  35108. weight: math.unit(90, "lb"),
  35109. name: "Front (NSFW)",
  35110. image: {
  35111. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35112. extra: 1327/1216,
  35113. bottom: 96/1423
  35114. }
  35115. },
  35116. backNsfw: {
  35117. height: math.unit(3 + 10/12, "feet"),
  35118. weight: math.unit(90, "lb"),
  35119. name: "Back (NSFW)",
  35120. image: {
  35121. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35122. extra: 1355/1247,
  35123. bottom: 11/1366
  35124. }
  35125. },
  35126. },
  35127. [
  35128. {
  35129. name: "Normal",
  35130. height: math.unit(3 + 10/12, "feet"),
  35131. default: true
  35132. },
  35133. ]
  35134. ))
  35135. characterMakers.push(() => makeCharacter(
  35136. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35137. {
  35138. front: {
  35139. height: math.unit(9 + 6/12, "feet"),
  35140. weight: math.unit(940, "lb"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/byliss/front.svg",
  35144. extra: 1327/1290,
  35145. bottom: 82/1409
  35146. }
  35147. },
  35148. back: {
  35149. height: math.unit(9 + 6/12, "feet"),
  35150. weight: math.unit(940, "lb"),
  35151. name: "Back",
  35152. image: {
  35153. source: "./media/characters/byliss/back.svg",
  35154. extra: 1376/1349,
  35155. bottom: 9/1385
  35156. }
  35157. },
  35158. frontNsfw: {
  35159. height: math.unit(9 + 6/12, "feet"),
  35160. weight: math.unit(940, "lb"),
  35161. name: "Front (NSFW)",
  35162. image: {
  35163. source: "./media/characters/byliss/front-nsfw.svg",
  35164. extra: 1327/1290,
  35165. bottom: 82/1409
  35166. }
  35167. },
  35168. backNsfw: {
  35169. height: math.unit(9 + 6/12, "feet"),
  35170. weight: math.unit(940, "lb"),
  35171. name: "Back (NSFW)",
  35172. image: {
  35173. source: "./media/characters/byliss/back-nsfw.svg",
  35174. extra: 1376/1349,
  35175. bottom: 9/1385
  35176. }
  35177. },
  35178. },
  35179. [
  35180. {
  35181. name: "Normal",
  35182. height: math.unit(9 + 6/12, "feet"),
  35183. default: true
  35184. },
  35185. ]
  35186. ))
  35187. characterMakers.push(() => makeCharacter(
  35188. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35189. {
  35190. front: {
  35191. height: math.unit(5 + 2/12, "feet"),
  35192. weight: math.unit(200, "lb"),
  35193. name: "Front",
  35194. image: {
  35195. source: "./media/characters/noraly/front.svg",
  35196. extra: 4985/4773,
  35197. bottom: 150/5135
  35198. }
  35199. },
  35200. full: {
  35201. height: math.unit(5 + 2/12, "feet"),
  35202. weight: math.unit(164, "lb"),
  35203. name: "Full",
  35204. image: {
  35205. source: "./media/characters/noraly/full.svg",
  35206. extra: 1114/1059,
  35207. bottom: 35/1149
  35208. }
  35209. },
  35210. fuller: {
  35211. height: math.unit(5 + 2/12, "feet"),
  35212. weight: math.unit(230, "lb"),
  35213. name: "Fuller",
  35214. image: {
  35215. source: "./media/characters/noraly/fuller.svg",
  35216. extra: 1114/1059,
  35217. bottom: 35/1149
  35218. }
  35219. },
  35220. fullest: {
  35221. height: math.unit(5 + 2/12, "feet"),
  35222. weight: math.unit(300, "lb"),
  35223. name: "Fullest",
  35224. image: {
  35225. source: "./media/characters/noraly/fullest.svg",
  35226. extra: 1114/1059,
  35227. bottom: 35/1149
  35228. }
  35229. },
  35230. },
  35231. [
  35232. {
  35233. name: "Normal",
  35234. height: math.unit(5 + 2/12, "feet"),
  35235. default: true
  35236. },
  35237. ]
  35238. ))
  35239. characterMakers.push(() => makeCharacter(
  35240. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35241. {
  35242. front: {
  35243. height: math.unit(5 + 2/12, "feet"),
  35244. weight: math.unit(210, "lb"),
  35245. name: "Front",
  35246. image: {
  35247. source: "./media/characters/pera/front.svg",
  35248. extra: 1560/1531,
  35249. bottom: 165/1725
  35250. }
  35251. },
  35252. back: {
  35253. height: math.unit(5 + 2/12, "feet"),
  35254. weight: math.unit(210, "lb"),
  35255. name: "Back",
  35256. image: {
  35257. source: "./media/characters/pera/back.svg",
  35258. extra: 1523/1493,
  35259. bottom: 152/1675
  35260. }
  35261. },
  35262. dick: {
  35263. height: math.unit(2.4, "feet"),
  35264. name: "Dick",
  35265. image: {
  35266. source: "./media/characters/pera/dick.svg"
  35267. }
  35268. },
  35269. },
  35270. [
  35271. {
  35272. name: "Normal",
  35273. height: math.unit(5 + 2/12, "feet"),
  35274. default: true
  35275. },
  35276. ]
  35277. ))
  35278. characterMakers.push(() => makeCharacter(
  35279. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35280. {
  35281. front: {
  35282. height: math.unit(12, "feet"),
  35283. weight: math.unit(3200, "lb"),
  35284. name: "Front",
  35285. image: {
  35286. source: "./media/characters/julian/front.svg",
  35287. extra: 2962/2701,
  35288. bottom: 184/3146
  35289. }
  35290. },
  35291. maw: {
  35292. height: math.unit(5.35, "feet"),
  35293. name: "Maw",
  35294. image: {
  35295. source: "./media/characters/julian/maw.svg"
  35296. }
  35297. },
  35298. paw: {
  35299. height: math.unit(3.07, "feet"),
  35300. name: "Paw",
  35301. image: {
  35302. source: "./media/characters/julian/paw.svg"
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Default",
  35309. height: math.unit(12, "feet"),
  35310. default: true
  35311. },
  35312. {
  35313. name: "Big",
  35314. height: math.unit(50, "feet")
  35315. },
  35316. {
  35317. name: "Really Big",
  35318. height: math.unit(1, "mile")
  35319. },
  35320. {
  35321. name: "Extremely Big",
  35322. height: math.unit(100, "miles")
  35323. },
  35324. {
  35325. name: "Planet Hugger",
  35326. height: math.unit(200, "megameters")
  35327. },
  35328. {
  35329. name: "Unreasonably Big",
  35330. height: math.unit(1e300, "meters")
  35331. },
  35332. ]
  35333. ))
  35334. characterMakers.push(() => makeCharacter(
  35335. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35336. {
  35337. solgooleo: {
  35338. height: math.unit(4, "meters"),
  35339. weight: math.unit(6000*1.5, "kg"),
  35340. volume: math.unit(6000, "liters"),
  35341. name: "Solgooleo",
  35342. image: {
  35343. source: "./media/characters/pi/solgooleo.svg",
  35344. extra: 388/331,
  35345. bottom: 29/417
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Normal",
  35352. height: math.unit(4, "meters"),
  35353. default: true
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35359. {
  35360. front: {
  35361. height: math.unit(8, "feet"),
  35362. weight: math.unit(4, "tons"),
  35363. name: "Front",
  35364. image: {
  35365. source: "./media/characters/shaun/front.svg",
  35366. extra: 503/495,
  35367. bottom: 20/523
  35368. }
  35369. },
  35370. back: {
  35371. height: math.unit(8, "feet"),
  35372. weight: math.unit(4, "tons"),
  35373. name: "Back",
  35374. image: {
  35375. source: "./media/characters/shaun/back.svg",
  35376. extra: 487/480,
  35377. bottom: 20/507
  35378. }
  35379. },
  35380. },
  35381. [
  35382. {
  35383. name: "Lorg",
  35384. height: math.unit(8, "feet"),
  35385. default: true
  35386. },
  35387. ]
  35388. ))
  35389. characterMakers.push(() => makeCharacter(
  35390. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35391. {
  35392. frontAnthro: {
  35393. height: math.unit(7, "feet"),
  35394. name: "Front",
  35395. image: {
  35396. source: "./media/characters/sini/front-anthro.svg",
  35397. extra: 726/678,
  35398. bottom: 35/761
  35399. },
  35400. form: "anthro",
  35401. default: true
  35402. },
  35403. backAnthro: {
  35404. height: math.unit(7, "feet"),
  35405. name: "Back",
  35406. image: {
  35407. source: "./media/characters/sini/back-anthro.svg",
  35408. extra: 743/701,
  35409. bottom: 12/755
  35410. },
  35411. form: "anthro",
  35412. },
  35413. frontAnthroNsfw: {
  35414. height: math.unit(7, "feet"),
  35415. name: "Front (NSFW)",
  35416. image: {
  35417. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35418. extra: 726/678,
  35419. bottom: 35/761
  35420. },
  35421. form: "anthro"
  35422. },
  35423. backAnthroNsfw: {
  35424. height: math.unit(7, "feet"),
  35425. name: "Back (NSFW)",
  35426. image: {
  35427. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35428. extra: 743/701,
  35429. bottom: 12/755
  35430. },
  35431. form: "anthro",
  35432. },
  35433. mawAnthro: {
  35434. height: math.unit(2.14, "feet"),
  35435. name: "Maw",
  35436. image: {
  35437. source: "./media/characters/sini/maw-anthro.svg"
  35438. },
  35439. form: "anthro"
  35440. },
  35441. dick: {
  35442. height: math.unit(1.45, "feet"),
  35443. name: "Dick",
  35444. image: {
  35445. source: "./media/characters/sini/dick-anthro.svg"
  35446. },
  35447. form: "anthro"
  35448. },
  35449. feral: {
  35450. height: math.unit(16, "feet"),
  35451. name: "Feral",
  35452. image: {
  35453. source: "./media/characters/sini/feral.svg",
  35454. extra: 814/605,
  35455. bottom: 11/825
  35456. },
  35457. form: "feral",
  35458. default: true
  35459. },
  35460. feralNsfw: {
  35461. height: math.unit(16, "feet"),
  35462. name: "Feral (NSFW)",
  35463. image: {
  35464. source: "./media/characters/sini/feral-nsfw.svg",
  35465. extra: 814/605,
  35466. bottom: 11/825
  35467. },
  35468. form: "feral"
  35469. },
  35470. mawFeral: {
  35471. height: math.unit(5.66, "feet"),
  35472. name: "Maw",
  35473. image: {
  35474. source: "./media/characters/sini/maw-feral.svg"
  35475. },
  35476. form: "feral",
  35477. },
  35478. pawFeral: {
  35479. height: math.unit(5.17, "feet"),
  35480. name: "Paw",
  35481. image: {
  35482. source: "./media/characters/sini/paw-feral.svg"
  35483. },
  35484. form: "feral",
  35485. },
  35486. rumpFeral: {
  35487. height: math.unit(13.11, "feet"),
  35488. name: "Rump",
  35489. image: {
  35490. source: "./media/characters/sini/rump-feral.svg"
  35491. },
  35492. form: "feral",
  35493. },
  35494. dickFeral: {
  35495. height: math.unit(1, "feet"),
  35496. name: "Dick",
  35497. image: {
  35498. source: "./media/characters/sini/dick-feral.svg"
  35499. },
  35500. form: "feral",
  35501. },
  35502. eyeFeral: {
  35503. height: math.unit(1.23, "feet"),
  35504. name: "Eye",
  35505. image: {
  35506. source: "./media/characters/sini/eye-feral.svg"
  35507. },
  35508. form: "feral",
  35509. },
  35510. },
  35511. [
  35512. {
  35513. name: "Normal",
  35514. height: math.unit(7, "feet"),
  35515. default: true,
  35516. form: "anthro"
  35517. },
  35518. {
  35519. name: "Normal",
  35520. height: math.unit(16, "feet"),
  35521. default: true,
  35522. form: "feral"
  35523. },
  35524. ],
  35525. {
  35526. "anthro": {
  35527. name: "Anthro",
  35528. default: true
  35529. },
  35530. "feral": {
  35531. name: "Feral",
  35532. }
  35533. }
  35534. ))
  35535. characterMakers.push(() => makeCharacter(
  35536. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35537. {
  35538. side: {
  35539. height: math.unit(47.2, "meters"),
  35540. weight: math.unit(10000, "tons"),
  35541. name: "Side",
  35542. image: {
  35543. source: "./media/characters/raylldo/side.svg",
  35544. extra: 2363/642,
  35545. bottom: 221/2584
  35546. }
  35547. },
  35548. top: {
  35549. height: math.unit(240, "meters"),
  35550. weight: math.unit(10000, "tons"),
  35551. name: "Top",
  35552. image: {
  35553. source: "./media/characters/raylldo/top.svg"
  35554. }
  35555. },
  35556. bottom: {
  35557. height: math.unit(240, "meters"),
  35558. weight: math.unit(10000, "tons"),
  35559. name: "Bottom",
  35560. image: {
  35561. source: "./media/characters/raylldo/bottom.svg"
  35562. }
  35563. },
  35564. head: {
  35565. height: math.unit(38.6, "meters"),
  35566. name: "Head",
  35567. image: {
  35568. source: "./media/characters/raylldo/head.svg",
  35569. extra: 1335/1112,
  35570. bottom: 0/1335
  35571. }
  35572. },
  35573. maw: {
  35574. height: math.unit(16.37, "meters"),
  35575. name: "Maw",
  35576. image: {
  35577. source: "./media/characters/raylldo/maw.svg",
  35578. extra: 883/660,
  35579. bottom: 0/883
  35580. },
  35581. extraAttributes: {
  35582. preyCapacity: {
  35583. name: "Capacity",
  35584. power: 3,
  35585. type: "volume",
  35586. base: math.unit(1000, "people")
  35587. },
  35588. tongueSize: {
  35589. name: "Tongue Size",
  35590. power: 2,
  35591. type: "area",
  35592. base: math.unit(21, "m^2")
  35593. }
  35594. }
  35595. },
  35596. forepaw: {
  35597. height: math.unit(18, "meters"),
  35598. name: "Forepaw",
  35599. image: {
  35600. source: "./media/characters/raylldo/forepaw.svg"
  35601. }
  35602. },
  35603. hindpaw: {
  35604. height: math.unit(23, "meters"),
  35605. name: "Hindpaw",
  35606. image: {
  35607. source: "./media/characters/raylldo/hindpaw.svg"
  35608. }
  35609. },
  35610. genitals: {
  35611. height: math.unit(42, "meters"),
  35612. name: "Genitals",
  35613. image: {
  35614. source: "./media/characters/raylldo/genitals.svg"
  35615. }
  35616. },
  35617. },
  35618. [
  35619. {
  35620. name: "Normal",
  35621. height: math.unit(47.2, "meters"),
  35622. default: true
  35623. },
  35624. ]
  35625. ))
  35626. characterMakers.push(() => makeCharacter(
  35627. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35628. {
  35629. anthroFront: {
  35630. height: math.unit(9, "feet"),
  35631. weight: math.unit(600, "lb"),
  35632. name: "Anthro (Front)",
  35633. image: {
  35634. source: "./media/characters/glint/anthro-front.svg",
  35635. extra: 1097/1018,
  35636. bottom: 28/1125
  35637. }
  35638. },
  35639. anthroBack: {
  35640. height: math.unit(9, "feet"),
  35641. weight: math.unit(600, "lb"),
  35642. name: "Anthro (Back)",
  35643. image: {
  35644. source: "./media/characters/glint/anthro-back.svg",
  35645. extra: 1154/997,
  35646. bottom: 36/1190
  35647. }
  35648. },
  35649. feral: {
  35650. height: math.unit(11, "feet"),
  35651. weight: math.unit(50000, "lb"),
  35652. name: "Feral",
  35653. image: {
  35654. source: "./media/characters/glint/feral.svg",
  35655. extra: 3035/1585,
  35656. bottom: 1169/4204
  35657. }
  35658. },
  35659. dickAnthro: {
  35660. height: math.unit(0.7, "meters"),
  35661. name: "Dick (Anthro)",
  35662. image: {
  35663. source: "./media/characters/glint/dick-anthro.svg"
  35664. }
  35665. },
  35666. dickFeral: {
  35667. height: math.unit(2.65, "meters"),
  35668. name: "Dick (Feral)",
  35669. image: {
  35670. source: "./media/characters/glint/dick-feral.svg"
  35671. }
  35672. },
  35673. slitHidden: {
  35674. height: math.unit(5.85, "meters"),
  35675. name: "Slit (Hidden)",
  35676. image: {
  35677. source: "./media/characters/glint/slit-hidden.svg"
  35678. }
  35679. },
  35680. slitErect: {
  35681. height: math.unit(5.85, "meters"),
  35682. name: "Slit (Erect)",
  35683. image: {
  35684. source: "./media/characters/glint/slit-erect.svg"
  35685. }
  35686. },
  35687. mawAnthro: {
  35688. height: math.unit(0.63, "meters"),
  35689. name: "Maw (Anthro)",
  35690. image: {
  35691. source: "./media/characters/glint/maw.svg"
  35692. }
  35693. },
  35694. mawFeral: {
  35695. height: math.unit(2.89, "meters"),
  35696. name: "Maw (Feral)",
  35697. image: {
  35698. source: "./media/characters/glint/maw.svg"
  35699. }
  35700. },
  35701. },
  35702. [
  35703. {
  35704. name: "Normal",
  35705. height: math.unit(9, "feet"),
  35706. default: true
  35707. },
  35708. ]
  35709. ))
  35710. characterMakers.push(() => makeCharacter(
  35711. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35712. {
  35713. side: {
  35714. height: math.unit(15, "feet"),
  35715. weight: math.unit(5000, "kg"),
  35716. name: "Side",
  35717. image: {
  35718. source: "./media/characters/kairne/side.svg",
  35719. extra: 979/811,
  35720. bottom: 13/992
  35721. }
  35722. },
  35723. front: {
  35724. height: math.unit(15, "feet"),
  35725. weight: math.unit(5000, "kg"),
  35726. name: "Front",
  35727. image: {
  35728. source: "./media/characters/kairne/front.svg",
  35729. extra: 908/814,
  35730. bottom: 26/934
  35731. }
  35732. },
  35733. sideNsfw: {
  35734. height: math.unit(15, "feet"),
  35735. weight: math.unit(5000, "kg"),
  35736. name: "Side (NSFW)",
  35737. image: {
  35738. source: "./media/characters/kairne/side-nsfw.svg",
  35739. extra: 979/811,
  35740. bottom: 13/992
  35741. }
  35742. },
  35743. frontNsfw: {
  35744. height: math.unit(15, "feet"),
  35745. weight: math.unit(5000, "kg"),
  35746. name: "Front (NSFW)",
  35747. image: {
  35748. source: "./media/characters/kairne/front-nsfw.svg",
  35749. extra: 908/814,
  35750. bottom: 26/934
  35751. }
  35752. },
  35753. dickCaged: {
  35754. height: math.unit(0.65, "meters"),
  35755. name: "Dick-caged",
  35756. image: {
  35757. source: "./media/characters/kairne/dick-caged.svg"
  35758. }
  35759. },
  35760. dick: {
  35761. height: math.unit(0.79, "meters"),
  35762. name: "Dick",
  35763. image: {
  35764. source: "./media/characters/kairne/dick.svg"
  35765. }
  35766. },
  35767. genitals: {
  35768. height: math.unit(1.29, "meters"),
  35769. name: "Genitals",
  35770. image: {
  35771. source: "./media/characters/kairne/genitals.svg"
  35772. }
  35773. },
  35774. maw: {
  35775. height: math.unit(1.73, "meters"),
  35776. name: "Maw",
  35777. image: {
  35778. source: "./media/characters/kairne/maw.svg"
  35779. }
  35780. },
  35781. },
  35782. [
  35783. {
  35784. name: "Normal",
  35785. height: math.unit(15, "feet"),
  35786. default: true
  35787. },
  35788. ]
  35789. ))
  35790. characterMakers.push(() => makeCharacter(
  35791. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35792. {
  35793. front: {
  35794. height: math.unit(5 + 8/12, "feet"),
  35795. weight: math.unit(139, "lb"),
  35796. name: "Front",
  35797. image: {
  35798. source: "./media/characters/biscuit-jackal/front.svg",
  35799. extra: 2106/1961,
  35800. bottom: 58/2164
  35801. }
  35802. },
  35803. back: {
  35804. height: math.unit(5 + 8/12, "feet"),
  35805. weight: math.unit(139, "lb"),
  35806. name: "Back",
  35807. image: {
  35808. source: "./media/characters/biscuit-jackal/back.svg",
  35809. extra: 2132/1976,
  35810. bottom: 57/2189
  35811. }
  35812. },
  35813. werejackal: {
  35814. height: math.unit(6 + 3/12, "feet"),
  35815. weight: math.unit(188, "lb"),
  35816. name: "Werejackal",
  35817. image: {
  35818. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35819. extra: 2373/2178,
  35820. bottom: 53/2426
  35821. }
  35822. },
  35823. },
  35824. [
  35825. {
  35826. name: "Normal",
  35827. height: math.unit(5 + 8/12, "feet"),
  35828. default: true
  35829. },
  35830. ]
  35831. ))
  35832. characterMakers.push(() => makeCharacter(
  35833. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35834. {
  35835. front: {
  35836. height: math.unit(140, "cm"),
  35837. weight: math.unit(45, "kg"),
  35838. name: "Front",
  35839. image: {
  35840. source: "./media/characters/tayra-white/front.svg",
  35841. extra: 2229/2192,
  35842. bottom: 75/2304
  35843. }
  35844. },
  35845. },
  35846. [
  35847. {
  35848. name: "Normal",
  35849. height: math.unit(140, "cm"),
  35850. default: true
  35851. },
  35852. ]
  35853. ))
  35854. characterMakers.push(() => makeCharacter(
  35855. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35856. {
  35857. front: {
  35858. height: math.unit(4 + 5/12, "feet"),
  35859. name: "Front",
  35860. image: {
  35861. source: "./media/characters/scoop/front.svg",
  35862. extra: 1257/1136,
  35863. bottom: 69/1326
  35864. }
  35865. },
  35866. back: {
  35867. height: math.unit(4 + 5/12, "feet"),
  35868. name: "Back",
  35869. image: {
  35870. source: "./media/characters/scoop/back.svg",
  35871. extra: 1321/1152,
  35872. bottom: 32/1353
  35873. }
  35874. },
  35875. maw: {
  35876. height: math.unit(0.68, "feet"),
  35877. name: "Maw",
  35878. image: {
  35879. source: "./media/characters/scoop/maw.svg"
  35880. }
  35881. },
  35882. },
  35883. [
  35884. {
  35885. name: "Really Small",
  35886. height: math.unit(1, "mm")
  35887. },
  35888. {
  35889. name: "Micro",
  35890. height: math.unit(1, "inch")
  35891. },
  35892. {
  35893. name: "Normal",
  35894. height: math.unit(4 + 5/12, "feet"),
  35895. default: true
  35896. },
  35897. {
  35898. name: "Macro",
  35899. height: math.unit(200, "feet")
  35900. },
  35901. {
  35902. name: "Megamacro",
  35903. height: math.unit(3240, "feet")
  35904. },
  35905. {
  35906. name: "Teramacro",
  35907. height: math.unit(2500, "miles")
  35908. },
  35909. ]
  35910. ))
  35911. characterMakers.push(() => makeCharacter(
  35912. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35913. {
  35914. front: {
  35915. height: math.unit(15 + 7/12, "feet"),
  35916. weight: math.unit(1150, "tons"),
  35917. name: "Front",
  35918. image: {
  35919. source: "./media/characters/saphinara/front.svg",
  35920. extra: 1837/1643,
  35921. bottom: 84/1921
  35922. },
  35923. form: "normal",
  35924. default: true
  35925. },
  35926. side: {
  35927. height: math.unit(15 + 7/12, "feet"),
  35928. weight: math.unit(1150, "tons"),
  35929. name: "Side",
  35930. image: {
  35931. source: "./media/characters/saphinara/side.svg",
  35932. extra: 605/547,
  35933. bottom: 6/611
  35934. },
  35935. form: "normal"
  35936. },
  35937. back: {
  35938. height: math.unit(15 + 7/12, "feet"),
  35939. weight: math.unit(1150, "tons"),
  35940. name: "Back",
  35941. image: {
  35942. source: "./media/characters/saphinara/back.svg",
  35943. extra: 591/531,
  35944. bottom: 13/604
  35945. },
  35946. form: "normal"
  35947. },
  35948. frontTail: {
  35949. height: math.unit(15 + 7/12, "feet"),
  35950. weight: math.unit(1150, "tons"),
  35951. name: "Front (Full Tail)",
  35952. image: {
  35953. source: "./media/characters/saphinara/front-tail.svg",
  35954. extra: 2256/1630,
  35955. bottom: 261/2517
  35956. },
  35957. form: "normal"
  35958. },
  35959. insides: {
  35960. height: math.unit(11.92, "feet"),
  35961. name: "Insides",
  35962. image: {
  35963. source: "./media/characters/saphinara/insides.svg"
  35964. },
  35965. form: "normal"
  35966. },
  35967. head: {
  35968. height: math.unit(4.17, "feet"),
  35969. name: "Head",
  35970. image: {
  35971. source: "./media/characters/saphinara/head.svg"
  35972. },
  35973. form: "normal"
  35974. },
  35975. tongue: {
  35976. height: math.unit(4.60, "feet"),
  35977. name: "Tongue",
  35978. image: {
  35979. source: "./media/characters/saphinara/tongue.svg"
  35980. },
  35981. form: "normal"
  35982. },
  35983. headEnraged: {
  35984. height: math.unit(5.55, "feet"),
  35985. name: "Head (Enraged)",
  35986. image: {
  35987. source: "./media/characters/saphinara/head-enraged.svg"
  35988. },
  35989. form: "normal"
  35990. },
  35991. wings: {
  35992. height: math.unit(11.95, "feet"),
  35993. name: "Wings",
  35994. image: {
  35995. source: "./media/characters/saphinara/wings.svg"
  35996. },
  35997. form: "normal"
  35998. },
  35999. feathers: {
  36000. height: math.unit(8.92, "feet"),
  36001. name: "Feathers",
  36002. image: {
  36003. source: "./media/characters/saphinara/feathers.svg"
  36004. },
  36005. form: "normal"
  36006. },
  36007. shackles: {
  36008. height: math.unit(2, "feet"),
  36009. name: "Shackles",
  36010. image: {
  36011. source: "./media/characters/saphinara/shackles.svg"
  36012. },
  36013. form: "normal"
  36014. },
  36015. eyes: {
  36016. height: math.unit(1.331, "feet"),
  36017. name: "Eyes",
  36018. image: {
  36019. source: "./media/characters/saphinara/eyes.svg"
  36020. },
  36021. form: "normal"
  36022. },
  36023. eyesEnraged: {
  36024. height: math.unit(1.331, "feet"),
  36025. name: "Eyes (Enraged)",
  36026. image: {
  36027. source: "./media/characters/saphinara/eyes-enraged.svg"
  36028. },
  36029. form: "normal"
  36030. },
  36031. trueFormSide: {
  36032. height: math.unit(200, "feet"),
  36033. weight: math.unit(1e7, "tons"),
  36034. name: "Side",
  36035. image: {
  36036. source: "./media/characters/saphinara/true-form-side.svg",
  36037. extra: 1399/770,
  36038. bottom: 97/1496
  36039. },
  36040. form: "true-form",
  36041. default: true
  36042. },
  36043. trueFormMaw: {
  36044. height: math.unit(71.5, "feet"),
  36045. name: "Maw",
  36046. image: {
  36047. source: "./media/characters/saphinara/true-form-maw.svg",
  36048. extra: 2302/1453,
  36049. bottom: 0/2302
  36050. },
  36051. form: "true-form"
  36052. },
  36053. meowberusSide: {
  36054. height: math.unit(75, "feet"),
  36055. weight: math.unit(180000, "kg"),
  36056. preyCapacity: math.unit(50000, "people"),
  36057. name: "Side",
  36058. image: {
  36059. source: "./media/characters/saphinara/meowberus-side.svg",
  36060. extra: 1400/711,
  36061. bottom: 126/1526
  36062. },
  36063. form: "meowberus",
  36064. extraAttributes: {
  36065. "pawArea": {
  36066. name: "Paw Size",
  36067. power: 2,
  36068. type: "area",
  36069. base: math.unit(35, "m^2")
  36070. }
  36071. }
  36072. },
  36073. },
  36074. [
  36075. {
  36076. name: "Normal",
  36077. height: math.unit(15 + 7/12, "feet"),
  36078. default: true,
  36079. form: "normal"
  36080. },
  36081. {
  36082. name: "Angry",
  36083. height: math.unit(30 + 6/12, "feet"),
  36084. form: "normal"
  36085. },
  36086. {
  36087. name: "Enraged",
  36088. height: math.unit(102 + 1/12, "feet"),
  36089. form: "normal"
  36090. },
  36091. {
  36092. name: "True",
  36093. height: math.unit(200, "feet"),
  36094. default: true,
  36095. form: "true-form"
  36096. },
  36097. {
  36098. name: "Normal",
  36099. height: math.unit(75, "feet"),
  36100. default: true,
  36101. form: "meowberus"
  36102. },
  36103. ],
  36104. {
  36105. "normal": {
  36106. name: "Normal",
  36107. default: true
  36108. },
  36109. "true-form": {
  36110. name: "True Form"
  36111. },
  36112. "meowberus": {
  36113. name: "Meowberus",
  36114. },
  36115. }
  36116. ))
  36117. characterMakers.push(() => makeCharacter(
  36118. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36119. {
  36120. front: {
  36121. height: math.unit(6 + 8/12, "feet"),
  36122. weight: math.unit(300, "lb"),
  36123. name: "Front",
  36124. image: {
  36125. source: "./media/characters/jrain/front.svg",
  36126. extra: 3039/2865,
  36127. bottom: 399/3438
  36128. }
  36129. },
  36130. back: {
  36131. height: math.unit(6 + 8/12, "feet"),
  36132. weight: math.unit(300, "lb"),
  36133. name: "Back",
  36134. image: {
  36135. source: "./media/characters/jrain/back.svg",
  36136. extra: 3089/2938,
  36137. bottom: 172/3261
  36138. }
  36139. },
  36140. head: {
  36141. height: math.unit(2.14, "feet"),
  36142. name: "Head",
  36143. image: {
  36144. source: "./media/characters/jrain/head.svg"
  36145. }
  36146. },
  36147. maw: {
  36148. height: math.unit(1.77, "feet"),
  36149. name: "Maw",
  36150. image: {
  36151. source: "./media/characters/jrain/maw.svg"
  36152. }
  36153. },
  36154. leftHand: {
  36155. height: math.unit(1.1, "feet"),
  36156. name: "Left Hand",
  36157. image: {
  36158. source: "./media/characters/jrain/left-hand.svg"
  36159. }
  36160. },
  36161. rightHand: {
  36162. height: math.unit(1.1, "feet"),
  36163. name: "Right Hand",
  36164. image: {
  36165. source: "./media/characters/jrain/right-hand.svg"
  36166. }
  36167. },
  36168. eye: {
  36169. height: math.unit(0.35, "feet"),
  36170. name: "Eye",
  36171. image: {
  36172. source: "./media/characters/jrain/eye.svg"
  36173. }
  36174. },
  36175. },
  36176. [
  36177. {
  36178. name: "Normal",
  36179. height: math.unit(6 + 8/12, "feet"),
  36180. default: true
  36181. },
  36182. {
  36183. name: "Casually Large",
  36184. height: math.unit(25, "feet")
  36185. },
  36186. {
  36187. name: "Giant",
  36188. height: math.unit(100, "feet")
  36189. },
  36190. {
  36191. name: "Kaiju",
  36192. height: math.unit(300, "feet")
  36193. },
  36194. ]
  36195. ))
  36196. characterMakers.push(() => makeCharacter(
  36197. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36198. {
  36199. dragon: {
  36200. height: math.unit(5, "meters"),
  36201. name: "Dragon",
  36202. image: {
  36203. source: "./media/characters/sabrina/dragon.svg",
  36204. extra: 3670 / 2365,
  36205. bottom: 333 / 4003
  36206. }
  36207. },
  36208. gryphon: {
  36209. height: math.unit(3, "meters"),
  36210. name: "Gryphon",
  36211. image: {
  36212. source: "./media/characters/sabrina/gryphon.svg",
  36213. extra: 1576 / 945,
  36214. bottom: 71 / 1647
  36215. }
  36216. },
  36217. snake: {
  36218. height: math.unit(12, "meters"),
  36219. name: "Snake",
  36220. image: {
  36221. source: "./media/characters/sabrina/snake.svg",
  36222. extra: 1758 / 1320,
  36223. bottom: 186 / 1944
  36224. }
  36225. },
  36226. collar: {
  36227. height: math.unit(1.86, "meters"),
  36228. name: "Collar",
  36229. image: {
  36230. source: "./media/characters/sabrina/collar.svg"
  36231. }
  36232. },
  36233. eye: {
  36234. height: math.unit(0.53, "meters"),
  36235. name: "Eye",
  36236. image: {
  36237. source: "./media/characters/sabrina/eye.svg"
  36238. }
  36239. },
  36240. foot: {
  36241. height: math.unit(1.86, "meters"),
  36242. name: "Foot",
  36243. image: {
  36244. source: "./media/characters/sabrina/foot.svg"
  36245. }
  36246. },
  36247. hand: {
  36248. height: math.unit(1.32, "meters"),
  36249. name: "Hand",
  36250. image: {
  36251. source: "./media/characters/sabrina/hand.svg"
  36252. }
  36253. },
  36254. head: {
  36255. height: math.unit(2.44, "meters"),
  36256. name: "Head",
  36257. image: {
  36258. source: "./media/characters/sabrina/head.svg"
  36259. }
  36260. },
  36261. headAngry: {
  36262. height: math.unit(2.44, "meters"),
  36263. name: "Head (Angry))",
  36264. image: {
  36265. source: "./media/characters/sabrina/head-angry.svg"
  36266. }
  36267. },
  36268. maw: {
  36269. height: math.unit(1.65, "meters"),
  36270. name: "Maw",
  36271. image: {
  36272. source: "./media/characters/sabrina/maw.svg"
  36273. }
  36274. },
  36275. spikes: {
  36276. height: math.unit(1.69, "meters"),
  36277. name: "Spikes",
  36278. image: {
  36279. source: "./media/characters/sabrina/spikes.svg"
  36280. }
  36281. },
  36282. stomach: {
  36283. height: math.unit(1.15, "meters"),
  36284. name: "Stomach",
  36285. image: {
  36286. source: "./media/characters/sabrina/stomach.svg"
  36287. }
  36288. },
  36289. tongue: {
  36290. height: math.unit(1.27, "meters"),
  36291. name: "Tongue",
  36292. image: {
  36293. source: "./media/characters/sabrina/tongue.svg"
  36294. }
  36295. },
  36296. wingDorsal: {
  36297. height: math.unit(4.85, "meters"),
  36298. name: "Wing (Dorsal)",
  36299. image: {
  36300. source: "./media/characters/sabrina/wing-dorsal.svg"
  36301. }
  36302. },
  36303. wingVentral: {
  36304. height: math.unit(4.85, "meters"),
  36305. name: "Wing (Ventral)",
  36306. image: {
  36307. source: "./media/characters/sabrina/wing-ventral.svg"
  36308. }
  36309. },
  36310. },
  36311. [
  36312. {
  36313. name: "Normal",
  36314. height: math.unit(5, "meters"),
  36315. default: true
  36316. },
  36317. ]
  36318. ))
  36319. characterMakers.push(() => makeCharacter(
  36320. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36321. {
  36322. frontMaid: {
  36323. height: math.unit(5 + 5/12, "feet"),
  36324. weight: math.unit(130, "lb"),
  36325. name: "Front (Maid)",
  36326. image: {
  36327. source: "./media/characters/midnight-tales/front-maid.svg",
  36328. extra: 489/454,
  36329. bottom: 61/550
  36330. }
  36331. },
  36332. frontFormal: {
  36333. height: math.unit(5 + 5/12, "feet"),
  36334. weight: math.unit(130, "lb"),
  36335. name: "Front (Formal)",
  36336. image: {
  36337. source: "./media/characters/midnight-tales/front-formal.svg",
  36338. extra: 489/454,
  36339. bottom: 61/550
  36340. }
  36341. },
  36342. back: {
  36343. height: math.unit(5 + 5/12, "feet"),
  36344. weight: math.unit(130, "lb"),
  36345. name: "Back",
  36346. image: {
  36347. source: "./media/characters/midnight-tales/back.svg",
  36348. extra: 498/456,
  36349. bottom: 33/531
  36350. }
  36351. },
  36352. frontBeast: {
  36353. height: math.unit(40, "feet"),
  36354. weight: math.unit(64000, "lb"),
  36355. name: "Front (Beast)",
  36356. image: {
  36357. source: "./media/characters/midnight-tales/front-beast.svg",
  36358. extra: 927/860,
  36359. bottom: 53/980
  36360. }
  36361. },
  36362. backBeast: {
  36363. height: math.unit(40, "feet"),
  36364. weight: math.unit(64000, "lb"),
  36365. name: "Back (Beast)",
  36366. image: {
  36367. source: "./media/characters/midnight-tales/back-beast.svg",
  36368. extra: 929/855,
  36369. bottom: 16/945
  36370. }
  36371. },
  36372. footBeast: {
  36373. height: math.unit(6.7, "feet"),
  36374. name: "Foot (Beast)",
  36375. image: {
  36376. source: "./media/characters/midnight-tales/foot-beast.svg"
  36377. }
  36378. },
  36379. headBeast: {
  36380. height: math.unit(8, "feet"),
  36381. name: "Head (Beast)",
  36382. image: {
  36383. source: "./media/characters/midnight-tales/head-beast.svg"
  36384. }
  36385. },
  36386. },
  36387. [
  36388. {
  36389. name: "Normal",
  36390. height: math.unit(5 + 5 / 12, "feet"),
  36391. default: true
  36392. },
  36393. {
  36394. name: "Macro",
  36395. height: math.unit(25, "feet")
  36396. },
  36397. ]
  36398. ))
  36399. characterMakers.push(() => makeCharacter(
  36400. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36401. {
  36402. front: {
  36403. height: math.unit(5 + 10/12, "feet"),
  36404. name: "Front",
  36405. image: {
  36406. source: "./media/characters/argon/front.svg",
  36407. extra: 2009/1935,
  36408. bottom: 118/2127
  36409. }
  36410. },
  36411. back: {
  36412. height: math.unit(5 + 10/12, "feet"),
  36413. name: "Back",
  36414. image: {
  36415. source: "./media/characters/argon/back.svg",
  36416. extra: 2047/1992,
  36417. bottom: 20/2067
  36418. }
  36419. },
  36420. frontDressed: {
  36421. height: math.unit(5 + 10/12, "feet"),
  36422. name: "Front (Dressed)",
  36423. image: {
  36424. source: "./media/characters/argon/front-dressed.svg",
  36425. extra: 2009/1935,
  36426. bottom: 118/2127
  36427. }
  36428. },
  36429. },
  36430. [
  36431. {
  36432. name: "Normal",
  36433. height: math.unit(5 + 10/12, "feet"),
  36434. default: true
  36435. },
  36436. ]
  36437. ))
  36438. characterMakers.push(() => makeCharacter(
  36439. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36440. {
  36441. front: {
  36442. height: math.unit(8 + 6/12, "feet"),
  36443. weight: math.unit(1150, "lb"),
  36444. name: "Front",
  36445. image: {
  36446. source: "./media/characters/kichi/front.svg",
  36447. extra: 1267/1164,
  36448. bottom: 61/1328
  36449. }
  36450. },
  36451. back: {
  36452. height: math.unit(8 + 6/12, "feet"),
  36453. weight: math.unit(1150, "lb"),
  36454. name: "Back",
  36455. image: {
  36456. source: "./media/characters/kichi/back.svg",
  36457. extra: 1273/1166,
  36458. bottom: 33/1306
  36459. }
  36460. },
  36461. },
  36462. [
  36463. {
  36464. name: "Normal",
  36465. height: math.unit(8 + 6/12, "feet"),
  36466. default: true
  36467. },
  36468. ]
  36469. ))
  36470. characterMakers.push(() => makeCharacter(
  36471. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36472. {
  36473. front: {
  36474. height: math.unit(6, "feet"),
  36475. weight: math.unit(210, "lb"),
  36476. name: "Front",
  36477. image: {
  36478. source: "./media/characters/manetel-greyscale/front.svg",
  36479. extra: 350/312,
  36480. bottom: 8/358
  36481. }
  36482. },
  36483. },
  36484. [
  36485. {
  36486. name: "Micro",
  36487. height: math.unit(2, "inches")
  36488. },
  36489. {
  36490. name: "Normal",
  36491. height: math.unit(6, "feet"),
  36492. default: true
  36493. },
  36494. {
  36495. name: "Minimacro",
  36496. height: math.unit(17, "feet")
  36497. },
  36498. {
  36499. name: "Macro",
  36500. height: math.unit(117, "feet")
  36501. },
  36502. ]
  36503. ))
  36504. characterMakers.push(() => makeCharacter(
  36505. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36506. {
  36507. side: {
  36508. height: math.unit(5 + 1/12, "feet"),
  36509. weight: math.unit(418, "lb"),
  36510. name: "Side",
  36511. image: {
  36512. source: "./media/characters/softpurr/side.svg",
  36513. extra: 1993/1945,
  36514. bottom: 134/2127
  36515. }
  36516. },
  36517. front: {
  36518. height: math.unit(5 + 1/12, "feet"),
  36519. weight: math.unit(418, "lb"),
  36520. name: "Front",
  36521. image: {
  36522. source: "./media/characters/softpurr/front.svg",
  36523. extra: 1950/1856,
  36524. bottom: 174/2124
  36525. }
  36526. },
  36527. paw: {
  36528. height: math.unit(1, "feet"),
  36529. name: "Paw",
  36530. image: {
  36531. source: "./media/characters/softpurr/paw.svg"
  36532. }
  36533. },
  36534. },
  36535. [
  36536. {
  36537. name: "Normal",
  36538. height: math.unit(5 + 1/12, "feet"),
  36539. default: true
  36540. },
  36541. ]
  36542. ))
  36543. characterMakers.push(() => makeCharacter(
  36544. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36545. {
  36546. front: {
  36547. height: math.unit(260, "meters"),
  36548. name: "Front",
  36549. image: {
  36550. source: "./media/characters/anahita/front.svg",
  36551. extra: 665/635,
  36552. bottom: 89/754
  36553. }
  36554. },
  36555. },
  36556. [
  36557. {
  36558. name: "Macro",
  36559. height: math.unit(260, "meters"),
  36560. default: true
  36561. },
  36562. ]
  36563. ))
  36564. characterMakers.push(() => makeCharacter(
  36565. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36566. {
  36567. front: {
  36568. height: math.unit(4 + 10/12, "feet"),
  36569. weight: math.unit(160, "lb"),
  36570. name: "Front",
  36571. image: {
  36572. source: "./media/characters/chip-mouse/front.svg",
  36573. extra: 3528/3408,
  36574. bottom: 0/3528
  36575. }
  36576. },
  36577. frontNsfw: {
  36578. height: math.unit(4 + 10/12, "feet"),
  36579. weight: math.unit(160, "lb"),
  36580. name: "Front (NSFW)",
  36581. image: {
  36582. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36583. extra: 3528/3408,
  36584. bottom: 0/3528
  36585. }
  36586. },
  36587. },
  36588. [
  36589. {
  36590. name: "Normal",
  36591. height: math.unit(4 + 10/12, "feet"),
  36592. default: true
  36593. },
  36594. ]
  36595. ))
  36596. characterMakers.push(() => makeCharacter(
  36597. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36598. {
  36599. side: {
  36600. height: math.unit(10, "feet"),
  36601. weight: math.unit(14000, "lb"),
  36602. name: "Side",
  36603. image: {
  36604. source: "./media/characters/kremm/side.svg",
  36605. extra: 1390/1053,
  36606. bottom: 90/1480
  36607. }
  36608. },
  36609. gut: {
  36610. height: math.unit(5.8, "feet"),
  36611. name: "Gut",
  36612. image: {
  36613. source: "./media/characters/kremm/gut.svg"
  36614. }
  36615. },
  36616. ass: {
  36617. height: math.unit(6.1, "feet"),
  36618. name: "Ass",
  36619. image: {
  36620. source: "./media/characters/kremm/ass.svg"
  36621. }
  36622. },
  36623. jaws: {
  36624. height: math.unit(2.2, "feet"),
  36625. name: "Jaws",
  36626. image: {
  36627. source: "./media/characters/kremm/jaws.svg"
  36628. }
  36629. },
  36630. dick: {
  36631. height: math.unit(4.26, "feet"),
  36632. name: "Dick",
  36633. image: {
  36634. source: "./media/characters/kremm/dick.svg"
  36635. }
  36636. },
  36637. },
  36638. [
  36639. {
  36640. name: "Normal",
  36641. height: math.unit(10, "feet"),
  36642. default: true
  36643. },
  36644. ]
  36645. ))
  36646. characterMakers.push(() => makeCharacter(
  36647. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36648. {
  36649. front: {
  36650. height: math.unit(30, "stories"),
  36651. name: "Front",
  36652. image: {
  36653. source: "./media/characters/kai/front.svg",
  36654. extra: 1892/1718,
  36655. bottom: 162/2054
  36656. }
  36657. },
  36658. },
  36659. [
  36660. {
  36661. name: "Macro",
  36662. height: math.unit(30, "stories"),
  36663. default: true
  36664. },
  36665. ]
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36669. {
  36670. front: {
  36671. height: math.unit(6 + 4/12, "feet"),
  36672. weight: math.unit(145, "lb"),
  36673. name: "Front",
  36674. image: {
  36675. source: "./media/characters/sykes/front.svg",
  36676. extra: 1321 / 1187,
  36677. bottom: 66 / 1387
  36678. }
  36679. },
  36680. back: {
  36681. height: math.unit(6 + 4/12, "feet"),
  36682. weight: math.unit(145, "lb"),
  36683. name: "Back",
  36684. image: {
  36685. source: "./media/characters/sykes/back.svg",
  36686. extra: 1326/1181,
  36687. bottom: 31/1357
  36688. }
  36689. },
  36690. traditionalOutfit: {
  36691. height: math.unit(6 + 4/12, "feet"),
  36692. weight: math.unit(145, "lb"),
  36693. name: "Traditional Outfit",
  36694. image: {
  36695. source: "./media/characters/sykes/traditional-outfit.svg",
  36696. extra: 1321 / 1187,
  36697. bottom: 66 / 1387
  36698. }
  36699. },
  36700. adventureOutfit: {
  36701. height: math.unit(6 + 4/12, "feet"),
  36702. weight: math.unit(145, "lb"),
  36703. name: "Adventure Outfit",
  36704. image: {
  36705. source: "./media/characters/sykes/adventure-outfit.svg",
  36706. extra: 1321 / 1187,
  36707. bottom: 66 / 1387
  36708. }
  36709. },
  36710. handLeft: {
  36711. height: math.unit(0.9, "feet"),
  36712. name: "Hand (Left)",
  36713. image: {
  36714. source: "./media/characters/sykes/hand-left.svg"
  36715. }
  36716. },
  36717. handRight: {
  36718. height: math.unit(0.839, "feet"),
  36719. name: "Hand (Right)",
  36720. image: {
  36721. source: "./media/characters/sykes/hand-right.svg"
  36722. }
  36723. },
  36724. leftFoot: {
  36725. height: math.unit(1.2, "feet"),
  36726. name: "Foot (Left)",
  36727. image: {
  36728. source: "./media/characters/sykes/foot-left.svg"
  36729. }
  36730. },
  36731. rightFoot: {
  36732. height: math.unit(1.2, "feet"),
  36733. name: "Foot (Right)",
  36734. image: {
  36735. source: "./media/characters/sykes/foot-right.svg"
  36736. }
  36737. },
  36738. maw: {
  36739. height: math.unit(1.93, "feet"),
  36740. name: "Maw",
  36741. image: {
  36742. source: "./media/characters/sykes/maw.svg"
  36743. }
  36744. },
  36745. teeth: {
  36746. height: math.unit(0.51, "feet"),
  36747. name: "Teeth",
  36748. image: {
  36749. source: "./media/characters/sykes/teeth.svg"
  36750. }
  36751. },
  36752. tongue: {
  36753. height: math.unit(2.13, "feet"),
  36754. name: "Tongue",
  36755. image: {
  36756. source: "./media/characters/sykes/tongue.svg"
  36757. }
  36758. },
  36759. uvula: {
  36760. height: math.unit(0.16, "feet"),
  36761. name: "Uvula",
  36762. image: {
  36763. source: "./media/characters/sykes/uvula.svg"
  36764. }
  36765. },
  36766. collar: {
  36767. height: math.unit(0.287, "feet"),
  36768. name: "Collar",
  36769. image: {
  36770. source: "./media/characters/sykes/collar.svg"
  36771. }
  36772. },
  36773. tail: {
  36774. height: math.unit(3.8, "feet"),
  36775. name: "Tail",
  36776. image: {
  36777. source: "./media/characters/sykes/tail.svg"
  36778. }
  36779. },
  36780. },
  36781. [
  36782. {
  36783. name: "Shrunken",
  36784. height: math.unit(5, "inches")
  36785. },
  36786. {
  36787. name: "Normal",
  36788. height: math.unit(6 + 4 / 12, "feet"),
  36789. default: true
  36790. },
  36791. {
  36792. name: "Big",
  36793. height: math.unit(15, "feet")
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(5 + 8/12, "feet"),
  36802. weight: math.unit(190, "lb"),
  36803. name: "Front",
  36804. image: {
  36805. source: "./media/characters/oven-otter/front.svg",
  36806. extra: 1809/1740,
  36807. bottom: 181/1990
  36808. }
  36809. },
  36810. back: {
  36811. height: math.unit(5 + 8/12, "feet"),
  36812. weight: math.unit(190, "lb"),
  36813. name: "Back",
  36814. image: {
  36815. source: "./media/characters/oven-otter/back.svg",
  36816. extra: 1709/1635,
  36817. bottom: 118/1827
  36818. }
  36819. },
  36820. hand: {
  36821. height: math.unit(1.07, "feet"),
  36822. name: "Hand",
  36823. image: {
  36824. source: "./media/characters/oven-otter/hand.svg"
  36825. }
  36826. },
  36827. beans: {
  36828. height: math.unit(1.74, "feet"),
  36829. name: "Beans",
  36830. image: {
  36831. source: "./media/characters/oven-otter/beans.svg"
  36832. }
  36833. },
  36834. },
  36835. [
  36836. {
  36837. name: "Micro",
  36838. height: math.unit(0.5, "inches")
  36839. },
  36840. {
  36841. name: "Normal",
  36842. height: math.unit(5 + 8/12, "feet"),
  36843. default: true
  36844. },
  36845. {
  36846. name: "Macro",
  36847. height: math.unit(250, "feet")
  36848. },
  36849. {
  36850. name: "Really High",
  36851. height: math.unit(420, "feet")
  36852. },
  36853. ]
  36854. ))
  36855. characterMakers.push(() => makeCharacter(
  36856. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36857. {
  36858. front: {
  36859. height: math.unit(5, "meters"),
  36860. weight: math.unit(292000000000000, "kg"),
  36861. name: "Front",
  36862. image: {
  36863. source: "./media/characters/devourer/front.svg",
  36864. extra: 1800/1733,
  36865. bottom: 211/2011
  36866. }
  36867. },
  36868. maw: {
  36869. height: math.unit(1.1, "meter"),
  36870. name: "Maw",
  36871. image: {
  36872. source: "./media/characters/devourer/maw.svg"
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Small",
  36879. height: math.unit(3, "meters")
  36880. },
  36881. {
  36882. name: "Large",
  36883. height: math.unit(5, "meters"),
  36884. default: true
  36885. },
  36886. ]
  36887. ))
  36888. characterMakers.push(() => makeCharacter(
  36889. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36890. {
  36891. front: {
  36892. height: math.unit(6, "feet"),
  36893. weight: math.unit(400, "lb"),
  36894. name: "Front",
  36895. image: {
  36896. source: "./media/characters/ellarby/front.svg",
  36897. extra: 1909/1763,
  36898. bottom: 80/1989
  36899. }
  36900. },
  36901. back: {
  36902. height: math.unit(6, "feet"),
  36903. weight: math.unit(400, "lb"),
  36904. name: "Back",
  36905. image: {
  36906. source: "./media/characters/ellarby/back.svg",
  36907. extra: 1914/1784,
  36908. bottom: 172/2086
  36909. }
  36910. },
  36911. },
  36912. [
  36913. {
  36914. name: "Mischief",
  36915. height: math.unit(18, "inches")
  36916. },
  36917. {
  36918. name: "Trouble",
  36919. height: math.unit(12, "feet")
  36920. },
  36921. {
  36922. name: "Havoc",
  36923. height: math.unit(200, "feet"),
  36924. default: true
  36925. },
  36926. {
  36927. name: "Pandemonium",
  36928. height: math.unit(1, "mile")
  36929. },
  36930. {
  36931. name: "Catastrophe",
  36932. height: math.unit(100, "miles")
  36933. },
  36934. ]
  36935. ))
  36936. characterMakers.push(() => makeCharacter(
  36937. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36938. {
  36939. front: {
  36940. height: math.unit(4.7, "meters"),
  36941. weight: math.unit(6500, "kg"),
  36942. name: "Front",
  36943. image: {
  36944. source: "./media/characters/vex/front.svg",
  36945. extra: 1288/1140,
  36946. bottom: 100/1388
  36947. }
  36948. },
  36949. },
  36950. [
  36951. {
  36952. name: "Normal",
  36953. height: math.unit(4.7, "meters"),
  36954. default: true
  36955. },
  36956. ]
  36957. ))
  36958. characterMakers.push(() => makeCharacter(
  36959. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36960. {
  36961. normal: {
  36962. height: math.unit(6, "feet"),
  36963. weight: math.unit(350, "lb"),
  36964. name: "Normal",
  36965. image: {
  36966. source: "./media/characters/teshy/normal.svg",
  36967. extra: 1795/1735,
  36968. bottom: 16/1811
  36969. }
  36970. },
  36971. monsterFront: {
  36972. height: math.unit(12, "feet"),
  36973. weight: math.unit(4700, "lb"),
  36974. name: "Monster (Front)",
  36975. image: {
  36976. source: "./media/characters/teshy/monster-front.svg",
  36977. extra: 2042/2034,
  36978. bottom: 128/2170
  36979. }
  36980. },
  36981. monsterSide: {
  36982. height: math.unit(12, "feet"),
  36983. weight: math.unit(4700, "lb"),
  36984. name: "Monster (Side)",
  36985. image: {
  36986. source: "./media/characters/teshy/monster-side.svg",
  36987. extra: 2067/2056,
  36988. bottom: 70/2137
  36989. }
  36990. },
  36991. monsterBack: {
  36992. height: math.unit(12, "feet"),
  36993. weight: math.unit(4700, "lb"),
  36994. name: "Monster (Back)",
  36995. image: {
  36996. source: "./media/characters/teshy/monster-back.svg",
  36997. extra: 1921/1914,
  36998. bottom: 171/2092
  36999. }
  37000. },
  37001. },
  37002. [
  37003. {
  37004. name: "Normal",
  37005. height: math.unit(6, "feet"),
  37006. default: true
  37007. },
  37008. ]
  37009. ))
  37010. characterMakers.push(() => makeCharacter(
  37011. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37012. {
  37013. front: {
  37014. height: math.unit(6, "feet"),
  37015. name: "Front",
  37016. image: {
  37017. source: "./media/characters/ramey/front.svg",
  37018. extra: 790/787,
  37019. bottom: 27/817
  37020. }
  37021. },
  37022. },
  37023. [
  37024. {
  37025. name: "Normal",
  37026. height: math.unit(6, "feet"),
  37027. default: true
  37028. },
  37029. ]
  37030. ))
  37031. characterMakers.push(() => makeCharacter(
  37032. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37033. {
  37034. front: {
  37035. height: math.unit(5 + 5/12, "feet"),
  37036. weight: math.unit(120, "lb"),
  37037. name: "Front",
  37038. image: {
  37039. source: "./media/characters/phirae/front.svg",
  37040. extra: 2491/2436,
  37041. bottom: 38/2529
  37042. }
  37043. },
  37044. },
  37045. [
  37046. {
  37047. name: "Normal",
  37048. height: math.unit(5 + 5/12, "feet"),
  37049. default: true
  37050. },
  37051. ]
  37052. ))
  37053. characterMakers.push(() => makeCharacter(
  37054. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37055. {
  37056. front: {
  37057. height: math.unit(5 + 3/12, "feet"),
  37058. name: "Front",
  37059. image: {
  37060. source: "./media/characters/stagglas/front.svg",
  37061. extra: 962/882,
  37062. bottom: 53/1015
  37063. }
  37064. },
  37065. feral: {
  37066. height: math.unit(335, "cm"),
  37067. name: "Feral",
  37068. image: {
  37069. source: "./media/characters/stagglas/feral.svg",
  37070. extra: 1732/1090,
  37071. bottom: 48/1780
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Normal",
  37078. height: math.unit(5 + 3/12, "feet"),
  37079. default: true
  37080. },
  37081. ]
  37082. ))
  37083. characterMakers.push(() => makeCharacter(
  37084. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37085. {
  37086. front: {
  37087. height: math.unit(5 + 4/12, "feet"),
  37088. weight: math.unit(145, "lb"),
  37089. name: "Front",
  37090. image: {
  37091. source: "./media/characters/starra/front.svg",
  37092. extra: 1790/1691,
  37093. bottom: 91/1881
  37094. }
  37095. },
  37096. },
  37097. [
  37098. {
  37099. name: "Normal",
  37100. height: math.unit(5 + 4/12, "feet"),
  37101. default: true
  37102. },
  37103. ]
  37104. ))
  37105. characterMakers.push(() => makeCharacter(
  37106. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37107. {
  37108. front: {
  37109. height: math.unit(3.5, "meters"),
  37110. name: "Front",
  37111. image: {
  37112. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37113. extra: 1248/972,
  37114. bottom: 38/1286
  37115. }
  37116. },
  37117. },
  37118. [
  37119. {
  37120. name: "Normal",
  37121. height: math.unit(3.5, "meters"),
  37122. default: true
  37123. },
  37124. ]
  37125. ))
  37126. characterMakers.push(() => makeCharacter(
  37127. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37128. {
  37129. side: {
  37130. height: math.unit(8 + 2/12, "feet"),
  37131. weight: math.unit(1240, "lb"),
  37132. name: "Side",
  37133. image: {
  37134. source: "./media/characters/mika-valentine/side.svg",
  37135. extra: 2670/2501,
  37136. bottom: 250/2920
  37137. }
  37138. },
  37139. },
  37140. [
  37141. {
  37142. name: "Normal",
  37143. height: math.unit(8 + 2/12, "feet"),
  37144. default: true
  37145. },
  37146. ]
  37147. ))
  37148. characterMakers.push(() => makeCharacter(
  37149. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37150. {
  37151. front: {
  37152. height: math.unit(7 + 2/12, "feet"),
  37153. name: "Front",
  37154. image: {
  37155. source: "./media/characters/xoltol/front.svg",
  37156. extra: 2212/2124,
  37157. bottom: 84/2296
  37158. }
  37159. },
  37160. side: {
  37161. height: math.unit(7 + 2/12, "feet"),
  37162. name: "Side",
  37163. image: {
  37164. source: "./media/characters/xoltol/side.svg",
  37165. extra: 2273/2197,
  37166. bottom: 26/2299
  37167. }
  37168. },
  37169. hand: {
  37170. height: math.unit(2.5, "feet"),
  37171. name: "Hand",
  37172. image: {
  37173. source: "./media/characters/xoltol/hand.svg"
  37174. }
  37175. },
  37176. },
  37177. [
  37178. {
  37179. name: "Small-ish",
  37180. height: math.unit(5 + 11/12, "feet")
  37181. },
  37182. {
  37183. name: "Normal",
  37184. height: math.unit(7 + 2/12, "feet")
  37185. },
  37186. {
  37187. name: "\"Macro\"",
  37188. height: math.unit(14 + 9/12, "feet"),
  37189. default: true
  37190. },
  37191. {
  37192. name: "Alternate Height",
  37193. height: math.unit(20, "feet")
  37194. },
  37195. {
  37196. name: "Actually Macro",
  37197. height: math.unit(100, "feet")
  37198. },
  37199. ]
  37200. ))
  37201. characterMakers.push(() => makeCharacter(
  37202. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37203. {
  37204. front: {
  37205. height: math.unit(5 + 2/12, "feet"),
  37206. weight: math.unit(75, "kg"),
  37207. name: "Front",
  37208. image: {
  37209. source: "./media/characters/kotetsu-redwood/front.svg",
  37210. extra: 1053/942,
  37211. bottom: 60/1113
  37212. }
  37213. },
  37214. },
  37215. [
  37216. {
  37217. name: "Normal",
  37218. height: math.unit(5 + 2/12, "feet"),
  37219. default: true
  37220. },
  37221. ]
  37222. ))
  37223. characterMakers.push(() => makeCharacter(
  37224. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37225. {
  37226. front: {
  37227. height: math.unit(2.4, "meters"),
  37228. weight: math.unit(125, "kg"),
  37229. name: "Front",
  37230. image: {
  37231. source: "./media/characters/lilith/front.svg",
  37232. extra: 1590/1513,
  37233. bottom: 203/1793
  37234. }
  37235. },
  37236. },
  37237. [
  37238. {
  37239. name: "Humanoid",
  37240. height: math.unit(2.4, "meters")
  37241. },
  37242. {
  37243. name: "Normal",
  37244. height: math.unit(6, "meters"),
  37245. default: true
  37246. },
  37247. {
  37248. name: "Largest",
  37249. height: math.unit(55, "meters")
  37250. },
  37251. ]
  37252. ))
  37253. characterMakers.push(() => makeCharacter(
  37254. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37255. {
  37256. front: {
  37257. height: math.unit(8 + 4/12, "feet"),
  37258. weight: math.unit(535, "lb"),
  37259. name: "Front",
  37260. image: {
  37261. source: "./media/characters/beh'kah-bolger/front.svg",
  37262. extra: 1660/1603,
  37263. bottom: 37/1697
  37264. }
  37265. },
  37266. },
  37267. [
  37268. {
  37269. name: "Normal",
  37270. height: math.unit(8 + 4/12, "feet"),
  37271. default: true
  37272. },
  37273. {
  37274. name: "Kaiju",
  37275. height: math.unit(250, "feet")
  37276. },
  37277. {
  37278. name: "Still Growing",
  37279. height: math.unit(10, "miles")
  37280. },
  37281. {
  37282. name: "Continental",
  37283. height: math.unit(5000, "miles")
  37284. },
  37285. {
  37286. name: "Final Form",
  37287. height: math.unit(2500000, "miles")
  37288. },
  37289. ]
  37290. ))
  37291. characterMakers.push(() => makeCharacter(
  37292. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37293. {
  37294. front: {
  37295. height: math.unit(7 + 2/12, "feet"),
  37296. weight: math.unit(230, "kg"),
  37297. name: "Front",
  37298. image: {
  37299. source: "./media/characters/tatyana-milewska/front.svg",
  37300. extra: 1199/1150,
  37301. bottom: 86/1285
  37302. }
  37303. },
  37304. },
  37305. [
  37306. {
  37307. name: "Normal",
  37308. height: math.unit(7 + 2/12, "feet"),
  37309. default: true
  37310. },
  37311. {
  37312. name: "Big",
  37313. height: math.unit(12, "feet")
  37314. },
  37315. {
  37316. name: "Minimacro",
  37317. height: math.unit(20, "feet")
  37318. },
  37319. {
  37320. name: "Macro",
  37321. height: math.unit(120, "feet")
  37322. },
  37323. ]
  37324. ))
  37325. characterMakers.push(() => makeCharacter(
  37326. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37327. {
  37328. front: {
  37329. height: math.unit(7 + 8/12, "feet"),
  37330. weight: math.unit(152, "kg"),
  37331. name: "Front",
  37332. image: {
  37333. source: "./media/characters/helen-arri/front.svg",
  37334. extra: 440/423,
  37335. bottom: 14/454
  37336. }
  37337. },
  37338. back: {
  37339. height: math.unit(7 + 8/12, "feet"),
  37340. weight: math.unit(152, "kg"),
  37341. name: "Back",
  37342. image: {
  37343. source: "./media/characters/helen-arri/back.svg",
  37344. extra: 443/426,
  37345. bottom: 8/451
  37346. }
  37347. },
  37348. },
  37349. [
  37350. {
  37351. name: "Normal",
  37352. height: math.unit(7 + 8/12, "feet"),
  37353. default: true
  37354. },
  37355. {
  37356. name: "Big",
  37357. height: math.unit(14, "feet")
  37358. },
  37359. {
  37360. name: "Minimacro",
  37361. height: math.unit(24, "feet")
  37362. },
  37363. {
  37364. name: "Macro",
  37365. height: math.unit(140, "feet")
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(6, "meters"),
  37374. name: "Front",
  37375. image: {
  37376. source: "./media/characters/ehanu-rehu/front.svg",
  37377. extra: 1800/1800,
  37378. bottom: 59/1859
  37379. }
  37380. },
  37381. },
  37382. [
  37383. {
  37384. name: "Normal",
  37385. height: math.unit(6, "meters"),
  37386. default: true
  37387. },
  37388. ]
  37389. ))
  37390. characterMakers.push(() => makeCharacter(
  37391. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37392. {
  37393. front: {
  37394. height: math.unit(7 + 3/12, "feet"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/renholder/front.svg",
  37398. extra: 3096/2960,
  37399. bottom: 250/3346
  37400. }
  37401. },
  37402. },
  37403. [
  37404. {
  37405. name: "Normal Bat",
  37406. height: math.unit(7 + 3/12, "feet"),
  37407. default: true
  37408. },
  37409. {
  37410. name: "Slightly Tall Bat",
  37411. height: math.unit(100, "feet")
  37412. },
  37413. {
  37414. name: "Big Bat",
  37415. height: math.unit(1000, "feet")
  37416. },
  37417. {
  37418. name: "City-Sized Bat",
  37419. height: math.unit(200000, "feet")
  37420. },
  37421. {
  37422. name: "Bigger Bat",
  37423. height: math.unit(10000, "miles")
  37424. },
  37425. {
  37426. name: "Solar Sized Bat",
  37427. height: math.unit(100, "AU")
  37428. },
  37429. {
  37430. name: "Galactic Bat",
  37431. height: math.unit(200000, "lightyears")
  37432. },
  37433. {
  37434. name: "Universally Known Bat",
  37435. height: math.unit(1, "universe")
  37436. },
  37437. ]
  37438. ))
  37439. characterMakers.push(() => makeCharacter(
  37440. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37441. {
  37442. front: {
  37443. height: math.unit(6 + 11/12, "feet"),
  37444. weight: math.unit(250, "lb"),
  37445. name: "Front",
  37446. image: {
  37447. source: "./media/characters/cookiecat/front.svg",
  37448. extra: 893/827,
  37449. bottom: 14/907
  37450. }
  37451. },
  37452. },
  37453. [
  37454. {
  37455. name: "Micro",
  37456. height: math.unit(3, "inches")
  37457. },
  37458. {
  37459. name: "Normal",
  37460. height: math.unit(6 + 11/12, "feet"),
  37461. default: true
  37462. },
  37463. {
  37464. name: "Macro",
  37465. height: math.unit(100, "feet")
  37466. },
  37467. {
  37468. name: "Macro+",
  37469. height: math.unit(404, "feet")
  37470. },
  37471. {
  37472. name: "Megamacro",
  37473. height: math.unit(165, "miles")
  37474. },
  37475. {
  37476. name: "Planetary",
  37477. height: math.unit(4600, "miles")
  37478. },
  37479. ]
  37480. ))
  37481. characterMakers.push(() => makeCharacter(
  37482. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37483. {
  37484. front: {
  37485. height: math.unit(10 + 3/12, "feet"),
  37486. weight: math.unit(1500, "lb"),
  37487. name: "Front",
  37488. image: {
  37489. source: "./media/characters/tux-kusanagi/front.svg",
  37490. extra: 944/840,
  37491. bottom: 39/983
  37492. }
  37493. },
  37494. back: {
  37495. height: math.unit(10 + 3/12, "feet"),
  37496. weight: math.unit(1500, "lb"),
  37497. name: "Back",
  37498. image: {
  37499. source: "./media/characters/tux-kusanagi/back.svg",
  37500. extra: 941/842,
  37501. bottom: 28/969
  37502. }
  37503. },
  37504. rump: {
  37505. height: math.unit(5.25, "feet"),
  37506. name: "Rump",
  37507. image: {
  37508. source: "./media/characters/tux-kusanagi/rump.svg"
  37509. }
  37510. },
  37511. beak: {
  37512. height: math.unit(1.54, "feet"),
  37513. name: "Beak",
  37514. image: {
  37515. source: "./media/characters/tux-kusanagi/beak.svg"
  37516. }
  37517. },
  37518. },
  37519. [
  37520. {
  37521. name: "Normal",
  37522. height: math.unit(10 + 3/12, "feet"),
  37523. default: true
  37524. },
  37525. ]
  37526. ))
  37527. characterMakers.push(() => makeCharacter(
  37528. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37529. {
  37530. front: {
  37531. height: math.unit(58, "feet"),
  37532. weight: math.unit(200, "tons"),
  37533. name: "Front",
  37534. image: {
  37535. source: "./media/characters/uzarmazari/front.svg",
  37536. extra: 1575/1455,
  37537. bottom: 152/1727
  37538. }
  37539. },
  37540. back: {
  37541. height: math.unit(58, "feet"),
  37542. weight: math.unit(200, "tons"),
  37543. name: "Back",
  37544. image: {
  37545. source: "./media/characters/uzarmazari/back.svg",
  37546. extra: 1585/1510,
  37547. bottom: 157/1742
  37548. }
  37549. },
  37550. head: {
  37551. height: math.unit(26, "feet"),
  37552. name: "Head",
  37553. image: {
  37554. source: "./media/characters/uzarmazari/head.svg"
  37555. }
  37556. },
  37557. },
  37558. [
  37559. {
  37560. name: "Normal",
  37561. height: math.unit(58, "feet"),
  37562. default: true
  37563. },
  37564. ]
  37565. ))
  37566. characterMakers.push(() => makeCharacter(
  37567. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37568. {
  37569. side: {
  37570. height: math.unit(15, "feet"),
  37571. name: "Side",
  37572. image: {
  37573. source: "./media/characters/akitu/side.svg",
  37574. extra: 1421/1321,
  37575. bottom: 157/1578
  37576. }
  37577. },
  37578. front: {
  37579. height: math.unit(15, "feet"),
  37580. name: "Front",
  37581. image: {
  37582. source: "./media/characters/akitu/front.svg",
  37583. extra: 1435/1326,
  37584. bottom: 232/1667
  37585. }
  37586. },
  37587. },
  37588. [
  37589. {
  37590. name: "Normal",
  37591. height: math.unit(15, "feet"),
  37592. default: true
  37593. },
  37594. ]
  37595. ))
  37596. characterMakers.push(() => makeCharacter(
  37597. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37598. {
  37599. front: {
  37600. height: math.unit(10 + 8/12, "feet"),
  37601. name: "Front",
  37602. image: {
  37603. source: "./media/characters/azalie-croixland/front.svg",
  37604. extra: 1972/1856,
  37605. bottom: 31/2003
  37606. }
  37607. },
  37608. },
  37609. [
  37610. {
  37611. name: "Original Height",
  37612. height: math.unit(5 + 4/12, "feet")
  37613. },
  37614. {
  37615. name: "Normal Height",
  37616. height: math.unit(10 + 8/12, "feet"),
  37617. default: true
  37618. },
  37619. ]
  37620. ))
  37621. characterMakers.push(() => makeCharacter(
  37622. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37623. {
  37624. side: {
  37625. height: math.unit(7 + 1/12, "feet"),
  37626. weight: math.unit(245, "lb"),
  37627. name: "Side",
  37628. image: {
  37629. source: "./media/characters/kavus-kazian/side.svg",
  37630. extra: 349/342,
  37631. bottom: 15/364
  37632. }
  37633. },
  37634. },
  37635. [
  37636. {
  37637. name: "Normal",
  37638. height: math.unit(7 + 1/12, "feet"),
  37639. default: true
  37640. },
  37641. ]
  37642. ))
  37643. characterMakers.push(() => makeCharacter(
  37644. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37645. {
  37646. normalFront: {
  37647. height: math.unit(5 + 11/12, "feet"),
  37648. name: "Front",
  37649. image: {
  37650. source: "./media/characters/moonlight-rose/normal-front.svg",
  37651. extra: 1980/1825,
  37652. bottom: 18/1998
  37653. },
  37654. form: "normal",
  37655. default: true
  37656. },
  37657. normalBack: {
  37658. height: math.unit(5 + 11/12, "feet"),
  37659. name: "Back",
  37660. image: {
  37661. source: "./media/characters/moonlight-rose/normal-back.svg",
  37662. extra: 2010/1839,
  37663. bottom: 10/2020
  37664. },
  37665. form: "normal"
  37666. },
  37667. demonFront: {
  37668. height: math.unit(1.5, "earths"),
  37669. name: "Front",
  37670. image: {
  37671. source: "./media/characters/moonlight-rose/demon.svg",
  37672. extra: 1400/1294,
  37673. bottom: 45/1445
  37674. },
  37675. form: "demon",
  37676. default: true
  37677. },
  37678. terraFront: {
  37679. height: math.unit(1.5, "earths"),
  37680. name: "Front",
  37681. image: {
  37682. source: "./media/characters/moonlight-rose/terra.svg"
  37683. },
  37684. form: "terra",
  37685. default: true
  37686. },
  37687. jupiterFront: {
  37688. height: math.unit(69911*2, "km"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37692. extra: 1367/1286,
  37693. bottom: 55/1422
  37694. },
  37695. form: "jupiter",
  37696. default: true
  37697. },
  37698. neptuneFront: {
  37699. height: math.unit(24622*2, "feet"),
  37700. name: "Front",
  37701. image: {
  37702. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37703. extra: 1851/1712,
  37704. bottom: 0/1851
  37705. },
  37706. form: "neptune",
  37707. default: true
  37708. },
  37709. },
  37710. [
  37711. {
  37712. name: "\"Natural\" Height",
  37713. height: math.unit(5 + 11/12, "feet"),
  37714. form: "normal"
  37715. },
  37716. {
  37717. name: "Smallest comfortable size",
  37718. height: math.unit(40, "meters"),
  37719. form: "normal"
  37720. },
  37721. {
  37722. name: "Common size",
  37723. height: math.unit(50, "km"),
  37724. form: "normal",
  37725. default: true
  37726. },
  37727. {
  37728. name: "Normal",
  37729. height: math.unit(1.5, "earths"),
  37730. form: "demon",
  37731. default: true
  37732. },
  37733. {
  37734. name: "Universal",
  37735. height: math.unit(15, "universes"),
  37736. form: "demon"
  37737. },
  37738. {
  37739. name: "Earth",
  37740. height: math.unit(1.5, "earths"),
  37741. form: "terra",
  37742. default: true
  37743. },
  37744. {
  37745. name: "Super Earth",
  37746. height: math.unit(67.5, "earths"),
  37747. form: "terra"
  37748. },
  37749. {
  37750. name: "Doesn't fit in a solar system...",
  37751. height: math.unit(1, "galaxy"),
  37752. form: "terra"
  37753. },
  37754. {
  37755. name: "Saturn",
  37756. height: math.unit(58232*2, "km"),
  37757. form: "jupiter"
  37758. },
  37759. {
  37760. name: "Jupiter",
  37761. height: math.unit(69911*2, "km"),
  37762. form: "jupiter",
  37763. default: true
  37764. },
  37765. {
  37766. name: "HD 100546 b",
  37767. height: math.unit(482938, "km"),
  37768. form: "jupiter"
  37769. },
  37770. {
  37771. name: "Enceladus",
  37772. height: math.unit(513*2, "km"),
  37773. form: "neptune"
  37774. },
  37775. {
  37776. name: "Europe",
  37777. height: math.unit(1560*2, "km"),
  37778. form: "neptune"
  37779. },
  37780. {
  37781. name: "Neptune",
  37782. height: math.unit(24622*2, "km"),
  37783. form: "neptune",
  37784. default: true
  37785. },
  37786. {
  37787. name: "CoRoT-9b",
  37788. height: math.unit(75067*2, "km"),
  37789. form: "neptune"
  37790. },
  37791. ],
  37792. {
  37793. "normal": {
  37794. name: "Normal",
  37795. default: true
  37796. },
  37797. "demon": {
  37798. name: "Demon"
  37799. },
  37800. "terra": {
  37801. name: "Terra"
  37802. },
  37803. "jupiter": {
  37804. name: "Jupiter"
  37805. },
  37806. "neptune": {
  37807. name: "Neptune"
  37808. }
  37809. }
  37810. ))
  37811. characterMakers.push(() => makeCharacter(
  37812. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37813. {
  37814. front: {
  37815. height: math.unit(16, "feet"),
  37816. weight: math.unit(610, "kg"),
  37817. name: "Front",
  37818. image: {
  37819. source: "./media/characters/huckle/front.svg",
  37820. extra: 1731/1625,
  37821. bottom: 33/1764
  37822. }
  37823. },
  37824. back: {
  37825. height: math.unit(16, "feet"),
  37826. weight: math.unit(610, "kg"),
  37827. name: "Back",
  37828. image: {
  37829. source: "./media/characters/huckle/back.svg",
  37830. extra: 1738/1651,
  37831. bottom: 37/1775
  37832. }
  37833. },
  37834. laughing: {
  37835. height: math.unit(3.75, "feet"),
  37836. name: "Laughing",
  37837. image: {
  37838. source: "./media/characters/huckle/laughing.svg"
  37839. }
  37840. },
  37841. angry: {
  37842. height: math.unit(4.15, "feet"),
  37843. name: "Angry",
  37844. image: {
  37845. source: "./media/characters/huckle/angry.svg"
  37846. }
  37847. },
  37848. },
  37849. [
  37850. {
  37851. name: "Normal",
  37852. height: math.unit(16, "feet"),
  37853. default: true
  37854. },
  37855. {
  37856. name: "Mini Macro",
  37857. height: math.unit(463, "feet")
  37858. },
  37859. {
  37860. name: "Macro",
  37861. height: math.unit(1680, "meters")
  37862. },
  37863. {
  37864. name: "Mega Macro",
  37865. height: math.unit(175, "km")
  37866. },
  37867. {
  37868. name: "Terra Macro",
  37869. height: math.unit(32, "gigameters")
  37870. },
  37871. {
  37872. name: "Multiverse+",
  37873. height: math.unit(2.56e23, "yottameters")
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37879. {
  37880. front: {
  37881. height: math.unit(6 + 9/12, "feet"),
  37882. weight: math.unit(280, "lb"),
  37883. name: "Front",
  37884. image: {
  37885. source: "./media/characters/candy/front.svg",
  37886. extra: 234/217,
  37887. bottom: 11/245
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Really Small",
  37894. height: math.unit(0.1, "nm")
  37895. },
  37896. {
  37897. name: "Micro",
  37898. height: math.unit(2, "inches")
  37899. },
  37900. {
  37901. name: "Normal",
  37902. height: math.unit(6 + 9/12, "feet"),
  37903. default: true
  37904. },
  37905. {
  37906. name: "Small Macro",
  37907. height: math.unit(69, "feet")
  37908. },
  37909. {
  37910. name: "Macro",
  37911. height: math.unit(160, "feet")
  37912. },
  37913. {
  37914. name: "Megamacro",
  37915. height: math.unit(22000, "miles")
  37916. },
  37917. {
  37918. name: "Gigamacro",
  37919. height: math.unit(50000, "miles")
  37920. },
  37921. ]
  37922. ))
  37923. characterMakers.push(() => makeCharacter(
  37924. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37925. {
  37926. front: {
  37927. height: math.unit(4, "feet"),
  37928. weight: math.unit(90, "lb"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/joey-mcdonald/front.svg",
  37932. extra: 1059/852,
  37933. bottom: 33/1092
  37934. }
  37935. },
  37936. back: {
  37937. height: math.unit(4, "feet"),
  37938. weight: math.unit(90, "lb"),
  37939. name: "Back",
  37940. image: {
  37941. source: "./media/characters/joey-mcdonald/back.svg",
  37942. extra: 1077/879,
  37943. bottom: 5/1082
  37944. }
  37945. },
  37946. frontKobold: {
  37947. height: math.unit(4, "feet"),
  37948. weight: math.unit(100, "lb"),
  37949. name: "Front-kobold",
  37950. image: {
  37951. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37952. extra: 1480/1367,
  37953. bottom: 0/1480
  37954. }
  37955. },
  37956. backKobold: {
  37957. height: math.unit(4, "feet"),
  37958. weight: math.unit(100, "lb"),
  37959. name: "Back-kobold",
  37960. image: {
  37961. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37962. extra: 1449/1361,
  37963. bottom: 0/1449
  37964. }
  37965. },
  37966. },
  37967. [
  37968. {
  37969. name: "Normal",
  37970. height: math.unit(4, "feet"),
  37971. default: true
  37972. },
  37973. ]
  37974. ))
  37975. characterMakers.push(() => makeCharacter(
  37976. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37977. {
  37978. front: {
  37979. height: math.unit(12 + 6/12, "feet"),
  37980. name: "Front",
  37981. image: {
  37982. source: "./media/characters/kass-lockheed/front.svg",
  37983. extra: 354/343,
  37984. bottom: 9/363
  37985. }
  37986. },
  37987. back: {
  37988. height: math.unit(12 + 6/12, "feet"),
  37989. name: "Back",
  37990. image: {
  37991. source: "./media/characters/kass-lockheed/back.svg",
  37992. extra: 364/352,
  37993. bottom: 3/367
  37994. }
  37995. },
  37996. dick: {
  37997. height: math.unit(3.12, "feet"),
  37998. name: "Dick",
  37999. image: {
  38000. source: "./media/characters/kass-lockheed/dick.svg"
  38001. }
  38002. },
  38003. head: {
  38004. height: math.unit(2.6, "feet"),
  38005. name: "Head",
  38006. image: {
  38007. source: "./media/characters/kass-lockheed/head.svg"
  38008. }
  38009. },
  38010. bleh: {
  38011. height: math.unit(2.85, "feet"),
  38012. name: "Bleh",
  38013. image: {
  38014. source: "./media/characters/kass-lockheed/bleh.svg"
  38015. }
  38016. },
  38017. smug: {
  38018. height: math.unit(2.85, "feet"),
  38019. name: "Smug",
  38020. image: {
  38021. source: "./media/characters/kass-lockheed/smug.svg"
  38022. }
  38023. },
  38024. },
  38025. [
  38026. {
  38027. name: "Normal",
  38028. height: math.unit(12 + 6/12, "feet"),
  38029. default: true
  38030. },
  38031. ]
  38032. ))
  38033. characterMakers.push(() => makeCharacter(
  38034. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38035. {
  38036. front: {
  38037. height: math.unit(6 + 2/12, "feet"),
  38038. name: "Front",
  38039. image: {
  38040. source: "./media/characters/taylor/front.svg",
  38041. extra: 639/495,
  38042. bottom: 12/651
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(6 + 2/12, "feet"),
  38050. default: true
  38051. },
  38052. {
  38053. name: "Big",
  38054. height: math.unit(15, "feet")
  38055. },
  38056. {
  38057. name: "Lorg",
  38058. height: math.unit(80, "feet")
  38059. },
  38060. {
  38061. name: "Too Lorg",
  38062. height: math.unit(120, "feet")
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(15, "feet"),
  38071. name: "Front",
  38072. image: {
  38073. source: "./media/characters/kaizer/front.svg",
  38074. extra: 1612/1436,
  38075. bottom: 43/1655
  38076. }
  38077. },
  38078. },
  38079. [
  38080. {
  38081. name: "Normal",
  38082. height: math.unit(15, "feet"),
  38083. default: true
  38084. },
  38085. ]
  38086. ))
  38087. characterMakers.push(() => makeCharacter(
  38088. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38089. {
  38090. front: {
  38091. height: math.unit(2, "feet"),
  38092. weight: math.unit(30, "lb"),
  38093. name: "Front",
  38094. image: {
  38095. source: "./media/characters/sandy/front.svg",
  38096. extra: 1439/1307,
  38097. bottom: 194/1633
  38098. }
  38099. },
  38100. },
  38101. [
  38102. {
  38103. name: "Normal",
  38104. height: math.unit(2, "feet"),
  38105. default: true
  38106. },
  38107. ]
  38108. ))
  38109. characterMakers.push(() => makeCharacter(
  38110. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38111. {
  38112. front: {
  38113. height: math.unit(3, "feet"),
  38114. name: "Front",
  38115. image: {
  38116. source: "./media/characters/mellvi/front.svg",
  38117. extra: 1831/1630,
  38118. bottom: 58/1889
  38119. }
  38120. },
  38121. },
  38122. [
  38123. {
  38124. name: "Normal",
  38125. height: math.unit(3, "feet"),
  38126. default: true
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38132. {
  38133. front: {
  38134. height: math.unit(5 + 11/12, "feet"),
  38135. weight: math.unit(200, "lb"),
  38136. name: "Front",
  38137. image: {
  38138. source: "./media/characters/shirou/front.svg",
  38139. extra: 2491/2383,
  38140. bottom: 189/2680
  38141. }
  38142. },
  38143. back: {
  38144. height: math.unit(5 + 11/12, "feet"),
  38145. weight: math.unit(200, "lb"),
  38146. name: "Back",
  38147. image: {
  38148. source: "./media/characters/shirou/back.svg",
  38149. extra: 2554/2450,
  38150. bottom: 76/2630
  38151. }
  38152. },
  38153. },
  38154. [
  38155. {
  38156. name: "Normal",
  38157. height: math.unit(5 + 11/12, "feet"),
  38158. default: true
  38159. },
  38160. ]
  38161. ))
  38162. characterMakers.push(() => makeCharacter(
  38163. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38164. {
  38165. front: {
  38166. height: math.unit(6 + 3/12, "feet"),
  38167. weight: math.unit(177, "lb"),
  38168. name: "Front",
  38169. image: {
  38170. source: "./media/characters/noryu/front.svg",
  38171. extra: 973/885,
  38172. bottom: 10/983
  38173. }
  38174. },
  38175. },
  38176. [
  38177. {
  38178. name: "Normal",
  38179. height: math.unit(6 + 3/12, "feet"),
  38180. default: true
  38181. },
  38182. ]
  38183. ))
  38184. characterMakers.push(() => makeCharacter(
  38185. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38186. {
  38187. front: {
  38188. height: math.unit(5 + 6/12, "feet"),
  38189. weight: math.unit(170, "lb"),
  38190. name: "Front",
  38191. image: {
  38192. source: "./media/characters/mevolas-rubenido/front.svg",
  38193. extra: 2109/1901,
  38194. bottom: 96/2205
  38195. }
  38196. },
  38197. },
  38198. [
  38199. {
  38200. name: "Normal",
  38201. height: math.unit(5 + 6/12, "feet"),
  38202. default: true
  38203. },
  38204. ]
  38205. ))
  38206. characterMakers.push(() => makeCharacter(
  38207. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38208. {
  38209. front: {
  38210. height: math.unit(100, "feet"),
  38211. name: "Front",
  38212. image: {
  38213. source: "./media/characters/dee/front.svg",
  38214. extra: 2153/2036,
  38215. bottom: 59/2212
  38216. }
  38217. },
  38218. back: {
  38219. height: math.unit(100, "feet"),
  38220. name: "Back",
  38221. image: {
  38222. source: "./media/characters/dee/back.svg",
  38223. extra: 2183/2058,
  38224. bottom: 75/2258
  38225. }
  38226. },
  38227. foot: {
  38228. height: math.unit(19.43, "feet"),
  38229. name: "Foot",
  38230. image: {
  38231. source: "./media/characters/dee/foot.svg"
  38232. }
  38233. },
  38234. hoof: {
  38235. height: math.unit(20.6, "feet"),
  38236. name: "Hoof",
  38237. image: {
  38238. source: "./media/characters/dee/hoof.svg"
  38239. }
  38240. },
  38241. },
  38242. [
  38243. {
  38244. name: "Macro",
  38245. height: math.unit(100, "feet"),
  38246. default: true
  38247. },
  38248. ]
  38249. ))
  38250. characterMakers.push(() => makeCharacter(
  38251. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38252. {
  38253. front: {
  38254. height: math.unit(5 + 6/12, "feet"),
  38255. name: "Front",
  38256. image: {
  38257. source: "./media/characters/teh/front.svg",
  38258. extra: 1002/847,
  38259. bottom: 62/1064
  38260. }
  38261. },
  38262. },
  38263. [
  38264. {
  38265. name: "Normal",
  38266. height: math.unit(5 + 6/12, "feet"),
  38267. default: true
  38268. },
  38269. ]
  38270. ))
  38271. characterMakers.push(() => makeCharacter(
  38272. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38273. {
  38274. side: {
  38275. height: math.unit(6 + 1/12, "feet"),
  38276. weight: math.unit(204, "lb"),
  38277. name: "Side",
  38278. image: {
  38279. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38280. extra: 974/775,
  38281. bottom: 169/1143
  38282. }
  38283. },
  38284. sitting: {
  38285. height: math.unit(6 + 2/12, "feet"),
  38286. weight: math.unit(204, "lb"),
  38287. name: "Sitting",
  38288. image: {
  38289. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38290. extra: 1175/964,
  38291. bottom: 378/1553
  38292. }
  38293. },
  38294. },
  38295. [
  38296. {
  38297. name: "Normal",
  38298. height: math.unit(6 + 1/12, "feet"),
  38299. default: true
  38300. },
  38301. ]
  38302. ))
  38303. characterMakers.push(() => makeCharacter(
  38304. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38305. {
  38306. front: {
  38307. height: math.unit(6, "inches"),
  38308. name: "Front",
  38309. image: {
  38310. source: "./media/characters/tululi/front.svg",
  38311. extra: 1997/1876,
  38312. bottom: 20/2017
  38313. }
  38314. },
  38315. },
  38316. [
  38317. {
  38318. name: "Normal",
  38319. height: math.unit(6, "inches"),
  38320. default: true
  38321. },
  38322. ]
  38323. ))
  38324. characterMakers.push(() => makeCharacter(
  38325. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38326. {
  38327. front: {
  38328. height: math.unit(4 + 1/12, "feet"),
  38329. name: "Front",
  38330. image: {
  38331. source: "./media/characters/star/front.svg",
  38332. extra: 1493/1189,
  38333. bottom: 48/1541
  38334. }
  38335. },
  38336. },
  38337. [
  38338. {
  38339. name: "Normal",
  38340. height: math.unit(4 + 1/12, "feet"),
  38341. default: true
  38342. },
  38343. ]
  38344. ))
  38345. characterMakers.push(() => makeCharacter(
  38346. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38347. {
  38348. front: {
  38349. height: math.unit(6 + 3/12, "feet"),
  38350. name: "Front",
  38351. image: {
  38352. source: "./media/characters/comet/front.svg",
  38353. extra: 1681/1462,
  38354. bottom: 26/1707
  38355. }
  38356. },
  38357. },
  38358. [
  38359. {
  38360. name: "Normal",
  38361. height: math.unit(6 + 3/12, "feet"),
  38362. default: true
  38363. },
  38364. ]
  38365. ))
  38366. characterMakers.push(() => makeCharacter(
  38367. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38368. {
  38369. front: {
  38370. height: math.unit(950, "feet"),
  38371. name: "Front",
  38372. image: {
  38373. source: "./media/characters/vortex/front.svg",
  38374. extra: 1497/1434,
  38375. bottom: 56/1553
  38376. }
  38377. },
  38378. maw: {
  38379. height: math.unit(285, "feet"),
  38380. name: "Maw",
  38381. image: {
  38382. source: "./media/characters/vortex/maw.svg"
  38383. }
  38384. },
  38385. },
  38386. [
  38387. {
  38388. name: "Macro",
  38389. height: math.unit(950, "feet"),
  38390. default: true
  38391. },
  38392. ]
  38393. ))
  38394. characterMakers.push(() => makeCharacter(
  38395. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38396. {
  38397. front: {
  38398. height: math.unit(600, "feet"),
  38399. weight: math.unit(0.02, "grams"),
  38400. name: "Front",
  38401. image: {
  38402. source: "./media/characters/doodle/front.svg",
  38403. extra: 1578/1413,
  38404. bottom: 37/1615
  38405. }
  38406. },
  38407. },
  38408. [
  38409. {
  38410. name: "Macro",
  38411. height: math.unit(600, "feet"),
  38412. default: true
  38413. },
  38414. ]
  38415. ))
  38416. characterMakers.push(() => makeCharacter(
  38417. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38418. {
  38419. front: {
  38420. height: math.unit(6 + 6/12, "feet"),
  38421. name: "Front",
  38422. image: {
  38423. source: "./media/characters/jai/front.svg",
  38424. extra: 1645/1534,
  38425. bottom: 115/1760
  38426. }
  38427. },
  38428. },
  38429. [
  38430. {
  38431. name: "Normal",
  38432. height: math.unit(6 + 6/12, "feet"),
  38433. default: true
  38434. },
  38435. ]
  38436. ))
  38437. characterMakers.push(() => makeCharacter(
  38438. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38439. {
  38440. front: {
  38441. height: math.unit(6 + 8/12, "feet"),
  38442. name: "Front",
  38443. image: {
  38444. source: "./media/characters/pixel/front.svg",
  38445. extra: 1900/1735,
  38446. bottom: 63/1963
  38447. }
  38448. },
  38449. },
  38450. [
  38451. {
  38452. name: "Normal",
  38453. height: math.unit(6 + 8/12, "feet"),
  38454. default: true
  38455. },
  38456. ]
  38457. ))
  38458. characterMakers.push(() => makeCharacter(
  38459. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38460. {
  38461. back: {
  38462. height: math.unit(4 + 1/12, "feet"),
  38463. weight: math.unit(75, "lb"),
  38464. name: "Back",
  38465. image: {
  38466. source: "./media/characters/rhett/back.svg",
  38467. extra: 930/878,
  38468. bottom: 25/955
  38469. }
  38470. },
  38471. front: {
  38472. height: math.unit(4 + 1/12, "feet"),
  38473. weight: math.unit(75, "lb"),
  38474. name: "Front",
  38475. image: {
  38476. source: "./media/characters/rhett/front.svg",
  38477. extra: 1682/1586,
  38478. bottom: 92/1774
  38479. }
  38480. },
  38481. },
  38482. [
  38483. {
  38484. name: "Micro",
  38485. height: math.unit(8, "inches")
  38486. },
  38487. {
  38488. name: "Tiny",
  38489. height: math.unit(2, "feet")
  38490. },
  38491. {
  38492. name: "Normal",
  38493. height: math.unit(4 + 1/12, "feet"),
  38494. default: true
  38495. },
  38496. ]
  38497. ))
  38498. characterMakers.push(() => makeCharacter(
  38499. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38500. {
  38501. front: {
  38502. height: math.unit(3 + 3/12, "feet"),
  38503. name: "Front",
  38504. image: {
  38505. source: "./media/characters/penny/front.svg",
  38506. extra: 1406/1311,
  38507. bottom: 26/1432
  38508. }
  38509. },
  38510. },
  38511. [
  38512. {
  38513. name: "Normal",
  38514. height: math.unit(3 + 3/12, "feet"),
  38515. default: true
  38516. },
  38517. ]
  38518. ))
  38519. characterMakers.push(() => makeCharacter(
  38520. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38521. {
  38522. front: {
  38523. height: math.unit(4 + 11/12, "feet"),
  38524. name: "Front",
  38525. image: {
  38526. source: "./media/characters/monty/front.svg",
  38527. extra: 1479/1209,
  38528. bottom: 0/1479
  38529. }
  38530. },
  38531. },
  38532. [
  38533. {
  38534. name: "Normal",
  38535. height: math.unit(4 + 11/12, "feet"),
  38536. default: true
  38537. },
  38538. ]
  38539. ))
  38540. characterMakers.push(() => makeCharacter(
  38541. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38542. {
  38543. front: {
  38544. height: math.unit(8 + 4/12, "feet"),
  38545. name: "Front",
  38546. image: {
  38547. source: "./media/characters/sterling/front.svg",
  38548. extra: 1420/1236,
  38549. bottom: 27/1447
  38550. }
  38551. },
  38552. },
  38553. [
  38554. {
  38555. name: "Normal",
  38556. height: math.unit(8 + 4/12, "feet"),
  38557. default: true
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(15, "feet"),
  38566. name: "Front",
  38567. image: {
  38568. source: "./media/characters/marble/front.svg",
  38569. extra: 973/937,
  38570. bottom: 32/1005
  38571. }
  38572. },
  38573. },
  38574. [
  38575. {
  38576. name: "Normal",
  38577. height: math.unit(15, "feet"),
  38578. default: true
  38579. },
  38580. ]
  38581. ))
  38582. characterMakers.push(() => makeCharacter(
  38583. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38584. {
  38585. front: {
  38586. height: math.unit(3, "inches"),
  38587. name: "Front",
  38588. image: {
  38589. source: "./media/characters/powder/front.svg",
  38590. extra: 1504/1334,
  38591. bottom: 518/2022
  38592. }
  38593. },
  38594. },
  38595. [
  38596. {
  38597. name: "Normal",
  38598. height: math.unit(3, "inches"),
  38599. default: true
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38605. {
  38606. front: {
  38607. height: math.unit(4 + 5/12, "feet"),
  38608. name: "Front",
  38609. image: {
  38610. source: "./media/characters/joey-raccoon/front.svg",
  38611. extra: 1273/1197,
  38612. bottom: 0/1273
  38613. }
  38614. },
  38615. },
  38616. [
  38617. {
  38618. name: "Normal",
  38619. height: math.unit(4 + 5/12, "feet"),
  38620. default: true
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(8 + 4/12, "feet"),
  38629. name: "Front",
  38630. image: {
  38631. source: "./media/characters/vick/front.svg",
  38632. extra: 2187/2118,
  38633. bottom: 47/2234
  38634. }
  38635. },
  38636. },
  38637. [
  38638. {
  38639. name: "Normal",
  38640. height: math.unit(8 + 4/12, "feet"),
  38641. default: true
  38642. },
  38643. ]
  38644. ))
  38645. characterMakers.push(() => makeCharacter(
  38646. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38647. {
  38648. front: {
  38649. height: math.unit(5 + 5/12, "feet"),
  38650. name: "Front",
  38651. image: {
  38652. source: "./media/characters/mitsy/front.svg",
  38653. extra: 1842/1695,
  38654. bottom: 0/1842
  38655. }
  38656. },
  38657. },
  38658. [
  38659. {
  38660. name: "Normal",
  38661. height: math.unit(5 + 5/12, "feet"),
  38662. default: true
  38663. },
  38664. ]
  38665. ))
  38666. characterMakers.push(() => makeCharacter(
  38667. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38668. {
  38669. front: {
  38670. height: math.unit(6 + 3/12, "feet"),
  38671. name: "Front",
  38672. image: {
  38673. source: "./media/characters/silvy/front.svg",
  38674. extra: 1995/1836,
  38675. bottom: 225/2220
  38676. }
  38677. },
  38678. },
  38679. [
  38680. {
  38681. name: "Normal",
  38682. height: math.unit(6 + 3/12, "feet"),
  38683. default: true
  38684. },
  38685. ]
  38686. ))
  38687. characterMakers.push(() => makeCharacter(
  38688. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38689. {
  38690. front: {
  38691. height: math.unit(3 + 8/12, "feet"),
  38692. name: "Front",
  38693. image: {
  38694. source: "./media/characters/rodney/front.svg",
  38695. extra: 1956/1747,
  38696. bottom: 31/1987
  38697. }
  38698. },
  38699. frontDressed: {
  38700. height: math.unit(2.9, "feet"),
  38701. name: "Front (Dressed)",
  38702. image: {
  38703. source: "./media/characters/rodney/front-dressed.svg",
  38704. extra: 1382/1241,
  38705. bottom: 385/1767
  38706. }
  38707. },
  38708. },
  38709. [
  38710. {
  38711. name: "Normal",
  38712. height: math.unit(3 + 8/12, "feet"),
  38713. default: true
  38714. },
  38715. ]
  38716. ))
  38717. characterMakers.push(() => makeCharacter(
  38718. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38719. {
  38720. front: {
  38721. height: math.unit(5 + 9/12, "feet"),
  38722. weight: math.unit(194, "lbs"),
  38723. name: "Front",
  38724. image: {
  38725. source: "./media/characters/zakail-sudekai/front.svg",
  38726. extra: 2696/2533,
  38727. bottom: 248/2944
  38728. }
  38729. },
  38730. maw: {
  38731. height: math.unit(1.35, "feet"),
  38732. name: "Maw",
  38733. image: {
  38734. source: "./media/characters/zakail-sudekai/maw.svg"
  38735. }
  38736. },
  38737. },
  38738. [
  38739. {
  38740. name: "Normal",
  38741. height: math.unit(5 + 9/12, "feet"),
  38742. default: true
  38743. },
  38744. ]
  38745. ))
  38746. characterMakers.push(() => makeCharacter(
  38747. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38748. {
  38749. front: {
  38750. height: math.unit(8 + 4/12, "feet"),
  38751. weight: math.unit(1200, "lb"),
  38752. name: "Front",
  38753. image: {
  38754. source: "./media/characters/eleanor/front.svg",
  38755. extra: 1226/1192,
  38756. bottom: 52/1278
  38757. }
  38758. },
  38759. back: {
  38760. height: math.unit(8 + 4/12, "feet"),
  38761. weight: math.unit(1200, "lb"),
  38762. name: "Back",
  38763. image: {
  38764. source: "./media/characters/eleanor/back.svg",
  38765. extra: 1242/1184,
  38766. bottom: 60/1302
  38767. }
  38768. },
  38769. head: {
  38770. height: math.unit(2.62, "feet"),
  38771. name: "Head",
  38772. image: {
  38773. source: "./media/characters/eleanor/head.svg"
  38774. }
  38775. },
  38776. },
  38777. [
  38778. {
  38779. name: "Normal",
  38780. height: math.unit(8 + 4/12, "feet"),
  38781. default: true
  38782. },
  38783. ]
  38784. ))
  38785. characterMakers.push(() => makeCharacter(
  38786. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38787. {
  38788. front: {
  38789. height: math.unit(8 + 4/12, "feet"),
  38790. weight: math.unit(750, "lb"),
  38791. name: "Front",
  38792. image: {
  38793. source: "./media/characters/tanya/front.svg",
  38794. extra: 1749/1615,
  38795. bottom: 33/1782
  38796. }
  38797. },
  38798. },
  38799. [
  38800. {
  38801. name: "Normal",
  38802. height: math.unit(8 + 4/12, "feet"),
  38803. default: true
  38804. },
  38805. ]
  38806. ))
  38807. characterMakers.push(() => makeCharacter(
  38808. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38809. {
  38810. front: {
  38811. height: math.unit(5, "feet"),
  38812. weight: math.unit(225, "lb"),
  38813. name: "Front",
  38814. image: {
  38815. source: "./media/characters/cindy/front.svg",
  38816. extra: 1320/1250,
  38817. bottom: 42/1362
  38818. }
  38819. },
  38820. frontDressed: {
  38821. height: math.unit(5, "feet"),
  38822. weight: math.unit(225, "lb"),
  38823. name: "Front (Dressed)",
  38824. image: {
  38825. source: "./media/characters/cindy/front-dressed.svg",
  38826. extra: 1320/1250,
  38827. bottom: 42/1362
  38828. }
  38829. },
  38830. back: {
  38831. height: math.unit(5, "feet"),
  38832. weight: math.unit(225, "lb"),
  38833. name: "Back",
  38834. image: {
  38835. source: "./media/characters/cindy/back.svg",
  38836. extra: 1384/1346,
  38837. bottom: 14/1398
  38838. }
  38839. },
  38840. },
  38841. [
  38842. {
  38843. name: "Normal",
  38844. height: math.unit(5, "feet"),
  38845. default: true
  38846. },
  38847. ]
  38848. ))
  38849. characterMakers.push(() => makeCharacter(
  38850. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38851. {
  38852. front: {
  38853. height: math.unit(6 + 9/12, "feet"),
  38854. weight: math.unit(440, "lb"),
  38855. name: "Front",
  38856. image: {
  38857. source: "./media/characters/wilbur-owen/front.svg",
  38858. extra: 1575/1448,
  38859. bottom: 72/1647
  38860. }
  38861. },
  38862. back: {
  38863. height: math.unit(6 + 9/12, "feet"),
  38864. weight: math.unit(440, "lb"),
  38865. name: "Back",
  38866. image: {
  38867. source: "./media/characters/wilbur-owen/back.svg",
  38868. extra: 1578/1445,
  38869. bottom: 36/1614
  38870. }
  38871. },
  38872. },
  38873. [
  38874. {
  38875. name: "Normal",
  38876. height: math.unit(6 + 9/12, "feet"),
  38877. default: true
  38878. },
  38879. ]
  38880. ))
  38881. characterMakers.push(() => makeCharacter(
  38882. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38883. {
  38884. front: {
  38885. height: math.unit(6 + 5/12, "feet"),
  38886. weight: math.unit(650, "lb"),
  38887. name: "Front",
  38888. image: {
  38889. source: "./media/characters/keegan/front.svg",
  38890. extra: 2387/2198,
  38891. bottom: 33/2420
  38892. }
  38893. },
  38894. side: {
  38895. height: math.unit(6 + 5/12, "feet"),
  38896. weight: math.unit(650, "lb"),
  38897. name: "Side",
  38898. image: {
  38899. source: "./media/characters/keegan/side.svg",
  38900. extra: 2390/2202,
  38901. bottom: 47/2437
  38902. }
  38903. },
  38904. back: {
  38905. height: math.unit(6 + 5/12, "feet"),
  38906. weight: math.unit(650, "lb"),
  38907. name: "Back",
  38908. image: {
  38909. source: "./media/characters/keegan/back.svg",
  38910. extra: 2418/2268,
  38911. bottom: 15/2433
  38912. }
  38913. },
  38914. frontSfw: {
  38915. height: math.unit(6 + 5/12, "feet"),
  38916. weight: math.unit(650, "lb"),
  38917. name: "Front (SFW)",
  38918. image: {
  38919. source: "./media/characters/keegan/front-sfw.svg",
  38920. extra: 2387/2198,
  38921. bottom: 33/2420
  38922. }
  38923. },
  38924. beans: {
  38925. height: math.unit(1.85, "feet"),
  38926. name: "Beans",
  38927. image: {
  38928. source: "./media/characters/keegan/beans.svg"
  38929. }
  38930. },
  38931. },
  38932. [
  38933. {
  38934. name: "Normal",
  38935. height: math.unit(6 + 5/12, "feet"),
  38936. default: true
  38937. },
  38938. ]
  38939. ))
  38940. characterMakers.push(() => makeCharacter(
  38941. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38942. {
  38943. front: {
  38944. height: math.unit(9, "feet"),
  38945. name: "Front",
  38946. image: {
  38947. source: "./media/characters/colton/front.svg",
  38948. extra: 1589/1326,
  38949. bottom: 139/1728
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Normal",
  38956. height: math.unit(9, "feet"),
  38957. default: true
  38958. },
  38959. ]
  38960. ))
  38961. characterMakers.push(() => makeCharacter(
  38962. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38963. {
  38964. front: {
  38965. height: math.unit(2 + 9/12, "feet"),
  38966. name: "Front",
  38967. image: {
  38968. source: "./media/characters/bora/front.svg",
  38969. extra: 1265/1250,
  38970. bottom: 24/1289
  38971. }
  38972. },
  38973. },
  38974. [
  38975. {
  38976. name: "Normal",
  38977. height: math.unit(2 + 9/12, "feet"),
  38978. default: true
  38979. },
  38980. ]
  38981. ))
  38982. characterMakers.push(() => makeCharacter(
  38983. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38984. {
  38985. front: {
  38986. height: math.unit(8, "feet"),
  38987. name: "Front",
  38988. image: {
  38989. source: "./media/characters/myu-myu/front.svg",
  38990. extra: 1949/1857,
  38991. bottom: 90/2039
  38992. }
  38993. },
  38994. },
  38995. [
  38996. {
  38997. name: "Normal",
  38998. height: math.unit(8, "feet"),
  38999. default: true
  39000. },
  39001. {
  39002. name: "Big",
  39003. height: math.unit(15, "feet")
  39004. },
  39005. {
  39006. name: "BIG",
  39007. height: math.unit(25, "feet")
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39013. {
  39014. side: {
  39015. height: math.unit(7 + 5/12, "feet"),
  39016. weight: math.unit(2800, "lb"),
  39017. name: "Side",
  39018. image: {
  39019. source: "./media/characters/haloren/side.svg",
  39020. extra: 1793/409,
  39021. bottom: 59/1852
  39022. }
  39023. },
  39024. frontPaw: {
  39025. height: math.unit(2.36, "feet"),
  39026. name: "Front paw",
  39027. image: {
  39028. source: "./media/characters/haloren/front-paw.svg"
  39029. }
  39030. },
  39031. hindPaw: {
  39032. height: math.unit(3.18, "feet"),
  39033. name: "Hind paw",
  39034. image: {
  39035. source: "./media/characters/haloren/hind-paw.svg"
  39036. }
  39037. },
  39038. maw: {
  39039. height: math.unit(5.05, "feet"),
  39040. name: "Maw",
  39041. image: {
  39042. source: "./media/characters/haloren/maw.svg"
  39043. }
  39044. },
  39045. dick: {
  39046. height: math.unit(2.90, "feet"),
  39047. name: "Dick",
  39048. image: {
  39049. source: "./media/characters/haloren/dick.svg"
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Normal",
  39056. height: math.unit(7 + 5/12, "feet"),
  39057. default: true
  39058. },
  39059. {
  39060. name: "Enhanced",
  39061. height: math.unit(14 + 3/12, "feet")
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39067. {
  39068. front: {
  39069. height: math.unit(171, "cm"),
  39070. name: "Front",
  39071. image: {
  39072. source: "./media/characters/kimmy/front.svg",
  39073. extra: 1491/1435,
  39074. bottom: 53/1544
  39075. }
  39076. },
  39077. },
  39078. [
  39079. {
  39080. name: "Small",
  39081. height: math.unit(9, "cm")
  39082. },
  39083. {
  39084. name: "Normal",
  39085. height: math.unit(171, "cm"),
  39086. default: true
  39087. },
  39088. ]
  39089. ))
  39090. characterMakers.push(() => makeCharacter(
  39091. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39092. {
  39093. front: {
  39094. height: math.unit(8, "feet"),
  39095. weight: math.unit(300, "lb"),
  39096. name: "Front",
  39097. image: {
  39098. source: "./media/characters/galeboomer/front.svg",
  39099. extra: 4651/4415,
  39100. bottom: 162/4813
  39101. }
  39102. },
  39103. back: {
  39104. height: math.unit(8, "feet"),
  39105. weight: math.unit(300, "lb"),
  39106. name: "Back",
  39107. image: {
  39108. source: "./media/characters/galeboomer/back.svg",
  39109. extra: 4544/4314,
  39110. bottom: 16/4560
  39111. }
  39112. },
  39113. frontAlt: {
  39114. height: math.unit(8, "feet"),
  39115. weight: math.unit(300, "lb"),
  39116. name: "Front (Alt)",
  39117. image: {
  39118. source: "./media/characters/galeboomer/front-alt.svg",
  39119. extra: 4458/4228,
  39120. bottom: 68/4526
  39121. }
  39122. },
  39123. maw: {
  39124. height: math.unit(1.2, "feet"),
  39125. name: "Maw",
  39126. image: {
  39127. source: "./media/characters/galeboomer/maw.svg"
  39128. }
  39129. },
  39130. },
  39131. [
  39132. {
  39133. name: "Normal",
  39134. height: math.unit(8, "feet"),
  39135. default: true
  39136. },
  39137. ]
  39138. ))
  39139. characterMakers.push(() => makeCharacter(
  39140. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39141. {
  39142. front: {
  39143. height: math.unit(5 + 9/12, "feet"),
  39144. weight: math.unit(120, "lb"),
  39145. name: "Front",
  39146. image: {
  39147. source: "./media/characters/chyr/front.svg",
  39148. extra: 1323/1254,
  39149. bottom: 63/1386
  39150. }
  39151. },
  39152. back: {
  39153. height: math.unit(5 + 9/12, "feet"),
  39154. weight: math.unit(120, "lb"),
  39155. name: "Back",
  39156. image: {
  39157. source: "./media/characters/chyr/back.svg",
  39158. extra: 1323/1252,
  39159. bottom: 48/1371
  39160. }
  39161. },
  39162. },
  39163. [
  39164. {
  39165. name: "Normal",
  39166. height: math.unit(5 + 9/12, "feet"),
  39167. default: true
  39168. },
  39169. ]
  39170. ))
  39171. characterMakers.push(() => makeCharacter(
  39172. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39173. {
  39174. front: {
  39175. height: math.unit(7, "feet"),
  39176. weight: math.unit(310, "lb"),
  39177. name: "Front",
  39178. image: {
  39179. source: "./media/characters/solarus/front.svg",
  39180. extra: 2415/2021,
  39181. bottom: 103/2518
  39182. }
  39183. },
  39184. back: {
  39185. height: math.unit(7, "feet"),
  39186. weight: math.unit(310, "lb"),
  39187. name: "Back",
  39188. image: {
  39189. source: "./media/characters/solarus/back.svg",
  39190. extra: 2463/2089,
  39191. bottom: 79/2542
  39192. }
  39193. },
  39194. },
  39195. [
  39196. {
  39197. name: "Normal",
  39198. height: math.unit(7, "feet"),
  39199. default: true
  39200. },
  39201. ]
  39202. ))
  39203. characterMakers.push(() => makeCharacter(
  39204. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39205. {
  39206. front: {
  39207. height: math.unit(16, "feet"),
  39208. name: "Front",
  39209. image: {
  39210. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39211. extra: 1844/1780,
  39212. bottom: 58/1902
  39213. }
  39214. },
  39215. winterCoat: {
  39216. height: math.unit(16, "feet"),
  39217. name: "Winter Coat",
  39218. image: {
  39219. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39220. extra: 1807/1775,
  39221. bottom: 69/1876
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Normal",
  39228. height: math.unit(16, "feet"),
  39229. default: true
  39230. },
  39231. {
  39232. name: "Chicago Size",
  39233. height: math.unit(560, "feet")
  39234. },
  39235. ]
  39236. ))
  39237. characterMakers.push(() => makeCharacter(
  39238. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39239. {
  39240. front: {
  39241. height: math.unit(11 + 6/12, "feet"),
  39242. weight: math.unit(1366, "lb"),
  39243. name: "Front",
  39244. image: {
  39245. source: "./media/characters/lexor/front.svg",
  39246. extra: 1560/1481,
  39247. bottom: 211/1771
  39248. }
  39249. },
  39250. back: {
  39251. height: math.unit(11 + 6/12, "feet"),
  39252. weight: math.unit(1366, "lb"),
  39253. name: "Back",
  39254. image: {
  39255. source: "./media/characters/lexor/back.svg",
  39256. extra: 1614/1533,
  39257. bottom: 76/1690
  39258. }
  39259. },
  39260. maw: {
  39261. height: math.unit(3, "feet"),
  39262. name: "Maw",
  39263. image: {
  39264. source: "./media/characters/lexor/maw.svg"
  39265. }
  39266. },
  39267. dick: {
  39268. height: math.unit(2.59, "feet"),
  39269. name: "Dick",
  39270. image: {
  39271. source: "./media/characters/lexor/dick.svg"
  39272. }
  39273. },
  39274. },
  39275. [
  39276. {
  39277. name: "Normal",
  39278. height: math.unit(11 + 6/12, "feet"),
  39279. default: true
  39280. },
  39281. ]
  39282. ))
  39283. characterMakers.push(() => makeCharacter(
  39284. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39285. {
  39286. front: {
  39287. height: math.unit(5 + 8/12, "feet"),
  39288. name: "Front",
  39289. image: {
  39290. source: "./media/characters/magnum/front.svg",
  39291. extra: 942/855,
  39292. bottom: 26/968
  39293. }
  39294. },
  39295. },
  39296. [
  39297. {
  39298. name: "Normal",
  39299. height: math.unit(5 + 8/12, "feet"),
  39300. default: true
  39301. },
  39302. ]
  39303. ))
  39304. characterMakers.push(() => makeCharacter(
  39305. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39306. {
  39307. front: {
  39308. height: math.unit(18 + 4/12, "feet"),
  39309. weight: math.unit(1500, "kg"),
  39310. name: "Front",
  39311. image: {
  39312. source: "./media/characters/solas-sharpsman/front.svg",
  39313. extra: 1698/1589,
  39314. bottom: 0/1698
  39315. }
  39316. },
  39317. },
  39318. [
  39319. {
  39320. name: "Normal",
  39321. height: math.unit(18 + 4/12, "feet"),
  39322. default: true
  39323. },
  39324. ]
  39325. ))
  39326. characterMakers.push(() => makeCharacter(
  39327. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39328. {
  39329. front: {
  39330. height: math.unit(5 + 5/12, "feet"),
  39331. weight: math.unit(180, "lb"),
  39332. name: "Front",
  39333. image: {
  39334. source: "./media/characters/october/front.svg",
  39335. extra: 1800/1650,
  39336. bottom: 0/1800
  39337. }
  39338. },
  39339. frontNsfw: {
  39340. height: math.unit(5 + 5/12, "feet"),
  39341. weight: math.unit(180, "lb"),
  39342. name: "Front (NSFW)",
  39343. image: {
  39344. source: "./media/characters/october/front-nsfw.svg",
  39345. extra: 1392/1307,
  39346. bottom: 42/1434
  39347. }
  39348. },
  39349. },
  39350. [
  39351. {
  39352. name: "Normal",
  39353. height: math.unit(5 + 5/12, "feet"),
  39354. default: true
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39360. {
  39361. front: {
  39362. height: math.unit(8 + 6/12, "feet"),
  39363. name: "Front",
  39364. image: {
  39365. source: "./media/characters/essynkardi/front.svg",
  39366. extra: 1541/1457,
  39367. bottom: 47/1588
  39368. }
  39369. },
  39370. },
  39371. [
  39372. {
  39373. name: "Normal",
  39374. height: math.unit(8 + 6/12, "feet"),
  39375. default: true
  39376. },
  39377. ]
  39378. ))
  39379. characterMakers.push(() => makeCharacter(
  39380. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39381. {
  39382. front: {
  39383. height: math.unit(6 + 6/12, "feet"),
  39384. weight: math.unit(7, "lb"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/icky/front.svg",
  39388. extra: 813/782,
  39389. bottom: 66/879
  39390. }
  39391. },
  39392. back: {
  39393. height: math.unit(6 + 6/12, "feet"),
  39394. weight: math.unit(7, "lb"),
  39395. name: "Back",
  39396. image: {
  39397. source: "./media/characters/icky/back.svg",
  39398. extra: 754/735,
  39399. bottom: 56/810
  39400. }
  39401. },
  39402. },
  39403. [
  39404. {
  39405. name: "Normal",
  39406. height: math.unit(6 + 6/12, "feet"),
  39407. default: true
  39408. },
  39409. ]
  39410. ))
  39411. characterMakers.push(() => makeCharacter(
  39412. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39413. {
  39414. front: {
  39415. height: math.unit(15, "feet"),
  39416. name: "Front",
  39417. image: {
  39418. source: "./media/characters/rojas/front.svg",
  39419. extra: 1462/1408,
  39420. bottom: 95/1557
  39421. }
  39422. },
  39423. back: {
  39424. height: math.unit(15, "feet"),
  39425. name: "Back",
  39426. image: {
  39427. source: "./media/characters/rojas/back.svg",
  39428. extra: 1023/954,
  39429. bottom: 28/1051
  39430. }
  39431. },
  39432. },
  39433. [
  39434. {
  39435. name: "Normal",
  39436. height: math.unit(15, "feet"),
  39437. default: true
  39438. },
  39439. ]
  39440. ))
  39441. characterMakers.push(() => makeCharacter(
  39442. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39443. {
  39444. frontHuman: {
  39445. height: math.unit(5 + 7/12, "feet"),
  39446. name: "Front (Human)",
  39447. image: {
  39448. source: "./media/characters/alek-dryagan/front-human.svg",
  39449. extra: 1687/1667,
  39450. bottom: 69/1756
  39451. }
  39452. },
  39453. backHuman: {
  39454. height: math.unit(5 + 7/12, "feet"),
  39455. name: "Back (Human)",
  39456. image: {
  39457. source: "./media/characters/alek-dryagan/back-human.svg",
  39458. extra: 1670/1649,
  39459. bottom: 65/1735
  39460. }
  39461. },
  39462. frontDemi: {
  39463. height: math.unit(65, "feet"),
  39464. name: "Front (Demi)",
  39465. image: {
  39466. source: "./media/characters/alek-dryagan/front-demi.svg",
  39467. extra: 1669/1642,
  39468. bottom: 49/1718
  39469. }
  39470. },
  39471. backDemi: {
  39472. height: math.unit(65, "feet"),
  39473. name: "Back (Demi)",
  39474. image: {
  39475. source: "./media/characters/alek-dryagan/back-demi.svg",
  39476. extra: 1658/1637,
  39477. bottom: 40/1698
  39478. }
  39479. },
  39480. mawHuman: {
  39481. height: math.unit(0.3, "feet"),
  39482. name: "Maw (Human)",
  39483. image: {
  39484. source: "./media/characters/alek-dryagan/maw-human.svg"
  39485. }
  39486. },
  39487. mawDemi: {
  39488. height: math.unit(3.8, "feet"),
  39489. name: "Maw (Demi)",
  39490. image: {
  39491. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39492. }
  39493. },
  39494. },
  39495. [
  39496. {
  39497. name: "Normal",
  39498. height: math.unit(5 + 7/12, "feet"),
  39499. default: true
  39500. },
  39501. ]
  39502. ))
  39503. characterMakers.push(() => makeCharacter(
  39504. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39505. {
  39506. frontHuman: {
  39507. height: math.unit(5 + 2/12, "feet"),
  39508. name: "Front (Human)",
  39509. image: {
  39510. source: "./media/characters/gen/front-human.svg",
  39511. extra: 1627/1538,
  39512. bottom: 71/1698
  39513. }
  39514. },
  39515. backHuman: {
  39516. height: math.unit(5 + 2/12, "feet"),
  39517. name: "Back (Human)",
  39518. image: {
  39519. source: "./media/characters/gen/back-human.svg",
  39520. extra: 1638/1548,
  39521. bottom: 69/1707
  39522. }
  39523. },
  39524. frontDemi: {
  39525. height: math.unit(5 + 2/12, "feet"),
  39526. name: "Front (Demi)",
  39527. image: {
  39528. source: "./media/characters/gen/front-demi.svg",
  39529. extra: 1627/1538,
  39530. bottom: 71/1698
  39531. }
  39532. },
  39533. backDemi: {
  39534. height: math.unit(5 + 2/12, "feet"),
  39535. name: "Back (Demi)",
  39536. image: {
  39537. source: "./media/characters/gen/back-demi.svg",
  39538. extra: 1638/1548,
  39539. bottom: 69/1707
  39540. }
  39541. },
  39542. },
  39543. [
  39544. {
  39545. name: "Normal",
  39546. height: math.unit(5 + 2/12, "feet"),
  39547. default: true
  39548. },
  39549. ]
  39550. ))
  39551. characterMakers.push(() => makeCharacter(
  39552. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39553. {
  39554. frontImp: {
  39555. height: math.unit(1 + 11/12, "feet"),
  39556. name: "Front (Imp)",
  39557. image: {
  39558. source: "./media/characters/max-kobold/front-imp.svg",
  39559. extra: 1238/1134,
  39560. bottom: 81/1319
  39561. }
  39562. },
  39563. backImp: {
  39564. height: math.unit(1 + 11/12, "feet"),
  39565. name: "Back (Imp)",
  39566. image: {
  39567. source: "./media/characters/max-kobold/back-imp.svg",
  39568. extra: 1334/1175,
  39569. bottom: 34/1368
  39570. }
  39571. },
  39572. frontDemi: {
  39573. height: math.unit(5 + 9/12, "feet"),
  39574. name: "Front (Demi)",
  39575. image: {
  39576. source: "./media/characters/max-kobold/front-demi.svg",
  39577. extra: 1715/1685,
  39578. bottom: 54/1769
  39579. }
  39580. },
  39581. backDemi: {
  39582. height: math.unit(5 + 9/12, "feet"),
  39583. name: "Back (Demi)",
  39584. image: {
  39585. source: "./media/characters/max-kobold/back-demi.svg",
  39586. extra: 1752/1729,
  39587. bottom: 41/1793
  39588. }
  39589. },
  39590. handImp: {
  39591. height: math.unit(0.45, "feet"),
  39592. name: "Hand (Imp)",
  39593. image: {
  39594. source: "./media/characters/max-kobold/hand.svg"
  39595. }
  39596. },
  39597. pawImp: {
  39598. height: math.unit(0.46, "feet"),
  39599. name: "Paw (Imp)",
  39600. image: {
  39601. source: "./media/characters/max-kobold/paw.svg"
  39602. }
  39603. },
  39604. handDemi: {
  39605. height: math.unit(0.80, "feet"),
  39606. name: "Hand (Demi)",
  39607. image: {
  39608. source: "./media/characters/max-kobold/hand.svg"
  39609. }
  39610. },
  39611. pawDemi: {
  39612. height: math.unit(1.1, "feet"),
  39613. name: "Paw (Demi)",
  39614. image: {
  39615. source: "./media/characters/max-kobold/paw.svg"
  39616. }
  39617. },
  39618. headImp: {
  39619. height: math.unit(1.33, "feet"),
  39620. name: "Head (Imp)",
  39621. image: {
  39622. source: "./media/characters/max-kobold/head-imp.svg"
  39623. }
  39624. },
  39625. mawImp: {
  39626. height: math.unit(0.75, "feet"),
  39627. name: "Maw (Imp)",
  39628. image: {
  39629. source: "./media/characters/max-kobold/maw-imp.svg"
  39630. }
  39631. },
  39632. mawDemi: {
  39633. height: math.unit(0.42, "feet"),
  39634. name: "Maw (Demi)",
  39635. image: {
  39636. source: "./media/characters/max-kobold/maw-demi.svg"
  39637. }
  39638. },
  39639. },
  39640. [
  39641. {
  39642. name: "Normal",
  39643. height: math.unit(1 + 11/12, "feet"),
  39644. default: true
  39645. },
  39646. ]
  39647. ))
  39648. characterMakers.push(() => makeCharacter(
  39649. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39650. {
  39651. front: {
  39652. height: math.unit(7 + 5/12, "feet"),
  39653. name: "Front",
  39654. image: {
  39655. source: "./media/characters/carbon/front.svg",
  39656. extra: 1754/1689,
  39657. bottom: 65/1819
  39658. }
  39659. },
  39660. back: {
  39661. height: math.unit(7 + 5/12, "feet"),
  39662. name: "Back",
  39663. image: {
  39664. source: "./media/characters/carbon/back.svg",
  39665. extra: 1762/1695,
  39666. bottom: 24/1786
  39667. }
  39668. },
  39669. frontGigantamax: {
  39670. height: math.unit(150, "feet"),
  39671. name: "Front (Gigantamax)",
  39672. image: {
  39673. source: "./media/characters/carbon/front-gigantamax.svg",
  39674. extra: 1826/1669,
  39675. bottom: 59/1885
  39676. }
  39677. },
  39678. backGigantamax: {
  39679. height: math.unit(150, "feet"),
  39680. name: "Back (Gigantamax)",
  39681. image: {
  39682. source: "./media/characters/carbon/back-gigantamax.svg",
  39683. extra: 1796/1653,
  39684. bottom: 53/1849
  39685. }
  39686. },
  39687. maw: {
  39688. height: math.unit(0.48, "feet"),
  39689. name: "Maw",
  39690. image: {
  39691. source: "./media/characters/carbon/maw.svg"
  39692. }
  39693. },
  39694. mawGigantamax: {
  39695. height: math.unit(7.5, "feet"),
  39696. name: "Maw (Gigantamax)",
  39697. image: {
  39698. source: "./media/characters/carbon/maw-gigantamax.svg"
  39699. }
  39700. },
  39701. },
  39702. [
  39703. {
  39704. name: "Normal",
  39705. height: math.unit(7 + 5/12, "feet"),
  39706. default: true
  39707. },
  39708. ]
  39709. ))
  39710. characterMakers.push(() => makeCharacter(
  39711. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39712. {
  39713. front: {
  39714. height: math.unit(6, "feet"),
  39715. name: "Front",
  39716. image: {
  39717. source: "./media/characters/maverick/front.svg",
  39718. extra: 1672/1661,
  39719. bottom: 85/1757
  39720. }
  39721. },
  39722. back: {
  39723. height: math.unit(6, "feet"),
  39724. name: "Back",
  39725. image: {
  39726. source: "./media/characters/maverick/back.svg",
  39727. extra: 1642/1631,
  39728. bottom: 38/1680
  39729. }
  39730. },
  39731. },
  39732. [
  39733. {
  39734. name: "Normal",
  39735. height: math.unit(6, "feet"),
  39736. default: true
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39742. {
  39743. front: {
  39744. height: math.unit(15, "feet"),
  39745. weight: math.unit(615, "lb"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/grockle/front.svg",
  39749. extra: 1535/1427,
  39750. bottom: 56/1591
  39751. }
  39752. },
  39753. },
  39754. [
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(15, "feet"),
  39758. default: true
  39759. },
  39760. {
  39761. name: "Large",
  39762. height: math.unit(150, "feet")
  39763. },
  39764. {
  39765. name: "Macro",
  39766. height: math.unit(1876, "feet")
  39767. },
  39768. {
  39769. name: "Mega Macro",
  39770. height: math.unit(121940, "feet")
  39771. },
  39772. {
  39773. name: "Giga Macro",
  39774. height: math.unit(750, "km")
  39775. },
  39776. {
  39777. name: "Tera Macro",
  39778. height: math.unit(750000, "km")
  39779. },
  39780. {
  39781. name: "Galactic",
  39782. height: math.unit(1.4e5, "km")
  39783. },
  39784. {
  39785. name: "Godlike",
  39786. height: math.unit(9.8e280, "galaxies")
  39787. },
  39788. ]
  39789. ))
  39790. characterMakers.push(() => makeCharacter(
  39791. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39792. {
  39793. front: {
  39794. height: math.unit(11, "meters"),
  39795. weight: math.unit(20, "tonnes"),
  39796. name: "Front",
  39797. image: {
  39798. source: "./media/characters/alistair/front.svg",
  39799. extra: 1265/1009,
  39800. bottom: 93/1358
  39801. }
  39802. },
  39803. },
  39804. [
  39805. {
  39806. name: "Normal",
  39807. height: math.unit(11, "meters"),
  39808. default: true
  39809. },
  39810. ]
  39811. ))
  39812. characterMakers.push(() => makeCharacter(
  39813. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39814. {
  39815. front: {
  39816. height: math.unit(5 + 8/12, "feet"),
  39817. name: "Front",
  39818. image: {
  39819. source: "./media/characters/haruka/front.svg",
  39820. extra: 2012/1952,
  39821. bottom: 0/2012
  39822. }
  39823. },
  39824. },
  39825. [
  39826. {
  39827. name: "Normal",
  39828. height: math.unit(5 + 8/12, "feet"),
  39829. default: true
  39830. },
  39831. ]
  39832. ))
  39833. characterMakers.push(() => makeCharacter(
  39834. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39835. {
  39836. back: {
  39837. height: math.unit(9, "feet"),
  39838. name: "Back",
  39839. image: {
  39840. source: "./media/characters/vivian-sylveon/back.svg",
  39841. extra: 1853/1714,
  39842. bottom: 0/1853
  39843. }
  39844. },
  39845. hyper: {
  39846. height: math.unit(5.58, "feet"),
  39847. name: "Hyper",
  39848. preyCapacity: math.unit(2.80616218797, "m^3"),
  39849. image: {
  39850. source: "./media/characters/vivian-sylveon/hyper.svg",
  39851. extra: 999/676,
  39852. bottom: 697/1696
  39853. },
  39854. },
  39855. paw: {
  39856. height: math.unit(1.8, "feet"),
  39857. name: "Paw",
  39858. image: {
  39859. source: "./media/characters/vivian-sylveon/paw.svg"
  39860. }
  39861. },
  39862. danger: {
  39863. height: math.unit(7.5, "feet"),
  39864. name: "DANGER",
  39865. image: {
  39866. source: "./media/characters/vivian-sylveon/danger.svg"
  39867. }
  39868. },
  39869. },
  39870. [
  39871. {
  39872. name: "Normal",
  39873. height: math.unit(9, "feet"),
  39874. default: true
  39875. },
  39876. {
  39877. name: "Macro",
  39878. height: math.unit(500, "feet")
  39879. },
  39880. {
  39881. name: "Megamacro",
  39882. height: math.unit(600, "miles")
  39883. },
  39884. {
  39885. name: "Gigamacro",
  39886. height: math.unit(30000, "miles")
  39887. },
  39888. ]
  39889. ))
  39890. characterMakers.push(() => makeCharacter(
  39891. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39892. {
  39893. anthro: {
  39894. height: math.unit(5 + 10/12, "feet"),
  39895. weight: math.unit(100, "lb"),
  39896. name: "Anthro",
  39897. image: {
  39898. source: "./media/characters/daiki/anthro.svg",
  39899. extra: 1115/1027,
  39900. bottom: 69/1184
  39901. }
  39902. },
  39903. feral: {
  39904. height: math.unit(200, "feet"),
  39905. name: "Feral",
  39906. image: {
  39907. source: "./media/characters/daiki/feral.svg",
  39908. extra: 1256/313,
  39909. bottom: 39/1295
  39910. }
  39911. },
  39912. feralHead: {
  39913. height: math.unit(171, "feet"),
  39914. name: "Feral Head",
  39915. image: {
  39916. source: "./media/characters/daiki/feral-head.svg"
  39917. }
  39918. },
  39919. manaDragon: {
  39920. height: math.unit(170, "meters"),
  39921. name: "Mana-dragon",
  39922. image: {
  39923. source: "./media/characters/daiki/mana-dragon.svg",
  39924. extra: 763/420,
  39925. bottom: 97/860
  39926. }
  39927. },
  39928. },
  39929. [
  39930. {
  39931. name: "Normal",
  39932. height: math.unit(5 + 10/12, "feet"),
  39933. default: true
  39934. },
  39935. ]
  39936. ))
  39937. characterMakers.push(() => makeCharacter(
  39938. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39939. {
  39940. fullyEquippedFront: {
  39941. height: math.unit(3 + 1/12, "feet"),
  39942. weight: math.unit(24, "lb"),
  39943. name: "Fully Equipped (Front)",
  39944. image: {
  39945. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39946. extra: 687/605,
  39947. bottom: 18/705
  39948. }
  39949. },
  39950. fullyEquippedBack: {
  39951. height: math.unit(3 + 1/12, "feet"),
  39952. weight: math.unit(24, "lb"),
  39953. name: "Fully Equipped (Back)",
  39954. image: {
  39955. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39956. extra: 689/590,
  39957. bottom: 18/707
  39958. }
  39959. },
  39960. dailyWear: {
  39961. height: math.unit(3 + 1/12, "feet"),
  39962. weight: math.unit(24, "lb"),
  39963. name: "Daily Wear",
  39964. image: {
  39965. source: "./media/characters/tea-spot/daily-wear.svg",
  39966. extra: 701/620,
  39967. bottom: 21/722
  39968. }
  39969. },
  39970. maidWork: {
  39971. height: math.unit(3 + 1/12, "feet"),
  39972. weight: math.unit(24, "lb"),
  39973. name: "Maid Work",
  39974. image: {
  39975. source: "./media/characters/tea-spot/maid-work.svg",
  39976. extra: 693/609,
  39977. bottom: 15/708
  39978. }
  39979. },
  39980. },
  39981. [
  39982. {
  39983. name: "Normal",
  39984. height: math.unit(3 + 1/12, "feet"),
  39985. default: true
  39986. },
  39987. ]
  39988. ))
  39989. characterMakers.push(() => makeCharacter(
  39990. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39991. {
  39992. front: {
  39993. height: math.unit(175, "cm"),
  39994. weight: math.unit(75, "kg"),
  39995. name: "Front",
  39996. image: {
  39997. source: "./media/characters/chee/front.svg",
  39998. extra: 1796/1740,
  39999. bottom: 40/1836
  40000. }
  40001. },
  40002. },
  40003. [
  40004. {
  40005. name: "Micro-Micro",
  40006. height: math.unit(1, "nm")
  40007. },
  40008. {
  40009. name: "Micro-erst",
  40010. height: math.unit(1, "micrometer")
  40011. },
  40012. {
  40013. name: "Micro-er",
  40014. height: math.unit(1, "cm")
  40015. },
  40016. {
  40017. name: "Normal",
  40018. height: math.unit(175, "cm"),
  40019. default: true
  40020. },
  40021. {
  40022. name: "Macro",
  40023. height: math.unit(100, "m")
  40024. },
  40025. {
  40026. name: "Macro-er",
  40027. height: math.unit(1, "km")
  40028. },
  40029. {
  40030. name: "Macro-erst",
  40031. height: math.unit(10, "km")
  40032. },
  40033. {
  40034. name: "Macro-Macro",
  40035. height: math.unit(100, "km")
  40036. },
  40037. ]
  40038. ))
  40039. characterMakers.push(() => makeCharacter(
  40040. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40041. {
  40042. front: {
  40043. height: math.unit(11 + 9/12, "feet"),
  40044. weight: math.unit(935, "lb"),
  40045. name: "Front",
  40046. image: {
  40047. source: "./media/characters/kingsley/front.svg",
  40048. extra: 1803/1674,
  40049. bottom: 127/1930
  40050. }
  40051. },
  40052. frontNude: {
  40053. height: math.unit(11 + 9/12, "feet"),
  40054. weight: math.unit(935, "lb"),
  40055. name: "Front (Nude)",
  40056. image: {
  40057. source: "./media/characters/kingsley/front-nude.svg",
  40058. extra: 1803/1674,
  40059. bottom: 127/1930
  40060. }
  40061. },
  40062. },
  40063. [
  40064. {
  40065. name: "Normal",
  40066. height: math.unit(11 + 9/12, "feet"),
  40067. default: true
  40068. },
  40069. ]
  40070. ))
  40071. characterMakers.push(() => makeCharacter(
  40072. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40073. {
  40074. side: {
  40075. height: math.unit(9, "feet"),
  40076. name: "Side",
  40077. image: {
  40078. source: "./media/characters/rymel/side.svg",
  40079. extra: 792/469,
  40080. bottom: 121/913
  40081. }
  40082. },
  40083. maw: {
  40084. height: math.unit(2.4, "meters"),
  40085. name: "Maw",
  40086. image: {
  40087. source: "./media/characters/rymel/maw.svg"
  40088. }
  40089. },
  40090. },
  40091. [
  40092. {
  40093. name: "House Drake",
  40094. height: math.unit(2, "feet")
  40095. },
  40096. {
  40097. name: "Reduced",
  40098. height: math.unit(4.5, "feet")
  40099. },
  40100. {
  40101. name: "Normal",
  40102. height: math.unit(9, "feet"),
  40103. default: true
  40104. },
  40105. ]
  40106. ))
  40107. characterMakers.push(() => makeCharacter(
  40108. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40109. {
  40110. front: {
  40111. height: math.unit(1.74, "meters"),
  40112. weight: math.unit(55, "kg"),
  40113. name: "Front",
  40114. image: {
  40115. source: "./media/characters/rubus/front.svg",
  40116. extra: 1894/1742,
  40117. bottom: 44/1938
  40118. }
  40119. },
  40120. },
  40121. [
  40122. {
  40123. name: "Normal",
  40124. height: math.unit(1.74, "meters"),
  40125. default: true
  40126. },
  40127. ]
  40128. ))
  40129. characterMakers.push(() => makeCharacter(
  40130. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40131. {
  40132. front: {
  40133. height: math.unit(5 + 2/12, "feet"),
  40134. weight: math.unit(112, "lb"),
  40135. name: "Front",
  40136. image: {
  40137. source: "./media/characters/cassie-kingston/front.svg",
  40138. extra: 1438/1390,
  40139. bottom: 47/1485
  40140. }
  40141. },
  40142. },
  40143. [
  40144. {
  40145. name: "Normal",
  40146. height: math.unit(5 + 2/12, "feet"),
  40147. default: true
  40148. },
  40149. {
  40150. name: "Macro",
  40151. height: math.unit(128, "feet")
  40152. },
  40153. {
  40154. name: "Megamacro",
  40155. height: math.unit(2.56, "miles")
  40156. },
  40157. ]
  40158. ))
  40159. characterMakers.push(() => makeCharacter(
  40160. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40161. {
  40162. front: {
  40163. height: math.unit(7, "feet"),
  40164. name: "Front",
  40165. image: {
  40166. source: "./media/characters/fox/front.svg",
  40167. extra: 1798/1703,
  40168. bottom: 55/1853
  40169. }
  40170. },
  40171. back: {
  40172. height: math.unit(7, "feet"),
  40173. name: "Back",
  40174. image: {
  40175. source: "./media/characters/fox/back.svg",
  40176. extra: 1748/1649,
  40177. bottom: 32/1780
  40178. }
  40179. },
  40180. head: {
  40181. height: math.unit(1.95, "feet"),
  40182. name: "Head",
  40183. image: {
  40184. source: "./media/characters/fox/head.svg"
  40185. }
  40186. },
  40187. dick: {
  40188. height: math.unit(1.33, "feet"),
  40189. name: "Dick",
  40190. image: {
  40191. source: "./media/characters/fox/dick.svg"
  40192. }
  40193. },
  40194. foot: {
  40195. height: math.unit(1, "feet"),
  40196. name: "Foot",
  40197. image: {
  40198. source: "./media/characters/fox/foot.svg"
  40199. }
  40200. },
  40201. paw: {
  40202. height: math.unit(0.92, "feet"),
  40203. name: "Paw",
  40204. image: {
  40205. source: "./media/characters/fox/paw.svg"
  40206. }
  40207. },
  40208. },
  40209. [
  40210. {
  40211. name: "Small",
  40212. height: math.unit(3, "inches")
  40213. },
  40214. {
  40215. name: "\"Realistic\"",
  40216. height: math.unit(7, "feet")
  40217. },
  40218. {
  40219. name: "Normal",
  40220. height: math.unit(150, "feet"),
  40221. default: true
  40222. },
  40223. {
  40224. name: "BIG",
  40225. height: math.unit(1200, "feet")
  40226. },
  40227. {
  40228. name: "👀",
  40229. height: math.unit(5, "miles")
  40230. },
  40231. {
  40232. name: "👀👀👀",
  40233. height: math.unit(64, "miles")
  40234. },
  40235. ]
  40236. ))
  40237. characterMakers.push(() => makeCharacter(
  40238. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40239. {
  40240. front: {
  40241. height: math.unit(625, "feet"),
  40242. name: "Front",
  40243. image: {
  40244. source: "./media/characters/asonja-rossa/front.svg",
  40245. extra: 1833/1686,
  40246. bottom: 24/1857
  40247. }
  40248. },
  40249. back: {
  40250. height: math.unit(625, "feet"),
  40251. name: "Back",
  40252. image: {
  40253. source: "./media/characters/asonja-rossa/back.svg",
  40254. extra: 1852/1753,
  40255. bottom: 26/1878
  40256. }
  40257. },
  40258. },
  40259. [
  40260. {
  40261. name: "Macro",
  40262. height: math.unit(625, "feet"),
  40263. default: true
  40264. },
  40265. ]
  40266. ))
  40267. characterMakers.push(() => makeCharacter(
  40268. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40269. {
  40270. side: {
  40271. height: math.unit(8, "feet"),
  40272. name: "Side",
  40273. image: {
  40274. source: "./media/characters/rezukii/side.svg",
  40275. extra: 979/542,
  40276. bottom: 87/1066
  40277. }
  40278. },
  40279. sitting: {
  40280. height: math.unit(14.6, "feet"),
  40281. name: "Sitting",
  40282. image: {
  40283. source: "./media/characters/rezukii/sitting.svg",
  40284. extra: 1023/813,
  40285. bottom: 45/1068
  40286. }
  40287. },
  40288. },
  40289. [
  40290. {
  40291. name: "Tiny",
  40292. height: math.unit(2, "feet")
  40293. },
  40294. {
  40295. name: "Smol",
  40296. height: math.unit(4, "feet")
  40297. },
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(8, "feet"),
  40301. default: true
  40302. },
  40303. {
  40304. name: "Big",
  40305. height: math.unit(12, "feet")
  40306. },
  40307. {
  40308. name: "Macro",
  40309. height: math.unit(30, "feet")
  40310. },
  40311. ]
  40312. ))
  40313. characterMakers.push(() => makeCharacter(
  40314. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40315. {
  40316. front: {
  40317. height: math.unit(14, "feet"),
  40318. weight: math.unit(9.5, "tonnes"),
  40319. name: "Front",
  40320. image: {
  40321. source: "./media/characters/dawnheart/front.svg",
  40322. extra: 2792/2675,
  40323. bottom: 64/2856
  40324. }
  40325. },
  40326. },
  40327. [
  40328. {
  40329. name: "Normal",
  40330. height: math.unit(14, "feet"),
  40331. default: true
  40332. },
  40333. ]
  40334. ))
  40335. characterMakers.push(() => makeCharacter(
  40336. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40337. {
  40338. front: {
  40339. height: math.unit(1.7, "m"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/gladi/front.svg",
  40343. extra: 1460/1362,
  40344. bottom: 19/1479
  40345. }
  40346. },
  40347. back: {
  40348. height: math.unit(1.7, "m"),
  40349. name: "Back",
  40350. image: {
  40351. source: "./media/characters/gladi/back.svg",
  40352. extra: 1459/1357,
  40353. bottom: 12/1471
  40354. }
  40355. },
  40356. feral: {
  40357. height: math.unit(2.05, "m"),
  40358. name: "Feral",
  40359. image: {
  40360. source: "./media/characters/gladi/feral.svg",
  40361. extra: 821/557,
  40362. bottom: 91/912
  40363. }
  40364. },
  40365. },
  40366. [
  40367. {
  40368. name: "Shortest",
  40369. height: math.unit(70, "cm")
  40370. },
  40371. {
  40372. name: "Normal",
  40373. height: math.unit(1.7, "m")
  40374. },
  40375. {
  40376. name: "Macro",
  40377. height: math.unit(10, "m"),
  40378. default: true
  40379. },
  40380. {
  40381. name: "Tallest",
  40382. height: math.unit(200, "m")
  40383. },
  40384. ]
  40385. ))
  40386. characterMakers.push(() => makeCharacter(
  40387. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40388. {
  40389. front: {
  40390. height: math.unit(5 + 7/12, "feet"),
  40391. weight: math.unit(2, "tons"),
  40392. name: "Front",
  40393. image: {
  40394. source: "./media/characters/erdno/front.svg",
  40395. extra: 1234/1129,
  40396. bottom: 35/1269
  40397. }
  40398. },
  40399. angled: {
  40400. height: math.unit(5 + 7/12, "feet"),
  40401. weight: math.unit(2, "tons"),
  40402. name: "Angled",
  40403. image: {
  40404. source: "./media/characters/erdno/angled.svg",
  40405. extra: 1185/1139,
  40406. bottom: 36/1221
  40407. }
  40408. },
  40409. side: {
  40410. height: math.unit(5 + 7/12, "feet"),
  40411. weight: math.unit(2, "tons"),
  40412. name: "Side",
  40413. image: {
  40414. source: "./media/characters/erdno/side.svg",
  40415. extra: 1191/1144,
  40416. bottom: 40/1231
  40417. }
  40418. },
  40419. back: {
  40420. height: math.unit(5 + 7/12, "feet"),
  40421. weight: math.unit(2, "tons"),
  40422. name: "Back",
  40423. image: {
  40424. source: "./media/characters/erdno/back.svg",
  40425. extra: 1202/1146,
  40426. bottom: 17/1219
  40427. }
  40428. },
  40429. frontNsfw: {
  40430. height: math.unit(5 + 7/12, "feet"),
  40431. weight: math.unit(2, "tons"),
  40432. name: "Front (NSFW)",
  40433. image: {
  40434. source: "./media/characters/erdno/front-nsfw.svg",
  40435. extra: 1234/1129,
  40436. bottom: 35/1269
  40437. }
  40438. },
  40439. angledNsfw: {
  40440. height: math.unit(5 + 7/12, "feet"),
  40441. weight: math.unit(2, "tons"),
  40442. name: "Angled (NSFW)",
  40443. image: {
  40444. source: "./media/characters/erdno/angled-nsfw.svg",
  40445. extra: 1185/1139,
  40446. bottom: 36/1221
  40447. }
  40448. },
  40449. sideNsfw: {
  40450. height: math.unit(5 + 7/12, "feet"),
  40451. weight: math.unit(2, "tons"),
  40452. name: "Side (NSFW)",
  40453. image: {
  40454. source: "./media/characters/erdno/side-nsfw.svg",
  40455. extra: 1191/1144,
  40456. bottom: 40/1231
  40457. }
  40458. },
  40459. backNsfw: {
  40460. height: math.unit(5 + 7/12, "feet"),
  40461. weight: math.unit(2, "tons"),
  40462. name: "Back (NSFW)",
  40463. image: {
  40464. source: "./media/characters/erdno/back-nsfw.svg",
  40465. extra: 1202/1146,
  40466. bottom: 17/1219
  40467. }
  40468. },
  40469. frontHyper: {
  40470. height: math.unit(5 + 7/12, "feet"),
  40471. weight: math.unit(2, "tons"),
  40472. name: "Front (Hyper)",
  40473. image: {
  40474. source: "./media/characters/erdno/front-hyper.svg",
  40475. extra: 1298/1136,
  40476. bottom: 35/1333
  40477. }
  40478. },
  40479. },
  40480. [
  40481. {
  40482. name: "Normal",
  40483. height: math.unit(5 + 7/12, "feet"),
  40484. default: true
  40485. },
  40486. {
  40487. name: "Big",
  40488. height: math.unit(5.7, "meters")
  40489. },
  40490. {
  40491. name: "Macro",
  40492. height: math.unit(5.7, "kilometers")
  40493. },
  40494. {
  40495. name: "Megamacro",
  40496. height: math.unit(5.7, "earths")
  40497. },
  40498. ]
  40499. ))
  40500. characterMakers.push(() => makeCharacter(
  40501. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40502. {
  40503. front: {
  40504. height: math.unit(5 + 10/12, "feet"),
  40505. weight: math.unit(150, "lb"),
  40506. name: "Front",
  40507. image: {
  40508. source: "./media/characters/jamie/front.svg",
  40509. extra: 1908/1768,
  40510. bottom: 19/1927
  40511. }
  40512. },
  40513. },
  40514. [
  40515. {
  40516. name: "Minimum",
  40517. height: math.unit(2, "cm")
  40518. },
  40519. {
  40520. name: "Micro",
  40521. height: math.unit(3, "inches")
  40522. },
  40523. {
  40524. name: "Normal",
  40525. height: math.unit(5 + 10/12, "feet"),
  40526. default: true
  40527. },
  40528. {
  40529. name: "Macro",
  40530. height: math.unit(150, "feet")
  40531. },
  40532. {
  40533. name: "Megamacro",
  40534. height: math.unit(10000, "m")
  40535. },
  40536. ]
  40537. ))
  40538. characterMakers.push(() => makeCharacter(
  40539. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40540. {
  40541. front: {
  40542. height: math.unit(2, "meters"),
  40543. weight: math.unit(100, "kg"),
  40544. name: "Front",
  40545. image: {
  40546. source: "./media/characters/shiron/front.svg",
  40547. extra: 2103/1985,
  40548. bottom: 98/2201
  40549. }
  40550. },
  40551. back: {
  40552. height: math.unit(2, "meters"),
  40553. weight: math.unit(100, "kg"),
  40554. name: "Back",
  40555. image: {
  40556. source: "./media/characters/shiron/back.svg",
  40557. extra: 2110/2015,
  40558. bottom: 89/2199
  40559. }
  40560. },
  40561. hand: {
  40562. height: math.unit(0.96, "feet"),
  40563. name: "Hand",
  40564. image: {
  40565. source: "./media/characters/shiron/hand.svg"
  40566. }
  40567. },
  40568. foot: {
  40569. height: math.unit(1.464, "feet"),
  40570. name: "Foot",
  40571. image: {
  40572. source: "./media/characters/shiron/foot.svg"
  40573. }
  40574. },
  40575. },
  40576. [
  40577. {
  40578. name: "Normal",
  40579. height: math.unit(2, "meters")
  40580. },
  40581. {
  40582. name: "Macro",
  40583. height: math.unit(500, "meters"),
  40584. default: true
  40585. },
  40586. {
  40587. name: "Megamacro",
  40588. height: math.unit(20, "km")
  40589. },
  40590. ]
  40591. ))
  40592. characterMakers.push(() => makeCharacter(
  40593. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40594. {
  40595. front: {
  40596. height: math.unit(6, "feet"),
  40597. name: "Front",
  40598. image: {
  40599. source: "./media/characters/sam/front.svg",
  40600. extra: 849/826,
  40601. bottom: 19/868
  40602. }
  40603. },
  40604. },
  40605. [
  40606. {
  40607. name: "Normal",
  40608. height: math.unit(6, "feet"),
  40609. default: true
  40610. },
  40611. ]
  40612. ))
  40613. characterMakers.push(() => makeCharacter(
  40614. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40615. {
  40616. front: {
  40617. height: math.unit(8 + 4/12, "feet"),
  40618. weight: math.unit(122, "kg"),
  40619. name: "Front",
  40620. image: {
  40621. source: "./media/characters/namori-kurogawa/front.svg",
  40622. extra: 1894/1576,
  40623. bottom: 34/1928
  40624. }
  40625. },
  40626. },
  40627. [
  40628. {
  40629. name: "Normal",
  40630. height: math.unit(8 + 4/12, "feet"),
  40631. default: true
  40632. },
  40633. ]
  40634. ))
  40635. characterMakers.push(() => makeCharacter(
  40636. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40637. {
  40638. front: {
  40639. height: math.unit(9, "feet"),
  40640. weight: math.unit(621, "lb"),
  40641. name: "Front",
  40642. image: {
  40643. source: "./media/characters/unmru/front.svg",
  40644. extra: 1853/1747,
  40645. bottom: 73/1926
  40646. }
  40647. },
  40648. side: {
  40649. height: math.unit(9, "feet"),
  40650. weight: math.unit(621, "lb"),
  40651. name: "Side",
  40652. image: {
  40653. source: "./media/characters/unmru/side.svg",
  40654. extra: 1781/1671,
  40655. bottom: 127/1908
  40656. }
  40657. },
  40658. back: {
  40659. height: math.unit(9, "feet"),
  40660. weight: math.unit(621, "lb"),
  40661. name: "Back",
  40662. image: {
  40663. source: "./media/characters/unmru/back.svg",
  40664. extra: 1894/1765,
  40665. bottom: 75/1969
  40666. }
  40667. },
  40668. dick: {
  40669. height: math.unit(3, "feet"),
  40670. weight: math.unit(35, "lb"),
  40671. name: "Dick",
  40672. image: {
  40673. source: "./media/characters/unmru/dick.svg"
  40674. }
  40675. },
  40676. },
  40677. [
  40678. {
  40679. name: "Normal",
  40680. height: math.unit(9, "feet")
  40681. },
  40682. {
  40683. name: "Natural",
  40684. height: math.unit(27, "feet"),
  40685. default: true
  40686. },
  40687. {
  40688. name: "Giant",
  40689. height: math.unit(90, "feet")
  40690. },
  40691. {
  40692. name: "Kaiju",
  40693. height: math.unit(270, "feet")
  40694. },
  40695. {
  40696. name: "Macro",
  40697. height: math.unit(900, "feet")
  40698. },
  40699. {
  40700. name: "Macro+",
  40701. height: math.unit(2700, "feet")
  40702. },
  40703. {
  40704. name: "Megamacro",
  40705. height: math.unit(9000, "feet")
  40706. },
  40707. {
  40708. name: "City-Crushing",
  40709. height: math.unit(27000, "feet")
  40710. },
  40711. {
  40712. name: "Mountain-Mashing",
  40713. height: math.unit(90000, "feet")
  40714. },
  40715. {
  40716. name: "Earth-Eclipsing",
  40717. height: math.unit(2.7e8, "feet")
  40718. },
  40719. {
  40720. name: "Sol-Swallowing",
  40721. height: math.unit(9e10, "feet")
  40722. },
  40723. {
  40724. name: "Majoris-Munching",
  40725. height: math.unit(2.7e13, "feet")
  40726. },
  40727. ]
  40728. ))
  40729. characterMakers.push(() => makeCharacter(
  40730. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40731. {
  40732. front: {
  40733. height: math.unit(1, "inch"),
  40734. name: "Front",
  40735. image: {
  40736. source: "./media/characters/squeaks-mouse/front.svg",
  40737. extra: 352/308,
  40738. bottom: 25/377
  40739. }
  40740. },
  40741. },
  40742. [
  40743. {
  40744. name: "Micro",
  40745. height: math.unit(1, "inch"),
  40746. default: true
  40747. },
  40748. ]
  40749. ))
  40750. characterMakers.push(() => makeCharacter(
  40751. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40752. {
  40753. side: {
  40754. height: math.unit(35, "feet"),
  40755. name: "Side",
  40756. image: {
  40757. source: "./media/characters/sayko/side.svg",
  40758. extra: 1697/1021,
  40759. bottom: 82/1779
  40760. }
  40761. },
  40762. head: {
  40763. height: math.unit(16, "feet"),
  40764. name: "Head",
  40765. image: {
  40766. source: "./media/characters/sayko/head.svg"
  40767. }
  40768. },
  40769. forepaw: {
  40770. height: math.unit(7.85, "feet"),
  40771. name: "Forepaw",
  40772. image: {
  40773. source: "./media/characters/sayko/forepaw.svg"
  40774. }
  40775. },
  40776. hindpaw: {
  40777. height: math.unit(8.8, "feet"),
  40778. name: "Hindpaw",
  40779. image: {
  40780. source: "./media/characters/sayko/hindpaw.svg"
  40781. }
  40782. },
  40783. },
  40784. [
  40785. {
  40786. name: "Normal",
  40787. height: math.unit(35, "feet"),
  40788. default: true
  40789. },
  40790. {
  40791. name: "Colossus",
  40792. height: math.unit(100, "meters")
  40793. },
  40794. {
  40795. name: "\"Small\" Deity",
  40796. height: math.unit(1, "km")
  40797. },
  40798. {
  40799. name: "\"Large\" Deity",
  40800. height: math.unit(15, "km")
  40801. },
  40802. ]
  40803. ))
  40804. characterMakers.push(() => makeCharacter(
  40805. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40806. {
  40807. front: {
  40808. height: math.unit(6, "feet"),
  40809. weight: math.unit(250, "lb"),
  40810. name: "Front",
  40811. image: {
  40812. source: "./media/characters/mukiro/front.svg",
  40813. extra: 1368/1310,
  40814. bottom: 34/1402
  40815. }
  40816. },
  40817. },
  40818. [
  40819. {
  40820. name: "Normal",
  40821. height: math.unit(6, "feet"),
  40822. default: true
  40823. },
  40824. ]
  40825. ))
  40826. characterMakers.push(() => makeCharacter(
  40827. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40828. {
  40829. front: {
  40830. height: math.unit(12 + 4/12, "feet"),
  40831. name: "Front",
  40832. image: {
  40833. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40834. extra: 1346/1311,
  40835. bottom: 65/1411
  40836. }
  40837. },
  40838. },
  40839. [
  40840. {
  40841. name: "Base",
  40842. height: math.unit(12 + 4/12, "feet"),
  40843. default: true
  40844. },
  40845. {
  40846. name: "Macro",
  40847. height: math.unit(150, "feet")
  40848. },
  40849. {
  40850. name: "Mega",
  40851. height: math.unit(2, "miles")
  40852. },
  40853. {
  40854. name: "Demi God",
  40855. height: math.unit(4, "AU")
  40856. },
  40857. {
  40858. name: "God Size",
  40859. height: math.unit(1, "universe")
  40860. },
  40861. ]
  40862. ))
  40863. characterMakers.push(() => makeCharacter(
  40864. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40865. {
  40866. front: {
  40867. height: math.unit(3 + 3/12, "feet"),
  40868. weight: math.unit(88, "lb"),
  40869. name: "Front",
  40870. image: {
  40871. source: "./media/characters/trey/front.svg",
  40872. extra: 1815/1509,
  40873. bottom: 60/1875
  40874. }
  40875. },
  40876. },
  40877. [
  40878. {
  40879. name: "Normal",
  40880. height: math.unit(3 + 3/12, "feet"),
  40881. default: true
  40882. },
  40883. ]
  40884. ))
  40885. characterMakers.push(() => makeCharacter(
  40886. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40887. {
  40888. front: {
  40889. height: math.unit(4, "meters"),
  40890. name: "Front",
  40891. image: {
  40892. source: "./media/characters/adelonda/front.svg",
  40893. extra: 1077/982,
  40894. bottom: 39/1116
  40895. }
  40896. },
  40897. back: {
  40898. height: math.unit(4, "meters"),
  40899. name: "Back",
  40900. image: {
  40901. source: "./media/characters/adelonda/back.svg",
  40902. extra: 1105/1003,
  40903. bottom: 25/1130
  40904. }
  40905. },
  40906. feral: {
  40907. height: math.unit(40/1.5, "meters"),
  40908. name: "Feral",
  40909. image: {
  40910. source: "./media/characters/adelonda/feral.svg",
  40911. extra: 597/271,
  40912. bottom: 387/984
  40913. }
  40914. },
  40915. },
  40916. [
  40917. {
  40918. name: "Normal",
  40919. height: math.unit(4, "meters"),
  40920. default: true
  40921. },
  40922. ]
  40923. ))
  40924. characterMakers.push(() => makeCharacter(
  40925. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40926. {
  40927. front: {
  40928. height: math.unit(8 + 4/12, "feet"),
  40929. weight: math.unit(670, "lb"),
  40930. name: "Front",
  40931. image: {
  40932. source: "./media/characters/acadiel/front.svg",
  40933. extra: 1901/1595,
  40934. bottom: 142/2043
  40935. }
  40936. },
  40937. },
  40938. [
  40939. {
  40940. name: "Normal",
  40941. height: math.unit(8 + 4/12, "feet"),
  40942. default: true
  40943. },
  40944. {
  40945. name: "Macro",
  40946. height: math.unit(200, "feet")
  40947. },
  40948. ]
  40949. ))
  40950. characterMakers.push(() => makeCharacter(
  40951. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40952. {
  40953. front: {
  40954. height: math.unit(6 + 2/12, "feet"),
  40955. weight: math.unit(185, "lb"),
  40956. name: "Front",
  40957. image: {
  40958. source: "./media/characters/kayne-ein/front.svg",
  40959. extra: 1780/1560,
  40960. bottom: 81/1861
  40961. }
  40962. },
  40963. },
  40964. [
  40965. {
  40966. name: "Normal",
  40967. height: math.unit(6 + 2/12, "feet"),
  40968. default: true
  40969. },
  40970. {
  40971. name: "Transformation Stage",
  40972. height: math.unit(15, "feet")
  40973. },
  40974. {
  40975. name: "Macro",
  40976. height: math.unit(150, "feet")
  40977. },
  40978. {
  40979. name: "Earth's Shadow",
  40980. height: math.unit(6200, "miles")
  40981. },
  40982. {
  40983. name: "Universal Demon",
  40984. height: math.unit(28e9, "parsecs")
  40985. },
  40986. {
  40987. name: "Multiverse God",
  40988. height: math.unit(3, "multiverses")
  40989. },
  40990. ]
  40991. ))
  40992. characterMakers.push(() => makeCharacter(
  40993. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40994. {
  40995. front: {
  40996. height: math.unit(5 + 5/12, "feet"),
  40997. name: "Front",
  40998. image: {
  40999. source: "./media/characters/fawn/front.svg",
  41000. extra: 1873/1731,
  41001. bottom: 95/1968
  41002. }
  41003. },
  41004. back: {
  41005. height: math.unit(5 + 5/12, "feet"),
  41006. name: "Back",
  41007. image: {
  41008. source: "./media/characters/fawn/back.svg",
  41009. extra: 1813/1700,
  41010. bottom: 14/1827
  41011. }
  41012. },
  41013. hoof: {
  41014. height: math.unit(1.45, "feet"),
  41015. name: "Hoof",
  41016. image: {
  41017. source: "./media/characters/fawn/hoof.svg"
  41018. }
  41019. },
  41020. },
  41021. [
  41022. {
  41023. name: "Normal",
  41024. height: math.unit(5 + 5/12, "feet"),
  41025. default: true
  41026. },
  41027. ]
  41028. ))
  41029. characterMakers.push(() => makeCharacter(
  41030. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41031. {
  41032. front: {
  41033. height: math.unit(2 + 5/12, "feet"),
  41034. name: "Front",
  41035. image: {
  41036. source: "./media/characters/orion/front.svg",
  41037. extra: 1366/1304,
  41038. bottom: 43/1409
  41039. }
  41040. },
  41041. paw: {
  41042. height: math.unit(0.52, "feet"),
  41043. name: "Paw",
  41044. image: {
  41045. source: "./media/characters/orion/paw.svg"
  41046. }
  41047. },
  41048. },
  41049. [
  41050. {
  41051. name: "Normal",
  41052. height: math.unit(2 + 5/12, "feet"),
  41053. default: true
  41054. },
  41055. ]
  41056. ))
  41057. characterMakers.push(() => makeCharacter(
  41058. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41059. {
  41060. front: {
  41061. height: math.unit(5 + 10/12, "feet"),
  41062. name: "Front",
  41063. image: {
  41064. source: "./media/characters/vera/front.svg",
  41065. extra: 1680/1575,
  41066. bottom: 49/1729
  41067. }
  41068. },
  41069. back: {
  41070. height: math.unit(5 + 10/12, "feet"),
  41071. name: "Back",
  41072. image: {
  41073. source: "./media/characters/vera/back.svg",
  41074. extra: 1700/1588,
  41075. bottom: 18/1718
  41076. }
  41077. },
  41078. arcanine: {
  41079. height: math.unit(6 + 8/12, "feet"),
  41080. name: "Arcanine",
  41081. image: {
  41082. source: "./media/characters/vera/arcanine.svg",
  41083. extra: 1590/1511,
  41084. bottom: 71/1661
  41085. }
  41086. },
  41087. maw: {
  41088. height: math.unit(0.82, "feet"),
  41089. name: "Maw",
  41090. image: {
  41091. source: "./media/characters/vera/maw.svg"
  41092. }
  41093. },
  41094. mawArcanine: {
  41095. height: math.unit(0.97, "feet"),
  41096. name: "Maw (Arcanine)",
  41097. image: {
  41098. source: "./media/characters/vera/maw-arcanine.svg"
  41099. }
  41100. },
  41101. paw: {
  41102. height: math.unit(0.75, "feet"),
  41103. name: "Paw",
  41104. image: {
  41105. source: "./media/characters/vera/paw.svg"
  41106. }
  41107. },
  41108. pawprint: {
  41109. height: math.unit(0.52, "feet"),
  41110. name: "Pawprint",
  41111. image: {
  41112. source: "./media/characters/vera/pawprint.svg"
  41113. }
  41114. },
  41115. },
  41116. [
  41117. {
  41118. name: "Normal",
  41119. height: math.unit(5 + 10/12, "feet"),
  41120. default: true
  41121. },
  41122. {
  41123. name: "Macro",
  41124. height: math.unit(75, "feet")
  41125. },
  41126. ]
  41127. ))
  41128. characterMakers.push(() => makeCharacter(
  41129. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41130. {
  41131. front: {
  41132. height: math.unit(4, "feet"),
  41133. weight: math.unit(40, "lb"),
  41134. name: "Front",
  41135. image: {
  41136. source: "./media/characters/orvan-rabbit/front.svg",
  41137. extra: 1896/1642,
  41138. bottom: 29/1925
  41139. }
  41140. },
  41141. },
  41142. [
  41143. {
  41144. name: "Normal",
  41145. height: math.unit(4, "feet"),
  41146. default: true
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41152. {
  41153. front: {
  41154. height: math.unit(6, "feet"),
  41155. weight: math.unit(168, "lb"),
  41156. name: "Front",
  41157. image: {
  41158. source: "./media/characters/lisa/front.svg",
  41159. extra: 2065/1867,
  41160. bottom: 46/2111
  41161. }
  41162. },
  41163. back: {
  41164. height: math.unit(6, "feet"),
  41165. weight: math.unit(168, "lb"),
  41166. name: "Back",
  41167. image: {
  41168. source: "./media/characters/lisa/back.svg",
  41169. extra: 1982/1838,
  41170. bottom: 29/2011
  41171. }
  41172. },
  41173. maw: {
  41174. height: math.unit(0.81, "feet"),
  41175. name: "Maw",
  41176. image: {
  41177. source: "./media/characters/lisa/maw.svg"
  41178. }
  41179. },
  41180. paw: {
  41181. height: math.unit(0.9, "feet"),
  41182. name: "Paw",
  41183. image: {
  41184. source: "./media/characters/lisa/paw.svg"
  41185. }
  41186. },
  41187. caribousune: {
  41188. height: math.unit(7 + 2/12, "feet"),
  41189. weight: math.unit(268, "lb"),
  41190. name: "Caribousune",
  41191. image: {
  41192. source: "./media/characters/lisa/caribousune.svg",
  41193. extra: 1843/1633,
  41194. bottom: 29/1872
  41195. }
  41196. },
  41197. frontCaribousune: {
  41198. height: math.unit(7 + 2/12, "feet"),
  41199. weight: math.unit(268, "lb"),
  41200. name: "Front (Caribousune)",
  41201. image: {
  41202. source: "./media/characters/lisa/front-caribousune.svg",
  41203. extra: 1818/1638,
  41204. bottom: 52/1870
  41205. }
  41206. },
  41207. sideCaribousune: {
  41208. height: math.unit(7 + 2/12, "feet"),
  41209. weight: math.unit(268, "lb"),
  41210. name: "Side (Caribousune)",
  41211. image: {
  41212. source: "./media/characters/lisa/side-caribousune.svg",
  41213. extra: 1851/1635,
  41214. bottom: 16/1867
  41215. }
  41216. },
  41217. backCaribousune: {
  41218. height: math.unit(7 + 2/12, "feet"),
  41219. weight: math.unit(268, "lb"),
  41220. name: "Back (Caribousune)",
  41221. image: {
  41222. source: "./media/characters/lisa/back-caribousune.svg",
  41223. extra: 1801/1604,
  41224. bottom: 44/1845
  41225. }
  41226. },
  41227. caribou: {
  41228. height: math.unit(7 + 2/12, "feet"),
  41229. weight: math.unit(268, "lb"),
  41230. name: "Caribou",
  41231. image: {
  41232. source: "./media/characters/lisa/caribou.svg",
  41233. extra: 1843/1633,
  41234. bottom: 29/1872
  41235. }
  41236. },
  41237. frontCaribou: {
  41238. height: math.unit(7 + 2/12, "feet"),
  41239. weight: math.unit(268, "lb"),
  41240. name: "Front (Caribou)",
  41241. image: {
  41242. source: "./media/characters/lisa/front-caribou.svg",
  41243. extra: 1818/1638,
  41244. bottom: 52/1870
  41245. }
  41246. },
  41247. sideCaribou: {
  41248. height: math.unit(7 + 2/12, "feet"),
  41249. weight: math.unit(268, "lb"),
  41250. name: "Side (Caribou)",
  41251. image: {
  41252. source: "./media/characters/lisa/side-caribou.svg",
  41253. extra: 1851/1635,
  41254. bottom: 16/1867
  41255. }
  41256. },
  41257. backCaribou: {
  41258. height: math.unit(7 + 2/12, "feet"),
  41259. weight: math.unit(268, "lb"),
  41260. name: "Back (Caribou)",
  41261. image: {
  41262. source: "./media/characters/lisa/back-caribou.svg",
  41263. extra: 1801/1604,
  41264. bottom: 44/1845
  41265. }
  41266. },
  41267. mawCaribou: {
  41268. height: math.unit(1.45, "feet"),
  41269. name: "Maw (Caribou)",
  41270. image: {
  41271. source: "./media/characters/lisa/maw-caribou.svg"
  41272. }
  41273. },
  41274. mawCaribousune: {
  41275. height: math.unit(1.45, "feet"),
  41276. name: "Maw (Caribousune)",
  41277. image: {
  41278. source: "./media/characters/lisa/maw-caribousune.svg"
  41279. }
  41280. },
  41281. pawCaribousune: {
  41282. height: math.unit(1.61, "feet"),
  41283. name: "Paw (Caribou)",
  41284. image: {
  41285. source: "./media/characters/lisa/paw-caribousune.svg"
  41286. }
  41287. },
  41288. },
  41289. [
  41290. {
  41291. name: "Normal",
  41292. height: math.unit(6, "feet")
  41293. },
  41294. {
  41295. name: "God Size",
  41296. height: math.unit(72, "feet"),
  41297. default: true
  41298. },
  41299. {
  41300. name: "Towering",
  41301. height: math.unit(288, "feet")
  41302. },
  41303. {
  41304. name: "City Size",
  41305. height: math.unit(48384, "feet")
  41306. },
  41307. {
  41308. name: "Continental",
  41309. height: math.unit(4200, "miles")
  41310. },
  41311. {
  41312. name: "Planet Eater",
  41313. height: math.unit(42, "earths")
  41314. },
  41315. {
  41316. name: "Star Swallower",
  41317. height: math.unit(42, "solarradii")
  41318. },
  41319. {
  41320. name: "System Swallower",
  41321. height: math.unit(84000, "AU")
  41322. },
  41323. {
  41324. name: "Galaxy Gobbler",
  41325. height: math.unit(42, "galaxies")
  41326. },
  41327. {
  41328. name: "Universe Devourer",
  41329. height: math.unit(42, "universes")
  41330. },
  41331. {
  41332. name: "Multiverse Muncher",
  41333. height: math.unit(42, "multiverses")
  41334. },
  41335. ]
  41336. ))
  41337. characterMakers.push(() => makeCharacter(
  41338. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41339. {
  41340. front: {
  41341. height: math.unit(36, "feet"),
  41342. name: "Front",
  41343. image: {
  41344. source: "./media/characters/shadow-rat/front.svg",
  41345. extra: 1845/1758,
  41346. bottom: 83/1928
  41347. }
  41348. },
  41349. },
  41350. [
  41351. {
  41352. name: "Macro",
  41353. height: math.unit(36, "feet"),
  41354. default: true
  41355. },
  41356. ]
  41357. ))
  41358. characterMakers.push(() => makeCharacter(
  41359. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41360. {
  41361. side: {
  41362. height: math.unit(8, "feet"),
  41363. weight: math.unit(2630, "lb"),
  41364. name: "Side",
  41365. image: {
  41366. source: "./media/characters/torallia/side.svg",
  41367. extra: 2164/2021,
  41368. bottom: 371/2535
  41369. }
  41370. },
  41371. },
  41372. [
  41373. {
  41374. name: "Mortal Interaction",
  41375. height: math.unit(8, "feet")
  41376. },
  41377. {
  41378. name: "Natural",
  41379. height: math.unit(24, "feet"),
  41380. default: true
  41381. },
  41382. {
  41383. name: "Giant",
  41384. height: math.unit(80, "feet")
  41385. },
  41386. {
  41387. name: "Kaiju",
  41388. height: math.unit(240, "feet")
  41389. },
  41390. {
  41391. name: "Macro",
  41392. height: math.unit(800, "feet")
  41393. },
  41394. {
  41395. name: "Macro+",
  41396. height: math.unit(2400, "feet")
  41397. },
  41398. {
  41399. name: "Macro++",
  41400. height: math.unit(8000, "feet")
  41401. },
  41402. {
  41403. name: "City-Crushing",
  41404. height: math.unit(24000, "feet")
  41405. },
  41406. {
  41407. name: "Mountain-Mashing",
  41408. height: math.unit(80000, "feet")
  41409. },
  41410. {
  41411. name: "District Demolisher",
  41412. height: math.unit(240000, "feet")
  41413. },
  41414. {
  41415. name: "Tri-County Terror",
  41416. height: math.unit(800000, "feet")
  41417. },
  41418. {
  41419. name: "State Smasher",
  41420. height: math.unit(2.4e6, "feet")
  41421. },
  41422. {
  41423. name: "Nation Nemesis",
  41424. height: math.unit(8e6, "feet")
  41425. },
  41426. {
  41427. name: "Continent Cracker",
  41428. height: math.unit(2.4e7, "feet")
  41429. },
  41430. {
  41431. name: "Planet-Pillaging",
  41432. height: math.unit(8e7, "feet")
  41433. },
  41434. {
  41435. name: "Earth-Eclipsing",
  41436. height: math.unit(2.4e8, "feet")
  41437. },
  41438. {
  41439. name: "Jovian-Jostling",
  41440. height: math.unit(8e8, "feet")
  41441. },
  41442. {
  41443. name: "Gas Giant Gulper",
  41444. height: math.unit(2.4e9, "feet")
  41445. },
  41446. {
  41447. name: "Astral Annihilator",
  41448. height: math.unit(8e9, "feet")
  41449. },
  41450. {
  41451. name: "Celestial Conqueror",
  41452. height: math.unit(2.4e10, "feet")
  41453. },
  41454. {
  41455. name: "Sol-Swallowing",
  41456. height: math.unit(8e10, "feet")
  41457. },
  41458. {
  41459. name: "Hunter of the Heavens",
  41460. height: math.unit(2.4e13, "feet")
  41461. },
  41462. ]
  41463. ))
  41464. characterMakers.push(() => makeCharacter(
  41465. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41466. {
  41467. front: {
  41468. height: math.unit(10, "feet"),
  41469. weight: math.unit(844, "kilograms"),
  41470. name: "Front",
  41471. image: {
  41472. source: "./media/characters/rebecca-pawlson/front.svg",
  41473. extra: 1196/1099,
  41474. bottom: 81/1277
  41475. },
  41476. extraAttributes: {
  41477. "pawSize": {
  41478. name: "Paw Size",
  41479. power: 2,
  41480. type: "area",
  41481. base: math.unit(0.2 * 0.375, "meters^2")
  41482. },
  41483. "handSize": {
  41484. name: "Hand Size",
  41485. power: 2,
  41486. type: "area",
  41487. base: math.unit(0.2 * 0.35, "meters^2")
  41488. },
  41489. "breastDiameter": {
  41490. name: "Breast Diameter",
  41491. power: 1,
  41492. type: "length",
  41493. base: math.unit(0.5, "meters")
  41494. },
  41495. "breastVolume": {
  41496. name: "Breast Volume",
  41497. power: 3,
  41498. type: "volume",
  41499. base: math.unit(0.065, "m^3")
  41500. },
  41501. "breastMass": {
  41502. name: "Breast Mass",
  41503. power: 3,
  41504. type: "mass",
  41505. base: math.unit(65, "kg")
  41506. },
  41507. "nippleDiameter": {
  41508. name: "Nipple Diameter",
  41509. power: 1,
  41510. type: "length",
  41511. base: math.unit(0.1, "meters")
  41512. },
  41513. }
  41514. },
  41515. back: {
  41516. height: math.unit(10, "feet"),
  41517. weight: math.unit(844, "kilograms"),
  41518. name: "Back",
  41519. image: {
  41520. source: "./media/characters/rebecca-pawlson/back.svg",
  41521. extra: 879/776,
  41522. bottom: 43/922
  41523. },
  41524. extraAttributes: {
  41525. "pawSize": {
  41526. name: "Paw Size",
  41527. power: 2,
  41528. type: "area",
  41529. base: math.unit(0.2 * 0.375, "meters^2")
  41530. },
  41531. "handSize": {
  41532. name: "Hand Size",
  41533. power: 2,
  41534. type: "area",
  41535. base: math.unit(0.2 * 0.35, "meters^2")
  41536. },
  41537. "breastDiameter": {
  41538. name: "Breast Diameter",
  41539. power: 1,
  41540. type: "length",
  41541. base: math.unit(0.5, "meters")
  41542. },
  41543. "breastVolume": {
  41544. name: "Breast Volume",
  41545. power: 3,
  41546. type: "volume",
  41547. base: math.unit(0.065, "m^3")
  41548. },
  41549. "breastMass": {
  41550. name: "Breast Mass",
  41551. power: 3,
  41552. type: "mass",
  41553. base: math.unit(65, "kg")
  41554. },
  41555. "nippleDiameter": {
  41556. name: "Nipple Diameter",
  41557. power: 1,
  41558. type: "length",
  41559. base: math.unit(0.1, "meters")
  41560. },
  41561. }
  41562. },
  41563. },
  41564. [
  41565. {
  41566. name: "Normal",
  41567. height: math.unit(6 + 8/12, "feet")
  41568. },
  41569. {
  41570. name: "Mini Macro",
  41571. height: math.unit(10, "feet"),
  41572. default: true
  41573. },
  41574. {
  41575. name: "Macro",
  41576. height: math.unit(100, "feet")
  41577. },
  41578. {
  41579. name: "Mega Macro",
  41580. height: math.unit(2500, "feet")
  41581. },
  41582. {
  41583. name: "Giga Macro",
  41584. height: math.unit(50, "miles")
  41585. },
  41586. ]
  41587. ))
  41588. characterMakers.push(() => makeCharacter(
  41589. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41590. {
  41591. front: {
  41592. height: math.unit(7 + 6/12, "feet"),
  41593. weight: math.unit(600, "lb"),
  41594. name: "Front",
  41595. image: {
  41596. source: "./media/characters/moxie-nova/front.svg",
  41597. extra: 1734/1652,
  41598. bottom: 41/1775
  41599. }
  41600. },
  41601. },
  41602. [
  41603. {
  41604. name: "Normal",
  41605. height: math.unit(7 + 6/12, "feet"),
  41606. default: true
  41607. },
  41608. ]
  41609. ))
  41610. characterMakers.push(() => makeCharacter(
  41611. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41612. {
  41613. goat: {
  41614. height: math.unit(4, "feet"),
  41615. weight: math.unit(180, "lb"),
  41616. name: "Goat",
  41617. image: {
  41618. source: "./media/characters/tiffany/goat.svg",
  41619. extra: 1845/1595,
  41620. bottom: 106/1951
  41621. }
  41622. },
  41623. front: {
  41624. height: math.unit(5, "feet"),
  41625. weight: math.unit(150, "lb"),
  41626. name: "Foxcoon",
  41627. image: {
  41628. source: "./media/characters/tiffany/foxcoon.svg",
  41629. extra: 1941/1845,
  41630. bottom: 58/1999
  41631. }
  41632. },
  41633. },
  41634. [
  41635. {
  41636. name: "Normal",
  41637. height: math.unit(5, "feet"),
  41638. default: true
  41639. },
  41640. ]
  41641. ))
  41642. characterMakers.push(() => makeCharacter(
  41643. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41644. {
  41645. front: {
  41646. height: math.unit(8, "feet"),
  41647. weight: math.unit(300, "lb"),
  41648. name: "Front",
  41649. image: {
  41650. source: "./media/characters/raxinath/front.svg",
  41651. extra: 1407/1309,
  41652. bottom: 39/1446
  41653. }
  41654. },
  41655. back: {
  41656. height: math.unit(8, "feet"),
  41657. weight: math.unit(300, "lb"),
  41658. name: "Back",
  41659. image: {
  41660. source: "./media/characters/raxinath/back.svg",
  41661. extra: 1405/1315,
  41662. bottom: 9/1414
  41663. }
  41664. },
  41665. },
  41666. [
  41667. {
  41668. name: "Speck",
  41669. height: math.unit(0.5, "nm")
  41670. },
  41671. {
  41672. name: "Micro",
  41673. height: math.unit(3, "inches")
  41674. },
  41675. {
  41676. name: "Kobold",
  41677. height: math.unit(3, "feet")
  41678. },
  41679. {
  41680. name: "Normal",
  41681. height: math.unit(8, "feet"),
  41682. default: true
  41683. },
  41684. {
  41685. name: "Giant",
  41686. height: math.unit(50, "feet")
  41687. },
  41688. {
  41689. name: "Macro",
  41690. height: math.unit(1000, "feet")
  41691. },
  41692. {
  41693. name: "Megamacro",
  41694. height: math.unit(1, "mile")
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41700. {
  41701. front: {
  41702. height: math.unit(10, "feet"),
  41703. weight: math.unit(1442, "lb"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/mal-dragon/front.svg",
  41707. extra: 1515/1444,
  41708. bottom: 113/1628
  41709. }
  41710. },
  41711. back: {
  41712. height: math.unit(10, "feet"),
  41713. weight: math.unit(1442, "lb"),
  41714. name: "Back",
  41715. image: {
  41716. source: "./media/characters/mal-dragon/back.svg",
  41717. extra: 1527/1434,
  41718. bottom: 25/1552
  41719. }
  41720. },
  41721. },
  41722. [
  41723. {
  41724. name: "Mortal Interaction",
  41725. height: math.unit(10, "feet"),
  41726. default: true
  41727. },
  41728. {
  41729. name: "Large",
  41730. height: math.unit(30, "feet")
  41731. },
  41732. {
  41733. name: "Kaiju",
  41734. height: math.unit(300, "feet")
  41735. },
  41736. {
  41737. name: "Megamacro",
  41738. height: math.unit(10000, "feet")
  41739. },
  41740. {
  41741. name: "Continent Cracker",
  41742. height: math.unit(30000000, "feet")
  41743. },
  41744. {
  41745. name: "Sol-Swallowing",
  41746. height: math.unit(1e11, "feet")
  41747. },
  41748. {
  41749. name: "Light Universal",
  41750. height: math.unit(5, "universes")
  41751. },
  41752. {
  41753. name: "Universe Atoms",
  41754. height: math.unit(1.829e9, "universes")
  41755. },
  41756. {
  41757. name: "Light Multiversal",
  41758. height: math.unit(5, "multiverses")
  41759. },
  41760. {
  41761. name: "Multiverse Atoms",
  41762. height: math.unit(1.829e9, "multiverses")
  41763. },
  41764. {
  41765. name: "Fabric of Time",
  41766. height: math.unit(1e262, "multiverses")
  41767. },
  41768. ]
  41769. ))
  41770. characterMakers.push(() => makeCharacter(
  41771. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41772. {
  41773. front: {
  41774. height: math.unit(9, "feet"),
  41775. weight: math.unit(1050, "lb"),
  41776. name: "Front",
  41777. image: {
  41778. source: "./media/characters/tabitha/front.svg",
  41779. extra: 2083/1994,
  41780. bottom: 68/2151
  41781. }
  41782. },
  41783. },
  41784. [
  41785. {
  41786. name: "Baseline",
  41787. height: math.unit(9, "feet"),
  41788. default: true
  41789. },
  41790. {
  41791. name: "Giant",
  41792. height: math.unit(90, "feet")
  41793. },
  41794. {
  41795. name: "Macro",
  41796. height: math.unit(900, "feet")
  41797. },
  41798. {
  41799. name: "Megamacro",
  41800. height: math.unit(9000, "feet")
  41801. },
  41802. {
  41803. name: "City-Crushing",
  41804. height: math.unit(27000, "feet")
  41805. },
  41806. {
  41807. name: "Mountain-Mashing",
  41808. height: math.unit(90000, "feet")
  41809. },
  41810. {
  41811. name: "Nation Nemesis",
  41812. height: math.unit(9e6, "feet")
  41813. },
  41814. {
  41815. name: "Continent Cracker",
  41816. height: math.unit(27e6, "feet")
  41817. },
  41818. {
  41819. name: "Earth-Eclipsing",
  41820. height: math.unit(2.7e8, "feet")
  41821. },
  41822. {
  41823. name: "Gas Giant Gulper",
  41824. height: math.unit(2.7e9, "feet")
  41825. },
  41826. {
  41827. name: "Sol-Swallowing",
  41828. height: math.unit(9e10, "feet")
  41829. },
  41830. {
  41831. name: "Galaxy Gulper",
  41832. height: math.unit(9, "galaxies")
  41833. },
  41834. {
  41835. name: "Cosmos Churner",
  41836. height: math.unit(9, "universes")
  41837. },
  41838. ]
  41839. ))
  41840. characterMakers.push(() => makeCharacter(
  41841. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41842. {
  41843. front: {
  41844. height: math.unit(160, "cm"),
  41845. weight: math.unit(55, "kg"),
  41846. name: "Front",
  41847. image: {
  41848. source: "./media/characters/tow/front.svg",
  41849. extra: 1751/1722,
  41850. bottom: 74/1825
  41851. }
  41852. },
  41853. },
  41854. [
  41855. {
  41856. name: "Norm",
  41857. height: math.unit(160, "cm")
  41858. },
  41859. {
  41860. name: "Casual",
  41861. height: math.unit(3200, "m"),
  41862. default: true
  41863. },
  41864. {
  41865. name: "Show-Off",
  41866. height: math.unit(160, "km")
  41867. },
  41868. ]
  41869. ))
  41870. characterMakers.push(() => makeCharacter(
  41871. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41872. {
  41873. front: {
  41874. height: math.unit(7 + 11/12, "feet"),
  41875. weight: math.unit(342.8, "lb"),
  41876. name: "Front",
  41877. image: {
  41878. source: "./media/characters/vivian-orca-dragon/front.svg",
  41879. extra: 1890/1865,
  41880. bottom: 28/1918
  41881. }
  41882. },
  41883. },
  41884. [
  41885. {
  41886. name: "Micro",
  41887. height: math.unit(5, "inches")
  41888. },
  41889. {
  41890. name: "Normal",
  41891. height: math.unit(7 + 11/12, "feet"),
  41892. default: true
  41893. },
  41894. {
  41895. name: "Macro",
  41896. height: math.unit(395 + 7/12, "feet")
  41897. },
  41898. ]
  41899. ))
  41900. characterMakers.push(() => makeCharacter(
  41901. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41902. {
  41903. side: {
  41904. height: math.unit(10, "feet"),
  41905. weight: math.unit(1442, "lb"),
  41906. name: "Side",
  41907. image: {
  41908. source: "./media/characters/lotherakon/side.svg",
  41909. extra: 1604/1497,
  41910. bottom: 89/1693
  41911. }
  41912. },
  41913. },
  41914. [
  41915. {
  41916. name: "Mortal Interaction",
  41917. height: math.unit(10, "feet")
  41918. },
  41919. {
  41920. name: "Large",
  41921. height: math.unit(30, "feet"),
  41922. default: true
  41923. },
  41924. {
  41925. name: "Giant",
  41926. height: math.unit(100, "feet")
  41927. },
  41928. {
  41929. name: "Kaiju",
  41930. height: math.unit(300, "feet")
  41931. },
  41932. {
  41933. name: "Macro",
  41934. height: math.unit(1000, "feet")
  41935. },
  41936. {
  41937. name: "Macro+",
  41938. height: math.unit(3000, "feet")
  41939. },
  41940. {
  41941. name: "Megamacro",
  41942. height: math.unit(10000, "feet")
  41943. },
  41944. {
  41945. name: "City-Crushing",
  41946. height: math.unit(30000, "feet")
  41947. },
  41948. {
  41949. name: "Continent Cracker",
  41950. height: math.unit(30e6, "feet")
  41951. },
  41952. {
  41953. name: "Earth Eclipsing",
  41954. height: math.unit(3e8, "feet")
  41955. },
  41956. {
  41957. name: "Gas Giant Gulper",
  41958. height: math.unit(3e9, "feet")
  41959. },
  41960. {
  41961. name: "Sol-Swallowing",
  41962. height: math.unit(1e11, "feet")
  41963. },
  41964. {
  41965. name: "System Swallower",
  41966. height: math.unit(3e14, "feet")
  41967. },
  41968. {
  41969. name: "Galaxy Gulper",
  41970. height: math.unit(10, "galaxies")
  41971. },
  41972. {
  41973. name: "Light Universal",
  41974. height: math.unit(5, "universes")
  41975. },
  41976. {
  41977. name: "Universe Palm",
  41978. height: math.unit(20, "universes")
  41979. },
  41980. {
  41981. name: "Light Multiversal",
  41982. height: math.unit(5, "multiverses")
  41983. },
  41984. {
  41985. name: "Multiverse Palm",
  41986. height: math.unit(20, "multiverses")
  41987. },
  41988. {
  41989. name: "Inferno Incarnate",
  41990. height: math.unit(1e7, "multiverses")
  41991. },
  41992. ]
  41993. ))
  41994. characterMakers.push(() => makeCharacter(
  41995. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41996. {
  41997. front: {
  41998. height: math.unit(8, "feet"),
  41999. weight: math.unit(1200, "lb"),
  42000. name: "Front",
  42001. image: {
  42002. source: "./media/characters/malithee/front.svg",
  42003. extra: 1675/1640,
  42004. bottom: 162/1837
  42005. }
  42006. },
  42007. },
  42008. [
  42009. {
  42010. name: "Mortal Interaction",
  42011. height: math.unit(8, "feet"),
  42012. default: true
  42013. },
  42014. {
  42015. name: "Large",
  42016. height: math.unit(24, "feet")
  42017. },
  42018. {
  42019. name: "Kaiju",
  42020. height: math.unit(240, "feet")
  42021. },
  42022. {
  42023. name: "Megamacro",
  42024. height: math.unit(8000, "feet")
  42025. },
  42026. {
  42027. name: "Continent Cracker",
  42028. height: math.unit(24e6, "feet")
  42029. },
  42030. {
  42031. name: "Earth-Eclipsing",
  42032. height: math.unit(2.4e8, "feet")
  42033. },
  42034. {
  42035. name: "Sol-Swallowing",
  42036. height: math.unit(8e10, "feet")
  42037. },
  42038. {
  42039. name: "Galaxy Gulper",
  42040. height: math.unit(8, "galaxies")
  42041. },
  42042. {
  42043. name: "Light Universal",
  42044. height: math.unit(4, "universes")
  42045. },
  42046. {
  42047. name: "Universe Atoms",
  42048. height: math.unit(1.829e9, "universes")
  42049. },
  42050. {
  42051. name: "Light Multiversal",
  42052. height: math.unit(4, "multiverses")
  42053. },
  42054. {
  42055. name: "Multiverse Atoms",
  42056. height: math.unit(1.829e9, "multiverses")
  42057. },
  42058. {
  42059. name: "Nigh-Omnipresence",
  42060. height: math.unit(8e261, "multiverses")
  42061. },
  42062. ]
  42063. ))
  42064. characterMakers.push(() => makeCharacter(
  42065. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42066. {
  42067. front: {
  42068. height: math.unit(10, "feet"),
  42069. weight: math.unit(1500, "lb"),
  42070. name: "Front",
  42071. image: {
  42072. source: "./media/characters/miles-thestia/front.svg",
  42073. extra: 1812/1727,
  42074. bottom: 86/1898
  42075. }
  42076. },
  42077. back: {
  42078. height: math.unit(10, "feet"),
  42079. weight: math.unit(1500, "lb"),
  42080. name: "Back",
  42081. image: {
  42082. source: "./media/characters/miles-thestia/back.svg",
  42083. extra: 1799/1690,
  42084. bottom: 47/1846
  42085. }
  42086. },
  42087. frontNsfw: {
  42088. height: math.unit(10, "feet"),
  42089. weight: math.unit(1500, "lb"),
  42090. name: "Front (NSFW)",
  42091. image: {
  42092. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42093. extra: 1812/1727,
  42094. bottom: 86/1898
  42095. }
  42096. },
  42097. },
  42098. [
  42099. {
  42100. name: "Mini-Macro",
  42101. height: math.unit(10, "feet"),
  42102. default: true
  42103. },
  42104. ]
  42105. ))
  42106. characterMakers.push(() => makeCharacter(
  42107. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42108. {
  42109. front: {
  42110. height: math.unit(25, "feet"),
  42111. name: "Front",
  42112. image: {
  42113. source: "./media/characters/titan-s-wulf/front.svg",
  42114. extra: 1560/1484,
  42115. bottom: 76/1636
  42116. }
  42117. },
  42118. },
  42119. [
  42120. {
  42121. name: "Smallest",
  42122. height: math.unit(25, "feet"),
  42123. default: true
  42124. },
  42125. {
  42126. name: "Normal",
  42127. height: math.unit(200, "feet")
  42128. },
  42129. {
  42130. name: "Macro",
  42131. height: math.unit(200000, "feet")
  42132. },
  42133. {
  42134. name: "Multiversal Original",
  42135. height: math.unit(10000, "multiverses")
  42136. },
  42137. ]
  42138. ))
  42139. characterMakers.push(() => makeCharacter(
  42140. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42141. {
  42142. front: {
  42143. height: math.unit(8, "feet"),
  42144. weight: math.unit(553, "lb"),
  42145. name: "Front",
  42146. image: {
  42147. source: "./media/characters/tawendeh/front.svg",
  42148. extra: 2365/2268,
  42149. bottom: 83/2448
  42150. }
  42151. },
  42152. frontClothed: {
  42153. height: math.unit(8, "feet"),
  42154. weight: math.unit(553, "lb"),
  42155. name: "Front (Clothed)",
  42156. image: {
  42157. source: "./media/characters/tawendeh/front-clothed.svg",
  42158. extra: 2365/2268,
  42159. bottom: 83/2448
  42160. }
  42161. },
  42162. back: {
  42163. height: math.unit(8, "feet"),
  42164. weight: math.unit(553, "lb"),
  42165. name: "Back",
  42166. image: {
  42167. source: "./media/characters/tawendeh/back.svg",
  42168. extra: 2397/2294,
  42169. bottom: 42/2439
  42170. }
  42171. },
  42172. },
  42173. [
  42174. {
  42175. name: "Mortal Interaction",
  42176. height: math.unit(8, "feet"),
  42177. default: true
  42178. },
  42179. {
  42180. name: "Giant",
  42181. height: math.unit(80, "feet")
  42182. },
  42183. {
  42184. name: "Macro",
  42185. height: math.unit(800, "feet")
  42186. },
  42187. {
  42188. name: "Megamacro",
  42189. height: math.unit(8000, "feet")
  42190. },
  42191. {
  42192. name: "City-Crushing",
  42193. height: math.unit(24000, "feet")
  42194. },
  42195. {
  42196. name: "Mountain-Mashing",
  42197. height: math.unit(80000, "feet")
  42198. },
  42199. {
  42200. name: "Nation Nemesis",
  42201. height: math.unit(8e6, "feet")
  42202. },
  42203. {
  42204. name: "Continent Cracker",
  42205. height: math.unit(24e6, "feet")
  42206. },
  42207. {
  42208. name: "Earth-Eclipsing",
  42209. height: math.unit(2.4e8, "feet")
  42210. },
  42211. {
  42212. name: "Gas Giant Gulper",
  42213. height: math.unit(2.4e9, "feet")
  42214. },
  42215. {
  42216. name: "Sol-Swallowing",
  42217. height: math.unit(8e10, "feet")
  42218. },
  42219. {
  42220. name: "Galaxy Gulper",
  42221. height: math.unit(8, "galaxies")
  42222. },
  42223. {
  42224. name: "Cosmos Churner",
  42225. height: math.unit(8, "universes")
  42226. },
  42227. {
  42228. name: "Omnipotent Otter",
  42229. height: math.unit(80, "universes")
  42230. },
  42231. ]
  42232. ))
  42233. characterMakers.push(() => makeCharacter(
  42234. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42235. {
  42236. front: {
  42237. height: math.unit(2.6, "meters"),
  42238. weight: math.unit(900, "kg"),
  42239. name: "Front",
  42240. image: {
  42241. source: "./media/characters/neesha/front.svg",
  42242. extra: 1803/1653,
  42243. bottom: 128/1931
  42244. }
  42245. },
  42246. },
  42247. [
  42248. {
  42249. name: "Normal",
  42250. height: math.unit(2.6, "meters"),
  42251. default: true
  42252. },
  42253. {
  42254. name: "Macro",
  42255. height: math.unit(50, "meters")
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42261. {
  42262. front: {
  42263. height: math.unit(5, "feet"),
  42264. weight: math.unit(185, "lb"),
  42265. name: "Front",
  42266. image: {
  42267. source: "./media/characters/kyera/front.svg",
  42268. extra: 1875/1790,
  42269. bottom: 96/1971
  42270. }
  42271. },
  42272. },
  42273. [
  42274. {
  42275. name: "Normal",
  42276. height: math.unit(5, "feet"),
  42277. default: true
  42278. },
  42279. ]
  42280. ))
  42281. characterMakers.push(() => makeCharacter(
  42282. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42283. {
  42284. front: {
  42285. height: math.unit(7 + 6/12, "feet"),
  42286. weight: math.unit(540, "lb"),
  42287. name: "Front",
  42288. image: {
  42289. source: "./media/characters/yuko/front.svg",
  42290. extra: 1282/1222,
  42291. bottom: 101/1383
  42292. }
  42293. },
  42294. frontClothed: {
  42295. height: math.unit(7 + 6/12, "feet"),
  42296. weight: math.unit(540, "lb"),
  42297. name: "Front (Clothed)",
  42298. image: {
  42299. source: "./media/characters/yuko/front-clothed.svg",
  42300. extra: 1282/1222,
  42301. bottom: 101/1383
  42302. }
  42303. },
  42304. },
  42305. [
  42306. {
  42307. name: "Normal",
  42308. height: math.unit(7 + 6/12, "feet"),
  42309. default: true
  42310. },
  42311. {
  42312. name: "Macro",
  42313. height: math.unit(26 + 9/12, "feet")
  42314. },
  42315. {
  42316. name: "Megamacro",
  42317. height: math.unit(300, "feet")
  42318. },
  42319. {
  42320. name: "Gigamacro",
  42321. height: math.unit(5000, "feet")
  42322. },
  42323. {
  42324. name: "Planetary",
  42325. height: math.unit(10000, "miles")
  42326. },
  42327. ]
  42328. ))
  42329. characterMakers.push(() => makeCharacter(
  42330. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42331. {
  42332. front: {
  42333. height: math.unit(8 + 2/12, "feet"),
  42334. weight: math.unit(600, "lb"),
  42335. name: "Front",
  42336. image: {
  42337. source: "./media/characters/deam-nitrel/front.svg",
  42338. extra: 1308/1234,
  42339. bottom: 125/1433
  42340. }
  42341. },
  42342. },
  42343. [
  42344. {
  42345. name: "Normal",
  42346. height: math.unit(8 + 2/12, "feet"),
  42347. default: true
  42348. },
  42349. ]
  42350. ))
  42351. characterMakers.push(() => makeCharacter(
  42352. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42353. {
  42354. front: {
  42355. height: math.unit(6.1, "feet"),
  42356. weight: math.unit(180, "lb"),
  42357. name: "Front",
  42358. image: {
  42359. source: "./media/characters/skyress/front.svg",
  42360. extra: 1045/915,
  42361. bottom: 28/1073
  42362. }
  42363. },
  42364. maw: {
  42365. height: math.unit(1, "feet"),
  42366. name: "Maw",
  42367. image: {
  42368. source: "./media/characters/skyress/maw.svg"
  42369. }
  42370. },
  42371. },
  42372. [
  42373. {
  42374. name: "Normal",
  42375. height: math.unit(6.1, "feet"),
  42376. default: true
  42377. },
  42378. {
  42379. name: "Macro",
  42380. height: math.unit(200, "feet")
  42381. },
  42382. ]
  42383. ))
  42384. characterMakers.push(() => makeCharacter(
  42385. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42386. {
  42387. front: {
  42388. height: math.unit(4 + 2/12, "feet"),
  42389. weight: math.unit(40, "kg"),
  42390. name: "Front",
  42391. image: {
  42392. source: "./media/characters/amethyst-jones/front.svg",
  42393. extra: 1220/1150,
  42394. bottom: 101/1321
  42395. }
  42396. },
  42397. },
  42398. [
  42399. {
  42400. name: "Normal",
  42401. height: math.unit(4 + 2/12, "feet"),
  42402. default: true
  42403. },
  42404. ]
  42405. ))
  42406. characterMakers.push(() => makeCharacter(
  42407. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42408. {
  42409. front: {
  42410. height: math.unit(1.7, "m"),
  42411. weight: math.unit(135, "lb"),
  42412. name: "Front",
  42413. image: {
  42414. source: "./media/characters/jade/front.svg",
  42415. extra: 1818/1767,
  42416. bottom: 32/1850
  42417. }
  42418. },
  42419. back: {
  42420. height: math.unit(1.7, "m"),
  42421. weight: math.unit(135, "lb"),
  42422. name: "Back",
  42423. image: {
  42424. source: "./media/characters/jade/back.svg",
  42425. extra: 1869/1809,
  42426. bottom: 35/1904
  42427. }
  42428. },
  42429. hand: {
  42430. height: math.unit(0.24, "m"),
  42431. name: "Hand",
  42432. image: {
  42433. source: "./media/characters/jade/hand.svg"
  42434. }
  42435. },
  42436. foot: {
  42437. height: math.unit(0.263, "m"),
  42438. name: "Foot",
  42439. image: {
  42440. source: "./media/characters/jade/foot.svg"
  42441. }
  42442. },
  42443. dick: {
  42444. height: math.unit(0.47, "m"),
  42445. name: "Dick",
  42446. image: {
  42447. source: "./media/characters/jade/dick.svg"
  42448. }
  42449. },
  42450. },
  42451. [
  42452. {
  42453. name: "Micro",
  42454. height: math.unit(22, "cm")
  42455. },
  42456. {
  42457. name: "Normal",
  42458. height: math.unit(1.7, "m"),
  42459. default: true
  42460. },
  42461. {
  42462. name: "Macro",
  42463. height: math.unit(152, "m")
  42464. },
  42465. ]
  42466. ))
  42467. characterMakers.push(() => makeCharacter(
  42468. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42469. {
  42470. front: {
  42471. height: math.unit(100, "miles"),
  42472. weight: math.unit(20000, "tons"),
  42473. name: "Front",
  42474. image: {
  42475. source: "./media/characters/cookie/front.svg",
  42476. extra: 1125/1070,
  42477. bottom: 30/1155
  42478. }
  42479. },
  42480. },
  42481. [
  42482. {
  42483. name: "Big",
  42484. height: math.unit(50, "feet")
  42485. },
  42486. {
  42487. name: "Macro",
  42488. height: math.unit(100, "miles"),
  42489. default: true
  42490. },
  42491. {
  42492. name: "Megamacro",
  42493. height: math.unit(90000, "miles")
  42494. },
  42495. ]
  42496. ))
  42497. characterMakers.push(() => makeCharacter(
  42498. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42499. {
  42500. front: {
  42501. height: math.unit(6, "feet"),
  42502. weight: math.unit(145, "lb"),
  42503. name: "Front",
  42504. image: {
  42505. source: "./media/characters/farzian/front.svg",
  42506. extra: 1902/1693,
  42507. bottom: 108/2010
  42508. }
  42509. },
  42510. },
  42511. [
  42512. {
  42513. name: "Macro",
  42514. height: math.unit(500, "feet"),
  42515. default: true
  42516. },
  42517. ]
  42518. ))
  42519. characterMakers.push(() => makeCharacter(
  42520. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42521. {
  42522. front: {
  42523. height: math.unit(3 + 6/12, "feet"),
  42524. weight: math.unit(50, "lb"),
  42525. name: "Front",
  42526. image: {
  42527. source: "./media/characters/kimberly-tilson/front.svg",
  42528. extra: 1400/1322,
  42529. bottom: 36/1436
  42530. }
  42531. },
  42532. back: {
  42533. height: math.unit(3 + 6/12, "feet"),
  42534. weight: math.unit(50, "lb"),
  42535. name: "Back",
  42536. image: {
  42537. source: "./media/characters/kimberly-tilson/back.svg",
  42538. extra: 1370/1307,
  42539. bottom: 20/1390
  42540. }
  42541. },
  42542. },
  42543. [
  42544. {
  42545. name: "Normal",
  42546. height: math.unit(3 + 6/12, "feet"),
  42547. default: true
  42548. },
  42549. ]
  42550. ))
  42551. characterMakers.push(() => makeCharacter(
  42552. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42553. {
  42554. front: {
  42555. height: math.unit(350, "meters"),
  42556. weight: math.unit(7.57059e+8, "lb"),
  42557. name: "Front",
  42558. image: {
  42559. source: "./media/characters/harthos/front.svg",
  42560. extra: 455/446,
  42561. bottom: 15/470
  42562. },
  42563. form: "peacekeeper",
  42564. default: true
  42565. },
  42566. allusus_front: {
  42567. height: math.unit(270, "meters"),
  42568. weight: math.unit(3.47550e+8, "lb"),
  42569. name: "Front",
  42570. image: {
  42571. source: "./media/characters/harthos/allusus-front.svg",
  42572. extra: 455/446,
  42573. bottom: 15/470
  42574. },
  42575. form: "allusus",
  42576. },
  42577. },
  42578. [
  42579. {
  42580. name: "Macro",
  42581. height: math.unit(350, "meters"),
  42582. default: true,
  42583. form: "peacekeeper"
  42584. },
  42585. {
  42586. name: "Macro",
  42587. height: math.unit(270, "meters"),
  42588. default: true,
  42589. form: "allusus"
  42590. },
  42591. ],
  42592. {
  42593. "peacekeeper": {
  42594. name: "Peacekeeper",
  42595. default: true
  42596. },
  42597. "allusus": {
  42598. name: "Allusus",
  42599. },
  42600. }
  42601. ))
  42602. characterMakers.push(() => makeCharacter(
  42603. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42604. {
  42605. front: {
  42606. height: math.unit(15, "feet"),
  42607. name: "Front",
  42608. image: {
  42609. source: "./media/characters/hypatia/front.svg",
  42610. extra: 1653/1591,
  42611. bottom: 79/1732
  42612. }
  42613. },
  42614. },
  42615. [
  42616. {
  42617. name: "Normal",
  42618. height: math.unit(15, "feet")
  42619. },
  42620. {
  42621. name: "Small",
  42622. height: math.unit(300, "feet")
  42623. },
  42624. {
  42625. name: "Macro",
  42626. height: math.unit(2500, "feet"),
  42627. default: true
  42628. },
  42629. {
  42630. name: "Mega Macro",
  42631. height: math.unit(1500, "miles")
  42632. },
  42633. {
  42634. name: "Giga Macro",
  42635. height: math.unit(1.5e6, "miles")
  42636. },
  42637. ]
  42638. ))
  42639. characterMakers.push(() => makeCharacter(
  42640. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42641. {
  42642. front: {
  42643. height: math.unit(6, "feet"),
  42644. weight: math.unit(200, "lb"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/wulver/front.svg",
  42648. extra: 1724/1632,
  42649. bottom: 130/1854
  42650. }
  42651. },
  42652. frontNsfw: {
  42653. height: math.unit(6, "feet"),
  42654. weight: math.unit(200, "lb"),
  42655. name: "Front (NSFW)",
  42656. image: {
  42657. source: "./media/characters/wulver/front-nsfw.svg",
  42658. extra: 1724/1632,
  42659. bottom: 130/1854
  42660. }
  42661. },
  42662. },
  42663. [
  42664. {
  42665. name: "Human-Sized",
  42666. height: math.unit(6, "feet")
  42667. },
  42668. {
  42669. name: "Normal",
  42670. height: math.unit(4, "meters"),
  42671. default: true
  42672. },
  42673. {
  42674. name: "Large",
  42675. height: math.unit(6, "m")
  42676. },
  42677. ]
  42678. ))
  42679. characterMakers.push(() => makeCharacter(
  42680. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42681. {
  42682. front: {
  42683. height: math.unit(7, "feet"),
  42684. name: "Front",
  42685. image: {
  42686. source: "./media/characters/maru/front.svg",
  42687. extra: 1595/1570,
  42688. bottom: 0/1595
  42689. }
  42690. },
  42691. },
  42692. [
  42693. {
  42694. name: "Normal",
  42695. height: math.unit(7, "feet"),
  42696. default: true
  42697. },
  42698. {
  42699. name: "Macro",
  42700. height: math.unit(700, "feet")
  42701. },
  42702. {
  42703. name: "Mega Macro",
  42704. height: math.unit(25, "miles")
  42705. },
  42706. ]
  42707. ))
  42708. characterMakers.push(() => makeCharacter(
  42709. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42710. {
  42711. front: {
  42712. height: math.unit(6, "feet"),
  42713. weight: math.unit(170, "lb"),
  42714. name: "Front",
  42715. image: {
  42716. source: "./media/characters/xenon/front.svg",
  42717. extra: 1376/1305,
  42718. bottom: 56/1432
  42719. }
  42720. },
  42721. back: {
  42722. height: math.unit(6, "feet"),
  42723. weight: math.unit(170, "lb"),
  42724. name: "Back",
  42725. image: {
  42726. source: "./media/characters/xenon/back.svg",
  42727. extra: 1328/1259,
  42728. bottom: 95/1423
  42729. }
  42730. },
  42731. maw: {
  42732. height: math.unit(0.52, "feet"),
  42733. name: "Maw",
  42734. image: {
  42735. source: "./media/characters/xenon/maw.svg"
  42736. }
  42737. },
  42738. handLeft: {
  42739. height: math.unit(0.82 * 169 / 153, "feet"),
  42740. name: "Hand (Left)",
  42741. image: {
  42742. source: "./media/characters/xenon/hand-left.svg"
  42743. }
  42744. },
  42745. handRight: {
  42746. height: math.unit(0.82, "feet"),
  42747. name: "Hand (Right)",
  42748. image: {
  42749. source: "./media/characters/xenon/hand-right.svg"
  42750. }
  42751. },
  42752. footLeft: {
  42753. height: math.unit(1.13, "feet"),
  42754. name: "Foot (Left)",
  42755. image: {
  42756. source: "./media/characters/xenon/foot-left.svg"
  42757. }
  42758. },
  42759. footRight: {
  42760. height: math.unit(1.13 * 194 / 196, "feet"),
  42761. name: "Foot (Right)",
  42762. image: {
  42763. source: "./media/characters/xenon/foot-right.svg"
  42764. }
  42765. },
  42766. },
  42767. [
  42768. {
  42769. name: "Micro",
  42770. height: math.unit(0.8, "inches")
  42771. },
  42772. {
  42773. name: "Normal",
  42774. height: math.unit(6, "feet")
  42775. },
  42776. {
  42777. name: "Macro",
  42778. height: math.unit(50, "feet"),
  42779. default: true
  42780. },
  42781. {
  42782. name: "Macro+",
  42783. height: math.unit(250, "feet")
  42784. },
  42785. {
  42786. name: "Megamacro",
  42787. height: math.unit(1500, "feet")
  42788. },
  42789. ]
  42790. ))
  42791. characterMakers.push(() => makeCharacter(
  42792. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42793. {
  42794. front: {
  42795. height: math.unit(7 + 5/12, "feet"),
  42796. name: "Front",
  42797. image: {
  42798. source: "./media/characters/zane/front.svg",
  42799. extra: 1260/1203,
  42800. bottom: 94/1354
  42801. }
  42802. },
  42803. back: {
  42804. height: math.unit(5.05, "feet"),
  42805. name: "Back",
  42806. image: {
  42807. source: "./media/characters/zane/back.svg",
  42808. extra: 893/829,
  42809. bottom: 30/923
  42810. }
  42811. },
  42812. werewolf: {
  42813. height: math.unit(11, "feet"),
  42814. name: "Werewolf",
  42815. image: {
  42816. source: "./media/characters/zane/werewolf.svg",
  42817. extra: 1383/1323,
  42818. bottom: 89/1472
  42819. }
  42820. },
  42821. foot: {
  42822. height: math.unit(1.46, "feet"),
  42823. name: "Foot",
  42824. image: {
  42825. source: "./media/characters/zane/foot.svg"
  42826. }
  42827. },
  42828. footFront: {
  42829. height: math.unit(0.784, "feet"),
  42830. name: "Foot (Front)",
  42831. image: {
  42832. source: "./media/characters/zane/foot-front.svg"
  42833. }
  42834. },
  42835. dick: {
  42836. height: math.unit(1.95, "feet"),
  42837. name: "Dick",
  42838. image: {
  42839. source: "./media/characters/zane/dick.svg"
  42840. }
  42841. },
  42842. dickWerewolf: {
  42843. height: math.unit(3.77, "feet"),
  42844. name: "Dick (Werewolf)",
  42845. image: {
  42846. source: "./media/characters/zane/dick.svg"
  42847. }
  42848. },
  42849. },
  42850. [
  42851. {
  42852. name: "Normal",
  42853. height: math.unit(7 + 5/12, "feet"),
  42854. default: true
  42855. },
  42856. ]
  42857. ))
  42858. characterMakers.push(() => makeCharacter(
  42859. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42860. {
  42861. front: {
  42862. height: math.unit(6 + 2/12, "feet"),
  42863. weight: math.unit(284, "lb"),
  42864. name: "Front",
  42865. image: {
  42866. source: "./media/characters/benni-desparque/front.svg",
  42867. extra: 1353/1126,
  42868. bottom: 69/1422
  42869. }
  42870. },
  42871. },
  42872. [
  42873. {
  42874. name: "Civilian",
  42875. height: math.unit(6 + 2/12, "feet")
  42876. },
  42877. {
  42878. name: "Normal",
  42879. height: math.unit(98, "feet"),
  42880. default: true
  42881. },
  42882. {
  42883. name: "Kaiju Fighter",
  42884. height: math.unit(268, "feet")
  42885. },
  42886. ]
  42887. ))
  42888. characterMakers.push(() => makeCharacter(
  42889. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42890. {
  42891. front: {
  42892. height: math.unit(5, "feet"),
  42893. weight: math.unit(105, "lb"),
  42894. name: "Front",
  42895. image: {
  42896. source: "./media/characters/maxine/front.svg",
  42897. extra: 1386/1250,
  42898. bottom: 71/1457
  42899. }
  42900. },
  42901. },
  42902. [
  42903. {
  42904. name: "Normal",
  42905. height: math.unit(5, "feet"),
  42906. default: true
  42907. },
  42908. ]
  42909. ))
  42910. characterMakers.push(() => makeCharacter(
  42911. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42912. {
  42913. front: {
  42914. height: math.unit(11 + 7/12, "feet"),
  42915. weight: math.unit(9576, "lb"),
  42916. name: "Front",
  42917. image: {
  42918. source: "./media/characters/scaly/front.svg",
  42919. extra: 888/867,
  42920. bottom: 36/924
  42921. }
  42922. },
  42923. },
  42924. [
  42925. {
  42926. name: "Normal",
  42927. height: math.unit(11 + 7/12, "feet"),
  42928. default: true
  42929. },
  42930. ]
  42931. ))
  42932. characterMakers.push(() => makeCharacter(
  42933. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42934. {
  42935. front: {
  42936. height: math.unit(6 + 3/12, "feet"),
  42937. name: "Front",
  42938. image: {
  42939. source: "./media/characters/saelria/front.svg",
  42940. extra: 1243/1138,
  42941. bottom: 46/1289
  42942. }
  42943. },
  42944. },
  42945. [
  42946. {
  42947. name: "Micro",
  42948. height: math.unit(6, "inches"),
  42949. },
  42950. {
  42951. name: "Normal",
  42952. height: math.unit(6 + 3/12, "feet"),
  42953. default: true
  42954. },
  42955. {
  42956. name: "Macro",
  42957. height: math.unit(25, "feet")
  42958. },
  42959. ]
  42960. ))
  42961. characterMakers.push(() => makeCharacter(
  42962. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42963. {
  42964. front: {
  42965. height: math.unit(80, "meters"),
  42966. weight: math.unit(7000, "tonnes"),
  42967. name: "Front",
  42968. image: {
  42969. source: "./media/characters/tef/front.svg",
  42970. extra: 2036/1991,
  42971. bottom: 54/2090
  42972. }
  42973. },
  42974. back: {
  42975. height: math.unit(80, "meters"),
  42976. weight: math.unit(7000, "tonnes"),
  42977. name: "Back",
  42978. image: {
  42979. source: "./media/characters/tef/back.svg",
  42980. extra: 2036/1991,
  42981. bottom: 54/2090
  42982. }
  42983. },
  42984. },
  42985. [
  42986. {
  42987. name: "Macro",
  42988. height: math.unit(80, "meters"),
  42989. default: true
  42990. },
  42991. ]
  42992. ))
  42993. characterMakers.push(() => makeCharacter(
  42994. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42995. {
  42996. front: {
  42997. height: math.unit(13, "feet"),
  42998. weight: math.unit(6, "tons"),
  42999. name: "Front",
  43000. image: {
  43001. source: "./media/characters/rover/front.svg",
  43002. extra: 1233/1156,
  43003. bottom: 50/1283
  43004. }
  43005. },
  43006. back: {
  43007. height: math.unit(13, "feet"),
  43008. weight: math.unit(6, "tons"),
  43009. name: "Back",
  43010. image: {
  43011. source: "./media/characters/rover/back.svg",
  43012. extra: 1327/1258,
  43013. bottom: 39/1366
  43014. }
  43015. },
  43016. },
  43017. [
  43018. {
  43019. name: "Normal",
  43020. height: math.unit(13, "feet"),
  43021. default: true
  43022. },
  43023. {
  43024. name: "Macro",
  43025. height: math.unit(1300, "feet")
  43026. },
  43027. {
  43028. name: "Megamacro",
  43029. height: math.unit(1300, "miles")
  43030. },
  43031. {
  43032. name: "Gigamacro",
  43033. height: math.unit(1300000, "miles")
  43034. },
  43035. ]
  43036. ))
  43037. characterMakers.push(() => makeCharacter(
  43038. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43039. {
  43040. front: {
  43041. height: math.unit(10, "feet"),
  43042. weight: math.unit(500, "lb"),
  43043. name: "Front",
  43044. image: {
  43045. source: "./media/characters/ariz/front.svg",
  43046. extra: 461/450,
  43047. bottom: 16/477
  43048. }
  43049. },
  43050. },
  43051. [
  43052. {
  43053. name: "MiniMacro",
  43054. height: math.unit(10, "feet"),
  43055. default: true
  43056. },
  43057. ]
  43058. ))
  43059. characterMakers.push(() => makeCharacter(
  43060. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43061. {
  43062. front: {
  43063. height: math.unit(6, "feet"),
  43064. weight: math.unit(140, "lb"),
  43065. name: "Front",
  43066. image: {
  43067. source: "./media/characters/sigrun/front.svg",
  43068. extra: 1418/1359,
  43069. bottom: 27/1445
  43070. }
  43071. },
  43072. },
  43073. [
  43074. {
  43075. name: "Macro",
  43076. height: math.unit(35, "feet"),
  43077. default: true
  43078. },
  43079. ]
  43080. ))
  43081. characterMakers.push(() => makeCharacter(
  43082. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43083. {
  43084. front: {
  43085. height: math.unit(6, "feet"),
  43086. weight: math.unit(150, "lb"),
  43087. name: "Front",
  43088. image: {
  43089. source: "./media/characters/numin/front.svg",
  43090. extra: 1433/1388,
  43091. bottom: 12/1445
  43092. }
  43093. },
  43094. },
  43095. [
  43096. {
  43097. name: "Macro",
  43098. height: math.unit(21.5, "km"),
  43099. default: true
  43100. },
  43101. ]
  43102. ))
  43103. characterMakers.push(() => makeCharacter(
  43104. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43105. {
  43106. front: {
  43107. height: math.unit(6, "feet"),
  43108. weight: math.unit(463, "lb"),
  43109. name: "Front",
  43110. image: {
  43111. source: "./media/characters/melwa/front.svg",
  43112. extra: 1307/1248,
  43113. bottom: 93/1400
  43114. }
  43115. },
  43116. },
  43117. [
  43118. {
  43119. name: "Macro",
  43120. height: math.unit(50, "meters"),
  43121. default: true
  43122. },
  43123. ]
  43124. ))
  43125. characterMakers.push(() => makeCharacter(
  43126. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43127. {
  43128. front: {
  43129. height: math.unit(325, "feet"),
  43130. name: "Front",
  43131. image: {
  43132. source: "./media/characters/zorkaiju/front.svg",
  43133. extra: 1955/1814,
  43134. bottom: 40/1995
  43135. }
  43136. },
  43137. frontExtended: {
  43138. height: math.unit(325, "feet"),
  43139. name: "Front (Extended)",
  43140. image: {
  43141. source: "./media/characters/zorkaiju/front-extended.svg",
  43142. extra: 1955/1814,
  43143. bottom: 40/1995
  43144. }
  43145. },
  43146. side: {
  43147. height: math.unit(325, "feet"),
  43148. name: "Side",
  43149. image: {
  43150. source: "./media/characters/zorkaiju/side.svg",
  43151. extra: 1495/1396,
  43152. bottom: 17/1512
  43153. }
  43154. },
  43155. sideExtended: {
  43156. height: math.unit(325, "feet"),
  43157. name: "Side (Extended)",
  43158. image: {
  43159. source: "./media/characters/zorkaiju/side-extended.svg",
  43160. extra: 1495/1396,
  43161. bottom: 17/1512
  43162. }
  43163. },
  43164. back: {
  43165. height: math.unit(325, "feet"),
  43166. name: "Back",
  43167. image: {
  43168. source: "./media/characters/zorkaiju/back.svg",
  43169. extra: 1959/1821,
  43170. bottom: 31/1990
  43171. }
  43172. },
  43173. backExtended: {
  43174. height: math.unit(325, "feet"),
  43175. name: "Back (Extended)",
  43176. image: {
  43177. source: "./media/characters/zorkaiju/back-extended.svg",
  43178. extra: 1959/1821,
  43179. bottom: 31/1990
  43180. }
  43181. },
  43182. hand: {
  43183. height: math.unit(58.4, "feet"),
  43184. name: "Hand",
  43185. image: {
  43186. source: "./media/characters/zorkaiju/hand.svg"
  43187. }
  43188. },
  43189. handExtended: {
  43190. height: math.unit(61.4, "feet"),
  43191. name: "Hand (Extended)",
  43192. image: {
  43193. source: "./media/characters/zorkaiju/hand-extended.svg"
  43194. }
  43195. },
  43196. foot: {
  43197. height: math.unit(95, "feet"),
  43198. name: "Foot",
  43199. image: {
  43200. source: "./media/characters/zorkaiju/foot.svg"
  43201. }
  43202. },
  43203. leftArm: {
  43204. height: math.unit(59, "feet"),
  43205. name: "Left Arm",
  43206. image: {
  43207. source: "./media/characters/zorkaiju/left-arm.svg"
  43208. }
  43209. },
  43210. rightArm: {
  43211. height: math.unit(59, "feet"),
  43212. name: "Right Arm",
  43213. image: {
  43214. source: "./media/characters/zorkaiju/right-arm.svg"
  43215. }
  43216. },
  43217. leftArmExtended: {
  43218. height: math.unit(59 * 1.033546, "feet"),
  43219. name: "Left Arm (Extended)",
  43220. image: {
  43221. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43222. }
  43223. },
  43224. rightArmExtended: {
  43225. height: math.unit(59 * 1.0496, "feet"),
  43226. name: "Right Arm (Extended)",
  43227. image: {
  43228. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43229. }
  43230. },
  43231. tail: {
  43232. height: math.unit(104, "feet"),
  43233. name: "Tail",
  43234. image: {
  43235. source: "./media/characters/zorkaiju/tail.svg"
  43236. }
  43237. },
  43238. tailExtended: {
  43239. height: math.unit(104, "feet"),
  43240. name: "Tail (Extended)",
  43241. image: {
  43242. source: "./media/characters/zorkaiju/tail-extended.svg"
  43243. }
  43244. },
  43245. tailBottom: {
  43246. height: math.unit(104, "feet"),
  43247. name: "Tail Bottom",
  43248. image: {
  43249. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43250. }
  43251. },
  43252. crystal: {
  43253. height: math.unit(27.54, "feet"),
  43254. name: "Crystal",
  43255. image: {
  43256. source: "./media/characters/zorkaiju/crystal.svg"
  43257. }
  43258. },
  43259. },
  43260. [
  43261. {
  43262. name: "Kaiju",
  43263. height: math.unit(325, "feet"),
  43264. default: true
  43265. },
  43266. ]
  43267. ))
  43268. characterMakers.push(() => makeCharacter(
  43269. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43270. {
  43271. front: {
  43272. height: math.unit(6 + 1/12, "feet"),
  43273. weight: math.unit(115, "lb"),
  43274. name: "Front",
  43275. image: {
  43276. source: "./media/characters/bailey-belfry/front.svg",
  43277. extra: 1240/1121,
  43278. bottom: 101/1341
  43279. }
  43280. },
  43281. },
  43282. [
  43283. {
  43284. name: "Normal",
  43285. height: math.unit(6 + 1/12, "feet"),
  43286. default: true
  43287. },
  43288. ]
  43289. ))
  43290. characterMakers.push(() => makeCharacter(
  43291. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43292. {
  43293. side: {
  43294. height: math.unit(4, "meters"),
  43295. weight: math.unit(250, "kg"),
  43296. name: "Side",
  43297. image: {
  43298. source: "./media/characters/blacky/side.svg",
  43299. extra: 1027/919,
  43300. bottom: 43/1070
  43301. }
  43302. },
  43303. maw: {
  43304. height: math.unit(1, "meters"),
  43305. name: "Maw",
  43306. image: {
  43307. source: "./media/characters/blacky/maw.svg"
  43308. }
  43309. },
  43310. paw: {
  43311. height: math.unit(1, "meters"),
  43312. name: "Paw",
  43313. image: {
  43314. source: "./media/characters/blacky/paw.svg"
  43315. }
  43316. },
  43317. },
  43318. [
  43319. {
  43320. name: "Normal",
  43321. height: math.unit(4, "meters"),
  43322. default: true
  43323. },
  43324. ]
  43325. ))
  43326. characterMakers.push(() => makeCharacter(
  43327. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43328. {
  43329. front: {
  43330. height: math.unit(170, "cm"),
  43331. weight: math.unit(66, "kg"),
  43332. name: "Front",
  43333. image: {
  43334. source: "./media/characters/thux-ei/front.svg",
  43335. extra: 1109/1011,
  43336. bottom: 8/1117
  43337. }
  43338. },
  43339. },
  43340. [
  43341. {
  43342. name: "Normal",
  43343. height: math.unit(170, "cm"),
  43344. default: true
  43345. },
  43346. ]
  43347. ))
  43348. characterMakers.push(() => makeCharacter(
  43349. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43350. {
  43351. front: {
  43352. height: math.unit(5, "feet"),
  43353. weight: math.unit(120, "lb"),
  43354. name: "Front",
  43355. image: {
  43356. source: "./media/characters/roxanne-voltaire/front.svg",
  43357. extra: 1901/1779,
  43358. bottom: 53/1954
  43359. }
  43360. },
  43361. },
  43362. [
  43363. {
  43364. name: "Normal",
  43365. height: math.unit(5, "feet"),
  43366. default: true
  43367. },
  43368. {
  43369. name: "Giant",
  43370. height: math.unit(50, "feet")
  43371. },
  43372. {
  43373. name: "Titan",
  43374. height: math.unit(500, "feet")
  43375. },
  43376. {
  43377. name: "Macro",
  43378. height: math.unit(5000, "feet")
  43379. },
  43380. {
  43381. name: "Megamacro",
  43382. height: math.unit(50000, "feet")
  43383. },
  43384. {
  43385. name: "Gigamacro",
  43386. height: math.unit(500000, "feet")
  43387. },
  43388. {
  43389. name: "Teramacro",
  43390. height: math.unit(5e6, "feet")
  43391. },
  43392. ]
  43393. ))
  43394. characterMakers.push(() => makeCharacter(
  43395. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43396. {
  43397. front: {
  43398. height: math.unit(6 + 2/12, "feet"),
  43399. name: "Front",
  43400. image: {
  43401. source: "./media/characters/squeaks/front.svg",
  43402. extra: 1823/1768,
  43403. bottom: 138/1961
  43404. }
  43405. },
  43406. },
  43407. [
  43408. {
  43409. name: "Micro",
  43410. height: math.unit(0.5, "inches")
  43411. },
  43412. {
  43413. name: "Normal",
  43414. height: math.unit(6 + 2/12, "feet"),
  43415. default: true
  43416. },
  43417. {
  43418. name: "Macro",
  43419. height: math.unit(600, "feet")
  43420. },
  43421. ]
  43422. ))
  43423. characterMakers.push(() => makeCharacter(
  43424. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43425. {
  43426. front: {
  43427. height: math.unit(1.72, "meters"),
  43428. name: "Front",
  43429. image: {
  43430. source: "./media/characters/archinger/front.svg",
  43431. extra: 1861/1675,
  43432. bottom: 125/1986
  43433. }
  43434. },
  43435. back: {
  43436. height: math.unit(1.72, "meters"),
  43437. name: "Back",
  43438. image: {
  43439. source: "./media/characters/archinger/back.svg",
  43440. extra: 1844/1701,
  43441. bottom: 104/1948
  43442. }
  43443. },
  43444. cock: {
  43445. height: math.unit(0.59, "feet"),
  43446. name: "Cock",
  43447. image: {
  43448. source: "./media/characters/archinger/cock.svg"
  43449. }
  43450. },
  43451. },
  43452. [
  43453. {
  43454. name: "Normal",
  43455. height: math.unit(1.72, "meters"),
  43456. default: true
  43457. },
  43458. {
  43459. name: "Macro",
  43460. height: math.unit(84, "meters")
  43461. },
  43462. {
  43463. name: "Macro+",
  43464. height: math.unit(112, "meters")
  43465. },
  43466. {
  43467. name: "Macro++",
  43468. height: math.unit(960, "meters")
  43469. },
  43470. {
  43471. name: "Macro+++",
  43472. height: math.unit(4, "km")
  43473. },
  43474. {
  43475. name: "Macro++++",
  43476. height: math.unit(48, "km")
  43477. },
  43478. {
  43479. name: "Macro+++++",
  43480. height: math.unit(4500, "km")
  43481. },
  43482. ]
  43483. ))
  43484. characterMakers.push(() => makeCharacter(
  43485. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43486. {
  43487. front: {
  43488. height: math.unit(5 + 5/12, "feet"),
  43489. name: "Front",
  43490. image: {
  43491. source: "./media/characters/alsnapz/front.svg",
  43492. extra: 1157/1065,
  43493. bottom: 42/1199
  43494. }
  43495. },
  43496. },
  43497. [
  43498. {
  43499. name: "Normal",
  43500. height: math.unit(5 + 5/12, "feet"),
  43501. default: true
  43502. },
  43503. ]
  43504. ))
  43505. characterMakers.push(() => makeCharacter(
  43506. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43507. {
  43508. side: {
  43509. height: math.unit(3.2, "earths"),
  43510. name: "Side",
  43511. image: {
  43512. source: "./media/characters/mag/side.svg",
  43513. extra: 1331/1008,
  43514. bottom: 52/1383
  43515. }
  43516. },
  43517. wing: {
  43518. height: math.unit(1.94, "earths"),
  43519. name: "Wing",
  43520. image: {
  43521. source: "./media/characters/mag/wing.svg"
  43522. }
  43523. },
  43524. dick: {
  43525. height: math.unit(1.8, "earths"),
  43526. name: "Dick",
  43527. image: {
  43528. source: "./media/characters/mag/dick.svg"
  43529. }
  43530. },
  43531. ass: {
  43532. height: math.unit(1.33, "earths"),
  43533. name: "Ass",
  43534. image: {
  43535. source: "./media/characters/mag/ass.svg"
  43536. }
  43537. },
  43538. head: {
  43539. height: math.unit(1.1, "earths"),
  43540. name: "Head",
  43541. image: {
  43542. source: "./media/characters/mag/head.svg"
  43543. }
  43544. },
  43545. maw: {
  43546. height: math.unit(1.62, "earths"),
  43547. name: "Maw",
  43548. image: {
  43549. source: "./media/characters/mag/maw.svg"
  43550. }
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Small",
  43556. height: math.unit(162, "feet")
  43557. },
  43558. {
  43559. name: "Normal",
  43560. height: math.unit(3.2, "earths"),
  43561. default: true
  43562. },
  43563. ]
  43564. ))
  43565. characterMakers.push(() => makeCharacter(
  43566. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43567. {
  43568. front: {
  43569. height: math.unit(512, "feet"),
  43570. weight: math.unit(63509, "tonnes"),
  43571. name: "Front",
  43572. image: {
  43573. source: "./media/characters/vorrel-harroc/front.svg",
  43574. extra: 1075/1063,
  43575. bottom: 62/1137
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Normal",
  43582. height: math.unit(10, "feet")
  43583. },
  43584. {
  43585. name: "Macro",
  43586. height: math.unit(512, "feet"),
  43587. default: true
  43588. },
  43589. {
  43590. name: "Megamacro",
  43591. height: math.unit(256, "miles")
  43592. },
  43593. {
  43594. name: "Gigamacro",
  43595. height: math.unit(4096, "miles")
  43596. },
  43597. ]
  43598. ))
  43599. characterMakers.push(() => makeCharacter(
  43600. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43601. {
  43602. side: {
  43603. height: math.unit(50, "feet"),
  43604. name: "Side",
  43605. image: {
  43606. source: "./media/characters/froimar/side.svg",
  43607. extra: 855/638,
  43608. bottom: 99/954
  43609. }
  43610. },
  43611. },
  43612. [
  43613. {
  43614. name: "Macro",
  43615. height: math.unit(50, "feet"),
  43616. default: true
  43617. },
  43618. ]
  43619. ))
  43620. characterMakers.push(() => makeCharacter(
  43621. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43622. {
  43623. front: {
  43624. height: math.unit(210, "miles"),
  43625. name: "Front",
  43626. image: {
  43627. source: "./media/characters/timothy/front.svg",
  43628. extra: 1007/943,
  43629. bottom: 62/1069
  43630. }
  43631. },
  43632. frontSkirt: {
  43633. height: math.unit(210, "miles"),
  43634. name: "Front (Skirt)",
  43635. image: {
  43636. source: "./media/characters/timothy/front-skirt.svg",
  43637. extra: 1007/943,
  43638. bottom: 62/1069
  43639. }
  43640. },
  43641. frontCoat: {
  43642. height: math.unit(210, "miles"),
  43643. name: "Front (Coat)",
  43644. image: {
  43645. source: "./media/characters/timothy/front-coat.svg",
  43646. extra: 1007/943,
  43647. bottom: 62/1069
  43648. }
  43649. },
  43650. },
  43651. [
  43652. {
  43653. name: "Macro",
  43654. height: math.unit(210, "miles"),
  43655. default: true
  43656. },
  43657. {
  43658. name: "Megamacro",
  43659. height: math.unit(210000, "miles")
  43660. },
  43661. ]
  43662. ))
  43663. characterMakers.push(() => makeCharacter(
  43664. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43665. {
  43666. front: {
  43667. height: math.unit(188, "feet"),
  43668. name: "Front",
  43669. image: {
  43670. source: "./media/characters/pyotr/front.svg",
  43671. extra: 1912/1826,
  43672. bottom: 18/1930
  43673. }
  43674. },
  43675. },
  43676. [
  43677. {
  43678. name: "Macro",
  43679. height: math.unit(188, "feet"),
  43680. default: true
  43681. },
  43682. {
  43683. name: "Megamacro",
  43684. height: math.unit(8, "miles")
  43685. },
  43686. ]
  43687. ))
  43688. characterMakers.push(() => makeCharacter(
  43689. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43690. {
  43691. side: {
  43692. height: math.unit(10, "feet"),
  43693. weight: math.unit(4500, "lb"),
  43694. name: "Side",
  43695. image: {
  43696. source: "./media/characters/ackart/side.svg",
  43697. extra: 1776/1668,
  43698. bottom: 116/1892
  43699. }
  43700. },
  43701. },
  43702. [
  43703. {
  43704. name: "Normal",
  43705. height: math.unit(10, "feet"),
  43706. default: true
  43707. },
  43708. ]
  43709. ))
  43710. characterMakers.push(() => makeCharacter(
  43711. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43712. {
  43713. side: {
  43714. height: math.unit(21, "feet"),
  43715. name: "Side",
  43716. image: {
  43717. source: "./media/characters/nolow/side.svg",
  43718. extra: 1484/1434,
  43719. bottom: 85/1569
  43720. }
  43721. },
  43722. sideErect: {
  43723. height: math.unit(21, "feet"),
  43724. name: "Side-erect",
  43725. image: {
  43726. source: "./media/characters/nolow/side-erect.svg",
  43727. extra: 1484/1434,
  43728. bottom: 85/1569
  43729. }
  43730. },
  43731. },
  43732. [
  43733. {
  43734. name: "Regular",
  43735. height: math.unit(12, "feet")
  43736. },
  43737. {
  43738. name: "Big Chee",
  43739. height: math.unit(21, "feet"),
  43740. default: true
  43741. },
  43742. ]
  43743. ))
  43744. characterMakers.push(() => makeCharacter(
  43745. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43746. {
  43747. front: {
  43748. height: math.unit(7, "feet"),
  43749. weight: math.unit(250, "lb"),
  43750. name: "Front",
  43751. image: {
  43752. source: "./media/characters/nines/front.svg",
  43753. extra: 1741/1607,
  43754. bottom: 41/1782
  43755. }
  43756. },
  43757. side: {
  43758. height: math.unit(7, "feet"),
  43759. weight: math.unit(250, "lb"),
  43760. name: "Side",
  43761. image: {
  43762. source: "./media/characters/nines/side.svg",
  43763. extra: 1854/1735,
  43764. bottom: 93/1947
  43765. }
  43766. },
  43767. back: {
  43768. height: math.unit(7, "feet"),
  43769. weight: math.unit(250, "lb"),
  43770. name: "Back",
  43771. image: {
  43772. source: "./media/characters/nines/back.svg",
  43773. extra: 1748/1615,
  43774. bottom: 20/1768
  43775. }
  43776. },
  43777. },
  43778. [
  43779. {
  43780. name: "Megamacro",
  43781. height: math.unit(99, "km"),
  43782. default: true
  43783. },
  43784. ]
  43785. ))
  43786. characterMakers.push(() => makeCharacter(
  43787. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43788. {
  43789. front: {
  43790. height: math.unit(5 + 10/12, "feet"),
  43791. weight: math.unit(210, "lb"),
  43792. name: "Front",
  43793. image: {
  43794. source: "./media/characters/zenith/front.svg",
  43795. extra: 1531/1452,
  43796. bottom: 198/1729
  43797. }
  43798. },
  43799. back: {
  43800. height: math.unit(5 + 10/12, "feet"),
  43801. weight: math.unit(210, "lb"),
  43802. name: "Back",
  43803. image: {
  43804. source: "./media/characters/zenith/back.svg",
  43805. extra: 1571/1487,
  43806. bottom: 75/1646
  43807. }
  43808. },
  43809. },
  43810. [
  43811. {
  43812. name: "Normal",
  43813. height: math.unit(5 + 10/12, "feet"),
  43814. default: true
  43815. }
  43816. ]
  43817. ))
  43818. characterMakers.push(() => makeCharacter(
  43819. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43820. {
  43821. front: {
  43822. height: math.unit(4, "feet"),
  43823. weight: math.unit(60, "lb"),
  43824. name: "Front",
  43825. image: {
  43826. source: "./media/characters/jasper/front.svg",
  43827. extra: 1450/1379,
  43828. bottom: 19/1469
  43829. }
  43830. },
  43831. },
  43832. [
  43833. {
  43834. name: "Normal",
  43835. height: math.unit(4, "feet"),
  43836. default: true
  43837. },
  43838. ]
  43839. ))
  43840. characterMakers.push(() => makeCharacter(
  43841. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43842. {
  43843. front: {
  43844. height: math.unit(6 + 5/12, "feet"),
  43845. weight: math.unit(290, "lb"),
  43846. name: "Front",
  43847. image: {
  43848. source: "./media/characters/tiberius-thyben/front.svg",
  43849. extra: 757/739,
  43850. bottom: 39/796
  43851. }
  43852. },
  43853. },
  43854. [
  43855. {
  43856. name: "Micro",
  43857. height: math.unit(1.5, "inches")
  43858. },
  43859. {
  43860. name: "Normal",
  43861. height: math.unit(6 + 5/12, "feet"),
  43862. default: true
  43863. },
  43864. {
  43865. name: "Macro",
  43866. height: math.unit(300, "feet")
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43872. {
  43873. front: {
  43874. height: math.unit(5 + 6/12, "feet"),
  43875. weight: math.unit(60, "kg"),
  43876. name: "Front",
  43877. image: {
  43878. source: "./media/characters/sabre/front.svg",
  43879. extra: 738/671,
  43880. bottom: 27/765
  43881. }
  43882. },
  43883. },
  43884. [
  43885. {
  43886. name: "Teeny",
  43887. height: math.unit(2, "inches")
  43888. },
  43889. {
  43890. name: "Smol",
  43891. height: math.unit(8, "inches")
  43892. },
  43893. {
  43894. name: "Normal",
  43895. height: math.unit(5 + 6/12, "feet"),
  43896. default: true
  43897. },
  43898. {
  43899. name: "Mini-Macro",
  43900. height: math.unit(15, "feet")
  43901. },
  43902. {
  43903. name: "Macro",
  43904. height: math.unit(50, "feet")
  43905. },
  43906. ]
  43907. ))
  43908. characterMakers.push(() => makeCharacter(
  43909. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43910. {
  43911. front: {
  43912. height: math.unit(6 + 4/12, "feet"),
  43913. weight: math.unit(170, "lb"),
  43914. name: "Front",
  43915. image: {
  43916. source: "./media/characters/charlie/front.svg",
  43917. extra: 1348/1228,
  43918. bottom: 15/1363
  43919. }
  43920. },
  43921. },
  43922. [
  43923. {
  43924. name: "Macro",
  43925. height: math.unit(1700, "meters"),
  43926. default: true
  43927. },
  43928. {
  43929. name: "MegaMacro",
  43930. height: math.unit(20400, "meters")
  43931. },
  43932. ]
  43933. ))
  43934. characterMakers.push(() => makeCharacter(
  43935. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43936. {
  43937. front: {
  43938. height: math.unit(1.96, "meters"),
  43939. weight: math.unit(220, "lb"),
  43940. name: "Front",
  43941. image: {
  43942. source: "./media/characters/susan-grant/front.svg",
  43943. extra: 482/478,
  43944. bottom: 7/489
  43945. }
  43946. },
  43947. },
  43948. [
  43949. {
  43950. name: "Normal",
  43951. height: math.unit(1.96, "meters"),
  43952. default: true
  43953. },
  43954. {
  43955. name: "Macro",
  43956. height: math.unit(76.2, "meters")
  43957. },
  43958. {
  43959. name: "MegaMacro",
  43960. height: math.unit(305, "meters")
  43961. },
  43962. {
  43963. name: "GigaMacro",
  43964. height: math.unit(1220, "meters")
  43965. },
  43966. {
  43967. name: "SuperMacro",
  43968. height: math.unit(4878, "meters")
  43969. },
  43970. ]
  43971. ))
  43972. characterMakers.push(() => makeCharacter(
  43973. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43974. {
  43975. front: {
  43976. height: math.unit(5 + 4/12, "feet"),
  43977. weight: math.unit(110, "lb"),
  43978. name: "Front",
  43979. image: {
  43980. source: "./media/characters/axel-isanov/front.svg",
  43981. extra: 1096/1065,
  43982. bottom: 13/1109
  43983. }
  43984. },
  43985. },
  43986. [
  43987. {
  43988. name: "Normal",
  43989. height: math.unit(5 + 4/12, "feet"),
  43990. default: true
  43991. },
  43992. ]
  43993. ))
  43994. characterMakers.push(() => makeCharacter(
  43995. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43996. {
  43997. front: {
  43998. height: math.unit(9, "feet"),
  43999. weight: math.unit(467, "lb"),
  44000. name: "Front",
  44001. image: {
  44002. source: "./media/characters/necahual/front.svg",
  44003. extra: 920/873,
  44004. bottom: 26/946
  44005. }
  44006. },
  44007. back: {
  44008. height: math.unit(9, "feet"),
  44009. weight: math.unit(467, "lb"),
  44010. name: "Back",
  44011. image: {
  44012. source: "./media/characters/necahual/back.svg",
  44013. extra: 930/884,
  44014. bottom: 16/946
  44015. }
  44016. },
  44017. frontUnderwear: {
  44018. height: math.unit(9, "feet"),
  44019. weight: math.unit(467, "lb"),
  44020. name: "Front (Underwear)",
  44021. image: {
  44022. source: "./media/characters/necahual/front-underwear.svg",
  44023. extra: 920/873,
  44024. bottom: 26/946
  44025. }
  44026. },
  44027. frontDressed: {
  44028. height: math.unit(9, "feet"),
  44029. weight: math.unit(467, "lb"),
  44030. name: "Front (Dressed)",
  44031. image: {
  44032. source: "./media/characters/necahual/front-dressed.svg",
  44033. extra: 920/873,
  44034. bottom: 26/946
  44035. }
  44036. },
  44037. },
  44038. [
  44039. {
  44040. name: "Comprsesed",
  44041. height: math.unit(9, "feet")
  44042. },
  44043. {
  44044. name: "Natural",
  44045. height: math.unit(15, "feet"),
  44046. default: true
  44047. },
  44048. {
  44049. name: "Boosted",
  44050. height: math.unit(50, "feet")
  44051. },
  44052. {
  44053. name: "Boosted+",
  44054. height: math.unit(150, "feet")
  44055. },
  44056. {
  44057. name: "Max",
  44058. height: math.unit(500, "feet")
  44059. },
  44060. ]
  44061. ))
  44062. characterMakers.push(() => makeCharacter(
  44063. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44064. {
  44065. front: {
  44066. height: math.unit(22 + 1/12, "feet"),
  44067. weight: math.unit(3200, "lb"),
  44068. name: "Front",
  44069. image: {
  44070. source: "./media/characters/theo-acacia/front.svg",
  44071. extra: 1796/1741,
  44072. bottom: 83/1879
  44073. }
  44074. },
  44075. frontUnderwear: {
  44076. height: math.unit(22 + 1/12, "feet"),
  44077. weight: math.unit(3200, "lb"),
  44078. name: "Front (Underwear)",
  44079. image: {
  44080. source: "./media/characters/theo-acacia/front-underwear.svg",
  44081. extra: 1796/1741,
  44082. bottom: 83/1879
  44083. }
  44084. },
  44085. frontNude: {
  44086. height: math.unit(22 + 1/12, "feet"),
  44087. weight: math.unit(3200, "lb"),
  44088. name: "Front (Nude)",
  44089. image: {
  44090. source: "./media/characters/theo-acacia/front-nude.svg",
  44091. extra: 1796/1741,
  44092. bottom: 83/1879
  44093. }
  44094. },
  44095. },
  44096. [
  44097. {
  44098. name: "Normal",
  44099. height: math.unit(22 + 1/12, "feet"),
  44100. default: true
  44101. },
  44102. ]
  44103. ))
  44104. characterMakers.push(() => makeCharacter(
  44105. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44106. {
  44107. front: {
  44108. height: math.unit(20, "feet"),
  44109. name: "Front",
  44110. image: {
  44111. source: "./media/characters/astra/front.svg",
  44112. extra: 1850/1714,
  44113. bottom: 106/1956
  44114. }
  44115. },
  44116. frontUndressed: {
  44117. height: math.unit(20, "feet"),
  44118. name: "Front (Undressed)",
  44119. image: {
  44120. source: "./media/characters/astra/front-undressed.svg",
  44121. extra: 1926/1749,
  44122. bottom: 0/1926
  44123. }
  44124. },
  44125. hand: {
  44126. height: math.unit(1.53, "feet"),
  44127. name: "Hand",
  44128. image: {
  44129. source: "./media/characters/astra/hand.svg"
  44130. }
  44131. },
  44132. paw: {
  44133. height: math.unit(1.53, "feet"),
  44134. name: "Paw",
  44135. image: {
  44136. source: "./media/characters/astra/paw.svg"
  44137. }
  44138. },
  44139. },
  44140. [
  44141. {
  44142. name: "Smallest",
  44143. height: math.unit(20, "feet")
  44144. },
  44145. {
  44146. name: "Normal",
  44147. height: math.unit(1e9, "miles"),
  44148. default: true
  44149. },
  44150. {
  44151. name: "Larger",
  44152. height: math.unit(5, "multiverses")
  44153. },
  44154. {
  44155. name: "Largest",
  44156. height: math.unit(1e9, "multiverses")
  44157. },
  44158. ]
  44159. ))
  44160. characterMakers.push(() => makeCharacter(
  44161. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44162. {
  44163. front: {
  44164. height: math.unit(8, "feet"),
  44165. name: "Front",
  44166. image: {
  44167. source: "./media/characters/breanna/front.svg",
  44168. extra: 1912/1632,
  44169. bottom: 33/1945
  44170. }
  44171. },
  44172. },
  44173. [
  44174. {
  44175. name: "Smallest",
  44176. height: math.unit(8, "feet")
  44177. },
  44178. {
  44179. name: "Normal",
  44180. height: math.unit(1, "mile"),
  44181. default: true
  44182. },
  44183. {
  44184. name: "Maximum",
  44185. height: math.unit(1500000000000, "lightyears")
  44186. },
  44187. ]
  44188. ))
  44189. characterMakers.push(() => makeCharacter(
  44190. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44191. {
  44192. front: {
  44193. height: math.unit(5 + 11/12, "feet"),
  44194. weight: math.unit(155, "lb"),
  44195. name: "Front",
  44196. image: {
  44197. source: "./media/characters/cai/front.svg",
  44198. extra: 1823/1702,
  44199. bottom: 32/1855
  44200. }
  44201. },
  44202. back: {
  44203. height: math.unit(5 + 11/12, "feet"),
  44204. weight: math.unit(155, "lb"),
  44205. name: "Back",
  44206. image: {
  44207. source: "./media/characters/cai/back.svg",
  44208. extra: 1809/1708,
  44209. bottom: 31/1840
  44210. }
  44211. },
  44212. },
  44213. [
  44214. {
  44215. name: "Normal",
  44216. height: math.unit(5 + 11/12, "feet"),
  44217. default: true
  44218. },
  44219. {
  44220. name: "Big",
  44221. height: math.unit(15, "feet")
  44222. },
  44223. {
  44224. name: "Macro",
  44225. height: math.unit(200, "feet")
  44226. },
  44227. ]
  44228. ))
  44229. characterMakers.push(() => makeCharacter(
  44230. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44231. {
  44232. front: {
  44233. height: math.unit(5 + 6/12, "feet"),
  44234. weight: math.unit(160, "lb"),
  44235. name: "Front",
  44236. image: {
  44237. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44238. extra: 1227/1174,
  44239. bottom: 37/1264
  44240. }
  44241. },
  44242. },
  44243. [
  44244. {
  44245. name: "Macro",
  44246. height: math.unit(444, "meters"),
  44247. default: true
  44248. },
  44249. ]
  44250. ))
  44251. characterMakers.push(() => makeCharacter(
  44252. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44253. {
  44254. front: {
  44255. height: math.unit(18 + 7/12, "feet"),
  44256. name: "Front",
  44257. image: {
  44258. source: "./media/characters/rex/front.svg",
  44259. extra: 1941/1807,
  44260. bottom: 66/2007
  44261. }
  44262. },
  44263. back: {
  44264. height: math.unit(18 + 7/12, "feet"),
  44265. name: "Back",
  44266. image: {
  44267. source: "./media/characters/rex/back.svg",
  44268. extra: 1937/1822,
  44269. bottom: 42/1979
  44270. }
  44271. },
  44272. boot: {
  44273. height: math.unit(3.45, "feet"),
  44274. name: "Boot",
  44275. image: {
  44276. source: "./media/characters/rex/boot.svg"
  44277. }
  44278. },
  44279. paw: {
  44280. height: math.unit(4.17, "feet"),
  44281. name: "Paw",
  44282. image: {
  44283. source: "./media/characters/rex/paw.svg"
  44284. }
  44285. },
  44286. head: {
  44287. height: math.unit(6.728, "feet"),
  44288. name: "Head",
  44289. image: {
  44290. source: "./media/characters/rex/head.svg"
  44291. }
  44292. },
  44293. },
  44294. [
  44295. {
  44296. name: "Nano",
  44297. height: math.unit(18 + 7/12, "feet")
  44298. },
  44299. {
  44300. name: "Micro",
  44301. height: math.unit(1.5, "megameters")
  44302. },
  44303. {
  44304. name: "Normal",
  44305. height: math.unit(440, "megameters"),
  44306. default: true
  44307. },
  44308. {
  44309. name: "Macro",
  44310. height: math.unit(2.5, "gigameters")
  44311. },
  44312. {
  44313. name: "Gigamacro",
  44314. height: math.unit(2, "galaxies")
  44315. },
  44316. ]
  44317. ))
  44318. characterMakers.push(() => makeCharacter(
  44319. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44320. {
  44321. side: {
  44322. height: math.unit(32, "feet"),
  44323. weight: math.unit(250000, "lb"),
  44324. name: "Side",
  44325. image: {
  44326. source: "./media/characters/silverwing/side.svg",
  44327. extra: 1100/1019,
  44328. bottom: 204/1304
  44329. }
  44330. },
  44331. },
  44332. [
  44333. {
  44334. name: "Normal",
  44335. height: math.unit(32, "feet"),
  44336. default: true
  44337. },
  44338. ]
  44339. ))
  44340. characterMakers.push(() => makeCharacter(
  44341. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44342. {
  44343. front: {
  44344. height: math.unit(6 + 6/12, "feet"),
  44345. weight: math.unit(350, "lb"),
  44346. name: "Front",
  44347. image: {
  44348. source: "./media/characters/tristan-hawthorne/front.svg",
  44349. extra: 1159/1124,
  44350. bottom: 37/1196
  44351. },
  44352. form: "labrador",
  44353. default: true
  44354. },
  44355. skunkFront: {
  44356. height: math.unit(4 + 6/12, "feet"),
  44357. weight: math.unit(120, "lb"),
  44358. name: "Front",
  44359. image: {
  44360. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44361. extra: 1609/1551,
  44362. bottom: 169/1778
  44363. },
  44364. form: "skunk",
  44365. default: true
  44366. },
  44367. },
  44368. [
  44369. {
  44370. name: "Normal",
  44371. height: math.unit(6 + 6/12, "feet"),
  44372. form: "labrador",
  44373. default: true
  44374. },
  44375. {
  44376. name: "Normal",
  44377. height: math.unit(4 + 6/12, "feet"),
  44378. form: "skunk",
  44379. default: true
  44380. },
  44381. ],
  44382. {
  44383. "labrador": {
  44384. name: "Labrador",
  44385. default: true
  44386. },
  44387. "skunk": {
  44388. name: "Skunk"
  44389. }
  44390. }
  44391. ))
  44392. characterMakers.push(() => makeCharacter(
  44393. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44394. {
  44395. front: {
  44396. height: math.unit(5 + 11/12, "feet"),
  44397. weight: math.unit(190, "lb"),
  44398. name: "Front",
  44399. image: {
  44400. source: "./media/characters/mizu/front.svg",
  44401. extra: 1988/1788,
  44402. bottom: 14/2002
  44403. }
  44404. },
  44405. },
  44406. [
  44407. {
  44408. name: "Normal",
  44409. height: math.unit(5 + 11/12, "feet"),
  44410. default: true
  44411. },
  44412. ]
  44413. ))
  44414. characterMakers.push(() => makeCharacter(
  44415. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44416. {
  44417. front: {
  44418. height: math.unit(1.7, "feet"),
  44419. weight: math.unit(50, "lb"),
  44420. name: "Front",
  44421. image: {
  44422. source: "./media/characters/dechroma/front.svg",
  44423. extra: 1095/859,
  44424. bottom: 64/1159
  44425. }
  44426. },
  44427. },
  44428. [
  44429. {
  44430. name: "Normal",
  44431. height: math.unit(1.7, "feet"),
  44432. default: true
  44433. },
  44434. ]
  44435. ))
  44436. characterMakers.push(() => makeCharacter(
  44437. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44438. {
  44439. side: {
  44440. height: math.unit(30, "feet"),
  44441. name: "Side",
  44442. image: {
  44443. source: "./media/characters/veluren-thanazel/side.svg",
  44444. extra: 1611/633,
  44445. bottom: 118/1729
  44446. }
  44447. },
  44448. front: {
  44449. height: math.unit(30, "feet"),
  44450. name: "Front",
  44451. image: {
  44452. source: "./media/characters/veluren-thanazel/front.svg",
  44453. extra: 1486/636,
  44454. bottom: 238/1724
  44455. }
  44456. },
  44457. head: {
  44458. height: math.unit(21.4, "feet"),
  44459. name: "Head",
  44460. image: {
  44461. source: "./media/characters/veluren-thanazel/head.svg"
  44462. }
  44463. },
  44464. genitals: {
  44465. height: math.unit(19.4, "feet"),
  44466. name: "Genitals",
  44467. image: {
  44468. source: "./media/characters/veluren-thanazel/genitals.svg"
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Social",
  44475. height: math.unit(6, "feet")
  44476. },
  44477. {
  44478. name: "Play",
  44479. height: math.unit(12, "feet")
  44480. },
  44481. {
  44482. name: "True",
  44483. height: math.unit(30, "feet"),
  44484. default: true
  44485. },
  44486. ]
  44487. ))
  44488. characterMakers.push(() => makeCharacter(
  44489. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44490. {
  44491. front: {
  44492. height: math.unit(7 + 6/12, "feet"),
  44493. weight: math.unit(500, "kg"),
  44494. name: "Front",
  44495. image: {
  44496. source: "./media/characters/arcturas/front.svg",
  44497. extra: 1700/1500,
  44498. bottom: 145/1845
  44499. }
  44500. },
  44501. },
  44502. [
  44503. {
  44504. name: "Normal",
  44505. height: math.unit(7 + 6/12, "feet"),
  44506. default: true
  44507. },
  44508. ]
  44509. ))
  44510. characterMakers.push(() => makeCharacter(
  44511. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44512. {
  44513. side: {
  44514. height: math.unit(6, "feet"),
  44515. weight: math.unit(2, "tons"),
  44516. name: "Side",
  44517. image: {
  44518. source: "./media/characters/vitaen/side.svg",
  44519. extra: 1157/617,
  44520. bottom: 122/1279
  44521. }
  44522. },
  44523. },
  44524. [
  44525. {
  44526. name: "Normal",
  44527. height: math.unit(6, "feet"),
  44528. default: true
  44529. },
  44530. ]
  44531. ))
  44532. characterMakers.push(() => makeCharacter(
  44533. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44534. {
  44535. front: {
  44536. height: math.unit(19, "feet"),
  44537. name: "Front",
  44538. image: {
  44539. source: "./media/characters/fia-dreamweaver/front.svg",
  44540. extra: 1630/1504,
  44541. bottom: 25/1655
  44542. }
  44543. },
  44544. },
  44545. [
  44546. {
  44547. name: "Normal",
  44548. height: math.unit(19, "feet"),
  44549. default: true
  44550. },
  44551. ]
  44552. ))
  44553. characterMakers.push(() => makeCharacter(
  44554. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44555. {
  44556. front: {
  44557. height: math.unit(5 + 4/12, "feet"),
  44558. name: "Front",
  44559. image: {
  44560. source: "./media/characters/artan/front.svg",
  44561. extra: 1618/1535,
  44562. bottom: 46/1664
  44563. }
  44564. },
  44565. back: {
  44566. height: math.unit(5 + 4/12, "feet"),
  44567. name: "Back",
  44568. image: {
  44569. source: "./media/characters/artan/back.svg",
  44570. extra: 1618/1543,
  44571. bottom: 31/1649
  44572. }
  44573. },
  44574. },
  44575. [
  44576. {
  44577. name: "Normal",
  44578. height: math.unit(5 + 4/12, "feet"),
  44579. default: true
  44580. },
  44581. ]
  44582. ))
  44583. characterMakers.push(() => makeCharacter(
  44584. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44585. {
  44586. side: {
  44587. height: math.unit(182, "cm"),
  44588. weight: math.unit(1000, "lb"),
  44589. name: "Side",
  44590. image: {
  44591. source: "./media/characters/silver-dragon/side.svg",
  44592. extra: 710/287,
  44593. bottom: 88/798
  44594. }
  44595. },
  44596. },
  44597. [
  44598. {
  44599. name: "Normal",
  44600. height: math.unit(182, "cm"),
  44601. default: true
  44602. },
  44603. ]
  44604. ))
  44605. characterMakers.push(() => makeCharacter(
  44606. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44607. {
  44608. side: {
  44609. height: math.unit(6 + 6/12, "feet"),
  44610. weight: math.unit(1.5, "tons"),
  44611. name: "Side",
  44612. image: {
  44613. source: "./media/characters/zephyr/side.svg",
  44614. extra: 1433/586,
  44615. bottom: 109/1542
  44616. }
  44617. },
  44618. },
  44619. [
  44620. {
  44621. name: "Normal",
  44622. height: math.unit(6 + 6/12, "feet"),
  44623. default: true
  44624. },
  44625. ]
  44626. ))
  44627. characterMakers.push(() => makeCharacter(
  44628. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44629. {
  44630. side: {
  44631. height: math.unit(1, "feet"),
  44632. name: "Side",
  44633. image: {
  44634. source: "./media/characters/vixye/side.svg",
  44635. extra: 632/541,
  44636. bottom: 0/632
  44637. }
  44638. },
  44639. },
  44640. [
  44641. {
  44642. name: "Normal",
  44643. height: math.unit(1, "feet"),
  44644. default: true
  44645. },
  44646. {
  44647. name: "True",
  44648. height: math.unit(1e15, "multiverses")
  44649. },
  44650. ]
  44651. ))
  44652. characterMakers.push(() => makeCharacter(
  44653. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44654. {
  44655. front: {
  44656. height: math.unit(8 + 2/12, "feet"),
  44657. weight: math.unit(650, "lb"),
  44658. name: "Front",
  44659. image: {
  44660. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44661. extra: 1174/1137,
  44662. bottom: 82/1256
  44663. }
  44664. },
  44665. back: {
  44666. height: math.unit(8 + 2/12, "feet"),
  44667. weight: math.unit(650, "lb"),
  44668. name: "Back",
  44669. image: {
  44670. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44671. extra: 1204/1157,
  44672. bottom: 46/1250
  44673. }
  44674. },
  44675. },
  44676. [
  44677. {
  44678. name: "Wildform",
  44679. height: math.unit(8 + 2/12, "feet"),
  44680. default: true
  44681. },
  44682. ]
  44683. ))
  44684. characterMakers.push(() => makeCharacter(
  44685. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44686. {
  44687. front: {
  44688. height: math.unit(18, "feet"),
  44689. name: "Front",
  44690. image: {
  44691. source: "./media/characters/cyphin/front.svg",
  44692. extra: 970/886,
  44693. bottom: 42/1012
  44694. }
  44695. },
  44696. back: {
  44697. height: math.unit(18, "feet"),
  44698. name: "Back",
  44699. image: {
  44700. source: "./media/characters/cyphin/back.svg",
  44701. extra: 1009/894,
  44702. bottom: 24/1033
  44703. }
  44704. },
  44705. head: {
  44706. height: math.unit(5.05, "feet"),
  44707. name: "Head",
  44708. image: {
  44709. source: "./media/characters/cyphin/head.svg"
  44710. }
  44711. },
  44712. tailbud: {
  44713. height: math.unit(5, "feet"),
  44714. name: "Tailbud",
  44715. image: {
  44716. source: "./media/characters/cyphin/tailbud.svg"
  44717. }
  44718. },
  44719. },
  44720. [
  44721. ]
  44722. ))
  44723. characterMakers.push(() => makeCharacter(
  44724. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44725. {
  44726. side: {
  44727. height: math.unit(10, "feet"),
  44728. weight: math.unit(6, "tons"),
  44729. name: "Side",
  44730. image: {
  44731. source: "./media/characters/raijin/side.svg",
  44732. extra: 1529/613,
  44733. bottom: 337/1866
  44734. }
  44735. },
  44736. },
  44737. [
  44738. {
  44739. name: "Normal",
  44740. height: math.unit(10, "feet"),
  44741. default: true
  44742. },
  44743. ]
  44744. ))
  44745. characterMakers.push(() => makeCharacter(
  44746. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44747. {
  44748. side: {
  44749. height: math.unit(9, "feet"),
  44750. name: "Side",
  44751. image: {
  44752. source: "./media/characters/nilghais/side.svg",
  44753. extra: 1047/744,
  44754. bottom: 91/1138
  44755. }
  44756. },
  44757. head: {
  44758. height: math.unit(3.14, "feet"),
  44759. name: "Head",
  44760. image: {
  44761. source: "./media/characters/nilghais/head.svg"
  44762. }
  44763. },
  44764. mouth: {
  44765. height: math.unit(4.6, "feet"),
  44766. name: "Mouth",
  44767. image: {
  44768. source: "./media/characters/nilghais/mouth.svg"
  44769. }
  44770. },
  44771. wings: {
  44772. height: math.unit(24, "feet"),
  44773. name: "Wings",
  44774. image: {
  44775. source: "./media/characters/nilghais/wings.svg"
  44776. }
  44777. },
  44778. ass: {
  44779. height: math.unit(6.12, "feet"),
  44780. name: "Ass",
  44781. image: {
  44782. source: "./media/characters/nilghais/ass.svg"
  44783. }
  44784. },
  44785. },
  44786. [
  44787. {
  44788. name: "Normal",
  44789. height: math.unit(9, "feet"),
  44790. default: true
  44791. },
  44792. ]
  44793. ))
  44794. characterMakers.push(() => makeCharacter(
  44795. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44796. {
  44797. regular: {
  44798. height: math.unit(16 + 2/12, "feet"),
  44799. weight: math.unit(2300, "lb"),
  44800. name: "Regular",
  44801. image: {
  44802. source: "./media/characters/zolgar/regular.svg",
  44803. extra: 1246/1004,
  44804. bottom: 124/1370
  44805. }
  44806. },
  44807. boxers: {
  44808. height: math.unit(16 + 2/12, "feet"),
  44809. weight: math.unit(2300, "lb"),
  44810. name: "Boxers",
  44811. image: {
  44812. source: "./media/characters/zolgar/boxers.svg",
  44813. extra: 1246/1004,
  44814. bottom: 124/1370
  44815. }
  44816. },
  44817. armored: {
  44818. height: math.unit(16 + 2/12, "feet"),
  44819. weight: math.unit(2300, "lb"),
  44820. name: "Armored",
  44821. image: {
  44822. source: "./media/characters/zolgar/armored.svg",
  44823. extra: 1246/1004,
  44824. bottom: 124/1370
  44825. }
  44826. },
  44827. goth: {
  44828. height: math.unit(16 + 2/12, "feet"),
  44829. weight: math.unit(2300, "lb"),
  44830. name: "Goth",
  44831. image: {
  44832. source: "./media/characters/zolgar/goth.svg",
  44833. extra: 1246/1004,
  44834. bottom: 124/1370
  44835. }
  44836. },
  44837. },
  44838. [
  44839. {
  44840. name: "Shrunken Down",
  44841. height: math.unit(9 + 2/12, "feet")
  44842. },
  44843. {
  44844. name: "Normal",
  44845. height: math.unit(16 + 2/12, "feet"),
  44846. default: true
  44847. },
  44848. ]
  44849. ))
  44850. characterMakers.push(() => makeCharacter(
  44851. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44852. {
  44853. front: {
  44854. height: math.unit(6, "feet"),
  44855. weight: math.unit(168, "lb"),
  44856. name: "Front",
  44857. image: {
  44858. source: "./media/characters/luca/front.svg",
  44859. extra: 841/667,
  44860. bottom: 102/943
  44861. }
  44862. },
  44863. },
  44864. [
  44865. {
  44866. name: "Normal",
  44867. height: math.unit(6, "feet"),
  44868. default: true
  44869. },
  44870. ]
  44871. ))
  44872. characterMakers.push(() => makeCharacter(
  44873. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44874. {
  44875. side: {
  44876. height: math.unit(7 + 3/12, "feet"),
  44877. weight: math.unit(312, "lb"),
  44878. name: "Side",
  44879. image: {
  44880. source: "./media/characters/zezo/side.svg",
  44881. extra: 1192/1067,
  44882. bottom: 63/1255
  44883. }
  44884. },
  44885. },
  44886. [
  44887. {
  44888. name: "Normal",
  44889. height: math.unit(7 + 3/12, "feet"),
  44890. default: true
  44891. },
  44892. ]
  44893. ))
  44894. characterMakers.push(() => makeCharacter(
  44895. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44896. {
  44897. front: {
  44898. height: math.unit(5 + 5/12, "feet"),
  44899. weight: math.unit(170, "lb"),
  44900. name: "Front",
  44901. image: {
  44902. source: "./media/characters/mayso/front.svg",
  44903. extra: 1215/1108,
  44904. bottom: 16/1231
  44905. }
  44906. },
  44907. },
  44908. [
  44909. {
  44910. name: "Normal",
  44911. height: math.unit(5 + 5/12, "feet"),
  44912. default: true
  44913. },
  44914. ]
  44915. ))
  44916. characterMakers.push(() => makeCharacter(
  44917. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44918. {
  44919. front: {
  44920. height: math.unit(4 + 3/12, "feet"),
  44921. weight: math.unit(80, "lb"),
  44922. name: "Front",
  44923. image: {
  44924. source: "./media/characters/hess/front.svg",
  44925. extra: 1200/1123,
  44926. bottom: 16/1216
  44927. }
  44928. },
  44929. },
  44930. [
  44931. {
  44932. name: "Normal",
  44933. height: math.unit(4 + 3/12, "feet"),
  44934. default: true
  44935. },
  44936. ]
  44937. ))
  44938. characterMakers.push(() => makeCharacter(
  44939. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44940. {
  44941. front: {
  44942. height: math.unit(1.9, "meters"),
  44943. name: "Front",
  44944. image: {
  44945. source: "./media/characters/ashgar/front.svg",
  44946. extra: 1177/1146,
  44947. bottom: 99/1276
  44948. }
  44949. },
  44950. back: {
  44951. height: math.unit(1.9, "meters"),
  44952. name: "Back",
  44953. image: {
  44954. source: "./media/characters/ashgar/back.svg",
  44955. extra: 1201/1183,
  44956. bottom: 53/1254
  44957. }
  44958. },
  44959. feral: {
  44960. height: math.unit(1.4, "meters"),
  44961. name: "Feral",
  44962. image: {
  44963. source: "./media/characters/ashgar/feral.svg",
  44964. extra: 370/345,
  44965. bottom: 45/415
  44966. }
  44967. },
  44968. },
  44969. [
  44970. {
  44971. name: "Normal",
  44972. height: math.unit(1.9, "meters"),
  44973. default: true
  44974. },
  44975. ]
  44976. ))
  44977. characterMakers.push(() => makeCharacter(
  44978. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44979. {
  44980. regular: {
  44981. height: math.unit(6, "feet"),
  44982. weight: math.unit(220, "lb"),
  44983. name: "Regular",
  44984. image: {
  44985. source: "./media/characters/phillip/regular.svg",
  44986. extra: 1373/1277,
  44987. bottom: 75/1448
  44988. }
  44989. },
  44990. dressed: {
  44991. height: math.unit(6, "feet"),
  44992. weight: math.unit(220, "lb"),
  44993. name: "Dressed",
  44994. image: {
  44995. source: "./media/characters/phillip/dressed.svg",
  44996. extra: 1373/1277,
  44997. bottom: 75/1448
  44998. }
  44999. },
  45000. paw: {
  45001. height: math.unit(1.44, "feet"),
  45002. name: "Paw",
  45003. image: {
  45004. source: "./media/characters/phillip/paw.svg"
  45005. }
  45006. },
  45007. },
  45008. [
  45009. {
  45010. name: "Normal",
  45011. height: math.unit(6, "feet"),
  45012. default: true
  45013. },
  45014. ]
  45015. ))
  45016. characterMakers.push(() => makeCharacter(
  45017. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45018. {
  45019. side: {
  45020. height: math.unit(42, "feet"),
  45021. name: "Side",
  45022. image: {
  45023. source: "./media/characters/uvula/side.svg",
  45024. extra: 683/586,
  45025. bottom: 60/743
  45026. }
  45027. },
  45028. front: {
  45029. height: math.unit(42, "feet"),
  45030. name: "Front",
  45031. image: {
  45032. source: "./media/characters/uvula/front.svg",
  45033. extra: 705/613,
  45034. bottom: 54/759
  45035. }
  45036. },
  45037. maw: {
  45038. height: math.unit(23.5, "feet"),
  45039. name: "Maw",
  45040. image: {
  45041. source: "./media/characters/uvula/maw.svg"
  45042. }
  45043. },
  45044. },
  45045. [
  45046. {
  45047. name: "Original Size",
  45048. height: math.unit(14, "inches")
  45049. },
  45050. {
  45051. name: "Human Size",
  45052. height: math.unit(6, "feet")
  45053. },
  45054. {
  45055. name: "Big",
  45056. height: math.unit(42, "feet"),
  45057. default: true
  45058. },
  45059. {
  45060. name: "Bigger",
  45061. height: math.unit(100, "feet")
  45062. },
  45063. ]
  45064. ))
  45065. characterMakers.push(() => makeCharacter(
  45066. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45067. {
  45068. front: {
  45069. height: math.unit(5 + 11/12, "feet"),
  45070. name: "Front",
  45071. image: {
  45072. source: "./media/characters/lannah/front.svg",
  45073. extra: 1208/1113,
  45074. bottom: 97/1305
  45075. }
  45076. },
  45077. },
  45078. [
  45079. {
  45080. name: "Normal",
  45081. height: math.unit(5 + 11/12, "feet"),
  45082. default: true
  45083. },
  45084. ]
  45085. ))
  45086. characterMakers.push(() => makeCharacter(
  45087. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45088. {
  45089. front: {
  45090. height: math.unit(6 + 3/12, "feet"),
  45091. weight: math.unit(3.5, "tons"),
  45092. name: "Front",
  45093. image: {
  45094. source: "./media/characters/emberflame/front.svg",
  45095. extra: 1198/672,
  45096. bottom: 82/1280
  45097. }
  45098. },
  45099. side: {
  45100. height: math.unit(6 + 3/12, "feet"),
  45101. weight: math.unit(3.5, "tons"),
  45102. name: "Side",
  45103. image: {
  45104. source: "./media/characters/emberflame/side.svg",
  45105. extra: 938/527,
  45106. bottom: 56/994
  45107. }
  45108. },
  45109. },
  45110. [
  45111. {
  45112. name: "Normal",
  45113. height: math.unit(6 + 3/12, "feet"),
  45114. default: true
  45115. },
  45116. ]
  45117. ))
  45118. characterMakers.push(() => makeCharacter(
  45119. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45120. {
  45121. side: {
  45122. height: math.unit(17.5, "feet"),
  45123. weight: math.unit(35, "tons"),
  45124. name: "Side",
  45125. image: {
  45126. source: "./media/characters/sophie-ambrose/side.svg",
  45127. extra: 1573/1242,
  45128. bottom: 71/1644
  45129. }
  45130. },
  45131. maw: {
  45132. height: math.unit(7.4, "feet"),
  45133. name: "Maw",
  45134. image: {
  45135. source: "./media/characters/sophie-ambrose/maw.svg"
  45136. }
  45137. },
  45138. },
  45139. [
  45140. {
  45141. name: "Normal",
  45142. height: math.unit(17.5, "feet"),
  45143. default: true
  45144. },
  45145. ]
  45146. ))
  45147. characterMakers.push(() => makeCharacter(
  45148. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45149. {
  45150. front: {
  45151. height: math.unit(280, "feet"),
  45152. weight: math.unit(550, "tons"),
  45153. name: "Front",
  45154. image: {
  45155. source: "./media/characters/king-mugi/front.svg",
  45156. extra: 1102/947,
  45157. bottom: 104/1206
  45158. }
  45159. },
  45160. },
  45161. [
  45162. {
  45163. name: "King Mugi",
  45164. height: math.unit(280, "feet"),
  45165. default: true
  45166. },
  45167. ]
  45168. ))
  45169. characterMakers.push(() => makeCharacter(
  45170. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45171. {
  45172. front: {
  45173. height: math.unit(64, "meters"),
  45174. name: "Front",
  45175. image: {
  45176. source: "./media/characters/nova-fox/front.svg",
  45177. extra: 1310/1246,
  45178. bottom: 65/1375
  45179. }
  45180. },
  45181. },
  45182. [
  45183. {
  45184. name: "Macro",
  45185. height: math.unit(64, "meters"),
  45186. default: true
  45187. },
  45188. ]
  45189. ))
  45190. characterMakers.push(() => makeCharacter(
  45191. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45192. {
  45193. front: {
  45194. height: math.unit(6 + 3/12, "feet"),
  45195. weight: math.unit(170, "lb"),
  45196. name: "Front",
  45197. image: {
  45198. source: "./media/characters/sam-bat/front.svg",
  45199. extra: 1601/1411,
  45200. bottom: 125/1726
  45201. }
  45202. },
  45203. back: {
  45204. height: math.unit(6 + 3/12, "feet"),
  45205. weight: math.unit(170, "lb"),
  45206. name: "Back",
  45207. image: {
  45208. source: "./media/characters/sam-bat/back.svg",
  45209. extra: 1577/1405,
  45210. bottom: 58/1635
  45211. }
  45212. },
  45213. },
  45214. [
  45215. {
  45216. name: "Normal",
  45217. height: math.unit(6 + 3/12, "feet"),
  45218. default: true
  45219. },
  45220. ]
  45221. ))
  45222. characterMakers.push(() => makeCharacter(
  45223. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45224. {
  45225. front: {
  45226. height: math.unit(59, "feet"),
  45227. weight: math.unit(40000, "lb"),
  45228. name: "Front",
  45229. image: {
  45230. source: "./media/characters/inari/front.svg",
  45231. extra: 1884/1350,
  45232. bottom: 95/1979
  45233. }
  45234. },
  45235. },
  45236. [
  45237. {
  45238. name: "Gigantamax",
  45239. height: math.unit(59, "feet"),
  45240. default: true
  45241. },
  45242. ]
  45243. ))
  45244. characterMakers.push(() => makeCharacter(
  45245. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45246. {
  45247. front: {
  45248. height: math.unit(5 + 8/12, "feet"),
  45249. name: "Front",
  45250. image: {
  45251. source: "./media/characters/elizabeth/front.svg",
  45252. extra: 1395/1298,
  45253. bottom: 54/1449
  45254. }
  45255. },
  45256. mouth: {
  45257. height: math.unit(1.97, "feet"),
  45258. name: "Mouth",
  45259. image: {
  45260. source: "./media/characters/elizabeth/mouth.svg"
  45261. }
  45262. },
  45263. foot: {
  45264. height: math.unit(1.17, "feet"),
  45265. name: "Foot",
  45266. image: {
  45267. source: "./media/characters/elizabeth/foot.svg"
  45268. }
  45269. },
  45270. },
  45271. [
  45272. {
  45273. name: "Normal",
  45274. height: math.unit(5 + 8/12, "feet"),
  45275. default: true
  45276. },
  45277. {
  45278. name: "Minimacro",
  45279. height: math.unit(18, "feet")
  45280. },
  45281. {
  45282. name: "Macro",
  45283. height: math.unit(180, "feet")
  45284. },
  45285. ]
  45286. ))
  45287. characterMakers.push(() => makeCharacter(
  45288. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45289. {
  45290. front: {
  45291. height: math.unit(5 + 2/12, "feet"),
  45292. name: "Front",
  45293. image: {
  45294. source: "./media/characters/october-gossamer/front.svg",
  45295. extra: 505/454,
  45296. bottom: 7/512
  45297. }
  45298. },
  45299. back: {
  45300. height: math.unit(5 + 2/12, "feet"),
  45301. name: "Back",
  45302. image: {
  45303. source: "./media/characters/october-gossamer/back.svg",
  45304. extra: 501/454,
  45305. bottom: 11/512
  45306. }
  45307. },
  45308. },
  45309. [
  45310. {
  45311. name: "Normal",
  45312. height: math.unit(5 + 2/12, "feet"),
  45313. default: true
  45314. },
  45315. ]
  45316. ))
  45317. characterMakers.push(() => makeCharacter(
  45318. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45319. {
  45320. front: {
  45321. height: math.unit(5, "feet"),
  45322. name: "Front",
  45323. image: {
  45324. source: "./media/characters/epiglottis/front.svg",
  45325. extra: 923/849,
  45326. bottom: 17/940
  45327. }
  45328. },
  45329. },
  45330. [
  45331. {
  45332. name: "Original Size",
  45333. height: math.unit(10, "inches")
  45334. },
  45335. {
  45336. name: "Human Size",
  45337. height: math.unit(5, "feet"),
  45338. default: true
  45339. },
  45340. {
  45341. name: "Big",
  45342. height: math.unit(25, "feet")
  45343. },
  45344. {
  45345. name: "Bigger",
  45346. height: math.unit(50, "feet")
  45347. },
  45348. {
  45349. name: "oh lawd",
  45350. height: math.unit(75, "feet")
  45351. },
  45352. ]
  45353. ))
  45354. characterMakers.push(() => makeCharacter(
  45355. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45356. {
  45357. front: {
  45358. height: math.unit(2 + 4/12, "feet"),
  45359. weight: math.unit(60, "lb"),
  45360. name: "Front",
  45361. image: {
  45362. source: "./media/characters/lerm/front.svg",
  45363. extra: 796/790,
  45364. bottom: 79/875
  45365. }
  45366. },
  45367. },
  45368. [
  45369. {
  45370. name: "Normal",
  45371. height: math.unit(2 + 4/12, "feet"),
  45372. default: true
  45373. },
  45374. ]
  45375. ))
  45376. characterMakers.push(() => makeCharacter(
  45377. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45378. {
  45379. front: {
  45380. height: math.unit(5.5, "feet"),
  45381. weight: math.unit(130, "lb"),
  45382. name: "Front",
  45383. image: {
  45384. source: "./media/characters/xena-nebadon/front.svg",
  45385. extra: 1828/1730,
  45386. bottom: 79/1907
  45387. }
  45388. },
  45389. },
  45390. [
  45391. {
  45392. name: "Tiny Puppy",
  45393. height: math.unit(3, "inches")
  45394. },
  45395. {
  45396. name: "Normal",
  45397. height: math.unit(5.5, "feet"),
  45398. default: true
  45399. },
  45400. {
  45401. name: "Lotta Lady",
  45402. height: math.unit(12, "feet")
  45403. },
  45404. {
  45405. name: "Pretty Big",
  45406. height: math.unit(100, "feet")
  45407. },
  45408. {
  45409. name: "Big",
  45410. height: math.unit(500, "feet")
  45411. },
  45412. {
  45413. name: "Skyscraper Toys",
  45414. height: math.unit(2500, "feet")
  45415. },
  45416. {
  45417. name: "Plane Catcher",
  45418. height: math.unit(8, "miles")
  45419. },
  45420. {
  45421. name: "Planet Toys",
  45422. height: math.unit(15, "earths")
  45423. },
  45424. {
  45425. name: "Stardust",
  45426. height: math.unit(0.25, "galaxies")
  45427. },
  45428. {
  45429. name: "Snacks",
  45430. height: math.unit(70, "universes")
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45436. {
  45437. front: {
  45438. height: math.unit(1.6, "meters"),
  45439. weight: math.unit(60, "kg"),
  45440. name: "Front",
  45441. image: {
  45442. source: "./media/characters/bounty/front.svg",
  45443. extra: 1426/1308,
  45444. bottom: 15/1441
  45445. }
  45446. },
  45447. back: {
  45448. height: math.unit(1.6, "meters"),
  45449. weight: math.unit(60, "kg"),
  45450. name: "Back",
  45451. image: {
  45452. source: "./media/characters/bounty/back.svg",
  45453. extra: 1417/1307,
  45454. bottom: 8/1425
  45455. }
  45456. },
  45457. },
  45458. [
  45459. {
  45460. name: "Normal",
  45461. height: math.unit(1.6, "meters"),
  45462. default: true
  45463. },
  45464. {
  45465. name: "Macro",
  45466. height: math.unit(300, "meters")
  45467. },
  45468. ]
  45469. ))
  45470. characterMakers.push(() => makeCharacter(
  45471. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45472. {
  45473. front: {
  45474. height: math.unit(2 + 8/12, "feet"),
  45475. weight: math.unit(15, "lb"),
  45476. name: "Front",
  45477. image: {
  45478. source: "./media/characters/mochi/front.svg",
  45479. extra: 1022/852,
  45480. bottom: 435/1457
  45481. }
  45482. },
  45483. back: {
  45484. height: math.unit(2 + 8/12, "feet"),
  45485. weight: math.unit(15, "lb"),
  45486. name: "Back",
  45487. image: {
  45488. source: "./media/characters/mochi/back.svg",
  45489. extra: 1335/1119,
  45490. bottom: 39/1374
  45491. }
  45492. },
  45493. bird: {
  45494. height: math.unit(2 + 8/12, "feet"),
  45495. weight: math.unit(15, "lb"),
  45496. name: "Bird",
  45497. image: {
  45498. source: "./media/characters/mochi/bird.svg",
  45499. extra: 1251/1113,
  45500. bottom: 178/1429
  45501. }
  45502. },
  45503. kaiju: {
  45504. height: math.unit(154, "feet"),
  45505. weight: math.unit(1e7, "lb"),
  45506. name: "Kaiju",
  45507. image: {
  45508. source: "./media/characters/mochi/kaiju.svg",
  45509. extra: 460/324,
  45510. bottom: 40/500
  45511. }
  45512. },
  45513. head: {
  45514. height: math.unit(1.21, "feet"),
  45515. name: "Head",
  45516. image: {
  45517. source: "./media/characters/mochi/head.svg"
  45518. }
  45519. },
  45520. alternateTail: {
  45521. height: math.unit(2 + 8/12, "feet"),
  45522. weight: math.unit(45, "lb"),
  45523. name: "Alternate Tail",
  45524. image: {
  45525. source: "./media/characters/mochi/alternate-tail.svg",
  45526. extra: 139/76,
  45527. bottom: 45/184
  45528. }
  45529. },
  45530. },
  45531. [
  45532. {
  45533. name: "Micro",
  45534. height: math.unit(2, "inches")
  45535. },
  45536. {
  45537. name: "Normal",
  45538. height: math.unit(2 + 8/12, "feet"),
  45539. default: true
  45540. },
  45541. {
  45542. name: "Macro",
  45543. height: math.unit(106, "feet")
  45544. },
  45545. ]
  45546. ))
  45547. characterMakers.push(() => makeCharacter(
  45548. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45549. {
  45550. front: {
  45551. height: math.unit(5.67, "feet"),
  45552. weight: math.unit(135, "lb"),
  45553. name: "Front",
  45554. image: {
  45555. source: "./media/characters/sarel/front.svg",
  45556. extra: 865/788,
  45557. bottom: 97/962
  45558. }
  45559. },
  45560. back: {
  45561. height: math.unit(5.67, "feet"),
  45562. weight: math.unit(135, "lb"),
  45563. name: "Back",
  45564. image: {
  45565. source: "./media/characters/sarel/back.svg",
  45566. extra: 857/777,
  45567. bottom: 32/889
  45568. }
  45569. },
  45570. chozoan: {
  45571. height: math.unit(5.67, "feet"),
  45572. weight: math.unit(135, "lb"),
  45573. name: "Chozoan",
  45574. image: {
  45575. source: "./media/characters/sarel/chozoan.svg",
  45576. extra: 865/788,
  45577. bottom: 97/962
  45578. }
  45579. },
  45580. current: {
  45581. height: math.unit(5.67, "feet"),
  45582. weight: math.unit(135, "lb"),
  45583. name: "Current",
  45584. image: {
  45585. source: "./media/characters/sarel/current.svg",
  45586. extra: 865/788,
  45587. bottom: 97/962
  45588. }
  45589. },
  45590. head: {
  45591. height: math.unit(1.77, "feet"),
  45592. name: "Head",
  45593. image: {
  45594. source: "./media/characters/sarel/head.svg"
  45595. }
  45596. },
  45597. claws: {
  45598. height: math.unit(1.8, "feet"),
  45599. name: "Claws",
  45600. image: {
  45601. source: "./media/characters/sarel/claws.svg"
  45602. }
  45603. },
  45604. clawsAlt: {
  45605. height: math.unit(1.8, "feet"),
  45606. name: "Claws-alt",
  45607. image: {
  45608. source: "./media/characters/sarel/claws-alt.svg"
  45609. }
  45610. },
  45611. },
  45612. [
  45613. {
  45614. name: "Normal",
  45615. height: math.unit(5.67, "feet"),
  45616. default: true
  45617. },
  45618. ]
  45619. ))
  45620. characterMakers.push(() => makeCharacter(
  45621. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45622. {
  45623. front: {
  45624. height: math.unit(5500, "feet"),
  45625. name: "Front",
  45626. image: {
  45627. source: "./media/characters/alyonia/front.svg",
  45628. extra: 1200/1135,
  45629. bottom: 29/1229
  45630. }
  45631. },
  45632. back: {
  45633. height: math.unit(5500, "feet"),
  45634. name: "Back",
  45635. image: {
  45636. source: "./media/characters/alyonia/back.svg",
  45637. extra: 1205/1138,
  45638. bottom: 10/1215
  45639. }
  45640. },
  45641. },
  45642. [
  45643. {
  45644. name: "Small",
  45645. height: math.unit(10, "feet")
  45646. },
  45647. {
  45648. name: "Macro",
  45649. height: math.unit(500, "feet")
  45650. },
  45651. {
  45652. name: "Mega Macro",
  45653. height: math.unit(5500, "feet"),
  45654. default: true
  45655. },
  45656. {
  45657. name: "Mega Macro+",
  45658. height: math.unit(500000, "feet")
  45659. },
  45660. {
  45661. name: "Giga Macro",
  45662. height: math.unit(3000, "miles")
  45663. },
  45664. {
  45665. name: "Tera Macro",
  45666. height: math.unit(2.8e6, "miles")
  45667. },
  45668. {
  45669. name: "Galactic",
  45670. height: math.unit(120000, "lightyears")
  45671. },
  45672. ]
  45673. ))
  45674. characterMakers.push(() => makeCharacter(
  45675. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45676. {
  45677. werewolf: {
  45678. height: math.unit(8, "feet"),
  45679. weight: math.unit(425, "lb"),
  45680. name: "Werewolf",
  45681. image: {
  45682. source: "./media/characters/autumn/werewolf.svg",
  45683. extra: 2154/2031,
  45684. bottom: 160/2314
  45685. }
  45686. },
  45687. human: {
  45688. height: math.unit(5 + 8/12, "feet"),
  45689. weight: math.unit(150, "lb"),
  45690. name: "Human",
  45691. image: {
  45692. source: "./media/characters/autumn/human.svg",
  45693. extra: 1200/1149,
  45694. bottom: 30/1230
  45695. }
  45696. },
  45697. },
  45698. [
  45699. {
  45700. name: "Normal",
  45701. height: math.unit(8, "feet"),
  45702. default: true
  45703. },
  45704. ]
  45705. ))
  45706. characterMakers.push(() => makeCharacter(
  45707. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45708. {
  45709. front: {
  45710. height: math.unit(8 + 5/12, "feet"),
  45711. weight: math.unit(825, "lb"),
  45712. name: "Front",
  45713. image: {
  45714. source: "./media/characters/cobalt-charizard/front.svg",
  45715. extra: 1268/1155,
  45716. bottom: 122/1390
  45717. }
  45718. },
  45719. side: {
  45720. height: math.unit(8 + 5/12, "feet"),
  45721. weight: math.unit(825, "lb"),
  45722. name: "Side",
  45723. image: {
  45724. source: "./media/characters/cobalt-charizard/side.svg",
  45725. extra: 1348/1257,
  45726. bottom: 58/1406
  45727. }
  45728. },
  45729. gMax: {
  45730. height: math.unit(134 + 11/12, "feet"),
  45731. name: "G-Max",
  45732. image: {
  45733. source: "./media/characters/cobalt-charizard/g-max.svg",
  45734. extra: 1835/1541,
  45735. bottom: 151/1986
  45736. }
  45737. },
  45738. },
  45739. [
  45740. {
  45741. name: "Normal",
  45742. height: math.unit(8 + 5/12, "feet"),
  45743. default: true
  45744. },
  45745. ]
  45746. ))
  45747. characterMakers.push(() => makeCharacter(
  45748. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45749. {
  45750. front: {
  45751. height: math.unit(6 + 3/12, "feet"),
  45752. weight: math.unit(210, "lb"),
  45753. name: "Front",
  45754. image: {
  45755. source: "./media/characters/stella/front.svg",
  45756. extra: 3549/3335,
  45757. bottom: 51/3600
  45758. }
  45759. },
  45760. },
  45761. [
  45762. {
  45763. name: "Normal",
  45764. height: math.unit(6 + 3/12, "feet"),
  45765. default: true
  45766. },
  45767. ]
  45768. ))
  45769. characterMakers.push(() => makeCharacter(
  45770. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45771. {
  45772. front: {
  45773. height: math.unit(5, "feet"),
  45774. weight: math.unit(90, "lb"),
  45775. name: "Front",
  45776. image: {
  45777. source: "./media/characters/riley-bishop/front.svg",
  45778. extra: 1450/1428,
  45779. bottom: 152/1602
  45780. }
  45781. },
  45782. },
  45783. [
  45784. {
  45785. name: "Normal",
  45786. height: math.unit(5, "feet"),
  45787. default: true
  45788. },
  45789. ]
  45790. ))
  45791. characterMakers.push(() => makeCharacter(
  45792. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45793. {
  45794. side: {
  45795. height: math.unit(8 + 2/12, "feet"),
  45796. weight: math.unit(500, "kg"),
  45797. name: "Side",
  45798. image: {
  45799. source: "./media/characters/theo-arcanine/side.svg",
  45800. extra: 1342/1074,
  45801. bottom: 111/1453
  45802. }
  45803. },
  45804. },
  45805. [
  45806. {
  45807. name: "Normal",
  45808. height: math.unit(8 + 2/12, "feet"),
  45809. default: true
  45810. },
  45811. ]
  45812. ))
  45813. characterMakers.push(() => makeCharacter(
  45814. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45815. {
  45816. front: {
  45817. height: math.unit(4, "feet"),
  45818. name: "Front",
  45819. image: {
  45820. source: "./media/characters/kali/front.svg",
  45821. extra: 1074/867,
  45822. bottom: 34/1108
  45823. }
  45824. },
  45825. back: {
  45826. height: math.unit(4, "feet"),
  45827. name: "Back",
  45828. image: {
  45829. source: "./media/characters/kali/back.svg",
  45830. extra: 1068/863,
  45831. bottom: 26/1094
  45832. }
  45833. },
  45834. frontAlt: {
  45835. height: math.unit(4, "feet"),
  45836. name: "Front (Alt)",
  45837. image: {
  45838. source: "./media/characters/kali/front-alt.svg",
  45839. extra: 1921/1357,
  45840. bottom: 70/1991
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(4, "feet"),
  45848. default: true
  45849. },
  45850. {
  45851. name: "Big'vali",
  45852. height: math.unit(11, "feet")
  45853. },
  45854. {
  45855. name: "Macro",
  45856. height: math.unit(32, "meters")
  45857. },
  45858. {
  45859. name: "Macro+",
  45860. height: math.unit(150, "meters")
  45861. },
  45862. {
  45863. name: "Megamacro",
  45864. height: math.unit(7500, "meters")
  45865. },
  45866. {
  45867. name: "Megamacro+",
  45868. height: math.unit(80, "kilometers")
  45869. },
  45870. ]
  45871. ))
  45872. characterMakers.push(() => makeCharacter(
  45873. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45874. {
  45875. side: {
  45876. height: math.unit(5 + 11/12, "feet"),
  45877. weight: math.unit(236, "lb"),
  45878. name: "Side",
  45879. image: {
  45880. source: "./media/characters/gapp/side.svg",
  45881. extra: 775/340,
  45882. bottom: 58/833
  45883. }
  45884. },
  45885. mouth: {
  45886. height: math.unit(2.98, "feet"),
  45887. name: "Mouth",
  45888. image: {
  45889. source: "./media/characters/gapp/mouth.svg"
  45890. }
  45891. },
  45892. },
  45893. [
  45894. {
  45895. name: "Normal",
  45896. height: math.unit(5 + 1/12, "feet"),
  45897. default: true
  45898. },
  45899. ]
  45900. ))
  45901. characterMakers.push(() => makeCharacter(
  45902. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45903. {
  45904. front: {
  45905. height: math.unit(6, "feet"),
  45906. name: "Front",
  45907. image: {
  45908. source: "./media/characters/persephone/front.svg",
  45909. extra: 1895/1717,
  45910. bottom: 96/1991
  45911. }
  45912. },
  45913. back: {
  45914. height: math.unit(6, "feet"),
  45915. name: "Back",
  45916. image: {
  45917. source: "./media/characters/persephone/back.svg",
  45918. extra: 1868/1679,
  45919. bottom: 26/1894
  45920. }
  45921. },
  45922. casual: {
  45923. height: math.unit(6, "feet"),
  45924. name: "Casual",
  45925. image: {
  45926. source: "./media/characters/persephone/casual.svg",
  45927. extra: 1713/1541,
  45928. bottom: 76/1789
  45929. }
  45930. },
  45931. gaming: {
  45932. height: math.unit(3.55, "feet"),
  45933. name: "Gaming",
  45934. image: {
  45935. source: "./media/characters/persephone/gaming.svg",
  45936. extra: 1242/1038,
  45937. bottom: 66/1308
  45938. }
  45939. },
  45940. head: {
  45941. height: math.unit(2.15, "feet"),
  45942. name: "😐",
  45943. image: {
  45944. source: "./media/characters/persephone/head.svg"
  45945. }
  45946. },
  45947. talking: {
  45948. height: math.unit(2.5, "feet"),
  45949. name: "💬",
  45950. image: {
  45951. source: "./media/characters/persephone/talking.svg"
  45952. }
  45953. },
  45954. hmm: {
  45955. height: math.unit(2.28, "feet"),
  45956. name: "🤨",
  45957. image: {
  45958. source: "./media/characters/persephone/hmm.svg"
  45959. }
  45960. },
  45961. },
  45962. [
  45963. {
  45964. name: "Human Size",
  45965. height: math.unit(6, "feet")
  45966. },
  45967. {
  45968. name: "Big Steppy",
  45969. height: math.unit(600, "meters"),
  45970. default: true
  45971. },
  45972. {
  45973. name: "Galaxy Brain",
  45974. height: math.unit(1, "zettameter")
  45975. },
  45976. ]
  45977. ))
  45978. characterMakers.push(() => makeCharacter(
  45979. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45980. {
  45981. front: {
  45982. height: math.unit(1.85, "meters"),
  45983. name: "Front",
  45984. image: {
  45985. source: "./media/characters/riley-foxthing/front.svg",
  45986. extra: 1495/1354,
  45987. bottom: 122/1617
  45988. }
  45989. },
  45990. frontAlt: {
  45991. height: math.unit(1.85, "meters"),
  45992. name: "Front (Alt)",
  45993. image: {
  45994. source: "./media/characters/riley-foxthing/front-alt.svg",
  45995. extra: 1572/1389,
  45996. bottom: 116/1688
  45997. }
  45998. },
  45999. },
  46000. [
  46001. {
  46002. name: "Normal Sized",
  46003. height: math.unit(1.85, "meters"),
  46004. default: true
  46005. },
  46006. {
  46007. name: "Quite Sizable",
  46008. height: math.unit(5, "meters")
  46009. },
  46010. {
  46011. name: "Rather Large",
  46012. height: math.unit(20, "meters")
  46013. },
  46014. {
  46015. name: "Macro",
  46016. height: math.unit(450, "meters")
  46017. },
  46018. {
  46019. name: "Giga",
  46020. height: math.unit(5, "km")
  46021. },
  46022. ]
  46023. ))
  46024. characterMakers.push(() => makeCharacter(
  46025. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46026. {
  46027. front: {
  46028. height: math.unit(6, "feet"),
  46029. weight: math.unit(200, "lb"),
  46030. name: "Front",
  46031. image: {
  46032. source: "./media/characters/blizzard/front.svg",
  46033. extra: 1136/990,
  46034. bottom: 136/1272
  46035. }
  46036. },
  46037. back: {
  46038. height: math.unit(6, "feet"),
  46039. weight: math.unit(200, "lb"),
  46040. name: "Back",
  46041. image: {
  46042. source: "./media/characters/blizzard/back.svg",
  46043. extra: 1175/1034,
  46044. bottom: 97/1272
  46045. }
  46046. },
  46047. sitting: {
  46048. height: math.unit(3.725, "feet"),
  46049. weight: math.unit(200, "lb"),
  46050. name: "Sitting",
  46051. image: {
  46052. source: "./media/characters/blizzard/sitting.svg",
  46053. extra: 581/485,
  46054. bottom: 90/671
  46055. }
  46056. },
  46057. frontWizard: {
  46058. height: math.unit(7.9, "feet"),
  46059. weight: math.unit(200, "lb"),
  46060. name: "Front (Wizard)",
  46061. image: {
  46062. source: "./media/characters/blizzard/front-wizard.svg"
  46063. }
  46064. },
  46065. backWizard: {
  46066. height: math.unit(7.9, "feet"),
  46067. weight: math.unit(200, "lb"),
  46068. name: "Back (Wizard)",
  46069. image: {
  46070. source: "./media/characters/blizzard/back-wizard.svg"
  46071. }
  46072. },
  46073. frontNsfw: {
  46074. height: math.unit(6, "feet"),
  46075. weight: math.unit(200, "lb"),
  46076. name: "Front (NSFW)",
  46077. image: {
  46078. source: "./media/characters/blizzard/front-nsfw.svg",
  46079. extra: 1136/990,
  46080. bottom: 136/1272
  46081. }
  46082. },
  46083. backNsfw: {
  46084. height: math.unit(6, "feet"),
  46085. weight: math.unit(200, "lb"),
  46086. name: "Back (NSFW)",
  46087. image: {
  46088. source: "./media/characters/blizzard/back-nsfw.svg",
  46089. extra: 1175/1034,
  46090. bottom: 97/1272
  46091. }
  46092. },
  46093. sittingNsfw: {
  46094. height: math.unit(3.725, "feet"),
  46095. weight: math.unit(200, "lb"),
  46096. name: "Sitting (NSFW)",
  46097. image: {
  46098. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46099. extra: 581/485,
  46100. bottom: 90/671
  46101. }
  46102. },
  46103. wizardFrontNsfw: {
  46104. height: math.unit(7.9, "feet"),
  46105. weight: math.unit(200, "lb"),
  46106. name: "Wizard (Front, NSFW)",
  46107. image: {
  46108. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46109. }
  46110. },
  46111. },
  46112. [
  46113. {
  46114. name: "Normal",
  46115. height: math.unit(6, "feet"),
  46116. default: true
  46117. },
  46118. ]
  46119. ))
  46120. characterMakers.push(() => makeCharacter(
  46121. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46122. {
  46123. front: {
  46124. height: math.unit(5 + 2/12, "feet"),
  46125. name: "Front",
  46126. image: {
  46127. source: "./media/characters/lumi/front.svg",
  46128. extra: 1328/1268,
  46129. bottom: 103/1431
  46130. }
  46131. },
  46132. back: {
  46133. height: math.unit(5 + 2/12, "feet"),
  46134. name: "Back",
  46135. image: {
  46136. source: "./media/characters/lumi/back.svg",
  46137. extra: 1381/1327,
  46138. bottom: 43/1424
  46139. }
  46140. },
  46141. },
  46142. [
  46143. {
  46144. name: "Normal",
  46145. height: math.unit(5 + 2/12, "feet"),
  46146. default: true
  46147. },
  46148. ]
  46149. ))
  46150. characterMakers.push(() => makeCharacter(
  46151. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46152. {
  46153. front: {
  46154. height: math.unit(5 + 9/12, "feet"),
  46155. name: "Front",
  46156. image: {
  46157. source: "./media/characters/aliya-cotton/front.svg",
  46158. extra: 577/564,
  46159. bottom: 29/606
  46160. }
  46161. },
  46162. },
  46163. [
  46164. {
  46165. name: "Normal",
  46166. height: math.unit(5 + 9/12, "feet"),
  46167. default: true
  46168. },
  46169. ]
  46170. ))
  46171. characterMakers.push(() => makeCharacter(
  46172. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46173. {
  46174. front: {
  46175. height: math.unit(2.7, "meters"),
  46176. weight: math.unit(25000, "lb"),
  46177. name: "Front",
  46178. image: {
  46179. source: "./media/characters/noah-luxray/front.svg",
  46180. extra: 1644/825,
  46181. bottom: 339/1983
  46182. }
  46183. },
  46184. side: {
  46185. height: math.unit(2.97, "meters"),
  46186. weight: math.unit(25000, "lb"),
  46187. name: "Side",
  46188. image: {
  46189. source: "./media/characters/noah-luxray/side.svg",
  46190. extra: 1319/650,
  46191. bottom: 163/1482
  46192. }
  46193. },
  46194. dick: {
  46195. height: math.unit(7.4, "feet"),
  46196. weight: math.unit(2500, "lb"),
  46197. name: "Dick",
  46198. image: {
  46199. source: "./media/characters/noah-luxray/dick.svg"
  46200. }
  46201. },
  46202. dickAlt: {
  46203. height: math.unit(10.83, "feet"),
  46204. weight: math.unit(2500, "lb"),
  46205. name: "Dick-alt",
  46206. image: {
  46207. source: "./media/characters/noah-luxray/dick-alt.svg"
  46208. }
  46209. },
  46210. },
  46211. [
  46212. {
  46213. name: "BIG",
  46214. height: math.unit(2.7, "meters"),
  46215. default: true
  46216. },
  46217. ]
  46218. ))
  46219. characterMakers.push(() => makeCharacter(
  46220. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46221. {
  46222. standing: {
  46223. height: math.unit(183, "cm"),
  46224. weight: math.unit(68, "kg"),
  46225. name: "Standing",
  46226. image: {
  46227. source: "./media/characters/arion/standing.svg",
  46228. extra: 1869/1807,
  46229. bottom: 93/1962
  46230. }
  46231. },
  46232. reclining: {
  46233. height: math.unit(70.5, "cm"),
  46234. weight: math.unit(68, "lb"),
  46235. name: "Reclining",
  46236. image: {
  46237. source: "./media/characters/arion/reclining.svg",
  46238. extra: 937/870,
  46239. bottom: 63/1000
  46240. }
  46241. },
  46242. },
  46243. [
  46244. {
  46245. name: "Colossus Size, Low",
  46246. height: math.unit(33, "meters"),
  46247. default: true
  46248. },
  46249. {
  46250. name: "Colossus Size, Mid",
  46251. height: math.unit(52, "meters")
  46252. },
  46253. {
  46254. name: "Colossus Size, High",
  46255. height: math.unit(60, "meters")
  46256. },
  46257. {
  46258. name: "Titan Size, Low",
  46259. height: math.unit(91, "meters"),
  46260. },
  46261. {
  46262. name: "Titan Size, Mid",
  46263. height: math.unit(122, "meters")
  46264. },
  46265. {
  46266. name: "Titan Size, High",
  46267. height: math.unit(162, "meters")
  46268. },
  46269. ]
  46270. ))
  46271. characterMakers.push(() => makeCharacter(
  46272. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46273. {
  46274. front: {
  46275. height: math.unit(53, "meters"),
  46276. name: "Front",
  46277. image: {
  46278. source: "./media/characters/stellar-marbey/front.svg",
  46279. extra: 1913/1805,
  46280. bottom: 92/2005
  46281. }
  46282. },
  46283. back: {
  46284. height: math.unit(53, "meters"),
  46285. name: "Back",
  46286. image: {
  46287. source: "./media/characters/stellar-marbey/back.svg",
  46288. extra: 1960/1851,
  46289. bottom: 28/1988
  46290. }
  46291. },
  46292. mouth: {
  46293. height: math.unit(3.5, "meters"),
  46294. name: "Mouth",
  46295. image: {
  46296. source: "./media/characters/stellar-marbey/mouth.svg"
  46297. }
  46298. },
  46299. },
  46300. [
  46301. {
  46302. name: "Macro",
  46303. height: math.unit(53, "meters"),
  46304. default: true
  46305. },
  46306. ]
  46307. ))
  46308. characterMakers.push(() => makeCharacter(
  46309. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46310. {
  46311. front: {
  46312. height: math.unit(8 + 1/12, "feet"),
  46313. weight: math.unit(233, "lb"),
  46314. name: "Front",
  46315. image: {
  46316. source: "./media/characters/matsu/front.svg",
  46317. extra: 832/772,
  46318. bottom: 40/872
  46319. }
  46320. },
  46321. back: {
  46322. height: math.unit(8 + 1/12, "feet"),
  46323. weight: math.unit(233, "lb"),
  46324. name: "Back",
  46325. image: {
  46326. source: "./media/characters/matsu/back.svg",
  46327. extra: 839/780,
  46328. bottom: 47/886
  46329. }
  46330. },
  46331. },
  46332. [
  46333. {
  46334. name: "Normal",
  46335. height: math.unit(8 + 1/12, "feet"),
  46336. default: true
  46337. },
  46338. ]
  46339. ))
  46340. characterMakers.push(() => makeCharacter(
  46341. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46342. {
  46343. front: {
  46344. height: math.unit(4, "feet"),
  46345. weight: math.unit(148, "lb"),
  46346. name: "Front",
  46347. image: {
  46348. source: "./media/characters/thiz/front.svg",
  46349. extra: 1913/1748,
  46350. bottom: 62/1975
  46351. }
  46352. },
  46353. },
  46354. [
  46355. {
  46356. name: "Normal",
  46357. height: math.unit(4, "feet"),
  46358. default: true
  46359. },
  46360. ]
  46361. ))
  46362. characterMakers.push(() => makeCharacter(
  46363. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46364. {
  46365. front: {
  46366. height: math.unit(7 + 6/12, "feet"),
  46367. weight: math.unit(267, "lb"),
  46368. name: "Front",
  46369. image: {
  46370. source: "./media/characters/marcel/front.svg",
  46371. extra: 1221/1096,
  46372. bottom: 76/1297
  46373. }
  46374. },
  46375. },
  46376. [
  46377. {
  46378. name: "Normal",
  46379. height: math.unit(7 + 6/12, "feet"),
  46380. default: true
  46381. },
  46382. ]
  46383. ))
  46384. characterMakers.push(() => makeCharacter(
  46385. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46386. {
  46387. side: {
  46388. height: math.unit(42, "meters"),
  46389. name: "Side",
  46390. image: {
  46391. source: "./media/characters/flake/side.svg",
  46392. extra: 1525/1306,
  46393. bottom: 209/1734
  46394. }
  46395. },
  46396. },
  46397. [
  46398. {
  46399. name: "Normal",
  46400. height: math.unit(42, "meters"),
  46401. default: true
  46402. },
  46403. ]
  46404. ))
  46405. characterMakers.push(() => makeCharacter(
  46406. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46407. {
  46408. dressed: {
  46409. height: math.unit(6 + 4/12, "feet"),
  46410. weight: math.unit(520, "lb"),
  46411. name: "Dressed",
  46412. image: {
  46413. source: "./media/characters/someonne/dressed.svg",
  46414. extra: 1020/1010,
  46415. bottom: 178/1198
  46416. }
  46417. },
  46418. undressed: {
  46419. height: math.unit(6 + 4/12, "feet"),
  46420. weight: math.unit(520, "lb"),
  46421. name: "Undressed",
  46422. image: {
  46423. source: "./media/characters/someonne/undressed.svg",
  46424. extra: 1019/1014,
  46425. bottom: 169/1188
  46426. }
  46427. },
  46428. },
  46429. [
  46430. {
  46431. name: "Normal",
  46432. height: math.unit(6 + 4/12, "feet"),
  46433. default: true
  46434. },
  46435. ]
  46436. ))
  46437. characterMakers.push(() => makeCharacter(
  46438. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46439. {
  46440. front: {
  46441. height: math.unit(3, "feet"),
  46442. weight: math.unit(30, "lb"),
  46443. name: "Front",
  46444. image: {
  46445. source: "./media/characters/till/front.svg",
  46446. extra: 892/823,
  46447. bottom: 55/947
  46448. }
  46449. },
  46450. },
  46451. [
  46452. {
  46453. name: "Normal",
  46454. height: math.unit(3, "feet"),
  46455. default: true
  46456. },
  46457. ]
  46458. ))
  46459. characterMakers.push(() => makeCharacter(
  46460. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46461. {
  46462. front: {
  46463. height: math.unit(9 + 8/12, "feet"),
  46464. weight: math.unit(800, "lb"),
  46465. name: "Front",
  46466. image: {
  46467. source: "./media/characters/sydney-heki/front.svg",
  46468. extra: 1360/1300,
  46469. bottom: 22/1382
  46470. }
  46471. },
  46472. back: {
  46473. height: math.unit(9 + 8/12, "feet"),
  46474. weight: math.unit(800, "lb"),
  46475. name: "Back",
  46476. image: {
  46477. source: "./media/characters/sydney-heki/back.svg",
  46478. extra: 1356/1293,
  46479. bottom: 12/1368
  46480. }
  46481. },
  46482. frontDressed: {
  46483. height: math.unit(9 + 8/12, "feet"),
  46484. weight: math.unit(800, "lb"),
  46485. name: "Front-dressed",
  46486. image: {
  46487. source: "./media/characters/sydney-heki/front-dressed.svg",
  46488. extra: 1360/1300,
  46489. bottom: 22/1382
  46490. }
  46491. },
  46492. },
  46493. [
  46494. {
  46495. name: "Normal",
  46496. height: math.unit(9 + 8/12, "feet"),
  46497. default: true
  46498. },
  46499. {
  46500. name: "Macro",
  46501. height: math.unit(500, "feet")
  46502. },
  46503. {
  46504. name: "Megamacro",
  46505. height: math.unit(3.6, "miles")
  46506. },
  46507. ]
  46508. ))
  46509. characterMakers.push(() => makeCharacter(
  46510. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46511. {
  46512. front: {
  46513. height: math.unit(200, "cm"),
  46514. weight: math.unit(250, "lb"),
  46515. name: "Front",
  46516. image: {
  46517. source: "./media/characters/fowler-karlsson/front.svg",
  46518. extra: 897/845,
  46519. bottom: 123/1020
  46520. }
  46521. },
  46522. back: {
  46523. height: math.unit(200, "cm"),
  46524. weight: math.unit(250, "lb"),
  46525. name: "Back",
  46526. image: {
  46527. source: "./media/characters/fowler-karlsson/back.svg",
  46528. extra: 999/944,
  46529. bottom: 26/1025
  46530. }
  46531. },
  46532. dick: {
  46533. height: math.unit(1.92, "feet"),
  46534. weight: math.unit(150, "lb"),
  46535. name: "Dick",
  46536. image: {
  46537. source: "./media/characters/fowler-karlsson/dick.svg"
  46538. }
  46539. },
  46540. },
  46541. [
  46542. {
  46543. name: "Normal",
  46544. height: math.unit(200, "cm"),
  46545. default: true
  46546. },
  46547. {
  46548. name: "Smaller Macro",
  46549. height: math.unit(90, "m")
  46550. },
  46551. {
  46552. name: "Macro",
  46553. height: math.unit(150, "m")
  46554. },
  46555. {
  46556. name: "Bigger Macro",
  46557. height: math.unit(300, "m")
  46558. },
  46559. ]
  46560. ))
  46561. characterMakers.push(() => makeCharacter(
  46562. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46563. {
  46564. side: {
  46565. height: math.unit(8 + 2/12, "feet"),
  46566. weight: math.unit(1, "tonne"),
  46567. name: "Side",
  46568. image: {
  46569. source: "./media/characters/rylide/side.svg",
  46570. extra: 1318/1034,
  46571. bottom: 106/1424
  46572. }
  46573. },
  46574. sitting: {
  46575. height: math.unit(303, "cm"),
  46576. weight: math.unit(1, "tonne"),
  46577. name: "Sitting",
  46578. image: {
  46579. source: "./media/characters/rylide/sitting.svg",
  46580. extra: 1303/1103,
  46581. bottom: 36/1339
  46582. }
  46583. },
  46584. },
  46585. [
  46586. {
  46587. name: "Normal",
  46588. height: math.unit(8 + 2/12, "feet"),
  46589. default: true
  46590. },
  46591. ]
  46592. ))
  46593. characterMakers.push(() => makeCharacter(
  46594. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46595. {
  46596. front: {
  46597. height: math.unit(5 + 10/12, "feet"),
  46598. weight: math.unit(160, "lb"),
  46599. name: "Front",
  46600. image: {
  46601. source: "./media/characters/pudask/front.svg",
  46602. extra: 1616/1590,
  46603. bottom: 161/1777
  46604. }
  46605. },
  46606. },
  46607. [
  46608. {
  46609. name: "Ferret Height",
  46610. height: math.unit(2 + 5/12, "feet")
  46611. },
  46612. {
  46613. name: "Canon Height",
  46614. height: math.unit(5 + 10/12, "feet"),
  46615. default: true
  46616. },
  46617. ]
  46618. ))
  46619. characterMakers.push(() => makeCharacter(
  46620. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46621. {
  46622. front: {
  46623. height: math.unit(3 + 6/12, "feet"),
  46624. weight: math.unit(60, "lb"),
  46625. name: "Front",
  46626. image: {
  46627. source: "./media/characters/ramita/front.svg",
  46628. extra: 1402/1232,
  46629. bottom: 62/1464
  46630. }
  46631. },
  46632. dressed: {
  46633. height: math.unit(3 + 6/12, "feet"),
  46634. weight: math.unit(60, "lb"),
  46635. name: "Dressed",
  46636. image: {
  46637. source: "./media/characters/ramita/dressed.svg",
  46638. extra: 1534/1249,
  46639. bottom: 50/1584
  46640. }
  46641. },
  46642. },
  46643. [
  46644. {
  46645. name: "Normal",
  46646. height: math.unit(3 + 6/12, "feet"),
  46647. default: true
  46648. },
  46649. ]
  46650. ))
  46651. characterMakers.push(() => makeCharacter(
  46652. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46653. {
  46654. front: {
  46655. height: math.unit(8, "feet"),
  46656. name: "Front",
  46657. image: {
  46658. source: "./media/characters/ark/front.svg",
  46659. extra: 772/693,
  46660. bottom: 45/817
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(8, "feet"),
  46668. default: true
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(6, "feet"),
  46677. weight: math.unit(250, "lb"),
  46678. volume: math.unit(5/8, "gallons"),
  46679. name: "Front",
  46680. image: {
  46681. source: "./media/characters/ludwig-horn/front.svg",
  46682. extra: 1782/1635,
  46683. bottom: 96/1878
  46684. }
  46685. },
  46686. back: {
  46687. height: math.unit(6, "feet"),
  46688. weight: math.unit(250, "lb"),
  46689. volume: math.unit(5/8, "gallons"),
  46690. name: "Back",
  46691. image: {
  46692. source: "./media/characters/ludwig-horn/back.svg",
  46693. extra: 1874/1729,
  46694. bottom: 27/1901
  46695. }
  46696. },
  46697. dick: {
  46698. height: math.unit(1.05, "feet"),
  46699. weight: math.unit(15, "lb"),
  46700. volume: math.unit(5/8, "gallons"),
  46701. name: "Dick",
  46702. image: {
  46703. source: "./media/characters/ludwig-horn/dick.svg"
  46704. }
  46705. },
  46706. },
  46707. [
  46708. {
  46709. name: "Small",
  46710. height: math.unit(6, "feet")
  46711. },
  46712. {
  46713. name: "Typical",
  46714. height: math.unit(12, "feet"),
  46715. default: true
  46716. },
  46717. {
  46718. name: "Building",
  46719. height: math.unit(80, "feet")
  46720. },
  46721. {
  46722. name: "Town",
  46723. height: math.unit(800, "feet")
  46724. },
  46725. {
  46726. name: "Kingdom",
  46727. height: math.unit(80000, "feet")
  46728. },
  46729. {
  46730. name: "Planet",
  46731. height: math.unit(8000000, "feet")
  46732. },
  46733. {
  46734. name: "Universe",
  46735. height: math.unit(8000000000, "feet")
  46736. },
  46737. {
  46738. name: "Transcended",
  46739. height: math.unit(8e27, "feet")
  46740. },
  46741. ]
  46742. ))
  46743. characterMakers.push(() => makeCharacter(
  46744. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46745. {
  46746. front: {
  46747. height: math.unit(5, "feet"),
  46748. weight: math.unit(50, "kg"),
  46749. name: "Front",
  46750. image: {
  46751. source: "./media/characters/biot-avery/front.svg",
  46752. extra: 1295/1232,
  46753. bottom: 86/1381
  46754. }
  46755. },
  46756. },
  46757. [
  46758. {
  46759. name: "Normal",
  46760. height: math.unit(5, "feet"),
  46761. default: true
  46762. },
  46763. ]
  46764. ))
  46765. characterMakers.push(() => makeCharacter(
  46766. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46767. {
  46768. front: {
  46769. height: math.unit(6, "feet"),
  46770. name: "Front",
  46771. image: {
  46772. source: "./media/characters/kitsune-kiro/front.svg",
  46773. extra: 1270/1158,
  46774. bottom: 42/1312
  46775. }
  46776. },
  46777. frontAlt: {
  46778. height: math.unit(6, "feet"),
  46779. name: "Front-alt",
  46780. image: {
  46781. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46782. extra: 1130/1081,
  46783. bottom: 36/1166
  46784. }
  46785. },
  46786. },
  46787. [
  46788. {
  46789. name: "Smol",
  46790. height: math.unit(3, "feet")
  46791. },
  46792. {
  46793. name: "Normal",
  46794. height: math.unit(6, "feet"),
  46795. default: true
  46796. },
  46797. ]
  46798. ))
  46799. characterMakers.push(() => makeCharacter(
  46800. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46801. {
  46802. front: {
  46803. height: math.unit(6, "feet"),
  46804. weight: math.unit(125, "lb"),
  46805. name: "Front",
  46806. image: {
  46807. source: "./media/characters/jack-thatcher/front.svg",
  46808. extra: 1474/1370,
  46809. bottom: 26/1500
  46810. }
  46811. },
  46812. back: {
  46813. height: math.unit(6, "feet"),
  46814. weight: math.unit(125, "lb"),
  46815. name: "Back",
  46816. image: {
  46817. source: "./media/characters/jack-thatcher/back.svg",
  46818. extra: 1489/1384,
  46819. bottom: 18/1507
  46820. }
  46821. },
  46822. },
  46823. [
  46824. {
  46825. name: "Normal",
  46826. height: math.unit(6, "feet"),
  46827. default: true
  46828. },
  46829. {
  46830. name: "Macro",
  46831. height: math.unit(75, "feet")
  46832. },
  46833. {
  46834. name: "Macro-er",
  46835. height: math.unit(250, "feet")
  46836. },
  46837. ]
  46838. ))
  46839. characterMakers.push(() => makeCharacter(
  46840. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46841. {
  46842. front: {
  46843. height: math.unit(7, "feet"),
  46844. weight: math.unit(110, "kg"),
  46845. name: "Front",
  46846. image: {
  46847. source: "./media/characters/max-hyper/front.svg",
  46848. extra: 1969/1881,
  46849. bottom: 49/2018
  46850. }
  46851. },
  46852. },
  46853. [
  46854. {
  46855. name: "Normal",
  46856. height: math.unit(7, "feet"),
  46857. default: true
  46858. },
  46859. ]
  46860. ))
  46861. characterMakers.push(() => makeCharacter(
  46862. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46863. {
  46864. front: {
  46865. height: math.unit(5 + 5/12, "feet"),
  46866. weight: math.unit(160, "lb"),
  46867. name: "Front",
  46868. image: {
  46869. source: "./media/characters/spook/front.svg",
  46870. extra: 794/791,
  46871. bottom: 54/848
  46872. }
  46873. },
  46874. back: {
  46875. height: math.unit(5 + 5/12, "feet"),
  46876. weight: math.unit(160, "lb"),
  46877. name: "Back",
  46878. image: {
  46879. source: "./media/characters/spook/back.svg",
  46880. extra: 812/798,
  46881. bottom: 32/844
  46882. }
  46883. },
  46884. },
  46885. [
  46886. {
  46887. name: "Normal",
  46888. height: math.unit(5 + 5/12, "feet"),
  46889. default: true
  46890. },
  46891. ]
  46892. ))
  46893. characterMakers.push(() => makeCharacter(
  46894. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46895. {
  46896. front: {
  46897. height: math.unit(18, "feet"),
  46898. name: "Front",
  46899. image: {
  46900. source: "./media/characters/xeaduulix/front.svg",
  46901. extra: 1380/1166,
  46902. bottom: 110/1490
  46903. }
  46904. },
  46905. back: {
  46906. height: math.unit(18, "feet"),
  46907. name: "Back",
  46908. image: {
  46909. source: "./media/characters/xeaduulix/back.svg",
  46910. extra: 1592/1170,
  46911. bottom: 128/1720
  46912. }
  46913. },
  46914. frontNsfw: {
  46915. height: math.unit(18, "feet"),
  46916. name: "Front (NSFW)",
  46917. image: {
  46918. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46919. extra: 1380/1166,
  46920. bottom: 110/1490
  46921. }
  46922. },
  46923. backNsfw: {
  46924. height: math.unit(18, "feet"),
  46925. name: "Back (NSFW)",
  46926. image: {
  46927. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46928. extra: 1592/1170,
  46929. bottom: 128/1720
  46930. }
  46931. },
  46932. },
  46933. [
  46934. {
  46935. name: "Normal",
  46936. height: math.unit(18, "feet"),
  46937. default: true
  46938. },
  46939. ]
  46940. ))
  46941. characterMakers.push(() => makeCharacter(
  46942. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46943. {
  46944. spreadWings: {
  46945. height: math.unit(20, "feet"),
  46946. name: "Spread Wings",
  46947. image: {
  46948. source: "./media/characters/fledge/spread-wings.svg",
  46949. extra: 693/635,
  46950. bottom: 26/719
  46951. }
  46952. },
  46953. front: {
  46954. height: math.unit(20, "feet"),
  46955. name: "Front",
  46956. image: {
  46957. source: "./media/characters/fledge/front.svg",
  46958. extra: 684/637,
  46959. bottom: 18/702
  46960. }
  46961. },
  46962. frontAlt: {
  46963. height: math.unit(20, "feet"),
  46964. name: "Front (Alt)",
  46965. image: {
  46966. source: "./media/characters/fledge/front-alt.svg",
  46967. extra: 708/664,
  46968. bottom: 13/721
  46969. }
  46970. },
  46971. back: {
  46972. height: math.unit(20, "feet"),
  46973. name: "Back",
  46974. image: {
  46975. source: "./media/characters/fledge/back.svg",
  46976. extra: 718/634,
  46977. bottom: 22/740
  46978. }
  46979. },
  46980. head: {
  46981. height: math.unit(5.55, "feet"),
  46982. name: "Head",
  46983. image: {
  46984. source: "./media/characters/fledge/head.svg"
  46985. }
  46986. },
  46987. headAlt: {
  46988. height: math.unit(5.1, "feet"),
  46989. name: "Head (Alt)",
  46990. image: {
  46991. source: "./media/characters/fledge/head-alt.svg"
  46992. }
  46993. },
  46994. },
  46995. [
  46996. {
  46997. name: "Small",
  46998. height: math.unit(6 + 2/12, "feet")
  46999. },
  47000. {
  47001. name: "Big",
  47002. height: math.unit(20, "feet"),
  47003. default: true
  47004. },
  47005. {
  47006. name: "Giant",
  47007. height: math.unit(100, "feet")
  47008. },
  47009. {
  47010. name: "Macro",
  47011. height: math.unit(200, "feet")
  47012. },
  47013. ]
  47014. ))
  47015. characterMakers.push(() => makeCharacter(
  47016. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47017. {
  47018. front: {
  47019. height: math.unit(1, "meter"),
  47020. name: "Front",
  47021. image: {
  47022. source: "./media/characters/atlas-morenai/front.svg",
  47023. extra: 1275/1043,
  47024. bottom: 19/1294
  47025. }
  47026. },
  47027. back: {
  47028. height: math.unit(1, "meter"),
  47029. name: "Back",
  47030. image: {
  47031. source: "./media/characters/atlas-morenai/back.svg",
  47032. extra: 1141/1001,
  47033. bottom: 25/1166
  47034. }
  47035. },
  47036. },
  47037. [
  47038. {
  47039. name: "Normal",
  47040. height: math.unit(1, "meter"),
  47041. default: true
  47042. },
  47043. {
  47044. name: "Magic-Infused",
  47045. height: math.unit(5, "meters")
  47046. },
  47047. ]
  47048. ))
  47049. characterMakers.push(() => makeCharacter(
  47050. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47051. {
  47052. front: {
  47053. height: math.unit(5, "meters"),
  47054. name: "Front",
  47055. image: {
  47056. source: "./media/characters/cintia/front.svg",
  47057. extra: 1312/1228,
  47058. bottom: 38/1350
  47059. }
  47060. },
  47061. back: {
  47062. height: math.unit(5, "meters"),
  47063. name: "Back",
  47064. image: {
  47065. source: "./media/characters/cintia/back.svg",
  47066. extra: 1260/1166,
  47067. bottom: 98/1358
  47068. }
  47069. },
  47070. frontDick: {
  47071. height: math.unit(5, "meters"),
  47072. name: "Front (Dick)",
  47073. image: {
  47074. source: "./media/characters/cintia/front-dick.svg",
  47075. extra: 1312/1228,
  47076. bottom: 38/1350
  47077. }
  47078. },
  47079. backDick: {
  47080. height: math.unit(5, "meters"),
  47081. name: "Back (Dick)",
  47082. image: {
  47083. source: "./media/characters/cintia/back-dick.svg",
  47084. extra: 1260/1166,
  47085. bottom: 98/1358
  47086. }
  47087. },
  47088. bust: {
  47089. height: math.unit(1.97, "meters"),
  47090. name: "Bust",
  47091. image: {
  47092. source: "./media/characters/cintia/bust.svg",
  47093. extra: 617/565,
  47094. bottom: 0/617
  47095. }
  47096. },
  47097. },
  47098. [
  47099. {
  47100. name: "Normal",
  47101. height: math.unit(5, "meters"),
  47102. default: true
  47103. },
  47104. ]
  47105. ))
  47106. characterMakers.push(() => makeCharacter(
  47107. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47108. {
  47109. side: {
  47110. height: math.unit(100, "feet"),
  47111. name: "Side",
  47112. image: {
  47113. source: "./media/characters/denora/side.svg",
  47114. extra: 875/803,
  47115. bottom: 9/884
  47116. }
  47117. },
  47118. },
  47119. [
  47120. {
  47121. name: "Standard",
  47122. height: math.unit(100, "feet"),
  47123. default: true
  47124. },
  47125. {
  47126. name: "Grand",
  47127. height: math.unit(1000, "feet")
  47128. },
  47129. {
  47130. name: "Conquering",
  47131. height: math.unit(10000, "feet")
  47132. },
  47133. ]
  47134. ))
  47135. characterMakers.push(() => makeCharacter(
  47136. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47137. {
  47138. dressed: {
  47139. height: math.unit(8 + 5/12, "feet"),
  47140. weight: math.unit(700, "lb"),
  47141. name: "Dressed",
  47142. image: {
  47143. source: "./media/characters/kiva/dressed.svg",
  47144. extra: 1102/1055,
  47145. bottom: 60/1162
  47146. }
  47147. },
  47148. nude: {
  47149. height: math.unit(8 + 5/12, "feet"),
  47150. weight: math.unit(700, "lb"),
  47151. name: "Nude",
  47152. image: {
  47153. source: "./media/characters/kiva/nude.svg",
  47154. extra: 1102/1055,
  47155. bottom: 60/1162
  47156. }
  47157. },
  47158. },
  47159. [
  47160. {
  47161. name: "Base Height",
  47162. height: math.unit(8 + 5/12, "feet"),
  47163. default: true
  47164. },
  47165. {
  47166. name: "Macro",
  47167. height: math.unit(100, "feet")
  47168. },
  47169. {
  47170. name: "Max",
  47171. height: math.unit(3280, "feet")
  47172. },
  47173. ]
  47174. ))
  47175. characterMakers.push(() => makeCharacter(
  47176. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47177. {
  47178. front: {
  47179. height: math.unit(6 + 8/12, "feet"),
  47180. weight: math.unit(250, "lb"),
  47181. name: "Front",
  47182. image: {
  47183. source: "./media/characters/ztragon/front.svg",
  47184. extra: 1825/1684,
  47185. bottom: 98/1923
  47186. }
  47187. },
  47188. },
  47189. [
  47190. {
  47191. name: "Normal",
  47192. height: math.unit(6 + 8/12, "feet"),
  47193. default: true
  47194. },
  47195. {
  47196. name: "Macro",
  47197. height: math.unit(80, "feet")
  47198. },
  47199. ]
  47200. ))
  47201. characterMakers.push(() => makeCharacter(
  47202. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47203. {
  47204. front: {
  47205. height: math.unit(10.4, "feet"),
  47206. weight: math.unit(2, "tons"),
  47207. name: "Front",
  47208. image: {
  47209. source: "./media/characters/yesenia/front.svg",
  47210. extra: 1479/1474,
  47211. bottom: 233/1712
  47212. }
  47213. },
  47214. },
  47215. [
  47216. {
  47217. name: "Normal",
  47218. height: math.unit(10.4, "feet"),
  47219. default: true
  47220. },
  47221. ]
  47222. ))
  47223. characterMakers.push(() => makeCharacter(
  47224. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47225. {
  47226. normal: {
  47227. height: math.unit(6 + 1/12, "feet"),
  47228. weight: math.unit(180, "lb"),
  47229. name: "Normal",
  47230. image: {
  47231. source: "./media/characters/leanne-lycheborne/normal.svg",
  47232. extra: 1748/1660,
  47233. bottom: 98/1846
  47234. }
  47235. },
  47236. were: {
  47237. height: math.unit(12, "feet"),
  47238. weight: math.unit(1600, "lb"),
  47239. name: "Were",
  47240. image: {
  47241. source: "./media/characters/leanne-lycheborne/were.svg",
  47242. extra: 1485/1432,
  47243. bottom: 66/1551
  47244. }
  47245. },
  47246. },
  47247. [
  47248. {
  47249. name: "Normal",
  47250. height: math.unit(6 + 1/12, "feet"),
  47251. default: true
  47252. },
  47253. ]
  47254. ))
  47255. characterMakers.push(() => makeCharacter(
  47256. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47257. {
  47258. side: {
  47259. height: math.unit(13, "feet"),
  47260. name: "Side",
  47261. image: {
  47262. source: "./media/characters/kira-tyler/side.svg",
  47263. extra: 693/393,
  47264. bottom: 58/751
  47265. }
  47266. },
  47267. },
  47268. [
  47269. {
  47270. name: "Normal",
  47271. height: math.unit(13, "feet"),
  47272. default: true
  47273. },
  47274. ]
  47275. ))
  47276. characterMakers.push(() => makeCharacter(
  47277. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47278. {
  47279. front: {
  47280. height: math.unit(10.3, "feet"),
  47281. weight: math.unit(150, "lb"),
  47282. name: "Front",
  47283. image: {
  47284. source: "./media/characters/blaze/front.svg",
  47285. extra: 1378/1286,
  47286. bottom: 172/1550
  47287. }
  47288. },
  47289. },
  47290. [
  47291. {
  47292. name: "Normal",
  47293. height: math.unit(10.3, "feet"),
  47294. default: true
  47295. },
  47296. ]
  47297. ))
  47298. characterMakers.push(() => makeCharacter(
  47299. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47300. {
  47301. side: {
  47302. height: math.unit(2, "meters"),
  47303. weight: math.unit(400, "kg"),
  47304. name: "Side",
  47305. image: {
  47306. source: "./media/characters/anu/side.svg",
  47307. extra: 506/394,
  47308. bottom: 18/524
  47309. }
  47310. },
  47311. },
  47312. [
  47313. {
  47314. name: "Humanoid",
  47315. height: math.unit(2, "meters")
  47316. },
  47317. {
  47318. name: "Normal",
  47319. height: math.unit(5, "meters"),
  47320. default: true
  47321. },
  47322. ]
  47323. ))
  47324. characterMakers.push(() => makeCharacter(
  47325. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47326. {
  47327. front: {
  47328. height: math.unit(5 + 5/12, "feet"),
  47329. weight: math.unit(170, "lb"),
  47330. name: "Front",
  47331. image: {
  47332. source: "./media/characters/synx-the-lynx/front.svg",
  47333. extra: 1893/1745,
  47334. bottom: 17/1910
  47335. }
  47336. },
  47337. side: {
  47338. height: math.unit(5 + 5/12, "feet"),
  47339. weight: math.unit(170, "lb"),
  47340. name: "Side",
  47341. image: {
  47342. source: "./media/characters/synx-the-lynx/side.svg",
  47343. extra: 1884/1740,
  47344. bottom: 39/1923
  47345. }
  47346. },
  47347. back: {
  47348. height: math.unit(5 + 5/12, "feet"),
  47349. weight: math.unit(170, "lb"),
  47350. name: "Back",
  47351. image: {
  47352. source: "./media/characters/synx-the-lynx/back.svg",
  47353. extra: 1903/1755,
  47354. bottom: 14/1917
  47355. }
  47356. },
  47357. },
  47358. [
  47359. {
  47360. name: "Normal",
  47361. height: math.unit(5 + 5/12, "feet"),
  47362. default: true
  47363. },
  47364. ]
  47365. ))
  47366. characterMakers.push(() => makeCharacter(
  47367. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47368. {
  47369. back: {
  47370. height: math.unit(15, "feet"),
  47371. name: "Back",
  47372. image: {
  47373. source: "./media/characters/nadezda-fex/back.svg",
  47374. extra: 1695/1481,
  47375. bottom: 25/1720
  47376. }
  47377. },
  47378. },
  47379. [
  47380. {
  47381. name: "Normal",
  47382. height: math.unit(15, "feet"),
  47383. default: true
  47384. },
  47385. {
  47386. name: "Macro",
  47387. height: math.unit(2.5, "miles")
  47388. },
  47389. {
  47390. name: "Goddess",
  47391. height: math.unit(2, "multiverses")
  47392. },
  47393. ]
  47394. ))
  47395. characterMakers.push(() => makeCharacter(
  47396. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47397. {
  47398. front: {
  47399. height: math.unit(216, "cm"),
  47400. name: "Front",
  47401. image: {
  47402. source: "./media/characters/lev/front.svg",
  47403. extra: 1728/1670,
  47404. bottom: 82/1810
  47405. }
  47406. },
  47407. back: {
  47408. height: math.unit(216, "cm"),
  47409. name: "Back",
  47410. image: {
  47411. source: "./media/characters/lev/back.svg",
  47412. extra: 1738/1675,
  47413. bottom: 24/1762
  47414. }
  47415. },
  47416. dressed: {
  47417. height: math.unit(216, "cm"),
  47418. name: "Dressed",
  47419. image: {
  47420. source: "./media/characters/lev/dressed.svg",
  47421. extra: 1397/1351,
  47422. bottom: 73/1470
  47423. }
  47424. },
  47425. head: {
  47426. height: math.unit(0.51, "meter"),
  47427. name: "Head",
  47428. image: {
  47429. source: "./media/characters/lev/head.svg"
  47430. }
  47431. },
  47432. },
  47433. [
  47434. {
  47435. name: "Normal",
  47436. height: math.unit(216, "cm"),
  47437. default: true
  47438. },
  47439. {
  47440. name: "Relatively Macro",
  47441. height: math.unit(80, "meters")
  47442. },
  47443. {
  47444. name: "Megamacro",
  47445. height: math.unit(21600, "meters")
  47446. },
  47447. {
  47448. name: "Megamacro+",
  47449. height: math.unit(64800, "meters")
  47450. },
  47451. ]
  47452. ))
  47453. characterMakers.push(() => makeCharacter(
  47454. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47455. {
  47456. front: {
  47457. height: math.unit(2, "meters"),
  47458. weight: math.unit(80, "kg"),
  47459. name: "Front",
  47460. image: {
  47461. source: "./media/characters/moka/front.svg",
  47462. extra: 1337/1255,
  47463. bottom: 58/1395
  47464. }
  47465. },
  47466. },
  47467. [
  47468. {
  47469. name: "Micro",
  47470. height: math.unit(15, "cm")
  47471. },
  47472. {
  47473. name: "Normal",
  47474. height: math.unit(2, "meters"),
  47475. default: true
  47476. },
  47477. {
  47478. name: "Macro",
  47479. height: math.unit(20, "meters"),
  47480. },
  47481. ]
  47482. ))
  47483. characterMakers.push(() => makeCharacter(
  47484. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47485. {
  47486. front: {
  47487. height: math.unit(9, "feet"),
  47488. weight: math.unit(240, "lb"),
  47489. name: "Front",
  47490. image: {
  47491. source: "./media/characters/kuzco/front.svg",
  47492. extra: 1593/1487,
  47493. bottom: 32/1625
  47494. }
  47495. },
  47496. side: {
  47497. height: math.unit(9, "feet"),
  47498. weight: math.unit(240, "lb"),
  47499. name: "Side",
  47500. image: {
  47501. source: "./media/characters/kuzco/side.svg",
  47502. extra: 1575/1485,
  47503. bottom: 30/1605
  47504. }
  47505. },
  47506. back: {
  47507. height: math.unit(9, "feet"),
  47508. weight: math.unit(240, "lb"),
  47509. name: "Back",
  47510. image: {
  47511. source: "./media/characters/kuzco/back.svg",
  47512. extra: 1603/1514,
  47513. bottom: 14/1617
  47514. }
  47515. },
  47516. },
  47517. [
  47518. {
  47519. name: "Normal",
  47520. height: math.unit(9, "feet"),
  47521. default: true
  47522. },
  47523. ]
  47524. ))
  47525. characterMakers.push(() => makeCharacter(
  47526. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47527. {
  47528. side: {
  47529. height: math.unit(2, "meters"),
  47530. weight: math.unit(300, "kg"),
  47531. name: "Side",
  47532. image: {
  47533. source: "./media/characters/ceruleus/side.svg",
  47534. extra: 1068/974,
  47535. bottom: 126/1194
  47536. }
  47537. },
  47538. maw: {
  47539. height: math.unit(0.8125, "meter"),
  47540. name: "Maw",
  47541. image: {
  47542. source: "./media/characters/ceruleus/maw.svg"
  47543. }
  47544. },
  47545. },
  47546. [
  47547. {
  47548. name: "Normal",
  47549. height: math.unit(16, "meters"),
  47550. default: true
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47556. {
  47557. front: {
  47558. height: math.unit(9, "feet"),
  47559. weight: math.unit(500, "kg"),
  47560. name: "Front",
  47561. image: {
  47562. source: "./media/characters/acouya/front.svg",
  47563. extra: 1660/1473,
  47564. bottom: 28/1688
  47565. }
  47566. },
  47567. },
  47568. [
  47569. {
  47570. name: "Normal",
  47571. height: math.unit(9, "feet"),
  47572. default: true
  47573. },
  47574. ]
  47575. ))
  47576. characterMakers.push(() => makeCharacter(
  47577. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47578. {
  47579. front: {
  47580. height: math.unit(5 + 6/12, "feet"),
  47581. weight: math.unit(195, "lb"),
  47582. name: "Front",
  47583. image: {
  47584. source: "./media/characters/vant/front.svg",
  47585. extra: 1396/1320,
  47586. bottom: 20/1416
  47587. }
  47588. },
  47589. back: {
  47590. height: math.unit(5 + 6/12, "feet"),
  47591. weight: math.unit(195, "lb"),
  47592. name: "Back",
  47593. image: {
  47594. source: "./media/characters/vant/back.svg",
  47595. extra: 1396/1320,
  47596. bottom: 20/1416
  47597. }
  47598. },
  47599. maw: {
  47600. height: math.unit(0.75, "feet"),
  47601. name: "Maw",
  47602. image: {
  47603. source: "./media/characters/vant/maw.svg"
  47604. }
  47605. },
  47606. paw: {
  47607. height: math.unit(1.07, "feet"),
  47608. name: "Paw",
  47609. image: {
  47610. source: "./media/characters/vant/paw.svg"
  47611. }
  47612. },
  47613. },
  47614. [
  47615. {
  47616. name: "Micro",
  47617. height: math.unit(0.25, "inches")
  47618. },
  47619. {
  47620. name: "Normal",
  47621. height: math.unit(5 + 6/12, "feet"),
  47622. default: true
  47623. },
  47624. {
  47625. name: "Macro",
  47626. height: math.unit(75, "feet")
  47627. },
  47628. ]
  47629. ))
  47630. characterMakers.push(() => makeCharacter(
  47631. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47632. {
  47633. front: {
  47634. height: math.unit(30, "meters"),
  47635. weight: math.unit(363, "tons"),
  47636. name: "Front",
  47637. image: {
  47638. source: "./media/characters/ahra/front.svg",
  47639. extra: 1914/1814,
  47640. bottom: 46/1960
  47641. }
  47642. },
  47643. },
  47644. [
  47645. {
  47646. name: "Macro",
  47647. height: math.unit(30, "meters"),
  47648. default: true
  47649. },
  47650. ]
  47651. ))
  47652. characterMakers.push(() => makeCharacter(
  47653. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47654. {
  47655. undressed: {
  47656. height: math.unit(2, "m"),
  47657. weight: math.unit(250, "kg"),
  47658. name: "Undressed",
  47659. image: {
  47660. source: "./media/characters/coriander/undressed.svg",
  47661. extra: 1757/1606,
  47662. bottom: 107/1864
  47663. }
  47664. },
  47665. dressed: {
  47666. height: math.unit(2, "m"),
  47667. weight: math.unit(250, "kg"),
  47668. name: "Dressed",
  47669. image: {
  47670. source: "./media/characters/coriander/dressed.svg",
  47671. extra: 1757/1606,
  47672. bottom: 107/1864
  47673. }
  47674. },
  47675. },
  47676. [
  47677. {
  47678. name: "Normal",
  47679. height: math.unit(4, "meters"),
  47680. default: true
  47681. },
  47682. {
  47683. name: "XL",
  47684. height: math.unit(6, "meters")
  47685. },
  47686. {
  47687. name: "XXL",
  47688. height: math.unit(8, "meters")
  47689. },
  47690. ]
  47691. ))
  47692. characterMakers.push(() => makeCharacter(
  47693. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47694. {
  47695. front: {
  47696. height: math.unit(6, "feet"),
  47697. name: "Front",
  47698. image: {
  47699. source: "./media/characters/syrinx/front.svg",
  47700. extra: 1557/1259,
  47701. bottom: 171/1728
  47702. }
  47703. },
  47704. },
  47705. [
  47706. {
  47707. name: "Normal",
  47708. height: math.unit(6 + 3/12, "feet"),
  47709. default: true
  47710. },
  47711. ]
  47712. ))
  47713. characterMakers.push(() => makeCharacter(
  47714. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47715. {
  47716. front: {
  47717. height: math.unit(11 + 6/12, "feet"),
  47718. weight: math.unit(1.5, "tons"),
  47719. name: "Front",
  47720. image: {
  47721. source: "./media/characters/bor/front.svg",
  47722. extra: 1189/1109,
  47723. bottom: 170/1359
  47724. }
  47725. },
  47726. },
  47727. [
  47728. {
  47729. name: "Normal",
  47730. height: math.unit(11 + 6/12, "feet"),
  47731. default: true
  47732. },
  47733. {
  47734. name: "Macro",
  47735. height: math.unit(32 + 9/12, "feet")
  47736. },
  47737. ]
  47738. ))
  47739. characterMakers.push(() => makeCharacter(
  47740. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47741. {
  47742. anthro: {
  47743. height: math.unit(9, "feet"),
  47744. weight: math.unit(2076, "lb"),
  47745. name: "Anthro",
  47746. image: {
  47747. source: "./media/characters/abacus/anthro.svg",
  47748. extra: 1540/1494,
  47749. bottom: 233/1773
  47750. }
  47751. },
  47752. pigeon: {
  47753. height: math.unit(1, "feet"),
  47754. name: "Pigeon",
  47755. image: {
  47756. source: "./media/characters/abacus/pigeon.svg",
  47757. extra: 528/525,
  47758. bottom: 46/574
  47759. }
  47760. },
  47761. },
  47762. [
  47763. {
  47764. name: "Normal",
  47765. height: math.unit(9, "feet"),
  47766. default: true
  47767. },
  47768. ]
  47769. ))
  47770. characterMakers.push(() => makeCharacter(
  47771. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47772. {
  47773. side: {
  47774. height: math.unit(6, "feet"),
  47775. name: "Side",
  47776. image: {
  47777. source: "./media/characters/delkhan/side.svg",
  47778. extra: 1884/1786,
  47779. bottom: 308/2192
  47780. }
  47781. },
  47782. head: {
  47783. height: math.unit(3.38, "feet"),
  47784. name: "Head",
  47785. image: {
  47786. source: "./media/characters/delkhan/head.svg"
  47787. }
  47788. },
  47789. },
  47790. [
  47791. {
  47792. name: "Normal",
  47793. height: math.unit(72, "feet"),
  47794. default: true
  47795. },
  47796. {
  47797. name: "Giant",
  47798. height: math.unit(172, "feet")
  47799. },
  47800. ]
  47801. ))
  47802. characterMakers.push(() => makeCharacter(
  47803. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47804. {
  47805. standing: {
  47806. height: math.unit(6, "feet"),
  47807. name: "Standing",
  47808. image: {
  47809. source: "./media/characters/euchidat/standing.svg",
  47810. extra: 1612/1553,
  47811. bottom: 116/1728
  47812. }
  47813. },
  47814. leaning: {
  47815. height: math.unit(6, "feet"),
  47816. name: "Leaning",
  47817. image: {
  47818. source: "./media/characters/euchidat/leaning.svg",
  47819. extra: 1719/1674,
  47820. bottom: 27/1746
  47821. }
  47822. },
  47823. },
  47824. [
  47825. {
  47826. name: "Normal",
  47827. height: math.unit(175, "feet"),
  47828. default: true
  47829. },
  47830. {
  47831. name: "Megamacro",
  47832. height: math.unit(190, "miles")
  47833. },
  47834. {
  47835. name: "Gigamacro",
  47836. height: math.unit(190000, "miles")
  47837. },
  47838. ]
  47839. ))
  47840. characterMakers.push(() => makeCharacter(
  47841. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47842. {
  47843. front: {
  47844. height: math.unit(6, "feet"),
  47845. weight: math.unit(150, "lb"),
  47846. name: "Front",
  47847. image: {
  47848. source: "./media/characters/rebecca-stack/front.svg",
  47849. extra: 1256/1201,
  47850. bottom: 18/1274
  47851. }
  47852. },
  47853. },
  47854. [
  47855. {
  47856. name: "Normal",
  47857. height: math.unit(5 + 8/12, "feet"),
  47858. default: true
  47859. },
  47860. {
  47861. name: "Demolitionist",
  47862. height: math.unit(200, "feet")
  47863. },
  47864. {
  47865. name: "Out of Control",
  47866. height: math.unit(2, "miles")
  47867. },
  47868. {
  47869. name: "Giga",
  47870. height: math.unit(7200, "miles")
  47871. },
  47872. ]
  47873. ))
  47874. characterMakers.push(() => makeCharacter(
  47875. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47876. {
  47877. front: {
  47878. height: math.unit(6, "feet"),
  47879. weight: math.unit(150, "lb"),
  47880. name: "Front",
  47881. image: {
  47882. source: "./media/characters/jenny-cartwright/front.svg",
  47883. extra: 1384/1376,
  47884. bottom: 58/1442
  47885. }
  47886. },
  47887. },
  47888. [
  47889. {
  47890. name: "Normal",
  47891. height: math.unit(6 + 7/12, "feet"),
  47892. default: true
  47893. },
  47894. {
  47895. name: "Librarian",
  47896. height: math.unit(55, "feet")
  47897. },
  47898. {
  47899. name: "Sightseer",
  47900. height: math.unit(50, "miles")
  47901. },
  47902. {
  47903. name: "Giga",
  47904. height: math.unit(30000, "miles")
  47905. },
  47906. ]
  47907. ))
  47908. characterMakers.push(() => makeCharacter(
  47909. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47910. {
  47911. nude: {
  47912. height: math.unit(8, "feet"),
  47913. weight: math.unit(225, "lb"),
  47914. name: "Nude",
  47915. image: {
  47916. source: "./media/characters/marvy/nude.svg",
  47917. extra: 1900/1683,
  47918. bottom: 89/1989
  47919. }
  47920. },
  47921. dressed: {
  47922. height: math.unit(8, "feet"),
  47923. weight: math.unit(225, "lb"),
  47924. name: "Dressed",
  47925. image: {
  47926. source: "./media/characters/marvy/dressed.svg",
  47927. extra: 1900/1683,
  47928. bottom: 89/1989
  47929. }
  47930. },
  47931. head: {
  47932. height: math.unit(2.85, "feet"),
  47933. name: "Head",
  47934. image: {
  47935. source: "./media/characters/marvy/head.svg"
  47936. }
  47937. },
  47938. },
  47939. [
  47940. {
  47941. name: "Normal",
  47942. height: math.unit(8, "feet"),
  47943. default: true
  47944. },
  47945. ]
  47946. ))
  47947. characterMakers.push(() => makeCharacter(
  47948. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47949. {
  47950. front: {
  47951. height: math.unit(8, "feet"),
  47952. weight: math.unit(250, "lb"),
  47953. name: "Front",
  47954. image: {
  47955. source: "./media/characters/leah/front.svg",
  47956. extra: 1257/1149,
  47957. bottom: 109/1366
  47958. }
  47959. },
  47960. },
  47961. [
  47962. {
  47963. name: "Normal",
  47964. height: math.unit(8, "feet"),
  47965. default: true
  47966. },
  47967. {
  47968. name: "Minimacro",
  47969. height: math.unit(40, "feet")
  47970. },
  47971. {
  47972. name: "Macro",
  47973. height: math.unit(124, "feet")
  47974. },
  47975. {
  47976. name: "Megamacro",
  47977. height: math.unit(850, "feet")
  47978. },
  47979. ]
  47980. ))
  47981. characterMakers.push(() => makeCharacter(
  47982. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47983. {
  47984. side: {
  47985. height: math.unit(13 + 6/12, "feet"),
  47986. weight: math.unit(3200, "lb"),
  47987. name: "Side",
  47988. image: {
  47989. source: "./media/characters/alvir/side.svg",
  47990. extra: 896/589,
  47991. bottom: 26/922
  47992. }
  47993. },
  47994. },
  47995. [
  47996. {
  47997. name: "Normal",
  47998. height: math.unit(13 + 6/12, "feet"),
  47999. default: true
  48000. },
  48001. ]
  48002. ))
  48003. characterMakers.push(() => makeCharacter(
  48004. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48005. {
  48006. front: {
  48007. height: math.unit(5 + 4/12, "feet"),
  48008. weight: math.unit(236, "lb"),
  48009. name: "Front",
  48010. image: {
  48011. source: "./media/characters/zaina-khalil/front.svg",
  48012. extra: 1533/1485,
  48013. bottom: 94/1627
  48014. }
  48015. },
  48016. side: {
  48017. height: math.unit(5 + 4/12, "feet"),
  48018. weight: math.unit(236, "lb"),
  48019. name: "Side",
  48020. image: {
  48021. source: "./media/characters/zaina-khalil/side.svg",
  48022. extra: 1537/1498,
  48023. bottom: 66/1603
  48024. }
  48025. },
  48026. back: {
  48027. height: math.unit(5 + 4/12, "feet"),
  48028. weight: math.unit(236, "lb"),
  48029. name: "Back",
  48030. image: {
  48031. source: "./media/characters/zaina-khalil/back.svg",
  48032. extra: 1546/1494,
  48033. bottom: 89/1635
  48034. }
  48035. },
  48036. },
  48037. [
  48038. {
  48039. name: "Normal",
  48040. height: math.unit(5 + 4/12, "feet"),
  48041. default: true
  48042. },
  48043. ]
  48044. ))
  48045. characterMakers.push(() => makeCharacter(
  48046. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48047. {
  48048. side: {
  48049. height: math.unit(12, "feet"),
  48050. weight: math.unit(4000, "lb"),
  48051. name: "Side",
  48052. image: {
  48053. source: "./media/characters/terry/side.svg",
  48054. extra: 1518/1439,
  48055. bottom: 149/1667
  48056. }
  48057. },
  48058. },
  48059. [
  48060. {
  48061. name: "Normal",
  48062. height: math.unit(12, "feet"),
  48063. default: true
  48064. },
  48065. ]
  48066. ))
  48067. characterMakers.push(() => makeCharacter(
  48068. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48069. {
  48070. front: {
  48071. height: math.unit(12, "feet"),
  48072. weight: math.unit(1500, "lb"),
  48073. name: "Front",
  48074. image: {
  48075. source: "./media/characters/kahea/front.svg",
  48076. extra: 1722/1617,
  48077. bottom: 179/1901
  48078. }
  48079. },
  48080. },
  48081. [
  48082. {
  48083. name: "Normal",
  48084. height: math.unit(12, "feet"),
  48085. default: true
  48086. },
  48087. ]
  48088. ))
  48089. characterMakers.push(() => makeCharacter(
  48090. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48091. {
  48092. demonFront: {
  48093. height: math.unit(36, "feet"),
  48094. name: "Front",
  48095. image: {
  48096. source: "./media/characters/alex-xuria/demon-front.svg",
  48097. extra: 1705/1673,
  48098. bottom: 198/1903
  48099. },
  48100. form: "demon",
  48101. default: true
  48102. },
  48103. demonBack: {
  48104. height: math.unit(36, "feet"),
  48105. name: "Back",
  48106. image: {
  48107. source: "./media/characters/alex-xuria/demon-back.svg",
  48108. extra: 1725/1693,
  48109. bottom: 70/1795
  48110. },
  48111. form: "demon"
  48112. },
  48113. demonHead: {
  48114. height: math.unit(2.14, "meters"),
  48115. name: "Head",
  48116. image: {
  48117. source: "./media/characters/alex-xuria/demon-head.svg"
  48118. },
  48119. form: "demon"
  48120. },
  48121. demonHand: {
  48122. height: math.unit(1.61, "meters"),
  48123. name: "Hand",
  48124. image: {
  48125. source: "./media/characters/alex-xuria/demon-hand.svg"
  48126. },
  48127. form: "demon"
  48128. },
  48129. demonPaw: {
  48130. height: math.unit(1.35, "meters"),
  48131. name: "Paw",
  48132. image: {
  48133. source: "./media/characters/alex-xuria/demon-paw.svg"
  48134. },
  48135. form: "demon"
  48136. },
  48137. demonFoot: {
  48138. height: math.unit(2.2, "meters"),
  48139. name: "Foot",
  48140. image: {
  48141. source: "./media/characters/alex-xuria/demon-foot.svg"
  48142. },
  48143. form: "demon"
  48144. },
  48145. demonCock: {
  48146. height: math.unit(1.74, "meters"),
  48147. name: "Cock",
  48148. image: {
  48149. source: "./media/characters/alex-xuria/demon-cock.svg"
  48150. },
  48151. form: "demon"
  48152. },
  48153. demonTailClosed: {
  48154. height: math.unit(1.47, "meters"),
  48155. name: "Tail (Closed)",
  48156. image: {
  48157. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48158. },
  48159. form: "demon"
  48160. },
  48161. demonTailOpen: {
  48162. height: math.unit(2.85, "meters"),
  48163. name: "Tail (Open)",
  48164. image: {
  48165. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48166. },
  48167. form: "demon"
  48168. },
  48169. incubusFront: {
  48170. height: math.unit(12, "feet"),
  48171. name: "Front",
  48172. image: {
  48173. source: "./media/characters/alex-xuria/incubus-front.svg",
  48174. extra: 1754/1677,
  48175. bottom: 125/1879
  48176. },
  48177. form: "incubus",
  48178. default: true
  48179. },
  48180. incubusBack: {
  48181. height: math.unit(12, "feet"),
  48182. name: "Back",
  48183. image: {
  48184. source: "./media/characters/alex-xuria/incubus-back.svg",
  48185. extra: 1702/1647,
  48186. bottom: 30/1732
  48187. },
  48188. form: "incubus"
  48189. },
  48190. incubusHead: {
  48191. height: math.unit(3.45, "feet"),
  48192. name: "Head",
  48193. image: {
  48194. source: "./media/characters/alex-xuria/incubus-head.svg"
  48195. },
  48196. form: "incubus"
  48197. },
  48198. rabbitFront: {
  48199. height: math.unit(6, "feet"),
  48200. name: "Front",
  48201. image: {
  48202. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48203. extra: 1369/1349,
  48204. bottom: 45/1414
  48205. },
  48206. form: "rabbit",
  48207. default: true
  48208. },
  48209. rabbitSide: {
  48210. height: math.unit(6, "feet"),
  48211. name: "Side",
  48212. image: {
  48213. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48214. extra: 1370/1356,
  48215. bottom: 37/1407
  48216. },
  48217. form: "rabbit"
  48218. },
  48219. rabbitBack: {
  48220. height: math.unit(6, "feet"),
  48221. name: "Back",
  48222. image: {
  48223. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48224. extra: 1375/1358,
  48225. bottom: 43/1418
  48226. },
  48227. form: "rabbit"
  48228. },
  48229. },
  48230. [
  48231. {
  48232. name: "Normal",
  48233. height: math.unit(6, "feet"),
  48234. default: true,
  48235. form: "rabbit"
  48236. },
  48237. {
  48238. name: "Incubus",
  48239. height: math.unit(12, "feet"),
  48240. default: true,
  48241. form: "incubus"
  48242. },
  48243. {
  48244. name: "Demon",
  48245. height: math.unit(36, "feet"),
  48246. default: true,
  48247. form: "demon"
  48248. }
  48249. ],
  48250. {
  48251. "demon": {
  48252. name: "Demon",
  48253. default: true
  48254. },
  48255. "incubus": {
  48256. name: "Incubus",
  48257. },
  48258. "rabbit": {
  48259. name: "Rabbit"
  48260. }
  48261. }
  48262. ))
  48263. characterMakers.push(() => makeCharacter(
  48264. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48265. {
  48266. front: {
  48267. height: math.unit(7 + 5/12, "feet"),
  48268. weight: math.unit(510, "lb"),
  48269. name: "Front",
  48270. image: {
  48271. source: "./media/characters/syrup/front.svg",
  48272. extra: 932/916,
  48273. bottom: 26/958
  48274. }
  48275. },
  48276. },
  48277. [
  48278. {
  48279. name: "Normal",
  48280. height: math.unit(7 + 5/12, "feet"),
  48281. default: true
  48282. },
  48283. {
  48284. name: "Big",
  48285. height: math.unit(50, "feet")
  48286. },
  48287. {
  48288. name: "Macro",
  48289. height: math.unit(300, "feet")
  48290. },
  48291. {
  48292. name: "Megamacro",
  48293. height: math.unit(1, "mile")
  48294. },
  48295. ]
  48296. ))
  48297. characterMakers.push(() => makeCharacter(
  48298. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48299. {
  48300. front: {
  48301. height: math.unit(6 + 9/12, "feet"),
  48302. name: "Front",
  48303. image: {
  48304. source: "./media/characters/zeimne/front.svg",
  48305. extra: 1969/1806,
  48306. bottom: 53/2022
  48307. }
  48308. },
  48309. },
  48310. [
  48311. {
  48312. name: "Normal",
  48313. height: math.unit(6 + 9/12, "feet"),
  48314. default: true
  48315. },
  48316. {
  48317. name: "Giant",
  48318. height: math.unit(550, "feet")
  48319. },
  48320. {
  48321. name: "Mega",
  48322. height: math.unit(3, "miles")
  48323. },
  48324. {
  48325. name: "Giga",
  48326. height: math.unit(250, "miles")
  48327. },
  48328. {
  48329. name: "Tera",
  48330. height: math.unit(1, "AU")
  48331. },
  48332. ]
  48333. ))
  48334. characterMakers.push(() => makeCharacter(
  48335. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48336. {
  48337. front: {
  48338. height: math.unit(5 + 2/12, "feet"),
  48339. name: "Front",
  48340. image: {
  48341. source: "./media/characters/grar/front.svg",
  48342. extra: 1331/1119,
  48343. bottom: 60/1391
  48344. }
  48345. },
  48346. back: {
  48347. height: math.unit(5 + 2/12, "feet"),
  48348. name: "Back",
  48349. image: {
  48350. source: "./media/characters/grar/back.svg",
  48351. extra: 1385/1169,
  48352. bottom: 23/1408
  48353. }
  48354. },
  48355. },
  48356. [
  48357. {
  48358. name: "Normal",
  48359. height: math.unit(5 + 2/12, "feet"),
  48360. default: true
  48361. },
  48362. ]
  48363. ))
  48364. characterMakers.push(() => makeCharacter(
  48365. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48366. {
  48367. front: {
  48368. height: math.unit(13 + 7/12, "feet"),
  48369. weight: math.unit(2200, "lb"),
  48370. name: "Front",
  48371. image: {
  48372. source: "./media/characters/endraya/front.svg",
  48373. extra: 1289/1215,
  48374. bottom: 50/1339
  48375. }
  48376. },
  48377. nude: {
  48378. height: math.unit(13 + 7/12, "feet"),
  48379. weight: math.unit(2200, "lb"),
  48380. name: "Nude",
  48381. image: {
  48382. source: "./media/characters/endraya/nude.svg",
  48383. extra: 1247/1171,
  48384. bottom: 40/1287
  48385. }
  48386. },
  48387. head: {
  48388. height: math.unit(2.6, "feet"),
  48389. name: "Head",
  48390. image: {
  48391. source: "./media/characters/endraya/head.svg"
  48392. }
  48393. },
  48394. slit: {
  48395. height: math.unit(3.4, "feet"),
  48396. name: "Slit",
  48397. image: {
  48398. source: "./media/characters/endraya/slit.svg"
  48399. }
  48400. },
  48401. },
  48402. [
  48403. {
  48404. name: "Normal",
  48405. height: math.unit(13 + 7/12, "feet"),
  48406. default: true
  48407. },
  48408. {
  48409. name: "Macro",
  48410. height: math.unit(200, "feet")
  48411. },
  48412. ]
  48413. ))
  48414. characterMakers.push(() => makeCharacter(
  48415. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48416. {
  48417. front: {
  48418. height: math.unit(1.81, "meters"),
  48419. weight: math.unit(69, "kg"),
  48420. name: "Front",
  48421. image: {
  48422. source: "./media/characters/rodryana/front.svg",
  48423. extra: 2002/1921,
  48424. bottom: 53/2055
  48425. }
  48426. },
  48427. back: {
  48428. height: math.unit(1.81, "meters"),
  48429. weight: math.unit(69, "kg"),
  48430. name: "Back",
  48431. image: {
  48432. source: "./media/characters/rodryana/back.svg",
  48433. extra: 1993/1926,
  48434. bottom: 48/2041
  48435. }
  48436. },
  48437. maw: {
  48438. height: math.unit(0.19769417475, "meters"),
  48439. name: "Maw",
  48440. image: {
  48441. source: "./media/characters/rodryana/maw.svg"
  48442. }
  48443. },
  48444. slit: {
  48445. height: math.unit(0.31631067961, "meters"),
  48446. name: "Slit",
  48447. image: {
  48448. source: "./media/characters/rodryana/slit.svg"
  48449. }
  48450. },
  48451. },
  48452. [
  48453. {
  48454. name: "Normal",
  48455. height: math.unit(1.81, "meters")
  48456. },
  48457. {
  48458. name: "Mini Macro",
  48459. height: math.unit(181, "meters")
  48460. },
  48461. {
  48462. name: "Macro",
  48463. height: math.unit(452, "meters"),
  48464. default: true
  48465. },
  48466. {
  48467. name: "Mega Macro",
  48468. height: math.unit(1.375, "km")
  48469. },
  48470. {
  48471. name: "Giga Macro",
  48472. height: math.unit(13.575, "km")
  48473. },
  48474. ]
  48475. ))
  48476. characterMakers.push(() => makeCharacter(
  48477. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48478. {
  48479. front: {
  48480. height: math.unit(6, "feet"),
  48481. weight: math.unit(1000, "lb"),
  48482. name: "Front",
  48483. image: {
  48484. source: "./media/characters/asaya/front.svg",
  48485. extra: 1460/1200,
  48486. bottom: 71/1531
  48487. }
  48488. },
  48489. },
  48490. [
  48491. {
  48492. name: "Normal",
  48493. height: math.unit(8, "km"),
  48494. default: true
  48495. },
  48496. ]
  48497. ))
  48498. characterMakers.push(() => makeCharacter(
  48499. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48500. {
  48501. front: {
  48502. height: math.unit(3.5, "meters"),
  48503. name: "Front",
  48504. image: {
  48505. source: "./media/characters/sarzu-and-israz/front.svg",
  48506. extra: 1570/1558,
  48507. bottom: 150/1720
  48508. },
  48509. },
  48510. back: {
  48511. height: math.unit(3.5, "meters"),
  48512. name: "Back",
  48513. image: {
  48514. source: "./media/characters/sarzu-and-israz/back.svg",
  48515. extra: 1523/1509,
  48516. bottom: 132/1655
  48517. },
  48518. },
  48519. frontFemale: {
  48520. height: math.unit(3.5, "meters"),
  48521. name: "Front (Female)",
  48522. image: {
  48523. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48524. extra: 1570/1558,
  48525. bottom: 150/1720
  48526. },
  48527. },
  48528. frontHerm: {
  48529. height: math.unit(3.5, "meters"),
  48530. name: "Front (Herm)",
  48531. image: {
  48532. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48533. extra: 1570/1558,
  48534. bottom: 150/1720
  48535. },
  48536. },
  48537. },
  48538. [
  48539. {
  48540. name: "Normal",
  48541. height: math.unit(3.5, "meters"),
  48542. default: true,
  48543. },
  48544. {
  48545. name: "Macro",
  48546. height: math.unit(65.5, "meters"),
  48547. },
  48548. ],
  48549. ))
  48550. characterMakers.push(() => makeCharacter(
  48551. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48552. {
  48553. front: {
  48554. height: math.unit(6, "feet"),
  48555. weight: math.unit(250, "lb"),
  48556. name: "Front",
  48557. image: {
  48558. source: "./media/characters/zenimma/front.svg",
  48559. extra: 1346/1320,
  48560. bottom: 58/1404
  48561. }
  48562. },
  48563. back: {
  48564. height: math.unit(6, "feet"),
  48565. weight: math.unit(250, "lb"),
  48566. name: "Back",
  48567. image: {
  48568. source: "./media/characters/zenimma/back.svg",
  48569. extra: 1324/1308,
  48570. bottom: 44/1368
  48571. }
  48572. },
  48573. dick: {
  48574. height: math.unit(1.44, "feet"),
  48575. name: "Dick",
  48576. image: {
  48577. source: "./media/characters/zenimma/dick.svg"
  48578. }
  48579. },
  48580. },
  48581. [
  48582. {
  48583. name: "Canon Height",
  48584. height: math.unit(66, "miles"),
  48585. default: true
  48586. },
  48587. ]
  48588. ))
  48589. characterMakers.push(() => makeCharacter(
  48590. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48591. {
  48592. nude: {
  48593. height: math.unit(6, "feet"),
  48594. weight: math.unit(150, "lb"),
  48595. name: "Nude",
  48596. image: {
  48597. source: "./media/characters/shavon/nude.svg",
  48598. extra: 1242/1096,
  48599. bottom: 98/1340
  48600. }
  48601. },
  48602. dressed: {
  48603. height: math.unit(6, "feet"),
  48604. weight: math.unit(150, "lb"),
  48605. name: "Dressed",
  48606. image: {
  48607. source: "./media/characters/shavon/dressed.svg",
  48608. extra: 1242/1096,
  48609. bottom: 98/1340
  48610. }
  48611. },
  48612. },
  48613. [
  48614. {
  48615. name: "Macro",
  48616. height: math.unit(255, "feet"),
  48617. default: true
  48618. },
  48619. ]
  48620. ))
  48621. characterMakers.push(() => makeCharacter(
  48622. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48623. {
  48624. front: {
  48625. height: math.unit(6, "feet"),
  48626. name: "Front",
  48627. image: {
  48628. source: "./media/characters/steph/front.svg",
  48629. extra: 1430/1330,
  48630. bottom: 54/1484
  48631. }
  48632. },
  48633. },
  48634. [
  48635. {
  48636. name: "Normal",
  48637. height: math.unit(6, "feet"),
  48638. default: true
  48639. },
  48640. ]
  48641. ))
  48642. characterMakers.push(() => makeCharacter(
  48643. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48644. {
  48645. front: {
  48646. height: math.unit(9, "feet"),
  48647. weight: math.unit(400, "lb"),
  48648. name: "Front",
  48649. image: {
  48650. source: "./media/characters/kil'aman/front.svg",
  48651. extra: 1210/1159,
  48652. bottom: 109/1319
  48653. }
  48654. },
  48655. head: {
  48656. height: math.unit(2.14, "feet"),
  48657. name: "Head",
  48658. image: {
  48659. source: "./media/characters/kil'aman/head.svg"
  48660. }
  48661. },
  48662. maw: {
  48663. height: math.unit(1.21, "feet"),
  48664. name: "Maw",
  48665. image: {
  48666. source: "./media/characters/kil'aman/maw.svg"
  48667. }
  48668. },
  48669. foot: {
  48670. height: math.unit(1.7, "feet"),
  48671. name: "Foot",
  48672. image: {
  48673. source: "./media/characters/kil'aman/foot.svg"
  48674. }
  48675. },
  48676. dick: {
  48677. height: math.unit(2.1, "feet"),
  48678. name: "Dick",
  48679. image: {
  48680. source: "./media/characters/kil'aman/dick.svg"
  48681. }
  48682. },
  48683. },
  48684. [
  48685. {
  48686. name: "Normal",
  48687. height: math.unit(9, "feet")
  48688. },
  48689. {
  48690. name: "Canon Height",
  48691. height: math.unit(10, "miles"),
  48692. default: true
  48693. },
  48694. {
  48695. name: "Maximum",
  48696. height: math.unit(6e9, "miles")
  48697. },
  48698. ]
  48699. ))
  48700. characterMakers.push(() => makeCharacter(
  48701. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48702. {
  48703. front: {
  48704. height: math.unit(90, "feet"),
  48705. weight: math.unit(675000, "lb"),
  48706. name: "Front",
  48707. image: {
  48708. source: "./media/characters/qadan/front.svg",
  48709. extra: 1012/1004,
  48710. bottom: 78/1090
  48711. }
  48712. },
  48713. back: {
  48714. height: math.unit(90, "feet"),
  48715. weight: math.unit(675000, "lb"),
  48716. name: "Back",
  48717. image: {
  48718. source: "./media/characters/qadan/back.svg",
  48719. extra: 1042/1031,
  48720. bottom: 55/1097
  48721. }
  48722. },
  48723. armored: {
  48724. height: math.unit(90, "feet"),
  48725. weight: math.unit(675000, "lb"),
  48726. name: "Armored",
  48727. image: {
  48728. source: "./media/characters/qadan/armored.svg",
  48729. extra: 1047/1037,
  48730. bottom: 48/1095
  48731. }
  48732. },
  48733. },
  48734. [
  48735. {
  48736. name: "Normal",
  48737. height: math.unit(90, "feet"),
  48738. default: true
  48739. },
  48740. ]
  48741. ))
  48742. characterMakers.push(() => makeCharacter(
  48743. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48744. {
  48745. front: {
  48746. height: math.unit(6, "feet"),
  48747. weight: math.unit(225, "lb"),
  48748. name: "Front",
  48749. image: {
  48750. source: "./media/characters/brooke/front.svg",
  48751. extra: 1050/1010,
  48752. bottom: 66/1116
  48753. }
  48754. },
  48755. back: {
  48756. height: math.unit(6, "feet"),
  48757. weight: math.unit(225, "lb"),
  48758. name: "Back",
  48759. image: {
  48760. source: "./media/characters/brooke/back.svg",
  48761. extra: 1053/1013,
  48762. bottom: 41/1094
  48763. }
  48764. },
  48765. dressed: {
  48766. height: math.unit(6, "feet"),
  48767. weight: math.unit(225, "lb"),
  48768. name: "Dressed",
  48769. image: {
  48770. source: "./media/characters/brooke/dressed.svg",
  48771. extra: 1050/1010,
  48772. bottom: 66/1116
  48773. }
  48774. },
  48775. },
  48776. [
  48777. {
  48778. name: "Canon Height",
  48779. height: math.unit(500, "miles"),
  48780. default: true
  48781. },
  48782. ]
  48783. ))
  48784. characterMakers.push(() => makeCharacter(
  48785. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48786. {
  48787. front: {
  48788. height: math.unit(6 + 2/12, "feet"),
  48789. weight: math.unit(210, "lb"),
  48790. name: "Front",
  48791. image: {
  48792. source: "./media/characters/wubs/front.svg",
  48793. extra: 1345/1325,
  48794. bottom: 70/1415
  48795. }
  48796. },
  48797. back: {
  48798. height: math.unit(6 + 2/12, "feet"),
  48799. weight: math.unit(210, "lb"),
  48800. name: "Back",
  48801. image: {
  48802. source: "./media/characters/wubs/back.svg",
  48803. extra: 1296/1275,
  48804. bottom: 58/1354
  48805. }
  48806. },
  48807. },
  48808. [
  48809. {
  48810. name: "Normal",
  48811. height: math.unit(6 + 2/12, "feet"),
  48812. default: true
  48813. },
  48814. {
  48815. name: "Macro",
  48816. height: math.unit(1000, "feet")
  48817. },
  48818. {
  48819. name: "Megamacro",
  48820. height: math.unit(1, "mile")
  48821. },
  48822. ]
  48823. ))
  48824. characterMakers.push(() => makeCharacter(
  48825. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48826. {
  48827. front: {
  48828. height: math.unit(4, "feet"),
  48829. weight: math.unit(120, "lb"),
  48830. name: "Front",
  48831. image: {
  48832. source: "./media/characters/blue/front.svg",
  48833. extra: 1636/1525,
  48834. bottom: 43/1679
  48835. }
  48836. },
  48837. back: {
  48838. height: math.unit(4, "feet"),
  48839. weight: math.unit(120, "lb"),
  48840. name: "Back",
  48841. image: {
  48842. source: "./media/characters/blue/back.svg",
  48843. extra: 1660/1560,
  48844. bottom: 57/1717
  48845. }
  48846. },
  48847. paws: {
  48848. height: math.unit(0.826, "feet"),
  48849. name: "Paws",
  48850. image: {
  48851. source: "./media/characters/blue/paws.svg"
  48852. }
  48853. },
  48854. },
  48855. [
  48856. {
  48857. name: "Micro",
  48858. height: math.unit(3, "inches")
  48859. },
  48860. {
  48861. name: "Normal",
  48862. height: math.unit(4, "feet"),
  48863. default: true
  48864. },
  48865. {
  48866. name: "Femenine Form",
  48867. height: math.unit(14, "feet")
  48868. },
  48869. {
  48870. name: "Werebat Form",
  48871. height: math.unit(18, "feet")
  48872. },
  48873. ]
  48874. ))
  48875. characterMakers.push(() => makeCharacter(
  48876. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48877. {
  48878. female: {
  48879. height: math.unit(7 + 4/12, "feet"),
  48880. weight: math.unit(243, "lb"),
  48881. name: "Female",
  48882. image: {
  48883. source: "./media/characters/kaya/female.svg",
  48884. extra: 975/898,
  48885. bottom: 34/1009
  48886. }
  48887. },
  48888. herm: {
  48889. height: math.unit(7 + 4/12, "feet"),
  48890. weight: math.unit(243, "lb"),
  48891. name: "Herm",
  48892. image: {
  48893. source: "./media/characters/kaya/herm.svg",
  48894. extra: 975/898,
  48895. bottom: 34/1009
  48896. }
  48897. },
  48898. },
  48899. [
  48900. {
  48901. name: "Normal",
  48902. height: math.unit(7 + 4/12, "feet"),
  48903. default: true
  48904. },
  48905. ]
  48906. ))
  48907. characterMakers.push(() => makeCharacter(
  48908. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48909. {
  48910. female: {
  48911. height: math.unit(9 + 4/12, "feet"),
  48912. weight: math.unit(398, "lb"),
  48913. name: "Female",
  48914. image: {
  48915. source: "./media/characters/kassandra/female.svg",
  48916. extra: 908/839,
  48917. bottom: 61/969
  48918. }
  48919. },
  48920. intersex: {
  48921. height: math.unit(9 + 4/12, "feet"),
  48922. weight: math.unit(398, "lb"),
  48923. name: "Intersex",
  48924. image: {
  48925. source: "./media/characters/kassandra/intersex.svg",
  48926. extra: 908/839,
  48927. bottom: 61/969
  48928. }
  48929. },
  48930. },
  48931. [
  48932. {
  48933. name: "Normal",
  48934. height: math.unit(9 + 4/12, "feet"),
  48935. default: true
  48936. },
  48937. ]
  48938. ))
  48939. characterMakers.push(() => makeCharacter(
  48940. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48941. {
  48942. front: {
  48943. height: math.unit(3, "meters"),
  48944. name: "Front",
  48945. image: {
  48946. source: "./media/characters/amy/front.svg",
  48947. extra: 1380/1343,
  48948. bottom: 70/1450
  48949. }
  48950. },
  48951. back: {
  48952. height: math.unit(3, "meters"),
  48953. name: "Back",
  48954. image: {
  48955. source: "./media/characters/amy/back.svg",
  48956. extra: 1380/1347,
  48957. bottom: 66/1446
  48958. }
  48959. },
  48960. },
  48961. [
  48962. {
  48963. name: "Normal",
  48964. height: math.unit(3, "meters"),
  48965. default: true
  48966. },
  48967. ]
  48968. ))
  48969. characterMakers.push(() => makeCharacter(
  48970. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48971. {
  48972. side: {
  48973. height: math.unit(47, "cm"),
  48974. weight: math.unit(10.8, "kg"),
  48975. name: "Side",
  48976. image: {
  48977. source: "./media/characters/alphaschakal/side.svg",
  48978. extra: 1058/568,
  48979. bottom: 62/1120
  48980. }
  48981. },
  48982. back: {
  48983. height: math.unit(78, "cm"),
  48984. weight: math.unit(10.8, "kg"),
  48985. name: "Back",
  48986. image: {
  48987. source: "./media/characters/alphaschakal/back.svg",
  48988. extra: 1102/942,
  48989. bottom: 185/1287
  48990. }
  48991. },
  48992. head: {
  48993. height: math.unit(28, "cm"),
  48994. name: "Head",
  48995. image: {
  48996. source: "./media/characters/alphaschakal/head.svg",
  48997. extra: 696/508,
  48998. bottom: 0/696
  48999. }
  49000. },
  49001. paw: {
  49002. height: math.unit(16, "cm"),
  49003. name: "Paw",
  49004. image: {
  49005. source: "./media/characters/alphaschakal/paw.svg"
  49006. }
  49007. },
  49008. },
  49009. [
  49010. {
  49011. name: "Normal",
  49012. height: math.unit(47, "cm"),
  49013. default: true
  49014. },
  49015. {
  49016. name: "Macro",
  49017. height: math.unit(340, "cm")
  49018. },
  49019. ]
  49020. ))
  49021. characterMakers.push(() => makeCharacter(
  49022. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49023. {
  49024. front: {
  49025. height: math.unit(36, "earths"),
  49026. name: "Front",
  49027. image: {
  49028. source: "./media/characters/ecobyss/front.svg",
  49029. extra: 1282/1215,
  49030. bottom: 11/1293
  49031. }
  49032. },
  49033. back: {
  49034. height: math.unit(36, "earths"),
  49035. name: "Back",
  49036. image: {
  49037. source: "./media/characters/ecobyss/back.svg",
  49038. extra: 1291/1222,
  49039. bottom: 8/1299
  49040. }
  49041. },
  49042. },
  49043. [
  49044. {
  49045. name: "Normal",
  49046. height: math.unit(36, "earths"),
  49047. default: true
  49048. },
  49049. ]
  49050. ))
  49051. characterMakers.push(() => makeCharacter(
  49052. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49053. {
  49054. front: {
  49055. height: math.unit(12, "feet"),
  49056. name: "Front",
  49057. image: {
  49058. source: "./media/characters/vasuk/front.svg",
  49059. extra: 1326/1207,
  49060. bottom: 64/1390
  49061. }
  49062. },
  49063. },
  49064. [
  49065. {
  49066. name: "Normal",
  49067. height: math.unit(12, "feet"),
  49068. default: true
  49069. },
  49070. ]
  49071. ))
  49072. characterMakers.push(() => makeCharacter(
  49073. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49074. {
  49075. side: {
  49076. height: math.unit(100, "feet"),
  49077. name: "Side",
  49078. image: {
  49079. source: "./media/characters/linneaus/side.svg",
  49080. extra: 987/807,
  49081. bottom: 47/1034
  49082. }
  49083. },
  49084. },
  49085. [
  49086. {
  49087. name: "Macro",
  49088. height: math.unit(100, "feet"),
  49089. default: true
  49090. },
  49091. ]
  49092. ))
  49093. characterMakers.push(() => makeCharacter(
  49094. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49095. {
  49096. front: {
  49097. height: math.unit(8, "feet"),
  49098. weight: math.unit(1200, "lb"),
  49099. name: "Front",
  49100. image: {
  49101. source: "./media/characters/nyterious-daligdig/front.svg",
  49102. extra: 1284/1094,
  49103. bottom: 84/1368
  49104. }
  49105. },
  49106. back: {
  49107. height: math.unit(8, "feet"),
  49108. weight: math.unit(1200, "lb"),
  49109. name: "Back",
  49110. image: {
  49111. source: "./media/characters/nyterious-daligdig/back.svg",
  49112. extra: 1301/1121,
  49113. bottom: 129/1430
  49114. }
  49115. },
  49116. mouth: {
  49117. height: math.unit(1.464, "feet"),
  49118. name: "Mouth",
  49119. image: {
  49120. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49121. }
  49122. },
  49123. },
  49124. [
  49125. {
  49126. name: "Small",
  49127. height: math.unit(8, "feet"),
  49128. default: true
  49129. },
  49130. {
  49131. name: "Normal",
  49132. height: math.unit(15, "feet")
  49133. },
  49134. {
  49135. name: "Macro",
  49136. height: math.unit(90, "feet")
  49137. },
  49138. ]
  49139. ))
  49140. characterMakers.push(() => makeCharacter(
  49141. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49142. {
  49143. front: {
  49144. height: math.unit(7 + 4/12, "feet"),
  49145. weight: math.unit(252, "lb"),
  49146. name: "Front",
  49147. image: {
  49148. source: "./media/characters/bandel/front.svg",
  49149. extra: 1946/1775,
  49150. bottom: 26/1972
  49151. }
  49152. },
  49153. back: {
  49154. height: math.unit(7 + 4/12, "feet"),
  49155. weight: math.unit(252, "lb"),
  49156. name: "Back",
  49157. image: {
  49158. source: "./media/characters/bandel/back.svg",
  49159. extra: 1940/1770,
  49160. bottom: 25/1965
  49161. }
  49162. },
  49163. maw: {
  49164. height: math.unit(2.15, "feet"),
  49165. name: "Maw",
  49166. image: {
  49167. source: "./media/characters/bandel/maw.svg"
  49168. }
  49169. },
  49170. stomach: {
  49171. height: math.unit(1.95, "feet"),
  49172. name: "Stomach",
  49173. image: {
  49174. source: "./media/characters/bandel/stomach.svg"
  49175. }
  49176. },
  49177. },
  49178. [
  49179. {
  49180. name: "Normal",
  49181. height: math.unit(7 + 4/12, "feet"),
  49182. default: true
  49183. },
  49184. ]
  49185. ))
  49186. characterMakers.push(() => makeCharacter(
  49187. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49188. {
  49189. front: {
  49190. height: math.unit(10 + 5/12, "feet"),
  49191. weight: math.unit(773.5, "kg"),
  49192. name: "Front",
  49193. image: {
  49194. source: "./media/characters/zed/front.svg",
  49195. extra: 987/941,
  49196. bottom: 52/1039
  49197. }
  49198. },
  49199. },
  49200. [
  49201. {
  49202. name: "Short",
  49203. height: math.unit(5 + 4/12, "feet")
  49204. },
  49205. {
  49206. name: "Average",
  49207. height: math.unit(10 + 5/12, "feet"),
  49208. default: true
  49209. },
  49210. {
  49211. name: "Mini-Macro",
  49212. height: math.unit(24 + 9/12, "feet")
  49213. },
  49214. {
  49215. name: "Macro",
  49216. height: math.unit(249, "feet")
  49217. },
  49218. {
  49219. name: "Mega-Macro",
  49220. height: math.unit(12490, "feet")
  49221. },
  49222. {
  49223. name: "Giga-Macro",
  49224. height: math.unit(24.9, "miles")
  49225. },
  49226. {
  49227. name: "Tera-Macro",
  49228. height: math.unit(24900, "miles")
  49229. },
  49230. {
  49231. name: "Cosmic Scale",
  49232. height: math.unit(38.9, "lightyears")
  49233. },
  49234. {
  49235. name: "Universal Scale",
  49236. height: math.unit(138e12, "lightyears")
  49237. },
  49238. ]
  49239. ))
  49240. characterMakers.push(() => makeCharacter(
  49241. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49242. {
  49243. front: {
  49244. height: math.unit(1561, "inches"),
  49245. name: "Front",
  49246. image: {
  49247. source: "./media/characters/ivan/front.svg",
  49248. extra: 1126/1071,
  49249. bottom: 26/1152
  49250. }
  49251. },
  49252. back: {
  49253. height: math.unit(1561, "inches"),
  49254. name: "Back",
  49255. image: {
  49256. source: "./media/characters/ivan/back.svg",
  49257. extra: 1134/1079,
  49258. bottom: 30/1164
  49259. }
  49260. },
  49261. },
  49262. [
  49263. {
  49264. name: "Normal",
  49265. height: math.unit(1561, "inches"),
  49266. default: true
  49267. },
  49268. ]
  49269. ))
  49270. characterMakers.push(() => makeCharacter(
  49271. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49272. {
  49273. front: {
  49274. height: math.unit(5 + 7/12, "feet"),
  49275. weight: math.unit(150, "lb"),
  49276. name: "Front",
  49277. image: {
  49278. source: "./media/characters/robin-arctic-hare/front.svg",
  49279. extra: 1148/974,
  49280. bottom: 20/1168
  49281. }
  49282. },
  49283. },
  49284. [
  49285. {
  49286. name: "Normal",
  49287. height: math.unit(5 + 7/12, "feet"),
  49288. default: true
  49289. },
  49290. ]
  49291. ))
  49292. characterMakers.push(() => makeCharacter(
  49293. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49294. {
  49295. side: {
  49296. height: math.unit(5, "feet"),
  49297. name: "Side",
  49298. image: {
  49299. source: "./media/characters/birch/side.svg",
  49300. extra: 985/796,
  49301. bottom: 111/1096
  49302. }
  49303. },
  49304. },
  49305. [
  49306. {
  49307. name: "Normal",
  49308. height: math.unit(5, "feet"),
  49309. default: true
  49310. },
  49311. ]
  49312. ))
  49313. characterMakers.push(() => makeCharacter(
  49314. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49315. {
  49316. front: {
  49317. height: math.unit(4, "feet"),
  49318. name: "Front",
  49319. image: {
  49320. source: "./media/characters/rasp/front.svg",
  49321. extra: 561/478,
  49322. bottom: 74/635
  49323. }
  49324. },
  49325. },
  49326. [
  49327. {
  49328. name: "Normal",
  49329. height: math.unit(4, "feet"),
  49330. default: true
  49331. },
  49332. ]
  49333. ))
  49334. characterMakers.push(() => makeCharacter(
  49335. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49336. {
  49337. front: {
  49338. height: math.unit(4 + 6/12, "feet"),
  49339. name: "Front",
  49340. image: {
  49341. source: "./media/characters/agatha/front.svg",
  49342. extra: 947/933,
  49343. bottom: 42/989
  49344. }
  49345. },
  49346. back: {
  49347. height: math.unit(4 + 6/12, "feet"),
  49348. name: "Back",
  49349. image: {
  49350. source: "./media/characters/agatha/back.svg",
  49351. extra: 935/922,
  49352. bottom: 48/983
  49353. }
  49354. },
  49355. },
  49356. [
  49357. {
  49358. name: "Normal",
  49359. height: math.unit(4 + 6 /12, "feet"),
  49360. default: true
  49361. },
  49362. {
  49363. name: "Max Size",
  49364. height: math.unit(500, "feet")
  49365. },
  49366. ]
  49367. ))
  49368. characterMakers.push(() => makeCharacter(
  49369. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49370. {
  49371. side: {
  49372. height: math.unit(30, "feet"),
  49373. name: "Side",
  49374. image: {
  49375. source: "./media/characters/roggy/side.svg",
  49376. extra: 909/643,
  49377. bottom: 63/972
  49378. }
  49379. },
  49380. lounging: {
  49381. height: math.unit(20, "feet"),
  49382. name: "Lounging",
  49383. image: {
  49384. source: "./media/characters/roggy/lounging.svg",
  49385. extra: 643/479,
  49386. bottom: 145/788
  49387. }
  49388. },
  49389. handpaw: {
  49390. height: math.unit(13.1, "feet"),
  49391. name: "Handpaw",
  49392. image: {
  49393. source: "./media/characters/roggy/handpaw.svg"
  49394. }
  49395. },
  49396. footpaw: {
  49397. height: math.unit(15.8, "feet"),
  49398. name: "Footpaw",
  49399. image: {
  49400. source: "./media/characters/roggy/footpaw.svg"
  49401. }
  49402. },
  49403. },
  49404. [
  49405. {
  49406. name: "Menacing",
  49407. height: math.unit(30, "feet"),
  49408. default: true
  49409. },
  49410. ]
  49411. ))
  49412. characterMakers.push(() => makeCharacter(
  49413. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49414. {
  49415. front: {
  49416. height: math.unit(5 + 7/12, "feet"),
  49417. weight: math.unit(135, "lb"),
  49418. name: "Front",
  49419. image: {
  49420. source: "./media/characters/naomi/front.svg",
  49421. extra: 1209/1154,
  49422. bottom: 129/1338
  49423. }
  49424. },
  49425. back: {
  49426. height: math.unit(5 + 7/12, "feet"),
  49427. weight: math.unit(135, "lb"),
  49428. name: "Back",
  49429. image: {
  49430. source: "./media/characters/naomi/back.svg",
  49431. extra: 1252/1190,
  49432. bottom: 23/1275
  49433. }
  49434. },
  49435. },
  49436. [
  49437. {
  49438. name: "Normal",
  49439. height: math.unit(5 + 7 /12, "feet"),
  49440. default: true
  49441. },
  49442. ]
  49443. ))
  49444. characterMakers.push(() => makeCharacter(
  49445. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49446. {
  49447. side: {
  49448. height: math.unit(35, "meters"),
  49449. name: "Side",
  49450. image: {
  49451. source: "./media/characters/kimpi/side.svg",
  49452. extra: 419/382,
  49453. bottom: 63/482
  49454. }
  49455. },
  49456. hand: {
  49457. height: math.unit(8.96, "meters"),
  49458. name: "Hand",
  49459. image: {
  49460. source: "./media/characters/kimpi/hand.svg"
  49461. }
  49462. },
  49463. },
  49464. [
  49465. {
  49466. name: "Normal",
  49467. height: math.unit(35, "meters"),
  49468. default: true
  49469. },
  49470. ]
  49471. ))
  49472. characterMakers.push(() => makeCharacter(
  49473. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49474. {
  49475. front: {
  49476. height: math.unit(4 + 4/12, "feet"),
  49477. name: "Front",
  49478. image: {
  49479. source: "./media/characters/pepper-purrloin/front.svg",
  49480. extra: 1141/1024,
  49481. bottom: 21/1162
  49482. }
  49483. },
  49484. },
  49485. [
  49486. {
  49487. name: "Normal",
  49488. height: math.unit(4 + 4/12, "feet"),
  49489. default: true
  49490. },
  49491. ]
  49492. ))
  49493. characterMakers.push(() => makeCharacter(
  49494. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49495. {
  49496. front: {
  49497. height: math.unit(6 + 2/12, "feet"),
  49498. name: "Front",
  49499. image: {
  49500. source: "./media/characters/raphael/front.svg",
  49501. extra: 1101/962,
  49502. bottom: 59/1160
  49503. }
  49504. },
  49505. },
  49506. [
  49507. {
  49508. name: "Normal",
  49509. height: math.unit(6 + 2/12, "feet"),
  49510. default: true
  49511. },
  49512. ]
  49513. ))
  49514. characterMakers.push(() => makeCharacter(
  49515. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49516. {
  49517. front: {
  49518. height: math.unit(6, "feet"),
  49519. weight: math.unit(150, "lb"),
  49520. name: "Front",
  49521. image: {
  49522. source: "./media/characters/victor-williams/front.svg",
  49523. extra: 1894/1825,
  49524. bottom: 67/1961
  49525. }
  49526. },
  49527. },
  49528. [
  49529. {
  49530. name: "Normal",
  49531. height: math.unit(6, "feet"),
  49532. default: true
  49533. },
  49534. ]
  49535. ))
  49536. characterMakers.push(() => makeCharacter(
  49537. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49538. {
  49539. front: {
  49540. height: math.unit(5 + 8/12, "feet"),
  49541. weight: math.unit(150, "lb"),
  49542. name: "Front",
  49543. image: {
  49544. source: "./media/characters/rachel/front.svg",
  49545. extra: 1902/1787,
  49546. bottom: 46/1948
  49547. }
  49548. },
  49549. },
  49550. [
  49551. {
  49552. name: "Base Height",
  49553. height: math.unit(5 + 8/12, "feet"),
  49554. default: true
  49555. },
  49556. {
  49557. name: "Macro",
  49558. height: math.unit(200, "feet")
  49559. },
  49560. {
  49561. name: "Mega Macro",
  49562. height: math.unit(1, "mile")
  49563. },
  49564. {
  49565. name: "Giga Macro",
  49566. height: math.unit(1500, "miles")
  49567. },
  49568. {
  49569. name: "Tera Macro",
  49570. height: math.unit(8000, "miles")
  49571. },
  49572. {
  49573. name: "Tera Macro+",
  49574. height: math.unit(2e5, "miles")
  49575. },
  49576. ]
  49577. ))
  49578. characterMakers.push(() => makeCharacter(
  49579. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49580. {
  49581. front: {
  49582. height: math.unit(6.5, "feet"),
  49583. name: "Front",
  49584. image: {
  49585. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49586. extra: 860/819,
  49587. bottom: 307/1167
  49588. }
  49589. },
  49590. back: {
  49591. height: math.unit(6.5, "feet"),
  49592. name: "Back",
  49593. image: {
  49594. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49595. extra: 880/837,
  49596. bottom: 395/1275
  49597. }
  49598. },
  49599. sleeping: {
  49600. height: math.unit(2.79, "feet"),
  49601. name: "Sleeping",
  49602. image: {
  49603. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49604. extra: 465/383,
  49605. bottom: 263/728
  49606. }
  49607. },
  49608. maw: {
  49609. height: math.unit(2.52, "feet"),
  49610. name: "Maw",
  49611. image: {
  49612. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49613. }
  49614. },
  49615. },
  49616. [
  49617. {
  49618. name: "Normal",
  49619. height: math.unit(6.5, "feet"),
  49620. default: true
  49621. },
  49622. ]
  49623. ))
  49624. characterMakers.push(() => makeCharacter(
  49625. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49626. {
  49627. front: {
  49628. height: math.unit(5, "feet"),
  49629. name: "Front",
  49630. image: {
  49631. source: "./media/characters/nova-nerium/front.svg",
  49632. extra: 1548/1392,
  49633. bottom: 374/1922
  49634. }
  49635. },
  49636. back: {
  49637. height: math.unit(5, "feet"),
  49638. name: "Back",
  49639. image: {
  49640. source: "./media/characters/nova-nerium/back.svg",
  49641. extra: 1658/1468,
  49642. bottom: 257/1915
  49643. }
  49644. },
  49645. },
  49646. [
  49647. {
  49648. name: "Normal",
  49649. height: math.unit(5, "feet"),
  49650. default: true
  49651. },
  49652. ]
  49653. ))
  49654. characterMakers.push(() => makeCharacter(
  49655. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49656. {
  49657. front: {
  49658. height: math.unit(5 + 4/12, "feet"),
  49659. name: "Front",
  49660. image: {
  49661. source: "./media/characters/ashe-pyriph/front.svg",
  49662. extra: 1935/1747,
  49663. bottom: 60/1995
  49664. }
  49665. },
  49666. },
  49667. [
  49668. {
  49669. name: "Normal",
  49670. height: math.unit(5 + 4/12, "feet"),
  49671. default: true
  49672. },
  49673. ]
  49674. ))
  49675. characterMakers.push(() => makeCharacter(
  49676. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49677. {
  49678. front: {
  49679. height: math.unit(8.7, "feet"),
  49680. name: "Front",
  49681. image: {
  49682. source: "./media/characters/flicker-wisp/front.svg",
  49683. extra: 1835/1613,
  49684. bottom: 449/2284
  49685. }
  49686. },
  49687. side: {
  49688. height: math.unit(8.7, "feet"),
  49689. name: "Side",
  49690. image: {
  49691. source: "./media/characters/flicker-wisp/side.svg",
  49692. extra: 1841/1642,
  49693. bottom: 336/2177
  49694. },
  49695. default: true
  49696. },
  49697. maw: {
  49698. height: math.unit(3.35, "feet"),
  49699. name: "Maw",
  49700. image: {
  49701. source: "./media/characters/flicker-wisp/maw.svg",
  49702. extra: 2338/1506,
  49703. bottom: 0/2338
  49704. }
  49705. },
  49706. ovipositor: {
  49707. height: math.unit(4.95, "feet"),
  49708. name: "Ovipositor",
  49709. image: {
  49710. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49711. }
  49712. },
  49713. egg: {
  49714. height: math.unit(0.385, "feet"),
  49715. weight: math.unit(2, "lb"),
  49716. name: "Egg",
  49717. image: {
  49718. source: "./media/characters/flicker-wisp/egg.svg"
  49719. }
  49720. },
  49721. },
  49722. [
  49723. {
  49724. name: "Normal",
  49725. height: math.unit(8.7, "feet"),
  49726. default: true
  49727. },
  49728. ]
  49729. ))
  49730. characterMakers.push(() => makeCharacter(
  49731. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49732. {
  49733. side: {
  49734. height: math.unit(11, "feet"),
  49735. name: "Side",
  49736. image: {
  49737. source: "./media/characters/faefnul/side.svg",
  49738. extra: 1100/1007,
  49739. bottom: 0/1100
  49740. }
  49741. },
  49742. },
  49743. [
  49744. {
  49745. name: "Normal",
  49746. height: math.unit(11, "feet"),
  49747. default: true
  49748. },
  49749. ]
  49750. ))
  49751. characterMakers.push(() => makeCharacter(
  49752. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49753. {
  49754. front: {
  49755. height: math.unit(6 + 2/12, "feet"),
  49756. name: "Front",
  49757. image: {
  49758. source: "./media/characters/shady/front.svg",
  49759. extra: 502/461,
  49760. bottom: 9/511
  49761. }
  49762. },
  49763. kneeling: {
  49764. height: math.unit(4.6, "feet"),
  49765. name: "Kneeling",
  49766. image: {
  49767. source: "./media/characters/shady/kneeling.svg",
  49768. extra: 1328/1219,
  49769. bottom: 117/1445
  49770. }
  49771. },
  49772. maw: {
  49773. height: math.unit(2, "feet"),
  49774. name: "Maw",
  49775. image: {
  49776. source: "./media/characters/shady/maw.svg"
  49777. }
  49778. },
  49779. },
  49780. [
  49781. {
  49782. name: "Nano",
  49783. height: math.unit(1, "mm")
  49784. },
  49785. {
  49786. name: "Micro",
  49787. height: math.unit(12, "mm")
  49788. },
  49789. {
  49790. name: "Tiny",
  49791. height: math.unit(3, "inches")
  49792. },
  49793. {
  49794. name: "Normal",
  49795. height: math.unit(6 + 2/12, "feet"),
  49796. default: true
  49797. },
  49798. {
  49799. name: "Big",
  49800. height: math.unit(15, "feet")
  49801. },
  49802. {
  49803. name: "Macro",
  49804. height: math.unit(150, "feet")
  49805. },
  49806. {
  49807. name: "Titanic",
  49808. height: math.unit(500, "feet")
  49809. },
  49810. ]
  49811. ))
  49812. characterMakers.push(() => makeCharacter(
  49813. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49814. {
  49815. front: {
  49816. height: math.unit(12, "feet"),
  49817. name: "Front",
  49818. image: {
  49819. source: "./media/characters/fenrir/front.svg",
  49820. extra: 968/875,
  49821. bottom: 22/990
  49822. }
  49823. },
  49824. },
  49825. [
  49826. {
  49827. name: "Big",
  49828. height: math.unit(12, "feet"),
  49829. default: true
  49830. },
  49831. ]
  49832. ))
  49833. characterMakers.push(() => makeCharacter(
  49834. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49835. {
  49836. front: {
  49837. height: math.unit(5 + 4/12, "feet"),
  49838. name: "Front",
  49839. image: {
  49840. source: "./media/characters/makar/front.svg",
  49841. extra: 1181/1112,
  49842. bottom: 78/1259
  49843. }
  49844. },
  49845. },
  49846. [
  49847. {
  49848. name: "Normal",
  49849. height: math.unit(5 + 4/12, "feet"),
  49850. default: true
  49851. },
  49852. ]
  49853. ))
  49854. characterMakers.push(() => makeCharacter(
  49855. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49856. {
  49857. front: {
  49858. height: math.unit(5 + 7/12, "feet"),
  49859. name: "Front",
  49860. image: {
  49861. source: "./media/characters/callow/front.svg",
  49862. extra: 1482/1304,
  49863. bottom: 23/1505
  49864. }
  49865. },
  49866. back: {
  49867. height: math.unit(5 + 7/12, "feet"),
  49868. name: "Back",
  49869. image: {
  49870. source: "./media/characters/callow/back.svg",
  49871. extra: 1484/1296,
  49872. bottom: 25/1509
  49873. }
  49874. },
  49875. },
  49876. [
  49877. {
  49878. name: "Micro",
  49879. height: math.unit(3, "inches"),
  49880. default: true
  49881. },
  49882. {
  49883. name: "Normal",
  49884. height: math.unit(5 + 7/12, "feet")
  49885. },
  49886. ]
  49887. ))
  49888. characterMakers.push(() => makeCharacter(
  49889. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49890. {
  49891. front: {
  49892. height: math.unit(6 + 2/12, "feet"),
  49893. name: "Front",
  49894. image: {
  49895. source: "./media/characters/natel/front.svg",
  49896. extra: 1833/1692,
  49897. bottom: 166/1999
  49898. }
  49899. },
  49900. },
  49901. [
  49902. {
  49903. name: "Normal",
  49904. height: math.unit(6 + 2/12, "feet"),
  49905. default: true
  49906. },
  49907. ]
  49908. ))
  49909. characterMakers.push(() => makeCharacter(
  49910. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49911. {
  49912. front: {
  49913. height: math.unit(1.75, "meters"),
  49914. name: "Front",
  49915. image: {
  49916. source: "./media/characters/misu/front.svg",
  49917. extra: 1690/1558,
  49918. bottom: 234/1924
  49919. }
  49920. },
  49921. back: {
  49922. height: math.unit(1.75, "meters"),
  49923. name: "Back",
  49924. image: {
  49925. source: "./media/characters/misu/back.svg",
  49926. extra: 1762/1618,
  49927. bottom: 146/1908
  49928. }
  49929. },
  49930. frontNude: {
  49931. height: math.unit(1.75, "meters"),
  49932. name: "Front (Nude)",
  49933. image: {
  49934. source: "./media/characters/misu/front-nude.svg",
  49935. extra: 1690/1558,
  49936. bottom: 234/1924
  49937. }
  49938. },
  49939. backNude: {
  49940. height: math.unit(1.75, "meters"),
  49941. name: "Back (Nude)",
  49942. image: {
  49943. source: "./media/characters/misu/back-nude.svg",
  49944. extra: 1762/1618,
  49945. bottom: 146/1908
  49946. }
  49947. },
  49948. frontErect: {
  49949. height: math.unit(1.75, "meters"),
  49950. name: "Front (Erect)",
  49951. image: {
  49952. source: "./media/characters/misu/front-erect.svg",
  49953. extra: 1690/1558,
  49954. bottom: 234/1924
  49955. }
  49956. },
  49957. maw: {
  49958. height: math.unit(0.47, "meters"),
  49959. name: "Maw",
  49960. image: {
  49961. source: "./media/characters/misu/maw.svg"
  49962. }
  49963. },
  49964. head: {
  49965. height: math.unit(0.35, "meters"),
  49966. name: "Head",
  49967. image: {
  49968. source: "./media/characters/misu/head.svg"
  49969. }
  49970. },
  49971. rear: {
  49972. height: math.unit(0.47, "meters"),
  49973. name: "Rear",
  49974. image: {
  49975. source: "./media/characters/misu/rear.svg"
  49976. }
  49977. },
  49978. },
  49979. [
  49980. {
  49981. name: "Normal",
  49982. height: math.unit(1.75, "meters")
  49983. },
  49984. {
  49985. name: "Not good for the people",
  49986. height: math.unit(42, "meters")
  49987. },
  49988. {
  49989. name: "Not good for the neighborhood",
  49990. height: math.unit(135, "meters")
  49991. },
  49992. {
  49993. name: "Bit bigger problem",
  49994. height: math.unit(380, "meters"),
  49995. default: true
  49996. },
  49997. {
  49998. name: "Not good for the city",
  49999. height: math.unit(1.5, "km")
  50000. },
  50001. {
  50002. name: "Not good for the county",
  50003. height: math.unit(5.5, "km")
  50004. },
  50005. {
  50006. name: "Not good for the state",
  50007. height: math.unit(25, "km")
  50008. },
  50009. {
  50010. name: "Not good for the country",
  50011. height: math.unit(125, "km")
  50012. },
  50013. {
  50014. name: "Not good for the continent",
  50015. height: math.unit(2100, "km")
  50016. },
  50017. {
  50018. name: "Not good for the planet",
  50019. height: math.unit(35000, "km")
  50020. },
  50021. {
  50022. name: "Just no",
  50023. height: math.unit(8.5e18, "km")
  50024. },
  50025. ]
  50026. ))
  50027. characterMakers.push(() => makeCharacter(
  50028. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50029. {
  50030. front: {
  50031. height: math.unit(6.5, "feet"),
  50032. name: "Front",
  50033. image: {
  50034. source: "./media/characters/poppy/front.svg",
  50035. extra: 1878/1812,
  50036. bottom: 43/1921
  50037. }
  50038. },
  50039. feet: {
  50040. height: math.unit(1.06, "feet"),
  50041. name: "Feet",
  50042. image: {
  50043. source: "./media/characters/poppy/feet.svg",
  50044. extra: 1083/1083,
  50045. bottom: 87/1170
  50046. }
  50047. },
  50048. },
  50049. [
  50050. {
  50051. name: "Human",
  50052. height: math.unit(6.5, "feet")
  50053. },
  50054. {
  50055. name: "Default",
  50056. height: math.unit(300, "feet"),
  50057. default: true
  50058. },
  50059. {
  50060. name: "Huge",
  50061. height: math.unit(850, "feet")
  50062. },
  50063. {
  50064. name: "Mega",
  50065. height: math.unit(8000, "feet")
  50066. },
  50067. {
  50068. name: "Giga",
  50069. height: math.unit(300, "miles")
  50070. },
  50071. ]
  50072. ))
  50073. characterMakers.push(() => makeCharacter(
  50074. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50075. {
  50076. bipedal: {
  50077. height: math.unit(7, "feet"),
  50078. name: "Bipedal",
  50079. image: {
  50080. source: "./media/characters/zener/bipedal.svg",
  50081. extra: 874/805,
  50082. bottom: 109/983
  50083. }
  50084. },
  50085. quadrupedal: {
  50086. height: math.unit(4.64, "feet"),
  50087. name: "Quadrupedal",
  50088. image: {
  50089. source: "./media/characters/zener/quadrupedal.svg",
  50090. extra: 638/507,
  50091. bottom: 190/828
  50092. }
  50093. },
  50094. cock: {
  50095. height: math.unit(18, "inches"),
  50096. name: "Cock",
  50097. image: {
  50098. source: "./media/characters/zener/cock.svg"
  50099. }
  50100. },
  50101. },
  50102. [
  50103. {
  50104. name: "Normal",
  50105. height: math.unit(7, "feet"),
  50106. default: true
  50107. },
  50108. ]
  50109. ))
  50110. characterMakers.push(() => makeCharacter(
  50111. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50112. {
  50113. nude: {
  50114. height: math.unit(5 + 6/12, "feet"),
  50115. name: "Nude",
  50116. image: {
  50117. source: "./media/characters/charlie-dog/nude.svg",
  50118. extra: 768/734,
  50119. bottom: 26/794
  50120. }
  50121. },
  50122. dressed: {
  50123. height: math.unit(5 + 6/12, "feet"),
  50124. name: "Dressed",
  50125. image: {
  50126. source: "./media/characters/charlie-dog/dressed.svg",
  50127. extra: 768/734,
  50128. bottom: 26/794
  50129. }
  50130. },
  50131. },
  50132. [
  50133. {
  50134. name: "Normal",
  50135. height: math.unit(5 + 6/12, "feet"),
  50136. default: true
  50137. },
  50138. ]
  50139. ))
  50140. characterMakers.push(() => makeCharacter(
  50141. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50142. {
  50143. front: {
  50144. height: math.unit(6 + 4/12, "feet"),
  50145. name: "Front",
  50146. image: {
  50147. source: "./media/characters/ir'istrasz/front.svg",
  50148. extra: 1014/977,
  50149. bottom: 65/1079
  50150. }
  50151. },
  50152. back: {
  50153. height: math.unit(6 + 4/12, "feet"),
  50154. name: "Back",
  50155. image: {
  50156. source: "./media/characters/ir'istrasz/back.svg",
  50157. extra: 1024/992,
  50158. bottom: 34/1058
  50159. }
  50160. },
  50161. },
  50162. [
  50163. {
  50164. name: "Normal",
  50165. height: math.unit(6 + 4/12, "feet"),
  50166. default: true
  50167. },
  50168. ]
  50169. ))
  50170. characterMakers.push(() => makeCharacter(
  50171. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50172. {
  50173. front: {
  50174. height: math.unit(5 + 8/12, "feet"),
  50175. name: "Front",
  50176. image: {
  50177. source: "./media/characters/dee-ditto/front.svg",
  50178. extra: 1874/1785,
  50179. bottom: 68/1942
  50180. }
  50181. },
  50182. back: {
  50183. height: math.unit(5 + 8/12, "feet"),
  50184. name: "Back",
  50185. image: {
  50186. source: "./media/characters/dee-ditto/back.svg",
  50187. extra: 1870/1783,
  50188. bottom: 77/1947
  50189. }
  50190. },
  50191. },
  50192. [
  50193. {
  50194. name: "Normal",
  50195. height: math.unit(5 + 8/12, "feet"),
  50196. default: true
  50197. },
  50198. ]
  50199. ))
  50200. characterMakers.push(() => makeCharacter(
  50201. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50202. {
  50203. front: {
  50204. height: math.unit(7 + 6/12, "feet"),
  50205. name: "Front",
  50206. image: {
  50207. source: "./media/characters/fey/front.svg",
  50208. extra: 995/979,
  50209. bottom: 30/1025
  50210. }
  50211. },
  50212. back: {
  50213. height: math.unit(7 + 6/12, "feet"),
  50214. name: "Back",
  50215. image: {
  50216. source: "./media/characters/fey/back.svg",
  50217. extra: 1079/1008,
  50218. bottom: 5/1084
  50219. }
  50220. },
  50221. dressed: {
  50222. height: math.unit(7 + 6/12, "feet"),
  50223. name: "Dressed",
  50224. image: {
  50225. source: "./media/characters/fey/dressed.svg",
  50226. extra: 995/979,
  50227. bottom: 30/1025
  50228. }
  50229. },
  50230. },
  50231. [
  50232. {
  50233. name: "Normal",
  50234. height: math.unit(7 + 6/12, "feet"),
  50235. default: true
  50236. },
  50237. ]
  50238. ))
  50239. characterMakers.push(() => makeCharacter(
  50240. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50241. {
  50242. standing: {
  50243. height: math.unit(17, "feet"),
  50244. name: "Standing",
  50245. image: {
  50246. source: "./media/characters/aster/standing.svg",
  50247. extra: 1798/1598,
  50248. bottom: 117/1915
  50249. }
  50250. },
  50251. },
  50252. [
  50253. {
  50254. name: "Normal",
  50255. height: math.unit(17, "feet"),
  50256. default: true
  50257. },
  50258. {
  50259. name: "Homewrecker",
  50260. height: math.unit(95, "feet")
  50261. },
  50262. {
  50263. name: "Planet Devourer",
  50264. height: math.unit(1008000, "miles")
  50265. },
  50266. ]
  50267. ))
  50268. characterMakers.push(() => makeCharacter(
  50269. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50270. {
  50271. front: {
  50272. height: math.unit(6 + 5/12, "feet"),
  50273. weight: math.unit(265, "lb"),
  50274. name: "Front",
  50275. image: {
  50276. source: "./media/characters/devon-childs/front.svg",
  50277. extra: 1795/1721,
  50278. bottom: 41/1836
  50279. }
  50280. },
  50281. side: {
  50282. height: math.unit(6 + 5/12, "feet"),
  50283. weight: math.unit(265, "lb"),
  50284. name: "Side",
  50285. image: {
  50286. source: "./media/characters/devon-childs/side.svg",
  50287. extra: 1812/1738,
  50288. bottom: 30/1842
  50289. }
  50290. },
  50291. back: {
  50292. height: math.unit(6 + 5/12, "feet"),
  50293. weight: math.unit(265, "lb"),
  50294. name: "Back",
  50295. image: {
  50296. source: "./media/characters/devon-childs/back.svg",
  50297. extra: 1808/1735,
  50298. bottom: 23/1831
  50299. }
  50300. },
  50301. hand: {
  50302. height: math.unit(1.464, "feet"),
  50303. name: "Hand",
  50304. image: {
  50305. source: "./media/characters/devon-childs/hand.svg"
  50306. }
  50307. },
  50308. foot: {
  50309. height: math.unit(1.6, "feet"),
  50310. name: "Foot",
  50311. image: {
  50312. source: "./media/characters/devon-childs/foot.svg"
  50313. }
  50314. },
  50315. },
  50316. [
  50317. {
  50318. name: "Micro",
  50319. height: math.unit(7, "cm")
  50320. },
  50321. {
  50322. name: "Normal",
  50323. height: math.unit(6 + 5/12, "feet"),
  50324. default: true
  50325. },
  50326. {
  50327. name: "Macro",
  50328. height: math.unit(154, "feet")
  50329. },
  50330. ]
  50331. ))
  50332. characterMakers.push(() => makeCharacter(
  50333. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50334. {
  50335. front: {
  50336. height: math.unit(6, "feet"),
  50337. weight: math.unit(180, "lb"),
  50338. name: "Front",
  50339. image: {
  50340. source: "./media/characters/lydemox-vir/front.svg",
  50341. extra: 1632/1435,
  50342. bottom: 58/1690
  50343. }
  50344. },
  50345. frontSFW: {
  50346. height: math.unit(6, "feet"),
  50347. weight: math.unit(180, "lb"),
  50348. name: "Front (SFW)",
  50349. image: {
  50350. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50351. extra: 1632/1435,
  50352. bottom: 58/1690
  50353. }
  50354. },
  50355. back: {
  50356. height: math.unit(6, "feet"),
  50357. weight: math.unit(180, "lb"),
  50358. name: "Back",
  50359. image: {
  50360. source: "./media/characters/lydemox-vir/back.svg",
  50361. extra: 1593/1408,
  50362. bottom: 31/1624
  50363. }
  50364. },
  50365. paw: {
  50366. height: math.unit(1.85, "feet"),
  50367. name: "Paw",
  50368. image: {
  50369. source: "./media/characters/lydemox-vir/paw.svg"
  50370. }
  50371. },
  50372. dick: {
  50373. height: math.unit(1.8, "feet"),
  50374. name: "Dick",
  50375. image: {
  50376. source: "./media/characters/lydemox-vir/dick.svg"
  50377. }
  50378. },
  50379. },
  50380. [
  50381. {
  50382. name: "Macro",
  50383. height: math.unit(100, "feet"),
  50384. default: true
  50385. },
  50386. {
  50387. name: "Teramacro",
  50388. height: math.unit(1, "earth")
  50389. },
  50390. {
  50391. name: "Planetary",
  50392. height: math.unit(20, "earths")
  50393. },
  50394. ]
  50395. ))
  50396. characterMakers.push(() => makeCharacter(
  50397. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50398. {
  50399. front: {
  50400. height: math.unit(15 + 8/12, "feet"),
  50401. weight: math.unit(1237, "kg"),
  50402. name: "Front",
  50403. image: {
  50404. source: "./media/characters/mia/front.svg",
  50405. extra: 1573/1446,
  50406. bottom: 58/1631
  50407. }
  50408. },
  50409. },
  50410. [
  50411. {
  50412. name: "Small",
  50413. height: math.unit(9 + 5/12, "feet")
  50414. },
  50415. {
  50416. name: "Normal",
  50417. height: math.unit(15 + 8/12, "feet"),
  50418. default: true
  50419. },
  50420. ]
  50421. ))
  50422. characterMakers.push(() => makeCharacter(
  50423. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50424. {
  50425. front: {
  50426. height: math.unit(10 + 6/12, "feet"),
  50427. weight: math.unit(1.3, "tons"),
  50428. name: "Front",
  50429. image: {
  50430. source: "./media/characters/mr-graves/front.svg",
  50431. extra: 1779/1695,
  50432. bottom: 198/1977
  50433. }
  50434. },
  50435. },
  50436. [
  50437. {
  50438. name: "Normal",
  50439. height: math.unit(10 + 6 /12, "feet"),
  50440. default: true
  50441. },
  50442. ]
  50443. ))
  50444. characterMakers.push(() => makeCharacter(
  50445. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50446. {
  50447. dressedFront: {
  50448. height: math.unit(5 + 8/12, "feet"),
  50449. weight: math.unit(125, "lb"),
  50450. name: "Dressed (Front)",
  50451. image: {
  50452. source: "./media/characters/jess/dressed-front.svg",
  50453. extra: 1176/1152,
  50454. bottom: 42/1218
  50455. }
  50456. },
  50457. dressedSide: {
  50458. height: math.unit(5 + 8/12, "feet"),
  50459. weight: math.unit(125, "lb"),
  50460. name: "Dressed (Side)",
  50461. image: {
  50462. source: "./media/characters/jess/dressed-side.svg",
  50463. extra: 1204/1190,
  50464. bottom: 6/1210
  50465. }
  50466. },
  50467. nudeFront: {
  50468. height: math.unit(5 + 8/12, "feet"),
  50469. weight: math.unit(125, "lb"),
  50470. name: "Nude (Front)",
  50471. image: {
  50472. source: "./media/characters/jess/nude-front.svg",
  50473. extra: 1176/1152,
  50474. bottom: 42/1218
  50475. }
  50476. },
  50477. nudeSide: {
  50478. height: math.unit(5 + 8/12, "feet"),
  50479. weight: math.unit(125, "lb"),
  50480. name: "Nude (Side)",
  50481. image: {
  50482. source: "./media/characters/jess/nude-side.svg",
  50483. extra: 1204/1190,
  50484. bottom: 6/1210
  50485. }
  50486. },
  50487. organsFront: {
  50488. height: math.unit(2.83799342105, "feet"),
  50489. name: "Organs (Front)",
  50490. image: {
  50491. source: "./media/characters/jess/organs-front.svg"
  50492. }
  50493. },
  50494. organsSide: {
  50495. height: math.unit(2.64225290474, "feet"),
  50496. name: "Organs (Side)",
  50497. image: {
  50498. source: "./media/characters/jess/organs-side.svg"
  50499. }
  50500. },
  50501. digestiveTractFront: {
  50502. height: math.unit(2.8106580871, "feet"),
  50503. name: "Digestive Tract (Front)",
  50504. image: {
  50505. source: "./media/characters/jess/digestive-tract-front.svg"
  50506. }
  50507. },
  50508. digestiveTractSide: {
  50509. height: math.unit(2.54365045014, "feet"),
  50510. name: "Digestive Tract (Side)",
  50511. image: {
  50512. source: "./media/characters/jess/digestive-tract-side.svg"
  50513. }
  50514. },
  50515. respiratorySystemFront: {
  50516. height: math.unit(1.11196233456, "feet"),
  50517. name: "Respiratory System (Front)",
  50518. image: {
  50519. source: "./media/characters/jess/respiratory-system-front.svg"
  50520. }
  50521. },
  50522. respiratorySystemSide: {
  50523. height: math.unit(0.89327966297, "feet"),
  50524. name: "Respiratory System (Side)",
  50525. image: {
  50526. source: "./media/characters/jess/respiratory-system-side.svg"
  50527. }
  50528. },
  50529. urinaryTractFront: {
  50530. height: math.unit(1.16126356186, "feet"),
  50531. name: "Urinary Tract (Front)",
  50532. image: {
  50533. source: "./media/characters/jess/urinary-tract-front.svg"
  50534. }
  50535. },
  50536. urinaryTractSide: {
  50537. height: math.unit(1.20910039627, "feet"),
  50538. name: "Urinary Tract (Side)",
  50539. image: {
  50540. source: "./media/characters/jess/urinary-tract-side.svg"
  50541. }
  50542. },
  50543. reproductiveOrgansFront: {
  50544. height: math.unit(0.48422591566, "feet"),
  50545. name: "Reproductive Organs (Front)",
  50546. image: {
  50547. source: "./media/characters/jess/reproductive-organs-front.svg"
  50548. }
  50549. },
  50550. reproductiveOrgansSide: {
  50551. height: math.unit(0.61553314481, "feet"),
  50552. name: "Reproductive Organs (Side)",
  50553. image: {
  50554. source: "./media/characters/jess/reproductive-organs-side.svg"
  50555. }
  50556. },
  50557. breastsFront: {
  50558. height: math.unit(0.47690395121, "feet"),
  50559. name: "Breasts (Front)",
  50560. image: {
  50561. source: "./media/characters/jess/breasts-front.svg"
  50562. }
  50563. },
  50564. breastsSide: {
  50565. height: math.unit(0.30556998307, "feet"),
  50566. name: "Breasts (Side)",
  50567. image: {
  50568. source: "./media/characters/jess/breasts-side.svg"
  50569. }
  50570. },
  50571. heartFront: {
  50572. height: math.unit(0.53011022622, "feet"),
  50573. name: "Heart (Front)",
  50574. image: {
  50575. source: "./media/characters/jess/heart-front.svg"
  50576. }
  50577. },
  50578. heartSide: {
  50579. height: math.unit(0.51790695213, "feet"),
  50580. name: "Heart (Side)",
  50581. image: {
  50582. source: "./media/characters/jess/heart-side.svg"
  50583. }
  50584. },
  50585. earsAndNoseFront: {
  50586. height: math.unit(0.29385483995, "feet"),
  50587. name: "Ears and Nose (Front)",
  50588. image: {
  50589. source: "./media/characters/jess/ears-and-nose-front.svg"
  50590. }
  50591. },
  50592. earsAndNoseSide: {
  50593. height: math.unit(0.18109658741, "feet"),
  50594. name: "Ears and Nose (Side)",
  50595. image: {
  50596. source: "./media/characters/jess/ears-and-nose-side.svg"
  50597. }
  50598. },
  50599. },
  50600. [
  50601. {
  50602. name: "Normal",
  50603. height: math.unit(5 + 8/12, "feet"),
  50604. default: true
  50605. },
  50606. ]
  50607. ))
  50608. characterMakers.push(() => makeCharacter(
  50609. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50610. {
  50611. front: {
  50612. height: math.unit(6, "feet"),
  50613. weight: math.unit(6.64467e-7, "grams"),
  50614. name: "Front",
  50615. image: {
  50616. source: "./media/characters/wimpering/front.svg",
  50617. extra: 597/587,
  50618. bottom: 34/631
  50619. }
  50620. },
  50621. },
  50622. [
  50623. {
  50624. name: "Micro",
  50625. height: math.unit(0.4, "mm"),
  50626. default: true
  50627. },
  50628. ]
  50629. ))
  50630. characterMakers.push(() => makeCharacter(
  50631. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50632. {
  50633. front: {
  50634. height: math.unit(5 + 2/12, "feet"),
  50635. weight: math.unit(110, "lb"),
  50636. name: "Front",
  50637. image: {
  50638. source: "./media/characters/keltre/front.svg",
  50639. extra: 1099/1057,
  50640. bottom: 22/1121
  50641. }
  50642. },
  50643. back: {
  50644. height: math.unit(5 + 2/12, "feet"),
  50645. weight: math.unit(110, "lb"),
  50646. name: "Back",
  50647. image: {
  50648. source: "./media/characters/keltre/back.svg",
  50649. extra: 1095/1053,
  50650. bottom: 17/1112
  50651. }
  50652. },
  50653. dressed: {
  50654. height: math.unit(5 + 2/12, "feet"),
  50655. weight: math.unit(110, "lb"),
  50656. name: "Dressed",
  50657. image: {
  50658. source: "./media/characters/keltre/dressed.svg",
  50659. extra: 1099/1057,
  50660. bottom: 22/1121
  50661. }
  50662. },
  50663. winter: {
  50664. height: math.unit(5 + 2/12, "feet"),
  50665. weight: math.unit(110, "lb"),
  50666. name: "Winter",
  50667. image: {
  50668. source: "./media/characters/keltre/winter.svg",
  50669. extra: 1099/1057,
  50670. bottom: 22/1121
  50671. }
  50672. },
  50673. head: {
  50674. height: math.unit(1.61 * 0.86, "feet"),
  50675. name: "Head",
  50676. image: {
  50677. source: "./media/characters/keltre/head.svg",
  50678. extra: 534/421,
  50679. bottom: 0/534
  50680. }
  50681. },
  50682. hand: {
  50683. height: math.unit(1.3 * 0.86, "feet"),
  50684. name: "Hand",
  50685. image: {
  50686. source: "./media/characters/keltre/hand.svg"
  50687. }
  50688. },
  50689. foot: {
  50690. height: math.unit(1.8 * 0.86, "feet"),
  50691. name: "Foot",
  50692. image: {
  50693. source: "./media/characters/keltre/foot.svg"
  50694. }
  50695. },
  50696. },
  50697. [
  50698. {
  50699. name: "Fine",
  50700. height: math.unit(1, "inch")
  50701. },
  50702. {
  50703. name: "Dimnutive",
  50704. height: math.unit(4, "inches")
  50705. },
  50706. {
  50707. name: "Tiny",
  50708. height: math.unit(1, "foot")
  50709. },
  50710. {
  50711. name: "Small",
  50712. height: math.unit(3, "feet")
  50713. },
  50714. {
  50715. name: "Normal",
  50716. height: math.unit(5 + 2/12, "feet"),
  50717. default: true
  50718. },
  50719. ]
  50720. ))
  50721. characterMakers.push(() => makeCharacter(
  50722. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50723. {
  50724. front: {
  50725. height: math.unit(6 + 2/12, "feet"),
  50726. name: "Front",
  50727. image: {
  50728. source: "./media/characters/nox/front.svg",
  50729. extra: 1917/1830,
  50730. bottom: 74/1991
  50731. }
  50732. },
  50733. back: {
  50734. height: math.unit(6 + 2/12, "feet"),
  50735. name: "Back",
  50736. image: {
  50737. source: "./media/characters/nox/back.svg",
  50738. extra: 1896/1815,
  50739. bottom: 21/1917
  50740. }
  50741. },
  50742. head: {
  50743. height: math.unit(1.1, "feet"),
  50744. name: "Head",
  50745. image: {
  50746. source: "./media/characters/nox/head.svg",
  50747. extra: 874/704,
  50748. bottom: 0/874
  50749. }
  50750. },
  50751. tattoo: {
  50752. height: math.unit(0.729, "feet"),
  50753. name: "Tattoo",
  50754. image: {
  50755. source: "./media/characters/nox/tattoo.svg"
  50756. }
  50757. },
  50758. },
  50759. [
  50760. {
  50761. name: "Normal",
  50762. height: math.unit(6 + 2/12, "feet")
  50763. },
  50764. {
  50765. name: "Gigamacro",
  50766. height: math.unit(2, "earths"),
  50767. default: true
  50768. },
  50769. {
  50770. name: "Cosmic",
  50771. height: math.unit(867, "yottameters")
  50772. },
  50773. ]
  50774. ))
  50775. characterMakers.push(() => makeCharacter(
  50776. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50777. {
  50778. front: {
  50779. height: math.unit(6, "feet"),
  50780. weight: math.unit(150, "lb"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/caspian/front.svg",
  50784. extra: 1443/1359,
  50785. bottom: 0/1443
  50786. }
  50787. },
  50788. back: {
  50789. height: math.unit(6, "feet"),
  50790. weight: math.unit(150, "lb"),
  50791. name: "Back",
  50792. image: {
  50793. source: "./media/characters/caspian/back.svg",
  50794. extra: 1379/1309,
  50795. bottom: 0/1379
  50796. }
  50797. },
  50798. head: {
  50799. height: math.unit(0.9, "feet"),
  50800. name: "Head",
  50801. image: {
  50802. source: "./media/characters/caspian/head.svg",
  50803. extra: 692/492,
  50804. bottom: 0/692
  50805. }
  50806. },
  50807. headAlt: {
  50808. height: math.unit(0.95, "feet"),
  50809. name: "Head (Alt)",
  50810. image: {
  50811. source: "./media/characters/caspian/head-alt.svg",
  50812. extra: 668/508,
  50813. bottom: 0/668
  50814. }
  50815. },
  50816. hand: {
  50817. height: math.unit(0.8, "feet"),
  50818. name: "Hand",
  50819. image: {
  50820. source: "./media/characters/caspian/hand.svg"
  50821. }
  50822. },
  50823. paw: {
  50824. height: math.unit(0.95, "feet"),
  50825. name: "Paw",
  50826. image: {
  50827. source: "./media/characters/caspian/paw.svg"
  50828. }
  50829. },
  50830. },
  50831. [
  50832. {
  50833. name: "Normal",
  50834. height: math.unit(162, "feet"),
  50835. default: true
  50836. },
  50837. ]
  50838. ))
  50839. characterMakers.push(() => makeCharacter(
  50840. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50841. {
  50842. front: {
  50843. height: math.unit(6, "feet"),
  50844. name: "Front",
  50845. image: {
  50846. source: "./media/characters/myra-aisling/front.svg",
  50847. extra: 1268/1166,
  50848. bottom: 73/1341
  50849. }
  50850. },
  50851. back: {
  50852. height: math.unit(6, "feet"),
  50853. name: "Back",
  50854. image: {
  50855. source: "./media/characters/myra-aisling/back.svg",
  50856. extra: 1249/1149,
  50857. bottom: 79/1328
  50858. }
  50859. },
  50860. dressed: {
  50861. height: math.unit(6, "feet"),
  50862. name: "Dressed",
  50863. image: {
  50864. source: "./media/characters/myra-aisling/dressed.svg",
  50865. extra: 1290/1189,
  50866. bottom: 47/1337
  50867. }
  50868. },
  50869. hand: {
  50870. height: math.unit(1.1, "feet"),
  50871. name: "Hand",
  50872. image: {
  50873. source: "./media/characters/myra-aisling/hand.svg"
  50874. }
  50875. },
  50876. paw: {
  50877. height: math.unit(1.23, "feet"),
  50878. name: "Paw",
  50879. image: {
  50880. source: "./media/characters/myra-aisling/paw.svg"
  50881. }
  50882. },
  50883. },
  50884. [
  50885. {
  50886. name: "Normal",
  50887. height: math.unit(160, "feet"),
  50888. default: true
  50889. },
  50890. ]
  50891. ))
  50892. characterMakers.push(() => makeCharacter(
  50893. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50894. {
  50895. front: {
  50896. height: math.unit(6, "feet"),
  50897. name: "Front",
  50898. image: {
  50899. source: "./media/characters/tenley-sidero/front.svg",
  50900. extra: 1365/1276,
  50901. bottom: 47/1412
  50902. }
  50903. },
  50904. back: {
  50905. height: math.unit(6, "feet"),
  50906. name: "Back",
  50907. image: {
  50908. source: "./media/characters/tenley-sidero/back.svg",
  50909. extra: 1383/1283,
  50910. bottom: 35/1418
  50911. }
  50912. },
  50913. dressed: {
  50914. height: math.unit(6, "feet"),
  50915. name: "Dressed",
  50916. image: {
  50917. source: "./media/characters/tenley-sidero/dressed.svg",
  50918. extra: 1364/1275,
  50919. bottom: 42/1406
  50920. }
  50921. },
  50922. head: {
  50923. height: math.unit(1.47, "feet"),
  50924. name: "Head",
  50925. image: {
  50926. source: "./media/characters/tenley-sidero/head.svg",
  50927. extra: 610/490,
  50928. bottom: 0/610
  50929. }
  50930. },
  50931. },
  50932. [
  50933. {
  50934. name: "Normal",
  50935. height: math.unit(154, "feet"),
  50936. default: true
  50937. },
  50938. ]
  50939. ))
  50940. characterMakers.push(() => makeCharacter(
  50941. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50942. {
  50943. front: {
  50944. height: math.unit(5, "inches"),
  50945. name: "Front",
  50946. image: {
  50947. source: "./media/characters/mallory/front.svg",
  50948. extra: 1919/1678,
  50949. bottom: 29/1948
  50950. }
  50951. },
  50952. hand: {
  50953. height: math.unit(0.73, "inches"),
  50954. name: "Hand",
  50955. image: {
  50956. source: "./media/characters/mallory/hand.svg"
  50957. }
  50958. },
  50959. paw: {
  50960. height: math.unit(0.68, "inches"),
  50961. name: "Paw",
  50962. image: {
  50963. source: "./media/characters/mallory/paw.svg"
  50964. }
  50965. },
  50966. },
  50967. [
  50968. {
  50969. name: "Small",
  50970. height: math.unit(5, "inches"),
  50971. default: true
  50972. },
  50973. ]
  50974. ))
  50975. characterMakers.push(() => makeCharacter(
  50976. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50977. {
  50978. naked: {
  50979. height: math.unit(6, "feet"),
  50980. name: "Naked",
  50981. image: {
  50982. source: "./media/characters/mab/naked.svg",
  50983. extra: 1855/1757,
  50984. bottom: 208/2063
  50985. }
  50986. },
  50987. outside: {
  50988. height: math.unit(6, "feet"),
  50989. name: "Outside",
  50990. image: {
  50991. source: "./media/characters/mab/outside.svg",
  50992. extra: 1855/1757,
  50993. bottom: 208/2063
  50994. }
  50995. },
  50996. party: {
  50997. height: math.unit(6, "feet"),
  50998. name: "Party",
  50999. image: {
  51000. source: "./media/characters/mab/party.svg",
  51001. extra: 1855/1757,
  51002. bottom: 208/2063
  51003. }
  51004. },
  51005. },
  51006. [
  51007. {
  51008. name: "Normal",
  51009. height: math.unit(165, "feet"),
  51010. default: true
  51011. },
  51012. ]
  51013. ))
  51014. characterMakers.push(() => makeCharacter(
  51015. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51016. {
  51017. feral: {
  51018. height: math.unit(12, "feet"),
  51019. weight: math.unit(20000, "lb"),
  51020. name: "Side",
  51021. image: {
  51022. source: "./media/characters/winter/feral.svg",
  51023. extra: 1286/943,
  51024. bottom: 112/1398
  51025. },
  51026. form: "feral",
  51027. default: true
  51028. },
  51029. feralNsfw: {
  51030. height: math.unit(12, "feet"),
  51031. weight: math.unit(20000, "lb"),
  51032. name: "Side (NSFW)",
  51033. image: {
  51034. source: "./media/characters/winter/feral-nsfw.svg",
  51035. extra: 1286/943,
  51036. bottom: 112/1398
  51037. },
  51038. form: "feral"
  51039. },
  51040. dick: {
  51041. height: math.unit(3.79, "feet"),
  51042. name: "Dick",
  51043. image: {
  51044. source: "./media/characters/winter/dick.svg"
  51045. },
  51046. form: "feral"
  51047. },
  51048. anthro: {
  51049. height: math.unit(12, "feet"),
  51050. weight: math.unit(10, "tons"),
  51051. name: "Anthro",
  51052. image: {
  51053. source: "./media/characters/winter/anthro.svg",
  51054. extra: 1701/1553,
  51055. bottom: 64/1765
  51056. },
  51057. form: "anthro",
  51058. default: true
  51059. },
  51060. },
  51061. [
  51062. {
  51063. name: "Big",
  51064. height: math.unit(12, "feet"),
  51065. default: true,
  51066. form: "feral"
  51067. },
  51068. {
  51069. name: "Big",
  51070. height: math.unit(12, "feet"),
  51071. default: true,
  51072. form: "anthro"
  51073. },
  51074. ],
  51075. {
  51076. "feral": {
  51077. name: "Feral",
  51078. default: true
  51079. },
  51080. "anthro": {
  51081. name: "Anthro"
  51082. }
  51083. }
  51084. ))
  51085. characterMakers.push(() => makeCharacter(
  51086. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51087. {
  51088. front: {
  51089. height: math.unit(4.1, "inches"),
  51090. name: "Front",
  51091. image: {
  51092. source: "./media/characters/alto/front.svg",
  51093. extra: 736/627,
  51094. bottom: 90/826
  51095. }
  51096. },
  51097. },
  51098. [
  51099. {
  51100. name: "Normal",
  51101. height: math.unit(4.1, "inches"),
  51102. default: true
  51103. },
  51104. ]
  51105. ))
  51106. characterMakers.push(() => makeCharacter(
  51107. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51108. {
  51109. sitting: {
  51110. height: math.unit(3, "feet"),
  51111. name: "Sitting",
  51112. image: {
  51113. source: "./media/characters/ratstrid-v/sitting.svg",
  51114. extra: 355/310,
  51115. bottom: 136/491
  51116. }
  51117. },
  51118. },
  51119. [
  51120. {
  51121. name: "Normal",
  51122. height: math.unit(3, "feet"),
  51123. default: true
  51124. },
  51125. ]
  51126. ))
  51127. characterMakers.push(() => makeCharacter(
  51128. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51129. {
  51130. back: {
  51131. height: math.unit(6, "feet"),
  51132. weight: math.unit(450, "lb"),
  51133. name: "Back",
  51134. image: {
  51135. source: "./media/characters/siz/back.svg",
  51136. extra: 1449/1274,
  51137. bottom: 13/1462
  51138. }
  51139. },
  51140. },
  51141. [
  51142. {
  51143. name: "Smallest",
  51144. height: math.unit(18 + 3/12, "feet")
  51145. },
  51146. {
  51147. name: "Modest",
  51148. height: math.unit(56 + 8/12, "feet"),
  51149. default: true
  51150. },
  51151. {
  51152. name: "Largest",
  51153. height: math.unit(3590, "feet")
  51154. },
  51155. ]
  51156. ))
  51157. characterMakers.push(() => makeCharacter(
  51158. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51159. {
  51160. front: {
  51161. height: math.unit(5 + 9/12, "feet"),
  51162. weight: math.unit(150, "lb"),
  51163. name: "Front",
  51164. image: {
  51165. source: "./media/characters/ven/front.svg",
  51166. extra: 1372/1320,
  51167. bottom: 73/1445
  51168. }
  51169. },
  51170. side: {
  51171. height: math.unit(5 + 9/12, "feet"),
  51172. weight: math.unit(1150, "lb"),
  51173. name: "Side",
  51174. image: {
  51175. source: "./media/characters/ven/side.svg",
  51176. extra: 1119/1070,
  51177. bottom: 42/1161
  51178. },
  51179. default: true
  51180. },
  51181. },
  51182. [
  51183. {
  51184. name: "Normal",
  51185. height: math.unit(5 + 9/12, "feet"),
  51186. default: true
  51187. },
  51188. ]
  51189. ))
  51190. characterMakers.push(() => makeCharacter(
  51191. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51192. {
  51193. front: {
  51194. height: math.unit(12, "feet"),
  51195. weight: math.unit(1000, "kg"),
  51196. name: "Front",
  51197. image: {
  51198. source: "./media/characters/maple/front.svg",
  51199. extra: 1193/1081,
  51200. bottom: 22/1215
  51201. }
  51202. },
  51203. },
  51204. [
  51205. {
  51206. name: "Compressed",
  51207. height: math.unit(7, "feet")
  51208. },
  51209. {
  51210. name: "Normal",
  51211. height: math.unit(12, "feet"),
  51212. default: true
  51213. },
  51214. ]
  51215. ))
  51216. characterMakers.push(() => makeCharacter(
  51217. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51218. {
  51219. front: {
  51220. height: math.unit(9, "feet"),
  51221. weight: math.unit(1500, "lb"),
  51222. name: "Front",
  51223. image: {
  51224. source: "./media/characters/nora/front.svg",
  51225. extra: 1348/1286,
  51226. bottom: 218/1566
  51227. }
  51228. },
  51229. erect: {
  51230. height: math.unit(9, "feet"),
  51231. weight: math.unit(11500, "lb"),
  51232. name: "Erect",
  51233. image: {
  51234. source: "./media/characters/nora/erect.svg",
  51235. extra: 1488/1433,
  51236. bottom: 133/1621
  51237. }
  51238. },
  51239. },
  51240. [
  51241. {
  51242. name: "Normal",
  51243. height: math.unit(9, "feet"),
  51244. default: true
  51245. },
  51246. ]
  51247. ))
  51248. characterMakers.push(() => makeCharacter(
  51249. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51250. {
  51251. front: {
  51252. height: math.unit(25, "feet"),
  51253. weight: math.unit(27500, "lb"),
  51254. name: "Front",
  51255. image: {
  51256. source: "./media/characters/north-caudin/front.svg",
  51257. extra: 1184/1082,
  51258. bottom: 23/1207
  51259. }
  51260. },
  51261. },
  51262. [
  51263. {
  51264. name: "Compressed",
  51265. height: math.unit(10, "feet")
  51266. },
  51267. {
  51268. name: "Normal",
  51269. height: math.unit(25, "feet"),
  51270. default: true
  51271. },
  51272. ]
  51273. ))
  51274. characterMakers.push(() => makeCharacter(
  51275. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51276. {
  51277. front: {
  51278. height: math.unit(9, "feet"),
  51279. weight: math.unit(1250, "lb"),
  51280. name: "Front",
  51281. image: {
  51282. source: "./media/characters/merrian/front.svg",
  51283. extra: 2393/2304,
  51284. bottom: 40/2433
  51285. }
  51286. },
  51287. },
  51288. [
  51289. {
  51290. name: "Normal",
  51291. height: math.unit(9, "feet"),
  51292. default: true
  51293. },
  51294. ]
  51295. ))
  51296. characterMakers.push(() => makeCharacter(
  51297. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51298. {
  51299. front: {
  51300. height: math.unit(9, "feet"),
  51301. weight: math.unit(1000, "lb"),
  51302. name: "Front",
  51303. image: {
  51304. source: "./media/characters/hazel/front.svg",
  51305. extra: 2351/2298,
  51306. bottom: 38/2389
  51307. }
  51308. },
  51309. },
  51310. [
  51311. {
  51312. name: "Normal",
  51313. height: math.unit(9, "feet"),
  51314. default: true
  51315. },
  51316. ]
  51317. ))
  51318. characterMakers.push(() => makeCharacter(
  51319. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51320. {
  51321. front: {
  51322. height: math.unit(13, "feet"),
  51323. weight: math.unit(3200, "lb"),
  51324. name: "Front",
  51325. image: {
  51326. source: "./media/characters/emma/front.svg",
  51327. extra: 2263/2029,
  51328. bottom: 68/2331
  51329. }
  51330. },
  51331. },
  51332. [
  51333. {
  51334. name: "Normal",
  51335. height: math.unit(13, "feet"),
  51336. default: true
  51337. },
  51338. ]
  51339. ))
  51340. characterMakers.push(() => makeCharacter(
  51341. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51342. {
  51343. front: {
  51344. height: math.unit(11 + 9/12, "feet"),
  51345. weight: math.unit(2500, "lb"),
  51346. name: "Front",
  51347. image: {
  51348. source: "./media/characters/ilumina/front.svg",
  51349. extra: 2248/2209,
  51350. bottom: 164/2412
  51351. }
  51352. },
  51353. },
  51354. [
  51355. {
  51356. name: "Normal",
  51357. height: math.unit(11 + 9/12, "feet"),
  51358. default: true
  51359. },
  51360. ]
  51361. ))
  51362. characterMakers.push(() => makeCharacter(
  51363. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51364. {
  51365. front: {
  51366. height: math.unit(8 + 10/12, "feet"),
  51367. weight: math.unit(1350, "lb"),
  51368. name: "Front",
  51369. image: {
  51370. source: "./media/characters/moonshine/front.svg",
  51371. extra: 2395/2288,
  51372. bottom: 40/2435
  51373. }
  51374. },
  51375. },
  51376. [
  51377. {
  51378. name: "Normal",
  51379. height: math.unit(8 + 10/12, "feet"),
  51380. default: true
  51381. },
  51382. ]
  51383. ))
  51384. characterMakers.push(() => makeCharacter(
  51385. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51386. {
  51387. front: {
  51388. height: math.unit(14, "feet"),
  51389. weight: math.unit(3400, "lb"),
  51390. name: "Front",
  51391. image: {
  51392. source: "./media/characters/aletia/front.svg",
  51393. extra: 1185/1052,
  51394. bottom: 21/1206
  51395. }
  51396. },
  51397. },
  51398. [
  51399. {
  51400. name: "Compressed",
  51401. height: math.unit(8, "feet")
  51402. },
  51403. {
  51404. name: "Normal",
  51405. height: math.unit(14, "feet"),
  51406. default: true
  51407. },
  51408. ]
  51409. ))
  51410. characterMakers.push(() => makeCharacter(
  51411. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51412. {
  51413. front: {
  51414. height: math.unit(17, "feet"),
  51415. weight: math.unit(6500, "lb"),
  51416. name: "Front",
  51417. image: {
  51418. source: "./media/characters/deidra/front.svg",
  51419. extra: 1201/1081,
  51420. bottom: 16/1217
  51421. }
  51422. },
  51423. },
  51424. [
  51425. {
  51426. name: "Compressed",
  51427. height: math.unit(9 + 6/12, "feet")
  51428. },
  51429. {
  51430. name: "Normal",
  51431. height: math.unit(17, "feet"),
  51432. default: true
  51433. },
  51434. ]
  51435. ))
  51436. characterMakers.push(() => makeCharacter(
  51437. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51438. {
  51439. front: {
  51440. height: math.unit(7 + 4/12, "feet"),
  51441. weight: math.unit(280, "lb"),
  51442. name: "Front",
  51443. image: {
  51444. source: "./media/characters/freki-yrmori/front.svg",
  51445. extra: 1286/1182,
  51446. bottom: 29/1315
  51447. }
  51448. },
  51449. maw: {
  51450. height: math.unit(0.9, "feet"),
  51451. name: "Maw",
  51452. image: {
  51453. source: "./media/characters/freki-yrmori/maw.svg"
  51454. }
  51455. },
  51456. },
  51457. [
  51458. {
  51459. name: "Normal",
  51460. height: math.unit(7 + 4/12, "feet"),
  51461. default: true
  51462. },
  51463. {
  51464. name: "Macro",
  51465. height: math.unit(38.5, "meters")
  51466. },
  51467. ]
  51468. ))
  51469. characterMakers.push(() => makeCharacter(
  51470. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51471. {
  51472. side: {
  51473. height: math.unit(47.2, "meters"),
  51474. weight: math.unit(10000, "tons"),
  51475. name: "Side",
  51476. image: {
  51477. source: "./media/characters/aetherios/side.svg",
  51478. extra: 2363/642,
  51479. bottom: 221/2584
  51480. }
  51481. },
  51482. top: {
  51483. height: math.unit(240, "meters"),
  51484. weight: math.unit(10000, "tons"),
  51485. name: "Top",
  51486. image: {
  51487. source: "./media/characters/aetherios/top.svg"
  51488. }
  51489. },
  51490. bottom: {
  51491. height: math.unit(240, "meters"),
  51492. weight: math.unit(10000, "tons"),
  51493. name: "Bottom",
  51494. image: {
  51495. source: "./media/characters/aetherios/bottom.svg"
  51496. }
  51497. },
  51498. head: {
  51499. height: math.unit(38.6, "meters"),
  51500. name: "Head",
  51501. image: {
  51502. source: "./media/characters/aetherios/head.svg",
  51503. extra: 1335/1112,
  51504. bottom: 0/1335
  51505. }
  51506. },
  51507. front: {
  51508. height: math.unit(29, "meters"),
  51509. name: "Front",
  51510. image: {
  51511. source: "./media/characters/aetherios/front.svg",
  51512. extra: 1266/953,
  51513. bottom: 158/1424
  51514. }
  51515. },
  51516. maw: {
  51517. height: math.unit(16.37, "meters"),
  51518. name: "Maw",
  51519. image: {
  51520. source: "./media/characters/aetherios/maw.svg",
  51521. extra: 748/637,
  51522. bottom: 0/748
  51523. },
  51524. extraAttributes: {
  51525. preyCapacity: {
  51526. name: "Capacity",
  51527. power: 3,
  51528. type: "volume",
  51529. base: math.unit(1000, "people")
  51530. },
  51531. tongueSize: {
  51532. name: "Tongue Size",
  51533. power: 2,
  51534. type: "area",
  51535. base: math.unit(21, "m^2")
  51536. }
  51537. }
  51538. },
  51539. forepaw: {
  51540. height: math.unit(18, "meters"),
  51541. name: "Forepaw",
  51542. image: {
  51543. source: "./media/characters/aetherios/forepaw.svg"
  51544. }
  51545. },
  51546. hindpaw: {
  51547. height: math.unit(23, "meters"),
  51548. name: "Hindpaw",
  51549. image: {
  51550. source: "./media/characters/aetherios/hindpaw.svg"
  51551. }
  51552. },
  51553. genitals: {
  51554. height: math.unit(42, "meters"),
  51555. name: "Genitals",
  51556. image: {
  51557. source: "./media/characters/aetherios/genitals.svg"
  51558. }
  51559. },
  51560. },
  51561. [
  51562. {
  51563. name: "Normal",
  51564. height: math.unit(47.2, "meters"),
  51565. default: true
  51566. },
  51567. {
  51568. name: "Macro",
  51569. height: math.unit(160, "meters")
  51570. },
  51571. {
  51572. name: "Mega",
  51573. height: math.unit(1.87, "km")
  51574. },
  51575. {
  51576. name: "Giga",
  51577. height: math.unit(40000, "km")
  51578. },
  51579. {
  51580. name: "Stellar",
  51581. height: math.unit(158000000, "km")
  51582. },
  51583. {
  51584. name: "Cosmic",
  51585. height: math.unit(9.46e12, "km")
  51586. },
  51587. ]
  51588. ))
  51589. characterMakers.push(() => makeCharacter(
  51590. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51591. {
  51592. front: {
  51593. height: math.unit(5 + 4/12, "feet"),
  51594. weight: math.unit(80, "lb"),
  51595. name: "Front",
  51596. image: {
  51597. source: "./media/characters/mizu-gieeg/front.svg",
  51598. extra: 850/709,
  51599. bottom: 52/902
  51600. }
  51601. },
  51602. back: {
  51603. height: math.unit(5 + 4/12, "feet"),
  51604. weight: math.unit(80, "lb"),
  51605. name: "Back",
  51606. image: {
  51607. source: "./media/characters/mizu-gieeg/back.svg",
  51608. extra: 882/745,
  51609. bottom: 25/907
  51610. }
  51611. },
  51612. },
  51613. [
  51614. {
  51615. name: "Normal",
  51616. height: math.unit(5 + 4/12, "feet"),
  51617. default: true
  51618. },
  51619. ]
  51620. ))
  51621. characterMakers.push(() => makeCharacter(
  51622. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51623. {
  51624. front: {
  51625. height: math.unit(6, "feet"),
  51626. name: "Front",
  51627. image: {
  51628. source: "./media/characters/roselle-st-papier/front.svg",
  51629. extra: 1430/1280,
  51630. bottom: 37/1467
  51631. }
  51632. },
  51633. back: {
  51634. height: math.unit(6, "feet"),
  51635. name: "Back",
  51636. image: {
  51637. source: "./media/characters/roselle-st-papier/back.svg",
  51638. extra: 1491/1296,
  51639. bottom: 23/1514
  51640. }
  51641. },
  51642. ear: {
  51643. height: math.unit(1.26, "feet"),
  51644. name: "Ear",
  51645. image: {
  51646. source: "./media/characters/roselle-st-papier/ear.svg"
  51647. }
  51648. },
  51649. },
  51650. [
  51651. {
  51652. name: "Normal",
  51653. height: math.unit(150, "feet"),
  51654. default: true
  51655. },
  51656. ]
  51657. ))
  51658. characterMakers.push(() => makeCharacter(
  51659. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51660. {
  51661. front: {
  51662. height: math.unit(1, "inches"),
  51663. name: "Front",
  51664. image: {
  51665. source: "./media/characters/valargent/front.svg",
  51666. extra: 1825/1694,
  51667. bottom: 62/1887
  51668. }
  51669. },
  51670. back: {
  51671. height: math.unit(1, "inches"),
  51672. name: "Back",
  51673. image: {
  51674. source: "./media/characters/valargent/back.svg",
  51675. extra: 1775/1682,
  51676. bottom: 88/1863
  51677. }
  51678. },
  51679. },
  51680. [
  51681. {
  51682. name: "Micro",
  51683. height: math.unit(1, "inch"),
  51684. default: true
  51685. },
  51686. ]
  51687. ))
  51688. characterMakers.push(() => makeCharacter(
  51689. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51690. {
  51691. front: {
  51692. height: math.unit(3.4, "meters"),
  51693. name: "Front",
  51694. image: {
  51695. source: "./media/characters/zarina/front.svg",
  51696. extra: 1733/1425,
  51697. bottom: 93/1826
  51698. }
  51699. },
  51700. squatting: {
  51701. height: math.unit(2.14, "meters"),
  51702. name: "Squatting",
  51703. image: {
  51704. source: "./media/characters/zarina/squatting.svg",
  51705. extra: 1073/788,
  51706. bottom: 63/1136
  51707. }
  51708. },
  51709. back: {
  51710. height: math.unit(2.14, "meters"),
  51711. name: "Back",
  51712. image: {
  51713. source: "./media/characters/zarina/back.svg",
  51714. extra: 1128/885,
  51715. bottom: 0/1128
  51716. }
  51717. },
  51718. },
  51719. [
  51720. {
  51721. name: "Normal",
  51722. height: math.unit(3.4, "meters"),
  51723. default: true
  51724. },
  51725. {
  51726. name: "Big",
  51727. height: math.unit(5, "meters")
  51728. },
  51729. {
  51730. name: "Macro",
  51731. height: math.unit(110, "meters")
  51732. },
  51733. ]
  51734. ))
  51735. characterMakers.push(() => makeCharacter(
  51736. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51737. {
  51738. front: {
  51739. height: math.unit(7, "feet"),
  51740. name: "Front",
  51741. image: {
  51742. source: "./media/characters/ventus-astro-fox/front.svg",
  51743. extra: 1792/1623,
  51744. bottom: 28/1820
  51745. }
  51746. },
  51747. back: {
  51748. height: math.unit(7, "feet"),
  51749. name: "Back",
  51750. image: {
  51751. source: "./media/characters/ventus-astro-fox/back.svg",
  51752. extra: 1789/1620,
  51753. bottom: 31/1820
  51754. }
  51755. },
  51756. outfit: {
  51757. height: math.unit(7, "feet"),
  51758. name: "Outfit",
  51759. image: {
  51760. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51761. extra: 1054/925,
  51762. bottom: 15/1069
  51763. }
  51764. },
  51765. head: {
  51766. height: math.unit(1.12, "feet"),
  51767. name: "Head",
  51768. image: {
  51769. source: "./media/characters/ventus-astro-fox/head.svg",
  51770. extra: 866/504,
  51771. bottom: 0/866
  51772. }
  51773. },
  51774. hand: {
  51775. height: math.unit(1, "feet"),
  51776. name: "Hand",
  51777. image: {
  51778. source: "./media/characters/ventus-astro-fox/hand.svg"
  51779. }
  51780. },
  51781. paw: {
  51782. height: math.unit(1.5, "feet"),
  51783. name: "Paw",
  51784. image: {
  51785. source: "./media/characters/ventus-astro-fox/paw.svg"
  51786. }
  51787. },
  51788. },
  51789. [
  51790. {
  51791. name: "Normal",
  51792. height: math.unit(7, "feet"),
  51793. default: true
  51794. },
  51795. {
  51796. name: "Macro",
  51797. height: math.unit(200, "feet")
  51798. },
  51799. {
  51800. name: "Cosmic",
  51801. height: math.unit(3, "universes")
  51802. },
  51803. ]
  51804. ))
  51805. characterMakers.push(() => makeCharacter(
  51806. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51807. {
  51808. front: {
  51809. height: math.unit(3, "meters"),
  51810. weight: math.unit(7000, "lb"),
  51811. name: "Front",
  51812. image: {
  51813. source: "./media/characters/core-t/front.svg",
  51814. extra: 5729/4941,
  51815. bottom: 1129/6858
  51816. }
  51817. },
  51818. },
  51819. [
  51820. {
  51821. name: "Big",
  51822. height: math.unit(3, "meters"),
  51823. default: true
  51824. },
  51825. ]
  51826. ))
  51827. characterMakers.push(() => makeCharacter(
  51828. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51829. {
  51830. normal: {
  51831. height: math.unit(6 + 6/12, "feet"),
  51832. weight: math.unit(275, "lb"),
  51833. name: "Front",
  51834. image: {
  51835. source: "./media/characters/cadbunny/normal.svg",
  51836. extra: 1129/947,
  51837. bottom: 93/1222
  51838. },
  51839. default: true,
  51840. form: "normal"
  51841. },
  51842. gigantamax: {
  51843. height: math.unit(26, "feet"),
  51844. weight: math.unit(16000, "lb"),
  51845. name: "Front",
  51846. image: {
  51847. source: "./media/characters/cadbunny/gigantamax.svg",
  51848. extra: 1133/944,
  51849. bottom: 90/1223
  51850. },
  51851. default: true,
  51852. form: "gigantamax"
  51853. },
  51854. },
  51855. [
  51856. {
  51857. name: "Normal",
  51858. height: math.unit(6 + 6/12, "feet"),
  51859. default: true,
  51860. form: "normal"
  51861. },
  51862. {
  51863. name: "Small",
  51864. height: math.unit(26, "feet"),
  51865. default: true,
  51866. form: "gigantamax"
  51867. },
  51868. {
  51869. name: "Large",
  51870. height: math.unit(78, "feet"),
  51871. form: "gigantamax"
  51872. },
  51873. ],
  51874. {
  51875. "normal": {
  51876. name: "Normal",
  51877. default: true
  51878. },
  51879. "gigantamax": {
  51880. name: "Gigantamax"
  51881. }
  51882. }
  51883. ))
  51884. characterMakers.push(() => makeCharacter(
  51885. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51886. {
  51887. anthroFront: {
  51888. height: math.unit(8, "feet"),
  51889. weight: math.unit(300, "lb"),
  51890. name: "Front",
  51891. image: {
  51892. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51893. extra: 1272/1176,
  51894. bottom: 53/1325
  51895. },
  51896. form: "anthro",
  51897. default: true
  51898. },
  51899. feralSide: {
  51900. height: math.unit(4, "feet"),
  51901. weight: math.unit(250, "lb"),
  51902. name: "Side",
  51903. image: {
  51904. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51905. extra: 731/621,
  51906. bottom: 0/731
  51907. },
  51908. form: "feral",
  51909. default: true
  51910. },
  51911. },
  51912. [
  51913. {
  51914. name: "Regular",
  51915. height: math.unit(8, "feet"),
  51916. form: "anthro"
  51917. },
  51918. {
  51919. name: "Macro",
  51920. height: math.unit(250, "feet"),
  51921. form: "anthro",
  51922. default: true
  51923. },
  51924. {
  51925. name: "Regular",
  51926. height: math.unit(4, "feet"),
  51927. form: "feral"
  51928. },
  51929. {
  51930. name: "Macro",
  51931. height: math.unit(125, "feet"),
  51932. form: "feral",
  51933. default: true
  51934. },
  51935. ],
  51936. {
  51937. "anthro": {
  51938. name: "Anthro",
  51939. default: true
  51940. },
  51941. "feral": {
  51942. name: "Feral",
  51943. },
  51944. }
  51945. ))
  51946. characterMakers.push(() => makeCharacter(
  51947. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51948. {
  51949. front: {
  51950. height: math.unit(11 + 10/12, "feet"),
  51951. weight: math.unit(1587, "kg"),
  51952. name: "Front",
  51953. image: {
  51954. source: "./media/characters/maple-javira-dragon/front.svg",
  51955. extra: 1136/744,
  51956. bottom: 73/1209
  51957. }
  51958. },
  51959. side: {
  51960. height: math.unit(11 + 10/12, "feet"),
  51961. weight: math.unit(1587, "kg"),
  51962. name: "Side",
  51963. image: {
  51964. source: "./media/characters/maple-javira-dragon/side.svg",
  51965. extra: 712/505,
  51966. bottom: 17/729
  51967. }
  51968. },
  51969. head: {
  51970. height: math.unit(8.05, "feet"),
  51971. name: "Head",
  51972. image: {
  51973. source: "./media/characters/maple-javira-dragon/head.svg",
  51974. extra: 1420/1344,
  51975. bottom: 0/1420
  51976. }
  51977. },
  51978. },
  51979. [
  51980. {
  51981. name: "Normal",
  51982. height: math.unit(11 + 10/12, "feet"),
  51983. default: true
  51984. },
  51985. ]
  51986. ))
  51987. characterMakers.push(() => makeCharacter(
  51988. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51989. {
  51990. front: {
  51991. height: math.unit(117, "cm"),
  51992. weight: math.unit(50, "kg"),
  51993. name: "Front",
  51994. image: {
  51995. source: "./media/characters/sonia-wyverntail/front.svg",
  51996. extra: 708/592,
  51997. bottom: 25/733
  51998. }
  51999. },
  52000. },
  52001. [
  52002. {
  52003. name: "Normal",
  52004. height: math.unit(117, "cm"),
  52005. default: true
  52006. },
  52007. ]
  52008. ))
  52009. characterMakers.push(() => makeCharacter(
  52010. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52011. {
  52012. front: {
  52013. height: math.unit(6 + 5/12, "feet"),
  52014. name: "Front",
  52015. image: {
  52016. source: "./media/characters/micah/front.svg",
  52017. extra: 1758/1546,
  52018. bottom: 214/1972
  52019. }
  52020. },
  52021. },
  52022. [
  52023. {
  52024. name: "Normal",
  52025. height: math.unit(6 + 5/12, "feet"),
  52026. default: true
  52027. },
  52028. ]
  52029. ))
  52030. characterMakers.push(() => makeCharacter(
  52031. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52032. {
  52033. front: {
  52034. height: math.unit(1.75, "meters"),
  52035. weight: math.unit(100, "kg"),
  52036. name: "Front",
  52037. image: {
  52038. source: "./media/characters/zarya/front.svg",
  52039. extra: 741/735,
  52040. bottom: 44/785
  52041. },
  52042. extraAttributes: {
  52043. "tailLength": {
  52044. name: "Tail Length",
  52045. power: 1,
  52046. type: "length",
  52047. base: math.unit(180, "cm")
  52048. },
  52049. "pawLength": {
  52050. name: "Paw Length",
  52051. power: 1,
  52052. type: "length",
  52053. base: math.unit(31, "cm")
  52054. },
  52055. }
  52056. },
  52057. side: {
  52058. height: math.unit(1.75, "meters"),
  52059. weight: math.unit(100, "kg"),
  52060. name: "Side",
  52061. image: {
  52062. source: "./media/characters/zarya/side.svg",
  52063. extra: 776/770,
  52064. bottom: 17/793
  52065. },
  52066. extraAttributes: {
  52067. "tailLength": {
  52068. name: "Tail Length",
  52069. power: 1,
  52070. type: "length",
  52071. base: math.unit(180, "cm")
  52072. },
  52073. "pawLength": {
  52074. name: "Paw Length",
  52075. power: 1,
  52076. type: "length",
  52077. base: math.unit(31, "cm")
  52078. },
  52079. }
  52080. },
  52081. back: {
  52082. height: math.unit(1.75, "meters"),
  52083. weight: math.unit(100, "kg"),
  52084. name: "Back",
  52085. image: {
  52086. source: "./media/characters/zarya/back.svg",
  52087. extra: 741/735,
  52088. bottom: 44/785
  52089. },
  52090. extraAttributes: {
  52091. "tailLength": {
  52092. name: "Tail Length",
  52093. power: 1,
  52094. type: "length",
  52095. base: math.unit(180, "cm")
  52096. },
  52097. "pawLength": {
  52098. name: "Paw Length",
  52099. power: 1,
  52100. type: "length",
  52101. base: math.unit(31, "cm")
  52102. },
  52103. }
  52104. },
  52105. frontNoTail: {
  52106. height: math.unit(1.75, "meters"),
  52107. weight: math.unit(100, "kg"),
  52108. name: "Front (No Tail)",
  52109. image: {
  52110. source: "./media/characters/zarya/front-no-tail.svg",
  52111. extra: 741/735,
  52112. bottom: 44/785
  52113. },
  52114. extraAttributes: {
  52115. "tailLength": {
  52116. name: "Tail Length",
  52117. power: 1,
  52118. type: "length",
  52119. base: math.unit(180, "cm")
  52120. },
  52121. "pawLength": {
  52122. name: "Paw Length",
  52123. power: 1,
  52124. type: "length",
  52125. base: math.unit(31, "cm")
  52126. },
  52127. }
  52128. },
  52129. dressed: {
  52130. height: math.unit(1.75, "meters"),
  52131. weight: math.unit(100, "kg"),
  52132. name: "Dressed",
  52133. image: {
  52134. source: "./media/characters/zarya/dressed.svg",
  52135. extra: 683/672,
  52136. bottom: 79/762
  52137. },
  52138. extraAttributes: {
  52139. "tailLength": {
  52140. name: "Tail Length",
  52141. power: 1,
  52142. type: "length",
  52143. base: math.unit(180, "cm")
  52144. },
  52145. "pawLength": {
  52146. name: "Paw Length",
  52147. power: 1,
  52148. type: "length",
  52149. base: math.unit(31, "cm")
  52150. },
  52151. }
  52152. },
  52153. },
  52154. [
  52155. {
  52156. name: "Micro",
  52157. height: math.unit(5, "cm")
  52158. },
  52159. {
  52160. name: "Normal",
  52161. height: math.unit(1.75, "meters"),
  52162. default: true
  52163. },
  52164. {
  52165. name: "Macro",
  52166. height: math.unit(122, "meters")
  52167. },
  52168. ]
  52169. ))
  52170. characterMakers.push(() => makeCharacter(
  52171. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52172. {
  52173. front: {
  52174. height: math.unit(7.5, "feet"),
  52175. name: "Front",
  52176. image: {
  52177. source: "./media/characters/sven-hatisson/front.svg",
  52178. extra: 917/857,
  52179. bottom: 42/959
  52180. }
  52181. },
  52182. back: {
  52183. height: math.unit(7.5, "feet"),
  52184. name: "Back",
  52185. image: {
  52186. source: "./media/characters/sven-hatisson/back.svg",
  52187. extra: 903/856,
  52188. bottom: 15/918
  52189. }
  52190. },
  52191. },
  52192. [
  52193. {
  52194. name: "Base Height",
  52195. height: math.unit(7.5, "feet")
  52196. },
  52197. {
  52198. name: "Usual Height",
  52199. height: math.unit(13.5, "feet"),
  52200. default: true
  52201. },
  52202. {
  52203. name: "Smaller Macro",
  52204. height: math.unit(85, "feet")
  52205. },
  52206. {
  52207. name: "Moderate Macro",
  52208. height: math.unit(320, "feet")
  52209. },
  52210. {
  52211. name: "Large Macro",
  52212. height: math.unit(1000, "feet")
  52213. },
  52214. {
  52215. name: "Largest Size",
  52216. height: math.unit(2, "miles")
  52217. },
  52218. ]
  52219. ))
  52220. characterMakers.push(() => makeCharacter(
  52221. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52222. {
  52223. side: {
  52224. height: math.unit(1.8, "meters"),
  52225. weight: math.unit(275, "kg"),
  52226. name: "Side",
  52227. image: {
  52228. source: "./media/characters/terra/side.svg",
  52229. extra: 1273/1147,
  52230. bottom: 0/1273
  52231. }
  52232. },
  52233. },
  52234. [
  52235. {
  52236. name: "Normal",
  52237. height: math.unit(16.2, "meters"),
  52238. default: true
  52239. },
  52240. ]
  52241. ))
  52242. characterMakers.push(() => makeCharacter(
  52243. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52244. {
  52245. borzoiFront: {
  52246. height: math.unit(6 + 9/12, "feet"),
  52247. name: "Front",
  52248. image: {
  52249. source: "./media/characters/rae/borzoi-front.svg",
  52250. extra: 1161/1098,
  52251. bottom: 31/1192
  52252. },
  52253. form: "borzoi",
  52254. default: true
  52255. },
  52256. werewolfFront: {
  52257. height: math.unit(8 + 7/12, "feet"),
  52258. name: "Front",
  52259. image: {
  52260. source: "./media/characters/rae/werewolf-front.svg",
  52261. extra: 1411/1334,
  52262. bottom: 127/1538
  52263. },
  52264. form: "werewolf",
  52265. default: true
  52266. },
  52267. },
  52268. [
  52269. {
  52270. name: "Normal",
  52271. height: math.unit(6 + 9/12, "feet"),
  52272. default: true,
  52273. form: "borzoi"
  52274. },
  52275. {
  52276. name: "Normal",
  52277. height: math.unit(8 + 7/12, "feet"),
  52278. default: true,
  52279. form: "werewolf"
  52280. },
  52281. ],
  52282. {
  52283. "borzoi": {
  52284. name: "Borzoi",
  52285. default: true
  52286. },
  52287. "werewolf": {
  52288. name: "Werewolf",
  52289. },
  52290. }
  52291. ))
  52292. characterMakers.push(() => makeCharacter(
  52293. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52294. {
  52295. front: {
  52296. height: math.unit(8 + 7/12, "feet"),
  52297. weight: math.unit(482, "lb"),
  52298. name: "Front",
  52299. image: {
  52300. source: "./media/characters/kit/front.svg",
  52301. extra: 1247/1103,
  52302. bottom: 41/1288
  52303. }
  52304. },
  52305. back: {
  52306. height: math.unit(8 + 7/12, "feet"),
  52307. weight: math.unit(482, "lb"),
  52308. name: "Back",
  52309. image: {
  52310. source: "./media/characters/kit/back.svg",
  52311. extra: 1252/1123,
  52312. bottom: 21/1273
  52313. }
  52314. },
  52315. paw: {
  52316. height: math.unit(1.46, "feet"),
  52317. name: "Paw",
  52318. image: {
  52319. source: "./media/characters/kit/paw.svg"
  52320. }
  52321. },
  52322. },
  52323. [
  52324. {
  52325. name: "Normal",
  52326. height: math.unit(2.61, "meters"),
  52327. default: true
  52328. },
  52329. {
  52330. name: "\"Tall\"",
  52331. height: math.unit(8.21, "meters")
  52332. },
  52333. {
  52334. name: "Tall",
  52335. height: math.unit(19.6, "meters")
  52336. },
  52337. {
  52338. name: "Very Tall",
  52339. height: math.unit(57.91, "meters")
  52340. },
  52341. {
  52342. name: "Semi-Macro",
  52343. height: math.unit(138.64, "meters")
  52344. },
  52345. {
  52346. name: "Macro",
  52347. height: math.unit(831.99, "meters")
  52348. },
  52349. {
  52350. name: "EX-Macro",
  52351. height: math.unit(96451121, "meters")
  52352. },
  52353. {
  52354. name: "S1-Omnipotent",
  52355. height: math.unit(4.42074e+9, "meters")
  52356. },
  52357. {
  52358. name: "S2-Omnipotent",
  52359. height: math.unit(9.42074e+17, "meters")
  52360. },
  52361. {
  52362. name: "Omnipotent",
  52363. height: math.unit(4.23112e+24, "meters")
  52364. },
  52365. {
  52366. name: "Hypergod",
  52367. height: math.unit(5.05176e+27, "meters")
  52368. },
  52369. {
  52370. name: "Hypergod-EX",
  52371. height: math.unit(9.45532e+49, "meters")
  52372. },
  52373. {
  52374. name: "Hypergod-SP",
  52375. height: math.unit(9.45532e+195, "meters")
  52376. },
  52377. ]
  52378. ))
  52379. characterMakers.push(() => makeCharacter(
  52380. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52381. {
  52382. side: {
  52383. height: math.unit(0.6, "meters"),
  52384. weight: math.unit(24, "kg"),
  52385. name: "Side",
  52386. image: {
  52387. source: "./media/characters/celeste/side.svg",
  52388. extra: 810/517,
  52389. bottom: 53/863
  52390. }
  52391. },
  52392. },
  52393. [
  52394. {
  52395. name: "Velociraptor",
  52396. height: math.unit(0.6, "meters"),
  52397. default: true
  52398. },
  52399. {
  52400. name: "Utahraptor",
  52401. height: math.unit(1.8, "meters")
  52402. },
  52403. {
  52404. name: "Gallimimus",
  52405. height: math.unit(4.0, "meters")
  52406. },
  52407. {
  52408. name: "Large",
  52409. height: math.unit(20, "meters")
  52410. },
  52411. {
  52412. name: "Planetary",
  52413. height: math.unit(50, "megameters")
  52414. },
  52415. {
  52416. name: "Stellar",
  52417. height: math.unit(1.5, "gigameters")
  52418. },
  52419. {
  52420. name: "Galactic",
  52421. height: math.unit(100, "exameters")
  52422. },
  52423. ]
  52424. ))
  52425. characterMakers.push(() => makeCharacter(
  52426. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52427. {
  52428. front: {
  52429. height: math.unit(6, "feet"),
  52430. weight: math.unit(210, "lb"),
  52431. name: "Front",
  52432. image: {
  52433. source: "./media/characters/glacia/front.svg",
  52434. extra: 958/901,
  52435. bottom: 45/1003
  52436. }
  52437. },
  52438. },
  52439. [
  52440. {
  52441. name: "Macro",
  52442. height: math.unit(1000, "meters"),
  52443. default: true
  52444. },
  52445. ]
  52446. ))
  52447. characterMakers.push(() => makeCharacter(
  52448. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52449. {
  52450. front: {
  52451. height: math.unit(4, "meters"),
  52452. name: "Front",
  52453. image: {
  52454. source: "./media/characters/giri/front.svg",
  52455. extra: 966/894,
  52456. bottom: 21/987
  52457. }
  52458. },
  52459. },
  52460. [
  52461. {
  52462. name: "Normal",
  52463. height: math.unit(4, "meters"),
  52464. default: true
  52465. },
  52466. ]
  52467. ))
  52468. characterMakers.push(() => makeCharacter(
  52469. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52470. {
  52471. back: {
  52472. height: math.unit(4, "feet"),
  52473. weight: math.unit(37, "lb"),
  52474. name: "Back",
  52475. image: {
  52476. source: "./media/characters/tin/back.svg",
  52477. extra: 845/780,
  52478. bottom: 28/873
  52479. }
  52480. },
  52481. },
  52482. [
  52483. {
  52484. name: "Normal",
  52485. height: math.unit(4, "feet"),
  52486. default: true
  52487. },
  52488. ]
  52489. ))
  52490. characterMakers.push(() => makeCharacter(
  52491. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52492. {
  52493. front: {
  52494. height: math.unit(25, "feet"),
  52495. name: "Front",
  52496. image: {
  52497. source: "./media/characters/cadenza-vivace/front.svg",
  52498. extra: 1842/1578,
  52499. bottom: 30/1872
  52500. }
  52501. },
  52502. },
  52503. [
  52504. {
  52505. name: "Macro",
  52506. height: math.unit(25, "feet"),
  52507. default: true
  52508. },
  52509. ]
  52510. ))
  52511. characterMakers.push(() => makeCharacter(
  52512. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52513. {
  52514. front: {
  52515. height: math.unit(10, "feet"),
  52516. weight: math.unit(625, "kg"),
  52517. name: "Front",
  52518. image: {
  52519. source: "./media/characters/zain/front.svg",
  52520. extra: 1682/1498,
  52521. bottom: 223/1905
  52522. }
  52523. },
  52524. back: {
  52525. height: math.unit(10, "feet"),
  52526. weight: math.unit(625, "kg"),
  52527. name: "Back",
  52528. image: {
  52529. source: "./media/characters/zain/back.svg",
  52530. extra: 1814/1657,
  52531. bottom: 152/1966
  52532. }
  52533. },
  52534. head: {
  52535. height: math.unit(10, "feet"),
  52536. weight: math.unit(625, "kg"),
  52537. name: "Head",
  52538. image: {
  52539. source: "./media/characters/zain/head.svg",
  52540. extra: 1059/762,
  52541. bottom: 0/1059
  52542. }
  52543. },
  52544. },
  52545. [
  52546. {
  52547. name: "Normal",
  52548. height: math.unit(10, "feet"),
  52549. default: true
  52550. },
  52551. ]
  52552. ))
  52553. characterMakers.push(() => makeCharacter(
  52554. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52555. {
  52556. front: {
  52557. height: math.unit(6 + 5/12, "feet"),
  52558. weight: math.unit(750, "lb"),
  52559. name: "Front",
  52560. image: {
  52561. source: "./media/characters/ruchex/front.svg",
  52562. extra: 877/820,
  52563. bottom: 17/894
  52564. },
  52565. extraAttributes: {
  52566. "width": {
  52567. name: "Width",
  52568. power: 1,
  52569. type: "length",
  52570. base: math.unit(4.757, "feet")
  52571. },
  52572. }
  52573. },
  52574. },
  52575. [
  52576. {
  52577. name: "Normal",
  52578. height: math.unit(6 + 5/12, "feet"),
  52579. default: true
  52580. },
  52581. ]
  52582. ))
  52583. characterMakers.push(() => makeCharacter(
  52584. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52585. {
  52586. dressedFront: {
  52587. height: math.unit(191, "cm"),
  52588. weight: math.unit(80, "kg"),
  52589. name: "Front",
  52590. image: {
  52591. source: "./media/characters/buster/dressed-front.svg",
  52592. extra: 1022/973,
  52593. bottom: 69/1091
  52594. }
  52595. },
  52596. dressedBack: {
  52597. height: math.unit(191, "cm"),
  52598. weight: math.unit(80, "kg"),
  52599. name: "Back",
  52600. image: {
  52601. source: "./media/characters/buster/dressed-back.svg",
  52602. extra: 1018/970,
  52603. bottom: 55/1073
  52604. }
  52605. },
  52606. nudeFront: {
  52607. height: math.unit(191, "cm"),
  52608. weight: math.unit(80, "kg"),
  52609. name: "Front (Nude)",
  52610. image: {
  52611. source: "./media/characters/buster/nude-front.svg",
  52612. extra: 1022/973,
  52613. bottom: 69/1091
  52614. }
  52615. },
  52616. nudeBack: {
  52617. height: math.unit(191, "cm"),
  52618. weight: math.unit(80, "kg"),
  52619. name: "Back (Nude)",
  52620. image: {
  52621. source: "./media/characters/buster/nude-back.svg",
  52622. extra: 1018/970,
  52623. bottom: 55/1073
  52624. }
  52625. },
  52626. dick: {
  52627. height: math.unit(2.59, "feet"),
  52628. name: "Dick",
  52629. image: {
  52630. source: "./media/characters/buster/dick.svg"
  52631. }
  52632. },
  52633. ass: {
  52634. height: math.unit(1.2, "feet"),
  52635. name: "Ass",
  52636. image: {
  52637. source: "./media/characters/buster/ass.svg"
  52638. }
  52639. },
  52640. },
  52641. [
  52642. {
  52643. name: "Normal",
  52644. height: math.unit(191, "cm"),
  52645. default: true
  52646. },
  52647. ]
  52648. ))
  52649. characterMakers.push(() => makeCharacter(
  52650. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52651. {
  52652. side: {
  52653. height: math.unit(8.1, "feet"),
  52654. weight: math.unit(3500, "lb"),
  52655. name: "Side",
  52656. image: {
  52657. source: "./media/characters/sonya/side.svg",
  52658. extra: 1730/1317,
  52659. bottom: 86/1816
  52660. }
  52661. },
  52662. },
  52663. [
  52664. {
  52665. name: "Normal",
  52666. height: math.unit(8.1, "feet"),
  52667. default: true
  52668. },
  52669. ]
  52670. ))
  52671. characterMakers.push(() => makeCharacter(
  52672. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52673. {
  52674. front: {
  52675. height: math.unit(6, "feet"),
  52676. weight: math.unit(150, "lb"),
  52677. name: "Front",
  52678. image: {
  52679. source: "./media/characters/cadence-andrysiak/front.svg",
  52680. extra: 1164/1121,
  52681. bottom: 60/1224
  52682. }
  52683. },
  52684. back: {
  52685. height: math.unit(6, "feet"),
  52686. weight: math.unit(150, "lb"),
  52687. name: "Back",
  52688. image: {
  52689. source: "./media/characters/cadence-andrysiak/back.svg",
  52690. extra: 1200/1165,
  52691. bottom: 9/1209
  52692. }
  52693. },
  52694. dressed: {
  52695. height: math.unit(6, "feet"),
  52696. weight: math.unit(150, "lb"),
  52697. name: "Dressed",
  52698. image: {
  52699. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52700. extra: 1164/1121,
  52701. bottom: 60/1224
  52702. }
  52703. },
  52704. },
  52705. [
  52706. {
  52707. name: "Micro",
  52708. height: math.unit(1, "mm")
  52709. },
  52710. {
  52711. name: "Normal",
  52712. height: math.unit(6, "feet"),
  52713. default: true
  52714. },
  52715. ]
  52716. ))
  52717. characterMakers.push(() => makeCharacter(
  52718. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52719. {
  52720. front: {
  52721. height: math.unit(60, "inches"),
  52722. weight: math.unit(16, "lb"),
  52723. preyCapacity: math.unit(80, "liters"),
  52724. name: "Front",
  52725. image: {
  52726. source: "./media/characters/penny-lynx/front.svg",
  52727. extra: 1959/1769,
  52728. bottom: 49/2008
  52729. }
  52730. },
  52731. },
  52732. [
  52733. {
  52734. name: "Nokia",
  52735. height: math.unit(2, "inches")
  52736. },
  52737. {
  52738. name: "Desktop",
  52739. height: math.unit(24, "inches")
  52740. },
  52741. {
  52742. name: "TV",
  52743. height: math.unit(60, "inches")
  52744. },
  52745. {
  52746. name: "Jumbotron",
  52747. height: math.unit(12, "feet")
  52748. },
  52749. {
  52750. name: "Billboard",
  52751. height: math.unit(48, "feet"),
  52752. default: true
  52753. },
  52754. {
  52755. name: "IMAX",
  52756. height: math.unit(96, "feet")
  52757. },
  52758. {
  52759. name: "SINGULARITY",
  52760. height: math.unit(864938, "miles")
  52761. },
  52762. ]
  52763. ))
  52764. characterMakers.push(() => makeCharacter(
  52765. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52766. {
  52767. front: {
  52768. height: math.unit(5 + 4/12, "feet"),
  52769. weight: math.unit(230, "lb"),
  52770. name: "Front",
  52771. image: {
  52772. source: "./media/characters/sukebe/front.svg",
  52773. extra: 2130/2038,
  52774. bottom: 90/2220
  52775. }
  52776. },
  52777. back: {
  52778. height: math.unit(3.48, "feet"),
  52779. weight: math.unit(230, "lb"),
  52780. name: "Back",
  52781. image: {
  52782. source: "./media/characters/sukebe/back.svg",
  52783. extra: 1670/1604,
  52784. bottom: 0/1670
  52785. }
  52786. },
  52787. },
  52788. [
  52789. {
  52790. name: "Normal",
  52791. height: math.unit(5 + 4/12, "feet"),
  52792. default: true
  52793. },
  52794. ]
  52795. ))
  52796. characterMakers.push(() => makeCharacter(
  52797. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52798. {
  52799. front: {
  52800. height: math.unit(6, "feet"),
  52801. name: "Front",
  52802. image: {
  52803. source: "./media/characters/nylla/front.svg",
  52804. extra: 1868/1699,
  52805. bottom: 97/1965
  52806. }
  52807. },
  52808. back: {
  52809. height: math.unit(6, "feet"),
  52810. name: "Back",
  52811. image: {
  52812. source: "./media/characters/nylla/back.svg",
  52813. extra: 1889/1712,
  52814. bottom: 93/1982
  52815. }
  52816. },
  52817. frontNsfw: {
  52818. height: math.unit(6, "feet"),
  52819. name: "Front (NSFW)",
  52820. image: {
  52821. source: "./media/characters/nylla/front-nsfw.svg",
  52822. extra: 1868/1699,
  52823. bottom: 97/1965
  52824. },
  52825. extraAttributes: {
  52826. "dickLength": {
  52827. name: "Dick Length",
  52828. power: 1,
  52829. type: "length",
  52830. base: math.unit(1.4, "feet")
  52831. },
  52832. "cumVolume": {
  52833. name: "Cum Volume",
  52834. power: 3,
  52835. type: "volume",
  52836. base: math.unit(100, "mL")
  52837. },
  52838. }
  52839. },
  52840. backNsfw: {
  52841. height: math.unit(6, "feet"),
  52842. name: "Back (NSFW)",
  52843. image: {
  52844. source: "./media/characters/nylla/back-nsfw.svg",
  52845. extra: 1889/1712,
  52846. bottom: 93/1982
  52847. }
  52848. },
  52849. maw: {
  52850. height: math.unit(2.10, "feet"),
  52851. name: "Maw",
  52852. image: {
  52853. source: "./media/characters/nylla/maw.svg"
  52854. }
  52855. },
  52856. paws: {
  52857. height: math.unit(2.06, "feet"),
  52858. name: "Paws",
  52859. image: {
  52860. source: "./media/characters/nylla/paws.svg"
  52861. }
  52862. },
  52863. muzzle: {
  52864. height: math.unit(0.61, "feet"),
  52865. name: "Muzzle",
  52866. image: {
  52867. source: "./media/characters/nylla/muzzle.svg"
  52868. }
  52869. },
  52870. sheath: {
  52871. height: math.unit(1.305, "feet"),
  52872. name: "Sheath",
  52873. image: {
  52874. source: "./media/characters/nylla/sheath.svg"
  52875. }
  52876. },
  52877. },
  52878. [
  52879. {
  52880. name: "Micro",
  52881. height: math.unit(7.5, "inches")
  52882. },
  52883. {
  52884. name: "Normal",
  52885. height: math.unit(7, "feet"),
  52886. default: true
  52887. },
  52888. {
  52889. name: "Macro",
  52890. height: math.unit(60, "feet")
  52891. },
  52892. {
  52893. name: "Mega",
  52894. height: math.unit(200, "feet")
  52895. },
  52896. ]
  52897. ))
  52898. characterMakers.push(() => makeCharacter(
  52899. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52900. {
  52901. front: {
  52902. height: math.unit(10, "feet"),
  52903. weight: math.unit(2300, "lb"),
  52904. name: "Front",
  52905. image: {
  52906. source: "./media/characters/hunt3r/front.svg",
  52907. extra: 1909/1742,
  52908. bottom: 46/1955
  52909. }
  52910. },
  52911. },
  52912. [
  52913. {
  52914. name: "Normal",
  52915. height: math.unit(10, "feet"),
  52916. default: true
  52917. },
  52918. ]
  52919. ))
  52920. characterMakers.push(() => makeCharacter(
  52921. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52922. {
  52923. dressed: {
  52924. height: math.unit(11, "feet"),
  52925. weight: math.unit(18500, "lb"),
  52926. preyCapacity: math.unit(9, "people"),
  52927. name: "Dressed",
  52928. image: {
  52929. source: "./media/characters/cylphis/dressed.svg",
  52930. extra: 1028/1003,
  52931. bottom: 75/1103
  52932. },
  52933. },
  52934. undressed: {
  52935. height: math.unit(11, "feet"),
  52936. weight: math.unit(18500, "lb"),
  52937. preyCapacity: math.unit(9, "people"),
  52938. name: "Undressed",
  52939. image: {
  52940. source: "./media/characters/cylphis/undressed.svg",
  52941. extra: 1028/1003,
  52942. bottom: 75/1103
  52943. }
  52944. },
  52945. full: {
  52946. height: math.unit(11, "feet"),
  52947. weight: math.unit(18500 + 150*9, "lb"),
  52948. preyCapacity: math.unit(9, "people"),
  52949. name: "Full",
  52950. image: {
  52951. source: "./media/characters/cylphis/full.svg",
  52952. extra: 1028/1003,
  52953. bottom: 75/1103
  52954. }
  52955. },
  52956. },
  52957. [
  52958. {
  52959. name: "Small",
  52960. height: math.unit(8, "feet")
  52961. },
  52962. {
  52963. name: "Normal",
  52964. height: math.unit(11, "feet"),
  52965. default: true
  52966. },
  52967. ]
  52968. ))
  52969. characterMakers.push(() => makeCharacter(
  52970. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52971. {
  52972. front: {
  52973. height: math.unit(2 + 7/12, "feet"),
  52974. name: "Front",
  52975. image: {
  52976. source: "./media/characters/orishan/front.svg",
  52977. extra: 1058/1023,
  52978. bottom: 23/1081
  52979. }
  52980. },
  52981. back: {
  52982. height: math.unit(2 + 7/12, "feet"),
  52983. name: "Back",
  52984. image: {
  52985. source: "./media/characters/orishan/back.svg",
  52986. extra: 1058/1023,
  52987. bottom: 23/1081
  52988. }
  52989. },
  52990. },
  52991. [
  52992. {
  52993. name: "Micro",
  52994. height: math.unit(2, "cm")
  52995. },
  52996. {
  52997. name: "Normal",
  52998. height: math.unit(2 + 7/12, "feet"),
  52999. default: true
  53000. },
  53001. ]
  53002. ))
  53003. characterMakers.push(() => makeCharacter(
  53004. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53005. {
  53006. front: {
  53007. height: math.unit(3, "meters"),
  53008. weight: math.unit(508, "kg"),
  53009. name: "Front",
  53010. image: {
  53011. source: "./media/characters/seranis/front.svg",
  53012. extra: 1478/1454,
  53013. bottom: 41/1519
  53014. }
  53015. },
  53016. },
  53017. [
  53018. {
  53019. name: "Normal",
  53020. height: math.unit(3, "meters"),
  53021. default: true
  53022. },
  53023. {
  53024. name: "Macro",
  53025. height: math.unit(108, "meters")
  53026. },
  53027. {
  53028. name: "Megamacro",
  53029. height: math.unit(1250, "meters")
  53030. },
  53031. ]
  53032. ))
  53033. characterMakers.push(() => makeCharacter(
  53034. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53035. {
  53036. undressed: {
  53037. height: math.unit(5 + 3/12, "feet"),
  53038. name: "Undressed",
  53039. image: {
  53040. source: "./media/characters/ankou/undressed.svg",
  53041. extra: 1301/1213,
  53042. bottom: 87/1388
  53043. }
  53044. },
  53045. dressed: {
  53046. height: math.unit(5 + 3/12, "feet"),
  53047. name: "Dressed",
  53048. image: {
  53049. source: "./media/characters/ankou/dressed.svg",
  53050. extra: 1301/1213,
  53051. bottom: 87/1388
  53052. }
  53053. },
  53054. head: {
  53055. height: math.unit(1.61, "feet"),
  53056. name: "Head",
  53057. image: {
  53058. source: "./media/characters/ankou/head.svg"
  53059. }
  53060. },
  53061. },
  53062. [
  53063. {
  53064. name: "Normal",
  53065. height: math.unit(5 + 3/12, "feet"),
  53066. default: true
  53067. },
  53068. ]
  53069. ))
  53070. characterMakers.push(() => makeCharacter(
  53071. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53072. {
  53073. side: {
  53074. height: math.unit(6 + 3/12, "feet"),
  53075. weight: math.unit(200, "kg"),
  53076. name: "Side",
  53077. image: {
  53078. source: "./media/characters/juniper-skunktaur/side.svg",
  53079. extra: 1574/1229,
  53080. bottom: 38/1612
  53081. }
  53082. },
  53083. front: {
  53084. height: math.unit(6 + 3/12, "feet"),
  53085. weight: math.unit(200, "kg"),
  53086. name: "Front",
  53087. image: {
  53088. source: "./media/characters/juniper-skunktaur/front.svg",
  53089. extra: 1337/1278,
  53090. bottom: 22/1359
  53091. }
  53092. },
  53093. back: {
  53094. height: math.unit(6 + 3/12, "feet"),
  53095. weight: math.unit(200, "kg"),
  53096. name: "Back",
  53097. image: {
  53098. source: "./media/characters/juniper-skunktaur/back.svg",
  53099. extra: 1618/1273,
  53100. bottom: 13/1631
  53101. }
  53102. },
  53103. top: {
  53104. height: math.unit(2.62, "feet"),
  53105. weight: math.unit(200, "kg"),
  53106. name: "Top",
  53107. image: {
  53108. source: "./media/characters/juniper-skunktaur/top.svg"
  53109. }
  53110. },
  53111. },
  53112. [
  53113. {
  53114. name: "Normal",
  53115. height: math.unit(6 + 3/12, "feet"),
  53116. default: true
  53117. },
  53118. ]
  53119. ))
  53120. characterMakers.push(() => makeCharacter(
  53121. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53122. {
  53123. front: {
  53124. height: math.unit(20.5, "feet"),
  53125. name: "Front",
  53126. image: {
  53127. source: "./media/characters/rei/front.svg",
  53128. extra: 1349/1195,
  53129. bottom: 31/1380
  53130. }
  53131. },
  53132. back: {
  53133. height: math.unit(20.5, "feet"),
  53134. name: "Back",
  53135. image: {
  53136. source: "./media/characters/rei/back.svg",
  53137. extra: 1358/1204,
  53138. bottom: 22/1380
  53139. }
  53140. },
  53141. pawsDigi: {
  53142. height: math.unit(3.45, "feet"),
  53143. name: "Paws (Digi)",
  53144. image: {
  53145. source: "./media/characters/rei/paws-digi.svg"
  53146. }
  53147. },
  53148. pawsPlanti: {
  53149. height: math.unit(3.45, "feet"),
  53150. name: "Paws (Planti)",
  53151. image: {
  53152. source: "./media/characters/rei/paws-planti.svg"
  53153. }
  53154. },
  53155. },
  53156. [
  53157. {
  53158. name: "Normal",
  53159. height: math.unit(20.5, "feet"),
  53160. default: true
  53161. },
  53162. ]
  53163. ))
  53164. characterMakers.push(() => makeCharacter(
  53165. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53166. {
  53167. front: {
  53168. height: math.unit(5 + 11/12, "feet"),
  53169. name: "Front",
  53170. image: {
  53171. source: "./media/characters/carina/front.svg",
  53172. extra: 1720/1449,
  53173. bottom: 14/1734
  53174. }
  53175. },
  53176. back: {
  53177. height: math.unit(5 + 11/12, "feet"),
  53178. name: "Back",
  53179. image: {
  53180. source: "./media/characters/carina/back.svg",
  53181. extra: 1493/1445,
  53182. bottom: 17/1510
  53183. }
  53184. },
  53185. paw: {
  53186. height: math.unit(0.92, "feet"),
  53187. name: "Paw",
  53188. image: {
  53189. source: "./media/characters/carina/paw.svg"
  53190. }
  53191. },
  53192. },
  53193. [
  53194. {
  53195. name: "Normal",
  53196. height: math.unit(5 + 11/12, "feet"),
  53197. default: true
  53198. },
  53199. ]
  53200. ))
  53201. characterMakers.push(() => makeCharacter(
  53202. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53203. {
  53204. normal_front: {
  53205. height: math.unit(4.88, "meters"),
  53206. name: "Front",
  53207. image: {
  53208. source: "./media/characters/maya/normal-front.svg",
  53209. extra: 1222/1145,
  53210. bottom: 57/1279
  53211. },
  53212. form: "normal",
  53213. default: true
  53214. },
  53215. monstrous_front: {
  53216. height: math.unit(10, "meters"),
  53217. name: "Front",
  53218. image: {
  53219. source: "./media/characters/maya/monstrous-front.svg",
  53220. extra: 1523/1109,
  53221. bottom: 113/1636
  53222. },
  53223. form: "monstrous",
  53224. extraAttributes: {
  53225. "swallowSize": {
  53226. name: "Tailmaw Bite Size",
  53227. power: 3,
  53228. type: "volume",
  53229. base: math.unit(43000, "liters")
  53230. },
  53231. }
  53232. },
  53233. taur_front: {
  53234. height: math.unit(10, "meters"),
  53235. name: "Front",
  53236. image: {
  53237. source: "./media/characters/maya/taur-front.svg",
  53238. extra: 743/506,
  53239. bottom: 101/844
  53240. },
  53241. form: "taur",
  53242. },
  53243. },
  53244. [
  53245. {
  53246. name: "Normal",
  53247. height: math.unit(4.88, "meters"),
  53248. default: true,
  53249. form: "normal"
  53250. },
  53251. {
  53252. name: "Macro",
  53253. height: math.unit(38.1, "meters"),
  53254. form: "normal"
  53255. },
  53256. {
  53257. name: "Macro+",
  53258. height: math.unit(152.4, "meters"),
  53259. form: "normal"
  53260. },
  53261. {
  53262. name: "Macro++",
  53263. height: math.unit(16.09, "km"),
  53264. form: "normal"
  53265. },
  53266. {
  53267. name: "Mega-macro",
  53268. height: math.unit(700, "megameters"),
  53269. form: "normal"
  53270. },
  53271. {
  53272. name: "Satiated",
  53273. height: math.unit(10, "meters"),
  53274. default: true,
  53275. form: "monstrous"
  53276. },
  53277. {
  53278. name: "Hungry",
  53279. height: math.unit(75, "meters"),
  53280. form: "monstrous"
  53281. },
  53282. {
  53283. name: "Ravenous",
  53284. height: math.unit(500, "meters"),
  53285. form: "monstrous"
  53286. },
  53287. {
  53288. name: "\"Normal\"",
  53289. height: math.unit(10, "meters"),
  53290. form: "taur"
  53291. },
  53292. {
  53293. name: "Macro",
  53294. height: math.unit(50, "meters"),
  53295. form: "taur"
  53296. },
  53297. ],
  53298. {
  53299. "normal": {
  53300. name: "Normal",
  53301. default: true
  53302. },
  53303. "monstrous": {
  53304. name: "Monstrous",
  53305. },
  53306. "taur": {
  53307. name: "Taur",
  53308. },
  53309. }
  53310. ))
  53311. characterMakers.push(() => makeCharacter(
  53312. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53313. {
  53314. front: {
  53315. height: math.unit(6 + 2/12, "feet"),
  53316. weight: math.unit(500, "lb"),
  53317. preyCapacity: math.unit(4, "people"),
  53318. name: "Front",
  53319. image: {
  53320. source: "./media/characters/yepir/front.svg"
  53321. }
  53322. },
  53323. side: {
  53324. height: math.unit(6 + 2/12, "feet"),
  53325. weight: math.unit(500, "lb"),
  53326. preyCapacity: math.unit(4, "people"),
  53327. name: "Side",
  53328. image: {
  53329. source: "./media/characters/yepir/side.svg"
  53330. }
  53331. },
  53332. paw: {
  53333. height: math.unit(1.05, "feet"),
  53334. name: "Paw",
  53335. image: {
  53336. source: "./media/characters/yepir/paw.svg"
  53337. }
  53338. },
  53339. },
  53340. [
  53341. {
  53342. name: "Normal",
  53343. height: math.unit(6 + 2/12, "feet"),
  53344. default: true
  53345. },
  53346. ]
  53347. ))
  53348. characterMakers.push(() => makeCharacter(
  53349. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53350. {
  53351. front: {
  53352. height: math.unit(5 + 4/12, "feet"),
  53353. name: "Front",
  53354. image: {
  53355. source: "./media/characters/russec/front.svg",
  53356. extra: 1926/1626,
  53357. bottom: 72/1998
  53358. }
  53359. },
  53360. back: {
  53361. height: math.unit(5 + 4/12, "feet"),
  53362. name: "Back",
  53363. image: {
  53364. source: "./media/characters/russec/back.svg",
  53365. extra: 1910/1591,
  53366. bottom: 48/1958
  53367. }
  53368. },
  53369. },
  53370. [
  53371. {
  53372. name: "Small",
  53373. height: math.unit(5 + 4/12, "feet")
  53374. },
  53375. {
  53376. name: "Normal",
  53377. height: math.unit(72, "feet"),
  53378. default: true
  53379. },
  53380. ]
  53381. ))
  53382. characterMakers.push(() => makeCharacter(
  53383. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53384. {
  53385. side: {
  53386. height: math.unit(12, "feet"),
  53387. name: "Side",
  53388. image: {
  53389. source: "./media/characters/cianus/side.svg",
  53390. extra: 808/526,
  53391. bottom: 61/869
  53392. }
  53393. },
  53394. },
  53395. [
  53396. {
  53397. name: "Normal",
  53398. height: math.unit(12, "feet"),
  53399. default: true
  53400. },
  53401. ]
  53402. ))
  53403. characterMakers.push(() => makeCharacter(
  53404. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53405. {
  53406. front: {
  53407. height: math.unit(9 + 6/12, "feet"),
  53408. weight: math.unit(300, "lb"),
  53409. name: "Front",
  53410. image: {
  53411. source: "./media/characters/ahab/front.svg",
  53412. extra: 1897/1868,
  53413. bottom: 121/2018
  53414. }
  53415. },
  53416. frontNsfw: {
  53417. height: math.unit(9 + 6/12, "feet"),
  53418. weight: math.unit(300, "lb"),
  53419. name: "Front-nsfw",
  53420. image: {
  53421. source: "./media/characters/ahab/front-nsfw.svg",
  53422. extra: 1897/1868,
  53423. bottom: 121/2018
  53424. }
  53425. },
  53426. },
  53427. [
  53428. {
  53429. name: "Normal",
  53430. height: math.unit(9 + 6/12, "feet")
  53431. },
  53432. {
  53433. name: "Macro",
  53434. height: math.unit(657, "feet"),
  53435. default: true
  53436. },
  53437. ]
  53438. ))
  53439. characterMakers.push(() => makeCharacter(
  53440. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53441. {
  53442. front: {
  53443. height: math.unit(2.69, "meters"),
  53444. weight: math.unit(132, "kg"),
  53445. name: "Front",
  53446. image: {
  53447. source: "./media/characters/aarkus/front.svg",
  53448. extra: 1400/1231,
  53449. bottom: 34/1434
  53450. }
  53451. },
  53452. back: {
  53453. height: math.unit(2.69, "meters"),
  53454. weight: math.unit(132, "kg"),
  53455. name: "Back",
  53456. image: {
  53457. source: "./media/characters/aarkus/back.svg",
  53458. extra: 1381/1218,
  53459. bottom: 30/1411
  53460. }
  53461. },
  53462. frontNsfw: {
  53463. height: math.unit(2.69, "meters"),
  53464. weight: math.unit(132, "kg"),
  53465. name: "Front (NSFW)",
  53466. image: {
  53467. source: "./media/characters/aarkus/front-nsfw.svg",
  53468. extra: 1400/1231,
  53469. bottom: 34/1434
  53470. }
  53471. },
  53472. foot: {
  53473. height: math.unit(1.45, "feet"),
  53474. name: "Foot",
  53475. image: {
  53476. source: "./media/characters/aarkus/foot.svg"
  53477. }
  53478. },
  53479. head: {
  53480. height: math.unit(2.85, "feet"),
  53481. name: "Head",
  53482. image: {
  53483. source: "./media/characters/aarkus/head.svg"
  53484. }
  53485. },
  53486. headAlt: {
  53487. height: math.unit(3.07, "feet"),
  53488. name: "Head (Alt)",
  53489. image: {
  53490. source: "./media/characters/aarkus/head-alt.svg"
  53491. }
  53492. },
  53493. mouth: {
  53494. height: math.unit(1.25, "feet"),
  53495. name: "Mouth",
  53496. image: {
  53497. source: "./media/characters/aarkus/mouth.svg"
  53498. }
  53499. },
  53500. dick: {
  53501. height: math.unit(1.77, "feet"),
  53502. name: "Dick",
  53503. image: {
  53504. source: "./media/characters/aarkus/dick.svg"
  53505. }
  53506. },
  53507. },
  53508. [
  53509. {
  53510. name: "Normal",
  53511. height: math.unit(2.69, "meters"),
  53512. default: true
  53513. },
  53514. {
  53515. name: "Macro",
  53516. height: math.unit(269, "meters")
  53517. },
  53518. {
  53519. name: "Macro+",
  53520. height: math.unit(672.5, "meters")
  53521. },
  53522. {
  53523. name: "Megamacro",
  53524. height: math.unit(2.017, "km")
  53525. },
  53526. ]
  53527. ))
  53528. characterMakers.push(() => makeCharacter(
  53529. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53530. {
  53531. front: {
  53532. height: math.unit(23.47, "cm"),
  53533. weight: math.unit(600, "grams"),
  53534. name: "Front",
  53535. image: {
  53536. source: "./media/characters/diode/front.svg",
  53537. extra: 1778/1396,
  53538. bottom: 95/1873
  53539. }
  53540. },
  53541. side: {
  53542. height: math.unit(23.47, "cm"),
  53543. weight: math.unit(600, "grams"),
  53544. name: "Side",
  53545. image: {
  53546. source: "./media/characters/diode/side.svg",
  53547. extra: 1831/1404,
  53548. bottom: 86/1917
  53549. }
  53550. },
  53551. wings: {
  53552. height: math.unit(0.683, "feet"),
  53553. name: "Wings",
  53554. image: {
  53555. source: "./media/characters/diode/wings.svg"
  53556. }
  53557. },
  53558. },
  53559. [
  53560. {
  53561. name: "Normal",
  53562. height: math.unit(23.47, "cm"),
  53563. default: true
  53564. },
  53565. ]
  53566. ))
  53567. characterMakers.push(() => makeCharacter(
  53568. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53569. {
  53570. front: {
  53571. height: math.unit(6 + 3/12, "feet"),
  53572. weight: math.unit(250, "lb"),
  53573. name: "Front",
  53574. image: {
  53575. source: "./media/characters/reika/front.svg",
  53576. extra: 1120/1078,
  53577. bottom: 86/1206
  53578. }
  53579. },
  53580. },
  53581. [
  53582. {
  53583. name: "Normal",
  53584. height: math.unit(6 + 3/12, "feet"),
  53585. default: true
  53586. },
  53587. ]
  53588. ))
  53589. characterMakers.push(() => makeCharacter(
  53590. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53591. {
  53592. front: {
  53593. height: math.unit(16 + 8/12, "feet"),
  53594. weight: math.unit(9000, "lb"),
  53595. name: "Front",
  53596. image: {
  53597. source: "./media/characters/lokuto-takama/front.svg",
  53598. extra: 1774/1632,
  53599. bottom: 147/1921
  53600. },
  53601. extraAttributes: {
  53602. "bustWidth": {
  53603. name: "Bust Width",
  53604. power: 1,
  53605. type: "length",
  53606. base: math.unit(2.4, "meters")
  53607. },
  53608. "breastWeight": {
  53609. name: "Breast Weight",
  53610. power: 3,
  53611. type: "mass",
  53612. base: math.unit(1000, "kg")
  53613. },
  53614. }
  53615. },
  53616. },
  53617. [
  53618. {
  53619. name: "Normal",
  53620. height: math.unit(16 + 8/12, "feet"),
  53621. default: true
  53622. },
  53623. ]
  53624. ))
  53625. characterMakers.push(() => makeCharacter(
  53626. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53627. {
  53628. front: {
  53629. height: math.unit(10, "cm"),
  53630. weight: math.unit(850, "grams"),
  53631. name: "Front",
  53632. image: {
  53633. source: "./media/characters/owak-bone/front.svg",
  53634. extra: 1965/1801,
  53635. bottom: 31/1996
  53636. }
  53637. },
  53638. },
  53639. [
  53640. {
  53641. name: "Normal",
  53642. height: math.unit(10, "cm"),
  53643. default: true
  53644. },
  53645. ]
  53646. ))
  53647. characterMakers.push(() => makeCharacter(
  53648. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53649. {
  53650. front: {
  53651. height: math.unit(2 + 6/12, "feet"),
  53652. weight: math.unit(9, "lb"),
  53653. name: "Front",
  53654. image: {
  53655. source: "./media/characters/muffin/front.svg",
  53656. extra: 1220/1195,
  53657. bottom: 84/1304
  53658. }
  53659. },
  53660. },
  53661. [
  53662. {
  53663. name: "Normal",
  53664. height: math.unit(2 + 6/12, "feet"),
  53665. default: true
  53666. },
  53667. ]
  53668. ))
  53669. characterMakers.push(() => makeCharacter(
  53670. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53671. {
  53672. front: {
  53673. height: math.unit(7, "feet"),
  53674. name: "Front",
  53675. image: {
  53676. source: "./media/characters/chimera/front.svg",
  53677. extra: 1752/1614,
  53678. bottom: 68/1820
  53679. }
  53680. },
  53681. },
  53682. [
  53683. {
  53684. name: "Normal",
  53685. height: math.unit(7, "feet")
  53686. },
  53687. {
  53688. name: "Gigamacro",
  53689. height: math.unit(2.9, "gigameters"),
  53690. default: true
  53691. },
  53692. {
  53693. name: "Universal",
  53694. height: math.unit(1.56e26, "yottameters")
  53695. },
  53696. ]
  53697. ))
  53698. characterMakers.push(() => makeCharacter(
  53699. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53700. {
  53701. front: {
  53702. height: math.unit(3, "feet"),
  53703. weight: math.unit(20, "lb"),
  53704. name: "Front",
  53705. image: {
  53706. source: "./media/characters/kit-fennec-fox/front.svg",
  53707. extra: 1027/932,
  53708. bottom: 16/1043
  53709. }
  53710. },
  53711. back: {
  53712. height: math.unit(3, "feet"),
  53713. weight: math.unit(20, "lb"),
  53714. name: "Back",
  53715. image: {
  53716. source: "./media/characters/kit-fennec-fox/back.svg",
  53717. extra: 1027/932,
  53718. bottom: 16/1043
  53719. }
  53720. },
  53721. },
  53722. [
  53723. {
  53724. name: "Normal",
  53725. height: math.unit(3, "feet"),
  53726. default: true
  53727. },
  53728. ]
  53729. ))
  53730. characterMakers.push(() => makeCharacter(
  53731. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53732. {
  53733. front: {
  53734. height: math.unit(167, "cm"),
  53735. name: "Front",
  53736. image: {
  53737. source: "./media/characters/blue-otter/front.svg",
  53738. extra: 1951/1920,
  53739. bottom: 31/1982
  53740. }
  53741. },
  53742. },
  53743. [
  53744. {
  53745. name: "Otter-Sized",
  53746. height: math.unit(100, "cm")
  53747. },
  53748. {
  53749. name: "Normal",
  53750. height: math.unit(167, "cm"),
  53751. default: true
  53752. },
  53753. ]
  53754. ))
  53755. characterMakers.push(() => makeCharacter(
  53756. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53757. {
  53758. front: {
  53759. height: math.unit(4 + 4/12, "feet"),
  53760. name: "Front",
  53761. image: {
  53762. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53763. extra: 1072/1067,
  53764. bottom: 117/1189
  53765. }
  53766. },
  53767. back: {
  53768. height: math.unit(4 + 4/12, "feet"),
  53769. name: "Back",
  53770. image: {
  53771. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53772. extra: 1135/1129,
  53773. bottom: 57/1192
  53774. }
  53775. },
  53776. head: {
  53777. height: math.unit(1.77, "feet"),
  53778. name: "Head",
  53779. image: {
  53780. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53781. }
  53782. },
  53783. },
  53784. [
  53785. {
  53786. name: "Normal",
  53787. height: math.unit(4 + 4/12, "feet"),
  53788. default: true
  53789. },
  53790. ]
  53791. ))
  53792. characterMakers.push(() => makeCharacter(
  53793. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53794. {
  53795. front: {
  53796. height: math.unit(2, "inches"),
  53797. name: "Front",
  53798. image: {
  53799. source: "./media/characters/carley-hartford/front.svg",
  53800. extra: 1035/988,
  53801. bottom: 23/1058
  53802. }
  53803. },
  53804. back: {
  53805. height: math.unit(2, "inches"),
  53806. name: "Back",
  53807. image: {
  53808. source: "./media/characters/carley-hartford/back.svg",
  53809. extra: 1035/988,
  53810. bottom: 23/1058
  53811. }
  53812. },
  53813. dressed: {
  53814. height: math.unit(2, "inches"),
  53815. name: "Dressed",
  53816. image: {
  53817. source: "./media/characters/carley-hartford/dressed.svg",
  53818. extra: 651/620,
  53819. bottom: 0/651
  53820. }
  53821. },
  53822. },
  53823. [
  53824. {
  53825. name: "Micro",
  53826. height: math.unit(2, "inches"),
  53827. default: true
  53828. },
  53829. {
  53830. name: "Macro",
  53831. height: math.unit(6 + 3/12, "feet")
  53832. },
  53833. ]
  53834. ))
  53835. characterMakers.push(() => makeCharacter(
  53836. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53837. {
  53838. front: {
  53839. height: math.unit(2 + 3/12, "feet"),
  53840. weight: math.unit(15 + 7/16, "lb"),
  53841. name: "Front",
  53842. image: {
  53843. source: "./media/characters/duke/front.svg",
  53844. extra: 910/815,
  53845. bottom: 30/940
  53846. }
  53847. },
  53848. },
  53849. [
  53850. {
  53851. name: "Normal",
  53852. height: math.unit(2 + 3/12, "feet"),
  53853. default: true
  53854. },
  53855. ]
  53856. ))
  53857. characterMakers.push(() => makeCharacter(
  53858. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53859. {
  53860. front: {
  53861. height: math.unit(5 + 4/12, "feet"),
  53862. weight: math.unit(156, "lb"),
  53863. name: "Front",
  53864. image: {
  53865. source: "./media/characters/dein/front.svg",
  53866. extra: 855/815,
  53867. bottom: 48/903
  53868. }
  53869. },
  53870. side: {
  53871. height: math.unit(5 + 4/12, "feet"),
  53872. weight: math.unit(156, "lb"),
  53873. name: "side",
  53874. image: {
  53875. source: "./media/characters/dein/side.svg",
  53876. extra: 846/803,
  53877. bottom: 25/871
  53878. }
  53879. },
  53880. maw: {
  53881. height: math.unit(1.45, "feet"),
  53882. name: "Maw",
  53883. image: {
  53884. source: "./media/characters/dein/maw.svg"
  53885. }
  53886. },
  53887. },
  53888. [
  53889. {
  53890. name: "Ferret Sized",
  53891. height: math.unit(2 + 5/12, "feet")
  53892. },
  53893. {
  53894. name: "Normal",
  53895. height: math.unit(5 + 4/12, "feet"),
  53896. default: true
  53897. },
  53898. ]
  53899. ))
  53900. characterMakers.push(() => makeCharacter(
  53901. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53902. {
  53903. front: {
  53904. height: math.unit(84 + 8/12, "feet"),
  53905. weight: math.unit(942180, "lb"),
  53906. name: "Front",
  53907. image: {
  53908. source: "./media/characters/daurine-arima/front.svg",
  53909. extra: 1989/1782,
  53910. bottom: 37/2026
  53911. }
  53912. },
  53913. side: {
  53914. height: math.unit(84 + 8/12, "feet"),
  53915. weight: math.unit(942180, "lb"),
  53916. name: "Side",
  53917. image: {
  53918. source: "./media/characters/daurine-arima/side.svg",
  53919. extra: 1997/1790,
  53920. bottom: 21/2018
  53921. }
  53922. },
  53923. back: {
  53924. height: math.unit(84 + 8/12, "feet"),
  53925. weight: math.unit(942180, "lb"),
  53926. name: "Back",
  53927. image: {
  53928. source: "./media/characters/daurine-arima/back.svg",
  53929. extra: 1992/1800,
  53930. bottom: 12/2004
  53931. }
  53932. },
  53933. head: {
  53934. height: math.unit(15.5, "feet"),
  53935. name: "Head",
  53936. image: {
  53937. source: "./media/characters/daurine-arima/head.svg"
  53938. }
  53939. },
  53940. headAlt: {
  53941. height: math.unit(19.19, "feet"),
  53942. name: "Head (Alt)",
  53943. image: {
  53944. source: "./media/characters/daurine-arima/head-alt.svg"
  53945. }
  53946. },
  53947. },
  53948. [
  53949. {
  53950. name: "Minimum height",
  53951. height: math.unit(8 + 10/12, "feet")
  53952. },
  53953. {
  53954. name: "Comfort height",
  53955. height: math.unit(19 + 6 /12, "feet")
  53956. },
  53957. {
  53958. name: "\"Normal\" height",
  53959. height: math.unit(28 + 10/12, "feet")
  53960. },
  53961. {
  53962. name: "Base height",
  53963. height: math.unit(84 + 8/12, "feet"),
  53964. default: true
  53965. },
  53966. {
  53967. name: "Mini-macro",
  53968. height: math.unit(2360, "feet")
  53969. },
  53970. {
  53971. name: "Macro",
  53972. height: math.unit(10, "miles")
  53973. },
  53974. {
  53975. name: "Goddess",
  53976. height: math.unit(9.99e40, "yottameters")
  53977. },
  53978. ]
  53979. ))
  53980. characterMakers.push(() => makeCharacter(
  53981. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53982. {
  53983. front: {
  53984. height: math.unit(2.3, "meters"),
  53985. name: "Front",
  53986. image: {
  53987. source: "./media/characters/cilenomon/front.svg",
  53988. extra: 1963/1778,
  53989. bottom: 54/2017
  53990. }
  53991. },
  53992. },
  53993. [
  53994. {
  53995. name: "Normal",
  53996. height: math.unit(2.3, "meters"),
  53997. default: true
  53998. },
  53999. {
  54000. name: "Big",
  54001. height: math.unit(5, "meters")
  54002. },
  54003. {
  54004. name: "Macro",
  54005. height: math.unit(30, "meters")
  54006. },
  54007. {
  54008. name: "True",
  54009. height: math.unit(1, "universe")
  54010. },
  54011. ]
  54012. ))
  54013. characterMakers.push(() => makeCharacter(
  54014. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54015. {
  54016. front: {
  54017. height: math.unit(5, "feet"),
  54018. name: "Front",
  54019. image: {
  54020. source: "./media/characters/sen-mink/front.svg",
  54021. extra: 1727/1675,
  54022. bottom: 35/1762
  54023. }
  54024. },
  54025. },
  54026. [
  54027. {
  54028. name: "Normal",
  54029. height: math.unit(5, "feet"),
  54030. default: true
  54031. },
  54032. ]
  54033. ))
  54034. characterMakers.push(() => makeCharacter(
  54035. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54036. {
  54037. front: {
  54038. height: math.unit(5.42999, "feet"),
  54039. weight: math.unit(100, "lb"),
  54040. name: "Front",
  54041. image: {
  54042. source: "./media/characters/ophois/front.svg",
  54043. extra: 1429/1286,
  54044. bottom: 60/1489
  54045. }
  54046. },
  54047. },
  54048. [
  54049. {
  54050. name: "Normal",
  54051. height: math.unit(5.42999, "feet"),
  54052. default: true
  54053. },
  54054. ]
  54055. ))
  54056. characterMakers.push(() => makeCharacter(
  54057. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54058. {
  54059. front: {
  54060. height: math.unit(2, "meters"),
  54061. name: "Front",
  54062. image: {
  54063. source: "./media/characters/riley/front.svg",
  54064. extra: 1779/1754,
  54065. bottom: 139/1918
  54066. }
  54067. },
  54068. },
  54069. [
  54070. {
  54071. name: "Normal",
  54072. height: math.unit(2, "meters"),
  54073. default: true
  54074. },
  54075. ]
  54076. ))
  54077. characterMakers.push(() => makeCharacter(
  54078. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54079. {
  54080. front: {
  54081. height: math.unit(6 + 2/12, "feet"),
  54082. weight: math.unit(195, "lb"),
  54083. preyCapacity: math.unit(6, "people"),
  54084. name: "Front",
  54085. image: {
  54086. source: "./media/characters/shuken-flash/front.svg",
  54087. extra: 1905/1739,
  54088. bottom: 65/1970
  54089. }
  54090. },
  54091. back: {
  54092. height: math.unit(6 + 2/12, "feet"),
  54093. weight: math.unit(195, "lb"),
  54094. preyCapacity: math.unit(6, "people"),
  54095. name: "Back",
  54096. image: {
  54097. source: "./media/characters/shuken-flash/back.svg",
  54098. extra: 1912/1751,
  54099. bottom: 13/1925
  54100. }
  54101. },
  54102. },
  54103. [
  54104. {
  54105. name: "Normal",
  54106. height: math.unit(6 + 2/12, "feet"),
  54107. default: true
  54108. },
  54109. ]
  54110. ))
  54111. characterMakers.push(() => makeCharacter(
  54112. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54113. {
  54114. front: {
  54115. height: math.unit(5 + 9/12, "feet"),
  54116. weight: math.unit(150, "lb"),
  54117. name: "Front",
  54118. image: {
  54119. source: "./media/characters/plat/front.svg",
  54120. extra: 1816/1703,
  54121. bottom: 43/1859
  54122. }
  54123. },
  54124. side: {
  54125. height: math.unit(5 + 9/12, "feet"),
  54126. weight: math.unit(300, "lb"),
  54127. name: "Side",
  54128. image: {
  54129. source: "./media/characters/plat/side.svg",
  54130. extra: 1824/1699,
  54131. bottom: 18/1842
  54132. }
  54133. },
  54134. },
  54135. [
  54136. {
  54137. name: "Normal",
  54138. height: math.unit(5 + 9/12, "feet"),
  54139. default: true
  54140. },
  54141. ]
  54142. ))
  54143. characterMakers.push(() => makeCharacter(
  54144. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54145. {
  54146. front: {
  54147. height: math.unit(9, "feet"),
  54148. weight: math.unit(1800, "lb"),
  54149. name: "Front",
  54150. image: {
  54151. source: "./media/characters/elaine/front.svg",
  54152. extra: 1833/1354,
  54153. bottom: 25/1858
  54154. }
  54155. },
  54156. back: {
  54157. height: math.unit(8.8, "feet"),
  54158. weight: math.unit(1800, "lb"),
  54159. name: "Back",
  54160. image: {
  54161. source: "./media/characters/elaine/back.svg",
  54162. extra: 1641/1233,
  54163. bottom: 53/1694
  54164. }
  54165. },
  54166. },
  54167. [
  54168. {
  54169. name: "Normal",
  54170. height: math.unit(9, "feet"),
  54171. default: true
  54172. },
  54173. ]
  54174. ))
  54175. characterMakers.push(() => makeCharacter(
  54176. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54177. {
  54178. front: {
  54179. height: math.unit(17 + 9/12, "feet"),
  54180. weight: math.unit(8000, "lb"),
  54181. name: "Front",
  54182. image: {
  54183. source: "./media/characters/vera-raven/front.svg",
  54184. extra: 1457/1412,
  54185. bottom: 121/1578
  54186. }
  54187. },
  54188. side: {
  54189. height: math.unit(17 + 9/12, "feet"),
  54190. weight: math.unit(8000, "lb"),
  54191. name: "Side",
  54192. image: {
  54193. source: "./media/characters/vera-raven/side.svg",
  54194. extra: 1510/1464,
  54195. bottom: 54/1564
  54196. }
  54197. },
  54198. },
  54199. [
  54200. {
  54201. name: "Normal",
  54202. height: math.unit(17 + 9/12, "feet"),
  54203. default: true
  54204. },
  54205. ]
  54206. ))
  54207. characterMakers.push(() => makeCharacter(
  54208. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54209. {
  54210. dressed: {
  54211. height: math.unit(6 + 9/12, "feet"),
  54212. name: "Dressed",
  54213. image: {
  54214. source: "./media/characters/nakisha/dressed.svg",
  54215. extra: 1909/1757,
  54216. bottom: 48/1957
  54217. }
  54218. },
  54219. nude: {
  54220. height: math.unit(6 + 9/12, "feet"),
  54221. name: "Nude",
  54222. image: {
  54223. source: "./media/characters/nakisha/nude.svg",
  54224. extra: 1917/1765,
  54225. bottom: 34/1951
  54226. }
  54227. },
  54228. },
  54229. [
  54230. {
  54231. name: "Normal",
  54232. height: math.unit(6 + 9/12, "feet"),
  54233. default: true
  54234. },
  54235. ]
  54236. ))
  54237. characterMakers.push(() => makeCharacter(
  54238. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54239. {
  54240. front: {
  54241. height: math.unit(87, "meters"),
  54242. name: "Front",
  54243. image: {
  54244. source: "./media/characters/serafin/front.svg",
  54245. extra: 1919/1776,
  54246. bottom: 65/1984
  54247. }
  54248. },
  54249. },
  54250. [
  54251. {
  54252. name: "Normal",
  54253. height: math.unit(87, "meters"),
  54254. default: true
  54255. },
  54256. ]
  54257. ))
  54258. characterMakers.push(() => makeCharacter(
  54259. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54260. {
  54261. front: {
  54262. height: math.unit(6, "feet"),
  54263. weight: math.unit(200, "lb"),
  54264. name: "Front",
  54265. image: {
  54266. source: "./media/characters/poptart/front.svg",
  54267. extra: 615/583,
  54268. bottom: 23/638
  54269. }
  54270. },
  54271. back: {
  54272. height: math.unit(6, "feet"),
  54273. weight: math.unit(200, "lb"),
  54274. name: "Back",
  54275. image: {
  54276. source: "./media/characters/poptart/back.svg",
  54277. extra: 617/584,
  54278. bottom: 22/639
  54279. }
  54280. },
  54281. frontNsfw: {
  54282. height: math.unit(6, "feet"),
  54283. weight: math.unit(200, "lb"),
  54284. name: "Front (NSFW)",
  54285. image: {
  54286. source: "./media/characters/poptart/front-nsfw.svg",
  54287. extra: 615/583,
  54288. bottom: 23/638
  54289. }
  54290. },
  54291. backNsfw: {
  54292. height: math.unit(6, "feet"),
  54293. weight: math.unit(200, "lb"),
  54294. name: "Back (NSFW)",
  54295. image: {
  54296. source: "./media/characters/poptart/back-nsfw.svg",
  54297. extra: 617/584,
  54298. bottom: 22/639
  54299. }
  54300. },
  54301. hand: {
  54302. height: math.unit(1.14, "feet"),
  54303. name: "Hand",
  54304. image: {
  54305. source: "./media/characters/poptart/hand.svg"
  54306. }
  54307. },
  54308. foot: {
  54309. height: math.unit(1.5, "feet"),
  54310. name: "Foot",
  54311. image: {
  54312. source: "./media/characters/poptart/foot.svg"
  54313. }
  54314. },
  54315. },
  54316. [
  54317. {
  54318. name: "Normal",
  54319. height: math.unit(6, "feet"),
  54320. default: true
  54321. },
  54322. {
  54323. name: "Grande",
  54324. height: math.unit(350, "feet")
  54325. },
  54326. {
  54327. name: "Massif",
  54328. height: math.unit(967, "feet")
  54329. },
  54330. ]
  54331. ))
  54332. characterMakers.push(() => makeCharacter(
  54333. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54334. {
  54335. hyenaSide: {
  54336. height: math.unit(120, "cm"),
  54337. weight: math.unit(120, "lb"),
  54338. name: "Side",
  54339. image: {
  54340. source: "./media/characters/trance/hyena-side.svg",
  54341. extra: 998/904,
  54342. bottom: 76/1074
  54343. }
  54344. },
  54345. },
  54346. [
  54347. {
  54348. name: "Normal",
  54349. height: math.unit(120, "cm"),
  54350. default: true
  54351. },
  54352. {
  54353. name: "Dire",
  54354. height: math.unit(230, "cm")
  54355. },
  54356. {
  54357. name: "Macro",
  54358. height: math.unit(37, "feet")
  54359. },
  54360. ]
  54361. ))
  54362. characterMakers.push(() => makeCharacter(
  54363. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54364. {
  54365. front: {
  54366. height: math.unit(6 + 3/12, "feet"),
  54367. name: "Front",
  54368. image: {
  54369. source: "./media/characters/michael-berretta/front.svg",
  54370. extra: 515/494,
  54371. bottom: 20/535
  54372. }
  54373. },
  54374. back: {
  54375. height: math.unit(6 + 3/12, "feet"),
  54376. name: "Back",
  54377. image: {
  54378. source: "./media/characters/michael-berretta/back.svg",
  54379. extra: 520/497,
  54380. bottom: 21/541
  54381. }
  54382. },
  54383. frontNsfw: {
  54384. height: math.unit(6 + 3/12, "feet"),
  54385. name: "Front (NSFW)",
  54386. image: {
  54387. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54388. extra: 515/494,
  54389. bottom: 20/535
  54390. }
  54391. },
  54392. dick: {
  54393. height: math.unit(1, "feet"),
  54394. name: "Dick",
  54395. image: {
  54396. source: "./media/characters/michael-berretta/dick.svg"
  54397. }
  54398. },
  54399. },
  54400. [
  54401. {
  54402. name: "Normal",
  54403. height: math.unit(6 + 3/12, "feet"),
  54404. default: true
  54405. },
  54406. {
  54407. name: "Big",
  54408. height: math.unit(12, "feet")
  54409. },
  54410. {
  54411. name: "Macro",
  54412. height: math.unit(187.5, "feet")
  54413. },
  54414. ]
  54415. ))
  54416. characterMakers.push(() => makeCharacter(
  54417. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54418. {
  54419. front: {
  54420. height: math.unit(9 + 9/12, "feet"),
  54421. weight: math.unit(1244, "lb"),
  54422. name: "Front",
  54423. image: {
  54424. source: "./media/characters/stella-edgecomb/front.svg",
  54425. extra: 1835/1706,
  54426. bottom: 49/1884
  54427. }
  54428. },
  54429. pen: {
  54430. height: math.unit(0.95, "feet"),
  54431. name: "Pen",
  54432. image: {
  54433. source: "./media/characters/stella-edgecomb/pen.svg"
  54434. }
  54435. },
  54436. },
  54437. [
  54438. {
  54439. name: "Cozy Bear",
  54440. height: math.unit(0.5, "inches")
  54441. },
  54442. {
  54443. name: "Normal",
  54444. height: math.unit(9 + 9/12, "feet"),
  54445. default: true
  54446. },
  54447. {
  54448. name: "Giga Bear",
  54449. height: math.unit(1, "mile")
  54450. },
  54451. {
  54452. name: "Great Bear",
  54453. height: math.unit(53, "miles")
  54454. },
  54455. {
  54456. name: "Goddess Bear",
  54457. height: math.unit(40000, "miles")
  54458. },
  54459. {
  54460. name: "Sun Bear",
  54461. height: math.unit(900000, "miles")
  54462. },
  54463. ]
  54464. ))
  54465. characterMakers.push(() => makeCharacter(
  54466. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54467. {
  54468. anthroFront: {
  54469. height: math.unit(556, "cm"),
  54470. weight: math.unit(2650, "kg"),
  54471. preyCapacity: math.unit(3, "people"),
  54472. name: "Front",
  54473. image: {
  54474. source: "./media/characters/ash´iika/front.svg",
  54475. extra: 710/673,
  54476. bottom: 15/725
  54477. },
  54478. form: "anthro",
  54479. default: true
  54480. },
  54481. anthroSide: {
  54482. height: math.unit(556, "cm"),
  54483. weight: math.unit(2650, "kg"),
  54484. preyCapacity: math.unit(3, "people"),
  54485. name: "Side",
  54486. image: {
  54487. source: "./media/characters/ash´iika/side.svg",
  54488. extra: 696/676,
  54489. bottom: 13/709
  54490. },
  54491. form: "anthro"
  54492. },
  54493. anthroDressed: {
  54494. height: math.unit(556, "cm"),
  54495. weight: math.unit(2650, "kg"),
  54496. preyCapacity: math.unit(3, "people"),
  54497. name: "Dressed",
  54498. image: {
  54499. source: "./media/characters/ash´iika/dressed.svg",
  54500. extra: 710/673,
  54501. bottom: 15/725
  54502. },
  54503. form: "anthro"
  54504. },
  54505. anthroHead: {
  54506. height: math.unit(3.5, "feet"),
  54507. name: "Head",
  54508. image: {
  54509. source: "./media/characters/ash´iika/head.svg",
  54510. extra: 348/291,
  54511. bottom: 45/393
  54512. },
  54513. form: "anthro"
  54514. },
  54515. feralSide: {
  54516. height: math.unit(870, "cm"),
  54517. weight: math.unit(17500, "kg"),
  54518. preyCapacity: math.unit(15, "people"),
  54519. name: "Side",
  54520. image: {
  54521. source: "./media/characters/ash´iika/feral.svg",
  54522. extra: 595/199,
  54523. bottom: 7/602
  54524. },
  54525. form: "feral",
  54526. default: true,
  54527. },
  54528. },
  54529. [
  54530. {
  54531. name: "Normal",
  54532. height: math.unit(556, "cm"),
  54533. default: true,
  54534. form: "anthro"
  54535. },
  54536. {
  54537. name: "Macro",
  54538. height: math.unit(88, "meters"),
  54539. form: "anthro"
  54540. },
  54541. {
  54542. name: "Normal",
  54543. height: math.unit(870, "cm"),
  54544. default: true,
  54545. form: "feral"
  54546. },
  54547. {
  54548. name: "Large",
  54549. height: math.unit(25, "meters"),
  54550. form: "feral"
  54551. },
  54552. ],
  54553. {
  54554. "anthro": {
  54555. name: "Anthro",
  54556. default: true
  54557. },
  54558. "feral": {
  54559. name: "Feral",
  54560. },
  54561. }
  54562. ))
  54563. characterMakers.push(() => makeCharacter(
  54564. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54565. {
  54566. front: {
  54567. height: math.unit(10, "feet"),
  54568. weight: math.unit(800, "lb"),
  54569. name: "Front",
  54570. image: {
  54571. source: "./media/characters/yen/front.svg",
  54572. extra: 443/411,
  54573. bottom: 6/449
  54574. }
  54575. },
  54576. sleeping: {
  54577. height: math.unit(10, "feet"),
  54578. weight: math.unit(800, "lb"),
  54579. name: "Sleeping",
  54580. image: {
  54581. source: "./media/characters/yen/sleeping.svg",
  54582. extra: 470/422,
  54583. bottom: 0/470
  54584. }
  54585. },
  54586. head: {
  54587. height: math.unit(2.2, "feet"),
  54588. name: "Head",
  54589. image: {
  54590. source: "./media/characters/yen/head.svg"
  54591. }
  54592. },
  54593. headAlt: {
  54594. height: math.unit(2.1, "feet"),
  54595. name: "Head (Alt)",
  54596. image: {
  54597. source: "./media/characters/yen/head-alt.svg"
  54598. }
  54599. },
  54600. },
  54601. [
  54602. {
  54603. name: "Normal",
  54604. height: math.unit(10, "feet"),
  54605. default: true
  54606. },
  54607. ]
  54608. ))
  54609. characterMakers.push(() => makeCharacter(
  54610. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54611. {
  54612. front: {
  54613. height: math.unit(12, "feet"),
  54614. name: "Front",
  54615. image: {
  54616. source: "./media/characters/citra/front.svg",
  54617. extra: 1950/1710,
  54618. bottom: 47/1997
  54619. }
  54620. },
  54621. },
  54622. [
  54623. {
  54624. name: "Normal",
  54625. height: math.unit(12, "feet"),
  54626. default: true
  54627. },
  54628. ]
  54629. ))
  54630. characterMakers.push(() => makeCharacter(
  54631. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54632. {
  54633. side: {
  54634. height: math.unit(7 + 10/12, "feet"),
  54635. name: "Side",
  54636. image: {
  54637. source: "./media/characters/sholstim/side.svg",
  54638. extra: 786/682,
  54639. bottom: 40/826
  54640. }
  54641. },
  54642. },
  54643. [
  54644. {
  54645. name: "Normal",
  54646. height: math.unit(7 + 10/12, "feet"),
  54647. default: true
  54648. },
  54649. ]
  54650. ))
  54651. characterMakers.push(() => makeCharacter(
  54652. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54653. {
  54654. front: {
  54655. height: math.unit(3.10, "meters"),
  54656. name: "Front",
  54657. image: {
  54658. source: "./media/characters/aggyn/front.svg",
  54659. extra: 1188/963,
  54660. bottom: 24/1212
  54661. }
  54662. },
  54663. },
  54664. [
  54665. {
  54666. name: "Normal",
  54667. height: math.unit(3.10, "meters"),
  54668. default: true
  54669. },
  54670. ]
  54671. ))
  54672. characterMakers.push(() => makeCharacter(
  54673. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54674. {
  54675. front: {
  54676. height: math.unit(7 + 5/12, "feet"),
  54677. weight: math.unit(687, "lb"),
  54678. name: "Front",
  54679. image: {
  54680. source: "./media/characters/alsandair-hergenroether/front.svg",
  54681. extra: 1251/1186,
  54682. bottom: 75/1326
  54683. }
  54684. },
  54685. back: {
  54686. height: math.unit(7 + 5/12, "feet"),
  54687. weight: math.unit(687, "lb"),
  54688. name: "Back",
  54689. image: {
  54690. source: "./media/characters/alsandair-hergenroether/back.svg",
  54691. extra: 1290/1229,
  54692. bottom: 17/1307
  54693. }
  54694. },
  54695. },
  54696. [
  54697. {
  54698. name: "Max Compression",
  54699. height: math.unit(7 + 5/12, "feet"),
  54700. default: true
  54701. },
  54702. {
  54703. name: "\"Normal\"",
  54704. height: math.unit(2, "universes")
  54705. },
  54706. ]
  54707. ))
  54708. characterMakers.push(() => makeCharacter(
  54709. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54710. {
  54711. front: {
  54712. height: math.unit(4 + 1/12, "feet"),
  54713. weight: math.unit(92, "lb"),
  54714. name: "Front",
  54715. image: {
  54716. source: "./media/characters/ie/front.svg",
  54717. extra: 1585/1352,
  54718. bottom: 91/1676
  54719. }
  54720. },
  54721. },
  54722. [
  54723. {
  54724. name: "Normal",
  54725. height: math.unit(4 + 1/12, "feet"),
  54726. default: true
  54727. },
  54728. ]
  54729. ))
  54730. characterMakers.push(() => makeCharacter(
  54731. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54732. {
  54733. anthro: {
  54734. height: math.unit(6, "feet"),
  54735. weight: math.unit(150, "lb"),
  54736. name: "Front",
  54737. image: {
  54738. source: "./media/characters/willow/anthro.svg",
  54739. extra: 1073/986,
  54740. bottom: 34/1107
  54741. },
  54742. form: "anthro",
  54743. default: true
  54744. },
  54745. taur: {
  54746. height: math.unit(6, "feet"),
  54747. weight: math.unit(150, "lb"),
  54748. name: "Side",
  54749. image: {
  54750. source: "./media/characters/willow/taur.svg",
  54751. extra: 647/512,
  54752. bottom: 136/783
  54753. },
  54754. form: "taur",
  54755. default: true
  54756. },
  54757. },
  54758. [
  54759. {
  54760. name: "Humanoid",
  54761. height: math.unit(2.7, "meters"),
  54762. form: "anthro"
  54763. },
  54764. {
  54765. name: "Normal",
  54766. height: math.unit(9, "meters"),
  54767. form: "anthro",
  54768. default: true
  54769. },
  54770. {
  54771. name: "Humanoid",
  54772. height: math.unit(2.1, "meters"),
  54773. form: "taur"
  54774. },
  54775. {
  54776. name: "Normal",
  54777. height: math.unit(7, "meters"),
  54778. form: "taur",
  54779. default: true
  54780. },
  54781. ],
  54782. {
  54783. "anthro": {
  54784. name: "Anthro",
  54785. default: true
  54786. },
  54787. "taur": {
  54788. name: "Taur",
  54789. },
  54790. }
  54791. ))
  54792. characterMakers.push(() => makeCharacter(
  54793. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54794. {
  54795. front: {
  54796. height: math.unit(2 + 5/12, "feet"),
  54797. name: "Front",
  54798. image: {
  54799. source: "./media/characters/kyan/front.svg",
  54800. extra: 460/334,
  54801. bottom: 23/483
  54802. },
  54803. extraAttributes: {
  54804. "toeLength": {
  54805. name: "Toe Length",
  54806. power: 1,
  54807. type: "length",
  54808. base: math.unit(7, "cm")
  54809. },
  54810. "toeclawLength": {
  54811. name: "Toeclaw Length",
  54812. power: 1,
  54813. type: "length",
  54814. base: math.unit(4.7, "cm")
  54815. },
  54816. "earHeight": {
  54817. name: "Ear Height",
  54818. power: 1,
  54819. type: "length",
  54820. base: math.unit(14.1, "cm")
  54821. },
  54822. }
  54823. },
  54824. paws: {
  54825. height: math.unit(0.45, "feet"),
  54826. name: "Paws",
  54827. image: {
  54828. source: "./media/characters/kyan/paws.svg",
  54829. extra: 581/581,
  54830. bottom: 114/695
  54831. }
  54832. },
  54833. },
  54834. [
  54835. {
  54836. name: "Normal",
  54837. height: math.unit(2 + 5/12, "feet"),
  54838. default: true
  54839. },
  54840. ]
  54841. ))
  54842. characterMakers.push(() => makeCharacter(
  54843. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54844. {
  54845. front: {
  54846. height: math.unit(2 + 2/3, "feet"),
  54847. name: "Front",
  54848. image: {
  54849. source: "./media/characters/xazzon/front.svg",
  54850. extra: 1109/984,
  54851. bottom: 42/1151
  54852. }
  54853. },
  54854. back: {
  54855. height: math.unit(2 + 2/3, "feet"),
  54856. name: "Back",
  54857. image: {
  54858. source: "./media/characters/xazzon/back.svg",
  54859. extra: 1095/971,
  54860. bottom: 23/1118
  54861. }
  54862. },
  54863. },
  54864. [
  54865. {
  54866. name: "Normal",
  54867. height: math.unit(2 + 2/3, "feet"),
  54868. default: true
  54869. },
  54870. ]
  54871. ))
  54872. characterMakers.push(() => makeCharacter(
  54873. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54874. {
  54875. front: {
  54876. height: math.unit(8, "feet"),
  54877. weight: math.unit(300, "lb"),
  54878. name: "Front",
  54879. image: {
  54880. source: "./media/characters/khyla-shadowsong/front.svg",
  54881. extra: 861/798,
  54882. bottom: 32/893
  54883. }
  54884. },
  54885. side: {
  54886. height: math.unit(8, "feet"),
  54887. weight: math.unit(300, "lb"),
  54888. name: "Side",
  54889. image: {
  54890. source: "./media/characters/khyla-shadowsong/side.svg",
  54891. extra: 790/750,
  54892. bottom: 87/877
  54893. }
  54894. },
  54895. back: {
  54896. height: math.unit(8, "feet"),
  54897. weight: math.unit(300, "lb"),
  54898. name: "Back",
  54899. image: {
  54900. source: "./media/characters/khyla-shadowsong/back.svg",
  54901. extra: 855/808,
  54902. bottom: 14/869
  54903. }
  54904. },
  54905. head: {
  54906. height: math.unit(2.7, "feet"),
  54907. name: "Head",
  54908. image: {
  54909. source: "./media/characters/khyla-shadowsong/head.svg"
  54910. }
  54911. },
  54912. },
  54913. [
  54914. {
  54915. name: "Micro",
  54916. height: math.unit(6, "inches")
  54917. },
  54918. {
  54919. name: "Normal",
  54920. height: math.unit(8, "feet"),
  54921. default: true
  54922. },
  54923. ]
  54924. ))
  54925. characterMakers.push(() => makeCharacter(
  54926. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54927. {
  54928. hyperFront: {
  54929. height: math.unit(9 + 4/12, "feet"),
  54930. weight: math.unit(2000, "lb"),
  54931. name: "Front",
  54932. image: {
  54933. source: "./media/characters/tiden/hyper-front.svg",
  54934. extra: 400/382,
  54935. bottom: 6/406
  54936. },
  54937. form: "hyper",
  54938. },
  54939. regularFront: {
  54940. height: math.unit(7 + 10/12, "feet"),
  54941. weight: math.unit(470, "lb"),
  54942. name: "Front",
  54943. image: {
  54944. source: "./media/characters/tiden/regular-front.svg",
  54945. extra: 468/442,
  54946. bottom: 6/474
  54947. },
  54948. form: "regular",
  54949. },
  54950. },
  54951. [
  54952. {
  54953. name: "Normal",
  54954. height: math.unit(9 + 4/12, "feet"),
  54955. default: true,
  54956. form: "hyper"
  54957. },
  54958. {
  54959. name: "Normal",
  54960. height: math.unit(7 + 10/12, "feet"),
  54961. default: true,
  54962. form: "regular"
  54963. },
  54964. ],
  54965. {
  54966. "hyper": {
  54967. name: "Hyper",
  54968. default: true
  54969. },
  54970. "regular": {
  54971. name: "Regular",
  54972. },
  54973. }
  54974. ))
  54975. characterMakers.push(() => makeCharacter(
  54976. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54977. {
  54978. side: {
  54979. height: math.unit(6, "feet"),
  54980. weight: math.unit(150, "lb"),
  54981. name: "Side",
  54982. image: {
  54983. source: "./media/characters/jason-crowe/side.svg",
  54984. extra: 1771/766,
  54985. bottom: 219/1990
  54986. }
  54987. },
  54988. },
  54989. [
  54990. {
  54991. name: "Pocket Gryphon",
  54992. height: math.unit(6, "cm")
  54993. },
  54994. {
  54995. name: "Raven",
  54996. height: math.unit(60, "cm")
  54997. },
  54998. {
  54999. name: "Normal",
  55000. height: math.unit(1, "meter"),
  55001. default: true
  55002. },
  55003. ]
  55004. ))
  55005. characterMakers.push(() => makeCharacter(
  55006. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55007. {
  55008. front: {
  55009. height: math.unit(9 + 6/12, "feet"),
  55010. weight: math.unit(1100, "lb"),
  55011. name: "Front",
  55012. image: {
  55013. source: "./media/characters/django/front.svg",
  55014. extra: 1231/1136,
  55015. bottom: 34/1265
  55016. }
  55017. },
  55018. side: {
  55019. height: math.unit(9 + 6/12, "feet"),
  55020. weight: math.unit(1100, "lb"),
  55021. name: "Side",
  55022. image: {
  55023. source: "./media/characters/django/side.svg",
  55024. extra: 1267/1174,
  55025. bottom: 9/1276
  55026. }
  55027. },
  55028. },
  55029. [
  55030. {
  55031. name: "Normal",
  55032. height: math.unit(9 + 6/12, "feet"),
  55033. default: true
  55034. },
  55035. {
  55036. name: "Macro 1",
  55037. height: math.unit(50, "feet")
  55038. },
  55039. {
  55040. name: "Macro 2",
  55041. height: math.unit(500, "feet")
  55042. },
  55043. {
  55044. name: "Mega Macro",
  55045. height: math.unit(5300, "feet")
  55046. },
  55047. ]
  55048. ))
  55049. characterMakers.push(() => makeCharacter(
  55050. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55051. {
  55052. frontSfw: {
  55053. height: math.unit(120, "cm"),
  55054. weight: math.unit(15, "kg"),
  55055. name: "Front (SFW)",
  55056. image: {
  55057. source: "./media/characters/eri/front-sfw.svg",
  55058. extra: 1014/939,
  55059. bottom: 37/1051
  55060. },
  55061. form: "moth",
  55062. },
  55063. frontNsfw: {
  55064. height: math.unit(120, "cm"),
  55065. weight: math.unit(15, "kg"),
  55066. name: "Front (NSFW)",
  55067. image: {
  55068. source: "./media/characters/eri/front-nsfw.svg",
  55069. extra: 1014/939,
  55070. bottom: 37/1051
  55071. },
  55072. form: "moth",
  55073. default: true
  55074. },
  55075. egg: {
  55076. height: math.unit(10, "cm"),
  55077. name: "Egg",
  55078. image: {
  55079. source: "./media/characters/eri/egg.svg"
  55080. },
  55081. form: "egg",
  55082. default: true
  55083. },
  55084. },
  55085. [
  55086. {
  55087. name: "Normal",
  55088. height: math.unit(120, "cm"),
  55089. default: true,
  55090. form: "moth"
  55091. },
  55092. {
  55093. name: "Normal",
  55094. height: math.unit(10, "cm"),
  55095. default: true,
  55096. form: "egg"
  55097. },
  55098. ],
  55099. {
  55100. "moth": {
  55101. name: "Moth",
  55102. default: true
  55103. },
  55104. "egg": {
  55105. name: "Egg",
  55106. },
  55107. }
  55108. ))
  55109. characterMakers.push(() => makeCharacter(
  55110. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55111. {
  55112. front: {
  55113. height: math.unit(200, "feet"),
  55114. name: "Front",
  55115. image: {
  55116. source: "./media/characters/bishop-dowser/front.svg",
  55117. extra: 933/868,
  55118. bottom: 106/1039
  55119. }
  55120. },
  55121. },
  55122. [
  55123. {
  55124. name: "Giant",
  55125. height: math.unit(200, "feet"),
  55126. default: true
  55127. },
  55128. ]
  55129. ))
  55130. characterMakers.push(() => makeCharacter(
  55131. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55132. {
  55133. front: {
  55134. height: math.unit(2, "meters"),
  55135. preyCapacity: math.unit(3, "people"),
  55136. name: "Front",
  55137. image: {
  55138. source: "./media/characters/fryra/front.svg",
  55139. extra: 1025/948,
  55140. bottom: 30/1055
  55141. },
  55142. extraAttributes: {
  55143. "breastVolume": {
  55144. name: "Breast Volume",
  55145. power: 3,
  55146. type: "volume",
  55147. base: math.unit(8, "liters")
  55148. },
  55149. }
  55150. },
  55151. back: {
  55152. height: math.unit(2, "meters"),
  55153. preyCapacity: math.unit(3, "people"),
  55154. name: "Back",
  55155. image: {
  55156. source: "./media/characters/fryra/back.svg",
  55157. extra: 993/938,
  55158. bottom: 38/1031
  55159. },
  55160. extraAttributes: {
  55161. "breastVolume": {
  55162. name: "Breast Volume",
  55163. power: 3,
  55164. type: "volume",
  55165. base: math.unit(8, "liters")
  55166. },
  55167. }
  55168. },
  55169. head: {
  55170. height: math.unit(1.33, "feet"),
  55171. name: "Head",
  55172. image: {
  55173. source: "./media/characters/fryra/head.svg"
  55174. }
  55175. },
  55176. maw: {
  55177. height: math.unit(0.56, "feet"),
  55178. name: "Maw",
  55179. image: {
  55180. source: "./media/characters/fryra/maw.svg"
  55181. }
  55182. },
  55183. },
  55184. [
  55185. {
  55186. name: "Micro",
  55187. height: math.unit(5, "cm")
  55188. },
  55189. {
  55190. name: "Normal",
  55191. height: math.unit(2, "meters"),
  55192. default: true
  55193. },
  55194. {
  55195. name: "Small Macro",
  55196. height: math.unit(8, "meters")
  55197. },
  55198. {
  55199. name: "Macro",
  55200. height: math.unit(50, "meters")
  55201. },
  55202. {
  55203. name: "Megamacro",
  55204. height: math.unit(1, "km")
  55205. },
  55206. {
  55207. name: "Planetary",
  55208. height: math.unit(300000, "km")
  55209. },
  55210. {
  55211. name: "Universal",
  55212. height: math.unit(250, "lightyears")
  55213. },
  55214. {
  55215. name: "Fabric of Reality",
  55216. height: math.unit(1000, "multiverses")
  55217. },
  55218. ]
  55219. ))
  55220. characterMakers.push(() => makeCharacter(
  55221. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55222. {
  55223. frontDressed: {
  55224. height: math.unit(6 + 2/12, "feet"),
  55225. name: "Front (Dressed)",
  55226. image: {
  55227. source: "./media/characters/fiera/front-dressed.svg",
  55228. extra: 1883/1793,
  55229. bottom: 70/1953
  55230. }
  55231. },
  55232. backDressed: {
  55233. height: math.unit(6 + 2/12, "feet"),
  55234. name: "Back (Dressed)",
  55235. image: {
  55236. source: "./media/characters/fiera/back-dressed.svg",
  55237. extra: 1847/1780,
  55238. bottom: 70/1917
  55239. }
  55240. },
  55241. frontNude: {
  55242. height: math.unit(6 + 2/12, "feet"),
  55243. name: "Front (Nude)",
  55244. image: {
  55245. source: "./media/characters/fiera/front-nude.svg",
  55246. extra: 1875/1785,
  55247. bottom: 66/1941
  55248. }
  55249. },
  55250. backNude: {
  55251. height: math.unit(6 + 2/12, "feet"),
  55252. name: "Back (Nude)",
  55253. image: {
  55254. source: "./media/characters/fiera/back-nude.svg",
  55255. extra: 1855/1788,
  55256. bottom: 44/1899
  55257. }
  55258. },
  55259. maw: {
  55260. height: math.unit(1.3, "feet"),
  55261. name: "Maw",
  55262. image: {
  55263. source: "./media/characters/fiera/maw.svg"
  55264. }
  55265. },
  55266. paw: {
  55267. height: math.unit(1, "feet"),
  55268. name: "Paw",
  55269. image: {
  55270. source: "./media/characters/fiera/paw.svg"
  55271. }
  55272. },
  55273. shoe: {
  55274. height: math.unit(1.05, "feet"),
  55275. name: "Shoe",
  55276. image: {
  55277. source: "./media/characters/fiera/shoe.svg"
  55278. }
  55279. },
  55280. },
  55281. [
  55282. {
  55283. name: "Normal",
  55284. height: math.unit(6 + 2/12, "feet"),
  55285. default: true
  55286. },
  55287. {
  55288. name: "Size Difference",
  55289. height: math.unit(13, "feet")
  55290. },
  55291. {
  55292. name: "Macro",
  55293. height: math.unit(60, "feet")
  55294. },
  55295. {
  55296. name: "Mega Macro",
  55297. height: math.unit(200, "feet")
  55298. },
  55299. ]
  55300. ))
  55301. characterMakers.push(() => makeCharacter(
  55302. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55303. {
  55304. back: {
  55305. height: math.unit(6, "feet"),
  55306. name: "Back",
  55307. image: {
  55308. source: "./media/characters/flare/back.svg",
  55309. extra: 1883/1765,
  55310. bottom: 32/1915
  55311. }
  55312. },
  55313. },
  55314. [
  55315. {
  55316. name: "Normal",
  55317. height: math.unit(6 + 2/12, "feet"),
  55318. default: true
  55319. },
  55320. {
  55321. name: "Size Difference",
  55322. height: math.unit(13, "feet")
  55323. },
  55324. {
  55325. name: "Macro",
  55326. height: math.unit(60, "feet")
  55327. },
  55328. {
  55329. name: "Macro 2",
  55330. height: math.unit(100, "feet")
  55331. },
  55332. {
  55333. name: "Mega Macro",
  55334. height: math.unit(200, "feet")
  55335. },
  55336. ]
  55337. ))
  55338. characterMakers.push(() => makeCharacter(
  55339. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55340. {
  55341. front: {
  55342. height: math.unit(2.2, "m"),
  55343. weight: math.unit(300, "kg"),
  55344. name: "Front",
  55345. image: {
  55346. source: "./media/characters/hanna/front.svg",
  55347. extra: 1696/1502,
  55348. bottom: 206/1902
  55349. }
  55350. },
  55351. },
  55352. [
  55353. {
  55354. name: "Humanoid",
  55355. height: math.unit(2.2, "meters")
  55356. },
  55357. {
  55358. name: "Normal",
  55359. height: math.unit(4.8, "meters"),
  55360. default: true
  55361. },
  55362. ]
  55363. ))
  55364. characterMakers.push(() => makeCharacter(
  55365. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55366. {
  55367. front: {
  55368. height: math.unit(2.8, "meters"),
  55369. name: "Front",
  55370. image: {
  55371. source: "./media/characters/argo/front.svg",
  55372. extra: 731/518,
  55373. bottom: 84/815
  55374. }
  55375. },
  55376. },
  55377. [
  55378. {
  55379. name: "Normal",
  55380. height: math.unit(3, "meters"),
  55381. default: true
  55382. },
  55383. ]
  55384. ))
  55385. characterMakers.push(() => makeCharacter(
  55386. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55387. {
  55388. side: {
  55389. height: math.unit(3.8, "meters"),
  55390. name: "Side",
  55391. image: {
  55392. source: "./media/characters/sybil/side.svg",
  55393. extra: 382/361,
  55394. bottom: 25/407
  55395. }
  55396. },
  55397. },
  55398. [
  55399. {
  55400. name: "Normal",
  55401. height: math.unit(3.8, "meters"),
  55402. default: true
  55403. },
  55404. ]
  55405. ))
  55406. characterMakers.push(() => makeCharacter(
  55407. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55408. {
  55409. side: {
  55410. height: math.unit(6, "meters"),
  55411. name: "Side",
  55412. image: {
  55413. source: "./media/characters/plum/side.svg",
  55414. extra: 858/755,
  55415. bottom: 45/903
  55416. },
  55417. form: "taur",
  55418. default: true
  55419. },
  55420. back: {
  55421. height: math.unit(6.3, "meters"),
  55422. name: "Back",
  55423. image: {
  55424. source: "./media/characters/plum/back.svg",
  55425. extra: 887/813,
  55426. bottom: 32/919
  55427. },
  55428. form: "taur",
  55429. },
  55430. feral: {
  55431. height: math.unit(5.5, "meter"),
  55432. name: "Front",
  55433. image: {
  55434. source: "./media/characters/plum/feral.svg",
  55435. extra: 568/403,
  55436. bottom: 51/619
  55437. },
  55438. form: "feral",
  55439. default: true
  55440. },
  55441. head: {
  55442. height: math.unit(1.46, "meter"),
  55443. name: "Head",
  55444. image: {
  55445. source: "./media/characters/plum/head.svg"
  55446. },
  55447. form: "taur"
  55448. },
  55449. tailTop: {
  55450. height: math.unit(5.6, "meter"),
  55451. name: "Tail (Top)",
  55452. image: {
  55453. source: "./media/characters/plum/tail-top.svg"
  55454. },
  55455. form: "taur",
  55456. },
  55457. tailBottom: {
  55458. height: math.unit(5.6, "meter"),
  55459. name: "Tail (Bottom)",
  55460. image: {
  55461. source: "./media/characters/plum/tail-bottom.svg"
  55462. },
  55463. form: "taur",
  55464. },
  55465. feralHead: {
  55466. height: math.unit(2.56549521, "meter"),
  55467. name: "Head",
  55468. image: {
  55469. source: "./media/characters/plum/head.svg"
  55470. },
  55471. form: "feral"
  55472. },
  55473. feralTailTop: {
  55474. height: math.unit(5.44728435, "meter"),
  55475. name: "Tail (Top)",
  55476. image: {
  55477. source: "./media/characters/plum/tail-top.svg"
  55478. },
  55479. form: "feral",
  55480. },
  55481. feralTailBottom: {
  55482. height: math.unit(5.44728435, "meter"),
  55483. name: "Tail (Bottom)",
  55484. image: {
  55485. source: "./media/characters/plum/tail-bottom.svg"
  55486. },
  55487. form: "feral",
  55488. },
  55489. },
  55490. [
  55491. {
  55492. name: "Normal",
  55493. height: math.unit(6, "meters"),
  55494. default: true,
  55495. form: "taur"
  55496. },
  55497. {
  55498. name: "Normal",
  55499. height: math.unit(5.5, "meters"),
  55500. default: true,
  55501. form: "feral"
  55502. },
  55503. ],
  55504. {
  55505. "taur": {
  55506. name: "Taur",
  55507. default: true
  55508. },
  55509. "feral": {
  55510. name: "Feral",
  55511. },
  55512. }
  55513. ))
  55514. characterMakers.push(() => makeCharacter(
  55515. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55516. {
  55517. front: {
  55518. height: math.unit(6, "feet"),
  55519. weight: math.unit(115, "lb"),
  55520. name: "Front",
  55521. image: {
  55522. source: "./media/characters/celeste-kitsune/front.svg",
  55523. extra: 393/366,
  55524. bottom: 7/400
  55525. }
  55526. },
  55527. side: {
  55528. height: math.unit(6, "feet"),
  55529. weight: math.unit(115, "lb"),
  55530. name: "Side",
  55531. image: {
  55532. source: "./media/characters/celeste-kitsune/side.svg",
  55533. extra: 818/765,
  55534. bottom: 40/858
  55535. }
  55536. },
  55537. },
  55538. [
  55539. {
  55540. name: "Megamacro",
  55541. height: math.unit(1500, "miles"),
  55542. default: true
  55543. },
  55544. ]
  55545. ))
  55546. characterMakers.push(() => makeCharacter(
  55547. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55548. {
  55549. front: {
  55550. height: math.unit(8, "meters"),
  55551. name: "Front",
  55552. image: {
  55553. source: "./media/characters/io/front.svg",
  55554. extra: 865/722,
  55555. bottom: 58/923
  55556. }
  55557. },
  55558. back: {
  55559. height: math.unit(8, "meters"),
  55560. name: "Back",
  55561. image: {
  55562. source: "./media/characters/io/back.svg",
  55563. extra: 920/776,
  55564. bottom: 42/962
  55565. }
  55566. },
  55567. head: {
  55568. height: math.unit(5.09, "meters"),
  55569. name: "Head",
  55570. image: {
  55571. source: "./media/characters/io/head.svg"
  55572. }
  55573. },
  55574. hand: {
  55575. height: math.unit(1.6, "meters"),
  55576. name: "Hand",
  55577. image: {
  55578. source: "./media/characters/io/hand.svg"
  55579. }
  55580. },
  55581. foot: {
  55582. height: math.unit(2.4, "meters"),
  55583. name: "Foot",
  55584. image: {
  55585. source: "./media/characters/io/foot.svg"
  55586. }
  55587. },
  55588. },
  55589. [
  55590. {
  55591. name: "Normal",
  55592. height: math.unit(8, "meters"),
  55593. default: true
  55594. },
  55595. ]
  55596. ))
  55597. characterMakers.push(() => makeCharacter(
  55598. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55599. {
  55600. side: {
  55601. height: math.unit(6 + 3/12, "feet"),
  55602. weight: math.unit(225, "lb"),
  55603. name: "Side",
  55604. image: {
  55605. source: "./media/characters/silas/side.svg",
  55606. extra: 703/653,
  55607. bottom: 23/726
  55608. },
  55609. extraAttributes: {
  55610. "pawLength": {
  55611. name: "Paw Length",
  55612. power: 1,
  55613. type: "length",
  55614. base: math.unit(12, "inches")
  55615. },
  55616. "pawWidth": {
  55617. name: "Paw Width",
  55618. power: 1,
  55619. type: "length",
  55620. base: math.unit(4.5, "inches")
  55621. },
  55622. "pawArea": {
  55623. name: "Paw Area",
  55624. power: 2,
  55625. type: "area",
  55626. base: math.unit(12 * 4.5, "inches^2")
  55627. },
  55628. }
  55629. },
  55630. },
  55631. [
  55632. {
  55633. name: "Normal",
  55634. height: math.unit(6 + 3/12, "feet"),
  55635. default: true
  55636. },
  55637. ]
  55638. ))
  55639. characterMakers.push(() => makeCharacter(
  55640. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55641. {
  55642. back: {
  55643. height: math.unit(1.6, "meters"),
  55644. weight: math.unit(150, "lb"),
  55645. name: "Back",
  55646. image: {
  55647. source: "./media/characters/zari/back.svg",
  55648. extra: 424/411,
  55649. bottom: 32/456
  55650. },
  55651. extraAttributes: {
  55652. "bladderCapacity": {
  55653. name: "Bladder Size",
  55654. power: 3,
  55655. type: "volume",
  55656. base: math.unit(500, "mL")
  55657. },
  55658. "bladderFlow": {
  55659. name: "Flow Rate",
  55660. power: 3,
  55661. type: "volume",
  55662. base: math.unit(25, "mL")
  55663. },
  55664. }
  55665. },
  55666. },
  55667. [
  55668. {
  55669. name: "Normal",
  55670. height: math.unit(1.6, "meters"),
  55671. default: true
  55672. },
  55673. ]
  55674. ))
  55675. characterMakers.push(() => makeCharacter(
  55676. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55677. {
  55678. front: {
  55679. height: math.unit(25, "feet"),
  55680. weight: math.unit(5, "tons"),
  55681. name: "Front",
  55682. image: {
  55683. source: "./media/characters/charlie-human/front.svg",
  55684. extra: 1870/1740,
  55685. bottom: 102/1972
  55686. },
  55687. extraAttributes: {
  55688. "dickLength": {
  55689. name: "Dick Length",
  55690. power: 1,
  55691. type: "length",
  55692. base: math.unit(9, "feet")
  55693. },
  55694. }
  55695. },
  55696. back: {
  55697. height: math.unit(25, "feet"),
  55698. weight: math.unit(5, "tons"),
  55699. name: "Back",
  55700. image: {
  55701. source: "./media/characters/charlie-human/back.svg",
  55702. extra: 1858/1733,
  55703. bottom: 105/1963
  55704. },
  55705. extraAttributes: {
  55706. "dickLength": {
  55707. name: "Dick Length",
  55708. power: 1,
  55709. type: "length",
  55710. base: math.unit(9, "feet")
  55711. },
  55712. }
  55713. },
  55714. },
  55715. [
  55716. {
  55717. name: "\"Normal\"",
  55718. height: math.unit(6 + 4/12, "feet")
  55719. },
  55720. {
  55721. name: "Big",
  55722. height: math.unit(25, "feet"),
  55723. default: true
  55724. },
  55725. ]
  55726. ))
  55727. characterMakers.push(() => makeCharacter(
  55728. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55729. {
  55730. front: {
  55731. height: math.unit(6 + 4/12, "feet"),
  55732. weight: math.unit(320, "lb"),
  55733. name: "Front",
  55734. image: {
  55735. source: "./media/characters/ookitsu/front.svg",
  55736. extra: 1160/976,
  55737. bottom: 38/1198
  55738. }
  55739. },
  55740. frontNsfw: {
  55741. height: math.unit(6 + 4/12, "feet"),
  55742. weight: math.unit(320, "lb"),
  55743. name: "Front (NSFW)",
  55744. image: {
  55745. source: "./media/characters/ookitsu/front-nsfw.svg",
  55746. extra: 1160/976,
  55747. bottom: 38/1198
  55748. }
  55749. },
  55750. back: {
  55751. height: math.unit(6 + 4/12, "feet"),
  55752. weight: math.unit(320, "lb"),
  55753. name: "Back",
  55754. image: {
  55755. source: "./media/characters/ookitsu/back.svg",
  55756. extra: 1030/975,
  55757. bottom: 70/1100
  55758. }
  55759. },
  55760. head: {
  55761. height: math.unit(1.79, "feet"),
  55762. name: "Head",
  55763. image: {
  55764. source: "./media/characters/ookitsu/head.svg"
  55765. }
  55766. },
  55767. hand: {
  55768. height: math.unit(0.92, "feet"),
  55769. name: "Hand",
  55770. image: {
  55771. source: "./media/characters/ookitsu/hand.svg"
  55772. }
  55773. },
  55774. tails: {
  55775. height: math.unit(3.3, "feet"),
  55776. name: "Tails",
  55777. image: {
  55778. source: "./media/characters/ookitsu/tails.svg"
  55779. }
  55780. },
  55781. dick: {
  55782. height: math.unit(1.10833, "feet"),
  55783. name: "Dick",
  55784. image: {
  55785. source: "./media/characters/ookitsu/dick.svg"
  55786. }
  55787. },
  55788. },
  55789. [
  55790. {
  55791. name: "Normal",
  55792. height: math.unit(6 + 4/12, "feet"),
  55793. default: true
  55794. },
  55795. {
  55796. name: "Macro",
  55797. height: math.unit(30, "feet")
  55798. },
  55799. ]
  55800. ))
  55801. characterMakers.push(() => makeCharacter(
  55802. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55803. {
  55804. anthroFront: {
  55805. height: math.unit(6, "feet"),
  55806. weight: math.unit(250, "lb"),
  55807. name: "Front",
  55808. image: {
  55809. source: "./media/characters/jhusky/anthro-front.svg",
  55810. extra: 474/439,
  55811. bottom: 7/481
  55812. },
  55813. form: "anthro",
  55814. default: true
  55815. },
  55816. taurSideSfw: {
  55817. height: math.unit(6 + 4/12, "feet"),
  55818. weight: math.unit(500, "lb"),
  55819. name: "Side (SFW)",
  55820. image: {
  55821. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55822. extra: 1741/1629,
  55823. bottom: 196/1937
  55824. },
  55825. form: "taur",
  55826. default: true
  55827. },
  55828. taurSideNsfw: {
  55829. height: math.unit(6 + 4/12, "feet"),
  55830. weight: math.unit(500, "lb"),
  55831. name: "Taur (NSFW)",
  55832. image: {
  55833. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55834. extra: 1741/1629,
  55835. bottom: 196/1937
  55836. },
  55837. form: "taur",
  55838. },
  55839. },
  55840. [
  55841. {
  55842. name: "Huge",
  55843. height: math.unit(500, "feet"),
  55844. form: "anthro"
  55845. },
  55846. {
  55847. name: "Macro",
  55848. height: math.unit(1000, "feet"),
  55849. default: true,
  55850. form: "anthro"
  55851. },
  55852. {
  55853. name: "Megamacro",
  55854. height: math.unit(10000, "feet"),
  55855. form: "anthro"
  55856. },
  55857. {
  55858. name: "Huge",
  55859. height: math.unit(528, "feet"),
  55860. form: "taur"
  55861. },
  55862. {
  55863. name: "Macro",
  55864. height: math.unit(1056, "feet"),
  55865. default: true,
  55866. form: "taur"
  55867. },
  55868. {
  55869. name: "Megamacro",
  55870. height: math.unit(10556, "feet"),
  55871. form: "taur"
  55872. },
  55873. ],
  55874. {
  55875. "anthro": {
  55876. name: "Anthro",
  55877. default: true
  55878. },
  55879. "taur": {
  55880. name: "Taur",
  55881. },
  55882. }
  55883. ))
  55884. characterMakers.push(() => makeCharacter(
  55885. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55886. {
  55887. front: {
  55888. height: math.unit(8, "feet"),
  55889. weight: math.unit(500, "lb"),
  55890. name: "Front",
  55891. image: {
  55892. source: "./media/characters/armail/front.svg",
  55893. extra: 1753/1669,
  55894. bottom: 155/1908
  55895. }
  55896. },
  55897. back: {
  55898. height: math.unit(8, "feet"),
  55899. weight: math.unit(500, "lb"),
  55900. name: "Back",
  55901. image: {
  55902. source: "./media/characters/armail/back.svg",
  55903. extra: 1872/1803,
  55904. bottom: 63/1935
  55905. }
  55906. },
  55907. },
  55908. [
  55909. {
  55910. name: "Micro",
  55911. height: math.unit(0.25, "feet")
  55912. },
  55913. {
  55914. name: "Normal",
  55915. height: math.unit(8, "feet"),
  55916. default: true
  55917. },
  55918. {
  55919. name: "Mini-macro",
  55920. height: math.unit(30, "feet")
  55921. },
  55922. {
  55923. name: "Macro",
  55924. height: math.unit(400, "feet")
  55925. },
  55926. {
  55927. name: "Mega-macro",
  55928. height: math.unit(6000, "feet")
  55929. },
  55930. ]
  55931. ))
  55932. characterMakers.push(() => makeCharacter(
  55933. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55934. {
  55935. front: {
  55936. height: math.unit(6 + 7/12, "feet"),
  55937. weight: math.unit(210, "lb"),
  55938. name: "Front",
  55939. image: {
  55940. source: "./media/characters/wilfred-t-buxton/front.svg",
  55941. extra: 1068/882,
  55942. bottom: 28/1096
  55943. }
  55944. },
  55945. },
  55946. [
  55947. {
  55948. name: "Normal",
  55949. height: math.unit(6 + 7/12, "feet"),
  55950. default: true
  55951. },
  55952. ]
  55953. ))
  55954. characterMakers.push(() => makeCharacter(
  55955. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55956. {
  55957. front: {
  55958. height: math.unit(5 + 2/12, "feet"),
  55959. weight: math.unit(120, "lb"),
  55960. name: "Front",
  55961. image: {
  55962. source: "./media/characters/leighton-marrow/front.svg",
  55963. extra: 441/409,
  55964. bottom: 37/478
  55965. }
  55966. },
  55967. },
  55968. [
  55969. {
  55970. name: "Normal",
  55971. height: math.unit(5 + 2/12, "feet"),
  55972. default: true
  55973. },
  55974. ]
  55975. ))
  55976. characterMakers.push(() => makeCharacter(
  55977. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55978. {
  55979. front: {
  55980. height: math.unit(4, "meters"),
  55981. weight: math.unit(1200, "kg"),
  55982. name: "Front",
  55983. image: {
  55984. source: "./media/characters/licos/front.svg",
  55985. extra: 1727/1604,
  55986. bottom: 101/1828
  55987. },
  55988. form: "anthro",
  55989. default: true
  55990. },
  55991. taur_side: {
  55992. height: math.unit(20, "meters"),
  55993. weight: math.unit(1100000, "kg"),
  55994. name: "Side",
  55995. image: {
  55996. source: "./media/characters/licos/taur.svg",
  55997. extra: 1158/1091,
  55998. bottom: 80/1238
  55999. },
  56000. form: "taur",
  56001. default: true
  56002. },
  56003. },
  56004. [
  56005. {
  56006. name: "Normal",
  56007. height: math.unit(4, "meters"),
  56008. default: true,
  56009. form: "anthro"
  56010. },
  56011. {
  56012. name: "Normal",
  56013. height: math.unit(20, "meters"),
  56014. default: true,
  56015. form: "taur"
  56016. },
  56017. ],
  56018. {
  56019. "anthro": {
  56020. name: "Anthro",
  56021. default: true
  56022. },
  56023. "taur": {
  56024. name: "Taur",
  56025. },
  56026. }
  56027. ))
  56028. characterMakers.push(() => makeCharacter(
  56029. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56030. {
  56031. front: {
  56032. height: math.unit(10 + 3/12, "feet"),
  56033. name: "Front",
  56034. image: {
  56035. source: "./media/characters/theo-monkey/front.svg",
  56036. extra: 1735/1658,
  56037. bottom: 73/1808
  56038. }
  56039. },
  56040. back: {
  56041. height: math.unit(10 + 3/12, "feet"),
  56042. name: "Back",
  56043. image: {
  56044. source: "./media/characters/theo-monkey/back.svg",
  56045. extra: 1742/1664,
  56046. bottom: 33/1775
  56047. }
  56048. },
  56049. head: {
  56050. height: math.unit(2.29, "feet"),
  56051. name: "Head",
  56052. image: {
  56053. source: "./media/characters/theo-monkey/head.svg"
  56054. }
  56055. },
  56056. handPalm: {
  56057. height: math.unit(1.73, "feet"),
  56058. name: "Hand (Palm)",
  56059. image: {
  56060. source: "./media/characters/theo-monkey/hand-palm.svg"
  56061. }
  56062. },
  56063. handBack: {
  56064. height: math.unit(1.63, "feet"),
  56065. name: "Hand (Back)",
  56066. image: {
  56067. source: "./media/characters/theo-monkey/hand-back.svg"
  56068. }
  56069. },
  56070. footSole: {
  56071. height: math.unit(2.15, "feet"),
  56072. name: "Foot (Sole)",
  56073. image: {
  56074. source: "./media/characters/theo-monkey/foot-sole.svg"
  56075. }
  56076. },
  56077. footSide: {
  56078. height: math.unit(1.6, "feet"),
  56079. name: "Foot (Side)",
  56080. image: {
  56081. source: "./media/characters/theo-monkey/foot-side.svg"
  56082. }
  56083. },
  56084. },
  56085. [
  56086. {
  56087. name: "Normal",
  56088. height: math.unit(10 + 3/12, "feet"),
  56089. default: true
  56090. },
  56091. ]
  56092. ))
  56093. characterMakers.push(() => makeCharacter(
  56094. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56095. {
  56096. front: {
  56097. height: math.unit(11, "feet"),
  56098. weight: math.unit(3000, "lb"),
  56099. preyCapacity: math.unit(10, "people"),
  56100. name: "Front",
  56101. image: {
  56102. source: "./media/characters/brook/front.svg",
  56103. extra: 909/835,
  56104. bottom: 108/1017
  56105. }
  56106. },
  56107. back: {
  56108. height: math.unit(11, "feet"),
  56109. weight: math.unit(3000, "lb"),
  56110. preyCapacity: math.unit(10, "people"),
  56111. name: "Back",
  56112. image: {
  56113. source: "./media/characters/brook/back.svg",
  56114. extra: 976/916,
  56115. bottom: 34/1010
  56116. }
  56117. },
  56118. backAlt: {
  56119. height: math.unit(11, "feet"),
  56120. weight: math.unit(3000, "lb"),
  56121. preyCapacity: math.unit(10, "people"),
  56122. name: "Back (Alt)",
  56123. image: {
  56124. source: "./media/characters/brook/back-alt.svg",
  56125. extra: 1283/1213,
  56126. bottom: 35/1318
  56127. }
  56128. },
  56129. bust: {
  56130. height: math.unit(9.0859030837, "feet"),
  56131. weight: math.unit(3000, "lb"),
  56132. preyCapacity: math.unit(10, "people"),
  56133. name: "Bust",
  56134. image: {
  56135. source: "./media/characters/brook/bust.svg",
  56136. extra: 2043/1923,
  56137. bottom: 0/2043
  56138. }
  56139. },
  56140. },
  56141. [
  56142. {
  56143. name: "Small",
  56144. height: math.unit(11, "feet"),
  56145. default: true
  56146. },
  56147. {
  56148. name: "Towering",
  56149. height: math.unit(5, "km")
  56150. },
  56151. {
  56152. name: "Enormous",
  56153. height: math.unit(25, "earths")
  56154. },
  56155. ]
  56156. ))
  56157. characterMakers.push(() => makeCharacter(
  56158. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56159. {
  56160. front: {
  56161. height: math.unit(4, "feet"),
  56162. weight: math.unit(150, "lb"),
  56163. name: "Front",
  56164. image: {
  56165. source: "./media/characters/squishi/front.svg",
  56166. extra: 1428/1271,
  56167. bottom: 30/1458
  56168. },
  56169. extraAttributes: {
  56170. "pawSize": {
  56171. name: "Paw Size",
  56172. power: 1,
  56173. type: "length",
  56174. base: math.unit(14, "ShoeSizeMensUS"),
  56175. defaultUnit: "ShoeSizeMensUS"
  56176. },
  56177. }
  56178. },
  56179. side: {
  56180. height: math.unit(4, "feet"),
  56181. weight: math.unit(150, "lb"),
  56182. name: "Side",
  56183. image: {
  56184. source: "./media/characters/squishi/side.svg",
  56185. extra: 1428/1271,
  56186. bottom: 30/1458
  56187. },
  56188. extraAttributes: {
  56189. "pawSize": {
  56190. name: "Paw Size",
  56191. power: 1,
  56192. type: "length",
  56193. base: math.unit(14, "ShoeSizeMensUS"),
  56194. defaultUnit: "ShoeSizeMensUS"
  56195. },
  56196. }
  56197. },
  56198. back: {
  56199. height: math.unit(4, "feet"),
  56200. weight: math.unit(150, "lb"),
  56201. name: "Back",
  56202. image: {
  56203. source: "./media/characters/squishi/back.svg",
  56204. extra: 1428/1271,
  56205. bottom: 30/1458
  56206. },
  56207. extraAttributes: {
  56208. "pawSize": {
  56209. name: "Paw Size",
  56210. power: 1,
  56211. type: "length",
  56212. base: math.unit(14, "ShoeSizeMensUS"),
  56213. defaultUnit: "ShoeSizeMensUS"
  56214. },
  56215. }
  56216. },
  56217. },
  56218. [
  56219. {
  56220. name: "Normal",
  56221. height: math.unit(4, "feet"),
  56222. default: true
  56223. },
  56224. ]
  56225. ))
  56226. characterMakers.push(() => makeCharacter(
  56227. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56228. {
  56229. front: {
  56230. height: math.unit(7 + 8/12, "feet"),
  56231. weight: math.unit(333, "lb"),
  56232. name: "Front",
  56233. image: {
  56234. source: "./media/characters/vincent-vasroc/front.svg",
  56235. extra: 1962/1860,
  56236. bottom: 41/2003
  56237. }
  56238. },
  56239. back: {
  56240. height: math.unit(7 + 8/12, "feet"),
  56241. weight: math.unit(333, "lb"),
  56242. name: "Back",
  56243. image: {
  56244. source: "./media/characters/vincent-vasroc/back.svg",
  56245. extra: 1952/1815,
  56246. bottom: 33/1985
  56247. }
  56248. },
  56249. paw: {
  56250. height: math.unit(1.24, "feet"),
  56251. name: "Paw",
  56252. image: {
  56253. source: "./media/characters/vincent-vasroc/paw.svg"
  56254. }
  56255. },
  56256. ear: {
  56257. height: math.unit(0.75, "feet"),
  56258. name: "Ear",
  56259. image: {
  56260. source: "./media/characters/vincent-vasroc/ear.svg"
  56261. }
  56262. },
  56263. },
  56264. [
  56265. {
  56266. name: "Nano",
  56267. height: math.unit(92, "micrometers")
  56268. },
  56269. {
  56270. name: "Normal",
  56271. height: math.unit(7 + 8/12, "feet"),
  56272. default: true
  56273. },
  56274. ]
  56275. ))
  56276. characterMakers.push(() => makeCharacter(
  56277. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56278. {
  56279. frontNsfw: {
  56280. height: math.unit(40, "feet"),
  56281. weight: math.unit(58, "tons"),
  56282. name: "Front (NSFW)",
  56283. image: {
  56284. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56285. extra: 1265/965,
  56286. bottom: 155/1420
  56287. }
  56288. },
  56289. frontSfw: {
  56290. height: math.unit(40, "feet"),
  56291. weight: math.unit(58, "tons"),
  56292. name: "Front (SFW)",
  56293. image: {
  56294. source: "./media/characters/ru-kahn/front-sfw.svg",
  56295. extra: 1265/965,
  56296. bottom: 80/1345
  56297. }
  56298. },
  56299. },
  56300. [
  56301. {
  56302. name: "Small",
  56303. height: math.unit(4, "feet")
  56304. },
  56305. {
  56306. name: "Normal",
  56307. height: math.unit(40, "feet"),
  56308. default: true
  56309. },
  56310. {
  56311. name: "Macro",
  56312. height: math.unit(400, "feet")
  56313. },
  56314. ]
  56315. ))
  56316. characterMakers.push(() => makeCharacter(
  56317. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56318. {
  56319. frontNude: {
  56320. height: math.unit(6 + 5/12, "feet"),
  56321. name: "Front (Nude)",
  56322. image: {
  56323. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56324. extra: 1369/1366,
  56325. bottom: 68/1437
  56326. }
  56327. },
  56328. frontDressed: {
  56329. height: math.unit(6 + 5/12, "feet"),
  56330. name: "Front (Dressed)",
  56331. image: {
  56332. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56333. extra: 1369/1366,
  56334. bottom: 68/1437
  56335. }
  56336. },
  56337. },
  56338. [
  56339. {
  56340. name: "Normal",
  56341. height: math.unit(6 + 5/12, "feet"),
  56342. default: true
  56343. },
  56344. {
  56345. name: "Maximum",
  56346. height: math.unit(1930, "feet")
  56347. },
  56348. ]
  56349. ))
  56350. characterMakers.push(() => makeCharacter(
  56351. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56352. {
  56353. front: {
  56354. height: math.unit(5 + 6/12, "feet"),
  56355. name: "Front",
  56356. image: {
  56357. source: "./media/characters/kaja/front.svg",
  56358. extra: 1874/1514,
  56359. bottom: 117/1991
  56360. }
  56361. },
  56362. },
  56363. [
  56364. {
  56365. name: "Normal",
  56366. height: math.unit(5 + 6/12, "feet"),
  56367. default: true
  56368. },
  56369. ]
  56370. ))
  56371. characterMakers.push(() => makeCharacter(
  56372. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56373. {
  56374. front: {
  56375. height: math.unit(5 + 9/12, "feet"),
  56376. weight: math.unit(200, "lb"),
  56377. name: "Front",
  56378. image: {
  56379. source: "./media/characters/mark-smith/front.svg",
  56380. extra: 1004/943,
  56381. bottom: 58/1062
  56382. }
  56383. },
  56384. back: {
  56385. height: math.unit(5 + 9/12, "feet"),
  56386. weight: math.unit(200, "lb"),
  56387. name: "Back",
  56388. image: {
  56389. source: "./media/characters/mark-smith/back.svg",
  56390. extra: 1023/953,
  56391. bottom: 24/1047
  56392. }
  56393. },
  56394. head: {
  56395. height: math.unit(1.82, "feet"),
  56396. name: "Head",
  56397. image: {
  56398. source: "./media/characters/mark-smith/head.svg"
  56399. }
  56400. },
  56401. hand: {
  56402. height: math.unit(1.4, "feet"),
  56403. name: "Hand",
  56404. image: {
  56405. source: "./media/characters/mark-smith/hand.svg"
  56406. }
  56407. },
  56408. paw: {
  56409. height: math.unit(1.69, "feet"),
  56410. name: "Paw",
  56411. image: {
  56412. source: "./media/characters/mark-smith/paw.svg"
  56413. }
  56414. },
  56415. },
  56416. [
  56417. {
  56418. name: "Micro",
  56419. height: math.unit(0.25, "inches")
  56420. },
  56421. {
  56422. name: "Normal",
  56423. height: math.unit(5 + 9/12, "feet"),
  56424. default: true
  56425. },
  56426. {
  56427. name: "Macro",
  56428. height: math.unit(500, "feet")
  56429. },
  56430. ]
  56431. ))
  56432. characterMakers.push(() => makeCharacter(
  56433. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56434. {
  56435. frontNude: {
  56436. height: math.unit(6, "feet"),
  56437. name: "Front (Nude)",
  56438. image: {
  56439. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56440. extra: 1384/1321,
  56441. bottom: 57/1441
  56442. }
  56443. },
  56444. frontDressed: {
  56445. height: math.unit(6, "feet"),
  56446. name: "Front (Dressed)",
  56447. image: {
  56448. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56449. extra: 1384/1321,
  56450. bottom: 57/1441
  56451. }
  56452. },
  56453. },
  56454. [
  56455. {
  56456. name: "Normal",
  56457. height: math.unit(6, "feet"),
  56458. default: true
  56459. },
  56460. {
  56461. name: "Maximum",
  56462. height: math.unit(1776, "feet")
  56463. },
  56464. ]
  56465. ))
  56466. characterMakers.push(() => makeCharacter(
  56467. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56468. {
  56469. front: {
  56470. height: math.unit(2 + 4/12, "feet"),
  56471. weight: math.unit(350, "lb"),
  56472. name: "Front",
  56473. image: {
  56474. source: "./media/characters/devos/front.svg",
  56475. extra: 958/852,
  56476. bottom: 143/1101
  56477. }
  56478. },
  56479. },
  56480. [
  56481. {
  56482. name: "Base",
  56483. height: math.unit(2 + 4/12, "feet"),
  56484. default: true
  56485. },
  56486. ]
  56487. ))
  56488. characterMakers.push(() => makeCharacter(
  56489. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56490. {
  56491. front: {
  56492. height: math.unit(9 + 2/12, "feet"),
  56493. name: "Front",
  56494. image: {
  56495. source: "./media/characters/hiveheart/front.svg",
  56496. extra: 394/364,
  56497. bottom: 65/459
  56498. }
  56499. },
  56500. back: {
  56501. height: math.unit(9 + 2/12, "feet"),
  56502. name: "Back",
  56503. image: {
  56504. source: "./media/characters/hiveheart/back.svg",
  56505. extra: 374/357,
  56506. bottom: 63/437
  56507. }
  56508. },
  56509. },
  56510. [
  56511. {
  56512. name: "Base",
  56513. height: math.unit(9 + 2/12, "feet"),
  56514. default: true
  56515. },
  56516. ]
  56517. ))
  56518. characterMakers.push(() => makeCharacter(
  56519. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56520. {
  56521. front: {
  56522. height: math.unit(2.5, "inches"),
  56523. weight: math.unit(0.6, "oz"),
  56524. name: "Front",
  56525. image: {
  56526. source: "./media/characters/bryn/front.svg",
  56527. extra: 1480/1205,
  56528. bottom: 27/1507
  56529. }
  56530. },
  56531. back: {
  56532. height: math.unit(2.5, "inches"),
  56533. weight: math.unit(0.6, "oz"),
  56534. name: "Back",
  56535. image: {
  56536. source: "./media/characters/bryn/back.svg",
  56537. extra: 1475/1201,
  56538. bottom: 39/1514
  56539. }
  56540. },
  56541. foot: {
  56542. height: math.unit(0.4, "inches"),
  56543. name: "Foot",
  56544. image: {
  56545. source: "./media/characters/bryn/foot.svg"
  56546. }
  56547. },
  56548. },
  56549. [
  56550. {
  56551. name: "Normal",
  56552. height: math.unit(2.5, "inches"),
  56553. default: true
  56554. },
  56555. ]
  56556. ))
  56557. characterMakers.push(() => makeCharacter(
  56558. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56559. {
  56560. side: {
  56561. height: math.unit(7, "feet"),
  56562. weight: math.unit(657, "kg"),
  56563. name: "Side",
  56564. image: {
  56565. source: "./media/characters/delta/side.svg",
  56566. extra: 781/212,
  56567. bottom: 7/788
  56568. },
  56569. extraAttributes: {
  56570. "wingspan": {
  56571. name: "Wingspan",
  56572. power: 1,
  56573. type: "length",
  56574. base: math.unit(48, "feet")
  56575. },
  56576. "length": {
  56577. name: "Length",
  56578. power: 1,
  56579. type: "length",
  56580. base: math.unit(21, "feet")
  56581. },
  56582. "pawSize": {
  56583. name: "Paw Size",
  56584. power: 2,
  56585. type: "area",
  56586. base: math.unit(1.5*1.4, "feet^2")
  56587. },
  56588. }
  56589. },
  56590. },
  56591. [
  56592. {
  56593. name: "Normal",
  56594. height: math.unit(6, "feet"),
  56595. default: true
  56596. },
  56597. ]
  56598. ))
  56599. characterMakers.push(() => makeCharacter(
  56600. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56601. {
  56602. front: {
  56603. height: math.unit(6, "feet"),
  56604. name: "Front",
  56605. image: {
  56606. source: "./media/characters/pyrow/front.svg",
  56607. extra: 513/486,
  56608. bottom: 14/527
  56609. }
  56610. },
  56611. frontWing: {
  56612. height: math.unit(6, "feet"),
  56613. name: "Front (Wing)",
  56614. image: {
  56615. source: "./media/characters/pyrow/front-wing.svg",
  56616. extra: 539/383,
  56617. bottom: 20/559
  56618. }
  56619. },
  56620. back: {
  56621. height: math.unit(6, "feet"),
  56622. name: "Back",
  56623. image: {
  56624. source: "./media/characters/pyrow/back.svg",
  56625. extra: 500/473,
  56626. bottom: 9/509
  56627. }
  56628. },
  56629. },
  56630. [
  56631. {
  56632. name: "Normal",
  56633. height: math.unit(6, "feet"),
  56634. default: true
  56635. },
  56636. ]
  56637. ))
  56638. characterMakers.push(() => makeCharacter(
  56639. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56640. {
  56641. front: {
  56642. height: math.unit(5, "meters"),
  56643. weight: math.unit(3, "tonnes"),
  56644. name: "Front",
  56645. image: {
  56646. source: "./media/characters/velikan/front.svg",
  56647. extra: 867/744,
  56648. bottom: 71/938
  56649. },
  56650. extraAttributes: {
  56651. "shoeSize": {
  56652. name: "Shoe Size",
  56653. power: 1,
  56654. type: "length",
  56655. base: math.unit(135, "ShoeSizeUK"),
  56656. defaultUnit: "ShoeSizeUK"
  56657. },
  56658. }
  56659. },
  56660. },
  56661. [
  56662. {
  56663. name: "Normal",
  56664. height: math.unit(5, "meters"),
  56665. default: true
  56666. },
  56667. {
  56668. name: "Macro",
  56669. height: math.unit(1, "km")
  56670. },
  56671. {
  56672. name: "Mega Macro",
  56673. height: math.unit(100, "km")
  56674. },
  56675. {
  56676. name: "Giga Macro",
  56677. height: math.unit(2, "megameters")
  56678. },
  56679. {
  56680. name: "Planetary",
  56681. height: math.unit(22, "megameters")
  56682. },
  56683. {
  56684. name: "Solar",
  56685. height: math.unit(8, "gigameters")
  56686. },
  56687. {
  56688. name: "Cosmic",
  56689. height: math.unit(10, "zettameters")
  56690. },
  56691. {
  56692. name: "Omni",
  56693. height: math.unit(9e260, "multiverses")
  56694. },
  56695. ]
  56696. ))
  56697. characterMakers.push(() => makeCharacter(
  56698. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56699. {
  56700. front: {
  56701. height: math.unit(4 + 3/12, "feet"),
  56702. weight: math.unit(90, "lb"),
  56703. name: "Front",
  56704. image: {
  56705. source: "./media/characters/sabiki/front.svg",
  56706. extra: 1662/1423,
  56707. bottom: 65/1727
  56708. }
  56709. },
  56710. },
  56711. [
  56712. {
  56713. name: "Normal",
  56714. height: math.unit(4 + 3/12, "feet"),
  56715. default: true
  56716. },
  56717. ]
  56718. ))
  56719. characterMakers.push(() => makeCharacter(
  56720. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56721. {
  56722. frontSfw: {
  56723. height: math.unit(2, "mm"),
  56724. name: "Front (SFW)",
  56725. image: {
  56726. source: "./media/characters/carmel/front-sfw.svg",
  56727. extra: 1131/1006,
  56728. bottom: 66/1197
  56729. }
  56730. },
  56731. frontNsfw: {
  56732. height: math.unit(2, "mm"),
  56733. name: "Front (NSFW)",
  56734. image: {
  56735. source: "./media/characters/carmel/front-nsfw.svg",
  56736. extra: 1131/1006,
  56737. bottom: 66/1197
  56738. }
  56739. },
  56740. foot: {
  56741. height: math.unit(0.3, "mm"),
  56742. name: "Foot",
  56743. image: {
  56744. source: "./media/characters/carmel/foot.svg"
  56745. }
  56746. },
  56747. tongue: {
  56748. height: math.unit(0.71, "mm"),
  56749. name: "Tongue",
  56750. image: {
  56751. source: "./media/characters/carmel/tongue.svg"
  56752. }
  56753. },
  56754. dick: {
  56755. height: math.unit(0.085, "mm"),
  56756. name: "Dick",
  56757. image: {
  56758. source: "./media/characters/carmel/dick.svg"
  56759. }
  56760. },
  56761. },
  56762. [
  56763. {
  56764. name: "Micro",
  56765. height: math.unit(2, "mm"),
  56766. default: true
  56767. },
  56768. {
  56769. name: "Normal",
  56770. height: math.unit(4 + 8/12, "feet")
  56771. },
  56772. {
  56773. name: "Mega Macro",
  56774. height: math.unit(250, "feet")
  56775. },
  56776. {
  56777. name: "BIGGER",
  56778. height: math.unit(1000, "feet")
  56779. },
  56780. {
  56781. name: "BIGGEST",
  56782. height: math.unit(2, "miles")
  56783. },
  56784. ]
  56785. ))
  56786. characterMakers.push(() => makeCharacter(
  56787. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56788. {
  56789. front: {
  56790. height: math.unit(6.5, "feet"),
  56791. weight: math.unit(198, "lb"),
  56792. name: "Front",
  56793. image: {
  56794. source: "./media/characters/tamani/anthro.svg",
  56795. extra: 930/890,
  56796. bottom: 34/964
  56797. },
  56798. form: "anthro",
  56799. default: true
  56800. },
  56801. side: {
  56802. height: math.unit(6, "feet"),
  56803. weight: math.unit(198*2, "lb"),
  56804. name: "Side",
  56805. image: {
  56806. source: "./media/characters/tamani/feral.svg",
  56807. extra: 559/519,
  56808. bottom: 43/602
  56809. },
  56810. form: "feral"
  56811. },
  56812. },
  56813. [
  56814. {
  56815. name: "Normal",
  56816. height: math.unit(6.5, "feet"),
  56817. default: true,
  56818. form: "anthro"
  56819. },
  56820. {
  56821. name: "Normal",
  56822. height: math.unit(6, "feet"),
  56823. default: true,
  56824. form: "feral"
  56825. },
  56826. ],
  56827. {
  56828. "anthro": {
  56829. name: "Anthro",
  56830. default: true
  56831. },
  56832. "feral": {
  56833. name: "Feral",
  56834. },
  56835. }
  56836. ))
  56837. characterMakers.push(() => makeCharacter(
  56838. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56839. {
  56840. front: {
  56841. height: math.unit(4 + 1/12, "feet"),
  56842. weight: math.unit(114, "lb"),
  56843. name: "Front",
  56844. image: {
  56845. source: "./media/characters/dex/front.svg",
  56846. extra: 787/680,
  56847. bottom: 18/805
  56848. }
  56849. },
  56850. side: {
  56851. height: math.unit(4 + 1/12, "feet"),
  56852. weight: math.unit(114, "lb"),
  56853. name: "Side",
  56854. image: {
  56855. source: "./media/characters/dex/side.svg",
  56856. extra: 785/680,
  56857. bottom: 12/797
  56858. }
  56859. },
  56860. back: {
  56861. height: math.unit(4 + 1/12, "feet"),
  56862. weight: math.unit(114, "lb"),
  56863. name: "Back",
  56864. image: {
  56865. source: "./media/characters/dex/back.svg",
  56866. extra: 785/681,
  56867. bottom: 17/802
  56868. }
  56869. },
  56870. loungewear: {
  56871. height: math.unit(4 + 1/12, "feet"),
  56872. weight: math.unit(114, "lb"),
  56873. name: "Loungewear",
  56874. image: {
  56875. source: "./media/characters/dex/loungewear.svg",
  56876. extra: 787/680,
  56877. bottom: 18/805
  56878. }
  56879. },
  56880. workout: {
  56881. height: math.unit(4 + 1/12, "feet"),
  56882. weight: math.unit(114, "lb"),
  56883. name: "Workout",
  56884. image: {
  56885. source: "./media/characters/dex/workout.svg",
  56886. extra: 787/680,
  56887. bottom: 18/805
  56888. }
  56889. },
  56890. schoolUniform: {
  56891. height: math.unit(4 + 1/12, "feet"),
  56892. weight: math.unit(114, "lb"),
  56893. name: "School-uniform",
  56894. image: {
  56895. source: "./media/characters/dex/school-uniform.svg",
  56896. extra: 787/680,
  56897. bottom: 18/805
  56898. }
  56899. },
  56900. maw: {
  56901. height: math.unit(0.55, "feet"),
  56902. name: "Maw",
  56903. image: {
  56904. source: "./media/characters/dex/maw.svg"
  56905. }
  56906. },
  56907. paw: {
  56908. height: math.unit(0.87, "feet"),
  56909. name: "Paw",
  56910. image: {
  56911. source: "./media/characters/dex/paw.svg"
  56912. }
  56913. },
  56914. bust: {
  56915. height: math.unit(1.67, "feet"),
  56916. name: "Bust",
  56917. image: {
  56918. source: "./media/characters/dex/bust.svg"
  56919. }
  56920. },
  56921. },
  56922. [
  56923. {
  56924. name: "Normal",
  56925. height: math.unit(4 + 1/12, "feet"),
  56926. default: true
  56927. },
  56928. ]
  56929. ))
  56930. characterMakers.push(() => makeCharacter(
  56931. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56932. {
  56933. front: {
  56934. height: math.unit(4 + 3/12, "feet"),
  56935. weight: math.unit(60, "lb"),
  56936. name: "Front",
  56937. image: {
  56938. source: "./media/characters/silke/front.svg",
  56939. extra: 1334/1122,
  56940. bottom: 21/1355
  56941. }
  56942. },
  56943. back: {
  56944. height: math.unit(4 + 3/12, "feet"),
  56945. weight: math.unit(60, "lb"),
  56946. name: "Back",
  56947. image: {
  56948. source: "./media/characters/silke/back.svg",
  56949. extra: 1328/1092,
  56950. bottom: 16/1344
  56951. }
  56952. },
  56953. dressed: {
  56954. height: math.unit(4 + 3/12, "feet"),
  56955. weight: math.unit(60, "lb"),
  56956. name: "Dressed",
  56957. image: {
  56958. source: "./media/characters/silke/dressed.svg",
  56959. extra: 1334/1122,
  56960. bottom: 43/1377
  56961. }
  56962. },
  56963. },
  56964. [
  56965. {
  56966. name: "Normal",
  56967. height: math.unit(4 + 3/12, "feet"),
  56968. default: true
  56969. },
  56970. ]
  56971. ))
  56972. characterMakers.push(() => makeCharacter(
  56973. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56974. {
  56975. front: {
  56976. height: math.unit(1.58, "meters"),
  56977. weight: math.unit(47, "kg"),
  56978. name: "Front",
  56979. image: {
  56980. source: "./media/characters/wireshark/front.svg",
  56981. extra: 883/838,
  56982. bottom: 66/949
  56983. }
  56984. },
  56985. },
  56986. [
  56987. {
  56988. name: "Normal",
  56989. height: math.unit(1.58, "meters"),
  56990. default: true
  56991. },
  56992. ]
  56993. ))
  56994. characterMakers.push(() => makeCharacter(
  56995. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56996. {
  56997. front: {
  56998. height: math.unit(6, "meters"),
  56999. weight: math.unit(15000, "kg"),
  57000. name: "Front",
  57001. image: {
  57002. source: "./media/characters/gallagher/front.svg",
  57003. extra: 532/493,
  57004. bottom: 0/532
  57005. }
  57006. },
  57007. },
  57008. [
  57009. {
  57010. name: "Normal",
  57011. height: math.unit(6, "meters"),
  57012. default: true
  57013. },
  57014. ]
  57015. ))
  57016. characterMakers.push(() => makeCharacter(
  57017. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57018. {
  57019. front: {
  57020. height: math.unit(2.4, "meters"),
  57021. weight: math.unit(270, "kg"),
  57022. name: "Front",
  57023. image: {
  57024. source: "./media/characters/alice/front.svg",
  57025. extra: 950/900,
  57026. bottom: 36/986
  57027. }
  57028. },
  57029. side: {
  57030. height: math.unit(2.4, "meters"),
  57031. weight: math.unit(270, "kg"),
  57032. name: "Side",
  57033. image: {
  57034. source: "./media/characters/alice/side.svg",
  57035. extra: 921/876,
  57036. bottom: 19/940
  57037. }
  57038. },
  57039. dressed: {
  57040. height: math.unit(2.4, "meters"),
  57041. weight: math.unit(270, "kg"),
  57042. name: "Dressed",
  57043. image: {
  57044. source: "./media/characters/alice/dressed.svg",
  57045. extra: 905/850,
  57046. bottom: 81/986
  57047. }
  57048. },
  57049. fishnet: {
  57050. height: math.unit(2.4, "meters"),
  57051. weight: math.unit(270, "kg"),
  57052. name: "Fishnet",
  57053. image: {
  57054. source: "./media/characters/alice/fishnet.svg",
  57055. extra: 905/850,
  57056. bottom: 81/986
  57057. }
  57058. },
  57059. },
  57060. [
  57061. {
  57062. name: "Normal",
  57063. height: math.unit(2.4, "meters"),
  57064. default: true
  57065. },
  57066. ]
  57067. ))
  57068. characterMakers.push(() => makeCharacter(
  57069. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57070. {
  57071. front: {
  57072. height: math.unit(175.25, "feet"),
  57073. name: "Front",
  57074. image: {
  57075. source: "./media/characters/fio/front.svg",
  57076. extra: 1883/1591,
  57077. bottom: 34/1917
  57078. }
  57079. },
  57080. },
  57081. [
  57082. {
  57083. name: "Normal",
  57084. height: math.unit(175.25, "cm"),
  57085. default: true
  57086. },
  57087. ]
  57088. ))
  57089. characterMakers.push(() => makeCharacter(
  57090. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57091. {
  57092. side: {
  57093. height: math.unit(6, "meters"),
  57094. weight: math.unit(3400, "kg"),
  57095. preyCapacity: math.unit(1700, "liters"),
  57096. name: "Side",
  57097. image: {
  57098. source: "./media/characters/hass/side.svg",
  57099. extra: 1058/997,
  57100. bottom: 177/1235
  57101. }
  57102. },
  57103. feeding: {
  57104. height: math.unit(6*0.63, "meters"),
  57105. weight: math.unit(3400, "kg"),
  57106. preyCapacity: math.unit(1700, "liters"),
  57107. name: "Feeding",
  57108. image: {
  57109. source: "./media/characters/hass/feeding.svg",
  57110. extra: 689/579,
  57111. bottom: 146/835
  57112. }
  57113. },
  57114. guts: {
  57115. height: math.unit(6, "meters"),
  57116. weight: math.unit(3400, "kg"),
  57117. name: "Guts",
  57118. image: {
  57119. source: "./media/characters/hass/guts.svg",
  57120. extra: 1223/1198,
  57121. bottom: 182/1405
  57122. }
  57123. },
  57124. dickFront: {
  57125. height: math.unit(1.4, "meters"),
  57126. name: "Dick (Front)",
  57127. image: {
  57128. source: "./media/characters/hass/dick-front.svg"
  57129. }
  57130. },
  57131. dickSide: {
  57132. height: math.unit(1.3, "meters"),
  57133. name: "Dick (Side)",
  57134. image: {
  57135. source: "./media/characters/hass/dick-side.svg"
  57136. }
  57137. },
  57138. dickBack: {
  57139. height: math.unit(1.4, "meters"),
  57140. name: "Dick (Back)",
  57141. image: {
  57142. source: "./media/characters/hass/dick-back.svg"
  57143. }
  57144. },
  57145. },
  57146. [
  57147. {
  57148. name: "Normal",
  57149. height: math.unit(6, "meters"),
  57150. default: true
  57151. },
  57152. ]
  57153. ))
  57154. characterMakers.push(() => makeCharacter(
  57155. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57156. {
  57157. front: {
  57158. height: math.unit(4, "feet"),
  57159. weight: math.unit(60, "lb"),
  57160. name: "Front",
  57161. image: {
  57162. source: "./media/characters/hickory-finnegan/front.svg",
  57163. extra: 444/411,
  57164. bottom: 10/454
  57165. }
  57166. },
  57167. side: {
  57168. height: math.unit(4, "feet"),
  57169. weight: math.unit(60, "lb"),
  57170. name: "Side",
  57171. image: {
  57172. source: "./media/characters/hickory-finnegan/side.svg",
  57173. extra: 444/411,
  57174. bottom: 10/454
  57175. }
  57176. },
  57177. back: {
  57178. height: math.unit(4, "feet"),
  57179. weight: math.unit(60, "lb"),
  57180. name: "Back",
  57181. image: {
  57182. source: "./media/characters/hickory-finnegan/back.svg",
  57183. extra: 444/411,
  57184. bottom: 10/454
  57185. }
  57186. },
  57187. },
  57188. [
  57189. {
  57190. name: "Normal",
  57191. height: math.unit(4, "feet"),
  57192. default: true
  57193. },
  57194. ]
  57195. ))
  57196. characterMakers.push(() => makeCharacter(
  57197. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57198. {
  57199. snivy_front: {
  57200. height: math.unit(2, "feet"),
  57201. weight: math.unit(17.9, "lb"),
  57202. name: "Front",
  57203. image: {
  57204. source: "./media/characters/robin-phox/snivy-front.svg",
  57205. extra: 569/504,
  57206. bottom: 33/602
  57207. },
  57208. form: "snivy",
  57209. default: true
  57210. },
  57211. snivy_frontNsfw: {
  57212. height: math.unit(2, "feet"),
  57213. weight: math.unit(17.9, "lb"),
  57214. name: "Front (NSFW)",
  57215. image: {
  57216. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57217. extra: 569/504,
  57218. bottom: 33/602
  57219. },
  57220. form: "snivy",
  57221. },
  57222. snivy_back: {
  57223. height: math.unit(2, "feet"),
  57224. weight: math.unit(17.9, "lb"),
  57225. name: "Back",
  57226. image: {
  57227. source: "./media/characters/robin-phox/snivy-back.svg",
  57228. extra: 577/508,
  57229. bottom: 21/598
  57230. },
  57231. form: "snivy",
  57232. },
  57233. snivy_foot: {
  57234. height: math.unit(0.68, "feet"),
  57235. name: "Foot",
  57236. image: {
  57237. source: "./media/characters/robin-phox/snivy-foot.svg"
  57238. },
  57239. form: "snivy",
  57240. },
  57241. snivy_sole: {
  57242. height: math.unit(0.68, "feet"),
  57243. name: "Sole",
  57244. image: {
  57245. source: "./media/characters/robin-phox/snivy-sole.svg"
  57246. },
  57247. form: "snivy",
  57248. },
  57249. yoshi_front: {
  57250. height: math.unit(6, "feet"),
  57251. weight: math.unit(150, "lb"),
  57252. name: "Front",
  57253. image: {
  57254. source: "./media/characters/robin-phox/yoshi-front.svg",
  57255. extra: 890/792,
  57256. bottom: 29/919
  57257. },
  57258. form: "yoshi",
  57259. default: true
  57260. },
  57261. yoshi_frontNsfw: {
  57262. height: math.unit(6, "feet"),
  57263. weight: math.unit(150, "lb"),
  57264. name: "Front (NSFW)",
  57265. image: {
  57266. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57267. extra: 890/792,
  57268. bottom: 29/919
  57269. },
  57270. form: "yoshi",
  57271. },
  57272. yoshi_back: {
  57273. height: math.unit(6, "feet"),
  57274. weight: math.unit(150, "lb"),
  57275. name: "Back",
  57276. image: {
  57277. source: "./media/characters/robin-phox/yoshi-back.svg",
  57278. extra: 890/792,
  57279. bottom: 29/919
  57280. },
  57281. form: "yoshi",
  57282. },
  57283. yoshi_foot: {
  57284. height: math.unit(1.5, "feet"),
  57285. name: "Foot",
  57286. image: {
  57287. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57288. },
  57289. form: "yoshi",
  57290. },
  57291. delphox_front: {
  57292. height: math.unit(4 + 11/12, "feet"),
  57293. weight: math.unit(86, "lb"),
  57294. name: "Front",
  57295. image: {
  57296. source: "./media/characters/robin-phox/delphox-front.svg",
  57297. extra: 1266/1069,
  57298. bottom: 32/1298
  57299. },
  57300. form: "delphox",
  57301. default: true
  57302. },
  57303. delphox_frontNsfw: {
  57304. height: math.unit(4 + 11/12, "feet"),
  57305. weight: math.unit(86, "lb"),
  57306. name: "Front (NSFW)",
  57307. image: {
  57308. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57309. extra: 1266/1069,
  57310. bottom: 32/1298
  57311. },
  57312. form: "delphox",
  57313. },
  57314. delphox_back: {
  57315. height: math.unit(4 + 11/12, "feet"),
  57316. weight: math.unit(86, "lb"),
  57317. name: "Back",
  57318. image: {
  57319. source: "./media/characters/robin-phox/delphox-back.svg",
  57320. extra: 1269/1083,
  57321. bottom: 15/1284
  57322. },
  57323. form: "delphox",
  57324. },
  57325. mienshao_front: {
  57326. height: math.unit(4 + 7/12, "feet"),
  57327. weight: math.unit(78.3, "lb"),
  57328. name: "Front",
  57329. image: {
  57330. source: "./media/characters/robin-phox/mienshao-front.svg",
  57331. extra: 1052/970,
  57332. bottom: 108/1160
  57333. },
  57334. form: "mienshao",
  57335. default: true
  57336. },
  57337. mienshao_frontNsfw: {
  57338. height: math.unit(4 + 7/12, "feet"),
  57339. weight: math.unit(78.3, "lb"),
  57340. name: "Front (NSFW)",
  57341. image: {
  57342. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57343. extra: 1052/970,
  57344. bottom: 108/1160
  57345. },
  57346. form: "mienshao",
  57347. },
  57348. mienshao_back: {
  57349. height: math.unit(4 + 7/12, "feet"),
  57350. weight: math.unit(78.3, "lb"),
  57351. name: "Back",
  57352. image: {
  57353. source: "./media/characters/robin-phox/mienshao-back.svg",
  57354. extra: 1102/982,
  57355. bottom: 32/1134
  57356. },
  57357. form: "mienshao",
  57358. },
  57359. inteleon_front: {
  57360. height: math.unit(6 + 3/12, "feet"),
  57361. weight: math.unit(99.6, "lb"),
  57362. name: "Front",
  57363. image: {
  57364. source: "./media/characters/robin-phox/inteleon-front.svg",
  57365. extra: 910/799,
  57366. bottom: 76/986
  57367. },
  57368. form: "inteleon",
  57369. default: true
  57370. },
  57371. inteleon_frontNsfw: {
  57372. height: math.unit(6 + 3/12, "feet"),
  57373. weight: math.unit(99.6, "lb"),
  57374. name: "Front (NSFW)",
  57375. image: {
  57376. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57377. extra: 910/799,
  57378. bottom: 76/986
  57379. },
  57380. form: "inteleon",
  57381. },
  57382. inteleon_back: {
  57383. height: math.unit(6 + 3/12, "feet"),
  57384. weight: math.unit(99.6, "lb"),
  57385. name: "Back",
  57386. image: {
  57387. source: "./media/characters/robin-phox/inteleon-back.svg",
  57388. extra: 907/796,
  57389. bottom: 25/932
  57390. },
  57391. form: "inteleon",
  57392. },
  57393. reshiram_front: {
  57394. height: math.unit(10 + 6/12, "feet"),
  57395. weight: math.unit(727.5, "lb"),
  57396. name: "Front",
  57397. image: {
  57398. source: "./media/characters/robin-phox/reshiram-front.svg",
  57399. extra: 1198/940,
  57400. bottom: 123/1321
  57401. },
  57402. form: "reshiram",
  57403. },
  57404. reshiram_frontNsfw: {
  57405. height: math.unit(10 + 6/12, "feet"),
  57406. weight: math.unit(727.5, "lb"),
  57407. name: "Front-nsfw",
  57408. image: {
  57409. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57410. extra: 1198/940,
  57411. bottom: 123/1321
  57412. },
  57413. form: "reshiram",
  57414. },
  57415. reshiram_back: {
  57416. height: math.unit(10 + 6/12, "feet"),
  57417. weight: math.unit(727.5, "lb"),
  57418. name: "Back",
  57419. image: {
  57420. source: "./media/characters/robin-phox/reshiram-back.svg",
  57421. extra: 1024/904,
  57422. bottom: 85/1109
  57423. },
  57424. form: "reshiram",
  57425. },
  57426. samurott_front: {
  57427. height: math.unit(8, "feet"),
  57428. weight: math.unit(208.6, "lb"),
  57429. name: "Front",
  57430. image: {
  57431. source: "./media/characters/robin-phox/samurott-front.svg",
  57432. extra: 1048/984,
  57433. bottom: 100/1148
  57434. },
  57435. form: "samurott",
  57436. },
  57437. samurott_frontNsfw: {
  57438. height: math.unit(8, "feet"),
  57439. weight: math.unit(208.6, "lb"),
  57440. name: "Front-nsfw",
  57441. image: {
  57442. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57443. extra: 1048/984,
  57444. bottom: 100/1148
  57445. },
  57446. form: "samurott",
  57447. },
  57448. samurott_back: {
  57449. height: math.unit(8, "feet"),
  57450. weight: math.unit(208.6, "lb"),
  57451. name: "Back",
  57452. image: {
  57453. source: "./media/characters/robin-phox/samurott-back.svg",
  57454. extra: 1110/1042,
  57455. bottom: 12/1122
  57456. },
  57457. form: "samurott",
  57458. },
  57459. samurott_feral: {
  57460. height: math.unit(4 + 11/12, "feet"),
  57461. weight: math.unit(208.6, "lb"),
  57462. name: "Feral",
  57463. image: {
  57464. source: "./media/characters/robin-phox/samurott-feral.svg",
  57465. extra: 766/681,
  57466. bottom: 108/874
  57467. },
  57468. form: "samurott",
  57469. },
  57470. },
  57471. [
  57472. {
  57473. name: "Normal",
  57474. height: math.unit(2, "feet"),
  57475. default: true,
  57476. form: "snivy"
  57477. },
  57478. {
  57479. name: "Normal",
  57480. height: math.unit(6, "feet"),
  57481. default: true,
  57482. form: "yoshi"
  57483. },
  57484. {
  57485. name: "Normal",
  57486. height: math.unit(4 + 11/12, "feet"),
  57487. default: true,
  57488. form: "delphox"
  57489. },
  57490. {
  57491. name: "Normal",
  57492. height: math.unit(4 + 7/12, "feet"),
  57493. default: true,
  57494. form: "mienshao"
  57495. },
  57496. {
  57497. name: "Normal",
  57498. height: math.unit(6 + 3/12, "feet"),
  57499. default: true,
  57500. form: "inteleon"
  57501. },
  57502. {
  57503. name: "Normal",
  57504. height: math.unit(10 + 6/12, "feet"),
  57505. default: true,
  57506. form: "reshiram"
  57507. },
  57508. {
  57509. name: "Normal",
  57510. height: math.unit(8, "feet"),
  57511. default: true,
  57512. form: "samurott"
  57513. },
  57514. {
  57515. name: "Macro",
  57516. height: math.unit(500, "feet"),
  57517. allForms: true
  57518. },
  57519. {
  57520. name: "Mega Macro",
  57521. height: math.unit(10, "earths"),
  57522. allForms: true
  57523. },
  57524. {
  57525. name: "Giga Macro",
  57526. height: math.unit(1, "galaxy"),
  57527. allForms: true
  57528. },
  57529. {
  57530. name: "Godly Macro",
  57531. height: math.unit(1e10, "multiverses"),
  57532. allForms: true
  57533. },
  57534. ],
  57535. {
  57536. "snivy": {
  57537. name: "Snivy",
  57538. default: true
  57539. },
  57540. "yoshi": {
  57541. name: "Yoshi",
  57542. },
  57543. "delphox": {
  57544. name: "Delphox",
  57545. },
  57546. "mienshao": {
  57547. name: "Mienshao",
  57548. },
  57549. "inteleon": {
  57550. name: "Inteleon",
  57551. },
  57552. "reshiram": {
  57553. name: "Reshiram",
  57554. },
  57555. "samurott": {
  57556. name: "Samurott",
  57557. },
  57558. }
  57559. ))
  57560. characterMakers.push(() => makeCharacter(
  57561. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57562. {
  57563. front: {
  57564. height: math.unit(4, "feet"),
  57565. name: "Front",
  57566. image: {
  57567. source: "./media/characters/ash-leung/front.svg",
  57568. extra: 1916/1792,
  57569. bottom: 50/1966
  57570. }
  57571. },
  57572. },
  57573. [
  57574. {
  57575. name: "Atomic",
  57576. height: math.unit(1, "angstrom")
  57577. },
  57578. {
  57579. name: "Microscopic",
  57580. height: math.unit(4000, "angstroms")
  57581. },
  57582. {
  57583. name: "Speck",
  57584. height: math.unit(1, "mm")
  57585. },
  57586. {
  57587. name: "Small",
  57588. height: math.unit(1, "inch")
  57589. },
  57590. {
  57591. name: "Normal",
  57592. height: math.unit(4, "feet"),
  57593. default: true
  57594. },
  57595. ]
  57596. ))
  57597. characterMakers.push(() => makeCharacter(
  57598. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57599. {
  57600. frontDressed: {
  57601. height: math.unit(2.08, "meters"),
  57602. weight: math.unit(175, "lb"),
  57603. name: "Front (Dressed)",
  57604. image: {
  57605. source: "./media/characters/carie/front-dressed.svg",
  57606. extra: 456/417,
  57607. bottom: 7/463
  57608. }
  57609. },
  57610. backDressed: {
  57611. height: math.unit(2.08, "meters"),
  57612. weight: math.unit(175, "lb"),
  57613. name: "Back (Dressed)",
  57614. image: {
  57615. source: "./media/characters/carie/back-dressed.svg",
  57616. extra: 455/414,
  57617. bottom: 11/466
  57618. }
  57619. },
  57620. front: {
  57621. height: math.unit(2, "meters"),
  57622. weight: math.unit(175, "lb"),
  57623. name: "Front",
  57624. image: {
  57625. source: "./media/characters/carie/front.svg",
  57626. extra: 438/399,
  57627. bottom: 12/450
  57628. }
  57629. },
  57630. back: {
  57631. height: math.unit(2, "meters"),
  57632. weight: math.unit(175, "lb"),
  57633. name: "Back",
  57634. image: {
  57635. source: "./media/characters/carie/back.svg",
  57636. extra: 438/397,
  57637. bottom: 7/445
  57638. }
  57639. },
  57640. },
  57641. [
  57642. {
  57643. name: "Normal",
  57644. height: math.unit(2.08, "meters"),
  57645. default: true
  57646. },
  57647. {
  57648. name: "Macro",
  57649. height: math.unit(2.08e3, "meters")
  57650. },
  57651. {
  57652. name: "Mega Macro",
  57653. height: math.unit(2.08e6, "meters")
  57654. },
  57655. {
  57656. name: "Giga Macro",
  57657. height: math.unit(2.08e9, "meters")
  57658. },
  57659. {
  57660. name: "Tera Macro",
  57661. height: math.unit(2.08e12, "meters")
  57662. },
  57663. {
  57664. name: "Peta Macro",
  57665. height: math.unit(2.08e15, "meters")
  57666. },
  57667. {
  57668. name: "Exa Macro",
  57669. height: math.unit(2.08e18, "meters")
  57670. },
  57671. {
  57672. name: "Zetta Macro",
  57673. height: math.unit(2.08e21, "meters")
  57674. },
  57675. {
  57676. name: "Yotta Macro",
  57677. height: math.unit(2.08e24, "meters")
  57678. },
  57679. ]
  57680. ))
  57681. characterMakers.push(() => makeCharacter(
  57682. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57683. {
  57684. front: {
  57685. height: math.unit(5 + 2/12, "feet"),
  57686. weight: math.unit(120, "lb"),
  57687. name: "Front",
  57688. image: {
  57689. source: "./media/characters/sai-bree/front.svg",
  57690. extra: 1843/1702,
  57691. bottom: 91/1934
  57692. }
  57693. },
  57694. back: {
  57695. height: math.unit(5 + 2/12, "feet"),
  57696. weight: math.unit(120, "lb"),
  57697. name: "Back",
  57698. image: {
  57699. source: "./media/characters/sai-bree/back.svg",
  57700. extra: 1809/1637,
  57701. bottom: 56/1865
  57702. }
  57703. },
  57704. },
  57705. [
  57706. {
  57707. name: "Normal",
  57708. height: math.unit(5 + 2/12, "feet"),
  57709. default: true
  57710. },
  57711. {
  57712. name: "Macro",
  57713. height: math.unit(500, "feet")
  57714. },
  57715. ]
  57716. ))
  57717. characterMakers.push(() => makeCharacter(
  57718. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57719. {
  57720. side: {
  57721. height: math.unit(0.77, "meters"),
  57722. weight: math.unit(120, "lb"),
  57723. name: "Side",
  57724. image: {
  57725. source: "./media/characters/davwyn/side.svg",
  57726. extra: 1557/1225,
  57727. bottom: 131/1688
  57728. }
  57729. },
  57730. front: {
  57731. height: math.unit(0.835410, "meters"),
  57732. weight: math.unit(120, "lb"),
  57733. name: "Front",
  57734. image: {
  57735. source: "./media/characters/davwyn/front.svg",
  57736. extra: 870/843,
  57737. bottom: 175/1045
  57738. }
  57739. },
  57740. },
  57741. [
  57742. {
  57743. name: "Minidrake",
  57744. height: math.unit(0.77/4, "meters")
  57745. },
  57746. {
  57747. name: "Normal",
  57748. height: math.unit(0.77, "meters"),
  57749. default: true
  57750. },
  57751. ]
  57752. ))
  57753. characterMakers.push(() => makeCharacter(
  57754. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57755. {
  57756. front: {
  57757. height: math.unit(10 + 3/12, "feet"),
  57758. weight: math.unit(2857, "lb"),
  57759. name: "Front",
  57760. image: {
  57761. source: "./media/characters/balans/front.svg",
  57762. extra: 427/402,
  57763. bottom: 26/453
  57764. }
  57765. },
  57766. side: {
  57767. height: math.unit(10 + 3/12, "feet"),
  57768. weight: math.unit(2857, "lb"),
  57769. name: "Side",
  57770. image: {
  57771. source: "./media/characters/balans/side.svg",
  57772. extra: 397/371,
  57773. bottom: 17/414
  57774. }
  57775. },
  57776. back: {
  57777. height: math.unit(10 + 3/12, "feet"),
  57778. weight: math.unit(2857, "lb"),
  57779. name: "Back",
  57780. image: {
  57781. source: "./media/characters/balans/back.svg",
  57782. extra: 408/381,
  57783. bottom: 14/422
  57784. }
  57785. },
  57786. hand: {
  57787. height: math.unit(1.15, "feet"),
  57788. name: "Hand",
  57789. image: {
  57790. source: "./media/characters/balans/hand.svg"
  57791. }
  57792. },
  57793. footRest: {
  57794. height: math.unit(3.1, "feet"),
  57795. name: "Foot (Rest)",
  57796. image: {
  57797. source: "./media/characters/balans/foot-rest.svg"
  57798. }
  57799. },
  57800. footActive: {
  57801. height: math.unit(3.5, "feet"),
  57802. name: "Foot (Active)",
  57803. image: {
  57804. source: "./media/characters/balans/foot-active.svg"
  57805. }
  57806. },
  57807. },
  57808. [
  57809. {
  57810. name: "Normal",
  57811. height: math.unit(10 + 3/12, "feet"),
  57812. default: true
  57813. },
  57814. ]
  57815. ))
  57816. characterMakers.push(() => makeCharacter(
  57817. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57818. {
  57819. side: {
  57820. height: math.unit(9, "meters"),
  57821. weight: math.unit(114, "tonnes"),
  57822. name: "Side",
  57823. image: {
  57824. source: "./media/characters/eldkveikir/side.svg",
  57825. extra: 1927/338,
  57826. bottom: 42/1969
  57827. }
  57828. },
  57829. sitting: {
  57830. height: math.unit(13.4, "meters"),
  57831. weight: math.unit(114, "tonnes"),
  57832. name: "Sitting",
  57833. image: {
  57834. source: "./media/characters/eldkveikir/sitting.svg",
  57835. extra: 1108/963,
  57836. bottom: 610/1718
  57837. }
  57838. },
  57839. maw: {
  57840. height: math.unit(8.36, "meters"),
  57841. name: "Maw",
  57842. image: {
  57843. source: "./media/characters/eldkveikir/maw.svg"
  57844. }
  57845. },
  57846. hand: {
  57847. height: math.unit(4.84, "meters"),
  57848. name: "Hand",
  57849. image: {
  57850. source: "./media/characters/eldkveikir/hand.svg"
  57851. }
  57852. },
  57853. foot: {
  57854. height: math.unit(6.9, "meters"),
  57855. name: "Foot",
  57856. image: {
  57857. source: "./media/characters/eldkveikir/foot.svg"
  57858. }
  57859. },
  57860. genitals: {
  57861. height: math.unit(9.6, "meters"),
  57862. name: "Genitals",
  57863. image: {
  57864. source: "./media/characters/eldkveikir/genitals.svg"
  57865. }
  57866. },
  57867. },
  57868. [
  57869. {
  57870. name: "Normal",
  57871. height: math.unit(9, "meters"),
  57872. default: true
  57873. },
  57874. ]
  57875. ))
  57876. characterMakers.push(() => makeCharacter(
  57877. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57878. {
  57879. front: {
  57880. height: math.unit(14, "feet"),
  57881. weight: math.unit(4100, "lb"),
  57882. name: "Front",
  57883. image: {
  57884. source: "./media/characters/arrow/front.svg",
  57885. extra: 330/318,
  57886. bottom: 56/386
  57887. }
  57888. },
  57889. },
  57890. [
  57891. {
  57892. name: "Normal",
  57893. height: math.unit(14, "feet"),
  57894. default: true
  57895. },
  57896. {
  57897. name: "Minimacro",
  57898. height: math.unit(63, "feet")
  57899. },
  57900. {
  57901. name: "Macro",
  57902. height: math.unit(630, "feet")
  57903. },
  57904. {
  57905. name: "Megamacro",
  57906. height: math.unit(12600, "feet")
  57907. },
  57908. {
  57909. name: "Gigamacro",
  57910. height: math.unit(18000, "miles")
  57911. },
  57912. ]
  57913. ))
  57914. characterMakers.push(() => makeCharacter(
  57915. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57916. {
  57917. front: {
  57918. height: math.unit(10, "feet"),
  57919. weight: math.unit(2.4, "tons"),
  57920. name: "Front",
  57921. image: {
  57922. source: "./media/characters/3yk-k0-unit/front.svg",
  57923. extra: 573/561,
  57924. bottom: 33/606
  57925. }
  57926. },
  57927. back: {
  57928. height: math.unit(10, "feet"),
  57929. weight: math.unit(2.4, "tons"),
  57930. name: "Back",
  57931. image: {
  57932. source: "./media/characters/3yk-k0-unit/back.svg",
  57933. extra: 614/573,
  57934. bottom: 32/646
  57935. }
  57936. },
  57937. maw: {
  57938. height: math.unit(2.15, "feet"),
  57939. name: "Maw",
  57940. image: {
  57941. source: "./media/characters/3yk-k0-unit/maw.svg"
  57942. }
  57943. },
  57944. },
  57945. [
  57946. {
  57947. name: "Normal",
  57948. height: math.unit(10, "feet"),
  57949. default: true
  57950. },
  57951. ]
  57952. ))
  57953. characterMakers.push(() => makeCharacter(
  57954. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57955. {
  57956. front: {
  57957. height: math.unit(8 + 8/12, "feet"),
  57958. name: "Front",
  57959. image: {
  57960. source: "./media/characters/nemo/front.svg",
  57961. extra: 1308/1217,
  57962. bottom: 57/1365
  57963. }
  57964. },
  57965. },
  57966. [
  57967. {
  57968. name: "Normal",
  57969. height: math.unit(8 + 8/12, "feet"),
  57970. default: true
  57971. },
  57972. ]
  57973. ))
  57974. characterMakers.push(() => makeCharacter(
  57975. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57976. {
  57977. front: {
  57978. height: math.unit(8, "feet"),
  57979. weight: math.unit(760, "lb"),
  57980. name: "Front",
  57981. image: {
  57982. source: "./media/characters/rexx/front.svg",
  57983. extra: 786/750,
  57984. bottom: 17/803
  57985. },
  57986. extraAttributes: {
  57987. "pawLength": {
  57988. name: "Paw Length",
  57989. power: 1,
  57990. type: "length",
  57991. base: math.unit(27, "inches")
  57992. },
  57993. }
  57994. },
  57995. },
  57996. [
  57997. {
  57998. name: "Micro",
  57999. height: math.unit(2, "inches")
  58000. },
  58001. {
  58002. name: "Normal",
  58003. height: math.unit(8, "feet"),
  58004. default: true
  58005. },
  58006. {
  58007. name: "Macro",
  58008. height: math.unit(150, "feet")
  58009. },
  58010. ]
  58011. ))
  58012. characterMakers.push(() => makeCharacter(
  58013. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58014. {
  58015. front: {
  58016. height: math.unit(18, "feet"),
  58017. weight: math.unit(1975, "lb"),
  58018. name: "Front",
  58019. image: {
  58020. source: "./media/characters/draco/front.svg",
  58021. extra: 1325/1241,
  58022. bottom: 83/1408
  58023. }
  58024. },
  58025. back: {
  58026. height: math.unit(18, "feet"),
  58027. weight: math.unit(1975, "lb"),
  58028. name: "Back",
  58029. image: {
  58030. source: "./media/characters/draco/back.svg",
  58031. extra: 1332/1250,
  58032. bottom: 43/1375
  58033. }
  58034. },
  58035. dick: {
  58036. height: math.unit(7.5, "feet"),
  58037. name: "Dick",
  58038. image: {
  58039. source: "./media/characters/draco/dick.svg"
  58040. }
  58041. },
  58042. },
  58043. [
  58044. {
  58045. name: "Normal",
  58046. height: math.unit(18, "feet"),
  58047. default: true
  58048. },
  58049. ]
  58050. ))
  58051. characterMakers.push(() => makeCharacter(
  58052. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58053. {
  58054. front: {
  58055. height: math.unit(3.2, "meters"),
  58056. name: "Front",
  58057. image: {
  58058. source: "./media/characters/harriett/front.svg",
  58059. extra: 1966/1915,
  58060. bottom: 9/1975
  58061. }
  58062. },
  58063. },
  58064. [
  58065. {
  58066. name: "Normal",
  58067. height: math.unit(3.2, "meters"),
  58068. default: true
  58069. },
  58070. ]
  58071. ))
  58072. characterMakers.push(() => makeCharacter(
  58073. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58074. {
  58075. sitting: {
  58076. height: math.unit(0.8, "meter"),
  58077. name: "Sitting",
  58078. image: {
  58079. source: "./media/characters/serpentus/sitting.svg",
  58080. extra: 293/290,
  58081. bottom: 140/433
  58082. }
  58083. },
  58084. },
  58085. [
  58086. {
  58087. name: "Normal",
  58088. height: math.unit(0.8, "meter"),
  58089. default: true
  58090. },
  58091. ]
  58092. ))
  58093. characterMakers.push(() => makeCharacter(
  58094. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58095. {
  58096. front: {
  58097. height: math.unit(5.7174385736, "feet"),
  58098. name: "Front",
  58099. image: {
  58100. source: "./media/characters/nova-polecat/front.svg",
  58101. extra: 1317/1216,
  58102. bottom: 92/1409
  58103. }
  58104. },
  58105. },
  58106. [
  58107. {
  58108. name: "Normal",
  58109. height: math.unit(5.7174385736, "feet"),
  58110. default: true
  58111. },
  58112. ]
  58113. ))
  58114. characterMakers.push(() => makeCharacter(
  58115. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58116. {
  58117. front: {
  58118. height: math.unit(5 + 4/12, "feet"),
  58119. weight: math.unit(250, "lb"),
  58120. name: "Front",
  58121. image: {
  58122. source: "./media/characters/mook/front.svg",
  58123. extra: 1088/1037,
  58124. bottom: 132/1220
  58125. }
  58126. },
  58127. back: {
  58128. height: math.unit(5 + 1/12, "feet"),
  58129. weight: math.unit(250, "lb"),
  58130. name: "Back",
  58131. image: {
  58132. source: "./media/characters/mook/back.svg",
  58133. extra: 1184/905,
  58134. bottom: 96/1280
  58135. }
  58136. },
  58137. head: {
  58138. height: math.unit(1.85, "feet"),
  58139. name: "Head",
  58140. image: {
  58141. source: "./media/characters/mook/head.svg"
  58142. }
  58143. },
  58144. hand: {
  58145. height: math.unit(1.9, "feet"),
  58146. name: "Hand",
  58147. image: {
  58148. source: "./media/characters/mook/hand.svg"
  58149. }
  58150. },
  58151. palm: {
  58152. height: math.unit(1.84, "feet"),
  58153. name: "Palm",
  58154. image: {
  58155. source: "./media/characters/mook/palm.svg"
  58156. }
  58157. },
  58158. foot: {
  58159. height: math.unit(1.44, "feet"),
  58160. name: "Foot",
  58161. image: {
  58162. source: "./media/characters/mook/foot.svg"
  58163. }
  58164. },
  58165. sole: {
  58166. height: math.unit(1.44, "feet"),
  58167. name: "Sole",
  58168. image: {
  58169. source: "./media/characters/mook/sole.svg"
  58170. }
  58171. },
  58172. },
  58173. [
  58174. {
  58175. name: "Normal",
  58176. height: math.unit(5 + 4/12, "feet"),
  58177. default: true
  58178. },
  58179. {
  58180. name: "Big",
  58181. height: math.unit(12, "feet")
  58182. },
  58183. ]
  58184. ))
  58185. characterMakers.push(() => makeCharacter(
  58186. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58187. {
  58188. front: {
  58189. height: math.unit(6 + 10/12, "feet"),
  58190. weight: math.unit(233, "lb"),
  58191. name: "Front",
  58192. image: {
  58193. source: "./media/characters/kayla/front.svg",
  58194. extra: 1850/1775,
  58195. bottom: 65/1915
  58196. }
  58197. },
  58198. },
  58199. [
  58200. {
  58201. name: "Normal",
  58202. height: math.unit(6 + 10/12, "feet"),
  58203. default: true
  58204. },
  58205. {
  58206. name: "Amazonian",
  58207. height: math.unit(12 + 5/12, "feet")
  58208. },
  58209. {
  58210. name: "Mini Giantess",
  58211. height: math.unit(26, "feet")
  58212. },
  58213. {
  58214. name: "Giantess",
  58215. height: math.unit(200, "feet")
  58216. },
  58217. {
  58218. name: "Mega Giantess",
  58219. height: math.unit(2500, "feet")
  58220. },
  58221. {
  58222. name: "City Sized",
  58223. height: math.unit(50, "miles")
  58224. },
  58225. {
  58226. name: "Country Sized",
  58227. height: math.unit(500, "miles")
  58228. },
  58229. {
  58230. name: "Continent Sized",
  58231. height: math.unit(2500, "miles")
  58232. },
  58233. {
  58234. name: "Planet Sized",
  58235. height: math.unit(10000, "miles")
  58236. },
  58237. {
  58238. name: "Star Sized",
  58239. height: math.unit(5e6, "miles")
  58240. },
  58241. {
  58242. name: "Solar System Sized",
  58243. height: math.unit(125, "AU")
  58244. },
  58245. {
  58246. name: "Galaxy Sized",
  58247. height: math.unit(300e3, "lightyears")
  58248. },
  58249. {
  58250. name: "Universe Sized",
  58251. height: math.unit(200e9, "lightyears")
  58252. },
  58253. {
  58254. name: "Multiverse Sized",
  58255. height: math.unit(20, "exauniverses")
  58256. },
  58257. {
  58258. name: "Mother of Existence",
  58259. height: math.unit(1e6, "yottauniverses")
  58260. },
  58261. ]
  58262. ))
  58263. characterMakers.push(() => makeCharacter(
  58264. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58265. {
  58266. side: {
  58267. height: math.unit(9.5, "meters"),
  58268. name: "Side",
  58269. image: {
  58270. source: "./media/characters/kulve-ragnarok/side.svg",
  58271. extra: 364/326,
  58272. bottom: 50/414
  58273. }
  58274. },
  58275. },
  58276. [
  58277. {
  58278. name: "Normal",
  58279. height: math.unit(9.5, "meters"),
  58280. default: true
  58281. },
  58282. ]
  58283. ))
  58284. characterMakers.push(() => makeCharacter(
  58285. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58286. {
  58287. front: {
  58288. height: math.unit(8 + 9/12, "feet"),
  58289. name: "Front",
  58290. image: {
  58291. source: "./media/characters/atlas-goat/front.svg",
  58292. extra: 1462/1323,
  58293. bottom: 12/1474
  58294. }
  58295. },
  58296. },
  58297. [
  58298. {
  58299. name: "Normal",
  58300. height: math.unit(8 + 9/12, "feet"),
  58301. default: true
  58302. },
  58303. {
  58304. name: "Skyline",
  58305. height: math.unit(845, "feet")
  58306. },
  58307. {
  58308. name: "Orbital",
  58309. height: math.unit(93000, "miles")
  58310. },
  58311. {
  58312. name: "Constellation",
  58313. height: math.unit(27000, "lightyears")
  58314. },
  58315. ]
  58316. ))
  58317. characterMakers.push(() => makeCharacter(
  58318. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58319. {
  58320. side: {
  58321. height: math.unit(1.8, "meters"),
  58322. weight: math.unit(120, "kg"),
  58323. name: "Side",
  58324. image: {
  58325. source: "./media/characters/xie-ling/side.svg",
  58326. extra: 646/574,
  58327. bottom: 44/690
  58328. }
  58329. },
  58330. },
  58331. [
  58332. {
  58333. name: "Tiny",
  58334. height: math.unit(1.80, "meters")
  58335. },
  58336. {
  58337. name: "Small",
  58338. height: math.unit(6, "meters")
  58339. },
  58340. {
  58341. name: "Medium",
  58342. height: math.unit(15, "meters")
  58343. },
  58344. {
  58345. name: "Normal",
  58346. height: math.unit(30, "meters"),
  58347. default: true
  58348. },
  58349. {
  58350. name: "Above Normal",
  58351. height: math.unit(60, "meters")
  58352. },
  58353. {
  58354. name: "Big",
  58355. height: math.unit(220, "meters")
  58356. },
  58357. {
  58358. name: "Giant",
  58359. height: math.unit(2.2, "km")
  58360. },
  58361. {
  58362. name: "Macro",
  58363. height: math.unit(25, "km")
  58364. },
  58365. {
  58366. name: "Mega Macro",
  58367. height: math.unit(350, "km")
  58368. },
  58369. {
  58370. name: "Mega Macro+",
  58371. height: math.unit(5000, "km")
  58372. },
  58373. {
  58374. name: "Goddess",
  58375. height: math.unit(3, "multiverses")
  58376. },
  58377. ]
  58378. ))
  58379. characterMakers.push(() => makeCharacter(
  58380. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58381. {
  58382. frontSfw: {
  58383. height: math.unit(5 + 11/12, "feet"),
  58384. weight: math.unit(210, "lb"),
  58385. name: "Front",
  58386. image: {
  58387. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58388. extra: 1928/1821,
  58389. bottom: 45/1973
  58390. }
  58391. },
  58392. backSfw: {
  58393. height: math.unit(5 + 11/12, "feet"),
  58394. weight: math.unit(210, "lb"),
  58395. name: "Back",
  58396. image: {
  58397. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58398. extra: 1920/1813,
  58399. bottom: 34/1954
  58400. }
  58401. },
  58402. frontNsfw: {
  58403. height: math.unit(5 + 11/12, "feet"),
  58404. weight: math.unit(210, "lb"),
  58405. name: "Front (NSFW)",
  58406. image: {
  58407. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58408. extra: 1928/1821,
  58409. bottom: 45/1973
  58410. }
  58411. },
  58412. backNsfw: {
  58413. height: math.unit(5 + 11/12, "feet"),
  58414. weight: math.unit(210, "lb"),
  58415. name: "Back (NSFW)",
  58416. image: {
  58417. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58418. extra: 1920/1813,
  58419. bottom: 34/1954
  58420. }
  58421. },
  58422. },
  58423. [
  58424. {
  58425. name: "Normal",
  58426. height: math.unit(5 + 11/12, "feet"),
  58427. default: true
  58428. },
  58429. {
  58430. name: "Goddess",
  58431. height: math.unit(20 + 3/12, "feet")
  58432. },
  58433. {
  58434. name: "Breaker of Man",
  58435. height: math.unit(329 + 9/12, "feet")
  58436. },
  58437. {
  58438. name: "Solar Justice",
  58439. height: math.unit(0.6, "solarradii")
  58440. },
  58441. {
  58442. name: "She Who Judges",
  58443. height: math.unit(1, "universe")
  58444. },
  58445. ]
  58446. ))
  58447. characterMakers.push(() => makeCharacter(
  58448. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58449. {
  58450. casual_front: {
  58451. height: math.unit(6 + 1/12, "feet"),
  58452. weight: math.unit(190, "lb"),
  58453. preyCapacity: math.unit(1, "people"),
  58454. name: "Front",
  58455. image: {
  58456. source: "./media/characters/managarmr/casual-front.svg",
  58457. extra: 411/381,
  58458. bottom: 15/426
  58459. },
  58460. extraAttributes: {
  58461. "pawSize": {
  58462. name: "Paw Size",
  58463. power: 1,
  58464. type: "length",
  58465. base: math.unit(0.2, "meters")
  58466. },
  58467. },
  58468. form: "casual",
  58469. },
  58470. casual_back: {
  58471. height: math.unit(6 + 1/12, "feet"),
  58472. weight: math.unit(190, "lb"),
  58473. preyCapacity: math.unit(1, "people"),
  58474. name: "Back",
  58475. image: {
  58476. source: "./media/characters/managarmr/casual-back.svg",
  58477. extra: 413/383,
  58478. bottom: 13/426
  58479. },
  58480. extraAttributes: {
  58481. "pawSize": {
  58482. name: "Paw Size",
  58483. power: 1,
  58484. type: "length",
  58485. base: math.unit(0.2, "meters")
  58486. },
  58487. },
  58488. form: "casual",
  58489. },
  58490. base_front: {
  58491. height: math.unit(7, "feet"),
  58492. weight: math.unit(210, "lb"),
  58493. preyCapacity: math.unit(2, "people"),
  58494. name: "Front",
  58495. image: {
  58496. source: "./media/characters/managarmr/base-front.svg",
  58497. extra: 580/485,
  58498. bottom: 32/612
  58499. },
  58500. extraAttributes: {
  58501. "wingspan": {
  58502. name: "Wingspan",
  58503. power: 1,
  58504. type: "length",
  58505. base: math.unit(4, "meters")
  58506. },
  58507. "pawSize": {
  58508. name: "Paw Size",
  58509. power: 1,
  58510. type: "length",
  58511. base: math.unit(0.2, "meters")
  58512. },
  58513. },
  58514. form: "base",
  58515. },
  58516. "true-divine_front": {
  58517. height: math.unit(40, "feet"),
  58518. weight: math.unit(39000, "lb"),
  58519. preyCapacity: math.unit(375, "people"),
  58520. name: "Front",
  58521. image: {
  58522. source: "./media/characters/managarmr/true-divine-front.svg",
  58523. extra: 725/573,
  58524. bottom: 120/845
  58525. },
  58526. extraAttributes: {
  58527. "wingspan": {
  58528. name: "Wingspan",
  58529. power: 1,
  58530. type: "length",
  58531. base: math.unit(20, "meters")
  58532. },
  58533. "pawSize": {
  58534. name: "Paw Size",
  58535. power: 1,
  58536. type: "length",
  58537. base: math.unit(1.5, "meters")
  58538. },
  58539. },
  58540. form: "true-divine",
  58541. },
  58542. },
  58543. [
  58544. {
  58545. name: "Normal",
  58546. height: math.unit(6 + 1/12, "feet"),
  58547. form: "casual",
  58548. default: true
  58549. },
  58550. {
  58551. name: "Normal",
  58552. height: math.unit(7, "feet"),
  58553. form: "base",
  58554. default: true
  58555. },
  58556. ],
  58557. {
  58558. "casual": {
  58559. name: "Casual",
  58560. default: true
  58561. },
  58562. "base": {
  58563. name: "Base",
  58564. },
  58565. "true-divine": {
  58566. name: "True Divine",
  58567. },
  58568. }
  58569. ))
  58570. characterMakers.push(() => makeCharacter(
  58571. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58572. {
  58573. front: {
  58574. height: math.unit(1.8, "meters"),
  58575. weight: math.unit(110, "kg"),
  58576. name: "Front",
  58577. image: {
  58578. source: "./media/characters/mystra/front.svg",
  58579. extra: 529/442,
  58580. bottom: 31/560
  58581. }
  58582. },
  58583. frontLewd: {
  58584. height: math.unit(1.8, "meters"),
  58585. weight: math.unit(110, "kg"),
  58586. name: "Front (Lewd)",
  58587. image: {
  58588. source: "./media/characters/mystra/front-lewd.svg",
  58589. extra: 529/442,
  58590. bottom: 31/560
  58591. }
  58592. },
  58593. head: {
  58594. height: math.unit(1.63, "feet"),
  58595. name: "Head",
  58596. image: {
  58597. source: "./media/characters/mystra/head.svg"
  58598. }
  58599. },
  58600. paw: {
  58601. height: math.unit(1.9, "feet"),
  58602. name: "Paw",
  58603. image: {
  58604. source: "./media/characters/mystra/paw.svg"
  58605. }
  58606. },
  58607. },
  58608. [
  58609. {
  58610. name: "Incognito",
  58611. height: math.unit(2.3, "meters")
  58612. },
  58613. {
  58614. name: "Small Macro",
  58615. height: math.unit(300, "meters")
  58616. },
  58617. {
  58618. name: "Small Mega",
  58619. height: math.unit(2, "km")
  58620. },
  58621. {
  58622. name: "Mega",
  58623. height: math.unit(30, "km")
  58624. },
  58625. {
  58626. name: "Small Giga",
  58627. height: math.unit(100, "km")
  58628. },
  58629. {
  58630. name: "Giga",
  58631. height: math.unit(1000, "km"),
  58632. default: true
  58633. },
  58634. {
  58635. name: "Continental",
  58636. height: math.unit(5000, "km")
  58637. },
  58638. {
  58639. name: "Terra",
  58640. height: math.unit(20000, "km")
  58641. },
  58642. {
  58643. name: "Solar",
  58644. height: math.unit(2e6, "km")
  58645. },
  58646. {
  58647. name: "Galactic",
  58648. height: math.unit(528502, "lightyears")
  58649. },
  58650. {
  58651. name: "Universal",
  58652. height: math.unit(20, "universes")
  58653. },
  58654. ]
  58655. ))
  58656. characterMakers.push(() => makeCharacter(
  58657. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58658. {
  58659. front: {
  58660. height: math.unit(2, "meters"),
  58661. weight: math.unit(140, "kg"),
  58662. name: "Front",
  58663. image: {
  58664. source: "./media/characters/caleb/front.svg",
  58665. extra: 873/817,
  58666. bottom: 47/920
  58667. }
  58668. },
  58669. back: {
  58670. height: math.unit(2, "meters"),
  58671. weight: math.unit(140, "kg"),
  58672. name: "Back",
  58673. image: {
  58674. source: "./media/characters/caleb/back.svg",
  58675. extra: 877/828,
  58676. bottom: 24/901
  58677. }
  58678. },
  58679. snakeTail: {
  58680. height: math.unit(1.44, "feet"),
  58681. name: "Snake Tail",
  58682. image: {
  58683. source: "./media/characters/caleb/snake-tail.svg"
  58684. }
  58685. },
  58686. dick: {
  58687. height: math.unit(2.6, "feet"),
  58688. name: "Dick",
  58689. image: {
  58690. source: "./media/characters/caleb/dick.svg"
  58691. }
  58692. },
  58693. },
  58694. [
  58695. {
  58696. name: "Incognito",
  58697. height: math.unit(3, "meters")
  58698. },
  58699. {
  58700. name: "Home Size",
  58701. height: math.unit(200, "meters"),
  58702. default: true
  58703. },
  58704. {
  58705. name: "Macro",
  58706. height: math.unit(500, "meters")
  58707. },
  58708. {
  58709. name: "Big Macro",
  58710. height: math.unit(5, "km")
  58711. },
  58712. {
  58713. name: "Giga",
  58714. height: math.unit(250, "km")
  58715. },
  58716. {
  58717. name: "Giga+",
  58718. height: math.unit(5000, "km")
  58719. },
  58720. {
  58721. name: "Small Terra",
  58722. height: math.unit(35e3, "km")
  58723. },
  58724. {
  58725. name: "Terra",
  58726. height: math.unit(2e6, "km")
  58727. },
  58728. {
  58729. name: "Terra+",
  58730. height: math.unit(1.5e6, "km")
  58731. },
  58732. ]
  58733. ))
  58734. characterMakers.push(() => makeCharacter(
  58735. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58736. {
  58737. front: {
  58738. height: math.unit(2, "meters"),
  58739. weight: math.unit(120, "kg"),
  58740. name: "Front",
  58741. image: {
  58742. source: "./media/characters/gilirian/front.svg",
  58743. extra: 805/737,
  58744. bottom: 13/818
  58745. }
  58746. },
  58747. side: {
  58748. height: math.unit(2, "meters"),
  58749. weight: math.unit(120, "kg"),
  58750. name: "Side",
  58751. image: {
  58752. source: "./media/characters/gilirian/side.svg",
  58753. extra: 810/746,
  58754. bottom: 6/816
  58755. }
  58756. },
  58757. back: {
  58758. height: math.unit(2, "meters"),
  58759. weight: math.unit(120, "kg"),
  58760. name: "Back",
  58761. image: {
  58762. source: "./media/characters/gilirian/back.svg",
  58763. extra: 815/745,
  58764. bottom: 15/830
  58765. }
  58766. },
  58767. frontNsfw: {
  58768. height: math.unit(2, "meters"),
  58769. weight: math.unit(120, "kg"),
  58770. name: "Front (NSFW)",
  58771. image: {
  58772. source: "./media/characters/gilirian/front-nsfw.svg",
  58773. extra: 805/737,
  58774. bottom: 13/818
  58775. }
  58776. },
  58777. sideNsfw: {
  58778. height: math.unit(2, "meters"),
  58779. weight: math.unit(120, "kg"),
  58780. name: "Side (NSFW)",
  58781. image: {
  58782. source: "./media/characters/gilirian/side-nsfw.svg",
  58783. extra: 810/746,
  58784. bottom: 6/816
  58785. }
  58786. },
  58787. },
  58788. [
  58789. {
  58790. name: "Incognito",
  58791. height: math.unit(2, "meters"),
  58792. default: true
  58793. },
  58794. {
  58795. name: "Macro",
  58796. height: math.unit(250, "meters")
  58797. },
  58798. {
  58799. name: "Big Macro",
  58800. height: math.unit(1500, "meters")
  58801. },
  58802. {
  58803. name: "Mega",
  58804. height: math.unit(40, "km")
  58805. },
  58806. {
  58807. name: "Giga",
  58808. height: math.unit(300, "km")
  58809. },
  58810. {
  58811. name: "Extra Giga",
  58812. height: math.unit(5000, "km")
  58813. },
  58814. {
  58815. name: "Small Terra",
  58816. height: math.unit(10e3, "km")
  58817. },
  58818. {
  58819. name: "Terra",
  58820. height: math.unit(3e5, "km")
  58821. },
  58822. {
  58823. name: "Galactic",
  58824. height: math.unit(369950, "lightyears")
  58825. },
  58826. ]
  58827. ))
  58828. characterMakers.push(() => makeCharacter(
  58829. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58830. {
  58831. front: {
  58832. height: math.unit(2.5, "meters"),
  58833. weight: math.unit(230, "lb"),
  58834. name: "Front",
  58835. image: {
  58836. source: "./media/characters/tarken/front.svg",
  58837. extra: 764/720,
  58838. bottom: 49/813
  58839. }
  58840. },
  58841. back: {
  58842. height: math.unit(2.5, "meters"),
  58843. weight: math.unit(230, "lb"),
  58844. name: "Back",
  58845. image: {
  58846. source: "./media/characters/tarken/back.svg",
  58847. extra: 756/720,
  58848. bottom: 35/791
  58849. }
  58850. },
  58851. frontNsfw: {
  58852. height: math.unit(2.5, "meters"),
  58853. weight: math.unit(230, "lb"),
  58854. name: "Front (NSFW)",
  58855. image: {
  58856. source: "./media/characters/tarken/front-nsfw.svg",
  58857. extra: 764/720,
  58858. bottom: 49/813
  58859. }
  58860. },
  58861. backNsfw: {
  58862. height: math.unit(2.5, "meters"),
  58863. weight: math.unit(230, "lb"),
  58864. name: "Back (NSFW)",
  58865. image: {
  58866. source: "./media/characters/tarken/back-nsfw.svg",
  58867. extra: 756/720,
  58868. bottom: 35/791
  58869. }
  58870. },
  58871. head: {
  58872. height: math.unit(2.22, "feet"),
  58873. name: "Head",
  58874. image: {
  58875. source: "./media/characters/tarken/head.svg"
  58876. }
  58877. },
  58878. tail: {
  58879. height: math.unit(5.25, "feet"),
  58880. name: "Tail",
  58881. image: {
  58882. source: "./media/characters/tarken/tail.svg"
  58883. }
  58884. },
  58885. dick: {
  58886. height: math.unit(1.95, "feet"),
  58887. name: "Dick",
  58888. image: {
  58889. source: "./media/characters/tarken/dick.svg"
  58890. }
  58891. },
  58892. hand: {
  58893. height: math.unit(1.78, "feet"),
  58894. name: "Hand",
  58895. image: {
  58896. source: "./media/characters/tarken/hand.svg"
  58897. }
  58898. },
  58899. beam: {
  58900. height: math.unit(1.5, "feet"),
  58901. name: "Beam",
  58902. image: {
  58903. source: "./media/characters/tarken/beam.svg"
  58904. }
  58905. },
  58906. },
  58907. [
  58908. {
  58909. name: "Original Size",
  58910. height: math.unit(2.5, "meters")
  58911. },
  58912. {
  58913. name: "Macro",
  58914. height: math.unit(150, "meters"),
  58915. default: true
  58916. },
  58917. {
  58918. name: "Macro+",
  58919. height: math.unit(300, "meters")
  58920. },
  58921. {
  58922. name: "Mega",
  58923. height: math.unit(2, "km")
  58924. },
  58925. {
  58926. name: "Mega+",
  58927. height: math.unit(35, "km")
  58928. },
  58929.  {
  58930. name: "Mega++",
  58931. height: math.unit(60, "km")
  58932. },
  58933. {
  58934. name: "Giga",
  58935. height: math.unit(200, "km")
  58936. },
  58937. {
  58938. name: "Giga+",
  58939. height: math.unit(2500, "km")
  58940. },
  58941. {
  58942. name: "Giga++",
  58943. height: math.unit(6600, "km")
  58944. },
  58945. {
  58946. name: "Terra",
  58947. height: math.unit(20000, "km")
  58948. },
  58949. {
  58950. name: "Terra+",
  58951. height: math.unit(300000, "km")
  58952. },
  58953. ]
  58954. ))
  58955. characterMakers.push(() => makeCharacter(
  58956. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58957. {
  58958. magpie_dressed: {
  58959. height: math.unit(1.7, "meters"),
  58960. weight: math.unit(70, "kg"),
  58961. name: "Dressed",
  58962. image: {
  58963. source: "./media/characters/otreus/magpie-dressed.svg",
  58964. extra: 691/672,
  58965. bottom: 116/807
  58966. },
  58967. form: "magpie",
  58968. default: true
  58969. },
  58970. magpie_nude: {
  58971. height: math.unit(1.7, "meters"),
  58972. weight: math.unit(70, "kg"),
  58973. name: "Nude",
  58974. image: {
  58975. source: "./media/characters/otreus/magpie-nude.svg",
  58976. extra: 691/672,
  58977. bottom: 116/807
  58978. },
  58979. form: "magpie",
  58980. },
  58981. magpie_dressedLewd: {
  58982. height: math.unit(1.7, "meters"),
  58983. weight: math.unit(70, "kg"),
  58984. name: "Dressed (Lewd)",
  58985. image: {
  58986. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58987. extra: 691/672,
  58988. bottom: 116/807
  58989. },
  58990. form: "magpie",
  58991. },
  58992. magpie_nudeLewd: {
  58993. height: math.unit(1.7, "meters"),
  58994. weight: math.unit(70, "kg"),
  58995. name: "Nude (Lewd)",
  58996. image: {
  58997. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58998. extra: 691/672,
  58999. bottom: 116/807
  59000. },
  59001. form: "magpie",
  59002. },
  59003. magpie_leftFoot: {
  59004. height: math.unit(1.58, "feet"),
  59005. name: "Left Foot",
  59006. image: {
  59007. source: "./media/characters/otreus/magpie-left-foot.svg"
  59008. },
  59009. form: "magpie",
  59010. },
  59011. magpie_rightFoot: {
  59012. height: math.unit(1.58, "feet"),
  59013. name: "Right Foot",
  59014. image: {
  59015. source: "./media/characters/otreus/magpie-right-foot.svg"
  59016. },
  59017. form: "magpie",
  59018. },
  59019. magpie_wingspan: {
  59020. height: math.unit(2, "meters"),
  59021. weight: math.unit(70, "kg"),
  59022. name: "Wingspan",
  59023. image: {
  59024. source: "./media/characters/otreus/magpie-wingspan.svg"
  59025. },
  59026. extraAttributes: {
  59027. "wingspan": {
  59028. name: "Wingspan",
  59029. power: 1,
  59030. type: "length",
  59031. base: math.unit(3.35, "meters")
  59032. },
  59033. },
  59034. form: "magpie",
  59035. },
  59036. hippogriff_dressed: {
  59037. height: math.unit(1.7, "meters"),
  59038. weight: math.unit(70, "kg"),
  59039. name: "Dressed",
  59040. image: {
  59041. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59042. extra: 710/689,
  59043. bottom: 67/777
  59044. },
  59045. form: "hippogriff",
  59046. default: true
  59047. },
  59048. hippogriff_nude: {
  59049. height: math.unit(1.7, "meters"),
  59050. weight: math.unit(70, "kg"),
  59051. name: "Nude",
  59052. image: {
  59053. source: "./media/characters/otreus/hippogriff-nude.svg",
  59054. extra: 710/689,
  59055. bottom: 67/777
  59056. },
  59057. form: "hippogriff",
  59058. },
  59059. hippogriff_dressedLewd: {
  59060. height: math.unit(1.7, "meters"),
  59061. weight: math.unit(70, "kg"),
  59062. name: "Dressed (Lewd)",
  59063. image: {
  59064. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59065. extra: 710/689,
  59066. bottom: 67/777
  59067. },
  59068. form: "hippogriff",
  59069. },
  59070. hippogriff_nudeLewd: {
  59071. height: math.unit(1.7, "meters"),
  59072. weight: math.unit(70, "kg"),
  59073. name: "Nude (Lewd)",
  59074. image: {
  59075. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59076. extra: 710/689,
  59077. bottom: 67/777
  59078. },
  59079. form: "hippogriff",
  59080. },
  59081. },
  59082. [
  59083. {
  59084. name: "Original Size",
  59085. height: math.unit(1.7, "meters"),
  59086. allForms: true
  59087. },
  59088. {
  59089. name: "Incognito Size",
  59090. height: math.unit(2, "meters"),
  59091. allForms: true
  59092. },
  59093. {
  59094. name: "Mega",
  59095. height: math.unit(2, "km"),
  59096. allForms: true
  59097. },
  59098. {
  59099. name: "Mega+",
  59100. height: math.unit(40, "km"),
  59101. allForms: true
  59102. },
  59103. {
  59104. name: "Giga",
  59105. height: math.unit(250, "km"),
  59106. allForms: true
  59107. },
  59108. {
  59109. name: "Giga+",
  59110. height: math.unit(3000, "km"),
  59111. allForms: true
  59112. },
  59113. {
  59114. name: "Terra",
  59115. height: math.unit(20000, "km"),
  59116. allForms: true
  59117. },
  59118. {
  59119. name: "Solar (Home Size)",
  59120. height: math.unit(3e6, "km"),
  59121. allForms: true,
  59122. default: true
  59123. },
  59124. ],
  59125. {
  59126. "magpie": {
  59127. name: "Magpie",
  59128. default: true
  59129. },
  59130. "hippogriff": {
  59131. name: "Hippogriff",
  59132. },
  59133. }
  59134. ))
  59135. characterMakers.push(() => makeCharacter(
  59136. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59137. {
  59138. frontDressed: {
  59139. height: math.unit(1.8, "meters"),
  59140. weight: math.unit(90, "kg"),
  59141. name: "Front (Dressed)",
  59142. image: {
  59143. source: "./media/characters/thalia/front-dressed.svg",
  59144. extra: 478/402,
  59145. bottom: 55/533
  59146. }
  59147. },
  59148. backDressed: {
  59149. height: math.unit(1.8, "meters"),
  59150. weight: math.unit(90, "kg"),
  59151. name: "Back (Dressed)",
  59152. image: {
  59153. source: "./media/characters/thalia/back-dressed.svg",
  59154. extra: 500/424,
  59155. bottom: 15/515
  59156. }
  59157. },
  59158. frontNude: {
  59159. height: math.unit(1.8, "meters"),
  59160. weight: math.unit(90, "kg"),
  59161. name: "Front (Nude)",
  59162. image: {
  59163. source: "./media/characters/thalia/front-nude.svg",
  59164. extra: 478/402,
  59165. bottom: 55/533
  59166. }
  59167. },
  59168. backNude: {
  59169. height: math.unit(1.8, "meters"),
  59170. weight: math.unit(90, "kg"),
  59171. name: "Back (Nude)",
  59172. image: {
  59173. source: "./media/characters/thalia/back-nude.svg",
  59174. extra: 500/424,
  59175. bottom: 15/515
  59176. }
  59177. },
  59178. },
  59179. [
  59180. {
  59181. name: "Incognito",
  59182. height: math.unit(3, "meters")
  59183. },
  59184. {
  59185. name: "Macro",
  59186. height: math.unit(500, "meters")
  59187. },
  59188. {
  59189. name: "Mega",
  59190. height: math.unit(5, "km")
  59191. },
  59192. {
  59193. name: "Mega+",
  59194. height: math.unit(30, "km")
  59195. },
  59196. {
  59197. name: "Giga",
  59198. height: math.unit(350, "km")
  59199. },
  59200. {
  59201. name: "Giga+",
  59202. height: math.unit(4000, "km")
  59203. },
  59204. {
  59205. name: "Terra",
  59206. height: math.unit(35000, "km")
  59207. },
  59208. {
  59209. name: "Original Size",
  59210. height: math.unit(130000, "km")
  59211. },
  59212. {
  59213. name: "Solar (Home Size)",
  59214. height: math.unit(4e6, "km"),
  59215. default: true
  59216. },
  59217. ]
  59218. ))
  59219. characterMakers.push(() => makeCharacter(
  59220. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59221. {
  59222. front: {
  59223. height: math.unit(1.8, "meters"),
  59224. weight: math.unit(95, "kg"),
  59225. name: "Front",
  59226. image: {
  59227. source: "./media/characters/shango/front.svg",
  59228. extra: 1925/1774,
  59229. bottom: 67/1992
  59230. }
  59231. },
  59232. back: {
  59233. height: math.unit(1.8, "meters"),
  59234. weight: math.unit(95, "kg"),
  59235. name: "Back",
  59236. image: {
  59237. source: "./media/characters/shango/back.svg",
  59238. extra: 1915/1766,
  59239. bottom: 52/1967
  59240. }
  59241. },
  59242. frontLewd: {
  59243. height: math.unit(1.8, "meters"),
  59244. weight: math.unit(95, "kg"),
  59245. name: "Front (Lewd)",
  59246. image: {
  59247. source: "./media/characters/shango/front-lewd.svg",
  59248. extra: 1925/1774,
  59249. bottom: 67/1992
  59250. }
  59251. },
  59252. backLewd: {
  59253. height: math.unit(1.8, "meters"),
  59254. weight: math.unit(95, "kg"),
  59255. name: "Back (Lewd)",
  59256. image: {
  59257. source: "./media/characters/shango/back-lewd.svg",
  59258. extra: 1915/1766,
  59259. bottom: 52/1967
  59260. }
  59261. },
  59262. maw: {
  59263. height: math.unit(1.64, "feet"),
  59264. name: "Maw",
  59265. image: {
  59266. source: "./media/characters/shango/maw.svg"
  59267. }
  59268. },
  59269. dick: {
  59270. height: math.unit(2.14, "feet"),
  59271. name: "Dick",
  59272. image: {
  59273. source: "./media/characters/shango/dick.svg"
  59274. }
  59275. },
  59276. },
  59277. [
  59278. {
  59279. name: "Incognito",
  59280. height: math.unit(1.8, "meters")
  59281. },
  59282. {
  59283. name: "Home Size",
  59284. height: math.unit(60, "meters"),
  59285. default: true
  59286. },
  59287. {
  59288. name: "Macro",
  59289. height: math.unit(450, "meters")
  59290. },
  59291. {
  59292. name: "Mega",
  59293. height: math.unit(6, "km")
  59294. },
  59295. {
  59296. name: "Mega+",
  59297. height: math.unit(35, "km")
  59298. },
  59299. {
  59300. name: "Giga",
  59301. height: math.unit(500, "km")
  59302. },
  59303. {
  59304. name: "Giga+",
  59305. height: math.unit(5000, "km")
  59306. },
  59307. {
  59308. name: "Terra",
  59309. height: math.unit(60000, "km")
  59310. },
  59311. {
  59312. name: "Terra+",
  59313. height: math.unit(400000, "km")
  59314. },
  59315. ]
  59316. ))
  59317. characterMakers.push(() => makeCharacter(
  59318. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59319. {
  59320. front: {
  59321. height: math.unit(2, "meters"),
  59322. weight: math.unit(95, "kg"),
  59323. name: "Front",
  59324. image: {
  59325. source: "./media/characters/osiris-gryphon/front.svg",
  59326. extra: 1508/1313,
  59327. bottom: 87/1595
  59328. }
  59329. },
  59330. back: {
  59331. height: math.unit(2, "meters"),
  59332. weight: math.unit(95, "kg"),
  59333. name: "Back",
  59334. image: {
  59335. source: "./media/characters/osiris-gryphon/back.svg",
  59336. extra: 1436/1309,
  59337. bottom: 64/1500
  59338. }
  59339. },
  59340. frontLewd: {
  59341. height: math.unit(2, "meters"),
  59342. weight: math.unit(95, "kg"),
  59343. name: "Front-lewd",
  59344. image: {
  59345. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59346. extra: 1508/1313,
  59347. bottom: 87/1595
  59348. }
  59349. },
  59350. wing: {
  59351. height: math.unit(6.3333, "feet"),
  59352. name: "Wing",
  59353. image: {
  59354. source: "./media/characters/osiris-gryphon/wing.svg"
  59355. }
  59356. },
  59357. },
  59358. [
  59359. {
  59360. name: "Incognito",
  59361. height: math.unit(2, "meters")
  59362. },
  59363. {
  59364. name: "Home Size",
  59365. height: math.unit(30, "meters"),
  59366. default: true
  59367. },
  59368. {
  59369. name: "Macro",
  59370. height: math.unit(100, "meters")
  59371. },
  59372. {
  59373. name: "Macro+",
  59374. height: math.unit(350, "meters")
  59375. },
  59376. {
  59377. name: "Mega",
  59378. height: math.unit(40, "km")
  59379. },
  59380. {
  59381. name: "Giga",
  59382. height: math.unit(300, "km")
  59383. },
  59384. {
  59385. name: "Giga+",
  59386. height: math.unit(2000, "km")
  59387. },
  59388. {
  59389. name: "Terra",
  59390. height: math.unit(30000, "km")
  59391. },
  59392. ]
  59393. ))
  59394. characterMakers.push(() => makeCharacter(
  59395. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59396. {
  59397. front: {
  59398. height: math.unit(2.5, "meters"),
  59399. weight: math.unit(200, "kg"),
  59400. name: "Front",
  59401. image: {
  59402. source: "./media/characters/atlas-dragon/front.svg",
  59403. extra: 745/462,
  59404. bottom: 36/781
  59405. }
  59406. },
  59407. back: {
  59408. height: math.unit(2.5, "meters"),
  59409. weight: math.unit(200, "kg"),
  59410. name: "Back",
  59411. image: {
  59412. source: "./media/characters/atlas-dragon/back.svg",
  59413. extra: 848/822,
  59414. bottom: 57/905
  59415. }
  59416. },
  59417. frontLewd: {
  59418. height: math.unit(2.5, "meters"),
  59419. weight: math.unit(200, "kg"),
  59420. name: "Front (Lewd)",
  59421. image: {
  59422. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59423. extra: 745/462,
  59424. bottom: 36/781
  59425. }
  59426. },
  59427. backLewd: {
  59428. height: math.unit(2.5, "meters"),
  59429. weight: math.unit(200, "kg"),
  59430. name: "Back (Lewd)",
  59431. image: {
  59432. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59433. extra: 848/822,
  59434. bottom: 57/905
  59435. }
  59436. },
  59437. },
  59438. [
  59439. {
  59440. name: "Incognito",
  59441. height: math.unit(2.5, "meters")
  59442. },
  59443. {
  59444. name: "Small Macro",
  59445. height: math.unit(50, "meters")
  59446. },
  59447. {
  59448. name: "Macro",
  59449. height: math.unit(350, "meters")
  59450. },
  59451. {
  59452. name: "Mega",
  59453. height: math.unit(5.5, "kilometers")
  59454. },
  59455. {
  59456. name: "Mega+",
  59457. height: math.unit(50, "km")
  59458. },
  59459. {
  59460. name: "Giga",
  59461. height: math.unit(350, "km")
  59462. },
  59463. {
  59464. name: "Giga+",
  59465. height: math.unit(2000, "km")
  59466. },
  59467. {
  59468. name: "Giga++",
  59469. height: math.unit(6500, "km")
  59470. },
  59471. {
  59472. name: "Terra",
  59473. height: math.unit(30000, "km")
  59474. },
  59475. {
  59476. name: "Terra+",
  59477. height: math.unit(250000, "km")
  59478. },
  59479. {
  59480. name: "True Size",
  59481. height: math.unit(100, "multiverses"),
  59482. default: true
  59483. },
  59484. ]
  59485. ))
  59486. characterMakers.push(() => makeCharacter(
  59487. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59488. {
  59489. front: {
  59490. height: math.unit(1.8, "m"),
  59491. weight: math.unit(120, "kg"),
  59492. name: "Front",
  59493. image: {
  59494. source: "./media/characters/chey/front.svg",
  59495. extra: 1359/1270,
  59496. bottom: 18/1377
  59497. }
  59498. },
  59499. arm: {
  59500. height: math.unit(2.05, "feet"),
  59501. name: "Arm",
  59502. image: {
  59503. source: "./media/characters/chey/arm.svg"
  59504. }
  59505. },
  59506. head: {
  59507. height: math.unit(1.89, "feet"),
  59508. name: "Head",
  59509. image: {
  59510. source: "./media/characters/chey/head.svg"
  59511. }
  59512. },
  59513. },
  59514. [
  59515. {
  59516. name: "Original Size",
  59517. height: math.unit(5, "cm")
  59518. },
  59519. {
  59520. name: "Incognito Size",
  59521. height: math.unit(2.4, "m")
  59522. },
  59523. {
  59524. name: "Home Size",
  59525. height: math.unit(200, "meters"),
  59526. default: true
  59527. },
  59528. {
  59529. name: "Mega",
  59530. height: math.unit(2, "km")
  59531. },
  59532. {
  59533. name: "Giga (Preferred Size)",
  59534. height: math.unit(2000, "km")
  59535. },
  59536. {
  59537. name: "Giga+",
  59538. height: math.unit(6000, "km")
  59539. },
  59540. {
  59541. name: "Terra",
  59542. height: math.unit(17000, "km")
  59543. },
  59544. {
  59545. name: "Terra+",
  59546. height: math.unit(75000, "km")
  59547. },
  59548. {
  59549. name: "Terra++",
  59550. height: math.unit(225000, "km")
  59551. },
  59552. ]
  59553. ))
  59554. characterMakers.push(() => makeCharacter(
  59555. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59556. {
  59557. side: {
  59558. height: math.unit(7.8, "meters"),
  59559. name: "Side",
  59560. image: {
  59561. source: "./media/characters/ragnarok/side.svg",
  59562. extra: 725/621,
  59563. bottom: 72/797
  59564. }
  59565. },
  59566. },
  59567. [
  59568. {
  59569. name: "Normal",
  59570. height: math.unit(7.8, "meters"),
  59571. default: true
  59572. },
  59573. ]
  59574. ))
  59575. characterMakers.push(() => makeCharacter(
  59576. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59577. {
  59578. hyena_front: {
  59579. height: math.unit(2.1, "meters"),
  59580. weight: math.unit(110, "kg"),
  59581. name: "Front",
  59582. image: {
  59583. source: "./media/characters/nima/hyena-front.svg",
  59584. extra: 1904/1796,
  59585. bottom: 67/1971
  59586. },
  59587. form: "hyena",
  59588. },
  59589. hyena_back: {
  59590. height: math.unit(2.1, "meters"),
  59591. weight: math.unit(110, "kg"),
  59592. name: "Back",
  59593. image: {
  59594. source: "./media/characters/nima/hyena-back.svg",
  59595. extra: 1964/1884,
  59596. bottom: 35/1999
  59597. },
  59598. form: "hyena",
  59599. },
  59600. shark_front: {
  59601. height: math.unit(1.95, "meters"),
  59602. weight: math.unit(110, "kg"),
  59603. name: "Front",
  59604. image: {
  59605. source: "./media/characters/nima/shark-front.svg",
  59606. extra: 2238/2013,
  59607. bottom: 0/223
  59608. },
  59609. form: "shark",
  59610. },
  59611. paw: {
  59612. height: math.unit(1, "feet"),
  59613. name: "Paw",
  59614. image: {
  59615. source: "./media/characters/nima/paw.svg"
  59616. }
  59617. },
  59618. circlet: {
  59619. height: math.unit(0.3, "feet"),
  59620. name: "Circlet",
  59621. image: {
  59622. source: "./media/characters/nima/circlet.svg"
  59623. }
  59624. },
  59625. necklace: {
  59626. height: math.unit(1.2, "feet"),
  59627. name: "Necklace",
  59628. image: {
  59629. source: "./media/characters/nima/necklace.svg"
  59630. }
  59631. },
  59632. bracelet: {
  59633. height: math.unit(0.51, "feet"),
  59634. name: "Bracelet",
  59635. image: {
  59636. source: "./media/characters/nima/bracelet.svg"
  59637. }
  59638. },
  59639. armband: {
  59640. height: math.unit(1.3, "feet"),
  59641. name: "Armband",
  59642. image: {
  59643. source: "./media/characters/nima/armband.svg"
  59644. }
  59645. },
  59646. },
  59647. [
  59648. {
  59649. name: "Incognito",
  59650. height: math.unit(2.1, "meters"),
  59651. allForms: true
  59652. },
  59653. {
  59654. name: "Small Macro",
  59655. height: math.unit(50, "meters"),
  59656. allForms: true
  59657. },
  59658. {
  59659. name: "Macro",
  59660. height: math.unit(200, "meters"),
  59661. allForms: true
  59662. },
  59663. {
  59664. name: "Mega",
  59665. height: math.unit(2.5, "km"),
  59666. allForms: true
  59667. },
  59668. {
  59669. name: "Mega+",
  59670. height: math.unit(30, "km"),
  59671. allForms: true
  59672. },
  59673. {
  59674. name: "Giga (Home Size)",
  59675. height: math.unit(400, "km"),
  59676. allForms: true,
  59677. default: true
  59678. },
  59679. {
  59680. name: "Giga+",
  59681. height: math.unit(2500, "km"),
  59682. allForms: true
  59683. },
  59684. {
  59685. name: "Giga++",
  59686. height: math.unit(8000, "km"),
  59687. allForms: true
  59688. },
  59689. {
  59690. name: "Terra",
  59691. height: math.unit(20000, "km"),
  59692. allForms: true
  59693. },
  59694. {
  59695. name: "Terra+",
  59696. height: math.unit(70000, "km"),
  59697. allForms: true
  59698. },
  59699. {
  59700. name: "Terra++",
  59701. height: math.unit(600000, "km"),
  59702. allForms: true
  59703. },
  59704. {
  59705. name: "Galactic",
  59706. height: math.unit(40, "galaxies"),
  59707. allForms: true
  59708. },
  59709. {
  59710. name: "Universal",
  59711. height: math.unit(40, "universes"),
  59712. allForms: true
  59713. },
  59714. ],
  59715. {
  59716. "hyena": {
  59717. name: "Hyena",
  59718. default: true
  59719. },
  59720. "shark": {
  59721. name: "Shark",
  59722. },
  59723. }
  59724. ))
  59725. characterMakers.push(() => makeCharacter(
  59726. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59727. {
  59728. anthro_front: {
  59729. height: math.unit(1.5, "meters"),
  59730. name: "Front",
  59731. image: {
  59732. source: "./media/characters/adelaide/anthro-front.svg",
  59733. extra: 860/783,
  59734. bottom: 60/920
  59735. },
  59736. form: "anthro",
  59737. default: true
  59738. },
  59739. hand: {
  59740. height: math.unit(0.65, "feet"),
  59741. name: "Hand",
  59742. image: {
  59743. source: "./media/characters/adelaide/hand.svg"
  59744. },
  59745. form: "anthro"
  59746. },
  59747. foot: {
  59748. height: math.unit(1.38 * 259 / 314, "feet"),
  59749. name: "Foot",
  59750. image: {
  59751. source: "./media/characters/adelaide/foot.svg",
  59752. extra: 259/259,
  59753. bottom: 55/314
  59754. },
  59755. form: "anthro"
  59756. },
  59757. feather: {
  59758. height: math.unit(0.85, "feet"),
  59759. name: "Feather",
  59760. image: {
  59761. source: "./media/characters/adelaide/feather.svg"
  59762. },
  59763. form: "anthro"
  59764. },
  59765. feral_side: {
  59766. height: math.unit(1, "meters"),
  59767. name: "Side",
  59768. image: {
  59769. source: "./media/characters/adelaide/feral-side.svg",
  59770. extra: 550/467,
  59771. bottom: 37/587
  59772. },
  59773. form: "feral",
  59774. default: true
  59775. },
  59776. feral_hand: {
  59777. height: math.unit(0.58, "feet"),
  59778. name: "Hand",
  59779. image: {
  59780. source: "./media/characters/adelaide/hand.svg"
  59781. },
  59782. form: "feral"
  59783. },
  59784. feral_foot: {
  59785. height: math.unit(1.2 * 259 / 314, "feet"),
  59786. name: "Foot",
  59787. image: {
  59788. source: "./media/characters/adelaide/foot.svg",
  59789. extra: 259/259,
  59790. bottom: 55/314
  59791. },
  59792. form: "feral"
  59793. },
  59794. feral_feather: {
  59795. height: math.unit(0.63, "feet"),
  59796. name: "Feather",
  59797. image: {
  59798. source: "./media/characters/adelaide/feather.svg"
  59799. },
  59800. form: "feral"
  59801. },
  59802. },
  59803. [
  59804. {
  59805. name: "Normal",
  59806. height: math.unit(1.5, "meters"),
  59807. form: "anthro",
  59808. default: true
  59809. },
  59810. {
  59811. name: "Normal",
  59812. height: math.unit(1, "meters"),
  59813. form: "feral",
  59814. default: true
  59815. },
  59816. ],
  59817. {
  59818. "anthro": {
  59819. name: "Anthro",
  59820. default: true
  59821. },
  59822. "feral": {
  59823. name: "Feral",
  59824. },
  59825. }
  59826. ))
  59827. characterMakers.push(() => makeCharacter(
  59828. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59829. {
  59830. front: {
  59831. height: math.unit(2.5, "meters"),
  59832. name: "Front",
  59833. image: {
  59834. source: "./media/characters/goa/front.svg",
  59835. extra: 1109/1013,
  59836. bottom: 150/1259
  59837. }
  59838. },
  59839. },
  59840. [
  59841. {
  59842. name: "Normal",
  59843. height: math.unit(2.5, "meters"),
  59844. default: true
  59845. },
  59846. ]
  59847. ))
  59848. characterMakers.push(() => makeCharacter(
  59849. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59850. {
  59851. front: {
  59852. height: math.unit(2, "meters"),
  59853. weight: math.unit(100, "kg"),
  59854. name: "Front",
  59855. image: {
  59856. source: "./media/characters/kiki-weavile/front.svg",
  59857. extra: 357/332,
  59858. bottom: 60/417
  59859. }
  59860. },
  59861. },
  59862. [
  59863. {
  59864. name: "Normal",
  59865. height: math.unit(2, "meters"),
  59866. default: true
  59867. },
  59868. ]
  59869. ))
  59870. characterMakers.push(() => makeCharacter(
  59871. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59872. {
  59873. side: {
  59874. height: math.unit(1.6, "meters"),
  59875. name: "Side",
  59876. image: {
  59877. source: "./media/characters/liza/side.svg",
  59878. extra: 943/915,
  59879. bottom: 72/1015
  59880. }
  59881. },
  59882. },
  59883. [
  59884. {
  59885. name: "Normal",
  59886. height: math.unit(1.6, "meters"),
  59887. default: true
  59888. },
  59889. ]
  59890. ))
  59891. characterMakers.push(() => makeCharacter(
  59892. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59893. {
  59894. side: {
  59895. height: math.unit(2.5, "meters"),
  59896. preyCapacity: math.unit(1, "people"),
  59897. name: "Side",
  59898. image: {
  59899. source: "./media/characters/persephone-sweetbreath/side.svg",
  59900. extra: 796/700,
  59901. bottom: 44/840
  59902. }
  59903. },
  59904. sideVore: {
  59905. height: math.unit(2.5, "meters"),
  59906. preyCapacity: math.unit(1, "people"),
  59907. name: "Side (Full)",
  59908. image: {
  59909. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59910. extra: 796/700,
  59911. bottom: 44/840
  59912. }
  59913. },
  59914. },
  59915. [
  59916. {
  59917. name: "Normal",
  59918. height: math.unit(2.5, "meters"),
  59919. default: true
  59920. },
  59921. ]
  59922. ))
  59923. characterMakers.push(() => makeCharacter(
  59924. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59925. {
  59926. front: {
  59927. height: math.unit(32, "meters"),
  59928. name: "Front",
  59929. image: {
  59930. source: "./media/characters/pierce/front.svg",
  59931. extra: 1695/1475,
  59932. bottom: 185/1880
  59933. }
  59934. },
  59935. side: {
  59936. height: math.unit(32, "meters"),
  59937. name: "Side",
  59938. image: {
  59939. source: "./media/characters/pierce/side.svg",
  59940. extra: 974/859,
  59941. bottom: 43/1017
  59942. }
  59943. },
  59944. frontWingless: {
  59945. height: math.unit(32, "meters"),
  59946. name: "Front (Wingless)",
  59947. image: {
  59948. source: "./media/characters/pierce/front-wingless.svg",
  59949. extra: 1695/1475,
  59950. bottom: 185/1880
  59951. }
  59952. },
  59953. sideWingless: {
  59954. height: math.unit(32, "meters"),
  59955. name: "Side (Wingless)",
  59956. image: {
  59957. source: "./media/characters/pierce/side-wingless.svg",
  59958. extra: 974/859,
  59959. bottom: 43/1017
  59960. }
  59961. },
  59962. maw: {
  59963. height: math.unit(19.3, "meters"),
  59964. name: "Maw",
  59965. image: {
  59966. source: "./media/characters/pierce/maw.svg"
  59967. }
  59968. },
  59969. },
  59970. [
  59971. {
  59972. name: "Small",
  59973. height: math.unit(8.5, "meters")
  59974. },
  59975. {
  59976. name: "Normal",
  59977. height: math.unit(32, "meters"),
  59978. default: true
  59979. },
  59980. ]
  59981. ))
  59982. characterMakers.push(() => makeCharacter(
  59983. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59984. {
  59985. front: {
  59986. height: math.unit(2.3, "meters"),
  59987. weight: math.unit(165, "kg"),
  59988. name: "Front",
  59989. image: {
  59990. source: "./media/characters/shira/front.svg",
  59991. extra: 924/919,
  59992. bottom: 17/941
  59993. },
  59994. form: "cobra",
  59995. default: true
  59996. },
  59997. back: {
  59998. height: math.unit(2.3, "meters"),
  59999. weight: math.unit(165, "kg"),
  60000. name: "Back",
  60001. image: {
  60002. source: "./media/characters/shira/back.svg",
  60003. extra: 928/922,
  60004. bottom: 18/946
  60005. },
  60006. form: "cobra"
  60007. },
  60008. frontLewd: {
  60009. height: math.unit(2.3, "meters"),
  60010. weight: math.unit(165, "kg"),
  60011. name: "Front (Lewd)",
  60012. image: {
  60013. source: "./media/characters/shira/front-lewd.svg",
  60014. extra: 924/919,
  60015. bottom: 17/941
  60016. },
  60017. form: "cobra"
  60018. },
  60019. backLewd: {
  60020. height: math.unit(2.3, "meters"),
  60021. weight: math.unit(165, "kg"),
  60022. name: "Back (Lewd)",
  60023. image: {
  60024. source: "./media/characters/shira/back-lewd.svg",
  60025. extra: 928/922,
  60026. bottom: 18/946
  60027. },
  60028. form: "cobra"
  60029. },
  60030. maw: {
  60031. height: math.unit(1.14, "feet"),
  60032. name: "Maw",
  60033. image: {
  60034. source: "./media/characters/shira/maw.svg"
  60035. },
  60036. form: "cobra"
  60037. },
  60038. magma_front: {
  60039. height: math.unit(2.3, "meters"),
  60040. weight: math.unit(165, "kg"),
  60041. name: "Front",
  60042. image: {
  60043. source: "./media/characters/shira/magma-front.svg",
  60044. extra: 1870/1693,
  60045. bottom: 24/1894
  60046. },
  60047. form: "magma",
  60048. },
  60049. magma_back: {
  60050. height: math.unit(2.3, "meters"),
  60051. weight: math.unit(165, "kg"),
  60052. name: "Back",
  60053. image: {
  60054. source: "./media/characters/shira/magma-back.svg",
  60055. extra: 1918/1756,
  60056. bottom: 46/1964
  60057. },
  60058. form: "magma",
  60059. },
  60060. },
  60061. [
  60062. {
  60063. name: "Incognito",
  60064. height: math.unit(2.3, "meters"),
  60065. allForms: true
  60066. },
  60067. {
  60068. name: "Home Size",
  60069. height: math.unit(150, "meters"),
  60070. default: true,
  60071. allForms: true
  60072. },
  60073. {
  60074. name: "Macro",
  60075. height: math.unit(2, "km"),
  60076. allForms: true
  60077. },
  60078. {
  60079. name: "Mega",
  60080. height: math.unit(30, "km"),
  60081. allForms: true
  60082. },
  60083. {
  60084. name: "Giga",
  60085. height: math.unit(450, "km"),
  60086. allForms: true
  60087. },
  60088. {
  60089. name: "Giga+",
  60090. height: math.unit(3000, "km"),
  60091. allForms: true
  60092. },
  60093. {
  60094. name: "Giga++",
  60095. height: math.unit(6000, "km"),
  60096. allForms: true
  60097. },
  60098. {
  60099. name: "Terra",
  60100. height: math.unit(80000, "km"),
  60101. allForms: true
  60102. },
  60103. {
  60104. name: "Terra+",
  60105. height: math.unit(350000, "km"),
  60106. allForms: true
  60107. },
  60108. {
  60109. name: "Solar",
  60110. height: math.unit(1e6, "km"),
  60111. allForms: true
  60112. },
  60113. ],
  60114. {
  60115. "cobra": {
  60116. name: "Cobra",
  60117. default: true
  60118. },
  60119. "magma": {
  60120. name: "Magma Dragon",
  60121. },
  60122. }
  60123. ))
  60124. characterMakers.push(() => makeCharacter(
  60125. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60126. {
  60127. front: {
  60128. height: math.unit(2, "meters"),
  60129. weight: math.unit(160, "kg"),
  60130. name: "Front",
  60131. image: {
  60132. source: "./media/characters/daxerios/front.svg",
  60133. extra: 1334/1277,
  60134. bottom: 45/1379
  60135. }
  60136. },
  60137. frontLewd: {
  60138. height: math.unit(2, "meters"),
  60139. weight: math.unit(160, "kg"),
  60140. name: "Front (Lewd)",
  60141. image: {
  60142. source: "./media/characters/daxerios/front-lewd.svg",
  60143. extra: 1334/1277,
  60144. bottom: 45/1379
  60145. }
  60146. },
  60147. dick: {
  60148. height: math.unit(2.35, "feet"),
  60149. name: "Dick",
  60150. image: {
  60151. source: "./media/characters/daxerios/dick.svg"
  60152. }
  60153. },
  60154. },
  60155. [
  60156. {
  60157. name: "\"Small\"",
  60158. height: math.unit(5, "meters")
  60159. },
  60160. {
  60161. name: "Original Size",
  60162. height: math.unit(500, "meters"),
  60163. default: true
  60164. },
  60165. {
  60166. name: "Mega",
  60167. height: math.unit(2, "km")
  60168. },
  60169. {
  60170. name: "Mega+",
  60171. height: math.unit(35, "km")
  60172. },
  60173. {
  60174. name: "Giga",
  60175. height: math.unit(250, "km")
  60176. },
  60177. {
  60178. name: "Giga+",
  60179. height: math.unit(3000, "km")
  60180. },
  60181. {
  60182. name: "Terra",
  60183. height: math.unit(25000, "km")
  60184. },
  60185. {
  60186. name: "Terra+",
  60187. height: math.unit(300000, "km")
  60188. },
  60189. {
  60190. name: "Solar",
  60191. height: math.unit(1e6, "km")
  60192. },
  60193. ]
  60194. ))
  60195. characterMakers.push(() => makeCharacter(
  60196. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60197. {
  60198. front: {
  60199. height: math.unit(8 + 4/12, "feet"),
  60200. weight: math.unit(464, "lb"),
  60201. name: "Front",
  60202. image: {
  60203. source: "./media/characters/caveat/front.svg",
  60204. extra: 1861/1678,
  60205. bottom: 40/1901
  60206. }
  60207. },
  60208. },
  60209. [
  60210. {
  60211. name: "Normal",
  60212. height: math.unit(8 + 4/12, "feet"),
  60213. default: true
  60214. },
  60215. ]
  60216. ))
  60217. characterMakers.push(() => makeCharacter(
  60218. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60219. {
  60220. front: {
  60221. height: math.unit(12, "feet"),
  60222. weight: math.unit(1800, "lb"),
  60223. name: "Front",
  60224. image: {
  60225. source: "./media/characters/centbair/front.svg",
  60226. extra: 781/663,
  60227. bottom: 25/806
  60228. }
  60229. },
  60230. frontNsfw: {
  60231. height: math.unit(12, "feet"),
  60232. weight: math.unit(1800, "lb"),
  60233. name: "Front (NSFW)",
  60234. image: {
  60235. source: "./media/characters/centbair/front-nsfw.svg",
  60236. extra: 781/663,
  60237. bottom: 25/806
  60238. }
  60239. },
  60240. back: {
  60241. height: math.unit(12, "feet"),
  60242. weight: math.unit(1800, "lb"),
  60243. name: "Back",
  60244. image: {
  60245. source: "./media/characters/centbair/back.svg",
  60246. extra: 808/761,
  60247. bottom: 19/827
  60248. }
  60249. },
  60250. dick: {
  60251. height: math.unit(6.5, "feet"),
  60252. name: "Dick",
  60253. image: {
  60254. source: "./media/characters/centbair/dick.svg"
  60255. }
  60256. },
  60257. slit: {
  60258. height: math.unit(3.25, "feet"),
  60259. name: "Slit",
  60260. image: {
  60261. source: "./media/characters/centbair/slit.svg"
  60262. }
  60263. },
  60264. },
  60265. [
  60266. {
  60267. name: "Normal",
  60268. height: math.unit(12, "feet"),
  60269. default: true
  60270. },
  60271. ]
  60272. ))
  60273. characterMakers.push(() => makeCharacter(
  60274. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60275. {
  60276. front: {
  60277. height: math.unit(5 + 7/12, "feet"),
  60278. name: "Front",
  60279. image: {
  60280. source: "./media/characters/andy/front.svg",
  60281. extra: 634/588,
  60282. bottom: 36/670
  60283. },
  60284. extraAttributes: {
  60285. "pawLength": {
  60286. name: "Paw Length",
  60287. power: 1,
  60288. type: "length",
  60289. base: math.unit(1, "feet")
  60290. },
  60291. }
  60292. },
  60293. side: {
  60294. height: math.unit(5 + 7/12, "feet"),
  60295. name: "Side",
  60296. image: {
  60297. source: "./media/characters/andy/side.svg",
  60298. extra: 641/596,
  60299. bottom: 34/675
  60300. },
  60301. extraAttributes: {
  60302. "pawLength": {
  60303. name: "Paw Length",
  60304. power: 1,
  60305. type: "length",
  60306. base: math.unit(1, "feet")
  60307. },
  60308. }
  60309. },
  60310. back: {
  60311. height: math.unit(5 + 7/12, "feet"),
  60312. name: "Back",
  60313. image: {
  60314. source: "./media/characters/andy/back.svg",
  60315. extra: 618/583,
  60316. bottom: 39/657
  60317. },
  60318. extraAttributes: {
  60319. "pawLength": {
  60320. name: "Paw Length",
  60321. power: 1,
  60322. type: "length",
  60323. base: math.unit(1, "feet")
  60324. },
  60325. }
  60326. },
  60327. paw: {
  60328. height: math.unit(1.13, "feet"),
  60329. name: "Paw",
  60330. image: {
  60331. source: "./media/characters/andy/paw.svg"
  60332. }
  60333. },
  60334. },
  60335. [
  60336. {
  60337. name: "Micro",
  60338. height: math.unit(4, "inches")
  60339. },
  60340. {
  60341. name: "Normal",
  60342. height: math.unit(5 + 7/12, "feet"),
  60343. default: true
  60344. },
  60345. {
  60346. name: "Macro",
  60347. height: math.unit(390.42, "feet")
  60348. },
  60349. ]
  60350. ))
  60351. characterMakers.push(() => makeCharacter(
  60352. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60353. {
  60354. front: {
  60355. height: math.unit(7, "feet"),
  60356. weight: math.unit(250, "lb"),
  60357. name: "Front",
  60358. image: {
  60359. source: "./media/characters/vix-titan/front.svg",
  60360. extra: 460/428,
  60361. bottom: 15/475
  60362. },
  60363. extraAttributes: {
  60364. "pawWidth": {
  60365. name: "Paw Width",
  60366. power: 1,
  60367. type: "length",
  60368. base: math.unit(0.75, "feet")
  60369. },
  60370. }
  60371. },
  60372. },
  60373. [
  60374. {
  60375. name: "Normal",
  60376. height: math.unit(7, "feet"),
  60377. default: true
  60378. },
  60379. {
  60380. name: "Giant",
  60381. height: math.unit(1500, "feet")
  60382. },
  60383. {
  60384. name: "Mega",
  60385. height: math.unit(10, "miles")
  60386. },
  60387. {
  60388. name: "Giga",
  60389. height: math.unit(150, "miles")
  60390. },
  60391. {
  60392. name: "Tera",
  60393. height: math.unit(144000, "miles")
  60394. },
  60395. ]
  60396. ))
  60397. characterMakers.push(() => makeCharacter(
  60398. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60399. {
  60400. front: {
  60401. height: math.unit(6 + 2/12, "feet"),
  60402. name: "Front",
  60403. image: {
  60404. source: "./media/characters/reiku/front.svg",
  60405. extra: 1910/1757,
  60406. bottom: 103/2013
  60407. },
  60408. extraAttributes: {
  60409. "thighThickness": {
  60410. name: "Thigh Thickness",
  60411. power: 1,
  60412. type: "length",
  60413. base: math.unit(1.12, "feet")
  60414. },
  60415. "assThickness": {
  60416. name: "Ass Thickness",
  60417. power: 1,
  60418. type: "length",
  60419. base: math.unit(1.12*2, "feet")
  60420. },
  60421. }
  60422. },
  60423. side: {
  60424. height: math.unit(6 + 2/12, "feet"),
  60425. name: "Side",
  60426. image: {
  60427. source: "./media/characters/reiku/side.svg",
  60428. extra: 1846/1748,
  60429. bottom: 99/1945
  60430. },
  60431. extraAttributes: {
  60432. "thighThickness": {
  60433. name: "Thigh Thickness",
  60434. power: 1,
  60435. type: "length",
  60436. base: math.unit(1.12, "feet")
  60437. },
  60438. "assThickness": {
  60439. name: "Ass Thickness",
  60440. power: 1,
  60441. type: "length",
  60442. base: math.unit(1.12*2, "feet")
  60443. },
  60444. }
  60445. },
  60446. back: {
  60447. height: math.unit(6 + 2/12, "feet"),
  60448. name: "Back",
  60449. image: {
  60450. source: "./media/characters/reiku/back.svg",
  60451. extra: 1941/1786,
  60452. bottom: 34/1975
  60453. },
  60454. extraAttributes: {
  60455. "thighThickness": {
  60456. name: "Thigh Thickness",
  60457. power: 1,
  60458. type: "length",
  60459. base: math.unit(1.12, "feet")
  60460. },
  60461. "assThickness": {
  60462. name: "Ass Thickness",
  60463. power: 1,
  60464. type: "length",
  60465. base: math.unit(1.12*2, "feet")
  60466. },
  60467. }
  60468. },
  60469. head: {
  60470. height: math.unit(1.8, "feet"),
  60471. name: "Head",
  60472. image: {
  60473. source: "./media/characters/reiku/head.svg"
  60474. }
  60475. },
  60476. tailTop: {
  60477. height: math.unit(8.4, "feet"),
  60478. name: "Tail (Top)",
  60479. image: {
  60480. source: "./media/characters/reiku/tail-top.svg"
  60481. }
  60482. },
  60483. tailBottom: {
  60484. height: math.unit(8.4, "feet"),
  60485. name: "Tail (Bottom)",
  60486. image: {
  60487. source: "./media/characters/reiku/tail-bottom.svg"
  60488. }
  60489. },
  60490. foot: {
  60491. height: math.unit(2.6, "feet"),
  60492. name: "Foot",
  60493. image: {
  60494. source: "./media/characters/reiku/foot.svg"
  60495. }
  60496. },
  60497. footCurled: {
  60498. height: math.unit(2.3, "feet"),
  60499. name: "Foot (Curled)",
  60500. image: {
  60501. source: "./media/characters/reiku/foot-curled.svg"
  60502. }
  60503. },
  60504. footSide: {
  60505. height: math.unit(1.26, "feet"),
  60506. name: "Foot (Side)",
  60507. image: {
  60508. source: "./media/characters/reiku/foot-side.svg"
  60509. }
  60510. },
  60511. },
  60512. [
  60513. {
  60514. name: "Normal",
  60515. height: math.unit(6 + 2/12, "feet"),
  60516. default: true
  60517. },
  60518. ]
  60519. ))
  60520. characterMakers.push(() => makeCharacter(
  60521. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60522. {
  60523. front: {
  60524. height: math.unit(7, "feet"),
  60525. weight: math.unit(500, "kg"),
  60526. name: "Front",
  60527. image: {
  60528. source: "./media/characters/cialda/front.svg",
  60529. extra: 912/745,
  60530. bottom: 55/967
  60531. }
  60532. },
  60533. },
  60534. [
  60535. {
  60536. name: "Normal",
  60537. height: math.unit(7, "feet"),
  60538. default: true
  60539. },
  60540. ]
  60541. ))
  60542. characterMakers.push(() => makeCharacter(
  60543. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60544. {
  60545. side: {
  60546. height: math.unit(6, "feet"),
  60547. weight: math.unit(600, "lb"),
  60548. preyCapacity: math.unit(25, "liters"),
  60549. name: "Side",
  60550. image: {
  60551. source: "./media/characters/darkkin/side.svg",
  60552. extra: 1597/1447,
  60553. bottom: 101/1698
  60554. }
  60555. },
  60556. },
  60557. [
  60558. {
  60559. name: "Canon Height",
  60560. height: math.unit(568, "feet"),
  60561. default: true
  60562. },
  60563. ]
  60564. ))
  60565. characterMakers.push(() => makeCharacter(
  60566. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60567. {
  60568. front: {
  60569. height: math.unit(6, "feet"),
  60570. weight: math.unit(1500, "lb"),
  60571. preyCapacity: math.unit(3, "people"),
  60572. name: "Front",
  60573. image: {
  60574. source: "./media/characters/livnia/front.svg",
  60575. extra: 934/932,
  60576. bottom: 83/1017
  60577. }
  60578. },
  60579. back: {
  60580. height: math.unit(6, "feet"),
  60581. weight: math.unit(1500, "lb"),
  60582. preyCapacity: math.unit(3, "people"),
  60583. name: "Back",
  60584. image: {
  60585. source: "./media/characters/livnia/back.svg",
  60586. extra: 916/915,
  60587. bottom: 58/974
  60588. }
  60589. },
  60590. head: {
  60591. height: math.unit(1.53, "feet"),
  60592. name: "Head",
  60593. image: {
  60594. source: "./media/characters/livnia/head.svg"
  60595. }
  60596. },
  60597. maw: {
  60598. height: math.unit(0.78, "feet"),
  60599. name: "Maw",
  60600. image: {
  60601. source: "./media/characters/livnia/maw.svg"
  60602. }
  60603. },
  60604. genitals: {
  60605. height: math.unit(0.35, "feet"),
  60606. name: "Genitals",
  60607. image: {
  60608. source: "./media/characters/livnia/genitals.svg"
  60609. }
  60610. },
  60611. },
  60612. [
  60613. {
  60614. name: "Normal",
  60615. height: math.unit(1000, "feet"),
  60616. default: true
  60617. },
  60618. ]
  60619. ))
  60620. characterMakers.push(() => makeCharacter(
  60621. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60622. {
  60623. front: {
  60624. height: math.unit(4, "feet"),
  60625. weight: math.unit(73, "lb"),
  60626. name: "Front",
  60627. image: {
  60628. source: "./media/characters/hayaku/front.svg",
  60629. extra: 1011/888,
  60630. bottom: 33/1044
  60631. }
  60632. },
  60633. back: {
  60634. height: math.unit(4, "feet"),
  60635. weight: math.unit(73, "lb"),
  60636. name: "Back",
  60637. image: {
  60638. source: "./media/characters/hayaku/back.svg",
  60639. extra: 1040/930,
  60640. bottom: 20/1060
  60641. }
  60642. },
  60643. },
  60644. [
  60645. {
  60646. name: "Normal",
  60647. height: math.unit(4, "feet"),
  60648. default: true
  60649. },
  60650. ]
  60651. ))
  60652. characterMakers.push(() => makeCharacter(
  60653. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60654. {
  60655. front: {
  60656. height: math.unit(6 + 7/12, "feet"),
  60657. weight: math.unit(300, "lb"),
  60658. name: "Front",
  60659. image: {
  60660. source: "./media/characters/athena-bryzant/front.svg",
  60661. extra: 870/835,
  60662. bottom: 33/903
  60663. }
  60664. },
  60665. back: {
  60666. height: math.unit(6 + 7/12, "feet"),
  60667. weight: math.unit(300, "lb"),
  60668. name: "Back",
  60669. image: {
  60670. source: "./media/characters/athena-bryzant/back.svg",
  60671. extra: 858/823,
  60672. bottom: 30/888
  60673. }
  60674. },
  60675. head: {
  60676. height: math.unit(2.38, "feet"),
  60677. name: "Head",
  60678. image: {
  60679. source: "./media/characters/athena-bryzant/head.svg"
  60680. }
  60681. },
  60682. wings: {
  60683. height: math.unit(2.85, "feet"),
  60684. name: "Wings",
  60685. image: {
  60686. source: "./media/characters/athena-bryzant/wings.svg"
  60687. }
  60688. },
  60689. },
  60690. [
  60691. {
  60692. name: "Normal",
  60693. height: math.unit(6 + 7/12, "feet"),
  60694. default: true
  60695. },
  60696. {
  60697. name: "Big",
  60698. height: math.unit(8, "feet")
  60699. },
  60700. {
  60701. name: "Very Big",
  60702. height: math.unit(11, "feet")
  60703. },
  60704. ]
  60705. ))
  60706. characterMakers.push(() => makeCharacter(
  60707. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60708. {
  60709. side: {
  60710. height: math.unit(3, "meters"),
  60711. weight: math.unit(7500, "kg"),
  60712. preyCapacity: math.unit(1e12, "people"),
  60713. name: "Side",
  60714. image: {
  60715. source: "./media/characters/zel-kesh/side.svg",
  60716. extra: 910/407,
  60717. bottom: 147/1057
  60718. }
  60719. },
  60720. },
  60721. [
  60722. {
  60723. name: "Normal",
  60724. height: math.unit(3, "meters"),
  60725. default: true
  60726. },
  60727. ]
  60728. ))
  60729. characterMakers.push(() => makeCharacter(
  60730. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60731. {
  60732. front: {
  60733. height: math.unit(2, "meters"),
  60734. weight: math.unit(95, "kg"),
  60735. name: "Front",
  60736. image: {
  60737. source: "./media/characters/kane-fox/front.svg",
  60738. extra: 945/888,
  60739. bottom: 27/972
  60740. }
  60741. },
  60742. back: {
  60743. height: math.unit(2, "meters"),
  60744. weight: math.unit(95, "kg"),
  60745. name: "Back",
  60746. image: {
  60747. source: "./media/characters/kane-fox/back.svg",
  60748. extra: 959/914,
  60749. bottom: 15/974
  60750. }
  60751. },
  60752. frontLewd: {
  60753. height: math.unit(2, "meters"),
  60754. weight: math.unit(95, "kg"),
  60755. name: "Front (Lewd)",
  60756. image: {
  60757. source: "./media/characters/kane-fox/front-lewd.svg",
  60758. extra: 945/888,
  60759. bottom: 27/972
  60760. }
  60761. },
  60762. },
  60763. [
  60764. {
  60765. name: "Home Size",
  60766. height: math.unit(2, "meters"),
  60767. default: true
  60768. },
  60769. {
  60770. name: "Macro",
  60771. height: math.unit(200, "meters")
  60772. },
  60773. {
  60774. name: "Small Mega",
  60775. height: math.unit(3, "km")
  60776. },
  60777. {
  60778. name: "Mega",
  60779. height: math.unit(50, "km")
  60780. },
  60781. {
  60782. name: "Giga",
  60783. height: math.unit(200, "km")
  60784. },
  60785. {
  60786. name: "Giga+",
  60787. height: math.unit(2500, "km")
  60788. },
  60789. {
  60790. name: "Terra",
  60791. height: math.unit(70000, "km")
  60792. },
  60793. {
  60794. name: "Terra+",
  60795. height: math.unit(150000, "km")
  60796. },
  60797. {
  60798. name: "Terra++",
  60799. height: math.unit(400000, "km")
  60800. },
  60801. ]
  60802. ))
  60803. characterMakers.push(() => makeCharacter(
  60804. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60805. {
  60806. otter_front: {
  60807. height: math.unit(1.8, "meters"),
  60808. weight: math.unit(90, "kg"),
  60809. name: "Front",
  60810. image: {
  60811. source: "./media/characters/ayranus/otter-front.svg",
  60812. extra: 468/452,
  60813. bottom: 43/511
  60814. },
  60815. form: "otter",
  60816. },
  60817. otter_frontLewd: {
  60818. height: math.unit(1.8, "meters"),
  60819. weight: math.unit(90, "kg"),
  60820. name: "Front (Lewd)",
  60821. image: {
  60822. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60823. extra: 468/452,
  60824. bottom: 43/511
  60825. },
  60826. form: "otter",
  60827. },
  60828. lionbat_front: {
  60829. height: math.unit(1.8, "meters"),
  60830. weight: math.unit(90, "kg"),
  60831. name: "Front (Lewd)",
  60832. image: {
  60833. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60834. extra: 797/740,
  60835. bottom: 78/875
  60836. },
  60837. form: "lionbat",
  60838. },
  60839. paw: {
  60840. height: math.unit(1.5, "feet"),
  60841. name: "Paw",
  60842. image: {
  60843. source: "./media/characters/ayranus/paw.svg"
  60844. },
  60845. },
  60846. },
  60847. [
  60848. {
  60849. name: "Incognito",
  60850. height: math.unit(1.8, "meters"),
  60851. allForms: true
  60852. },
  60853. {
  60854. name: "Macro",
  60855. height: math.unit(60, "meters"),
  60856. allForms: true
  60857. },
  60858. {
  60859. name: "Macro+",
  60860. height: math.unit(200, "meters"),
  60861. allForms: true
  60862. },
  60863. {
  60864. name: "Mega",
  60865. height: math.unit(35, "km"),
  60866. allForms: true
  60867. },
  60868. {
  60869. name: "Giga",
  60870. height: math.unit(220, "km"),
  60871. allForms: true
  60872. },
  60873. {
  60874. name: "Giga+",
  60875. height: math.unit(1500, "km"),
  60876. allForms: true
  60877. },
  60878. {
  60879. name: "Terra",
  60880. height: math.unit(13000, "km"),
  60881. allForms: true
  60882. },
  60883. {
  60884. name: "Terra+",
  60885. height: math.unit(500000, "km"),
  60886. allForms: true
  60887. },
  60888. {
  60889. name: "Galactic",
  60890. height: math.unit(486080, "parsecs"),
  60891. default: true,
  60892. allForms: true
  60893. },
  60894. ],
  60895. {
  60896. "otter": {
  60897. name: "Otter",
  60898. default: true
  60899. },
  60900. "lionbat": {
  60901. name: "Lionbat",
  60902. },
  60903. }
  60904. ))
  60905. characterMakers.push(() => makeCharacter(
  60906. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60907. {
  60908. front: {
  60909. height: math.unit(7 + 4/12, "feet"),
  60910. weight: math.unit(400, "lb"),
  60911. name: "Front",
  60912. image: {
  60913. source: "./media/characters/proxy/front.svg",
  60914. extra: 1605/1542,
  60915. bottom: 55/1660
  60916. }
  60917. },
  60918. side: {
  60919. height: math.unit(7 + 4/12, "feet"),
  60920. weight: math.unit(400, "lb"),
  60921. name: "Side",
  60922. image: {
  60923. source: "./media/characters/proxy/side.svg",
  60924. extra: 794/759,
  60925. bottom: 6/800
  60926. }
  60927. },
  60928. hand: {
  60929. height: math.unit(1.54, "feet"),
  60930. name: "Hand",
  60931. image: {
  60932. source: "./media/characters/proxy/hand.svg"
  60933. }
  60934. },
  60935. paw: {
  60936. height: math.unit(1.53, "feet"),
  60937. name: "Paw",
  60938. image: {
  60939. source: "./media/characters/proxy/paw.svg"
  60940. }
  60941. },
  60942. maw: {
  60943. height: math.unit(1.9, "feet"),
  60944. name: "Maw",
  60945. image: {
  60946. source: "./media/characters/proxy/maw.svg"
  60947. }
  60948. },
  60949. },
  60950. [
  60951. {
  60952. name: "Normal",
  60953. height: math.unit(7 + 4/12, "feet"),
  60954. default: true
  60955. },
  60956. ]
  60957. ))
  60958. characterMakers.push(() => makeCharacter(
  60959. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60960. {
  60961. front: {
  60962. height: math.unit(4, "meters"),
  60963. name: "Front",
  60964. image: {
  60965. source: "./media/characters/crocozilla/front.svg",
  60966. extra: 1790/1742,
  60967. bottom: 78/1868
  60968. }
  60969. },
  60970. },
  60971. [
  60972. {
  60973. name: "Normal",
  60974. height: math.unit(4, "meters"),
  60975. default: true
  60976. },
  60977. ]
  60978. ))
  60979. characterMakers.push(() => makeCharacter(
  60980. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60981. {
  60982. front: {
  60983. height: math.unit(1.8, "meters"),
  60984. weight: math.unit(120, "kg"),
  60985. name: "Front",
  60986. image: {
  60987. source: "./media/characters/kurz/front.svg",
  60988. extra: 1960/1824,
  60989. bottom: 41/2001
  60990. }
  60991. },
  60992. back: {
  60993. height: math.unit(1.8, "meters"),
  60994. weight: math.unit(120, "kg"),
  60995. name: "Back",
  60996. image: {
  60997. source: "./media/characters/kurz/back.svg",
  60998. extra: 1906/1787,
  60999. bottom: 60/1966
  61000. }
  61001. },
  61002. frontLewd: {
  61003. height: math.unit(1.8, "meters"),
  61004. weight: math.unit(120, "kg"),
  61005. name: "Front (Lewd)",
  61006. image: {
  61007. source: "./media/characters/kurz/front-lewd.svg",
  61008. extra: 1960/1824,
  61009. bottom: 41/2001
  61010. }
  61011. },
  61012. maw: {
  61013. height: math.unit(0.69, "meters"),
  61014. name: "Maw",
  61015. image: {
  61016. source: "./media/characters/kurz/maw.svg"
  61017. }
  61018. },
  61019. },
  61020. [
  61021. {
  61022. name: "Original Size",
  61023. height: math.unit(1.8, "meters")
  61024. },
  61025. {
  61026. name: "Incognito Size",
  61027. height: math.unit(2.4, "meters"),
  61028. default: true
  61029. },
  61030. {
  61031. name: "Macro",
  61032. height: math.unit(30, "meters")
  61033. },
  61034. {
  61035. name: "Macro+",
  61036. height: math.unit(250, "meters")
  61037. },
  61038. {
  61039. name: "Mega",
  61040. height: math.unit(2, "km")
  61041. },
  61042. {
  61043. name: "Mega+",
  61044. height: math.unit(35, "km")
  61045. },
  61046. {
  61047. name: "Mega++",
  61048. height: math.unit(75, "km")
  61049. },
  61050. {
  61051. name: "Giga",
  61052. height: math.unit(250, "km")
  61053. },
  61054. {
  61055. name: "Terra",
  61056. height: math.unit(15000, "km")
  61057. },
  61058. {
  61059. name: "Terra+",
  61060. height: math.unit(2250000, "km")
  61061. },
  61062. ]
  61063. ))
  61064. characterMakers.push(() => makeCharacter(
  61065. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61066. {
  61067. front: {
  61068. height: math.unit(16 + 3/12, "feet"),
  61069. weight: math.unit(3575, "lb"),
  61070. name: "Front",
  61071. image: {
  61072. source: "./media/characters/nikita/front.svg",
  61073. extra: 1064/955,
  61074. bottom: 47/1111
  61075. }
  61076. },
  61077. },
  61078. [
  61079. {
  61080. name: "Normal",
  61081. height: math.unit(16 + 3/12, "feet"),
  61082. default: true
  61083. },
  61084. {
  61085. name: "Big",
  61086. height: math.unit(21, "feet")
  61087. },
  61088. {
  61089. name: "Biggest",
  61090. height: math.unit(50, "feet")
  61091. },
  61092. ]
  61093. ))
  61094. characterMakers.push(() => makeCharacter(
  61095. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61096. {
  61097. front: {
  61098. height: math.unit(1.92, "m"),
  61099. weight: math.unit(76, "kg"),
  61100. name: "Front",
  61101. image: {
  61102. source: "./media/characters/kyara/front.svg",
  61103. extra: 1550/1438,
  61104. bottom: 139/1689
  61105. }
  61106. },
  61107. back: {
  61108. height: math.unit(1.92, "m"),
  61109. weight: math.unit(76, "kg"),
  61110. name: "Back",
  61111. image: {
  61112. source: "./media/characters/kyara/back.svg",
  61113. extra: 1523/1427,
  61114. bottom: 83/1606
  61115. }
  61116. },
  61117. head: {
  61118. height: math.unit(1.22, "feet"),
  61119. name: "Head",
  61120. image: {
  61121. source: "./media/characters/kyara/head.svg"
  61122. }
  61123. },
  61124. maw: {
  61125. height: math.unit(0.73, "feet"),
  61126. name: "Maw",
  61127. image: {
  61128. source: "./media/characters/kyara/maw.svg"
  61129. }
  61130. },
  61131. paws: {
  61132. height: math.unit(0.95, "feet"),
  61133. name: "Paws",
  61134. image: {
  61135. source: "./media/characters/kyara/paws.svg"
  61136. }
  61137. },
  61138. },
  61139. [
  61140. {
  61141. name: "Normal",
  61142. height: math.unit(1.92, "meters"),
  61143. default: true
  61144. },
  61145. {
  61146. name: "Mini Macro",
  61147. height: math.unit(192, "meters")
  61148. },
  61149. {
  61150. name: "Macro",
  61151. height: math.unit(480, "meters")
  61152. },
  61153. {
  61154. name: "Mega Macro",
  61155. height: math.unit(1440, "meters")
  61156. },
  61157. ]
  61158. ))
  61159. characterMakers.push(() => makeCharacter(
  61160. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61161. {
  61162. front: {
  61163. height: math.unit(6, "feet"),
  61164. weight: math.unit(160, "lbs"),
  61165. preyCapacity: math.unit(0.05, "people"),
  61166. name: "Front",
  61167. image: {
  61168. source: "./media/characters/layla-amari/front.svg",
  61169. extra: 1922/1723,
  61170. bottom: 90/2012
  61171. }
  61172. },
  61173. back: {
  61174. height: math.unit(6, "feet"),
  61175. weight: math.unit(160, "lbs"),
  61176. preyCapacity: math.unit(0.05, "people"),
  61177. name: "Back",
  61178. image: {
  61179. source: "./media/characters/layla-amari/back.svg",
  61180. extra: 1917/1718,
  61181. bottom: 50/1967
  61182. }
  61183. },
  61184. frontDressed: {
  61185. height: math.unit(6, "feet"),
  61186. weight: math.unit(160, "lbs"),
  61187. preyCapacity: math.unit(0.05, "people"),
  61188. name: "Front (Dressed)",
  61189. image: {
  61190. source: "./media/characters/layla-amari/front-dressed.svg",
  61191. extra: 1922/1723,
  61192. bottom: 90/2012
  61193. }
  61194. },
  61195. face: {
  61196. height: math.unit(0.93, "feet"),
  61197. name: "Face",
  61198. image: {
  61199. source: "./media/characters/layla-amari/face.svg"
  61200. }
  61201. },
  61202. hand: {
  61203. height: math.unit(0.66 , "feet"),
  61204. name: "Hand",
  61205. image: {
  61206. source: "./media/characters/layla-amari/hand.svg"
  61207. }
  61208. },
  61209. foot: {
  61210. height: math.unit(1, "feet"),
  61211. name: "Foot",
  61212. image: {
  61213. source: "./media/characters/layla-amari/foot.svg"
  61214. }
  61215. },
  61216. necklace: {
  61217. height: math.unit(0.32, "feet"),
  61218. name: "Necklace",
  61219. image: {
  61220. source: "./media/characters/layla-amari/necklace.svg"
  61221. }
  61222. },
  61223. nipple: {
  61224. height: math.unit(0.2, "feet"),
  61225. name: "Nipple",
  61226. image: {
  61227. source: "./media/characters/layla-amari/nipple.svg"
  61228. }
  61229. },
  61230. slit: {
  61231. height: math.unit(0.26, "feet"),
  61232. name: "Slit",
  61233. image: {
  61234. source: "./media/characters/layla-amari/slit.svg"
  61235. }
  61236. },
  61237. },
  61238. [
  61239. {
  61240. name: "Natural",
  61241. height: math.unit(825, "feet"),
  61242. default: true
  61243. },
  61244. {
  61245. name: "Enhanced",
  61246. height: math.unit(8250, "feet")
  61247. },
  61248. {
  61249. name: "Apparent Size",
  61250. height: math.unit(9.04363e+8, "meters")
  61251. },
  61252. ]
  61253. ))
  61254. characterMakers.push(() => makeCharacter(
  61255. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61256. {
  61257. front: {
  61258. height: math.unit(1.3, "meters"),
  61259. name: "Front",
  61260. image: {
  61261. source: "./media/characters/percy/front.svg",
  61262. extra: 1444/1289,
  61263. bottom: 54/1498
  61264. }
  61265. },
  61266. },
  61267. [
  61268. {
  61269. name: "Normal",
  61270. height: math.unit(1.3, "meters"),
  61271. default: true
  61272. },
  61273. ]
  61274. ))
  61275. characterMakers.push(() => makeCharacter(
  61276. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61277. {
  61278. side: {
  61279. height: math.unit(10, "meters"),
  61280. name: "Side",
  61281. image: {
  61282. source: "./media/characters/grev/side.svg",
  61283. extra: 653/266,
  61284. bottom: 77/730
  61285. }
  61286. },
  61287. head: {
  61288. height: math.unit(16.2, "m"),
  61289. name: "Head",
  61290. image: {
  61291. source: "./media/characters/grev/head.svg"
  61292. }
  61293. },
  61294. dick: {
  61295. height: math.unit(2.8135932034, "m"),
  61296. name: "Dick",
  61297. image: {
  61298. source: "./media/characters/grev/dick.svg"
  61299. }
  61300. },
  61301. },
  61302. [
  61303. {
  61304. name: "Friend-Sized",
  61305. height: math.unit(80, "cm")
  61306. },
  61307. {
  61308. name: "Normal",
  61309. height: math.unit(10, "meters"),
  61310. default: true
  61311. },
  61312. {
  61313. name: "Macro",
  61314. height: math.unit(200, "meters")
  61315. },
  61316. ]
  61317. ))
  61318. characterMakers.push(() => makeCharacter(
  61319. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61320. {
  61321. front: {
  61322. height: math.unit(19.75, "feet"),
  61323. weight: math.unit(20000, "lb"),
  61324. name: "Front",
  61325. image: {
  61326. source: "./media/characters/azuuca/front.svg",
  61327. extra: 1593/1511,
  61328. bottom: 55/1648
  61329. }
  61330. },
  61331. },
  61332. [
  61333. {
  61334. name: "Normal",
  61335. height: math.unit(19.75, "feet"),
  61336. default: true
  61337. },
  61338. ]
  61339. ))
  61340. characterMakers.push(() => makeCharacter(
  61341. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61342. {
  61343. front: {
  61344. height: math.unit(15, "feet"),
  61345. weight: math.unit(1500, "lb"),
  61346. name: "Front",
  61347. image: {
  61348. source: "./media/characters/valuria/front.svg",
  61349. extra: 1588/1486,
  61350. bottom: 31/1619
  61351. }
  61352. },
  61353. },
  61354. [
  61355. {
  61356. name: "Normal",
  61357. height: math.unit(15, "feet"),
  61358. default: true
  61359. },
  61360. {
  61361. name: "Small",
  61362. height: math.unit(500, "feet")
  61363. },
  61364. {
  61365. name: "Macro",
  61366. height: math.unit(4000, "feet")
  61367. },
  61368. {
  61369. name: "Mega Macro",
  61370. height: math.unit(2000, "miles")
  61371. },
  61372. {
  61373. name: "Giga Macro",
  61374. height: math.unit(3e6, "miles")
  61375. },
  61376. ]
  61377. ))
  61378. characterMakers.push(() => makeCharacter(
  61379. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61380. {
  61381. front: {
  61382. height: math.unit(3500, "solarradii"),
  61383. name: "Front",
  61384. image: {
  61385. source: "./media/characters/terigaia/front.svg",
  61386. extra: 1531/1451,
  61387. bottom: 98/1629
  61388. }
  61389. },
  61390. },
  61391. [
  61392. {
  61393. name: "Normal",
  61394. height: math.unit(3500, "solarradii"),
  61395. default: true
  61396. },
  61397. ]
  61398. ))
  61399. characterMakers.push(() => makeCharacter(
  61400. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61401. {
  61402. front: {
  61403. height: math.unit(9.34, "feet"),
  61404. weight: math.unit(600, "lb"),
  61405. name: "Front",
  61406. image: {
  61407. source: "./media/characters/blair-blaziken/front.svg",
  61408. extra: 1557/1462,
  61409. bottom: 55/1612
  61410. }
  61411. },
  61412. },
  61413. [
  61414. {
  61415. name: "Normal",
  61416. height: math.unit(9.34, "feet"),
  61417. default: true
  61418. },
  61419. ]
  61420. ))
  61421. characterMakers.push(() => makeCharacter(
  61422. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61423. {
  61424. pistrogre_front: {
  61425. height: math.unit(10, "feet"),
  61426. weight: math.unit(10, "tons"),
  61427. name: "Front",
  61428. image: {
  61429. source: "./media/characters/braxia/pistrogre-front.svg",
  61430. extra: 1531/1334,
  61431. bottom: 114/1645
  61432. },
  61433. form: "pistrogre",
  61434. default: true
  61435. },
  61436. human_front: {
  61437. height: math.unit(10, "feet"),
  61438. weight: math.unit(10, "tons"),
  61439. name: "Front",
  61440. image: {
  61441. source: "./media/characters/braxia/human-front.svg",
  61442. extra: 1574/1501,
  61443. bottom: 37/1611
  61444. },
  61445. form: "human",
  61446. default: true
  61447. },
  61448. },
  61449. [
  61450. {
  61451. name: "Normal",
  61452. height: math.unit(10, "feet"),
  61453. default: true,
  61454. allForms: true
  61455. },
  61456. {
  61457. name: "Macro",
  61458. height: math.unit(1000, "feet"),
  61459. allForms: true
  61460. },
  61461. {
  61462. name: "Mega Macro",
  61463. height: math.unit(100, "miles"),
  61464. allForms: true
  61465. },
  61466. {
  61467. name: "Cosmic",
  61468. height: math.unit(1000000, "lightyears"),
  61469. allForms: true
  61470. },
  61471. {
  61472. name: "ϐѮԆԬӁꭍϞԢ",
  61473. height: math.unit(1000, "multiverses"),
  61474. allForms: true
  61475. },
  61476. ],
  61477. {
  61478. "pistrogre": {
  61479. name: "Pistrogre",
  61480. default: true
  61481. },
  61482. "human": {
  61483. name: "Human",
  61484. },
  61485. }
  61486. ))
  61487. characterMakers.push(() => makeCharacter(
  61488. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61489. {
  61490. front: {
  61491. height: math.unit(6 + 1/12, "feet"),
  61492. weight: math.unit(280, "lb"),
  61493. name: "Front",
  61494. image: {
  61495. source: "./media/characters/kiriga-yato/front.svg",
  61496. extra: 445/394,
  61497. bottom: 11/456
  61498. }
  61499. },
  61500. },
  61501. [
  61502. {
  61503. name: "Descended",
  61504. height: math.unit(3, "feet")
  61505. },
  61506. {
  61507. name: "Average",
  61508. height: math.unit(6 + 1/12, "feet"),
  61509. default: true
  61510. },
  61511. {
  61512. name: "Ascended",
  61513. height: math.unit(9 + 2/12, "feet")
  61514. },
  61515. ]
  61516. ))
  61517. characterMakers.push(() => makeCharacter(
  61518. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61519. {
  61520. front: {
  61521. height: math.unit(6, "feet"),
  61522. weight: math.unit(150, "lb"),
  61523. name: "Front",
  61524. image: {
  61525. source: "./media/characters/kylie/front.svg",
  61526. extra: 1114/1046,
  61527. bottom: 65/1179
  61528. },
  61529. extraAttributes: {
  61530. "hoofSize": {
  61531. name: "Hoof Size",
  61532. power: 2,
  61533. type: "area",
  61534. base: math.unit(0.034, "m^2")
  61535. },
  61536. "footSize": {
  61537. name: "Foot Size",
  61538. power: 2,
  61539. type: "area",
  61540. base: math.unit(0.75, "m^2")
  61541. },
  61542. }
  61543. },
  61544. side: {
  61545. height: math.unit(6, "feet"),
  61546. weight: math.unit(150, "lb"),
  61547. name: "Side",
  61548. image: {
  61549. source: "./media/characters/kylie/side.svg",
  61550. extra: 1178/1110,
  61551. bottom: 21/1199
  61552. },
  61553. extraAttributes: {
  61554. "hoofSize": {
  61555. name: "Hoof Size",
  61556. power: 2,
  61557. type: "area",
  61558. base: math.unit(0.034, "m^2")
  61559. },
  61560. "footSize": {
  61561. name: "Foot Size",
  61562. power: 2,
  61563. type: "area",
  61564. base: math.unit(0.75, "m^2")
  61565. },
  61566. }
  61567. },
  61568. back: {
  61569. height: math.unit(6, "feet"),
  61570. weight: math.unit(150, "lb"),
  61571. name: "Back",
  61572. image: {
  61573. source: "./media/characters/kylie/back.svg",
  61574. extra: 1115/1047,
  61575. bottom: 66/1181
  61576. },
  61577. extraAttributes: {
  61578. "hoofSize": {
  61579. name: "Hoof Size",
  61580. power: 2,
  61581. type: "area",
  61582. base: math.unit(0.034, "m^2")
  61583. },
  61584. "footSize": {
  61585. name: "Foot Size",
  61586. power: 2,
  61587. type: "area",
  61588. base: math.unit(0.75, "m^2")
  61589. },
  61590. }
  61591. },
  61592. head: {
  61593. height: math.unit(1.85, "feet"),
  61594. name: "Head",
  61595. image: {
  61596. source: "./media/characters/kylie/head.svg"
  61597. }
  61598. },
  61599. },
  61600. [
  61601. {
  61602. name: "Normal",
  61603. height: math.unit(90, "meters"),
  61604. default: true
  61605. },
  61606. ]
  61607. ))
  61608. characterMakers.push(() => makeCharacter(
  61609. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61610. {
  61611. front: {
  61612. height: math.unit(245, "feet"),
  61613. weight: math.unit(400000, "lb"),
  61614. name: "Front",
  61615. image: {
  61616. source: "./media/characters/sabado/front.svg",
  61617. extra: 1309/1164,
  61618. bottom: 29/1338
  61619. }
  61620. },
  61621. },
  61622. [
  61623. {
  61624. name: "Normal",
  61625. height: math.unit(245, "feet"),
  61626. default: true
  61627. },
  61628. ]
  61629. ))
  61630. characterMakers.push(() => makeCharacter(
  61631. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61632. {
  61633. shark_front: {
  61634. height: math.unit(2, "meters"),
  61635. weight: math.unit(200, "kg"),
  61636. name: "Front",
  61637. image: {
  61638. source: "./media/characters/zechal/shark-front.svg",
  61639. extra: 969/925,
  61640. bottom: 74/1043
  61641. },
  61642. form: "shark",
  61643. },
  61644. shark_back: {
  61645. height: math.unit(2, "meters"),
  61646. weight: math.unit(200, "kg"),
  61647. name: "Back",
  61648. image: {
  61649. source: "./media/characters/zechal/shark-back.svg",
  61650. extra: 994/949,
  61651. bottom: 176/1170
  61652. },
  61653. form: "shark",
  61654. },
  61655. shark_frontLewd: {
  61656. height: math.unit(2, "meters"),
  61657. weight: math.unit(200, "kg"),
  61658. name: "Front (Lewd)",
  61659. image: {
  61660. source: "./media/characters/zechal/shark-front-lewd.svg",
  61661. extra: 969/925,
  61662. bottom: 74/1043
  61663. },
  61664. form: "shark",
  61665. },
  61666. shark_side: {
  61667. height: math.unit(1.56, "meters"),
  61668. weight: math.unit(200, "kg"),
  61669. name: "Side",
  61670. image: {
  61671. source: "./media/characters/zechal/shark-side.svg"
  61672. },
  61673. form: "shark",
  61674. },
  61675. dragon_front: {
  61676. height: math.unit(2, "meters"),
  61677. weight: math.unit(200, "kg"),
  61678. name: "Front",
  61679. image: {
  61680. source: "./media/characters/zechal/dragon-front.svg",
  61681. extra: 1041/925,
  61682. bottom: 74/1115
  61683. },
  61684. form: "dragon",
  61685. },
  61686. dragon_back: {
  61687. height: math.unit(2, "meters"),
  61688. weight: math.unit(200, "kg"),
  61689. name: "Back",
  61690. image: {
  61691. source: "./media/characters/zechal/dragon-back.svg",
  61692. extra: 1061/949,
  61693. bottom: 176/1237
  61694. },
  61695. form: "dragon",
  61696. },
  61697. dragon_frontLewd: {
  61698. height: math.unit(2, "meters"),
  61699. weight: math.unit(200, "kg"),
  61700. name: "Front (Lewd)",
  61701. image: {
  61702. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61703. extra: 1041/925,
  61704. bottom: 74/1115
  61705. },
  61706. form: "dragon",
  61707. },
  61708. dragon_side: {
  61709. height: math.unit(1.56, "meters"),
  61710. weight: math.unit(200, "kg"),
  61711. name: "Side",
  61712. image: {
  61713. source: "./media/characters/zechal/dragon-side.svg"
  61714. },
  61715. form: "dragon",
  61716. },
  61717. foot: {
  61718. height: math.unit(0.5, "meters"),
  61719. name: "Foot",
  61720. image: {
  61721. source: "./media/characters/zechal/foot.svg"
  61722. }
  61723. },
  61724. sheathFront: {
  61725. height: math.unit(0.45, "meters"),
  61726. name: "Sheath (Front)",
  61727. image: {
  61728. source: "./media/characters/zechal/sheath-front.svg"
  61729. }
  61730. },
  61731. sheathSide: {
  61732. height: math.unit(0.45, "meters"),
  61733. name: "Sheath (Side)",
  61734. image: {
  61735. source: "./media/characters/zechal/sheath-side.svg"
  61736. }
  61737. },
  61738. },
  61739. [
  61740. {
  61741. name: "Incognito",
  61742. height: math.unit(2, "meters"),
  61743. allForms: true
  61744. },
  61745. {
  61746. name: "Small Rampage",
  61747. height: math.unit(25, "meters"),
  61748. allForms: true
  61749. },
  61750. {
  61751. name: "Home Size",
  61752. height: math.unit(250, "meters"),
  61753. allForms: true,
  61754. default: true
  61755. },
  61756. {
  61757. name: "Macro+",
  61758. height: math.unit(700, "meters"),
  61759. allForms: true
  61760. },
  61761. {
  61762. name: "Small Mega",
  61763. height: math.unit(3, "km"),
  61764. allForms: true
  61765. },
  61766. {
  61767. name: "Mega",
  61768. height: math.unit(15, "km"),
  61769. allForms: true
  61770. },
  61771. {
  61772. name: "Giga",
  61773. height: math.unit(300, "km"),
  61774. allForms: true
  61775. },
  61776. {
  61777. name: "Giga+",
  61778. height: math.unit(1750, "km"),
  61779. allForms: true
  61780. },
  61781. {
  61782. name: "Continental",
  61783. height: math.unit(5000, "km"),
  61784. allForms: true
  61785. },
  61786. {
  61787. name: "Terra",
  61788. height: math.unit(20000, "km"),
  61789. allForms: true
  61790. },
  61791. {
  61792. name: "Terra+",
  61793. height: math.unit(300000, "km"),
  61794. allForms: true
  61795. },
  61796. {
  61797. name: "Solar",
  61798. height: math.unit(40000000, "km"),
  61799. allForms: true
  61800. },
  61801. {
  61802. name: "Galactic",
  61803. height: math.unit(810133, "parsecs"),
  61804. allForms: true
  61805. },
  61806. {
  61807. name: "Universal",
  61808. height: math.unit(25, "universes"),
  61809. allForms: true
  61810. },
  61811. ],
  61812. {
  61813. "shark": {
  61814. name: "Shark",
  61815. default: true
  61816. },
  61817. "dragon": {
  61818. name: "Dragon",
  61819. },
  61820. }
  61821. ))
  61822. characterMakers.push(() => makeCharacter(
  61823. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61824. {
  61825. front: {
  61826. height: math.unit(2.2, "meters"),
  61827. weight: math.unit(150, "kg"),
  61828. name: "Front",
  61829. image: {
  61830. source: "./media/characters/sergis/front.svg",
  61831. extra: 1314/1312,
  61832. bottom: 112/1426
  61833. }
  61834. },
  61835. back: {
  61836. height: math.unit(2.2, "meters"),
  61837. weight: math.unit(150, "kg"),
  61838. name: "Back",
  61839. image: {
  61840. source: "./media/characters/sergis/back.svg",
  61841. extra: 1335/1333,
  61842. bottom: 19/1354
  61843. }
  61844. },
  61845. frontLewd: {
  61846. height: math.unit(2.2, "meters"),
  61847. weight: math.unit(150, "kg"),
  61848. name: "Front (Lewd)",
  61849. image: {
  61850. source: "./media/characters/sergis/front-lewd.svg",
  61851. extra: 1314/1312,
  61852. bottom: 112/1426
  61853. }
  61854. },
  61855. frontDressed: {
  61856. height: math.unit(2.2, "meters"),
  61857. weight: math.unit(150, "kg"),
  61858. name: "Front (Dressed)",
  61859. image: {
  61860. source: "./media/characters/sergis/front-dressed.svg",
  61861. extra: 1330/1328,
  61862. bottom: 95/1425
  61863. }
  61864. },
  61865. frontDressedLewd: {
  61866. height: math.unit(2.2, "meters"),
  61867. weight: math.unit(150, "kg"),
  61868. name: "Front (Dressed, Lewd)",
  61869. image: {
  61870. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61871. extra: 1330/1328,
  61872. bottom: 95/1425
  61873. }
  61874. },
  61875. maw: {
  61876. height: math.unit(0.48, "meters"),
  61877. name: "Maw",
  61878. image: {
  61879. source: "./media/characters/sergis/maw.svg"
  61880. }
  61881. },
  61882. sheath: {
  61883. height: math.unit(0.38, "meters"),
  61884. name: "Sheath",
  61885. image: {
  61886. source: "./media/characters/sergis/sheath.svg"
  61887. }
  61888. },
  61889. },
  61890. [
  61891. {
  61892. name: "Incognito Size",
  61893. height: math.unit(2.2, "meters")
  61894. },
  61895. {
  61896. name: "Small Macro",
  61897. height: math.unit(40, "meters")
  61898. },
  61899. {
  61900. name: "Macro",
  61901. height: math.unit(150, "meters")
  61902. },
  61903. {
  61904. name: "Macro+",
  61905. height: math.unit(300, "meters")
  61906. },
  61907. {
  61908. name: "Mega",
  61909. height: math.unit(2.5, "km")
  61910. },
  61911. {
  61912. name: "Mega+",
  61913. height: math.unit(30, "km")
  61914. },
  61915. {
  61916. name: "Home Size",
  61917. height: math.unit(300, "km"),
  61918. default: true
  61919. },
  61920. {
  61921. name: "Giga+",
  61922. height: math.unit(1000, "km")
  61923. },
  61924. {
  61925. name: "Giga++",
  61926. height: math.unit(6000, "km")
  61927. },
  61928. {
  61929. name: "Terra",
  61930. height: math.unit(70000, "km")
  61931. },
  61932. {
  61933. name: "Terra+",
  61934. height: math.unit(200000, "km")
  61935. },
  61936. {
  61937. name: "Galactic",
  61938. height: math.unit(634200, "lightyears")
  61939. },
  61940. ]
  61941. ))
  61942. characterMakers.push(() => makeCharacter(
  61943. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61944. {
  61945. standard: {
  61946. height: math.unit(1 + 5/12, "feet"),
  61947. name: "Standard",
  61948. image: {
  61949. source: "./media/characters/spade/standard.svg",
  61950. extra: 1794/1703,
  61951. bottom: 115/1909
  61952. }
  61953. },
  61954. disguised: {
  61955. height: math.unit(1 + 5/12, "feet"),
  61956. name: "Disguised",
  61957. image: {
  61958. source: "./media/characters/spade/disguised.svg",
  61959. extra: 1794/1700,
  61960. bottom: 98/1892
  61961. }
  61962. },
  61963. },
  61964. [
  61965. {
  61966. name: "Normal",
  61967. height: math.unit(1 + 5/12, "feet"),
  61968. default: true
  61969. },
  61970. ]
  61971. ))
  61972. characterMakers.push(() => makeCharacter(
  61973. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61974. {
  61975. frontNsfw: {
  61976. height: math.unit(5, "meters"),
  61977. weight: math.unit(2000, "kg"),
  61978. preyCapacity: math.unit(5, "people"),
  61979. name: "Front (NSFW)",
  61980. image: {
  61981. source: "./media/characters/zeanlain/front-nsfw.svg",
  61982. extra: 1087/938,
  61983. bottom: 93/1180
  61984. },
  61985. extraAttributes: {
  61986. "wingspan": {
  61987. name: "Wingspan",
  61988. power: 1,
  61989. type: "length",
  61990. base: math.unit(10, "meters")
  61991. },
  61992. "footSize": {
  61993. name: "Foot Size",
  61994. power: 1,
  61995. type: "length",
  61996. base: math.unit(0.68, "meters")
  61997. },
  61998. "cockLength": {
  61999. name: "Cock Length",
  62000. power: 1,
  62001. type: "length",
  62002. base: math.unit(1.69, "meters")
  62003. },
  62004. "ballVolume": {
  62005. name: "Ball Volume",
  62006. power: 3,
  62007. type: "volume",
  62008. base: math.unit(0.028, "m^3")
  62009. },
  62010. }
  62011. },
  62012. front: {
  62013. height: math.unit(5, "meters"),
  62014. weight: math.unit(2000, "kg"),
  62015. preyCapacity: math.unit(3, "people"),
  62016. name: "Front",
  62017. image: {
  62018. source: "./media/characters/zeanlain/front.svg",
  62019. extra: 1087/938,
  62020. bottom: 93/1180
  62021. },
  62022. extraAttributes: {
  62023. "wingspan": {
  62024. name: "Wingspan",
  62025. power: 1,
  62026. type: "length",
  62027. base: math.unit(10, "meters")
  62028. },
  62029. "footSize": {
  62030. name: "Foot Size",
  62031. power: 1,
  62032. type: "length",
  62033. base: math.unit(0.68, "meters")
  62034. },
  62035. }
  62036. },
  62037. },
  62038. [
  62039. {
  62040. name: "Normal",
  62041. height: math.unit(5, "meters"),
  62042. default: true
  62043. },
  62044. ]
  62045. ))
  62046. characterMakers.push(() => makeCharacter(
  62047. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62048. {
  62049. front: {
  62050. height: math.unit(10, "meters"),
  62051. weight: math.unit(250000, "kg"),
  62052. name: "Front",
  62053. image: {
  62054. source: "./media/characters/airamis/front.svg",
  62055. extra: 865/835,
  62056. bottom: 13/878
  62057. }
  62058. },
  62059. },
  62060. [
  62061. {
  62062. name: "Normal",
  62063. height: math.unit(10, "meters"),
  62064. default: true
  62065. },
  62066. ]
  62067. ))
  62068. characterMakers.push(() => makeCharacter(
  62069. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62070. {
  62071. front: {
  62072. height: math.unit(3 + 3/12, "feet"),
  62073. weight: math.unit(75, "lb"),
  62074. name: "Front",
  62075. image: {
  62076. source: "./media/characters/corra-tourmaline/front.svg",
  62077. extra: 1037/864,
  62078. bottom: 39/1076
  62079. }
  62080. },
  62081. back: {
  62082. height: math.unit(3 + 3/12, "feet"),
  62083. weight: math.unit(75, "lb"),
  62084. name: "Back",
  62085. image: {
  62086. source: "./media/characters/corra-tourmaline/back.svg",
  62087. extra: 1022/849,
  62088. bottom: 26/1048
  62089. }
  62090. },
  62091. dressed: {
  62092. height: math.unit(3 + 3/12, "feet"),
  62093. weight: math.unit(75, "lb"),
  62094. name: "Dressed",
  62095. image: {
  62096. source: "./media/characters/corra-tourmaline/dressed.svg",
  62097. extra: 1037/864,
  62098. bottom: 39/1076
  62099. }
  62100. },
  62101. beans: {
  62102. height: math.unit(0.37, "feet"),
  62103. name: "Beans",
  62104. image: {
  62105. source: "./media/characters/corra-tourmaline/beans.svg"
  62106. }
  62107. },
  62108. },
  62109. [
  62110. {
  62111. name: "Normal",
  62112. height: math.unit(3 + 3/12, "feet"),
  62113. default: true
  62114. },
  62115. {
  62116. name: "Macro",
  62117. height: math.unit(32, "feet")
  62118. },
  62119. ]
  62120. ))
  62121. characterMakers.push(() => makeCharacter(
  62122. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62123. {
  62124. front: {
  62125. height: math.unit(6 + 2/12, "feet"),
  62126. weight: math.unit(203, "lb"),
  62127. name: "Front",
  62128. image: {
  62129. source: "./media/characters/maki-kawa/front.svg",
  62130. extra: 950/890,
  62131. bottom: 62/1012
  62132. }
  62133. },
  62134. back: {
  62135. height: math.unit(6 + 2/12, "feet"),
  62136. weight: math.unit(203, "lb"),
  62137. name: "Back",
  62138. image: {
  62139. source: "./media/characters/maki-kawa/back.svg",
  62140. extra: 953/878,
  62141. bottom: 49/1002
  62142. }
  62143. },
  62144. frontBarista: {
  62145. height: math.unit(6 + 2/12, "feet"),
  62146. weight: math.unit(203, "lb"),
  62147. name: "Front (Barista)",
  62148. image: {
  62149. source: "./media/characters/maki-kawa/front-barista.svg",
  62150. extra: 943/883,
  62151. bottom: 69/1012
  62152. }
  62153. },
  62154. backBarista: {
  62155. height: math.unit(6 + 2/12, "feet"),
  62156. weight: math.unit(203, "lb"),
  62157. name: "Back (Barista)",
  62158. image: {
  62159. source: "./media/characters/maki-kawa/back-barista.svg",
  62160. extra: 953/878,
  62161. bottom: 49/1002
  62162. }
  62163. },
  62164. frontWrestler: {
  62165. height: math.unit(6 + 2/12, "feet"),
  62166. weight: math.unit(203, "lb"),
  62167. name: "Front (Wrestler)",
  62168. image: {
  62169. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62170. extra: 950/890,
  62171. bottom: 62/1012
  62172. }
  62173. },
  62174. backWrestler: {
  62175. height: math.unit(6 + 2/12, "feet"),
  62176. weight: math.unit(203, "lb"),
  62177. name: "Back (Wrestler)",
  62178. image: {
  62179. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62180. extra: 953/878,
  62181. bottom: 49/1002
  62182. }
  62183. },
  62184. headFront: {
  62185. height: math.unit(1.64, "feet"),
  62186. name: "Head (Front)",
  62187. image: {
  62188. source: "./media/characters/maki-kawa/head-front.svg"
  62189. }
  62190. },
  62191. headSide: {
  62192. height: math.unit(1.59, "feet"),
  62193. name: "Head (Side)",
  62194. image: {
  62195. source: "./media/characters/maki-kawa/head-side.svg"
  62196. }
  62197. },
  62198. paw: {
  62199. height: math.unit(0.9, "feet"),
  62200. name: "Paw",
  62201. image: {
  62202. source: "./media/characters/maki-kawa/paw.svg"
  62203. }
  62204. },
  62205. },
  62206. [
  62207. {
  62208. name: "Normal",
  62209. height: math.unit(6 + 2/12, "feet"),
  62210. default: true
  62211. },
  62212. {
  62213. name: "Macro",
  62214. height: math.unit(617, "feet")
  62215. },
  62216. ]
  62217. ))
  62218. characterMakers.push(() => makeCharacter(
  62219. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62220. {
  62221. front: {
  62222. height: math.unit(10, "feet"),
  62223. weight: math.unit(1500, "lb"),
  62224. name: "Front",
  62225. image: {
  62226. source: "./media/characters/lennox/front.svg",
  62227. extra: 1623/1496,
  62228. bottom: 18/1641
  62229. }
  62230. },
  62231. back: {
  62232. height: math.unit(10, "feet"),
  62233. weight: math.unit(1500, "lb"),
  62234. name: "Back",
  62235. image: {
  62236. source: "./media/characters/lennox/back.svg",
  62237. extra: 1641/1481,
  62238. bottom: 13/1654
  62239. }
  62240. },
  62241. maw: {
  62242. height: math.unit(2.94, "feet"),
  62243. name: "Maw",
  62244. image: {
  62245. source: "./media/characters/lennox/maw.svg"
  62246. }
  62247. },
  62248. },
  62249. [
  62250. {
  62251. name: "Micro",
  62252. height: math.unit(1, "inch")
  62253. },
  62254. {
  62255. name: "Normal",
  62256. height: math.unit(10, "feet"),
  62257. default: true
  62258. },
  62259. {
  62260. name: "Macro",
  62261. height: math.unit(200, "feet")
  62262. },
  62263. ]
  62264. ))
  62265. characterMakers.push(() => makeCharacter(
  62266. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62267. {
  62268. frontDressed: {
  62269. height: math.unit(15 + 7/12, "feet"),
  62270. weight: math.unit(5000, "lb"),
  62271. name: "Front (Dressed)",
  62272. image: {
  62273. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62274. extra: 1136/1023,
  62275. bottom: 51/1187
  62276. }
  62277. },
  62278. backDressed: {
  62279. height: math.unit(15 + 7/12, "feet"),
  62280. weight: math.unit(5000, "lb"),
  62281. name: "Back (Dressed)",
  62282. image: {
  62283. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62284. extra: 2359/2143,
  62285. bottom: 103/2462
  62286. }
  62287. },
  62288. front: {
  62289. height: math.unit(15 + 7/12, "feet"),
  62290. weight: math.unit(5000, "lb"),
  62291. name: "Front",
  62292. image: {
  62293. source: "./media/characters/vyse-iron-thunder/front.svg",
  62294. extra: 1136/1023,
  62295. bottom: 51/1187
  62296. }
  62297. },
  62298. hand: {
  62299. height: math.unit(2.36, "feet"),
  62300. name: "Hand",
  62301. image: {
  62302. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62303. }
  62304. },
  62305. foot: {
  62306. height: math.unit(1.72, "feet"),
  62307. name: "Foot",
  62308. image: {
  62309. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62310. }
  62311. },
  62312. mouth: {
  62313. height: math.unit(2, "feet"),
  62314. name: "Mouth",
  62315. image: {
  62316. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62317. }
  62318. },
  62319. eye: {
  62320. height: math.unit(0.58, "feet"),
  62321. name: "Eye",
  62322. image: {
  62323. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62324. }
  62325. },
  62326. },
  62327. [
  62328. {
  62329. name: "Normal",
  62330. height: math.unit(15 + 7/12, "feet"),
  62331. default: true
  62332. },
  62333. {
  62334. name: "Macro",
  62335. height: math.unit(157, "feet")
  62336. },
  62337. {
  62338. name: "Macro+",
  62339. height: math.unit(1570, "feet")
  62340. },
  62341. {
  62342. name: "Macro++",
  62343. height: math.unit(15700, "feet")
  62344. },
  62345. {
  62346. name: "Macro+++",
  62347. height: math.unit(157000, "feet")
  62348. },
  62349. {
  62350. name: "Macro++++",
  62351. height: math.unit(1570000, "feet")
  62352. },
  62353. ]
  62354. ))
  62355. characterMakers.push(() => makeCharacter(
  62356. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62357. {
  62358. side: {
  62359. height: math.unit(6, "feet"),
  62360. weight: math.unit(115, "lb"),
  62361. name: "Side",
  62362. image: {
  62363. source: "./media/characters/moonbeam/side.svg",
  62364. extra: 839/485,
  62365. bottom: 60/899
  62366. }
  62367. },
  62368. },
  62369. [
  62370. {
  62371. name: "Normal",
  62372. height: math.unit(6, "feet"),
  62373. default: true
  62374. },
  62375. ]
  62376. ))
  62377. characterMakers.push(() => makeCharacter(
  62378. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62379. {
  62380. front: {
  62381. height: math.unit(3500, "miles"),
  62382. weight: math.unit(1659, "petatonnes"),
  62383. name: "Front",
  62384. image: {
  62385. source: "./media/characters/baltica/front.svg",
  62386. extra: 429/428,
  62387. bottom: 41/470
  62388. }
  62389. },
  62390. back: {
  62391. height: math.unit(3500, "miles"),
  62392. weight: math.unit(1659, "petatonnes"),
  62393. name: "Back",
  62394. image: {
  62395. source: "./media/characters/baltica/back.svg",
  62396. extra: 452/451,
  62397. bottom: 8/460
  62398. }
  62399. },
  62400. },
  62401. [
  62402. {
  62403. name: "Gigamacro",
  62404. height: math.unit(3500, "miles"),
  62405. default: true
  62406. },
  62407. ]
  62408. ))
  62409. characterMakers.push(() => makeCharacter(
  62410. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62411. {
  62412. front: {
  62413. height: math.unit(6 + 10/12, "feet"),
  62414. weight: math.unit(200, "lb"),
  62415. name: "Front",
  62416. image: {
  62417. source: "./media/characters/shadow-wolf/front.svg",
  62418. extra: 1931/1760,
  62419. bottom: 88/2019
  62420. }
  62421. },
  62422. },
  62423. [
  62424. {
  62425. name: "Normal",
  62426. height: math.unit(6 + 10/12, "feet"),
  62427. default: true
  62428. },
  62429. ]
  62430. ))
  62431. characterMakers.push(() => makeCharacter(
  62432. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62433. {
  62434. front: {
  62435. height: math.unit(5 + 10/12, "feet"),
  62436. name: "Front",
  62437. image: {
  62438. source: "./media/characters/quincy-praying-mantis/front.svg",
  62439. extra: 1055/891,
  62440. bottom: 92/1147
  62441. }
  62442. },
  62443. soles: {
  62444. height: math.unit(0.85, "feet"),
  62445. name: "Soles",
  62446. image: {
  62447. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62448. extra: 429/324,
  62449. bottom: 89/518
  62450. },
  62451. extraAttributes: {
  62452. "shoeSize": {
  62453. name: "Shoe Size",
  62454. power: 1,
  62455. type: "length",
  62456. base: math.unit(23, "ShoeSizeMensUS"),
  62457. defaultUnit: "ShoeSizeMensUS"
  62458. },
  62459. }
  62460. },
  62461. foot: {
  62462. height: math.unit(0.72, "feet"),
  62463. name: "Foot",
  62464. image: {
  62465. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62466. extra: 349/349,
  62467. bottom: 76/425
  62468. }
  62469. },
  62470. },
  62471. [
  62472. {
  62473. name: "Normal",
  62474. height: math.unit(5 + 10/12, "feet"),
  62475. default: true
  62476. },
  62477. ]
  62478. ))
  62479. characterMakers.push(() => makeCharacter(
  62480. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62481. {
  62482. front: {
  62483. height: math.unit(6, "feet"),
  62484. name: "Front",
  62485. image: {
  62486. source: "./media/characters/christopher-redwood/front.svg",
  62487. extra: 1402/1341,
  62488. bottom: 23/1425
  62489. }
  62490. },
  62491. back: {
  62492. height: math.unit(6, "feet"),
  62493. name: "Back",
  62494. image: {
  62495. source: "./media/characters/christopher-redwood/back.svg",
  62496. extra: 1406/1345,
  62497. bottom: 36/1442
  62498. }
  62499. },
  62500. head: {
  62501. height: math.unit(1.685, "feet"),
  62502. name: "Head",
  62503. image: {
  62504. source: "./media/characters/christopher-redwood/head.svg"
  62505. }
  62506. },
  62507. },
  62508. [
  62509. {
  62510. name: "Normal",
  62511. height: math.unit(6, "feet"),
  62512. default: true
  62513. },
  62514. ]
  62515. ))
  62516. characterMakers.push(() => makeCharacter(
  62517. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62518. {
  62519. front: {
  62520. height: math.unit(1.9, "meters"),
  62521. weight: math.unit(140, "lb"),
  62522. name: "Front",
  62523. image: {
  62524. source: "./media/characters/kara-fox/front.svg",
  62525. extra: 766/711,
  62526. bottom: 41/807
  62527. }
  62528. },
  62529. back: {
  62530. height: math.unit(1.9, "meters"),
  62531. weight: math.unit(140, "lb"),
  62532. name: "Back",
  62533. image: {
  62534. source: "./media/characters/kara-fox/back.svg",
  62535. extra: 766/596,
  62536. bottom: 29/795
  62537. }
  62538. },
  62539. maw: {
  62540. height: math.unit(0.78, "feet"),
  62541. name: "Maw",
  62542. image: {
  62543. source: "./media/characters/kara-fox/maw.svg"
  62544. }
  62545. },
  62546. pawpads: {
  62547. height: math.unit(0.96, "feet"),
  62548. name: "Pawpads",
  62549. image: {
  62550. source: "./media/characters/kara-fox/pawpads.svg"
  62551. }
  62552. },
  62553. },
  62554. [
  62555. {
  62556. name: "Normal",
  62557. height: math.unit(1.9, "meters"),
  62558. default: true
  62559. },
  62560. {
  62561. name: "Giantess",
  62562. height: math.unit(80, "meters")
  62563. },
  62564. ]
  62565. ))
  62566. characterMakers.push(() => makeCharacter(
  62567. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62568. {
  62569. front: {
  62570. height: math.unit(12, "feet"),
  62571. name: "Front",
  62572. image: {
  62573. source: "./media/characters/naomi-espeon/front.svg",
  62574. extra: 892/797,
  62575. bottom: 5/897
  62576. }
  62577. },
  62578. back: {
  62579. height: math.unit(12, "feet"),
  62580. name: "Back",
  62581. image: {
  62582. source: "./media/characters/naomi-espeon/back.svg",
  62583. extra: 890/785,
  62584. bottom: 12/902
  62585. }
  62586. },
  62587. },
  62588. [
  62589. {
  62590. name: "Normal",
  62591. height: math.unit(12, "feet"),
  62592. default: true
  62593. },
  62594. ]
  62595. ))
  62596. characterMakers.push(() => makeCharacter(
  62597. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62598. {
  62599. anthro_front: {
  62600. height: math.unit(8, "feet"),
  62601. weight: math.unit(625, "lb"),
  62602. name: "Front",
  62603. image: {
  62604. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62605. extra: 638/574,
  62606. bottom: 73/711
  62607. },
  62608. form: "anthro",
  62609. default: true
  62610. },
  62611. anthro_back: {
  62612. height: math.unit(8, "feet"),
  62613. weight: math.unit(625, "lb"),
  62614. name: "Back",
  62615. image: {
  62616. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62617. extra: 674/614,
  62618. bottom: 7/681
  62619. },
  62620. form: "anthro",
  62621. },
  62622. taur_side: {
  62623. height: math.unit(16, "feet"),
  62624. weight: math.unit(4.5, "tons"),
  62625. name: "Side",
  62626. image: {
  62627. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62628. extra: 704/646,
  62629. bottom: 132/836
  62630. },
  62631. form: "taur",
  62632. default: true
  62633. },
  62634. },
  62635. [
  62636. {
  62637. name: "Normal",
  62638. height: math.unit(8, "feet"),
  62639. default: true,
  62640. form: "anthro"
  62641. },
  62642. {
  62643. name: "Normal",
  62644. height: math.unit(16, "feet"),
  62645. default: true,
  62646. form: "taur"
  62647. },
  62648. ],
  62649. {
  62650. "anthro": {
  62651. name: "Anthro",
  62652. default: true
  62653. },
  62654. "taur": {
  62655. name: "Taur",
  62656. },
  62657. }
  62658. ))
  62659. characterMakers.push(() => makeCharacter(
  62660. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62661. {
  62662. front: {
  62663. height: math.unit(190, "cm"),
  62664. weight: math.unit(110, "kg"),
  62665. name: "Front",
  62666. image: {
  62667. source: "./media/characters/amelie/front.svg",
  62668. extra: 530/442,
  62669. bottom: 35/565
  62670. }
  62671. },
  62672. },
  62673. [
  62674. {
  62675. name: "Normal",
  62676. height: math.unit(190, "cm"),
  62677. default: true
  62678. },
  62679. ]
  62680. ))
  62681. characterMakers.push(() => makeCharacter(
  62682. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62683. {
  62684. front: {
  62685. height: math.unit(21, "feet"),
  62686. weight: math.unit(30000, "lb"),
  62687. name: "Front",
  62688. image: {
  62689. source: "./media/characters/valence/front.svg",
  62690. extra: 1430/1306,
  62691. bottom: 51/1481
  62692. }
  62693. },
  62694. },
  62695. [
  62696. {
  62697. name: "Normal",
  62698. height: math.unit(21, "feet"),
  62699. default: true
  62700. },
  62701. ]
  62702. ))
  62703. characterMakers.push(() => makeCharacter(
  62704. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62705. {
  62706. front: {
  62707. height: math.unit(5 + 9/12, "feet"),
  62708. weight: math.unit(170, "lb"),
  62709. name: "Front",
  62710. image: {
  62711. source: "./media/characters/aurora-adkins/front.svg",
  62712. extra: 1141/1089,
  62713. bottom: 41/1182
  62714. }
  62715. },
  62716. },
  62717. [
  62718. {
  62719. name: "Tiny",
  62720. height: math.unit(7, "mm")
  62721. },
  62722. {
  62723. name: "Small",
  62724. height: math.unit(3.4, "inches")
  62725. },
  62726. {
  62727. name: "Normal",
  62728. height: math.unit(5 + 9/12, "feet"),
  62729. default: true
  62730. },
  62731. {
  62732. name: "Big",
  62733. height: math.unit(31, "feet")
  62734. },
  62735. {
  62736. name: "Giant",
  62737. height: math.unit(300, "feet")
  62738. },
  62739. ]
  62740. ))
  62741. characterMakers.push(() => makeCharacter(
  62742. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62743. {
  62744. front: {
  62745. height: math.unit(5 + 6/12, "feet"),
  62746. weight: math.unit(210, "lb"),
  62747. name: "Front",
  62748. image: {
  62749. source: "./media/characters/cyber/front.svg",
  62750. extra: 1968/1798,
  62751. bottom: 10/1978
  62752. },
  62753. extraAttributes: {
  62754. "shoeSize": {
  62755. name: "Shoe Size",
  62756. power: 1,
  62757. type: "length",
  62758. base: math.unit(30, "ShoeSizeMensUS")
  62759. },
  62760. }
  62761. },
  62762. },
  62763. [
  62764. {
  62765. name: "Normal",
  62766. height: math.unit(5 + 6/12, "feet"),
  62767. default: true
  62768. },
  62769. ]
  62770. ))
  62771. characterMakers.push(() => makeCharacter(
  62772. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62773. {
  62774. front: {
  62775. height: math.unit(6 + 6/12, "feet"),
  62776. weight: math.unit(140, "lb"),
  62777. name: "Front",
  62778. image: {
  62779. source: "./media/characters/sapphire-wairimea/front.svg",
  62780. extra: 475/458,
  62781. bottom: 14/489
  62782. }
  62783. },
  62784. },
  62785. [
  62786. {
  62787. name: "Normal",
  62788. height: math.unit(6 + 6/12, "feet")
  62789. },
  62790. {
  62791. name: "Macro",
  62792. height: math.unit(132, "feet"),
  62793. default: true
  62794. },
  62795. ]
  62796. ))
  62797. characterMakers.push(() => makeCharacter(
  62798. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62799. {
  62800. front: {
  62801. height: math.unit(1.6, "meters"),
  62802. weight: math.unit(100, "lb"),
  62803. name: "Front",
  62804. image: {
  62805. source: "./media/characters/cirkazi/front.svg",
  62806. extra: 489/477,
  62807. bottom: 0/489
  62808. }
  62809. },
  62810. },
  62811. [
  62812. {
  62813. name: "Normal",
  62814. height: math.unit(1.6, "meters")
  62815. },
  62816. {
  62817. name: "Macro",
  62818. height: math.unit(800, "feet"),
  62819. default: true
  62820. },
  62821. ]
  62822. ))
  62823. characterMakers.push(() => makeCharacter(
  62824. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62825. {
  62826. front: {
  62827. height: math.unit(5 + 10/12, "feet"),
  62828. weight: math.unit(145, "lb"),
  62829. name: "Front",
  62830. image: {
  62831. source: "./media/characters/corrin-cavelli/front.svg",
  62832. extra: 483/464,
  62833. bottom: 6/489
  62834. }
  62835. },
  62836. },
  62837. [
  62838. {
  62839. name: "Human",
  62840. height: math.unit(5 + 10/12, "feet")
  62841. },
  62842. {
  62843. name: "Giant",
  62844. height: math.unit(210, "feet"),
  62845. default: true
  62846. },
  62847. ]
  62848. ))
  62849. characterMakers.push(() => makeCharacter(
  62850. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62851. {
  62852. back: {
  62853. height: math.unit(5 + 6/12, "feet"),
  62854. weight: math.unit(115, "lb"),
  62855. name: "Back",
  62856. image: {
  62857. source: "./media/characters/lori-lopez/back.svg",
  62858. extra: 483/474,
  62859. bottom: 6/489
  62860. }
  62861. },
  62862. },
  62863. [
  62864. {
  62865. name: "Human",
  62866. height: math.unit(5 + 6/12, "feet")
  62867. },
  62868. {
  62869. name: "Macro",
  62870. height: math.unit(198, "feet"),
  62871. default: true
  62872. },
  62873. ]
  62874. ))
  62875. characterMakers.push(() => makeCharacter(
  62876. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62877. {
  62878. front: {
  62879. height: math.unit(6, "feet"),
  62880. weight: math.unit(220, "lb"),
  62881. name: "Front",
  62882. image: {
  62883. source: "./media/characters/sylvia-beauregard/front.svg",
  62884. extra: 483/479,
  62885. bottom: 6/489
  62886. }
  62887. },
  62888. },
  62889. [
  62890. {
  62891. name: "Macro",
  62892. height: math.unit(2071, "feet"),
  62893. default: true
  62894. },
  62895. ]
  62896. ))
  62897. characterMakers.push(() => makeCharacter(
  62898. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  62899. {
  62900. back: {
  62901. height: math.unit(5 + 6/12, "feet"),
  62902. weight: math.unit(160, "lb"),
  62903. name: "Back",
  62904. image: {
  62905. source: "./media/characters/akiko-takahashi/back.svg",
  62906. extra: 459/454,
  62907. bottom: 27/486
  62908. }
  62909. },
  62910. },
  62911. [
  62912. {
  62913. name: "Human",
  62914. height: math.unit(5 + 6/12, "feet")
  62915. },
  62916. {
  62917. name: "Macro",
  62918. height: math.unit(198, "feet"),
  62919. default: true
  62920. },
  62921. {
  62922. name: "Megamacro",
  62923. height: math.unit(7128, "feet")
  62924. },
  62925. ]
  62926. ))
  62927. characterMakers.push(() => makeCharacter(
  62928. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  62929. {
  62930. front: {
  62931. height: math.unit(6, "feet"),
  62932. weight: math.unit(140, "lb"),
  62933. name: "Front",
  62934. image: {
  62935. source: "./media/characters/velvet-garza/front.svg",
  62936. extra: 480/462,
  62937. bottom: 7/487
  62938. }
  62939. },
  62940. },
  62941. [
  62942. {
  62943. name: "Macro",
  62944. height: math.unit(37, "feet"),
  62945. default: true
  62946. },
  62947. ]
  62948. ))
  62949. characterMakers.push(() => makeCharacter(
  62950. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  62951. {
  62952. front: {
  62953. height: math.unit(7 + 6/12, "feet"),
  62954. weight: math.unit(400, "lb"),
  62955. name: "Front",
  62956. image: {
  62957. source: "./media/characters/gaia/front.svg",
  62958. extra: 474/463,
  62959. bottom: 13/487
  62960. }
  62961. },
  62962. },
  62963. [
  62964. {
  62965. name: "MiniMacro",
  62966. height: math.unit(7 + 6/12, "feet")
  62967. },
  62968. {
  62969. name: "GigaMacro",
  62970. height: math.unit(14500, "feet"),
  62971. default: true
  62972. },
  62973. ]
  62974. ))
  62975. characterMakers.push(() => makeCharacter(
  62976. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  62977. {
  62978. front: {
  62979. height: math.unit(6, "feet"),
  62980. weight: math.unit(150, "lb"),
  62981. name: "Front",
  62982. image: {
  62983. source: "./media/characters/tim/front.svg",
  62984. extra: 1878/1743,
  62985. bottom: 9/1887
  62986. }
  62987. },
  62988. frontDressed: {
  62989. height: math.unit(6, "feet"),
  62990. weight: math.unit(150, "lb"),
  62991. name: "Front (Dressed)",
  62992. image: {
  62993. source: "./media/characters/tim/front-dressed.svg",
  62994. extra: 1765/1485,
  62995. bottom: 48/1813
  62996. }
  62997. },
  62998. backDressed: {
  62999. height: math.unit(6, "feet"),
  63000. weight: math.unit(150, "lb"),
  63001. name: "Back (Dressed)",
  63002. image: {
  63003. source: "./media/characters/tim/back-dressed.svg",
  63004. extra: 1750/1465,
  63005. bottom: 25/1775
  63006. }
  63007. },
  63008. dick: {
  63009. height: math.unit(1.5, "feet"),
  63010. weight: math.unit(6, "lb"),
  63011. name: "Dick",
  63012. image: {
  63013. source: "./media/characters/tim/dick.svg"
  63014. }
  63015. },
  63016. hand: {
  63017. height: math.unit(0.522, "feet"),
  63018. name: "Hand",
  63019. image: {
  63020. source: "./media/characters/tim/hand.svg"
  63021. }
  63022. },
  63023. palm: {
  63024. height: math.unit(0.48, "feet"),
  63025. name: "Palm",
  63026. image: {
  63027. source: "./media/characters/tim/palm.svg"
  63028. }
  63029. },
  63030. paw: {
  63031. height: math.unit(0.9, "feet"),
  63032. name: "Paw",
  63033. image: {
  63034. source: "./media/characters/tim/paw.svg"
  63035. }
  63036. },
  63037. sole: {
  63038. height: math.unit(0.88, "feet"),
  63039. name: "Sole",
  63040. image: {
  63041. source: "./media/characters/tim/sole.svg"
  63042. }
  63043. },
  63044. },
  63045. [
  63046. {
  63047. name: "Macro",
  63048. height: math.unit(1000, "feet")
  63049. },
  63050. {
  63051. name: "Megamacro",
  63052. height: math.unit(10000, "feet"),
  63053. default: true
  63054. },
  63055. {
  63056. name: "Megamacro+",
  63057. height: math.unit(50000, "feet")
  63058. },
  63059. {
  63060. name: "Gigamacro",
  63061. height: math.unit(150000, "km")
  63062. },
  63063. ]
  63064. ))
  63065. characterMakers.push(() => makeCharacter(
  63066. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63067. {
  63068. front: {
  63069. height: math.unit(5 + 8/12, "feet"),
  63070. weight: math.unit(170, "lb"),
  63071. name: "Front",
  63072. image: {
  63073. source: "./media/characters/abel-delreoux/front.svg",
  63074. extra: 1615/1500,
  63075. bottom: 82/1697
  63076. }
  63077. },
  63078. back: {
  63079. height: math.unit(5 + 8/12, "feet"),
  63080. weight: math.unit(170, "lb"),
  63081. name: "Back",
  63082. image: {
  63083. source: "./media/characters/abel-delreoux/back.svg",
  63084. extra: 1644/1534,
  63085. bottom: 24/1668
  63086. }
  63087. },
  63088. casual: {
  63089. height: math.unit(5 + 8/12, "feet"),
  63090. weight: math.unit(170, "lb"),
  63091. name: "Casual",
  63092. image: {
  63093. source: "./media/characters/abel-delreoux/casual.svg",
  63094. extra: 1716/1598,
  63095. bottom: 29/1745
  63096. }
  63097. },
  63098. sleepy: {
  63099. height: math.unit(5 + 8/12, "feet"),
  63100. weight: math.unit(170, "lb"),
  63101. name: "Sleepy",
  63102. image: {
  63103. source: "./media/characters/abel-delreoux/sleepy.svg",
  63104. extra: 1649/1573,
  63105. bottom: 22/1671
  63106. }
  63107. },
  63108. fem: {
  63109. height: math.unit(5 + 8/12, "feet"),
  63110. weight: math.unit(170, "lb"),
  63111. name: "Fem",
  63112. image: {
  63113. source: "./media/characters/abel-delreoux/fem.svg",
  63114. extra: 1680/1564,
  63115. bottom: 17/1697
  63116. }
  63117. },
  63118. hand: {
  63119. height: math.unit(0.78, "feet"),
  63120. name: "Hand",
  63121. image: {
  63122. source: "./media/characters/abel-delreoux/hand.svg"
  63123. }
  63124. },
  63125. paw: {
  63126. height: math.unit(0.78, "feet"),
  63127. name: "Paw",
  63128. image: {
  63129. source: "./media/characters/abel-delreoux/paw.svg"
  63130. }
  63131. },
  63132. },
  63133. [
  63134. {
  63135. name: "Normal",
  63136. height: math.unit(5 + 8/12, "feet"),
  63137. default: true
  63138. },
  63139. ]
  63140. ))
  63141. characterMakers.push(() => makeCharacter(
  63142. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63143. {
  63144. front: {
  63145. height: math.unit(6, "feet"),
  63146. weight: math.unit(159, "lb"),
  63147. name: "Front",
  63148. image: {
  63149. source: "./media/characters/meus/front.svg",
  63150. extra: 938/843,
  63151. bottom: 37/975
  63152. }
  63153. },
  63154. back: {
  63155. height: math.unit(6, "feet"),
  63156. weight: math.unit(159, "lb"),
  63157. name: "Back",
  63158. image: {
  63159. source: "./media/characters/meus/back.svg",
  63160. extra: 967/873,
  63161. bottom: 12/979
  63162. }
  63163. },
  63164. },
  63165. [
  63166. {
  63167. name: "Micro",
  63168. height: math.unit(2, "inches")
  63169. },
  63170. {
  63171. name: "Mini",
  63172. height: math.unit(6, "inches")
  63173. },
  63174. {
  63175. name: "Normal",
  63176. height: math.unit(6, "feet"),
  63177. default: true
  63178. },
  63179. {
  63180. name: "Macro",
  63181. height: math.unit(84, "feet")
  63182. },
  63183. ]
  63184. ))
  63185. characterMakers.push(() => makeCharacter(
  63186. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63187. {
  63188. front: {
  63189. height: math.unit(60, "cm"),
  63190. weight: math.unit(18, "kg"),
  63191. name: "Front",
  63192. image: {
  63193. source: "./media/characters/yamato/front.svg",
  63194. extra: 733/688,
  63195. bottom: 29/762
  63196. }
  63197. },
  63198. },
  63199. [
  63200. {
  63201. name: "Micro",
  63202. height: math.unit(6, "cm")
  63203. },
  63204. {
  63205. name: "Normal",
  63206. height: math.unit(60, "cm"),
  63207. default: true
  63208. },
  63209. ]
  63210. ))
  63211. characterMakers.push(() => makeCharacter(
  63212. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63213. {
  63214. front: {
  63215. height: math.unit(9, "feet"),
  63216. weight: math.unit(518, "lb"),
  63217. name: "Front",
  63218. image: {
  63219. source: "./media/characters/barus/front.svg",
  63220. extra: 1877/1795,
  63221. bottom: 55/1932
  63222. }
  63223. },
  63224. },
  63225. [
  63226. {
  63227. name: "Base Height",
  63228. height: math.unit(9, "feet"),
  63229. default: true
  63230. },
  63231. {
  63232. name: "Large",
  63233. height: math.unit(18, "feet")
  63234. },
  63235. {
  63236. name: "Giant",
  63237. height: math.unit(100, "feet")
  63238. },
  63239. {
  63240. name: "Huge",
  63241. height: math.unit(500, "feet")
  63242. },
  63243. {
  63244. name: "Enormous",
  63245. height: math.unit(300, "meters")
  63246. },
  63247. {
  63248. name: "Deity Among Man",
  63249. height: math.unit(3000, "meters")
  63250. },
  63251. ]
  63252. ))
  63253. characterMakers.push(() => makeCharacter(
  63254. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63255. {
  63256. front: {
  63257. height: math.unit(1.7, "meters"),
  63258. name: "Front",
  63259. image: {
  63260. source: "./media/characters/yari/front.svg",
  63261. extra: 1210/1125,
  63262. bottom: 283/1493
  63263. }
  63264. },
  63265. back: {
  63266. height: math.unit(1.7, "meters"),
  63267. name: "Back",
  63268. image: {
  63269. source: "./media/characters/yari/back.svg",
  63270. extra: 1240/1195,
  63271. bottom: 180/1420
  63272. }
  63273. },
  63274. head: {
  63275. height: math.unit(1.26, "feet"),
  63276. name: "Head",
  63277. image: {
  63278. source: "./media/characters/yari/head.svg"
  63279. }
  63280. },
  63281. },
  63282. [
  63283. {
  63284. name: "Nano",
  63285. height: math.unit(0.5, "mm")
  63286. },
  63287. {
  63288. name: "Micro",
  63289. height: math.unit(3, "inches")
  63290. },
  63291. {
  63292. name: "Short",
  63293. height: math.unit(1.5, "meters")
  63294. },
  63295. {
  63296. name: "Norm",
  63297. height: math.unit(1.7, "meters"),
  63298. default: true
  63299. },
  63300. ]
  63301. ))
  63302. characterMakers.push(() => makeCharacter(
  63303. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63304. {
  63305. front: {
  63306. height: math.unit(5 + 2/12, "feet"),
  63307. weight: math.unit(110, "lb"),
  63308. name: "Front",
  63309. image: {
  63310. source: "./media/characters/salem/front.svg",
  63311. extra: 1895/1800,
  63312. bottom: 23/1918
  63313. }
  63314. },
  63315. back: {
  63316. height: math.unit(5 + 2/12, "feet"),
  63317. weight: math.unit(110, "lb"),
  63318. name: "Back",
  63319. image: {
  63320. source: "./media/characters/salem/back.svg",
  63321. extra: 1875/1802,
  63322. bottom: 20/1895
  63323. }
  63324. },
  63325. head: {
  63326. height: math.unit(1, "feet"),
  63327. name: "Head",
  63328. image: {
  63329. source: "./media/characters/salem/head.svg"
  63330. }
  63331. },
  63332. paw: {
  63333. height: math.unit(0.59, "feet"),
  63334. name: "Paw",
  63335. image: {
  63336. source: "./media/characters/salem/paw.svg"
  63337. }
  63338. },
  63339. beans: {
  63340. height: math.unit(0.66, "feet"),
  63341. name: "Beans",
  63342. image: {
  63343. source: "./media/characters/salem/beans.svg"
  63344. }
  63345. },
  63346. eye: {
  63347. height: math.unit(0.224, "feet"),
  63348. name: "Eye",
  63349. image: {
  63350. source: "./media/characters/salem/eye.svg"
  63351. }
  63352. },
  63353. semiferal: {
  63354. height: math.unit(2.3, "feet"),
  63355. name: "Semiferal",
  63356. image: {
  63357. source: "./media/characters/salem/semiferal.svg",
  63358. extra: 914/839,
  63359. bottom: 32/946
  63360. }
  63361. },
  63362. },
  63363. [
  63364. {
  63365. name: "Micro",
  63366. height: math.unit(4, "inches")
  63367. },
  63368. {
  63369. name: "Normal",
  63370. height: math.unit(5 + 2/12, "feet"),
  63371. default: true
  63372. },
  63373. {
  63374. name: "Macro",
  63375. height: math.unit(108, "feet")
  63376. },
  63377. {
  63378. name: "Macro+",
  63379. height: math.unit(1500, "feet")
  63380. },
  63381. ]
  63382. ))
  63383. characterMakers.push(() => makeCharacter(
  63384. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63385. {
  63386. front: {
  63387. height: math.unit(7 + 6/12, "feet"),
  63388. weight: math.unit(600, "kg"),
  63389. preyCapacity: math.unit(10, "people"),
  63390. name: "Front",
  63391. image: {
  63392. source: "./media/characters/kii/front.svg",
  63393. extra: 3296/3087,
  63394. bottom: 130/3426
  63395. }
  63396. },
  63397. },
  63398. [
  63399. {
  63400. name: "Normal",
  63401. height: math.unit(7 + 6/12, "feet"),
  63402. default: true
  63403. },
  63404. ]
  63405. ))
  63406. characterMakers.push(() => makeCharacter(
  63407. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63408. {
  63409. front: {
  63410. height: math.unit(2, "meters"),
  63411. weight: math.unit(200, "lb"),
  63412. name: "Front",
  63413. image: {
  63414. source: "./media/characters/taffy/front.svg",
  63415. extra: 1666/1618,
  63416. bottom: 157/1823
  63417. }
  63418. },
  63419. back: {
  63420. height: math.unit(2, "meters"),
  63421. weight: math.unit(200, "lb"),
  63422. name: "Back",
  63423. image: {
  63424. source: "./media/characters/taffy/back.svg",
  63425. extra: 1635/1583,
  63426. bottom: 153/1788
  63427. }
  63428. },
  63429. },
  63430. [
  63431. {
  63432. name: "Normal",
  63433. height: math.unit(2, "meters"),
  63434. default: true
  63435. },
  63436. ]
  63437. ))
  63438. //characters
  63439. function makeCharacters() {
  63440. const results = [];
  63441. characterMakers.forEach(character => {
  63442. results.push(character());
  63443. });
  63444. return results;
  63445. }