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.
 
 
 

62368 líneas
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. }
  2295. //species
  2296. function getSpeciesInfo(speciesList) {
  2297. let result = new Set();
  2298. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2299. result.add(entry)
  2300. });
  2301. return Array.from(result);
  2302. };
  2303. function getSpeciesInfoHelper(species) {
  2304. if (!speciesData[species]) {
  2305. console.warn(species + " doesn't exist");
  2306. return [];
  2307. }
  2308. if (speciesData[species].parents) {
  2309. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2310. } else {
  2311. return [species];
  2312. }
  2313. }
  2314. characterMakers.push(() => makeCharacter(
  2315. {
  2316. name: "Fen",
  2317. species: ["crux"],
  2318. description: {
  2319. title: "Bio",
  2320. text: "Very furry. Sheds on everything."
  2321. },
  2322. tags: [
  2323. "anthro",
  2324. "goo"
  2325. ]
  2326. },
  2327. {
  2328. front: {
  2329. height: math.unit(12, "feet"),
  2330. weight: math.unit(2400, "lb"),
  2331. preyCapacity: math.unit(1, "people"),
  2332. name: "Front",
  2333. image: {
  2334. source: "./media/characters/fen/front.svg",
  2335. extra: 1804/1562,
  2336. bottom: 205/2009
  2337. },
  2338. extraAttributes: {
  2339. pawSize: {
  2340. name: "Paw Size",
  2341. power: 2,
  2342. type: "area",
  2343. base: math.unit(0.35, "m^2")
  2344. }
  2345. }
  2346. },
  2347. diving: {
  2348. height: math.unit(4.9, "meters"),
  2349. weight: math.unit(2400, "lb"),
  2350. name: "Diving",
  2351. image: {
  2352. source: "./media/characters/fen/diving.svg"
  2353. }
  2354. },
  2355. sleeby: {
  2356. height: math.unit(3.45, "meters"),
  2357. weight: math.unit(2400, "lb"),
  2358. name: "Sleeby",
  2359. image: {
  2360. source: "./media/characters/fen/sleeby.svg"
  2361. }
  2362. },
  2363. goo: {
  2364. height: math.unit(12, "feet"),
  2365. weight: math.unit(3600, "lb"),
  2366. volume: math.unit(1000, "liters"),
  2367. preyCapacity: math.unit(6, "people"),
  2368. name: "Goo",
  2369. image: {
  2370. source: "./media/characters/fen/goo.svg",
  2371. extra: 1307/1071,
  2372. bottom: 134/1441
  2373. }
  2374. },
  2375. horror: {
  2376. height: math.unit(13.6, "feet"),
  2377. weight: math.unit(2400, "lb"),
  2378. preyCapacity: math.unit(1, "people"),
  2379. name: "Horror",
  2380. image: {
  2381. source: "./media/characters/fen/horror.svg",
  2382. extra: 893/797,
  2383. bottom: 0/893
  2384. }
  2385. },
  2386. gooNsfw: {
  2387. height: math.unit(12, "feet"),
  2388. weight: math.unit(3750, "lb"),
  2389. volume: math.unit(1000, "liters"),
  2390. preyCapacity: math.unit(6, "people"),
  2391. name: "Goo (NSFW)",
  2392. image: {
  2393. source: "./media/characters/fen/goo-nsfw.svg",
  2394. extra: 1875/1734,
  2395. bottom: 122/1997
  2396. }
  2397. },
  2398. maw: {
  2399. height: math.unit(5.03, "feet"),
  2400. name: "Maw",
  2401. image: {
  2402. source: "./media/characters/fen/maw.svg"
  2403. }
  2404. },
  2405. gooCeiling: {
  2406. height: math.unit(6.6, "feet"),
  2407. weight: math.unit(3000, "lb"),
  2408. volume: math.unit(1000, "liters"),
  2409. preyCapacity: math.unit(6, "people"),
  2410. name: "Maw (Goo)",
  2411. image: {
  2412. source: "./media/characters/fen/goo-maw.svg"
  2413. }
  2414. },
  2415. paw: {
  2416. height: math.unit(3.77, "feet"),
  2417. name: "Paw",
  2418. image: {
  2419. source: "./media/characters/fen/paw.svg"
  2420. },
  2421. extraAttributes: {
  2422. "toeSize": {
  2423. name: "Toe Size",
  2424. power: 2,
  2425. type: "area",
  2426. base: math.unit(0.02875, "m^2")
  2427. },
  2428. "pawSize": {
  2429. name: "Paw Size",
  2430. power: 2,
  2431. type: "area",
  2432. base: math.unit(0.378, "m^2")
  2433. },
  2434. }
  2435. },
  2436. tail: {
  2437. height: math.unit(12.1, "feet"),
  2438. name: "Tail",
  2439. image: {
  2440. source: "./media/characters/fen/tail.svg"
  2441. }
  2442. },
  2443. tailFull: {
  2444. height: math.unit(12.1, "feet"),
  2445. name: "Full Tail",
  2446. image: {
  2447. source: "./media/characters/fen/tail-full.svg"
  2448. }
  2449. },
  2450. back: {
  2451. height: math.unit(12, "feet"),
  2452. weight: math.unit(2400, "lb"),
  2453. name: "Back",
  2454. image: {
  2455. source: "./media/characters/fen/back.svg",
  2456. },
  2457. info: {
  2458. description: {
  2459. mode: "append",
  2460. text: "\n\nHe is not currently looking at you."
  2461. }
  2462. }
  2463. },
  2464. full: {
  2465. height: math.unit(1.85, "meter"),
  2466. weight: math.unit(3200, "lb"),
  2467. preyCapacity: math.unit(3, "people"),
  2468. name: "Full",
  2469. image: {
  2470. source: "./media/characters/fen/full.svg",
  2471. extra: 1133/859,
  2472. bottom: 145/1278
  2473. },
  2474. info: {
  2475. description: {
  2476. mode: "append",
  2477. text: "\n\nMunch."
  2478. }
  2479. }
  2480. },
  2481. gooLounging: {
  2482. height: math.unit(4.53, "feet"),
  2483. weight: math.unit(3000, "lb"),
  2484. preyCapacity: math.unit(6, "people"),
  2485. name: "Goo (Lounging)",
  2486. image: {
  2487. source: "./media/characters/fen/goo-lounging.svg",
  2488. bottom: 116 / 613
  2489. }
  2490. },
  2491. lounging: {
  2492. height: math.unit(10.52, "feet"),
  2493. weight: math.unit(2400, "lb"),
  2494. name: "Lounging",
  2495. image: {
  2496. source: "./media/characters/fen/lounging.svg"
  2497. }
  2498. },
  2499. },
  2500. [
  2501. {
  2502. name: "Small",
  2503. height: math.unit(2.2428, "meter")
  2504. },
  2505. {
  2506. name: "Normal",
  2507. height: math.unit(12, "feet"),
  2508. default: true,
  2509. },
  2510. {
  2511. name: "Big",
  2512. height: math.unit(20, "feet")
  2513. },
  2514. {
  2515. name: "Minimacro",
  2516. height: math.unit(40, "feet"),
  2517. info: {
  2518. description: {
  2519. mode: "append",
  2520. text: "\n\nTOO DAMN BIG"
  2521. }
  2522. }
  2523. },
  2524. {
  2525. name: "Macro",
  2526. height: math.unit(100, "feet"),
  2527. info: {
  2528. description: {
  2529. mode: "append",
  2530. text: "\n\nTOO DAMN BIG"
  2531. }
  2532. }
  2533. },
  2534. {
  2535. name: "Megamacro",
  2536. height: math.unit(2, "miles")
  2537. },
  2538. {
  2539. name: "Gigamacro",
  2540. height: math.unit(10, "earths")
  2541. },
  2542. ]
  2543. ))
  2544. characterMakers.push(() => makeCharacter(
  2545. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2546. {
  2547. front: {
  2548. height: math.unit(183, "cm"),
  2549. weight: math.unit(80, "kg"),
  2550. name: "Front",
  2551. image: {
  2552. source: "./media/characters/sofia-fluttertail/front.svg",
  2553. bottom: 0.01,
  2554. extra: 2154 / 2081
  2555. }
  2556. },
  2557. frontAlt: {
  2558. height: math.unit(183, "cm"),
  2559. weight: math.unit(80, "kg"),
  2560. name: "Front (alt)",
  2561. image: {
  2562. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2563. }
  2564. },
  2565. back: {
  2566. height: math.unit(183, "cm"),
  2567. weight: math.unit(80, "kg"),
  2568. name: "Back",
  2569. image: {
  2570. source: "./media/characters/sofia-fluttertail/back.svg"
  2571. }
  2572. },
  2573. kneeling: {
  2574. height: math.unit(125, "cm"),
  2575. weight: math.unit(80, "kg"),
  2576. name: "Kneeling",
  2577. image: {
  2578. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2579. extra: 1033 / 977,
  2580. bottom: 23.7 / 1057
  2581. }
  2582. },
  2583. maw: {
  2584. height: math.unit(183 / 5, "cm"),
  2585. name: "Maw",
  2586. image: {
  2587. source: "./media/characters/sofia-fluttertail/maw.svg"
  2588. }
  2589. },
  2590. mawcloseup: {
  2591. height: math.unit(183 / 5 * 0.41, "cm"),
  2592. name: "Maw (Closeup)",
  2593. image: {
  2594. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2595. }
  2596. },
  2597. paws: {
  2598. height: math.unit(1.17, "feet"),
  2599. name: "Paws",
  2600. image: {
  2601. source: "./media/characters/sofia-fluttertail/paws.svg",
  2602. extra: 851 / 851,
  2603. bottom: 17 / 868
  2604. }
  2605. },
  2606. },
  2607. [
  2608. {
  2609. name: "Normal",
  2610. height: math.unit(1.83, "meter")
  2611. },
  2612. {
  2613. name: "Size Thief",
  2614. height: math.unit(18, "feet")
  2615. },
  2616. {
  2617. name: "50 Foot Collie",
  2618. height: math.unit(50, "feet")
  2619. },
  2620. {
  2621. name: "Macro",
  2622. height: math.unit(96, "feet"),
  2623. default: true
  2624. },
  2625. {
  2626. name: "Megamerger",
  2627. height: math.unit(650, "feet")
  2628. },
  2629. ]
  2630. ))
  2631. characterMakers.push(() => makeCharacter(
  2632. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2633. {
  2634. front: {
  2635. height: math.unit(7, "feet"),
  2636. weight: math.unit(100, "kg"),
  2637. name: "Front",
  2638. image: {
  2639. source: "./media/characters/march/front.svg",
  2640. extra: 1992/1851,
  2641. bottom: 39/2031
  2642. }
  2643. },
  2644. foot: {
  2645. height: math.unit(0.9, "feet"),
  2646. name: "Foot",
  2647. image: {
  2648. source: "./media/characters/march/foot.svg"
  2649. }
  2650. },
  2651. },
  2652. [
  2653. {
  2654. name: "Normal",
  2655. height: math.unit(7.9, "feet")
  2656. },
  2657. {
  2658. name: "Macro",
  2659. height: math.unit(220, "meters")
  2660. },
  2661. {
  2662. name: "Megamacro",
  2663. height: math.unit(2.98, "km"),
  2664. default: true
  2665. },
  2666. {
  2667. name: "Gigamacro",
  2668. height: math.unit(15963, "km")
  2669. },
  2670. {
  2671. name: "Teramacro",
  2672. height: math.unit(2980000000, "km")
  2673. },
  2674. {
  2675. name: "Examacro",
  2676. height: math.unit(250, "parsecs")
  2677. },
  2678. ]
  2679. ))
  2680. characterMakers.push(() => makeCharacter(
  2681. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2682. {
  2683. front: {
  2684. height: math.unit(6, "feet"),
  2685. weight: math.unit(60, "kg"),
  2686. name: "Front",
  2687. image: {
  2688. source: "./media/characters/noir/front.svg",
  2689. extra: 1,
  2690. bottom: 0.032
  2691. }
  2692. },
  2693. },
  2694. [
  2695. {
  2696. name: "Normal",
  2697. height: math.unit(6.6, "feet")
  2698. },
  2699. {
  2700. name: "Macro",
  2701. height: math.unit(500, "feet")
  2702. },
  2703. {
  2704. name: "Megamacro",
  2705. height: math.unit(2.5, "km"),
  2706. default: true
  2707. },
  2708. {
  2709. name: "Gigamacro",
  2710. height: math.unit(22500, "km")
  2711. },
  2712. {
  2713. name: "Teramacro",
  2714. height: math.unit(2500000000, "km")
  2715. },
  2716. {
  2717. name: "Examacro",
  2718. height: math.unit(200, "parsecs")
  2719. },
  2720. ]
  2721. ))
  2722. characterMakers.push(() => makeCharacter(
  2723. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2724. {
  2725. front: {
  2726. height: math.unit(7, "feet"),
  2727. weight: math.unit(100, "kg"),
  2728. name: "Front",
  2729. image: {
  2730. source: "./media/characters/okuri/front.svg",
  2731. extra: 739/665,
  2732. bottom: 39/778
  2733. }
  2734. },
  2735. back: {
  2736. height: math.unit(7, "feet"),
  2737. weight: math.unit(100, "kg"),
  2738. name: "Back",
  2739. image: {
  2740. source: "./media/characters/okuri/back.svg",
  2741. extra: 734/653,
  2742. bottom: 13/747
  2743. }
  2744. },
  2745. sitting: {
  2746. height: math.unit(2.95, "feet"),
  2747. weight: math.unit(100, "kg"),
  2748. name: "Sitting",
  2749. image: {
  2750. source: "./media/characters/okuri/sitting.svg",
  2751. extra: 370/318,
  2752. bottom: 99/469
  2753. }
  2754. },
  2755. },
  2756. [
  2757. {
  2758. name: "Smallest",
  2759. height: math.unit(5 + 2/12, "feet")
  2760. },
  2761. {
  2762. name: "Smaller",
  2763. height: math.unit(300, "feet")
  2764. },
  2765. {
  2766. name: "Small",
  2767. height: math.unit(1000, "feet")
  2768. },
  2769. {
  2770. name: "Macro",
  2771. height: math.unit(1, "mile")
  2772. },
  2773. {
  2774. name: "Mega Macro (Small)",
  2775. height: math.unit(20, "km")
  2776. },
  2777. {
  2778. name: "Mega Macro (Large)",
  2779. height: math.unit(600, "km")
  2780. },
  2781. {
  2782. name: "Giga Macro",
  2783. height: math.unit(10000, "km")
  2784. },
  2785. {
  2786. name: "Normal",
  2787. height: math.unit(577560, "km"),
  2788. default: true
  2789. },
  2790. {
  2791. name: "Large",
  2792. height: math.unit(4, "galaxies")
  2793. },
  2794. {
  2795. name: "Largest",
  2796. height: math.unit(15, "multiverses")
  2797. },
  2798. ]
  2799. ))
  2800. characterMakers.push(() => makeCharacter(
  2801. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2802. {
  2803. front: {
  2804. height: math.unit(7, "feet"),
  2805. weight: math.unit(100, "kg"),
  2806. name: "Front",
  2807. image: {
  2808. source: "./media/characters/manny/front.svg",
  2809. extra: 1,
  2810. bottom: 0.06
  2811. }
  2812. },
  2813. back: {
  2814. height: math.unit(7, "feet"),
  2815. weight: math.unit(100, "kg"),
  2816. name: "Back",
  2817. image: {
  2818. source: "./media/characters/manny/back.svg",
  2819. extra: 1,
  2820. bottom: 0.014
  2821. }
  2822. },
  2823. },
  2824. [
  2825. {
  2826. name: "Normal",
  2827. height: math.unit(7, "feet"),
  2828. },
  2829. {
  2830. name: "Macro",
  2831. height: math.unit(78, "feet"),
  2832. default: true
  2833. },
  2834. {
  2835. name: "Macro+",
  2836. height: math.unit(300, "meters")
  2837. },
  2838. {
  2839. name: "Macro++",
  2840. height: math.unit(2400, "meters")
  2841. },
  2842. {
  2843. name: "Megamacro",
  2844. height: math.unit(5167, "meters")
  2845. },
  2846. {
  2847. name: "Gigamacro",
  2848. height: math.unit(41769, "miles")
  2849. },
  2850. ]
  2851. ))
  2852. characterMakers.push(() => makeCharacter(
  2853. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2854. {
  2855. front: {
  2856. height: math.unit(7, "feet"),
  2857. weight: math.unit(100, "kg"),
  2858. name: "Front",
  2859. image: {
  2860. source: "./media/characters/adake/front-1.svg"
  2861. }
  2862. },
  2863. frontAlt: {
  2864. height: math.unit(7, "feet"),
  2865. weight: math.unit(100, "kg"),
  2866. name: "Front (Alt)",
  2867. image: {
  2868. source: "./media/characters/adake/front-2.svg",
  2869. extra: 1,
  2870. bottom: 0.01
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(7, "feet"),
  2875. weight: math.unit(100, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/adake/back.svg",
  2879. }
  2880. },
  2881. kneel: {
  2882. height: math.unit(5.385, "feet"),
  2883. weight: math.unit(100, "kg"),
  2884. name: "Kneeling",
  2885. image: {
  2886. source: "./media/characters/adake/kneel.svg",
  2887. bottom: 0.052
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Normal",
  2894. height: math.unit(7, "feet"),
  2895. },
  2896. {
  2897. name: "Macro",
  2898. height: math.unit(78, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Macro+",
  2903. height: math.unit(300, "meters")
  2904. },
  2905. {
  2906. name: "Macro++",
  2907. height: math.unit(2400, "meters")
  2908. },
  2909. {
  2910. name: "Megamacro",
  2911. height: math.unit(5167, "meters")
  2912. },
  2913. {
  2914. name: "Gigamacro",
  2915. height: math.unit(41769, "miles")
  2916. },
  2917. ]
  2918. ))
  2919. characterMakers.push(() => makeCharacter(
  2920. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2921. {
  2922. front: {
  2923. height: math.unit(1.65, "meters"),
  2924. weight: math.unit(50, "kg"),
  2925. name: "Front",
  2926. image: {
  2927. source: "./media/characters/elijah/front.svg",
  2928. extra: 858 / 830,
  2929. bottom: 95.5 / 953.8559
  2930. }
  2931. },
  2932. back: {
  2933. height: math.unit(1.65, "meters"),
  2934. weight: math.unit(50, "kg"),
  2935. name: "Back",
  2936. image: {
  2937. source: "./media/characters/elijah/back.svg",
  2938. extra: 895 / 850,
  2939. bottom: 5.3 / 897.956
  2940. }
  2941. },
  2942. frontNsfw: {
  2943. height: math.unit(1.65, "meters"),
  2944. weight: math.unit(50, "kg"),
  2945. name: "Front (NSFW)",
  2946. image: {
  2947. source: "./media/characters/elijah/front-nsfw.svg",
  2948. extra: 858 / 830,
  2949. bottom: 95.5 / 953.8559
  2950. }
  2951. },
  2952. backNsfw: {
  2953. height: math.unit(1.65, "meters"),
  2954. weight: math.unit(50, "kg"),
  2955. name: "Back (NSFW)",
  2956. image: {
  2957. source: "./media/characters/elijah/back-nsfw.svg",
  2958. extra: 895 / 850,
  2959. bottom: 5.3 / 897.956
  2960. }
  2961. },
  2962. dick: {
  2963. height: math.unit(1, "feet"),
  2964. name: "Dick",
  2965. image: {
  2966. source: "./media/characters/elijah/dick.svg"
  2967. }
  2968. },
  2969. beakOpen: {
  2970. height: math.unit(1.25, "feet"),
  2971. name: "Beak (Open)",
  2972. image: {
  2973. source: "./media/characters/elijah/beak-open.svg"
  2974. }
  2975. },
  2976. beakShut: {
  2977. height: math.unit(1.25, "feet"),
  2978. name: "Beak (Shut)",
  2979. image: {
  2980. source: "./media/characters/elijah/beak-shut.svg"
  2981. }
  2982. },
  2983. footFlexing: {
  2984. height: math.unit(1.61, "feet"),
  2985. name: "Foot (Flexing)",
  2986. image: {
  2987. source: "./media/characters/elijah/foot-flexing.svg"
  2988. }
  2989. },
  2990. footStepping: {
  2991. height: math.unit(1.44, "feet"),
  2992. name: "Foot (Stepping)",
  2993. image: {
  2994. source: "./media/characters/elijah/foot-stepping.svg"
  2995. }
  2996. },
  2997. plantigradeLeg: {
  2998. height: math.unit(2.34, "feet"),
  2999. name: "Plantigrade Leg",
  3000. image: {
  3001. source: "./media/characters/elijah/plantigrade-leg.svg"
  3002. }
  3003. },
  3004. plantigradeFootLeft: {
  3005. height: math.unit(0.9, "feet"),
  3006. name: "Plantigrade Foot (Left)",
  3007. image: {
  3008. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3009. }
  3010. },
  3011. plantigradeFootRight: {
  3012. height: math.unit(0.9, "feet"),
  3013. name: "Plantigrade Foot (Right)",
  3014. image: {
  3015. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3016. }
  3017. },
  3018. },
  3019. [
  3020. {
  3021. name: "Normal",
  3022. height: math.unit(1.65, "meters")
  3023. },
  3024. {
  3025. name: "Macro",
  3026. height: math.unit(55, "meters"),
  3027. default: true
  3028. },
  3029. {
  3030. name: "Macro+",
  3031. height: math.unit(105, "meters")
  3032. },
  3033. ]
  3034. ))
  3035. characterMakers.push(() => makeCharacter(
  3036. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3037. {
  3038. front: {
  3039. height: math.unit(7 + 2/12, "feet"),
  3040. weight: math.unit(320, "kg"),
  3041. preyCapacity: math.unit(0.276549935, "people"),
  3042. name: "Front",
  3043. image: {
  3044. source: "./media/characters/rai/front.svg",
  3045. extra: 1802/1696,
  3046. bottom: 68/1870
  3047. },
  3048. form: "anthro",
  3049. default: true
  3050. },
  3051. frontDressed: {
  3052. height: math.unit(7 + 2/12, "feet"),
  3053. weight: math.unit(320, "kg"),
  3054. preyCapacity: math.unit(0.276549935, "people"),
  3055. name: "Front (Dressed)",
  3056. image: {
  3057. source: "./media/characters/rai/front-dressed.svg",
  3058. extra: 1802/1696,
  3059. bottom: 68/1870
  3060. },
  3061. form: "anthro"
  3062. },
  3063. side: {
  3064. height: math.unit(7 + 2/12, "feet"),
  3065. weight: math.unit(320, "kg"),
  3066. preyCapacity: math.unit(0.276549935, "people"),
  3067. name: "Side",
  3068. image: {
  3069. source: "./media/characters/rai/side.svg",
  3070. extra: 1789/1710,
  3071. bottom: 115/1904
  3072. },
  3073. form: "anthro"
  3074. },
  3075. back: {
  3076. height: math.unit(7 + 2/12, "feet"),
  3077. weight: math.unit(320, "kg"),
  3078. preyCapacity: math.unit(0.276549935, "people"),
  3079. name: "Back",
  3080. image: {
  3081. source: "./media/characters/rai/back.svg",
  3082. extra: 1770/1707,
  3083. bottom: 28/1798
  3084. },
  3085. form: "anthro"
  3086. },
  3087. feral: {
  3088. height: math.unit(9.5, "feet"),
  3089. weight: math.unit(640, "kg"),
  3090. preyCapacity: math.unit(4, "people"),
  3091. name: "Feral",
  3092. image: {
  3093. source: "./media/characters/rai/feral.svg",
  3094. extra: 945/553,
  3095. bottom: 176/1121
  3096. },
  3097. form: "feral",
  3098. default: true
  3099. },
  3100. dragon: {
  3101. height: math.unit(23, "feet"),
  3102. weight: math.unit(50000, "lb"),
  3103. name: "Dragon",
  3104. image: {
  3105. source: "./media/characters/rai/dragon.svg",
  3106. extra: 2498 / 2030,
  3107. bottom: 85.2 / 2584
  3108. },
  3109. form: "dragon",
  3110. default: true
  3111. },
  3112. maw: {
  3113. height: math.unit(1.69, "feet"),
  3114. name: "Maw",
  3115. image: {
  3116. source: "./media/characters/rai/maw.svg"
  3117. },
  3118. form: "anthro"
  3119. },
  3120. },
  3121. [
  3122. {
  3123. name: "Normal",
  3124. height: math.unit(7 + 2/12, "feet"),
  3125. form: "anthro"
  3126. },
  3127. {
  3128. name: "Big",
  3129. height: math.unit(11, "feet"),
  3130. form: "anthro"
  3131. },
  3132. {
  3133. name: "Minimacro",
  3134. height: math.unit(77, "feet"),
  3135. form: "anthro"
  3136. },
  3137. {
  3138. name: "Macro",
  3139. height: math.unit(302, "feet"),
  3140. default: true,
  3141. form: "anthro"
  3142. },
  3143. {
  3144. name: "Normal",
  3145. height: math.unit(9.5, "feet"),
  3146. form: "feral",
  3147. default: true
  3148. },
  3149. {
  3150. name: "Normal",
  3151. height: math.unit(23, "feet"),
  3152. form: "dragon",
  3153. default: true
  3154. }
  3155. ],
  3156. {
  3157. "anthro": {
  3158. name: "Anthro",
  3159. default: true
  3160. },
  3161. "feral": {
  3162. name: "Feral",
  3163. },
  3164. "dragon": {
  3165. name: "Dragon",
  3166. },
  3167. }
  3168. ))
  3169. characterMakers.push(() => makeCharacter(
  3170. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3171. {
  3172. frontDressed: {
  3173. height: math.unit(216, "feet"),
  3174. weight: math.unit(7000000, "lb"),
  3175. preyCapacity: math.unit(1321, "people"),
  3176. name: "Front (Dressed)",
  3177. image: {
  3178. source: "./media/characters/jazzy/front-dressed.svg",
  3179. extra: 2738 / 2651,
  3180. bottom: 41.8 / 2786
  3181. }
  3182. },
  3183. backDressed: {
  3184. height: math.unit(216, "feet"),
  3185. weight: math.unit(7000000, "lb"),
  3186. preyCapacity: math.unit(1321, "people"),
  3187. name: "Back (Dressed)",
  3188. image: {
  3189. source: "./media/characters/jazzy/back-dressed.svg",
  3190. extra: 2775 / 2673,
  3191. bottom: 36.8 / 2817
  3192. }
  3193. },
  3194. front: {
  3195. height: math.unit(216, "feet"),
  3196. weight: math.unit(7000000, "lb"),
  3197. preyCapacity: math.unit(1321, "people"),
  3198. name: "Front",
  3199. image: {
  3200. source: "./media/characters/jazzy/front.svg",
  3201. extra: 2738 / 2651,
  3202. bottom: 41.8 / 2786
  3203. }
  3204. },
  3205. back: {
  3206. height: math.unit(216, "feet"),
  3207. weight: math.unit(7000000, "lb"),
  3208. preyCapacity: math.unit(1321, "people"),
  3209. name: "Back",
  3210. image: {
  3211. source: "./media/characters/jazzy/back.svg",
  3212. extra: 2775 / 2673,
  3213. bottom: 36.8 / 2817
  3214. }
  3215. },
  3216. maw: {
  3217. height: math.unit(20, "feet"),
  3218. name: "Maw",
  3219. image: {
  3220. source: "./media/characters/jazzy/maw.svg"
  3221. }
  3222. },
  3223. paws: {
  3224. height: math.unit(27.5, "feet"),
  3225. name: "Paws",
  3226. image: {
  3227. source: "./media/characters/jazzy/paws.svg"
  3228. }
  3229. },
  3230. eye: {
  3231. height: math.unit(4.4, "feet"),
  3232. name: "Eye",
  3233. image: {
  3234. source: "./media/characters/jazzy/eye.svg"
  3235. }
  3236. },
  3237. droneOffense: {
  3238. height: math.unit(9.5, "inches"),
  3239. name: "Drone (Offense)",
  3240. image: {
  3241. source: "./media/characters/jazzy/drone-offense.svg"
  3242. }
  3243. },
  3244. droneRecon: {
  3245. height: math.unit(9.5, "inches"),
  3246. name: "Drone (Recon)",
  3247. image: {
  3248. source: "./media/characters/jazzy/drone-recon.svg"
  3249. }
  3250. },
  3251. droneDefense: {
  3252. height: math.unit(9.5, "inches"),
  3253. name: "Drone (Defense)",
  3254. image: {
  3255. source: "./media/characters/jazzy/drone-defense.svg"
  3256. }
  3257. },
  3258. },
  3259. [
  3260. {
  3261. name: "Macro",
  3262. height: math.unit(216, "feet"),
  3263. default: true
  3264. },
  3265. ]
  3266. ))
  3267. characterMakers.push(() => makeCharacter(
  3268. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3269. {
  3270. front: {
  3271. height: math.unit(9 + 6/12, "feet"),
  3272. weight: math.unit(700, "lb"),
  3273. name: "Front",
  3274. image: {
  3275. source: "./media/characters/flamm/front.svg",
  3276. extra: 1736/1596,
  3277. bottom: 93/1829
  3278. }
  3279. },
  3280. buff: {
  3281. height: math.unit(9 + 6/12, "feet"),
  3282. weight: math.unit(950, "lb"),
  3283. name: "Buff",
  3284. image: {
  3285. source: "./media/characters/flamm/buff.svg",
  3286. extra: 3018/2874,
  3287. bottom: 221/3239
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Normal",
  3294. height: math.unit(9.5, "feet")
  3295. },
  3296. {
  3297. name: "Macro",
  3298. height: math.unit(200, "feet"),
  3299. default: true
  3300. },
  3301. ]
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3305. {
  3306. front: {
  3307. height: math.unit(5 + 3/12, "feet"),
  3308. weight: math.unit(60, "kg"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/zephiro/front.svg",
  3312. extra: 1873/1761,
  3313. bottom: 147/2020
  3314. }
  3315. },
  3316. side: {
  3317. height: math.unit(5 + 3/12, "feet"),
  3318. weight: math.unit(60, "kg"),
  3319. name: "Side",
  3320. image: {
  3321. source: "./media/characters/zephiro/side.svg",
  3322. extra: 1929/1827,
  3323. bottom: 65/1994
  3324. }
  3325. },
  3326. back: {
  3327. height: math.unit(5 + 3/12, "feet"),
  3328. weight: math.unit(60, "kg"),
  3329. name: "Back",
  3330. image: {
  3331. source: "./media/characters/zephiro/back.svg",
  3332. extra: 1926/1816,
  3333. bottom: 41/1967
  3334. }
  3335. },
  3336. hand: {
  3337. height: math.unit(0.68, "feet"),
  3338. name: "Hand",
  3339. image: {
  3340. source: "./media/characters/zephiro/hand.svg"
  3341. }
  3342. },
  3343. paw: {
  3344. height: math.unit(1, "feet"),
  3345. name: "Paw",
  3346. image: {
  3347. source: "./media/characters/zephiro/paw.svg"
  3348. }
  3349. },
  3350. beans: {
  3351. height: math.unit(0.93, "feet"),
  3352. name: "Beans",
  3353. image: {
  3354. source: "./media/characters/zephiro/beans.svg"
  3355. }
  3356. },
  3357. },
  3358. [
  3359. {
  3360. name: "Micro",
  3361. height: math.unit(3, "inches")
  3362. },
  3363. {
  3364. name: "Normal",
  3365. height: math.unit(5 + 3 / 12, "feet"),
  3366. default: true
  3367. },
  3368. {
  3369. name: "Macro",
  3370. height: math.unit(118, "feet")
  3371. },
  3372. ]
  3373. ))
  3374. characterMakers.push(() => makeCharacter(
  3375. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3376. {
  3377. front: {
  3378. height: math.unit(5, "feet"),
  3379. weight: math.unit(90, "kg"),
  3380. preyCapacity: math.unit(14, "people"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/fory/front.svg",
  3384. extra: 2862 / 2674,
  3385. bottom: 180 / 3043.8
  3386. },
  3387. form: "weaselbun",
  3388. default: true,
  3389. extraAttributes: {
  3390. "pawSize": {
  3391. name: "Paw Size",
  3392. power: 2,
  3393. type: "area",
  3394. base: math.unit(0.1596, "m^2")
  3395. },
  3396. "pawLength": {
  3397. name: "Paw Length",
  3398. power: 1,
  3399. type: "length",
  3400. base: math.unit(0.7, "m")
  3401. }
  3402. }
  3403. },
  3404. back: {
  3405. height: math.unit(5, "feet"),
  3406. weight: math.unit(90, "kg"),
  3407. preyCapacity: math.unit(14, "people"),
  3408. name: "Back",
  3409. image: {
  3410. source: "./media/characters/fory/back.svg",
  3411. extra: 1790/1672,
  3412. bottom: 84/1874
  3413. },
  3414. form: "weaselbun",
  3415. extraAttributes: {
  3416. "pawSize": {
  3417. name: "Paw Size",
  3418. power: 2,
  3419. type: "area",
  3420. base: math.unit(0.1596, "m^2")
  3421. },
  3422. "pawLength": {
  3423. name: "Paw Length",
  3424. power: 1,
  3425. type: "length",
  3426. base: math.unit(0.7, "m")
  3427. }
  3428. }
  3429. },
  3430. paw: {
  3431. height: math.unit(2.14, "feet"),
  3432. name: "Paw",
  3433. image: {
  3434. source: "./media/characters/fory/paw.svg"
  3435. },
  3436. form: "weaselbun",
  3437. extraAttributes: {
  3438. "pawSize": {
  3439. name: "Paw Size",
  3440. power: 2,
  3441. type: "area",
  3442. base: math.unit(0.1596, "m^2")
  3443. },
  3444. "pawLength": {
  3445. name: "Paw Length",
  3446. power: 1,
  3447. type: "length",
  3448. base: math.unit(0.48, "m")
  3449. }
  3450. }
  3451. },
  3452. bunBack: {
  3453. height: math.unit(3, "feet"),
  3454. weight: math.unit(20, "kg"),
  3455. preyCapacity: math.unit(3, "people"),
  3456. name: "Back",
  3457. image: {
  3458. source: "./media/characters/fory/bun-back.svg",
  3459. extra: 1749/1564,
  3460. bottom: 246/1995
  3461. },
  3462. form: "bun",
  3463. default: true,
  3464. extraAttributes: {
  3465. "pawSize": {
  3466. name: "Paw Size",
  3467. power: 2,
  3468. type: "area",
  3469. base: math.unit(0.072, "m^2")
  3470. },
  3471. "pawLength": {
  3472. name: "Paw Length",
  3473. power: 1,
  3474. type: "length",
  3475. base: math.unit(0.45, "m")
  3476. }
  3477. }
  3478. },
  3479. },
  3480. [
  3481. {
  3482. name: "Normal",
  3483. height: math.unit(5, "feet"),
  3484. form: "weaselbun"
  3485. },
  3486. {
  3487. name: "Macro",
  3488. height: math.unit(50, "feet"),
  3489. default: true,
  3490. form: "weaselbun"
  3491. },
  3492. {
  3493. name: "Megamacro",
  3494. height: math.unit(10, "miles"),
  3495. form: "weaselbun"
  3496. },
  3497. {
  3498. name: "Gigamacro",
  3499. height: math.unit(5, "earths"),
  3500. form: "weaselbun"
  3501. },
  3502. {
  3503. name: "Normal",
  3504. height: math.unit(3, "feet"),
  3505. default: true,
  3506. form: "bun"
  3507. },
  3508. {
  3509. name: "Fun-Size",
  3510. height: math.unit(12, "feet"),
  3511. form: "bun"
  3512. },
  3513. {
  3514. name: "Macro",
  3515. height: math.unit(100, "feet"),
  3516. form: "bun"
  3517. },
  3518. {
  3519. name: "Planetary",
  3520. height: math.unit(3, "earths"),
  3521. form: "bun"
  3522. },
  3523. ],
  3524. {
  3525. "weaselbun": {
  3526. name: "Weaselbun",
  3527. default: true
  3528. },
  3529. "bun": {
  3530. name: "Bun",
  3531. },
  3532. }
  3533. ))
  3534. characterMakers.push(() => makeCharacter(
  3535. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3536. {
  3537. front: {
  3538. height: math.unit(7, "feet"),
  3539. weight: math.unit(90, "kg"),
  3540. name: "Front",
  3541. image: {
  3542. source: "./media/characters/kurrikage/front.svg",
  3543. extra: 1845/1733,
  3544. bottom: 119/1964
  3545. }
  3546. },
  3547. back: {
  3548. height: math.unit(7, "feet"),
  3549. weight: math.unit(90, "kg"),
  3550. name: "Back",
  3551. image: {
  3552. source: "./media/characters/kurrikage/back.svg",
  3553. extra: 1790/1677,
  3554. bottom: 61/1851
  3555. }
  3556. },
  3557. dressed: {
  3558. height: math.unit(7, "feet"),
  3559. weight: math.unit(90, "kg"),
  3560. name: "Dressed",
  3561. image: {
  3562. source: "./media/characters/kurrikage/dressed.svg",
  3563. extra: 1845/1733,
  3564. bottom: 119/1964
  3565. }
  3566. },
  3567. foot: {
  3568. height: math.unit(1.5, "feet"),
  3569. name: "Foot",
  3570. image: {
  3571. source: "./media/characters/kurrikage/foot.svg"
  3572. }
  3573. },
  3574. staff: {
  3575. height: math.unit(6.7, "feet"),
  3576. name: "Staff",
  3577. image: {
  3578. source: "./media/characters/kurrikage/staff.svg"
  3579. }
  3580. },
  3581. peek: {
  3582. height: math.unit(1.05, "feet"),
  3583. name: "Peeking",
  3584. image: {
  3585. source: "./media/characters/kurrikage/peek.svg",
  3586. bottom: 0.08
  3587. }
  3588. },
  3589. },
  3590. [
  3591. {
  3592. name: "Normal",
  3593. height: math.unit(12, "feet"),
  3594. default: true
  3595. },
  3596. {
  3597. name: "Big",
  3598. height: math.unit(20, "feet")
  3599. },
  3600. {
  3601. name: "Macro",
  3602. height: math.unit(500, "feet")
  3603. },
  3604. {
  3605. name: "Megamacro",
  3606. height: math.unit(20, "miles")
  3607. },
  3608. ]
  3609. ))
  3610. characterMakers.push(() => makeCharacter(
  3611. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3612. {
  3613. front: {
  3614. height: math.unit(6, "feet"),
  3615. weight: math.unit(75, "kg"),
  3616. name: "Front",
  3617. image: {
  3618. source: "./media/characters/shingo/front.svg",
  3619. extra: 1900/1825,
  3620. bottom: 82/1982
  3621. }
  3622. },
  3623. side: {
  3624. height: math.unit(6, "feet"),
  3625. weight: math.unit(75, "kg"),
  3626. name: "Side",
  3627. image: {
  3628. source: "./media/characters/shingo/side.svg",
  3629. extra: 1930/1865,
  3630. bottom: 16/1946
  3631. }
  3632. },
  3633. back: {
  3634. height: math.unit(6, "feet"),
  3635. weight: math.unit(75, "kg"),
  3636. name: "Back",
  3637. image: {
  3638. source: "./media/characters/shingo/back.svg",
  3639. extra: 1922/1852,
  3640. bottom: 16/1938
  3641. }
  3642. },
  3643. frontDressed: {
  3644. height: math.unit(6, "feet"),
  3645. weight: math.unit(150, "lb"),
  3646. name: "Front-dressed",
  3647. image: {
  3648. source: "./media/characters/shingo/front-dressed.svg",
  3649. extra: 1900/1825,
  3650. bottom: 82/1982
  3651. }
  3652. },
  3653. paw: {
  3654. height: math.unit(1.29, "feet"),
  3655. name: "Paw",
  3656. image: {
  3657. source: "./media/characters/shingo/paw.svg"
  3658. }
  3659. },
  3660. hand: {
  3661. height: math.unit(1.07, "feet"),
  3662. name: "Hand",
  3663. image: {
  3664. source: "./media/characters/shingo/hand.svg"
  3665. }
  3666. },
  3667. frontAlt: {
  3668. height: math.unit(6, "feet"),
  3669. weight: math.unit(75, "kg"),
  3670. name: "Front (Alt)",
  3671. image: {
  3672. source: "./media/characters/shingo/front-alt.svg",
  3673. extra: 3511 / 3338,
  3674. bottom: 0.005
  3675. }
  3676. },
  3677. frontAlt2: {
  3678. height: math.unit(6, "feet"),
  3679. weight: math.unit(75, "kg"),
  3680. name: "Front (Alt 2)",
  3681. image: {
  3682. source: "./media/characters/shingo/front-alt-2.svg",
  3683. extra: 706/681,
  3684. bottom: 11/717
  3685. }
  3686. },
  3687. pawAlt: {
  3688. height: math.unit(1, "feet"),
  3689. name: "Paw (Alt)",
  3690. image: {
  3691. source: "./media/characters/shingo/paw-alt.svg"
  3692. }
  3693. },
  3694. },
  3695. [
  3696. {
  3697. name: "Micro",
  3698. height: math.unit(4, "inches")
  3699. },
  3700. {
  3701. name: "Normal",
  3702. height: math.unit(6, "feet"),
  3703. default: true
  3704. },
  3705. {
  3706. name: "Macro",
  3707. height: math.unit(108, "feet")
  3708. },
  3709. {
  3710. name: "Macro+",
  3711. height: math.unit(1500, "feet")
  3712. },
  3713. ]
  3714. ))
  3715. characterMakers.push(() => makeCharacter(
  3716. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3717. {
  3718. side: {
  3719. height: math.unit(6, "feet"),
  3720. weight: math.unit(75, "kg"),
  3721. name: "Side",
  3722. image: {
  3723. source: "./media/characters/aigey/side.svg"
  3724. }
  3725. },
  3726. },
  3727. [
  3728. {
  3729. name: "Macro",
  3730. height: math.unit(200, "feet"),
  3731. default: true
  3732. },
  3733. {
  3734. name: "Megamacro",
  3735. height: math.unit(100, "miles")
  3736. },
  3737. ]
  3738. )
  3739. )
  3740. characterMakers.push(() => makeCharacter(
  3741. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3742. {
  3743. front: {
  3744. height: math.unit(5 + 5 / 12, "feet"),
  3745. weight: math.unit(75, "kg"),
  3746. name: "Front",
  3747. image: {
  3748. source: "./media/characters/natasha/front.svg",
  3749. extra: 859 / 824,
  3750. bottom: 23 / 879.6
  3751. }
  3752. },
  3753. frontNsfw: {
  3754. height: math.unit(5 + 5 / 12, "feet"),
  3755. weight: math.unit(75, "kg"),
  3756. name: "Front (NSFW)",
  3757. image: {
  3758. source: "./media/characters/natasha/front-nsfw.svg",
  3759. extra: 859 / 824,
  3760. bottom: 23 / 879.6
  3761. }
  3762. },
  3763. frontErect: {
  3764. height: math.unit(5 + 5 / 12, "feet"),
  3765. weight: math.unit(75, "kg"),
  3766. name: "Front (Erect)",
  3767. image: {
  3768. source: "./media/characters/natasha/front-erect.svg",
  3769. extra: 859 / 824,
  3770. bottom: 23 / 879.6
  3771. }
  3772. },
  3773. back: {
  3774. height: math.unit(5 + 5 / 12, "feet"),
  3775. weight: math.unit(75, "kg"),
  3776. name: "Back",
  3777. image: {
  3778. source: "./media/characters/natasha/back.svg",
  3779. extra: 887.9 / 852.6,
  3780. bottom: 9.7 / 896.4
  3781. }
  3782. },
  3783. backAlt: {
  3784. height: math.unit(5 + 5 / 12, "feet"),
  3785. weight: math.unit(75, "kg"),
  3786. name: "Back (Alt)",
  3787. image: {
  3788. source: "./media/characters/natasha/back-alt.svg",
  3789. extra: 1236.7 / 1192,
  3790. bottom: 22.3 / 1258.2
  3791. }
  3792. },
  3793. dick: {
  3794. height: math.unit(1.772, "feet"),
  3795. name: "Dick",
  3796. image: {
  3797. source: "./media/characters/natasha/dick.svg"
  3798. }
  3799. },
  3800. paw: {
  3801. height: math.unit(0.250, "meters"),
  3802. name: "Paw",
  3803. image: {
  3804. source: "./media/characters/natasha/paw.svg"
  3805. },
  3806. extraAttributes: {
  3807. "toeSize": {
  3808. name: "Toe Size",
  3809. power: 2,
  3810. type: "area",
  3811. base: math.unit(0.0024, "m^2")
  3812. },
  3813. "padSize": {
  3814. name: "Pad Size",
  3815. power: 2,
  3816. type: "area",
  3817. base: math.unit(0.00889, "m^2")
  3818. },
  3819. "pawSize": {
  3820. name: "Paw Size",
  3821. power: 2,
  3822. type: "area",
  3823. base: math.unit(0.023667, "m^2")
  3824. },
  3825. }
  3826. },
  3827. },
  3828. [
  3829. {
  3830. name: "Shortstack",
  3831. height: math.unit(3, "feet"),
  3832. default: true
  3833. },
  3834. {
  3835. name: "Normal",
  3836. height: math.unit(5 + 5 / 12, "feet")
  3837. },
  3838. {
  3839. name: "Large",
  3840. height: math.unit(12, "feet")
  3841. },
  3842. {
  3843. name: "Macro",
  3844. height: math.unit(100, "feet")
  3845. },
  3846. {
  3847. name: "Macro+",
  3848. height: math.unit(260, "feet")
  3849. },
  3850. {
  3851. name: "Macro++",
  3852. height: math.unit(1, "mile")
  3853. },
  3854. ]
  3855. ))
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3858. {
  3859. front: {
  3860. height: math.unit(6, "feet"),
  3861. weight: math.unit(75, "kg"),
  3862. name: "Front",
  3863. image: {
  3864. source: "./media/characters/malik/front.svg",
  3865. extra: 1750/1561,
  3866. bottom: 80/1830
  3867. },
  3868. extraAttributes: {
  3869. "toeSize": {
  3870. name: "Toe Size",
  3871. power: 2,
  3872. type: "area",
  3873. base: math.unit(0.0159, "m^2")
  3874. },
  3875. "pawSize": {
  3876. name: "Paw Size",
  3877. power: 2,
  3878. type: "area",
  3879. base: math.unit(0.09834, "m^2")
  3880. },
  3881. }
  3882. },
  3883. side: {
  3884. height: math.unit(6, "feet"),
  3885. weight: math.unit(75, "kg"),
  3886. name: "Side",
  3887. image: {
  3888. source: "./media/characters/malik/side.svg",
  3889. extra: 1802/1685,
  3890. bottom: 42/1844
  3891. },
  3892. extraAttributes: {
  3893. "toeSize": {
  3894. name: "Toe Size",
  3895. power: 2,
  3896. type: "area",
  3897. base: math.unit(0.0159, "m^2")
  3898. },
  3899. "pawSize": {
  3900. name: "Paw Size",
  3901. power: 2,
  3902. type: "area",
  3903. base: math.unit(0.09834, "m^2")
  3904. },
  3905. }
  3906. },
  3907. back: {
  3908. height: math.unit(6, "feet"),
  3909. weight: math.unit(75, "kg"),
  3910. name: "Back",
  3911. image: {
  3912. source: "./media/characters/malik/back.svg",
  3913. extra: 1803/1607,
  3914. bottom: 33/1836
  3915. },
  3916. extraAttributes: {
  3917. "toeSize": {
  3918. name: "Toe Size",
  3919. power: 2,
  3920. type: "area",
  3921. base: math.unit(0.0159, "m^2")
  3922. },
  3923. "pawSize": {
  3924. name: "Paw Size",
  3925. power: 2,
  3926. type: "area",
  3927. base: math.unit(0.09834, "m^2")
  3928. },
  3929. }
  3930. },
  3931. },
  3932. [
  3933. {
  3934. name: "Macro",
  3935. height: math.unit(156, "feet"),
  3936. default: true
  3937. },
  3938. {
  3939. name: "Macro+",
  3940. height: math.unit(1188, "feet")
  3941. },
  3942. ]
  3943. ))
  3944. characterMakers.push(() => makeCharacter(
  3945. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3946. {
  3947. front: {
  3948. height: math.unit(6, "feet"),
  3949. weight: math.unit(75, "kg"),
  3950. name: "Front",
  3951. image: {
  3952. source: "./media/characters/sefer/front.svg",
  3953. extra: 848 / 659,
  3954. bottom: 28.3 / 876.442
  3955. }
  3956. },
  3957. back: {
  3958. height: math.unit(6, "feet"),
  3959. weight: math.unit(75, "kg"),
  3960. name: "Back",
  3961. image: {
  3962. source: "./media/characters/sefer/back.svg",
  3963. extra: 864 / 695,
  3964. bottom: 10 / 871
  3965. }
  3966. },
  3967. frontDressed: {
  3968. height: math.unit(6, "feet"),
  3969. weight: math.unit(75, "kg"),
  3970. name: "Dressed",
  3971. image: {
  3972. source: "./media/characters/sefer/dressed.svg",
  3973. extra: 839 / 653,
  3974. bottom: 37.6 / 878
  3975. }
  3976. },
  3977. },
  3978. [
  3979. {
  3980. name: "Normal",
  3981. height: math.unit(6, "feet"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Big",
  3986. height: math.unit(8, "meters")
  3987. },
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3992. {
  3993. body: {
  3994. height: math.unit(2.2428, "meter"),
  3995. weight: math.unit(124.738, "kg"),
  3996. name: "Body",
  3997. image: {
  3998. extra: 1225 / 1050,
  3999. source: "./media/characters/north/front.svg"
  4000. }
  4001. }
  4002. },
  4003. [
  4004. {
  4005. name: "Micro",
  4006. height: math.unit(4, "inches")
  4007. },
  4008. {
  4009. name: "Macro",
  4010. height: math.unit(63, "meters")
  4011. },
  4012. {
  4013. name: "Megamacro",
  4014. height: math.unit(101, "miles"),
  4015. default: true
  4016. }
  4017. ]
  4018. ))
  4019. characterMakers.push(() => makeCharacter(
  4020. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4021. {
  4022. angled: {
  4023. height: math.unit(4, "meter"),
  4024. weight: math.unit(150, "kg"),
  4025. name: "Angled",
  4026. image: {
  4027. source: "./media/characters/talan/angled-sfw.svg",
  4028. bottom: 29 / 3734
  4029. }
  4030. },
  4031. angledNsfw: {
  4032. height: math.unit(4, "meter"),
  4033. weight: math.unit(150, "kg"),
  4034. name: "Angled (NSFW)",
  4035. image: {
  4036. source: "./media/characters/talan/angled-nsfw.svg",
  4037. bottom: 29 / 3734
  4038. }
  4039. },
  4040. frontNsfw: {
  4041. height: math.unit(4, "meter"),
  4042. weight: math.unit(150, "kg"),
  4043. name: "Front (NSFW)",
  4044. image: {
  4045. source: "./media/characters/talan/front-nsfw.svg",
  4046. bottom: 29 / 3734
  4047. }
  4048. },
  4049. sideNsfw: {
  4050. height: math.unit(4, "meter"),
  4051. weight: math.unit(150, "kg"),
  4052. name: "Side (NSFW)",
  4053. image: {
  4054. source: "./media/characters/talan/side-nsfw.svg",
  4055. bottom: 29 / 3734
  4056. }
  4057. },
  4058. back: {
  4059. height: math.unit(4, "meter"),
  4060. weight: math.unit(150, "kg"),
  4061. name: "Back",
  4062. image: {
  4063. source: "./media/characters/talan/back.svg"
  4064. }
  4065. },
  4066. dickBottom: {
  4067. height: math.unit(0.621, "meter"),
  4068. name: "Dick (Bottom)",
  4069. image: {
  4070. source: "./media/characters/talan/dick-bottom.svg"
  4071. }
  4072. },
  4073. dickTop: {
  4074. height: math.unit(0.621, "meter"),
  4075. name: "Dick (Top)",
  4076. image: {
  4077. source: "./media/characters/talan/dick-top.svg"
  4078. }
  4079. },
  4080. dickSide: {
  4081. height: math.unit(0.305, "meter"),
  4082. name: "Dick (Side)",
  4083. image: {
  4084. source: "./media/characters/talan/dick-side.svg"
  4085. }
  4086. },
  4087. dickFront: {
  4088. height: math.unit(0.305, "meter"),
  4089. name: "Dick (Front)",
  4090. image: {
  4091. source: "./media/characters/talan/dick-front.svg"
  4092. }
  4093. },
  4094. },
  4095. [
  4096. {
  4097. name: "Normal",
  4098. height: math.unit(4, "meters")
  4099. },
  4100. {
  4101. name: "Macro",
  4102. height: math.unit(100, "meters")
  4103. },
  4104. {
  4105. name: "Megamacro",
  4106. height: math.unit(2, "miles"),
  4107. default: true
  4108. },
  4109. {
  4110. name: "Gigamacro",
  4111. height: math.unit(5000, "miles")
  4112. },
  4113. {
  4114. name: "Teramacro",
  4115. height: math.unit(100, "parsecs")
  4116. }
  4117. ]
  4118. ))
  4119. characterMakers.push(() => makeCharacter(
  4120. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4121. {
  4122. front: {
  4123. height: math.unit(2, "meter"),
  4124. weight: math.unit(90, "kg"),
  4125. name: "Front",
  4126. image: {
  4127. source: "./media/characters/gael'rathus/front.svg"
  4128. }
  4129. },
  4130. frontAlt: {
  4131. height: math.unit(2, "meter"),
  4132. weight: math.unit(90, "kg"),
  4133. name: "Front (alt)",
  4134. image: {
  4135. source: "./media/characters/gael'rathus/front-alt.svg"
  4136. }
  4137. },
  4138. frontAlt2: {
  4139. height: math.unit(2, "meter"),
  4140. weight: math.unit(90, "kg"),
  4141. name: "Front (alt 2)",
  4142. image: {
  4143. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4144. }
  4145. }
  4146. },
  4147. [
  4148. {
  4149. name: "Normal",
  4150. height: math.unit(9, "feet"),
  4151. default: true
  4152. },
  4153. {
  4154. name: "Large",
  4155. height: math.unit(25, "feet")
  4156. },
  4157. {
  4158. name: "Macro",
  4159. height: math.unit(0.25, "miles")
  4160. },
  4161. {
  4162. name: "Megamacro",
  4163. height: math.unit(10, "miles")
  4164. }
  4165. ]
  4166. ))
  4167. characterMakers.push(() => makeCharacter(
  4168. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4169. {
  4170. side: {
  4171. height: math.unit(2, "meter"),
  4172. weight: math.unit(140, "kg"),
  4173. name: "Side",
  4174. image: {
  4175. source: "./media/characters/sosha/side.svg",
  4176. extra: 1170/1006,
  4177. bottom: 94/1264
  4178. }
  4179. },
  4180. maw: {
  4181. height: math.unit(2.87, "feet"),
  4182. name: "Maw",
  4183. image: {
  4184. source: "./media/characters/sosha/maw.svg",
  4185. extra: 966/865,
  4186. bottom: 0/966
  4187. }
  4188. },
  4189. cooch: {
  4190. height: math.unit(5.6, "feet"),
  4191. name: "Cooch",
  4192. image: {
  4193. source: "./media/characters/sosha/cooch.svg"
  4194. }
  4195. },
  4196. },
  4197. [
  4198. {
  4199. name: "Normal",
  4200. height: math.unit(12, "feet"),
  4201. default: true
  4202. }
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4207. {
  4208. side: {
  4209. height: math.unit(5 + 5 / 12, "feet"),
  4210. weight: math.unit(170, "kg"),
  4211. name: "Side",
  4212. image: {
  4213. source: "./media/characters/runnola/side.svg",
  4214. extra: 741 / 448,
  4215. bottom: 0.05
  4216. }
  4217. },
  4218. },
  4219. [
  4220. {
  4221. name: "Small",
  4222. height: math.unit(3, "feet")
  4223. },
  4224. {
  4225. name: "Normal",
  4226. height: math.unit(5 + 5 / 12, "feet"),
  4227. default: true
  4228. },
  4229. {
  4230. name: "Big",
  4231. height: math.unit(10, "feet")
  4232. },
  4233. ]
  4234. ))
  4235. characterMakers.push(() => makeCharacter(
  4236. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4237. {
  4238. front: {
  4239. height: math.unit(2, "meter"),
  4240. weight: math.unit(50, "kg"),
  4241. name: "Front",
  4242. image: {
  4243. source: "./media/characters/kurribird/front.svg",
  4244. bottom: 0.015
  4245. }
  4246. },
  4247. frontAlt: {
  4248. height: math.unit(1.5, "meter"),
  4249. weight: math.unit(50, "kg"),
  4250. name: "Front (Alt)",
  4251. image: {
  4252. source: "./media/characters/kurribird/front-alt.svg",
  4253. extra: 1.45
  4254. }
  4255. },
  4256. },
  4257. [
  4258. {
  4259. name: "Normal",
  4260. height: math.unit(7, "feet")
  4261. },
  4262. {
  4263. name: "Big",
  4264. height: math.unit(12, "feet"),
  4265. default: true
  4266. },
  4267. {
  4268. name: "Macro",
  4269. height: math.unit(1500, "feet")
  4270. },
  4271. {
  4272. name: "Megamacro",
  4273. height: math.unit(2, "miles")
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4279. {
  4280. front: {
  4281. height: math.unit(2, "meter"),
  4282. weight: math.unit(80, "kg"),
  4283. name: "Front",
  4284. image: {
  4285. source: "./media/characters/elbial/front.svg",
  4286. extra: 1643 / 1556,
  4287. bottom: 60.2 / 1696
  4288. }
  4289. },
  4290. side: {
  4291. height: math.unit(2, "meter"),
  4292. weight: math.unit(80, "kg"),
  4293. name: "Side",
  4294. image: {
  4295. source: "./media/characters/elbial/side.svg",
  4296. extra: 1601/1528,
  4297. bottom: 97/1698
  4298. }
  4299. },
  4300. back: {
  4301. height: math.unit(2, "meter"),
  4302. weight: math.unit(80, "kg"),
  4303. name: "Back",
  4304. image: {
  4305. source: "./media/characters/elbial/back.svg",
  4306. extra: 1653/1569,
  4307. bottom: 20/1673
  4308. }
  4309. },
  4310. frontDressed: {
  4311. height: math.unit(2, "meter"),
  4312. weight: math.unit(80, "kg"),
  4313. name: "Front (Dressed)",
  4314. image: {
  4315. source: "./media/characters/elbial/front-dressed.svg",
  4316. extra: 1638/1569,
  4317. bottom: 70/1708
  4318. }
  4319. },
  4320. genitals: {
  4321. height: math.unit(2 / 3.367, "meter"),
  4322. name: "Genitals",
  4323. image: {
  4324. source: "./media/characters/elbial/genitals.svg"
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Large",
  4331. height: math.unit(100, "feet")
  4332. },
  4333. {
  4334. name: "Macro",
  4335. height: math.unit(500, "feet"),
  4336. default: true
  4337. },
  4338. {
  4339. name: "Megamacro",
  4340. height: math.unit(10, "miles")
  4341. },
  4342. {
  4343. name: "Gigamacro",
  4344. height: math.unit(25000, "miles")
  4345. },
  4346. {
  4347. name: "Full-Size",
  4348. height: math.unit(8000000, "gigaparsecs")
  4349. }
  4350. ]
  4351. ))
  4352. characterMakers.push(() => makeCharacter(
  4353. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4354. {
  4355. front: {
  4356. height: math.unit(2, "meter"),
  4357. weight: math.unit(60, "kg"),
  4358. name: "Front",
  4359. image: {
  4360. source: "./media/characters/noah/front.svg",
  4361. extra: 1383/1313,
  4362. bottom: 104/1487
  4363. }
  4364. },
  4365. hand: {
  4366. height: math.unit(0.6, "feet"),
  4367. name: "Hand",
  4368. image: {
  4369. source: "./media/characters/noah/hand.svg"
  4370. }
  4371. },
  4372. talons: {
  4373. height: math.unit(1.385, "feet"),
  4374. name: "Talons",
  4375. image: {
  4376. source: "./media/characters/noah/talons.svg"
  4377. }
  4378. },
  4379. beak: {
  4380. height: math.unit(0.43, "feet"),
  4381. name: "Beak",
  4382. image: {
  4383. source: "./media/characters/noah/beak.svg"
  4384. }
  4385. },
  4386. collar: {
  4387. height: math.unit(0.88, "feet"),
  4388. name: "Collar",
  4389. image: {
  4390. source: "./media/characters/noah/collar.svg"
  4391. }
  4392. },
  4393. eyeNarrow: {
  4394. height: math.unit(0.18, "feet"),
  4395. name: "Eye (Narrow)",
  4396. image: {
  4397. source: "./media/characters/noah/eye-narrow.svg"
  4398. }
  4399. },
  4400. eyeNormal: {
  4401. height: math.unit(0.18, "feet"),
  4402. name: "Eye (Normal)",
  4403. image: {
  4404. source: "./media/characters/noah/eye-normal.svg"
  4405. }
  4406. },
  4407. eyeWide: {
  4408. height: math.unit(0.18, "feet"),
  4409. name: "Eye (Wide)",
  4410. image: {
  4411. source: "./media/characters/noah/eye-wide.svg"
  4412. }
  4413. },
  4414. ear: {
  4415. height: math.unit(0.64, "feet"),
  4416. name: "Ear",
  4417. image: {
  4418. source: "./media/characters/noah/ear.svg"
  4419. }
  4420. },
  4421. },
  4422. [
  4423. {
  4424. name: "Large",
  4425. height: math.unit(50, "feet")
  4426. },
  4427. {
  4428. name: "Macro",
  4429. height: math.unit(750, "feet"),
  4430. default: true
  4431. },
  4432. {
  4433. name: "Megamacro",
  4434. height: math.unit(50, "miles")
  4435. },
  4436. {
  4437. name: "Gigamacro",
  4438. height: math.unit(100000, "miles")
  4439. },
  4440. {
  4441. name: "Full-Size",
  4442. height: math.unit(3000000000, "miles")
  4443. }
  4444. ]
  4445. ))
  4446. characterMakers.push(() => makeCharacter(
  4447. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4448. {
  4449. front: {
  4450. height: math.unit(2, "meter"),
  4451. weight: math.unit(80, "kg"),
  4452. name: "Front",
  4453. image: {
  4454. source: "./media/characters/natalya/front.svg"
  4455. }
  4456. },
  4457. back: {
  4458. height: math.unit(2, "meter"),
  4459. weight: math.unit(80, "kg"),
  4460. name: "Back",
  4461. image: {
  4462. source: "./media/characters/natalya/back.svg"
  4463. }
  4464. }
  4465. },
  4466. [
  4467. {
  4468. name: "Normal",
  4469. height: math.unit(150, "feet"),
  4470. default: true
  4471. },
  4472. {
  4473. name: "Megamacro",
  4474. height: math.unit(5, "miles")
  4475. },
  4476. {
  4477. name: "Full-Size",
  4478. height: math.unit(600, "kiloparsecs")
  4479. }
  4480. ]
  4481. ))
  4482. characterMakers.push(() => makeCharacter(
  4483. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4484. {
  4485. front: {
  4486. height: math.unit(2, "meter"),
  4487. weight: math.unit(50, "kg"),
  4488. name: "Front",
  4489. image: {
  4490. source: "./media/characters/erestrebah/front.svg",
  4491. extra: 1262/1162,
  4492. bottom: 96/1358
  4493. }
  4494. },
  4495. back: {
  4496. height: math.unit(2, "meter"),
  4497. weight: math.unit(50, "kg"),
  4498. name: "Back",
  4499. image: {
  4500. source: "./media/characters/erestrebah/back.svg",
  4501. extra: 1257/1139,
  4502. bottom: 13/1270
  4503. }
  4504. },
  4505. wing: {
  4506. height: math.unit(2, "meter"),
  4507. weight: math.unit(50, "kg"),
  4508. name: "Wing",
  4509. image: {
  4510. source: "./media/characters/erestrebah/wing.svg",
  4511. extra: 1262/1162,
  4512. bottom: 96/1358
  4513. }
  4514. },
  4515. mouth: {
  4516. height: math.unit(0.39, "feet"),
  4517. name: "Mouth",
  4518. image: {
  4519. source: "./media/characters/erestrebah/mouth.svg"
  4520. }
  4521. }
  4522. },
  4523. [
  4524. {
  4525. name: "Normal",
  4526. height: math.unit(10, "feet")
  4527. },
  4528. {
  4529. name: "Large",
  4530. height: math.unit(50, "feet"),
  4531. default: true
  4532. },
  4533. {
  4534. name: "Macro",
  4535. height: math.unit(300, "feet")
  4536. },
  4537. {
  4538. name: "Macro+",
  4539. height: math.unit(750, "feet")
  4540. },
  4541. {
  4542. name: "Megamacro",
  4543. height: math.unit(3, "miles")
  4544. }
  4545. ]
  4546. ))
  4547. characterMakers.push(() => makeCharacter(
  4548. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4549. {
  4550. front: {
  4551. height: math.unit(2, "meter"),
  4552. weight: math.unit(80, "kg"),
  4553. name: "Front",
  4554. image: {
  4555. source: "./media/characters/jennifer/front.svg",
  4556. bottom: 0.11,
  4557. extra: 1.16
  4558. }
  4559. },
  4560. frontAlt: {
  4561. height: math.unit(2, "meter"),
  4562. weight: math.unit(80, "kg"),
  4563. name: "Front (Alt)",
  4564. image: {
  4565. source: "./media/characters/jennifer/front-alt.svg"
  4566. }
  4567. }
  4568. },
  4569. [
  4570. {
  4571. name: "Canon Height",
  4572. height: math.unit(120, "feet"),
  4573. default: true
  4574. },
  4575. {
  4576. name: "Macro+",
  4577. height: math.unit(300, "feet")
  4578. },
  4579. {
  4580. name: "Megamacro",
  4581. height: math.unit(20000, "feet")
  4582. }
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4587. {
  4588. front: {
  4589. height: math.unit(2, "meter"),
  4590. weight: math.unit(50, "kg"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/kalista/front.svg",
  4594. extra: 1314/1145,
  4595. bottom: 101/1415
  4596. }
  4597. },
  4598. back: {
  4599. height: math.unit(2, "meter"),
  4600. weight: math.unit(50, "kg"),
  4601. name: "Back",
  4602. image: {
  4603. source: "./media/characters/kalista/back.svg",
  4604. extra: 1366 / 1156,
  4605. bottom: 33.9 / 1362.78
  4606. }
  4607. }
  4608. },
  4609. [
  4610. {
  4611. name: "Uncomfortably Small",
  4612. height: math.unit(10, "feet")
  4613. },
  4614. {
  4615. name: "Small",
  4616. height: math.unit(30, "feet")
  4617. },
  4618. {
  4619. name: "Macro",
  4620. height: math.unit(100, "feet"),
  4621. default: true
  4622. },
  4623. {
  4624. name: "Macro+",
  4625. height: math.unit(2000, "feet")
  4626. },
  4627. {
  4628. name: "True Form",
  4629. height: math.unit(8924, "miles")
  4630. }
  4631. ]
  4632. ))
  4633. characterMakers.push(() => makeCharacter(
  4634. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4635. {
  4636. front: {
  4637. height: math.unit(2, "meter"),
  4638. weight: math.unit(120, "kg"),
  4639. name: "Front",
  4640. image: {
  4641. source: "./media/characters/ggv/front.svg"
  4642. }
  4643. },
  4644. side: {
  4645. height: math.unit(2, "meter"),
  4646. weight: math.unit(120, "kg"),
  4647. name: "Side",
  4648. image: {
  4649. source: "./media/characters/ggv/side.svg"
  4650. }
  4651. }
  4652. },
  4653. [
  4654. {
  4655. name: "Extremely Puny",
  4656. height: math.unit(9 + 5 / 12, "feet")
  4657. },
  4658. {
  4659. name: "Horribly Small",
  4660. height: math.unit(47.7, "miles"),
  4661. default: true
  4662. },
  4663. {
  4664. name: "Reasonably Sized",
  4665. height: math.unit(25000, "parsecs")
  4666. },
  4667. {
  4668. name: "Slightly Uncompressed",
  4669. height: math.unit(7.77e31, "parsecs")
  4670. },
  4671. {
  4672. name: "Omniversal",
  4673. height: math.unit(1e300, "meters")
  4674. },
  4675. ]
  4676. ))
  4677. characterMakers.push(() => makeCharacter(
  4678. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4679. {
  4680. front: {
  4681. height: math.unit(2, "meter"),
  4682. weight: math.unit(75, "lb"),
  4683. name: "Front",
  4684. image: {
  4685. source: "./media/characters/napalm/front.svg"
  4686. }
  4687. },
  4688. back: {
  4689. height: math.unit(2, "meter"),
  4690. weight: math.unit(75, "lb"),
  4691. name: "Back",
  4692. image: {
  4693. source: "./media/characters/napalm/back.svg"
  4694. }
  4695. }
  4696. },
  4697. [
  4698. {
  4699. name: "Standard",
  4700. height: math.unit(55, "feet"),
  4701. default: true
  4702. }
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4707. {
  4708. front: {
  4709. height: math.unit(7 + 5 / 6, "feet"),
  4710. weight: math.unit(325, "lb"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/asana/front.svg",
  4714. extra: 1133 / 1060,
  4715. bottom: 15.2 / 1148.6
  4716. }
  4717. },
  4718. back: {
  4719. height: math.unit(7 + 5 / 6, "feet"),
  4720. weight: math.unit(325, "lb"),
  4721. name: "Back",
  4722. image: {
  4723. source: "./media/characters/asana/back.svg",
  4724. extra: 1114 / 1043,
  4725. bottom: 5 / 1120
  4726. }
  4727. },
  4728. dressedDark: {
  4729. height: math.unit(7 + 5 / 6, "feet"),
  4730. weight: math.unit(325, "lb"),
  4731. name: "Dressed (Dark)",
  4732. image: {
  4733. source: "./media/characters/asana/dressed-dark.svg",
  4734. extra: 1133 / 1060,
  4735. bottom: 15.2 / 1148.6
  4736. }
  4737. },
  4738. dressedLight: {
  4739. height: math.unit(7 + 5 / 6, "feet"),
  4740. weight: math.unit(325, "lb"),
  4741. name: "Dressed (Light)",
  4742. image: {
  4743. source: "./media/characters/asana/dressed-light.svg",
  4744. extra: 1133 / 1060,
  4745. bottom: 15.2 / 1148.6
  4746. }
  4747. },
  4748. },
  4749. [
  4750. {
  4751. name: "Standard",
  4752. height: math.unit(7 + 5 / 6, "feet"),
  4753. default: true
  4754. },
  4755. {
  4756. name: "Large",
  4757. height: math.unit(10, "meters")
  4758. },
  4759. {
  4760. name: "Macro",
  4761. height: math.unit(2500, "meters")
  4762. },
  4763. {
  4764. name: "Megamacro",
  4765. height: math.unit(5e6, "meters")
  4766. },
  4767. {
  4768. name: "Examacro",
  4769. height: math.unit(5e12, "lightyears")
  4770. },
  4771. {
  4772. name: "Max Size",
  4773. height: math.unit(1e31, "lightyears")
  4774. }
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4779. {
  4780. front: {
  4781. height: math.unit(2, "meter"),
  4782. weight: math.unit(60, "kg"),
  4783. name: "Front",
  4784. image: {
  4785. source: "./media/characters/ebony/front.svg",
  4786. bottom: 0.03,
  4787. extra: 1045 / 810 + 0.03
  4788. }
  4789. },
  4790. side: {
  4791. height: math.unit(2, "meter"),
  4792. weight: math.unit(60, "kg"),
  4793. name: "Side",
  4794. image: {
  4795. source: "./media/characters/ebony/side.svg",
  4796. bottom: 0.03,
  4797. extra: 1045 / 810 + 0.03
  4798. }
  4799. },
  4800. back: {
  4801. height: math.unit(2, "meter"),
  4802. weight: math.unit(60, "kg"),
  4803. name: "Back",
  4804. image: {
  4805. source: "./media/characters/ebony/back.svg",
  4806. bottom: 0.01,
  4807. extra: 1045 / 810 + 0.01
  4808. }
  4809. },
  4810. },
  4811. [
  4812. // TODO check why I did this lol
  4813. {
  4814. name: "Standard",
  4815. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Macro",
  4820. height: math.unit(200, "feet")
  4821. },
  4822. {
  4823. name: "Gigamacro",
  4824. height: math.unit(13000, "km")
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4830. {
  4831. front: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(175, "lb"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/mountain/front.svg",
  4837. extra: 972 / 955,
  4838. bottom: 64 / 1036.6
  4839. }
  4840. },
  4841. back: {
  4842. height: math.unit(6, "feet"),
  4843. weight: math.unit(175, "lb"),
  4844. name: "Back",
  4845. image: {
  4846. source: "./media/characters/mountain/back.svg",
  4847. extra: 970 / 950,
  4848. bottom: 28.25 / 999
  4849. }
  4850. },
  4851. },
  4852. [
  4853. {
  4854. name: "Large",
  4855. height: math.unit(20, "meters")
  4856. },
  4857. {
  4858. name: "Macro",
  4859. height: math.unit(300, "meters")
  4860. },
  4861. {
  4862. name: "Gigamacro",
  4863. height: math.unit(10000, "km"),
  4864. default: true
  4865. },
  4866. {
  4867. name: "Examacro",
  4868. height: math.unit(10e9, "lightyears")
  4869. }
  4870. ]
  4871. ))
  4872. characterMakers.push(() => makeCharacter(
  4873. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4874. {
  4875. front: {
  4876. height: math.unit(8, "feet"),
  4877. weight: math.unit(500, "lb"),
  4878. name: "Front",
  4879. image: {
  4880. source: "./media/characters/rick/front.svg"
  4881. }
  4882. }
  4883. },
  4884. [
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(8, "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(5, "km")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4898. {
  4899. front: {
  4900. height: math.unit(8, "feet"),
  4901. weight: math.unit(120, "lb"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/ona/front.svg"
  4905. }
  4906. },
  4907. frontAlt: {
  4908. height: math.unit(8, "feet"),
  4909. weight: math.unit(120, "lb"),
  4910. name: "Front (Alt)",
  4911. image: {
  4912. source: "./media/characters/ona/front-alt.svg"
  4913. }
  4914. },
  4915. back: {
  4916. height: math.unit(8, "feet"),
  4917. weight: math.unit(120, "lb"),
  4918. name: "Back",
  4919. image: {
  4920. source: "./media/characters/ona/back.svg"
  4921. }
  4922. },
  4923. foot: {
  4924. height: math.unit(1.1, "feet"),
  4925. name: "Foot",
  4926. image: {
  4927. source: "./media/characters/ona/foot.svg"
  4928. }
  4929. }
  4930. },
  4931. [
  4932. {
  4933. name: "Megamacro",
  4934. height: math.unit(70, "km"),
  4935. default: true
  4936. },
  4937. {
  4938. name: "Gigamacro",
  4939. height: math.unit(681818, "miles")
  4940. },
  4941. {
  4942. name: "Examacro",
  4943. height: math.unit(3800000, "lightyears")
  4944. },
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4949. {
  4950. front: {
  4951. height: math.unit(12, "feet"),
  4952. weight: math.unit(3000, "lb"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/mech/front.svg",
  4956. extra: 2900 / 2770,
  4957. bottom: 110 / 3010
  4958. }
  4959. },
  4960. back: {
  4961. height: math.unit(12, "feet"),
  4962. weight: math.unit(3000, "lb"),
  4963. name: "Back",
  4964. image: {
  4965. source: "./media/characters/mech/back.svg",
  4966. extra: 3011 / 2890,
  4967. bottom: 94 / 3105
  4968. }
  4969. },
  4970. maw: {
  4971. height: math.unit(3.07, "feet"),
  4972. name: "Maw",
  4973. image: {
  4974. source: "./media/characters/mech/maw.svg"
  4975. }
  4976. },
  4977. head: {
  4978. height: math.unit(3.07, "feet"),
  4979. name: "Head",
  4980. image: {
  4981. source: "./media/characters/mech/head.svg"
  4982. }
  4983. },
  4984. dick: {
  4985. height: math.unit(1.43, "feet"),
  4986. name: "Dick",
  4987. image: {
  4988. source: "./media/characters/mech/dick.svg"
  4989. }
  4990. },
  4991. },
  4992. [
  4993. {
  4994. name: "Normal",
  4995. height: math.unit(12, "feet")
  4996. },
  4997. {
  4998. name: "Macro",
  4999. height: math.unit(300, "feet"),
  5000. default: true
  5001. },
  5002. {
  5003. name: "Macro+",
  5004. height: math.unit(1500, "feet")
  5005. },
  5006. ]
  5007. ))
  5008. characterMakers.push(() => makeCharacter(
  5009. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5010. {
  5011. front: {
  5012. height: math.unit(1.3, "meter"),
  5013. weight: math.unit(30, "kg"),
  5014. name: "Front",
  5015. image: {
  5016. source: "./media/characters/gregory/front.svg",
  5017. }
  5018. }
  5019. },
  5020. [
  5021. {
  5022. name: "Normal",
  5023. height: math.unit(1.3, "meter"),
  5024. default: true
  5025. },
  5026. {
  5027. name: "Macro",
  5028. height: math.unit(20, "meter")
  5029. }
  5030. ]
  5031. ))
  5032. characterMakers.push(() => makeCharacter(
  5033. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5034. {
  5035. front: {
  5036. height: math.unit(2.8, "meter"),
  5037. weight: math.unit(200, "kg"),
  5038. name: "Front",
  5039. image: {
  5040. source: "./media/characters/elory/front.svg",
  5041. }
  5042. }
  5043. },
  5044. [
  5045. {
  5046. name: "Normal",
  5047. height: math.unit(2.8, "meter"),
  5048. default: true
  5049. },
  5050. {
  5051. name: "Macro",
  5052. height: math.unit(38, "meter")
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5058. {
  5059. front: {
  5060. height: math.unit(470, "feet"),
  5061. weight: math.unit(924, "tons"),
  5062. name: "Front",
  5063. image: {
  5064. source: "./media/characters/angelpatamon/front.svg",
  5065. }
  5066. }
  5067. },
  5068. [
  5069. {
  5070. name: "Normal",
  5071. height: math.unit(470, "feet"),
  5072. default: true
  5073. },
  5074. {
  5075. name: "Deity Size I",
  5076. height: math.unit(28651.2, "km")
  5077. },
  5078. {
  5079. name: "Deity Size II",
  5080. height: math.unit(171907.2, "km")
  5081. }
  5082. ]
  5083. ))
  5084. characterMakers.push(() => makeCharacter(
  5085. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5086. {
  5087. side: {
  5088. height: math.unit(7.2, "meter"),
  5089. weight: math.unit(8.2, "tons"),
  5090. name: "Side",
  5091. image: {
  5092. source: "./media/characters/cryae/side.svg",
  5093. extra: 3500 / 1500
  5094. }
  5095. }
  5096. },
  5097. [
  5098. {
  5099. name: "Normal",
  5100. height: math.unit(7.2, "meter"),
  5101. default: true
  5102. }
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5107. {
  5108. front: {
  5109. height: math.unit(6, "feet"),
  5110. weight: math.unit(175, "lb"),
  5111. name: "Front",
  5112. image: {
  5113. source: "./media/characters/xera/front.svg",
  5114. extra: 2377 / 1972,
  5115. bottom: 75.5 / 2452
  5116. }
  5117. },
  5118. side: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(175, "lb"),
  5121. name: "Side",
  5122. image: {
  5123. source: "./media/characters/xera/side.svg",
  5124. extra: 2345 / 2019,
  5125. bottom: 39.7 / 2384
  5126. }
  5127. },
  5128. back: {
  5129. height: math.unit(6, "feet"),
  5130. weight: math.unit(175, "lb"),
  5131. name: "Back",
  5132. image: {
  5133. source: "./media/characters/xera/back.svg",
  5134. extra: 2095 / 1984,
  5135. bottom: 67 / 2166
  5136. }
  5137. },
  5138. },
  5139. [
  5140. {
  5141. name: "Small",
  5142. height: math.unit(10, "feet")
  5143. },
  5144. {
  5145. name: "Macro",
  5146. height: math.unit(500, "meters"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Macro+",
  5151. height: math.unit(10, "km")
  5152. },
  5153. {
  5154. name: "Gigamacro",
  5155. height: math.unit(25000, "km")
  5156. },
  5157. {
  5158. name: "Teramacro",
  5159. height: math.unit(3e6, "km")
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(6, "feet"),
  5168. weight: math.unit(175, "lb"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/nebula/front.svg",
  5172. extra: 2566 / 2362,
  5173. bottom: 81 / 2644
  5174. }
  5175. }
  5176. },
  5177. [
  5178. {
  5179. name: "Small",
  5180. height: math.unit(4.5, "meters")
  5181. },
  5182. {
  5183. name: "Macro",
  5184. height: math.unit(1500, "meters"),
  5185. default: true
  5186. },
  5187. {
  5188. name: "Megamacro",
  5189. height: math.unit(150, "km")
  5190. },
  5191. {
  5192. name: "Gigamacro",
  5193. height: math.unit(27000, "km")
  5194. }
  5195. ]
  5196. ))
  5197. characterMakers.push(() => makeCharacter(
  5198. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5199. {
  5200. front: {
  5201. height: math.unit(6, "feet"),
  5202. weight: math.unit(225, "lb"),
  5203. name: "Front",
  5204. image: {
  5205. source: "./media/characters/abysgar/front.svg",
  5206. extra: 1739/1614,
  5207. bottom: 71/1810
  5208. }
  5209. },
  5210. frontNsfw: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(225, "lb"),
  5213. name: "Front (NSFW)",
  5214. image: {
  5215. source: "./media/characters/abysgar/front-nsfw.svg",
  5216. extra: 1739/1614,
  5217. bottom: 71/1810
  5218. }
  5219. },
  5220. back: {
  5221. height: math.unit(4.6, "feet"),
  5222. weight: math.unit(225, "lb"),
  5223. name: "Back",
  5224. image: {
  5225. source: "./media/characters/abysgar/back.svg",
  5226. extra: 1384/1327,
  5227. bottom: 0/1384
  5228. }
  5229. },
  5230. head: {
  5231. height: math.unit(1.25, "feet"),
  5232. name: "Head",
  5233. image: {
  5234. source: "./media/characters/abysgar/head.svg",
  5235. extra: 669/569,
  5236. bottom: 0/669
  5237. }
  5238. },
  5239. },
  5240. [
  5241. {
  5242. name: "Small",
  5243. height: math.unit(4.5, "meters")
  5244. },
  5245. {
  5246. name: "Macro",
  5247. height: math.unit(1250, "meters"),
  5248. default: true
  5249. },
  5250. {
  5251. name: "Megamacro",
  5252. height: math.unit(125, "km")
  5253. },
  5254. {
  5255. name: "Gigamacro",
  5256. height: math.unit(26000, "km")
  5257. }
  5258. ]
  5259. ))
  5260. characterMakers.push(() => makeCharacter(
  5261. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5262. {
  5263. front: {
  5264. height: math.unit(6, "feet"),
  5265. weight: math.unit(180, "lb"),
  5266. name: "Front",
  5267. image: {
  5268. source: "./media/characters/yakuz/front.svg"
  5269. }
  5270. }
  5271. },
  5272. [
  5273. {
  5274. name: "Small",
  5275. height: math.unit(5, "meters")
  5276. },
  5277. {
  5278. name: "Macro",
  5279. height: math.unit(1500, "meters"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Megamacro",
  5284. height: math.unit(200, "km")
  5285. },
  5286. {
  5287. name: "Gigamacro",
  5288. height: math.unit(100000, "km")
  5289. }
  5290. ]
  5291. ))
  5292. characterMakers.push(() => makeCharacter(
  5293. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5294. {
  5295. front: {
  5296. height: math.unit(6, "feet"),
  5297. weight: math.unit(175, "lb"),
  5298. name: "Front",
  5299. image: {
  5300. source: "./media/characters/mirova/front.svg",
  5301. extra: 3334 / 3071,
  5302. bottom: 42 / 3375.6
  5303. }
  5304. }
  5305. },
  5306. [
  5307. {
  5308. name: "Small",
  5309. height: math.unit(5, "meters")
  5310. },
  5311. {
  5312. name: "Macro",
  5313. height: math.unit(900, "meters"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Megamacro",
  5318. height: math.unit(135, "km")
  5319. },
  5320. {
  5321. name: "Gigamacro",
  5322. height: math.unit(20000, "km")
  5323. }
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5328. {
  5329. side: {
  5330. height: math.unit(28.35, "feet"),
  5331. weight: math.unit(99.75, "tons"),
  5332. name: "Side",
  5333. image: {
  5334. source: "./media/characters/asana-mech/side.svg",
  5335. extra: 923 / 699,
  5336. bottom: 50 / 975
  5337. }
  5338. },
  5339. chaingun: {
  5340. height: math.unit(7, "feet"),
  5341. weight: math.unit(2400, "lb"),
  5342. name: "Chaingun",
  5343. image: {
  5344. source: "./media/characters/asana-mech/chaingun.svg"
  5345. }
  5346. },
  5347. laser: {
  5348. height: math.unit(7.12, "feet"),
  5349. weight: math.unit(2000, "lb"),
  5350. name: "Laser",
  5351. image: {
  5352. source: "./media/characters/asana-mech/laser.svg"
  5353. }
  5354. },
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(28.35, "feet"),
  5360. default: true
  5361. },
  5362. {
  5363. name: "Macro",
  5364. height: math.unit(2500, "feet")
  5365. },
  5366. {
  5367. name: "Megamacro",
  5368. height: math.unit(25, "miles")
  5369. },
  5370. {
  5371. name: "Examacro",
  5372. height: math.unit(6e8, "lightyears")
  5373. },
  5374. ]
  5375. ))
  5376. characterMakers.push(() => makeCharacter(
  5377. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5378. {
  5379. front: {
  5380. height: math.unit(5, "meters"),
  5381. weight: math.unit(1000, "kg"),
  5382. name: "Front",
  5383. image: {
  5384. source: "./media/characters/asche/front.svg",
  5385. extra: 1258 / 1190,
  5386. bottom: 47 / 1305
  5387. }
  5388. },
  5389. frontUnderwear: {
  5390. height: math.unit(5, "meters"),
  5391. weight: math.unit(1000, "kg"),
  5392. name: "Front (Underwear)",
  5393. image: {
  5394. source: "./media/characters/asche/front-underwear.svg",
  5395. extra: 1258 / 1190,
  5396. bottom: 47 / 1305
  5397. }
  5398. },
  5399. frontDressed: {
  5400. height: math.unit(5, "meters"),
  5401. weight: math.unit(1000, "kg"),
  5402. name: "Front (Dressed)",
  5403. image: {
  5404. source: "./media/characters/asche/front-dressed.svg",
  5405. extra: 1258 / 1190,
  5406. bottom: 47 / 1305
  5407. }
  5408. },
  5409. frontArmor: {
  5410. height: math.unit(5, "meters"),
  5411. weight: math.unit(1000, "kg"),
  5412. name: "Front (Armored)",
  5413. image: {
  5414. source: "./media/characters/asche/front-armored.svg",
  5415. extra: 1374 / 1308,
  5416. bottom: 23 / 1397
  5417. }
  5418. },
  5419. mp724: {
  5420. height: math.unit(0.96, "meters"),
  5421. weight: math.unit(38, "kg"),
  5422. name: "H&K MP724",
  5423. image: {
  5424. source: "./media/characters/asche/h&k-mp724.svg"
  5425. }
  5426. },
  5427. side: {
  5428. height: math.unit(5, "meters"),
  5429. weight: math.unit(1000, "kg"),
  5430. name: "Side",
  5431. image: {
  5432. source: "./media/characters/asche/side.svg",
  5433. extra: 1717 / 1609,
  5434. bottom: 0.005
  5435. }
  5436. },
  5437. back: {
  5438. height: math.unit(5, "meters"),
  5439. weight: math.unit(1000, "kg"),
  5440. name: "Back",
  5441. image: {
  5442. source: "./media/characters/asche/back.svg",
  5443. extra: 1570 / 1501
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "DEFCON 5",
  5450. height: math.unit(5, "meters")
  5451. },
  5452. {
  5453. name: "DEFCON 4",
  5454. height: math.unit(500, "meters"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "DEFCON 3",
  5459. height: math.unit(5, "km")
  5460. },
  5461. {
  5462. name: "DEFCON 2",
  5463. height: math.unit(500, "km")
  5464. },
  5465. {
  5466. name: "DEFCON 1",
  5467. height: math.unit(500000, "km")
  5468. },
  5469. {
  5470. name: "DEFCON 0",
  5471. height: math.unit(3, "gigaparsecs")
  5472. },
  5473. ]
  5474. ))
  5475. characterMakers.push(() => makeCharacter(
  5476. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5477. {
  5478. front: {
  5479. height: math.unit(7, "feet"),
  5480. weight: math.unit(92.7, "kg"),
  5481. name: "Front",
  5482. image: {
  5483. source: "./media/characters/gale/front.svg",
  5484. extra: 977/919,
  5485. bottom: 105/1082
  5486. }
  5487. },
  5488. side: {
  5489. height: math.unit(6.7, "feet"),
  5490. weight: math.unit(92.7, "kg"),
  5491. name: "Side",
  5492. image: {
  5493. source: "./media/characters/gale/side.svg",
  5494. extra: 978/922,
  5495. bottom: 140/1118
  5496. }
  5497. },
  5498. back: {
  5499. height: math.unit(7, "feet"),
  5500. weight: math.unit(92.7, "kg"),
  5501. name: "Back",
  5502. image: {
  5503. source: "./media/characters/gale/back.svg",
  5504. extra: 966/920,
  5505. bottom: 61/1027
  5506. }
  5507. },
  5508. maw: {
  5509. height: math.unit(2.23, "feet"),
  5510. name: "Maw",
  5511. image: {
  5512. source: "./media/characters/gale/maw.svg"
  5513. }
  5514. },
  5515. foot: {
  5516. height: math.unit(2.1, "feet"),
  5517. name: "Foot",
  5518. image: {
  5519. source: "./media/characters/gale/foot.svg"
  5520. }
  5521. },
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(7, "feet")
  5527. },
  5528. {
  5529. name: "Macro",
  5530. height: math.unit(150, "feet"),
  5531. default: true
  5532. },
  5533. {
  5534. name: "Macro+",
  5535. height: math.unit(300, "feet")
  5536. },
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5541. {
  5542. front: {
  5543. height: math.unit(5 + 10/12, "feet"),
  5544. weight: math.unit(67, "kg"),
  5545. name: "Front",
  5546. image: {
  5547. source: "./media/characters/draylen/front.svg",
  5548. extra: 832/777,
  5549. bottom: 85/917
  5550. }
  5551. }
  5552. },
  5553. [
  5554. {
  5555. name: "Normal",
  5556. height: math.unit(5 + 10/12, "feet")
  5557. },
  5558. {
  5559. name: "Macro",
  5560. height: math.unit(150, "feet"),
  5561. default: true
  5562. }
  5563. ]
  5564. ))
  5565. characterMakers.push(() => makeCharacter(
  5566. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5567. {
  5568. front: {
  5569. height: math.unit(7 + 9 / 12, "feet"),
  5570. weight: math.unit(379, "lbs"),
  5571. name: "Front",
  5572. image: {
  5573. source: "./media/characters/chez/front.svg"
  5574. }
  5575. },
  5576. side: {
  5577. height: math.unit(7 + 9 / 12, "feet"),
  5578. weight: math.unit(379, "lbs"),
  5579. name: "Side",
  5580. image: {
  5581. source: "./media/characters/chez/side.svg"
  5582. }
  5583. }
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(7 + 9 / 12, "feet"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "God King",
  5593. height: math.unit(9750000, "meters")
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(275, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/kaylum/front.svg",
  5606. bottom: 0.01,
  5607. extra: 1166 / 1031
  5608. }
  5609. },
  5610. frontWingless: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(275, "lbs"),
  5613. name: "Front (Wingless)",
  5614. image: {
  5615. source: "./media/characters/kaylum/front-wingless.svg",
  5616. bottom: 0.01,
  5617. extra: 1117 / 1031
  5618. }
  5619. }
  5620. },
  5621. [
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(3.05, "meters")
  5625. },
  5626. {
  5627. name: "Master",
  5628. height: math.unit(5.5, "meters")
  5629. },
  5630. {
  5631. name: "Rampage",
  5632. height: math.unit(19, "meters")
  5633. },
  5634. {
  5635. name: "Macro Lite",
  5636. height: math.unit(37, "meters")
  5637. },
  5638. {
  5639. name: "Hyper Predator",
  5640. height: math.unit(61, "meters")
  5641. },
  5642. {
  5643. name: "Macro",
  5644. height: math.unit(138, "meters"),
  5645. default: true
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5651. {
  5652. front: {
  5653. height: math.unit(5 + 5 / 12, "feet"),
  5654. weight: math.unit(120, "lbs"),
  5655. name: "Front",
  5656. image: {
  5657. source: "./media/characters/geta/front.svg",
  5658. extra: 1003/933,
  5659. bottom: 21/1024
  5660. }
  5661. },
  5662. paw: {
  5663. height: math.unit(0.35, "feet"),
  5664. name: "Paw",
  5665. image: {
  5666. source: "./media/characters/geta/paw.svg"
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Micro",
  5673. height: math.unit(3, "inches"),
  5674. default: true
  5675. },
  5676. {
  5677. name: "Normal",
  5678. height: math.unit(5 + 5 / 12, "feet")
  5679. }
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5684. {
  5685. front: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(300, "lbs"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/tyrnn/front.svg"
  5691. }
  5692. }
  5693. },
  5694. [
  5695. {
  5696. name: "Main Height",
  5697. height: math.unit(355, "feet"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Fave. Height",
  5702. height: math.unit(2400, "feet")
  5703. }
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5708. {
  5709. front: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(300, "lbs"),
  5712. name: "Front",
  5713. image: {
  5714. source: "./media/characters/appledectomy/front.svg"
  5715. }
  5716. }
  5717. },
  5718. [
  5719. {
  5720. name: "Macro",
  5721. height: math.unit(2500, "feet")
  5722. },
  5723. {
  5724. name: "Megamacro",
  5725. height: math.unit(50, "miles"),
  5726. default: true
  5727. },
  5728. {
  5729. name: "Gigamacro",
  5730. height: math.unit(5000, "miles")
  5731. },
  5732. {
  5733. name: "Teramacro",
  5734. height: math.unit(250000, "miles")
  5735. },
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(200, "lbs"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/vulpes/front.svg",
  5747. extra: 573 / 543,
  5748. bottom: 0.033
  5749. }
  5750. },
  5751. side: {
  5752. height: math.unit(6, "feet"),
  5753. weight: math.unit(200, "lbs"),
  5754. name: "Side",
  5755. image: {
  5756. source: "./media/characters/vulpes/side.svg",
  5757. extra: 577 / 549,
  5758. bottom: 11 / 588
  5759. }
  5760. },
  5761. back: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(200, "lbs"),
  5764. name: "Back",
  5765. image: {
  5766. source: "./media/characters/vulpes/back.svg",
  5767. extra: 573 / 549,
  5768. bottom: 20 / 593
  5769. }
  5770. },
  5771. feet: {
  5772. height: math.unit(1.276, "feet"),
  5773. name: "Feet",
  5774. image: {
  5775. source: "./media/characters/vulpes/feet.svg"
  5776. }
  5777. },
  5778. maw: {
  5779. height: math.unit(1.18, "feet"),
  5780. name: "Maw",
  5781. image: {
  5782. source: "./media/characters/vulpes/maw.svg"
  5783. }
  5784. },
  5785. },
  5786. [
  5787. {
  5788. name: "Micro",
  5789. height: math.unit(2, "inches")
  5790. },
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(6.3, "feet")
  5794. },
  5795. {
  5796. name: "Macro",
  5797. height: math.unit(850, "feet")
  5798. },
  5799. {
  5800. name: "Megamacro",
  5801. height: math.unit(7500, "feet"),
  5802. default: true
  5803. },
  5804. {
  5805. name: "Gigamacro",
  5806. height: math.unit(570000, "miles")
  5807. }
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5812. {
  5813. front: {
  5814. height: math.unit(6, "feet"),
  5815. weight: math.unit(210, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/rain-fallen/front.svg"
  5819. }
  5820. },
  5821. side: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(210, "lbs"),
  5824. name: "Side",
  5825. image: {
  5826. source: "./media/characters/rain-fallen/side.svg"
  5827. }
  5828. },
  5829. back: {
  5830. height: math.unit(6, "feet"),
  5831. weight: math.unit(210, "lbs"),
  5832. name: "Back",
  5833. image: {
  5834. source: "./media/characters/rain-fallen/back.svg"
  5835. }
  5836. },
  5837. feral: {
  5838. height: math.unit(9, "feet"),
  5839. weight: math.unit(700, "lbs"),
  5840. name: "Feral",
  5841. image: {
  5842. source: "./media/characters/rain-fallen/feral.svg"
  5843. }
  5844. },
  5845. },
  5846. [
  5847. {
  5848. name: "Meddling with Mortals",
  5849. height: math.unit(8 + 8/12, "feet")
  5850. },
  5851. {
  5852. name: "Normal",
  5853. height: math.unit(5, "meter")
  5854. },
  5855. {
  5856. name: "Macro",
  5857. height: math.unit(150, "meter"),
  5858. default: true
  5859. },
  5860. {
  5861. name: "Megamacro",
  5862. height: math.unit(278e6, "meter")
  5863. },
  5864. {
  5865. name: "Gigamacro",
  5866. height: math.unit(2e9, "meter")
  5867. },
  5868. {
  5869. name: "Teramacro",
  5870. height: math.unit(8e12, "meter")
  5871. },
  5872. {
  5873. name: "Devourer",
  5874. height: math.unit(14, "zettameters")
  5875. },
  5876. {
  5877. name: "Scarlet King",
  5878. height: math.unit(18, "yottameters")
  5879. },
  5880. {
  5881. name: "Void",
  5882. height: math.unit(1e88, "yottameters")
  5883. }
  5884. ]
  5885. ))
  5886. characterMakers.push(() => makeCharacter(
  5887. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5888. {
  5889. standing: {
  5890. height: math.unit(6, "feet"),
  5891. weight: math.unit(180, "lbs"),
  5892. name: "Standing",
  5893. image: {
  5894. source: "./media/characters/zaakira/standing.svg",
  5895. extra: 1599/1504,
  5896. bottom: 39/1638
  5897. }
  5898. },
  5899. laying: {
  5900. height: math.unit(3.3, "feet"),
  5901. weight: math.unit(180, "lbs"),
  5902. name: "Laying",
  5903. image: {
  5904. source: "./media/characters/zaakira/laying.svg"
  5905. }
  5906. },
  5907. },
  5908. [
  5909. {
  5910. name: "Normal",
  5911. height: math.unit(12, "feet")
  5912. },
  5913. {
  5914. name: "Macro",
  5915. height: math.unit(279, "feet"),
  5916. default: true
  5917. }
  5918. ]
  5919. ))
  5920. characterMakers.push(() => makeCharacter(
  5921. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5922. {
  5923. femSfw: {
  5924. height: math.unit(8, "feet"),
  5925. weight: math.unit(350, "lb"),
  5926. name: "Fem",
  5927. image: {
  5928. source: "./media/characters/sigvald/fem-sfw.svg",
  5929. extra: 182 / 164,
  5930. bottom: 8.7 / 190.5
  5931. }
  5932. },
  5933. femNsfw: {
  5934. height: math.unit(8, "feet"),
  5935. weight: math.unit(350, "lb"),
  5936. name: "Fem (NSFW)",
  5937. image: {
  5938. source: "./media/characters/sigvald/fem-nsfw.svg",
  5939. extra: 182 / 164,
  5940. bottom: 8.7 / 190.5
  5941. }
  5942. },
  5943. maleNsfw: {
  5944. height: math.unit(8, "feet"),
  5945. weight: math.unit(350, "lb"),
  5946. name: "Male (NSFW)",
  5947. image: {
  5948. source: "./media/characters/sigvald/male-nsfw.svg",
  5949. extra: 182 / 164,
  5950. bottom: 8.7 / 190.5
  5951. }
  5952. },
  5953. hermNsfw: {
  5954. height: math.unit(8, "feet"),
  5955. weight: math.unit(350, "lb"),
  5956. name: "Herm (NSFW)",
  5957. image: {
  5958. source: "./media/characters/sigvald/herm-nsfw.svg",
  5959. extra: 182 / 164,
  5960. bottom: 8.7 / 190.5
  5961. }
  5962. },
  5963. dick: {
  5964. height: math.unit(2.36, "feet"),
  5965. name: "Dick",
  5966. image: {
  5967. source: "./media/characters/sigvald/dick.svg"
  5968. }
  5969. },
  5970. eye: {
  5971. height: math.unit(0.31, "feet"),
  5972. name: "Eye",
  5973. image: {
  5974. source: "./media/characters/sigvald/eye.svg"
  5975. }
  5976. },
  5977. mouth: {
  5978. height: math.unit(0.92, "feet"),
  5979. name: "Mouth",
  5980. image: {
  5981. source: "./media/characters/sigvald/mouth.svg"
  5982. }
  5983. },
  5984. paws: {
  5985. height: math.unit(2.2, "feet"),
  5986. name: "Paws",
  5987. image: {
  5988. source: "./media/characters/sigvald/paws.svg"
  5989. }
  5990. }
  5991. },
  5992. [
  5993. {
  5994. name: "Normal",
  5995. height: math.unit(8, "feet")
  5996. },
  5997. {
  5998. name: "Large",
  5999. height: math.unit(12, "feet")
  6000. },
  6001. {
  6002. name: "Larger",
  6003. height: math.unit(20, "feet")
  6004. },
  6005. {
  6006. name: "Macro",
  6007. height: math.unit(150, "feet")
  6008. },
  6009. {
  6010. name: "Macro+",
  6011. height: math.unit(200, "feet"),
  6012. default: true
  6013. },
  6014. ]
  6015. ))
  6016. characterMakers.push(() => makeCharacter(
  6017. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6018. {
  6019. side: {
  6020. height: math.unit(12, "feet"),
  6021. weight: math.unit(2000, "kg"),
  6022. name: "Side",
  6023. image: {
  6024. source: "./media/characters/scott/side.svg",
  6025. extra: 754 / 724,
  6026. bottom: 0.069
  6027. }
  6028. },
  6029. upright: {
  6030. height: math.unit(12, "feet"),
  6031. weight: math.unit(2000, "kg"),
  6032. name: "Upright",
  6033. image: {
  6034. source: "./media/characters/scott/upright.svg",
  6035. extra: 3881 / 3722,
  6036. bottom: 0.05
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Normal",
  6043. height: math.unit(12, "feet"),
  6044. default: true
  6045. },
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6050. {
  6051. side: {
  6052. height: math.unit(8, "meters"),
  6053. weight: math.unit(84755, "lbs"),
  6054. name: "Side",
  6055. image: {
  6056. source: "./media/characters/tobias/side.svg",
  6057. extra: 1474 / 1096,
  6058. bottom: 38.9 / 1513.1235
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(8, "meters"),
  6066. default: true
  6067. },
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6072. {
  6073. front: {
  6074. height: math.unit(5.5, "feet"),
  6075. weight: math.unit(400, "lbs"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/kieran/front.svg",
  6079. extra: 2694 / 2364,
  6080. bottom: 217 / 2908
  6081. }
  6082. },
  6083. side: {
  6084. height: math.unit(5.5, "feet"),
  6085. weight: math.unit(400, "lbs"),
  6086. name: "Side",
  6087. image: {
  6088. source: "./media/characters/kieran/side.svg",
  6089. extra: 875 / 777,
  6090. bottom: 84.6 / 959
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Normal",
  6097. height: math.unit(5.5, "feet"),
  6098. default: true
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6104. {
  6105. side: {
  6106. height: math.unit(2, "meters"),
  6107. weight: math.unit(70, "kg"),
  6108. name: "Side",
  6109. image: {
  6110. source: "./media/characters/sanya/side.svg",
  6111. bottom: 0.02,
  6112. extra: 1.02
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Small",
  6119. height: math.unit(2, "meters")
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(3, "meters")
  6124. },
  6125. {
  6126. name: "Macro",
  6127. height: math.unit(16, "meters"),
  6128. default: true
  6129. },
  6130. ]
  6131. ))
  6132. characterMakers.push(() => makeCharacter(
  6133. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6134. {
  6135. front: {
  6136. height: math.unit(2, "meters"),
  6137. weight: math.unit(120, "kg"),
  6138. name: "Front",
  6139. image: {
  6140. source: "./media/characters/miranda/front.svg",
  6141. extra: 195 / 185,
  6142. bottom: 10.9 / 206.5
  6143. }
  6144. },
  6145. back: {
  6146. height: math.unit(2, "meters"),
  6147. weight: math.unit(120, "kg"),
  6148. name: "Back",
  6149. image: {
  6150. source: "./media/characters/miranda/back.svg",
  6151. extra: 201 / 193,
  6152. bottom: 2.3 / 203.7
  6153. }
  6154. },
  6155. },
  6156. [
  6157. {
  6158. name: "Normal",
  6159. height: math.unit(10, "feet"),
  6160. default: true
  6161. }
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "James", species: ["deer"], tags: ["anthro"] },
  6166. {
  6167. side: {
  6168. height: math.unit(2, "meters"),
  6169. weight: math.unit(100, "kg"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/james/front.svg",
  6173. extra: 10 / 8.5
  6174. }
  6175. },
  6176. },
  6177. [
  6178. {
  6179. name: "Normal",
  6180. height: math.unit(8.5, "feet"),
  6181. default: true
  6182. }
  6183. ]
  6184. ))
  6185. characterMakers.push(() => makeCharacter(
  6186. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6187. {
  6188. side: {
  6189. height: math.unit(9.5, "feet"),
  6190. weight: math.unit(2500, "lbs"),
  6191. name: "Side",
  6192. image: {
  6193. source: "./media/characters/heather/side.svg"
  6194. }
  6195. },
  6196. },
  6197. [
  6198. {
  6199. name: "Normal",
  6200. height: math.unit(9.5, "feet"),
  6201. default: true
  6202. }
  6203. ]
  6204. ))
  6205. characterMakers.push(() => makeCharacter(
  6206. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6207. {
  6208. side: {
  6209. height: math.unit(6.5, "feet"),
  6210. weight: math.unit(400, "lbs"),
  6211. name: "Side",
  6212. image: {
  6213. source: "./media/characters/lukas/side.svg",
  6214. extra: 7.25 / 6.5
  6215. }
  6216. },
  6217. },
  6218. [
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(6.5, "feet"),
  6222. default: true
  6223. }
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6228. {
  6229. side: {
  6230. height: math.unit(5, "feet"),
  6231. weight: math.unit(3000, "lbs"),
  6232. name: "Side",
  6233. image: {
  6234. source: "./media/characters/louise/side.svg"
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(5, "feet"),
  6242. default: true
  6243. }
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6248. {
  6249. side: {
  6250. height: math.unit(6, "feet"),
  6251. weight: math.unit(150, "lbs"),
  6252. name: "Side",
  6253. image: {
  6254. source: "./media/characters/ramona/side.svg",
  6255. extra: 871/854,
  6256. bottom: 41/912
  6257. }
  6258. },
  6259. },
  6260. [
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(6 + 4/12, "feet")
  6264. },
  6265. {
  6266. name: "Minimacro",
  6267. height: math.unit(5.3, "meters"),
  6268. default: true
  6269. },
  6270. {
  6271. name: "Macro",
  6272. height: math.unit(20, "stories")
  6273. },
  6274. {
  6275. name: "Macro+",
  6276. height: math.unit(50, "stories")
  6277. },
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6282. {
  6283. standing: {
  6284. height: math.unit(5.75, "feet"),
  6285. weight: math.unit(160, "lbs"),
  6286. name: "Standing",
  6287. image: {
  6288. source: "./media/characters/deerpuff/standing.svg",
  6289. extra: 682 / 624
  6290. }
  6291. },
  6292. sitting: {
  6293. height: math.unit(5.75 / 1.79, "feet"),
  6294. weight: math.unit(160, "lbs"),
  6295. name: "Sitting",
  6296. image: {
  6297. source: "./media/characters/deerpuff/sitting.svg",
  6298. bottom: 44 / 400,
  6299. extra: 1
  6300. }
  6301. },
  6302. taurLaying: {
  6303. height: math.unit(6, "feet"),
  6304. weight: math.unit(400, "lbs"),
  6305. name: "Taur (Laying)",
  6306. image: {
  6307. source: "./media/characters/deerpuff/taur-laying.svg"
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Puffball",
  6314. height: math.unit(6, "inches")
  6315. },
  6316. {
  6317. name: "Normalpuff",
  6318. height: math.unit(5.75, "feet")
  6319. },
  6320. {
  6321. name: "Macropuff",
  6322. height: math.unit(1500, "feet"),
  6323. default: true
  6324. },
  6325. {
  6326. name: "Megapuff",
  6327. height: math.unit(500, "miles")
  6328. },
  6329. {
  6330. name: "Gigapuff",
  6331. height: math.unit(250000, "miles")
  6332. },
  6333. {
  6334. name: "Omegapuff",
  6335. height: math.unit(1000, "lightyears")
  6336. },
  6337. ]
  6338. ))
  6339. characterMakers.push(() => makeCharacter(
  6340. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6341. {
  6342. stomping: {
  6343. height: math.unit(6, "feet"),
  6344. weight: math.unit(170, "lbs"),
  6345. name: "Stomping",
  6346. image: {
  6347. source: "./media/characters/vivian/stomping.svg"
  6348. }
  6349. },
  6350. sitting: {
  6351. height: math.unit(6 / 1.75, "feet"),
  6352. weight: math.unit(170, "lbs"),
  6353. name: "Sitting",
  6354. image: {
  6355. source: "./media/characters/vivian/sitting.svg",
  6356. bottom: 1 / 6.4,
  6357. extra: 1,
  6358. }
  6359. },
  6360. },
  6361. [
  6362. {
  6363. name: "Normal",
  6364. height: math.unit(7, "feet"),
  6365. default: true
  6366. },
  6367. {
  6368. name: "Macro",
  6369. height: math.unit(10, "stories")
  6370. },
  6371. {
  6372. name: "Macro+",
  6373. height: math.unit(30, "stories")
  6374. },
  6375. {
  6376. name: "Megamacro",
  6377. height: math.unit(10, "miles")
  6378. },
  6379. {
  6380. name: "Megamacro+",
  6381. height: math.unit(2750000, "meters")
  6382. },
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6387. {
  6388. front: {
  6389. height: math.unit(6, "feet"),
  6390. weight: math.unit(160, "lbs"),
  6391. name: "Front",
  6392. image: {
  6393. source: "./media/characters/prince/front.svg",
  6394. extra: 1938/1682,
  6395. bottom: 45/1983
  6396. }
  6397. },
  6398. back: {
  6399. height: math.unit(6, "feet"),
  6400. weight: math.unit(160, "lbs"),
  6401. name: "Back",
  6402. image: {
  6403. source: "./media/characters/prince/back.svg",
  6404. extra: 1955/1726,
  6405. bottom: 6/1961
  6406. }
  6407. },
  6408. },
  6409. [
  6410. {
  6411. name: "Normal",
  6412. height: math.unit(7.75, "feet"),
  6413. default: true
  6414. },
  6415. {
  6416. name: "Not cute",
  6417. height: math.unit(17, "feet")
  6418. },
  6419. {
  6420. name: "I said NOT",
  6421. height: math.unit(91, "feet")
  6422. },
  6423. {
  6424. name: "Please stop",
  6425. height: math.unit(560, "feet")
  6426. },
  6427. {
  6428. name: "What have you done",
  6429. height: math.unit(2200, "feet")
  6430. },
  6431. {
  6432. name: "Deer God",
  6433. height: math.unit(3.6, "miles")
  6434. },
  6435. ]
  6436. ))
  6437. characterMakers.push(() => makeCharacter(
  6438. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6439. {
  6440. standing: {
  6441. height: math.unit(6, "feet"),
  6442. weight: math.unit(300, "lbs"),
  6443. name: "Standing",
  6444. image: {
  6445. source: "./media/characters/psymon/standing.svg",
  6446. extra: 1888 / 1810,
  6447. bottom: 0.05
  6448. }
  6449. },
  6450. slithering: {
  6451. height: math.unit(6, "feet"),
  6452. weight: math.unit(300, "lbs"),
  6453. name: "Slithering",
  6454. image: {
  6455. source: "./media/characters/psymon/slithering.svg",
  6456. extra: 1330 / 1224
  6457. }
  6458. },
  6459. slitheringAlt: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(300, "lbs"),
  6462. name: "Slithering (Alt)",
  6463. image: {
  6464. source: "./media/characters/psymon/slithering-alt.svg",
  6465. extra: 1330 / 1224
  6466. }
  6467. },
  6468. },
  6469. [
  6470. {
  6471. name: "Normal",
  6472. height: math.unit(11.25, "feet"),
  6473. default: true
  6474. },
  6475. {
  6476. name: "Large",
  6477. height: math.unit(27, "feet")
  6478. },
  6479. {
  6480. name: "Giant",
  6481. height: math.unit(87, "feet")
  6482. },
  6483. {
  6484. name: "Macro",
  6485. height: math.unit(365, "feet")
  6486. },
  6487. {
  6488. name: "Megamacro",
  6489. height: math.unit(3, "miles")
  6490. },
  6491. {
  6492. name: "World Serpent",
  6493. height: math.unit(8000, "miles")
  6494. },
  6495. ]
  6496. ))
  6497. characterMakers.push(() => makeCharacter(
  6498. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6499. {
  6500. front: {
  6501. height: math.unit(6, "feet"),
  6502. weight: math.unit(180, "lbs"),
  6503. name: "Front",
  6504. image: {
  6505. source: "./media/characters/daimos/front.svg",
  6506. extra: 4160 / 3897,
  6507. bottom: 0.021
  6508. }
  6509. }
  6510. },
  6511. [
  6512. {
  6513. name: "Normal",
  6514. height: math.unit(8, "feet"),
  6515. default: true
  6516. },
  6517. {
  6518. name: "Big Dog",
  6519. height: math.unit(22, "feet")
  6520. },
  6521. {
  6522. name: "Macro",
  6523. height: math.unit(127, "feet")
  6524. },
  6525. {
  6526. name: "Megamacro",
  6527. height: math.unit(3600, "feet")
  6528. },
  6529. ]
  6530. ))
  6531. characterMakers.push(() => makeCharacter(
  6532. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6533. {
  6534. side: {
  6535. height: math.unit(6, "feet"),
  6536. weight: math.unit(180, "lbs"),
  6537. name: "Side",
  6538. image: {
  6539. source: "./media/characters/blake/side.svg",
  6540. extra: 1212 / 1120,
  6541. bottom: 0.05
  6542. }
  6543. },
  6544. crouched: {
  6545. height: math.unit(6 * 0.57, "feet"),
  6546. weight: math.unit(180, "lbs"),
  6547. name: "Crouched",
  6548. image: {
  6549. source: "./media/characters/blake/crouched.svg",
  6550. extra: 840 / 587,
  6551. bottom: 0.04
  6552. }
  6553. },
  6554. bent: {
  6555. height: math.unit(6 * 0.75, "feet"),
  6556. weight: math.unit(180, "lbs"),
  6557. name: "Bent",
  6558. image: {
  6559. source: "./media/characters/blake/bent.svg",
  6560. extra: 592 / 544,
  6561. bottom: 0.035
  6562. }
  6563. },
  6564. },
  6565. [
  6566. {
  6567. name: "Normal",
  6568. height: math.unit(8 + 1 / 6, "feet"),
  6569. default: true
  6570. },
  6571. {
  6572. name: "Big Backside",
  6573. height: math.unit(37, "feet")
  6574. },
  6575. {
  6576. name: "Subway Shredder",
  6577. height: math.unit(72, "feet")
  6578. },
  6579. {
  6580. name: "City Carver",
  6581. height: math.unit(1675, "feet")
  6582. },
  6583. {
  6584. name: "Tectonic Tweaker",
  6585. height: math.unit(2300, "miles")
  6586. },
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6591. {
  6592. front: {
  6593. height: math.unit(6, "feet"),
  6594. weight: math.unit(180, "lbs"),
  6595. name: "Front",
  6596. image: {
  6597. source: "./media/characters/guisetto/front.svg",
  6598. extra: 856 / 817,
  6599. bottom: 0.06
  6600. }
  6601. },
  6602. airborne: {
  6603. height: math.unit(6, "feet"),
  6604. weight: math.unit(180, "lbs"),
  6605. name: "Airborne",
  6606. image: {
  6607. source: "./media/characters/guisetto/airborne.svg",
  6608. extra: 584 / 525
  6609. }
  6610. },
  6611. },
  6612. [
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(10 + 11 / 12, "feet"),
  6616. default: true
  6617. },
  6618. {
  6619. name: "Large",
  6620. height: math.unit(35, "feet")
  6621. },
  6622. {
  6623. name: "Macro",
  6624. height: math.unit(475, "feet")
  6625. },
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6630. {
  6631. front: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(180, "lbs"),
  6634. name: "Front",
  6635. image: {
  6636. source: "./media/characters/luxor/front.svg",
  6637. extra: 2940 / 2152
  6638. }
  6639. },
  6640. back: {
  6641. height: math.unit(6, "feet"),
  6642. weight: math.unit(180, "lbs"),
  6643. name: "Back",
  6644. image: {
  6645. source: "./media/characters/luxor/back.svg",
  6646. extra: 1083 / 960
  6647. }
  6648. },
  6649. },
  6650. [
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(5 + 5 / 6, "feet"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Lamp",
  6658. height: math.unit(50, "feet")
  6659. },
  6660. {
  6661. name: "Lämp",
  6662. height: math.unit(300, "feet")
  6663. },
  6664. {
  6665. name: "The sun is a lamp",
  6666. height: math.unit(250000, "miles")
  6667. },
  6668. ]
  6669. ))
  6670. characterMakers.push(() => makeCharacter(
  6671. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6672. {
  6673. front: {
  6674. height: math.unit(6, "feet"),
  6675. weight: math.unit(50, "lbs"),
  6676. name: "Front",
  6677. image: {
  6678. source: "./media/characters/huoyan/front.svg"
  6679. }
  6680. },
  6681. side: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(180, "lbs"),
  6684. name: "Side",
  6685. image: {
  6686. source: "./media/characters/huoyan/side.svg"
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Chef",
  6693. height: math.unit(9, "feet")
  6694. },
  6695. {
  6696. name: "Normal",
  6697. height: math.unit(65, "feet"),
  6698. default: true
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(780, "feet")
  6703. },
  6704. {
  6705. name: "Flaming Mountain",
  6706. height: math.unit(4.8, "miles")
  6707. },
  6708. {
  6709. name: "Celestial",
  6710. height: math.unit(765000, "miles")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(5 + 3 / 4, "feet"),
  6719. weight: math.unit(120, "lbs"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/tails/front.svg"
  6723. }
  6724. }
  6725. },
  6726. [
  6727. {
  6728. name: "Normal",
  6729. height: math.unit(5 + 3 / 4, "feet"),
  6730. default: true
  6731. }
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6736. {
  6737. front: {
  6738. height: math.unit(4, "feet"),
  6739. weight: math.unit(50, "lbs"),
  6740. name: "Front",
  6741. image: {
  6742. source: "./media/characters/rainy/front.svg"
  6743. }
  6744. }
  6745. },
  6746. [
  6747. {
  6748. name: "Macro",
  6749. height: math.unit(800, "feet"),
  6750. default: true
  6751. }
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6756. {
  6757. front: {
  6758. height: math.unit(6, "feet"),
  6759. weight: math.unit(150, "lbs"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/rainier/front.svg"
  6763. }
  6764. }
  6765. },
  6766. [
  6767. {
  6768. name: "Micro",
  6769. height: math.unit(2, "mm"),
  6770. default: true
  6771. }
  6772. ]
  6773. ))
  6774. characterMakers.push(() => makeCharacter(
  6775. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6776. {
  6777. front: {
  6778. height: math.unit(8 + 4/12, "feet"),
  6779. weight: math.unit(450, "kilograms"),
  6780. volume: math.unit(5, "cups"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/andy-renard/front.svg",
  6784. extra: 1839/1726,
  6785. bottom: 134/1973
  6786. }
  6787. },
  6788. back: {
  6789. height: math.unit(8 + 4/12, "feet"),
  6790. weight: math.unit(450, "kilograms"),
  6791. volume: math.unit(5, "cups"),
  6792. name: "Back",
  6793. image: {
  6794. source: "./media/characters/andy-renard/back.svg",
  6795. extra: 1838/1710,
  6796. bottom: 105/1943
  6797. }
  6798. },
  6799. },
  6800. [
  6801. {
  6802. name: "Tall",
  6803. height: math.unit(8 + 4/12, "feet")
  6804. },
  6805. {
  6806. name: "Mini Macro",
  6807. height: math.unit(15, "feet"),
  6808. default: true
  6809. },
  6810. {
  6811. name: "Macro",
  6812. height: math.unit(100, "feet")
  6813. },
  6814. {
  6815. name: "Mega Macro",
  6816. height: math.unit(1000, "feet")
  6817. },
  6818. {
  6819. name: "Giga Macro",
  6820. height: math.unit(10, "miles")
  6821. },
  6822. {
  6823. name: "God Macro",
  6824. height: math.unit(1, "multiverse")
  6825. },
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(6, "feet"),
  6833. weight: math.unit(210, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/cimmaron/front-sfw.svg",
  6837. extra: 701 / 676,
  6838. bottom: 0.046
  6839. }
  6840. },
  6841. back: {
  6842. height: math.unit(6, "feet"),
  6843. weight: math.unit(210, "lbs"),
  6844. name: "Back",
  6845. image: {
  6846. source: "./media/characters/cimmaron/back-sfw.svg",
  6847. extra: 701 / 676,
  6848. bottom: 0.046
  6849. }
  6850. },
  6851. frontNsfw: {
  6852. height: math.unit(6, "feet"),
  6853. weight: math.unit(210, "lbs"),
  6854. name: "Front (NSFW)",
  6855. image: {
  6856. source: "./media/characters/cimmaron/front-nsfw.svg",
  6857. extra: 701 / 676,
  6858. bottom: 0.046
  6859. }
  6860. },
  6861. backNsfw: {
  6862. height: math.unit(6, "feet"),
  6863. weight: math.unit(210, "lbs"),
  6864. name: "Back (NSFW)",
  6865. image: {
  6866. source: "./media/characters/cimmaron/back-nsfw.svg",
  6867. extra: 701 / 676,
  6868. bottom: 0.046
  6869. }
  6870. },
  6871. dick: {
  6872. height: math.unit(1.714, "feet"),
  6873. name: "Dick",
  6874. image: {
  6875. source: "./media/characters/cimmaron/dick.svg"
  6876. }
  6877. },
  6878. },
  6879. [
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(6, "feet"),
  6883. default: true
  6884. },
  6885. {
  6886. name: "Macro Mayor",
  6887. height: math.unit(350, "meters")
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(200, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/akari/front.svg",
  6900. extra: 962 / 901,
  6901. bottom: 0.04
  6902. }
  6903. }
  6904. },
  6905. [
  6906. {
  6907. name: "Micro",
  6908. height: math.unit(5, "inches"),
  6909. default: true
  6910. },
  6911. {
  6912. name: "Normal",
  6913. height: math.unit(7, "feet")
  6914. },
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6919. {
  6920. front: {
  6921. height: math.unit(6, "feet"),
  6922. weight: math.unit(140, "lbs"),
  6923. name: "Front",
  6924. image: {
  6925. source: "./media/characters/cynosura/front.svg",
  6926. extra: 437/410,
  6927. bottom: 9/446
  6928. }
  6929. },
  6930. back: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(140, "lbs"),
  6933. name: "Back",
  6934. image: {
  6935. source: "./media/characters/cynosura/back.svg",
  6936. extra: 1304/1160,
  6937. bottom: 71/1375
  6938. }
  6939. },
  6940. },
  6941. [
  6942. {
  6943. name: "Micro",
  6944. height: math.unit(4, "inches")
  6945. },
  6946. {
  6947. name: "Normal",
  6948. height: math.unit(5.75, "feet"),
  6949. default: true
  6950. },
  6951. {
  6952. name: "Tall",
  6953. height: math.unit(10, "feet")
  6954. },
  6955. {
  6956. name: "Big",
  6957. height: math.unit(20, "feet")
  6958. },
  6959. {
  6960. name: "Macro",
  6961. height: math.unit(50, "feet")
  6962. },
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6967. {
  6968. front: {
  6969. height: math.unit(13 + 2/12, "feet"),
  6970. weight: math.unit(800, "kg"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/gin/front.svg",
  6974. extra: 1312/1191,
  6975. bottom: 45/1357
  6976. }
  6977. },
  6978. mouth: {
  6979. height: math.unit(2.39 * 1.8, "feet"),
  6980. name: "Mouth",
  6981. image: {
  6982. source: "./media/characters/gin/mouth.svg"
  6983. }
  6984. },
  6985. hand: {
  6986. height: math.unit(1.57 * 2.19, "feet"),
  6987. name: "Hand",
  6988. image: {
  6989. source: "./media/characters/gin/hand.svg"
  6990. }
  6991. },
  6992. foot: {
  6993. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6994. name: "Foot",
  6995. image: {
  6996. source: "./media/characters/gin/foot.svg"
  6997. }
  6998. },
  6999. sole: {
  7000. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7001. name: "Sole",
  7002. image: {
  7003. source: "./media/characters/gin/sole.svg"
  7004. }
  7005. },
  7006. },
  7007. [
  7008. {
  7009. name: "Very Small",
  7010. height: math.unit(13 + 2 / 12, "feet")
  7011. },
  7012. {
  7013. name: "Micro",
  7014. height: math.unit(600, "miles")
  7015. },
  7016. {
  7017. name: "Regular",
  7018. height: math.unit(20, "earths"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(2.2, "solarradii")
  7024. },
  7025. {
  7026. name: "Teramacro",
  7027. height: math.unit(1.2, "galaxies")
  7028. },
  7029. {
  7030. name: "Omegamacro",
  7031. height: math.unit(200, "universes")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6 + 1 / 6, "feet"),
  7040. weight: math.unit(178, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/guy/front.svg"
  7044. }
  7045. }
  7046. },
  7047. [
  7048. {
  7049. name: "Normal",
  7050. height: math.unit(6 + 1 / 6, "feet"),
  7051. default: true
  7052. },
  7053. {
  7054. name: "Large",
  7055. height: math.unit(25 + 7 / 12, "feet")
  7056. },
  7057. {
  7058. name: "Macro",
  7059. height: math.unit(60 + 9 / 12, "feet")
  7060. },
  7061. {
  7062. name: "Macro+",
  7063. height: math.unit(246, "feet")
  7064. },
  7065. {
  7066. name: "Macro++",
  7067. height: math.unit(878, "feet")
  7068. }
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7073. {
  7074. front: {
  7075. height: math.unit(9, "feet"),
  7076. weight: math.unit(800, "lbs"),
  7077. name: "Front",
  7078. image: {
  7079. source: "./media/characters/tiberius/front.svg",
  7080. extra: 2295 / 2071
  7081. }
  7082. },
  7083. back: {
  7084. height: math.unit(9, "feet"),
  7085. weight: math.unit(800, "lbs"),
  7086. name: "Back",
  7087. image: {
  7088. source: "./media/characters/tiberius/back.svg",
  7089. extra: 2373 / 2160
  7090. }
  7091. },
  7092. },
  7093. [
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(9, "feet"),
  7097. default: true
  7098. }
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(600, "lbs"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/surgo/front.svg",
  7110. extra: 3591 / 2227
  7111. }
  7112. },
  7113. back: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(600, "lbs"),
  7116. name: "Back",
  7117. image: {
  7118. source: "./media/characters/surgo/back.svg",
  7119. extra: 3557 / 2228
  7120. }
  7121. },
  7122. laying: {
  7123. height: math.unit(6 * 0.85, "feet"),
  7124. weight: math.unit(600, "lbs"),
  7125. name: "Laying",
  7126. image: {
  7127. source: "./media/characters/surgo/laying.svg"
  7128. }
  7129. },
  7130. },
  7131. [
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(6, "feet"),
  7135. default: true
  7136. }
  7137. ]
  7138. ))
  7139. characterMakers.push(() => makeCharacter(
  7140. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7141. {
  7142. side: {
  7143. height: math.unit(6, "feet"),
  7144. weight: math.unit(150, "lbs"),
  7145. name: "Side",
  7146. image: {
  7147. source: "./media/characters/cibus/side.svg",
  7148. extra: 800 / 400
  7149. }
  7150. },
  7151. },
  7152. [
  7153. {
  7154. name: "Normal",
  7155. height: math.unit(6, "feet"),
  7156. default: true
  7157. }
  7158. ]
  7159. ))
  7160. characterMakers.push(() => makeCharacter(
  7161. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7162. {
  7163. front: {
  7164. height: math.unit(6, "feet"),
  7165. weight: math.unit(240, "lbs"),
  7166. name: "Front",
  7167. image: {
  7168. source: "./media/characters/nibbles/front.svg"
  7169. }
  7170. },
  7171. side: {
  7172. height: math.unit(6, "feet"),
  7173. weight: math.unit(240, "lbs"),
  7174. name: "Side",
  7175. image: {
  7176. source: "./media/characters/nibbles/side.svg"
  7177. }
  7178. },
  7179. },
  7180. [
  7181. {
  7182. name: "Normal",
  7183. height: math.unit(9, "feet"),
  7184. default: true
  7185. }
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7190. {
  7191. side: {
  7192. height: math.unit(5 + 1 / 6, "feet"),
  7193. weight: math.unit(130, "lbs"),
  7194. name: "Side",
  7195. image: {
  7196. source: "./media/characters/rikky/side.svg",
  7197. extra: 851 / 801
  7198. }
  7199. },
  7200. },
  7201. [
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(5 + 1 / 6, "feet")
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(152, "feet"),
  7209. default: true
  7210. },
  7211. {
  7212. name: "Megamacro",
  7213. height: math.unit(7, "miles")
  7214. }
  7215. ]
  7216. ))
  7217. characterMakers.push(() => makeCharacter(
  7218. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7219. {
  7220. side: {
  7221. height: math.unit(370, "cm"),
  7222. weight: math.unit(350, "lbs"),
  7223. name: "Side",
  7224. image: {
  7225. source: "./media/characters/malfressa/side.svg"
  7226. }
  7227. },
  7228. walking: {
  7229. height: math.unit(370, "cm"),
  7230. weight: math.unit(350, "lbs"),
  7231. name: "Walking",
  7232. image: {
  7233. source: "./media/characters/malfressa/walking.svg"
  7234. }
  7235. },
  7236. feral: {
  7237. height: math.unit(2500, "cm"),
  7238. weight: math.unit(100000, "lbs"),
  7239. name: "Feral",
  7240. image: {
  7241. source: "./media/characters/malfressa/feral.svg",
  7242. extra: 2108 / 837,
  7243. bottom: 0.02
  7244. }
  7245. },
  7246. },
  7247. [
  7248. {
  7249. name: "Normal",
  7250. height: math.unit(370, "cm")
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(300, "meters"),
  7255. default: true
  7256. }
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7261. {
  7262. front: {
  7263. height: math.unit(6, "feet"),
  7264. weight: math.unit(60, "kg"),
  7265. name: "Front",
  7266. image: {
  7267. source: "./media/characters/jaro/front.svg",
  7268. extra: 845/817,
  7269. bottom: 45/890
  7270. }
  7271. },
  7272. back: {
  7273. height: math.unit(6, "feet"),
  7274. weight: math.unit(60, "kg"),
  7275. name: "Back",
  7276. image: {
  7277. source: "./media/characters/jaro/back.svg",
  7278. extra: 847/817,
  7279. bottom: 34/881
  7280. }
  7281. },
  7282. },
  7283. [
  7284. {
  7285. name: "Micro",
  7286. height: math.unit(7, "inches")
  7287. },
  7288. {
  7289. name: "Normal",
  7290. height: math.unit(5.5, "feet"),
  7291. default: true
  7292. },
  7293. {
  7294. name: "Minimacro",
  7295. height: math.unit(20, "feet")
  7296. },
  7297. {
  7298. name: "Macro",
  7299. height: math.unit(200, "meters")
  7300. }
  7301. ]
  7302. ))
  7303. characterMakers.push(() => makeCharacter(
  7304. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7305. {
  7306. front: {
  7307. height: math.unit(6, "feet"),
  7308. weight: math.unit(195, "lb"),
  7309. name: "Front",
  7310. image: {
  7311. source: "./media/characters/rogue/front.svg"
  7312. }
  7313. },
  7314. },
  7315. [
  7316. {
  7317. name: "Macro",
  7318. height: math.unit(90, "feet"),
  7319. default: true
  7320. },
  7321. ]
  7322. ))
  7323. characterMakers.push(() => makeCharacter(
  7324. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7325. {
  7326. standing: {
  7327. height: math.unit(5 + 8 / 12, "feet"),
  7328. weight: math.unit(140, "lb"),
  7329. name: "Standing",
  7330. image: {
  7331. source: "./media/characters/piper/standing.svg",
  7332. extra: 1440/1284,
  7333. bottom: 66/1506
  7334. }
  7335. },
  7336. running: {
  7337. height: math.unit(5 + 8 / 12, "feet"),
  7338. weight: math.unit(140, "lb"),
  7339. name: "Running",
  7340. image: {
  7341. source: "./media/characters/piper/running.svg",
  7342. extra: 3948/3655,
  7343. bottom: 0/3948
  7344. }
  7345. },
  7346. sole: {
  7347. height: math.unit(0.81, "feet"),
  7348. weight: math.unit(2, "kg"),
  7349. name: "Sole",
  7350. image: {
  7351. source: "./media/characters/piper/sole.svg"
  7352. }
  7353. },
  7354. nipple: {
  7355. height: math.unit(0.25, "feet"),
  7356. weight: math.unit(1.5, "lb"),
  7357. name: "Nipple",
  7358. image: {
  7359. source: "./media/characters/piper/nipple.svg"
  7360. }
  7361. },
  7362. head: {
  7363. height: math.unit(1.1, "feet"),
  7364. name: "Head",
  7365. image: {
  7366. source: "./media/characters/piper/head.svg"
  7367. }
  7368. },
  7369. },
  7370. [
  7371. {
  7372. name: "Micro",
  7373. height: math.unit(2, "inches")
  7374. },
  7375. {
  7376. name: "Normal",
  7377. height: math.unit(5 + 8 / 12, "feet")
  7378. },
  7379. {
  7380. name: "Macro",
  7381. height: math.unit(250, "feet"),
  7382. default: true
  7383. },
  7384. {
  7385. name: "Megamacro",
  7386. height: math.unit(7, "miles")
  7387. },
  7388. ]
  7389. ))
  7390. characterMakers.push(() => makeCharacter(
  7391. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7392. {
  7393. front: {
  7394. height: math.unit(6, "feet"),
  7395. weight: math.unit(220, "lb"),
  7396. name: "Front",
  7397. image: {
  7398. source: "./media/characters/gemini/front.svg"
  7399. }
  7400. },
  7401. back: {
  7402. height: math.unit(6, "feet"),
  7403. weight: math.unit(220, "lb"),
  7404. name: "Back",
  7405. image: {
  7406. source: "./media/characters/gemini/back.svg"
  7407. }
  7408. },
  7409. kneeling: {
  7410. height: math.unit(6 / 1.5, "feet"),
  7411. weight: math.unit(220, "lb"),
  7412. name: "Kneeling",
  7413. image: {
  7414. source: "./media/characters/gemini/kneeling.svg",
  7415. bottom: 0.02
  7416. }
  7417. },
  7418. },
  7419. [
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(300, "meters"),
  7423. default: true
  7424. },
  7425. {
  7426. name: "Megamacro",
  7427. height: math.unit(6900, "meters")
  7428. },
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7433. {
  7434. anthro: {
  7435. height: math.unit(2.35, "meters"),
  7436. weight: math.unit(73, "kg"),
  7437. name: "Anthro",
  7438. image: {
  7439. source: "./media/characters/alicia/anthro.svg",
  7440. extra: 2571 / 2385,
  7441. bottom: 75 / 2648
  7442. }
  7443. },
  7444. paw: {
  7445. height: math.unit(1.32, "feet"),
  7446. name: "Paw",
  7447. image: {
  7448. source: "./media/characters/alicia/paw.svg"
  7449. }
  7450. },
  7451. feral: {
  7452. height: math.unit(1.69, "meters"),
  7453. weight: math.unit(73, "kg"),
  7454. name: "Feral",
  7455. image: {
  7456. source: "./media/characters/alicia/feral.svg",
  7457. extra: 2123 / 1715,
  7458. bottom: 222 / 2349
  7459. }
  7460. },
  7461. },
  7462. [
  7463. {
  7464. name: "Normal",
  7465. height: math.unit(2.35, "meters")
  7466. },
  7467. {
  7468. name: "Macro",
  7469. height: math.unit(60, "meters"),
  7470. default: true
  7471. },
  7472. {
  7473. name: "Megamacro",
  7474. height: math.unit(10000, "kilometers")
  7475. },
  7476. ]
  7477. ))
  7478. characterMakers.push(() => makeCharacter(
  7479. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7480. {
  7481. front: {
  7482. height: math.unit(7, "feet"),
  7483. weight: math.unit(250, "lbs"),
  7484. name: "Front",
  7485. image: {
  7486. source: "./media/characters/archy/front.svg"
  7487. }
  7488. }
  7489. },
  7490. [
  7491. {
  7492. name: "Micro",
  7493. height: math.unit(1, "inch")
  7494. },
  7495. {
  7496. name: "Shorty",
  7497. height: math.unit(5, "feet")
  7498. },
  7499. {
  7500. name: "Normal",
  7501. height: math.unit(7, "feet")
  7502. },
  7503. {
  7504. name: "Macro",
  7505. height: math.unit(600, "meters"),
  7506. default: true
  7507. },
  7508. {
  7509. name: "Megamacro",
  7510. height: math.unit(1, "mile")
  7511. },
  7512. ]
  7513. ))
  7514. characterMakers.push(() => makeCharacter(
  7515. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7516. {
  7517. front: {
  7518. height: math.unit(1.65, "meters"),
  7519. weight: math.unit(74, "kg"),
  7520. name: "Front",
  7521. image: {
  7522. source: "./media/characters/berri/front.svg",
  7523. extra: 857 / 837,
  7524. bottom: 18 / 877
  7525. }
  7526. },
  7527. bum: {
  7528. height: math.unit(1.46, "feet"),
  7529. name: "Bum",
  7530. image: {
  7531. source: "./media/characters/berri/bum.svg"
  7532. }
  7533. },
  7534. mouth: {
  7535. height: math.unit(0.44, "feet"),
  7536. name: "Mouth",
  7537. image: {
  7538. source: "./media/characters/berri/mouth.svg"
  7539. }
  7540. },
  7541. paw: {
  7542. height: math.unit(0.826, "feet"),
  7543. name: "Paw",
  7544. image: {
  7545. source: "./media/characters/berri/paw.svg"
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Normal",
  7552. height: math.unit(1.65, "meters")
  7553. },
  7554. {
  7555. name: "Macro",
  7556. height: math.unit(60, "m"),
  7557. default: true
  7558. },
  7559. {
  7560. name: "Megamacro",
  7561. height: math.unit(9.213, "km")
  7562. },
  7563. {
  7564. name: "Planet Eater",
  7565. height: math.unit(489, "megameters")
  7566. },
  7567. {
  7568. name: "Teramacro",
  7569. height: math.unit(2471635000000, "meters")
  7570. },
  7571. {
  7572. name: "Examacro",
  7573. height: math.unit(8.0624e+26, "meters")
  7574. }
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7579. {
  7580. front: {
  7581. height: math.unit(1.72, "meters"),
  7582. weight: math.unit(68, "kg"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/lexi/front.svg"
  7586. }
  7587. }
  7588. },
  7589. [
  7590. {
  7591. name: "Very Smol",
  7592. height: math.unit(10, "mm")
  7593. },
  7594. {
  7595. name: "Micro",
  7596. height: math.unit(6.8, "cm"),
  7597. default: true
  7598. },
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(1.72, "m")
  7602. }
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(1.69, "meters"),
  7610. weight: math.unit(68, "kg"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/martin/front.svg",
  7614. extra: 596 / 581
  7615. }
  7616. }
  7617. },
  7618. [
  7619. {
  7620. name: "Micro",
  7621. height: math.unit(6.85, "cm"),
  7622. default: true
  7623. },
  7624. {
  7625. name: "Normal",
  7626. height: math.unit(1.69, "m")
  7627. }
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7632. {
  7633. front: {
  7634. height: math.unit(1.69, "meters"),
  7635. weight: math.unit(68, "kg"),
  7636. name: "Front",
  7637. image: {
  7638. source: "./media/characters/juno/front.svg"
  7639. }
  7640. }
  7641. },
  7642. [
  7643. {
  7644. name: "Micro",
  7645. height: math.unit(7, "cm")
  7646. },
  7647. {
  7648. name: "Normal",
  7649. height: math.unit(1.89, "m")
  7650. },
  7651. {
  7652. name: "Macro",
  7653. height: math.unit(353, "meters"),
  7654. default: true
  7655. }
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(1.93, "meters"),
  7663. weight: math.unit(83, "kg"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/samantha/front.svg"
  7667. }
  7668. },
  7669. frontClothed: {
  7670. height: math.unit(1.93, "meters"),
  7671. weight: math.unit(83, "kg"),
  7672. name: "Front (Clothed)",
  7673. image: {
  7674. source: "./media/characters/samantha/front-clothed.svg"
  7675. }
  7676. },
  7677. back: {
  7678. height: math.unit(1.93, "meters"),
  7679. weight: math.unit(83, "kg"),
  7680. name: "Back",
  7681. image: {
  7682. source: "./media/characters/samantha/back.svg"
  7683. }
  7684. },
  7685. },
  7686. [
  7687. {
  7688. name: "Normal",
  7689. height: math.unit(1.93, "m")
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(74, "meters"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Macro+",
  7698. height: math.unit(223, "meters"),
  7699. },
  7700. {
  7701. name: "Megamacro",
  7702. height: math.unit(8381, "meters"),
  7703. },
  7704. {
  7705. name: "Megamacro+",
  7706. height: math.unit(12000, "kilometers")
  7707. },
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(1.92, "meters"),
  7715. weight: math.unit(80, "kg"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/dr-clay/front.svg"
  7719. }
  7720. },
  7721. frontClothed: {
  7722. height: math.unit(1.92, "meters"),
  7723. weight: math.unit(80, "kg"),
  7724. name: "Front (Clothed)",
  7725. image: {
  7726. source: "./media/characters/dr-clay/front-clothed.svg"
  7727. }
  7728. }
  7729. },
  7730. [
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(1.92, "m")
  7734. },
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(214, "meters"),
  7738. default: true
  7739. },
  7740. {
  7741. name: "Macro+",
  7742. height: math.unit(12.237, "meters"),
  7743. },
  7744. {
  7745. name: "Megamacro",
  7746. height: math.unit(557, "megameters"),
  7747. },
  7748. {
  7749. name: "Unimaginable",
  7750. height: math.unit(120e9, "lightyears")
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7756. {
  7757. front: {
  7758. height: math.unit(2, "meters"),
  7759. weight: math.unit(80, "kg"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7763. }
  7764. }
  7765. },
  7766. [
  7767. {
  7768. name: "Teramacro",
  7769. height: math.unit(500000, "lightyears"),
  7770. default: true
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7776. {
  7777. crux: {
  7778. height: math.unit(2, "meters"),
  7779. weight: math.unit(150, "kg"),
  7780. name: "Crux",
  7781. image: {
  7782. source: "./media/characters/vemus/crux.svg",
  7783. extra: 1074/936,
  7784. bottom: 23/1097
  7785. }
  7786. },
  7787. skunkTanuki: {
  7788. height: math.unit(2, "meters"),
  7789. weight: math.unit(150, "kg"),
  7790. name: "Skunk-Tanuki",
  7791. image: {
  7792. source: "./media/characters/vemus/skunk-tanuki.svg",
  7793. extra: 926/893,
  7794. bottom: 20/946
  7795. }
  7796. },
  7797. },
  7798. [
  7799. {
  7800. name: "Normal",
  7801. height: math.unit(4, "meters"),
  7802. default: true
  7803. },
  7804. {
  7805. name: "Big",
  7806. height: math.unit(8, "meters")
  7807. },
  7808. {
  7809. name: "Macro",
  7810. height: math.unit(100, "meters")
  7811. },
  7812. {
  7813. name: "Macro+",
  7814. height: math.unit(1500, "meters")
  7815. },
  7816. {
  7817. name: "Stellar",
  7818. height: math.unit(14e8, "meters")
  7819. },
  7820. ]
  7821. ))
  7822. characterMakers.push(() => makeCharacter(
  7823. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7824. {
  7825. front: {
  7826. height: math.unit(2, "meters"),
  7827. weight: math.unit(70, "kg"),
  7828. name: "Front",
  7829. image: {
  7830. source: "./media/characters/beherit/front.svg",
  7831. extra: 1234/1109,
  7832. bottom: 55/1289
  7833. }
  7834. }
  7835. },
  7836. [
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(6, "feet")
  7840. },
  7841. {
  7842. name: "Lorg",
  7843. height: math.unit(25, "feet"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Lorger",
  7848. height: math.unit(75, "feet")
  7849. },
  7850. {
  7851. name: "Macro",
  7852. height: math.unit(200, "meters")
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7858. {
  7859. front: {
  7860. height: math.unit(2, "meters"),
  7861. weight: math.unit(150, "kg"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/everett/front.svg",
  7865. extra: 1017/866,
  7866. bottom: 86/1103
  7867. }
  7868. },
  7869. paw: {
  7870. height: math.unit(2 / 3.6, "meters"),
  7871. name: "Paw",
  7872. image: {
  7873. source: "./media/characters/everett/paw.svg"
  7874. }
  7875. },
  7876. },
  7877. [
  7878. {
  7879. name: "Normal",
  7880. height: math.unit(15, "feet"),
  7881. default: true
  7882. },
  7883. {
  7884. name: "Lorg",
  7885. height: math.unit(70, "feet"),
  7886. default: true
  7887. },
  7888. {
  7889. name: "Lorger",
  7890. height: math.unit(250, "feet")
  7891. },
  7892. {
  7893. name: "Macro",
  7894. height: math.unit(500, "meters")
  7895. },
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(2, "meters"),
  7903. weight: math.unit(86, "kg"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/rose/front.svg",
  7907. extra: 1785/1636,
  7908. bottom: 30/1815
  7909. },
  7910. form: "liom",
  7911. default: true
  7912. },
  7913. frontSporty: {
  7914. height: math.unit(2, "meters"),
  7915. weight: math.unit(86, "kg"),
  7916. name: "Front (Sporty)",
  7917. image: {
  7918. source: "./media/characters/rose/front-sporty.svg",
  7919. extra: 350/335,
  7920. bottom: 10/360
  7921. },
  7922. form: "liom"
  7923. },
  7924. frontAlt: {
  7925. height: math.unit(1.6, "meters"),
  7926. weight: math.unit(86, "kg"),
  7927. name: "Front (Alt)",
  7928. image: {
  7929. source: "./media/characters/rose/front-alt.svg",
  7930. extra: 299/283,
  7931. bottom: 3/302
  7932. },
  7933. form: "liom"
  7934. },
  7935. plush: {
  7936. height: math.unit(2, "meters"),
  7937. weight: math.unit(86/3, "kg"),
  7938. name: "Plush",
  7939. image: {
  7940. source: "./media/characters/rose/plush.svg",
  7941. extra: 361/337,
  7942. bottom: 11/372
  7943. },
  7944. form: "plush",
  7945. default: true
  7946. },
  7947. faeStanding: {
  7948. height: math.unit(10, "cm"),
  7949. weight: math.unit(10, "grams"),
  7950. name: "Standing",
  7951. image: {
  7952. source: "./media/characters/rose/fae-standing.svg",
  7953. extra: 1189/1060,
  7954. bottom: 27/1216
  7955. },
  7956. form: "fae",
  7957. default: true
  7958. },
  7959. faeSitting: {
  7960. height: math.unit(5, "cm"),
  7961. weight: math.unit(10, "grams"),
  7962. name: "Sitting",
  7963. image: {
  7964. source: "./media/characters/rose/fae-sitting.svg",
  7965. extra: 737/577,
  7966. bottom: 356/1093
  7967. },
  7968. form: "fae"
  7969. },
  7970. faePaw: {
  7971. height: math.unit(1.35, "cm"),
  7972. name: "Paw",
  7973. image: {
  7974. source: "./media/characters/rose/fae-paw.svg"
  7975. },
  7976. form: "fae"
  7977. },
  7978. },
  7979. [
  7980. {
  7981. name: "True Micro",
  7982. height: math.unit(9, "cm"),
  7983. form: "liom"
  7984. },
  7985. {
  7986. name: "Micro",
  7987. height: math.unit(16, "cm"),
  7988. form: "liom"
  7989. },
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(1.85, "meters"),
  7993. default: true,
  7994. form: "liom"
  7995. },
  7996. {
  7997. name: "Mini-Macro",
  7998. height: math.unit(5, "meters"),
  7999. form: "liom"
  8000. },
  8001. {
  8002. name: "Macro",
  8003. height: math.unit(15, "meters"),
  8004. form: "liom"
  8005. },
  8006. {
  8007. name: "True Macro",
  8008. height: math.unit(40, "meters"),
  8009. form: "liom"
  8010. },
  8011. {
  8012. name: "City Scale",
  8013. height: math.unit(1, "km"),
  8014. form: "liom"
  8015. },
  8016. {
  8017. name: "Plushie",
  8018. height: math.unit(9, "cm"),
  8019. form: "plush",
  8020. default: true
  8021. },
  8022. {
  8023. name: "Fae",
  8024. height: math.unit(10, "cm"),
  8025. form: "fae",
  8026. default: true
  8027. },
  8028. ],
  8029. {
  8030. "liom": {
  8031. name: "Liom"
  8032. },
  8033. "plush": {
  8034. name: "Plush"
  8035. },
  8036. "fae": {
  8037. name: "Fae Fox",
  8038. default: true
  8039. }
  8040. }
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(2, "meters"),
  8047. weight: math.unit(350, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/regal/front.svg"
  8051. }
  8052. },
  8053. back: {
  8054. height: math.unit(2, "meters"),
  8055. weight: math.unit(350, "lbs"),
  8056. name: "Back",
  8057. image: {
  8058. source: "./media/characters/regal/back.svg"
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Macro",
  8065. height: math.unit(350, "feet"),
  8066. default: true
  8067. }
  8068. ]
  8069. ))
  8070. characterMakers.push(() => makeCharacter(
  8071. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8072. {
  8073. front: {
  8074. height: math.unit(4 + 11 / 12, "feet"),
  8075. weight: math.unit(100, "lbs"),
  8076. name: "Front",
  8077. image: {
  8078. source: "./media/characters/opal/front.svg"
  8079. }
  8080. },
  8081. frontAlt: {
  8082. height: math.unit(4 + 11 / 12, "feet"),
  8083. weight: math.unit(100, "lbs"),
  8084. name: "Front (Alt)",
  8085. image: {
  8086. source: "./media/characters/opal/front-alt.svg"
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Small",
  8093. height: math.unit(4 + 11 / 12, "feet")
  8094. },
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(20, "feet"),
  8098. default: true
  8099. },
  8100. {
  8101. name: "Macro",
  8102. height: math.unit(120, "feet")
  8103. },
  8104. {
  8105. name: "Megamacro",
  8106. height: math.unit(80, "miles")
  8107. },
  8108. {
  8109. name: "True Size",
  8110. height: math.unit(100000, "lightyears")
  8111. },
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(6, "feet"),
  8119. weight: math.unit(200, "lbs"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/vector-wuff/front.svg"
  8123. }
  8124. }
  8125. },
  8126. [
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(2.8, "meters")
  8130. },
  8131. {
  8132. name: "Macro",
  8133. height: math.unit(450, "meters"),
  8134. default: true
  8135. },
  8136. {
  8137. name: "Megamacro",
  8138. height: math.unit(15, "kilometers")
  8139. }
  8140. ]
  8141. ))
  8142. characterMakers.push(() => makeCharacter(
  8143. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8144. {
  8145. front: {
  8146. height: math.unit(6, "feet"),
  8147. weight: math.unit(256, "lbs"),
  8148. name: "Front",
  8149. image: {
  8150. source: "./media/characters/dannik/front.svg"
  8151. }
  8152. }
  8153. },
  8154. [
  8155. {
  8156. name: "Macro",
  8157. height: math.unit(69.57, "meters"),
  8158. default: true
  8159. },
  8160. ]
  8161. ))
  8162. characterMakers.push(() => makeCharacter(
  8163. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8164. {
  8165. front: {
  8166. height: math.unit(6, "feet"),
  8167. weight: math.unit(120, "lbs"),
  8168. name: "Front",
  8169. image: {
  8170. source: "./media/characters/azura-saharah/front.svg"
  8171. }
  8172. },
  8173. back: {
  8174. height: math.unit(6, "feet"),
  8175. weight: math.unit(120, "lbs"),
  8176. name: "Back",
  8177. image: {
  8178. source: "./media/characters/azura-saharah/back.svg"
  8179. }
  8180. },
  8181. },
  8182. [
  8183. {
  8184. name: "Macro",
  8185. height: math.unit(100, "feet"),
  8186. default: true
  8187. },
  8188. ]
  8189. ))
  8190. characterMakers.push(() => makeCharacter(
  8191. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8192. {
  8193. side: {
  8194. height: math.unit(5 + 4 / 12, "feet"),
  8195. weight: math.unit(163, "lbs"),
  8196. name: "Side",
  8197. image: {
  8198. source: "./media/characters/kennedy/side.svg"
  8199. }
  8200. }
  8201. },
  8202. [
  8203. {
  8204. name: "Standard Doggo",
  8205. height: math.unit(5 + 4 / 12, "feet")
  8206. },
  8207. {
  8208. name: "Big Doggo",
  8209. height: math.unit(25 + 3 / 12, "feet"),
  8210. default: true
  8211. },
  8212. ]
  8213. ))
  8214. characterMakers.push(() => makeCharacter(
  8215. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8216. {
  8217. front: {
  8218. height: math.unit(5 + 5/12, "feet"),
  8219. weight: math.unit(100, "lbs"),
  8220. name: "Front",
  8221. image: {
  8222. source: "./media/characters/odios-de-lunar/front.svg",
  8223. extra: 1468/1323,
  8224. bottom: 22/1490
  8225. }
  8226. }
  8227. },
  8228. [
  8229. {
  8230. name: "Micro",
  8231. height: math.unit(3, "inches")
  8232. },
  8233. {
  8234. name: "Normal",
  8235. height: math.unit(5.5, "feet"),
  8236. default: true
  8237. },
  8238. {
  8239. name: "Macro",
  8240. height: math.unit(100, "feet")
  8241. },
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8246. {
  8247. back: {
  8248. height: math.unit(6, "feet"),
  8249. weight: math.unit(220, "lbs"),
  8250. name: "Back",
  8251. image: {
  8252. source: "./media/characters/mandake/back.svg"
  8253. }
  8254. }
  8255. },
  8256. [
  8257. {
  8258. name: "Normal",
  8259. height: math.unit(7, "feet"),
  8260. default: true
  8261. },
  8262. {
  8263. name: "Macro",
  8264. height: math.unit(78, "feet")
  8265. },
  8266. {
  8267. name: "Macro+",
  8268. height: math.unit(300, "meters")
  8269. },
  8270. {
  8271. name: "Macro++",
  8272. height: math.unit(2400, "feet")
  8273. },
  8274. {
  8275. name: "Megamacro",
  8276. height: math.unit(5167, "meters")
  8277. },
  8278. {
  8279. name: "Gigamacro",
  8280. height: math.unit(41769, "miles")
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(6, "feet"),
  8289. weight: math.unit(120, "lbs"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/yozey/front.svg"
  8293. }
  8294. },
  8295. frontAlt: {
  8296. height: math.unit(6, "feet"),
  8297. weight: math.unit(120, "lbs"),
  8298. name: "Front (Alt)",
  8299. image: {
  8300. source: "./media/characters/yozey/front-alt.svg"
  8301. }
  8302. },
  8303. side: {
  8304. height: math.unit(6, "feet"),
  8305. weight: math.unit(120, "lbs"),
  8306. name: "Side",
  8307. image: {
  8308. source: "./media/characters/yozey/side.svg"
  8309. }
  8310. },
  8311. },
  8312. [
  8313. {
  8314. name: "Micro",
  8315. height: math.unit(3, "inches"),
  8316. default: true
  8317. },
  8318. {
  8319. name: "Normal",
  8320. height: math.unit(6, "feet")
  8321. }
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(6, "feet"),
  8329. weight: math.unit(103, "lbs"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/valeska-voss/front.svg"
  8333. }
  8334. }
  8335. },
  8336. [
  8337. {
  8338. name: "Mini-Sized Sub",
  8339. height: math.unit(3.1, "inches")
  8340. },
  8341. {
  8342. name: "Mid-Sized Sub",
  8343. height: math.unit(6.2, "inches")
  8344. },
  8345. {
  8346. name: "Full-Sized Sub",
  8347. height: math.unit(9.3, "inches")
  8348. },
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(5 + 2 / 12, "foot"),
  8352. default: true
  8353. },
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8358. {
  8359. front: {
  8360. height: math.unit(6, "feet"),
  8361. weight: math.unit(160, "lbs"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/gene-zeta/front.svg",
  8365. extra: 3006 / 2826,
  8366. bottom: 182 / 3188
  8367. }
  8368. }
  8369. },
  8370. [
  8371. {
  8372. name: "Micro",
  8373. height: math.unit(6, "inches")
  8374. },
  8375. {
  8376. name: "Normal",
  8377. height: math.unit(5 + 11 / 12, "foot"),
  8378. default: true
  8379. },
  8380. {
  8381. name: "Macro",
  8382. height: math.unit(140, "feet")
  8383. },
  8384. {
  8385. name: "Supercharged",
  8386. height: math.unit(2500, "feet")
  8387. },
  8388. ]
  8389. ))
  8390. characterMakers.push(() => makeCharacter(
  8391. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8392. {
  8393. front: {
  8394. height: math.unit(6, "feet"),
  8395. weight: math.unit(350, "lbs"),
  8396. name: "Front",
  8397. image: {
  8398. source: "./media/characters/razinox/front.svg",
  8399. extra: 1686 / 1548,
  8400. bottom: 28.2 / 1868
  8401. }
  8402. },
  8403. back: {
  8404. height: math.unit(6, "feet"),
  8405. weight: math.unit(350, "lbs"),
  8406. name: "Back",
  8407. image: {
  8408. source: "./media/characters/razinox/back.svg",
  8409. extra: 1660 / 1590,
  8410. bottom: 15 / 1665
  8411. }
  8412. },
  8413. },
  8414. [
  8415. {
  8416. name: "Normal",
  8417. height: math.unit(10 + 8 / 12, "foot")
  8418. },
  8419. {
  8420. name: "Minimacro",
  8421. height: math.unit(15, "foot")
  8422. },
  8423. {
  8424. name: "Macro",
  8425. height: math.unit(60, "foot"),
  8426. default: true
  8427. },
  8428. {
  8429. name: "Megamacro",
  8430. height: math.unit(5, "miles")
  8431. },
  8432. {
  8433. name: "Gigamacro",
  8434. height: math.unit(6000, "miles")
  8435. },
  8436. ]
  8437. ))
  8438. characterMakers.push(() => makeCharacter(
  8439. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8440. {
  8441. front: {
  8442. height: math.unit(6, "feet"),
  8443. weight: math.unit(150, "lbs"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/cobalt/front.svg"
  8447. }
  8448. }
  8449. },
  8450. [
  8451. {
  8452. name: "Normal",
  8453. height: math.unit(8 + 1 / 12, "foot")
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(111, "foot"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Supracosmic",
  8462. height: math.unit(1e42, "feet")
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8468. {
  8469. front: {
  8470. height: math.unit(5, "inches"),
  8471. name: "Front",
  8472. image: {
  8473. source: "./media/characters/amanda/front.svg",
  8474. extra: 926/791,
  8475. bottom: 38/964
  8476. }
  8477. },
  8478. back: {
  8479. height: math.unit(5, "inches"),
  8480. name: "Back",
  8481. image: {
  8482. source: "./media/characters/amanda/back.svg",
  8483. extra: 909/805,
  8484. bottom: 43/952
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Micro",
  8491. height: math.unit(5, "inches"),
  8492. default: true
  8493. },
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8498. {
  8499. front: {
  8500. height: math.unit(2.75, "meters"),
  8501. weight: math.unit(1200, "lb"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/teal/front.svg",
  8505. extra: 2463 / 2320,
  8506. bottom: 166 / 2629
  8507. }
  8508. },
  8509. back: {
  8510. height: math.unit(2.75, "meters"),
  8511. weight: math.unit(1200, "lb"),
  8512. name: "Back",
  8513. image: {
  8514. source: "./media/characters/teal/back.svg",
  8515. extra: 2580 / 2489,
  8516. bottom: 151 / 2731
  8517. }
  8518. },
  8519. sitting: {
  8520. height: math.unit(1.9, "meters"),
  8521. weight: math.unit(1200, "lb"),
  8522. name: "Sitting",
  8523. image: {
  8524. source: "./media/characters/teal/sitting.svg",
  8525. extra: 623 / 590,
  8526. bottom: 121 / 744
  8527. }
  8528. },
  8529. standing: {
  8530. height: math.unit(2.75, "meters"),
  8531. weight: math.unit(1200, "lb"),
  8532. name: "Standing",
  8533. image: {
  8534. source: "./media/characters/teal/standing.svg",
  8535. extra: 923 / 893,
  8536. bottom: 60 / 983
  8537. }
  8538. },
  8539. stretching: {
  8540. height: math.unit(3.65, "meters"),
  8541. weight: math.unit(1200, "lb"),
  8542. name: "Stretching",
  8543. image: {
  8544. source: "./media/characters/teal/stretching.svg",
  8545. extra: 1276 / 1244,
  8546. bottom: 0 / 1276
  8547. }
  8548. },
  8549. legged: {
  8550. height: math.unit(1.3, "meters"),
  8551. weight: math.unit(100, "lb"),
  8552. name: "Legged",
  8553. image: {
  8554. source: "./media/characters/teal/legged.svg",
  8555. extra: 462 / 437,
  8556. bottom: 24 / 486
  8557. }
  8558. },
  8559. naga: {
  8560. height: math.unit(5.4, "meters"),
  8561. weight: math.unit(4000, "lb"),
  8562. name: "Naga",
  8563. image: {
  8564. source: "./media/characters/teal/naga.svg",
  8565. extra: 1902 / 1858,
  8566. bottom: 0 / 1902
  8567. }
  8568. },
  8569. hand: {
  8570. height: math.unit(0.52, "meters"),
  8571. name: "Hand",
  8572. image: {
  8573. source: "./media/characters/teal/hand.svg"
  8574. }
  8575. },
  8576. maw: {
  8577. height: math.unit(0.43, "meters"),
  8578. name: "Maw",
  8579. image: {
  8580. source: "./media/characters/teal/maw.svg"
  8581. }
  8582. },
  8583. slit: {
  8584. height: math.unit(0.25, "meters"),
  8585. name: "Slit",
  8586. image: {
  8587. source: "./media/characters/teal/slit.svg"
  8588. }
  8589. },
  8590. },
  8591. [
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(2.75, "meters"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(300, "feet")
  8600. },
  8601. {
  8602. name: "Macro+",
  8603. height: math.unit(2000, "feet")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8609. {
  8610. frontCat: {
  8611. height: math.unit(6, "feet"),
  8612. weight: math.unit(180, "lbs"),
  8613. name: "Front (Cat)",
  8614. image: {
  8615. source: "./media/characters/ravin-amulet/front-cat.svg"
  8616. }
  8617. },
  8618. frontCatAlt: {
  8619. height: math.unit(6, "feet"),
  8620. weight: math.unit(180, "lbs"),
  8621. name: "Front (Alt, Cat)",
  8622. image: {
  8623. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8624. }
  8625. },
  8626. frontWerewolf: {
  8627. height: math.unit(6 * 1.2, "feet"),
  8628. weight: math.unit(225, "lbs"),
  8629. name: "Front (Werewolf)",
  8630. image: {
  8631. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8632. }
  8633. },
  8634. backWerewolf: {
  8635. height: math.unit(6 * 1.2, "feet"),
  8636. weight: math.unit(225, "lbs"),
  8637. name: "Back (Werewolf)",
  8638. image: {
  8639. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Nano",
  8646. height: math.unit(1, "micrometer")
  8647. },
  8648. {
  8649. name: "Micro",
  8650. height: math.unit(1, "inch")
  8651. },
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(6, "feet"),
  8655. default: true
  8656. },
  8657. {
  8658. name: "Macro",
  8659. height: math.unit(60, "feet")
  8660. }
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(6, "feet"),
  8668. weight: math.unit(165, "lbs"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/fluoresce/front.svg"
  8672. }
  8673. }
  8674. },
  8675. [
  8676. {
  8677. name: "Micro",
  8678. height: math.unit(6, "cm")
  8679. },
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(5 + 7 / 12, "feet"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(56, "feet")
  8688. },
  8689. {
  8690. name: "Megamacro",
  8691. height: math.unit(1.9, "miles")
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(9 + 6 / 12, "feet"),
  8700. weight: math.unit(523, "lbs"),
  8701. name: "Side",
  8702. image: {
  8703. source: "./media/characters/aurora/side.svg",
  8704. extra: 474/393,
  8705. bottom: 5/479
  8706. }
  8707. }
  8708. },
  8709. [
  8710. {
  8711. name: "Normal",
  8712. height: math.unit(9 + 6 / 12, "feet")
  8713. },
  8714. {
  8715. name: "Macro",
  8716. height: math.unit(96, "feet"),
  8717. default: true
  8718. },
  8719. {
  8720. name: "Macro+",
  8721. height: math.unit(243, "feet")
  8722. },
  8723. ]
  8724. ))
  8725. characterMakers.push(() => makeCharacter(
  8726. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8727. {
  8728. front: {
  8729. height: math.unit(194, "cm"),
  8730. weight: math.unit(90, "kg"),
  8731. name: "Front",
  8732. image: {
  8733. source: "./media/characters/ranek/front.svg",
  8734. extra: 1862/1791,
  8735. bottom: 80/1942
  8736. }
  8737. },
  8738. back: {
  8739. height: math.unit(194, "cm"),
  8740. weight: math.unit(90, "kg"),
  8741. name: "Back",
  8742. image: {
  8743. source: "./media/characters/ranek/back.svg",
  8744. extra: 1853/1787,
  8745. bottom: 74/1927
  8746. }
  8747. },
  8748. feral: {
  8749. height: math.unit(30, "cm"),
  8750. weight: math.unit(1.6, "lbs"),
  8751. name: "Feral",
  8752. image: {
  8753. source: "./media/characters/ranek/feral.svg",
  8754. extra: 990/631,
  8755. bottom: 29/1019
  8756. }
  8757. },
  8758. },
  8759. [
  8760. {
  8761. name: "Normal",
  8762. height: math.unit(194, "cm"),
  8763. default: true
  8764. },
  8765. {
  8766. name: "Macro",
  8767. height: math.unit(100, "meters")
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(5 + 6 / 12, "feet"),
  8776. weight: math.unit(153, "lbs"),
  8777. name: "Front",
  8778. image: {
  8779. source: "./media/characters/andrew-cooper/front.svg"
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Nano",
  8786. height: math.unit(1, "mm")
  8787. },
  8788. {
  8789. name: "Micro",
  8790. height: math.unit(2, "inches")
  8791. },
  8792. {
  8793. name: "Normal",
  8794. height: math.unit(5 + 6 / 12, "feet"),
  8795. default: true
  8796. }
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(6, "feet"),
  8804. weight: math.unit(180, "lbs"),
  8805. name: "Front",
  8806. image: {
  8807. source: "./media/characters/akane-sato/front.svg",
  8808. extra: 1219 / 1140
  8809. }
  8810. },
  8811. back: {
  8812. height: math.unit(6, "feet"),
  8813. weight: math.unit(180, "lbs"),
  8814. name: "Back",
  8815. image: {
  8816. source: "./media/characters/akane-sato/back.svg",
  8817. extra: 1219 / 1170
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Normal",
  8824. height: math.unit(2.5, "meters")
  8825. },
  8826. {
  8827. name: "Macro",
  8828. height: math.unit(250, "meters"),
  8829. default: true
  8830. },
  8831. {
  8832. name: "Megamacro",
  8833. height: math.unit(25, "km")
  8834. },
  8835. ]
  8836. ))
  8837. characterMakers.push(() => makeCharacter(
  8838. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8839. {
  8840. front: {
  8841. height: math.unit(6, "feet"),
  8842. weight: math.unit(65, "kg"),
  8843. name: "Front",
  8844. image: {
  8845. source: "./media/characters/rook/front.svg",
  8846. extra: 960 / 950
  8847. }
  8848. }
  8849. },
  8850. [
  8851. {
  8852. name: "Normal",
  8853. height: math.unit(8.8, "feet")
  8854. },
  8855. {
  8856. name: "Macro",
  8857. height: math.unit(88, "feet"),
  8858. default: true
  8859. },
  8860. {
  8861. name: "Megamacro",
  8862. height: math.unit(8, "miles")
  8863. },
  8864. ]
  8865. ))
  8866. characterMakers.push(() => makeCharacter(
  8867. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8868. {
  8869. front: {
  8870. height: math.unit(12 + 2 / 12, "feet"),
  8871. weight: math.unit(808, "lbs"),
  8872. name: "Front",
  8873. image: {
  8874. source: "./media/characters/prodigy/front.svg"
  8875. }
  8876. }
  8877. },
  8878. [
  8879. {
  8880. name: "Normal",
  8881. height: math.unit(12 + 2 / 12, "feet"),
  8882. default: true
  8883. },
  8884. {
  8885. name: "Macro",
  8886. height: math.unit(143, "feet")
  8887. },
  8888. {
  8889. name: "Macro+",
  8890. height: math.unit(400, "feet")
  8891. },
  8892. ]
  8893. ))
  8894. characterMakers.push(() => makeCharacter(
  8895. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8896. {
  8897. front: {
  8898. height: math.unit(6, "feet"),
  8899. weight: math.unit(225, "lbs"),
  8900. name: "Front",
  8901. image: {
  8902. source: "./media/characters/daniel/front.svg"
  8903. }
  8904. },
  8905. leaning: {
  8906. height: math.unit(6, "feet"),
  8907. weight: math.unit(225, "lbs"),
  8908. name: "Leaning",
  8909. image: {
  8910. source: "./media/characters/daniel/leaning.svg"
  8911. }
  8912. },
  8913. },
  8914. [
  8915. {
  8916. name: "Macro",
  8917. height: math.unit(1000, "feet"),
  8918. default: true
  8919. },
  8920. ]
  8921. ))
  8922. characterMakers.push(() => makeCharacter(
  8923. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8924. {
  8925. front: {
  8926. height: math.unit(6, "feet"),
  8927. weight: math.unit(88, "lbs"),
  8928. name: "Front",
  8929. image: {
  8930. source: "./media/characters/chiros/front.svg",
  8931. extra: 306 / 226
  8932. }
  8933. },
  8934. side: {
  8935. height: math.unit(6, "feet"),
  8936. weight: math.unit(88, "lbs"),
  8937. name: "Side",
  8938. image: {
  8939. source: "./media/characters/chiros/side.svg",
  8940. extra: 306 / 226
  8941. }
  8942. },
  8943. },
  8944. [
  8945. {
  8946. name: "Normal",
  8947. height: math.unit(6, "cm"),
  8948. default: true
  8949. },
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8954. {
  8955. front: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(100, "lbs"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/selka/front.svg",
  8961. extra: 947 / 887
  8962. }
  8963. }
  8964. },
  8965. [
  8966. {
  8967. name: "Normal",
  8968. height: math.unit(5, "cm"),
  8969. default: true
  8970. },
  8971. ]
  8972. ))
  8973. characterMakers.push(() => makeCharacter(
  8974. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8975. {
  8976. front: {
  8977. height: math.unit(8 + 3 / 12, "feet"),
  8978. weight: math.unit(424, "lbs"),
  8979. name: "Front",
  8980. image: {
  8981. source: "./media/characters/verin/front.svg",
  8982. extra: 1845 / 1550
  8983. }
  8984. },
  8985. frontArmored: {
  8986. height: math.unit(8 + 3 / 12, "feet"),
  8987. weight: math.unit(424, "lbs"),
  8988. name: "Front (Armored)",
  8989. image: {
  8990. source: "./media/characters/verin/front-armor.svg",
  8991. extra: 1845 / 1550,
  8992. bottom: 0.01
  8993. }
  8994. },
  8995. back: {
  8996. height: math.unit(8 + 3 / 12, "feet"),
  8997. weight: math.unit(424, "lbs"),
  8998. name: "Back",
  8999. image: {
  9000. source: "./media/characters/verin/back.svg",
  9001. bottom: 0.1,
  9002. extra: 1
  9003. }
  9004. },
  9005. foot: {
  9006. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9007. name: "Foot",
  9008. image: {
  9009. source: "./media/characters/verin/foot.svg"
  9010. }
  9011. },
  9012. },
  9013. [
  9014. {
  9015. name: "Normal",
  9016. height: math.unit(8 + 3 / 12, "feet")
  9017. },
  9018. {
  9019. name: "Minimacro",
  9020. height: math.unit(21, "feet"),
  9021. default: true
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(626, "feet")
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9031. {
  9032. front: {
  9033. height: math.unit(2.718, "meters"),
  9034. weight: math.unit(150, "lbs"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/sovrim-terraquian/front.svg",
  9038. extra: 1752/1689,
  9039. bottom: 36/1788
  9040. }
  9041. },
  9042. back: {
  9043. height: math.unit(2.718, "meters"),
  9044. weight: math.unit(150, "lbs"),
  9045. name: "Back",
  9046. image: {
  9047. source: "./media/characters/sovrim-terraquian/back.svg",
  9048. extra: 1698/1657,
  9049. bottom: 58/1756
  9050. }
  9051. },
  9052. tongue: {
  9053. height: math.unit(2.865, "feet"),
  9054. name: "Tongue",
  9055. image: {
  9056. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9057. }
  9058. },
  9059. hand: {
  9060. height: math.unit(1.61, "feet"),
  9061. name: "Hand",
  9062. image: {
  9063. source: "./media/characters/sovrim-terraquian/hand.svg"
  9064. }
  9065. },
  9066. foot: {
  9067. height: math.unit(1.05, "feet"),
  9068. name: "Foot",
  9069. image: {
  9070. source: "./media/characters/sovrim-terraquian/foot.svg"
  9071. }
  9072. },
  9073. footAlt: {
  9074. height: math.unit(0.88, "feet"),
  9075. name: "Foot (Alt)",
  9076. image: {
  9077. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Micro",
  9084. height: math.unit(2, "inches")
  9085. },
  9086. {
  9087. name: "Small",
  9088. height: math.unit(1, "meter")
  9089. },
  9090. {
  9091. name: "Normal",
  9092. height: math.unit(Math.E, "meters"),
  9093. default: true
  9094. },
  9095. {
  9096. name: "Macro",
  9097. height: math.unit(20, "meters")
  9098. },
  9099. {
  9100. name: "Macro+",
  9101. height: math.unit(400, "meters")
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(7, "feet"),
  9110. weight: math.unit(489, "lbs"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/reece-silvermane/front.svg",
  9114. bottom: 0.02,
  9115. extra: 1
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Macro",
  9122. height: math.unit(1.5, "miles"),
  9123. default: true
  9124. },
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(78, "kg"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/kane/front.svg",
  9136. extra: 978 / 899
  9137. }
  9138. },
  9139. back: {
  9140. height: math.unit(6, "feet"),
  9141. weight: math.unit(78, "kg"),
  9142. name: "Back",
  9143. image: {
  9144. source: "./media/characters/kane/back.svg",
  9145. extra: 1966/1800,
  9146. bottom: 0/1966
  9147. }
  9148. },
  9149. head: {
  9150. height: math.unit(1.4, "feet"),
  9151. name: "Head",
  9152. image: {
  9153. source: "./media/characters/kane/head.svg"
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(2.1, "m"),
  9161. },
  9162. {
  9163. name: "Macro",
  9164. height: math.unit(1, "km"),
  9165. default: true
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(6, "feet"),
  9174. weight: math.unit(200, "kg"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/tegon/front.svg",
  9178. bottom: 0.01,
  9179. extra: 1
  9180. }
  9181. },
  9182. },
  9183. [
  9184. {
  9185. name: "Micro",
  9186. height: math.unit(1, "inch")
  9187. },
  9188. {
  9189. name: "Normal",
  9190. height: math.unit(6 + 3 / 12, "feet"),
  9191. default: true
  9192. },
  9193. {
  9194. name: "Macro",
  9195. height: math.unit(300, "feet")
  9196. },
  9197. {
  9198. name: "Megamacro",
  9199. height: math.unit(69, "miles")
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9205. {
  9206. side: {
  9207. height: math.unit(6, "feet"),
  9208. weight: math.unit(2304, "lbs"),
  9209. name: "Side",
  9210. image: {
  9211. source: "./media/characters/arcturax/side.svg",
  9212. extra: 790 / 376,
  9213. bottom: 0.01
  9214. }
  9215. },
  9216. },
  9217. [
  9218. {
  9219. name: "Micro",
  9220. height: math.unit(2, "inch")
  9221. },
  9222. {
  9223. name: "Normal",
  9224. height: math.unit(6, "feet")
  9225. },
  9226. {
  9227. name: "Macro",
  9228. height: math.unit(39, "feet"),
  9229. default: true
  9230. },
  9231. {
  9232. name: "Megamacro",
  9233. height: math.unit(7, "miles")
  9234. },
  9235. ]
  9236. ))
  9237. characterMakers.push(() => makeCharacter(
  9238. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9239. {
  9240. front: {
  9241. height: math.unit(6, "feet"),
  9242. weight: math.unit(50, "lbs"),
  9243. name: "Front",
  9244. image: {
  9245. source: "./media/characters/sentri/front.svg",
  9246. extra: 1750 / 1570,
  9247. bottom: 0.025
  9248. }
  9249. },
  9250. frontAlt: {
  9251. height: math.unit(6, "feet"),
  9252. weight: math.unit(50, "lbs"),
  9253. name: "Front (Alt)",
  9254. image: {
  9255. source: "./media/characters/sentri/front-alt.svg",
  9256. extra: 1750 / 1570,
  9257. bottom: 0.025
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(15, "feet"),
  9265. default: true
  9266. },
  9267. {
  9268. name: "Macro",
  9269. height: math.unit(2500, "feet")
  9270. }
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(5 + 8 / 12, "feet"),
  9278. weight: math.unit(130, "lbs"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/corvin/front.svg",
  9282. extra: 1803 / 1629
  9283. }
  9284. },
  9285. frontShirt: {
  9286. height: math.unit(5 + 8 / 12, "feet"),
  9287. weight: math.unit(130, "lbs"),
  9288. name: "Front (Shirt)",
  9289. image: {
  9290. source: "./media/characters/corvin/front-shirt.svg",
  9291. extra: 1803 / 1629
  9292. }
  9293. },
  9294. frontPoncho: {
  9295. height: math.unit(5 + 8 / 12, "feet"),
  9296. weight: math.unit(130, "lbs"),
  9297. name: "Front (Poncho)",
  9298. image: {
  9299. source: "./media/characters/corvin/front-poncho.svg",
  9300. extra: 1803 / 1629
  9301. }
  9302. },
  9303. side: {
  9304. height: math.unit(5 + 8 / 12, "feet"),
  9305. weight: math.unit(130, "lbs"),
  9306. name: "Side",
  9307. image: {
  9308. source: "./media/characters/corvin/side.svg",
  9309. extra: 1012 / 945
  9310. }
  9311. },
  9312. back: {
  9313. height: math.unit(5 + 8 / 12, "feet"),
  9314. weight: math.unit(130, "lbs"),
  9315. name: "Back",
  9316. image: {
  9317. source: "./media/characters/corvin/back.svg",
  9318. extra: 1803 / 1629
  9319. }
  9320. },
  9321. },
  9322. [
  9323. {
  9324. name: "Micro",
  9325. height: math.unit(3, "inches")
  9326. },
  9327. {
  9328. name: "Normal",
  9329. height: math.unit(5 + 8 / 12, "feet")
  9330. },
  9331. {
  9332. name: "Macro",
  9333. height: math.unit(300, "feet"),
  9334. default: true
  9335. },
  9336. {
  9337. name: "Megamacro",
  9338. height: math.unit(500, "miles")
  9339. }
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9344. {
  9345. front: {
  9346. height: math.unit(6, "feet"),
  9347. weight: math.unit(135, "lbs"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/q/front.svg",
  9351. extra: 854 / 752,
  9352. bottom: 0.005
  9353. }
  9354. },
  9355. back: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(130, "lbs"),
  9358. name: "Back",
  9359. image: {
  9360. source: "./media/characters/q/back.svg",
  9361. extra: 854 / 752
  9362. }
  9363. },
  9364. },
  9365. [
  9366. {
  9367. name: "Macro",
  9368. height: math.unit(90, "feet"),
  9369. default: true
  9370. },
  9371. {
  9372. name: "Extra Macro",
  9373. height: math.unit(300, "feet"),
  9374. },
  9375. {
  9376. name: "BIG WALF",
  9377. height: math.unit(750, "feet"),
  9378. },
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9383. {
  9384. front: {
  9385. height: math.unit(3, "feet"),
  9386. weight: math.unit(28, "lbs"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/citrine/front.svg"
  9390. }
  9391. }
  9392. },
  9393. [
  9394. {
  9395. name: "Normal",
  9396. height: math.unit(3, "feet"),
  9397. default: true
  9398. }
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9403. {
  9404. front: {
  9405. height: math.unit(14, "feet"),
  9406. weight: math.unit(1450, "kg"),
  9407. preyCapacity: math.unit(15, "people"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/aura-starwind/front.svg",
  9411. extra: 1440/1327,
  9412. bottom: 11/1451
  9413. }
  9414. },
  9415. side: {
  9416. height: math.unit(14, "feet"),
  9417. weight: math.unit(1450, "kg"),
  9418. preyCapacity: math.unit(15, "people"),
  9419. name: "Side",
  9420. image: {
  9421. source: "./media/characters/aura-starwind/side.svg",
  9422. extra: 1654 / 1497
  9423. }
  9424. },
  9425. taur: {
  9426. height: math.unit(18, "feet"),
  9427. weight: math.unit(5500, "kg"),
  9428. preyCapacity: math.unit(50, "people"),
  9429. name: "Taur",
  9430. image: {
  9431. source: "./media/characters/aura-starwind/taur.svg",
  9432. extra: 1760 / 1650
  9433. }
  9434. },
  9435. feral: {
  9436. height: math.unit(46, "feet"),
  9437. weight: math.unit(25000, "kg"),
  9438. preyCapacity: math.unit(120, "people"),
  9439. name: "Feral",
  9440. image: {
  9441. source: "./media/characters/aura-starwind/feral.svg"
  9442. }
  9443. },
  9444. },
  9445. [
  9446. {
  9447. name: "Normal",
  9448. height: math.unit(14, "feet"),
  9449. default: true
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(50, "meters")
  9454. },
  9455. {
  9456. name: "Megamacro",
  9457. height: math.unit(5000, "meters")
  9458. },
  9459. {
  9460. name: "Gigamacro",
  9461. height: math.unit(100000, "kilometers")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(2 + 7 / 12, "feet"),
  9470. weight: math.unit(32, "lbs"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/rivet/front.svg",
  9474. extra: 1716 / 1658,
  9475. bottom: 0.03
  9476. }
  9477. },
  9478. foot: {
  9479. height: math.unit(0.551, "feet"),
  9480. name: "Rivet's Foot",
  9481. image: {
  9482. source: "./media/characters/rivet/foot.svg"
  9483. },
  9484. rename: true
  9485. }
  9486. },
  9487. [
  9488. {
  9489. name: "Micro",
  9490. height: math.unit(1.5, "inches"),
  9491. },
  9492. {
  9493. name: "Normal",
  9494. height: math.unit(2 + 7 / 12, "feet"),
  9495. default: true
  9496. },
  9497. {
  9498. name: "Macro",
  9499. height: math.unit(85, "feet")
  9500. },
  9501. {
  9502. name: "Megamacro",
  9503. height: math.unit(2.2, "km")
  9504. }
  9505. ]
  9506. ))
  9507. characterMakers.push(() => makeCharacter(
  9508. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9509. {
  9510. front: {
  9511. height: math.unit(5 + 9 / 12, "feet"),
  9512. weight: math.unit(150, "lbs"),
  9513. name: "Front",
  9514. image: {
  9515. source: "./media/characters/coffee/front.svg",
  9516. extra: 946/880,
  9517. bottom: 66/1012
  9518. }
  9519. },
  9520. foot: {
  9521. height: math.unit(1.29, "feet"),
  9522. name: "Foot",
  9523. image: {
  9524. source: "./media/characters/coffee/foot.svg"
  9525. }
  9526. },
  9527. },
  9528. [
  9529. {
  9530. name: "Micro",
  9531. height: math.unit(2, "inches"),
  9532. },
  9533. {
  9534. name: "Normal",
  9535. height: math.unit(5 + 9 / 12, "feet"),
  9536. default: true
  9537. },
  9538. {
  9539. name: "Macro",
  9540. height: math.unit(800, "feet")
  9541. },
  9542. {
  9543. name: "Megamacro",
  9544. height: math.unit(25, "miles")
  9545. }
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9550. {
  9551. front: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(200, "lbs"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/chari-gal/front.svg",
  9557. extra: 735/649,
  9558. bottom: 55/790
  9559. },
  9560. form: "normal",
  9561. default: true
  9562. },
  9563. back: {
  9564. height: math.unit(6, "feet"),
  9565. weight: math.unit(200, "lb"),
  9566. name: "Back",
  9567. image: {
  9568. source: "./media/characters/chari-gal/back.svg",
  9569. extra: 762/666,
  9570. bottom: 31/793
  9571. },
  9572. form: "normal"
  9573. },
  9574. mouth: {
  9575. height: math.unit(1.35, "feet"),
  9576. name: "Mouth",
  9577. image: {
  9578. source: "./media/characters/chari-gal/mouth.svg"
  9579. },
  9580. form: "normal"
  9581. },
  9582. gigantamax: {
  9583. height: math.unit(6 * 16, "feet"),
  9584. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9585. name: "Gigantamax",
  9586. image: {
  9587. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9588. extra: 1507/1149,
  9589. bottom: 254/1761
  9590. },
  9591. form: "gigantamax",
  9592. default: true
  9593. },
  9594. },
  9595. [
  9596. {
  9597. name: "Normal",
  9598. height: math.unit(5 + 7 / 12, "feet"),
  9599. form: "normal",
  9600. },
  9601. {
  9602. name: "Macro",
  9603. height: math.unit(200, "feet"),
  9604. default: true,
  9605. form: "normal"
  9606. },
  9607. {
  9608. name: "Normal",
  9609. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9610. form: "gigantamax",
  9611. },
  9612. {
  9613. name: "Macro",
  9614. height: math.unit(16 * 200, "feet"),
  9615. default: true,
  9616. form: "gigantamax"
  9617. },
  9618. ],
  9619. {
  9620. "normal": {
  9621. name: "Normal",
  9622. default: true
  9623. },
  9624. "gigantamax": {
  9625. name: "Gigantamax",
  9626. },
  9627. }
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(6, "feet"),
  9634. weight: math.unit(150, "lbs"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/nova/front.svg",
  9638. extra: 5000 / 4722,
  9639. bottom: 0.02
  9640. }
  9641. }
  9642. },
  9643. [
  9644. {
  9645. name: "Micro-",
  9646. height: math.unit(0.8, "inches")
  9647. },
  9648. {
  9649. name: "Micro",
  9650. height: math.unit(2, "inches"),
  9651. default: true
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9657. {
  9658. koboldFront: {
  9659. height: math.unit(3 + 1 / 12, "feet"),
  9660. weight: math.unit(21.7, "lbs"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/argent/kobold-front.svg",
  9664. extra: 1471 / 1331,
  9665. bottom: 100.8 / 1575.5
  9666. },
  9667. form: "kobold",
  9668. default: true
  9669. },
  9670. dragonFront: {
  9671. height: math.unit(75, "inches"),
  9672. name: "Front",
  9673. image: {
  9674. source: "./media/characters/argent/dragon-front.svg",
  9675. extra: 1389/1248,
  9676. bottom: 54/1443
  9677. },
  9678. form: "dragon",
  9679. },
  9680. dragonBack: {
  9681. height: math.unit(75, "inches"),
  9682. name: "Back",
  9683. image: {
  9684. source: "./media/characters/argent/dragon-back.svg",
  9685. extra: 1399/1271,
  9686. bottom: 23/1422
  9687. },
  9688. form: "dragon",
  9689. },
  9690. dragonDressed: {
  9691. height: math.unit(75, "inches"),
  9692. name: "Dressed",
  9693. image: {
  9694. source: "./media/characters/argent/dragon-dressed.svg",
  9695. extra: 1350/1215,
  9696. bottom: 26/1376
  9697. },
  9698. form: "dragon"
  9699. },
  9700. dragonHead: {
  9701. height: math.unit(23.5, "inches"),
  9702. name: "Head",
  9703. image: {
  9704. source: "./media/characters/argent/dragon-head.svg"
  9705. },
  9706. form: "dragon",
  9707. },
  9708. },
  9709. [
  9710. {
  9711. name: "Micro",
  9712. height: math.unit(2, "inches"),
  9713. form: "kobold",
  9714. },
  9715. {
  9716. name: "Normal",
  9717. height: math.unit(3 + 1 / 12, "feet"),
  9718. form: "kobold",
  9719. default: true
  9720. },
  9721. {
  9722. name: "Macro",
  9723. height: math.unit(120, "feet"),
  9724. form: "kobold",
  9725. },
  9726. {
  9727. name: "Speck",
  9728. height: math.unit(1, "mm"),
  9729. form: "dragon",
  9730. },
  9731. {
  9732. name: "Tiny",
  9733. height: math.unit(1, "cm"),
  9734. form: "dragon",
  9735. },
  9736. {
  9737. name: "Micro",
  9738. height: math.unit(5, "cm"),
  9739. form: "dragon",
  9740. },
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(75, "inches"),
  9744. form: "dragon",
  9745. default: true
  9746. },
  9747. {
  9748. name: "Extra Tall",
  9749. height: math.unit(9, "feet"),
  9750. form: "dragon",
  9751. },
  9752. {
  9753. name: "Inconvenient",
  9754. height: math.unit(5, "meters"),
  9755. form: "dragon",
  9756. },
  9757. {
  9758. name: "Macro",
  9759. height: math.unit(70, "meters"),
  9760. form: "dragon",
  9761. },
  9762. {
  9763. name: "Macro+",
  9764. height: math.unit(250, "meters"),
  9765. form: "dragon",
  9766. },
  9767. {
  9768. name: "Megamacro",
  9769. height: math.unit(20, "km"),
  9770. form: "dragon",
  9771. },
  9772. {
  9773. name: "Mountainous",
  9774. height: math.unit(100, "km"),
  9775. form: "dragon",
  9776. },
  9777. {
  9778. name: "Continental",
  9779. height: math.unit(2, "megameters"),
  9780. form: "dragon",
  9781. },
  9782. {
  9783. name: "Too Big",
  9784. height: math.unit(900, "megameters"),
  9785. form: "dragon",
  9786. },
  9787. ],
  9788. {
  9789. "kobold": {
  9790. name: "Kobold",
  9791. default: true
  9792. },
  9793. "dragon": {
  9794. name: "Dragon",
  9795. },
  9796. }
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9800. {
  9801. lamp: {
  9802. height: math.unit(7 * 1559 / 989, "feet"),
  9803. name: "Magic Lamp",
  9804. image: {
  9805. source: "./media/characters/mira-al-cul/lamp.svg",
  9806. extra: 1617 / 1559
  9807. }
  9808. },
  9809. front: {
  9810. height: math.unit(7, "feet"),
  9811. name: "Front",
  9812. image: {
  9813. source: "./media/characters/mira-al-cul/front.svg",
  9814. extra: 1044 / 990
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Heavily Restricted",
  9821. height: math.unit(7 * 1559 / 989, "feet")
  9822. },
  9823. {
  9824. name: "Freshly Freed",
  9825. height: math.unit(50 * 1559 / 989, "feet")
  9826. },
  9827. {
  9828. name: "World Encompassing",
  9829. height: math.unit(10000 * 1559 / 989, "miles")
  9830. },
  9831. {
  9832. name: "Galactic",
  9833. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9834. },
  9835. {
  9836. name: "Palmed Universe",
  9837. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "Multiversal Matriarch",
  9842. height: math.unit(8.87e10, "yottameters")
  9843. },
  9844. {
  9845. name: "Void Mother",
  9846. height: math.unit(3.14e110, "yottaparsecs")
  9847. },
  9848. {
  9849. name: "Toying with Transcendence",
  9850. height: math.unit(1e307, "meters")
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9856. {
  9857. front: {
  9858. height: math.unit(17 + 1 / 12, "feet"),
  9859. weight: math.unit(476.2 * 5, "lbs"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/kuro-shi-uchū/front.svg",
  9863. extra: 2329 / 1835,
  9864. bottom: 0.02
  9865. }
  9866. },
  9867. },
  9868. [
  9869. {
  9870. name: "Micro",
  9871. height: math.unit(2, "inches")
  9872. },
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(12, "meters")
  9876. },
  9877. {
  9878. name: "Planetary",
  9879. height: math.unit(0.00929, "AU"),
  9880. default: true
  9881. },
  9882. {
  9883. name: "Universal",
  9884. height: math.unit(20, "gigaparsecs")
  9885. },
  9886. ]
  9887. ))
  9888. characterMakers.push(() => makeCharacter(
  9889. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9890. {
  9891. front: {
  9892. height: math.unit(5 + 2 / 12, "feet"),
  9893. weight: math.unit(120, "lbs"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/katherine/front.svg",
  9897. extra: 2075 / 1969
  9898. }
  9899. },
  9900. dress: {
  9901. height: math.unit(5 + 2 / 12, "feet"),
  9902. weight: math.unit(120, "lbs"),
  9903. name: "Dress",
  9904. image: {
  9905. source: "./media/characters/katherine/dress.svg",
  9906. extra: 2258 / 2064
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Micro",
  9913. height: math.unit(1, "inches"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Normal",
  9918. height: math.unit(5 + 2 / 12, "feet")
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(100, "meters")
  9923. },
  9924. {
  9925. name: "Megamacro",
  9926. height: math.unit(80, "miles")
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9932. {
  9933. front: {
  9934. height: math.unit(7 + 8 / 12, "feet"),
  9935. weight: math.unit(250, "lbs"),
  9936. name: "Front",
  9937. image: {
  9938. source: "./media/characters/yevis/front.svg",
  9939. extra: 1938 / 1755
  9940. }
  9941. }
  9942. },
  9943. [
  9944. {
  9945. name: "Mortal",
  9946. height: math.unit(7 + 8 / 12, "feet")
  9947. },
  9948. {
  9949. name: "Battle",
  9950. height: math.unit(25 + 11 / 12, "feet")
  9951. },
  9952. {
  9953. name: "Wrath",
  9954. height: math.unit(1654 + 11 / 12, "feet")
  9955. },
  9956. {
  9957. name: "Planet Destroyer",
  9958. height: math.unit(12000, "miles")
  9959. },
  9960. {
  9961. name: "Galaxy Conqueror",
  9962. height: math.unit(1.45, "zettameters"),
  9963. default: true
  9964. },
  9965. {
  9966. name: "Universal War",
  9967. height: math.unit(184, "gigaparsecs")
  9968. },
  9969. {
  9970. name: "Eternity War",
  9971. height: math.unit(1.98e55, "yottaparsecs")
  9972. },
  9973. ]
  9974. ))
  9975. characterMakers.push(() => makeCharacter(
  9976. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9977. {
  9978. front: {
  9979. height: math.unit(5 + 8 / 12, "feet"),
  9980. weight: math.unit(63, "kg"),
  9981. name: "Front",
  9982. image: {
  9983. source: "./media/characters/xavier/front.svg",
  9984. extra: 944 / 883
  9985. }
  9986. },
  9987. frontStretch: {
  9988. height: math.unit(5 + 8 / 12, "feet"),
  9989. weight: math.unit(63, "kg"),
  9990. name: "Stretching",
  9991. image: {
  9992. source: "./media/characters/xavier/front-stretch.svg",
  9993. extra: 962 / 820
  9994. }
  9995. },
  9996. },
  9997. [
  9998. {
  9999. name: "Normal",
  10000. height: math.unit(5 + 8 / 12, "feet")
  10001. },
  10002. {
  10003. name: "Macro",
  10004. height: math.unit(100, "meters"),
  10005. default: true
  10006. },
  10007. {
  10008. name: "McLargeHuge",
  10009. height: math.unit(10, "miles")
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10015. {
  10016. front: {
  10017. height: math.unit(5 + 5 / 12, "feet"),
  10018. weight: math.unit(150, "lb"),
  10019. name: "Front",
  10020. image: {
  10021. source: "./media/characters/joshii/front.svg",
  10022. extra: 765 / 653,
  10023. bottom: 51 / 816
  10024. }
  10025. },
  10026. foot: {
  10027. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10028. name: "Foot",
  10029. image: {
  10030. source: "./media/characters/joshii/foot.svg"
  10031. }
  10032. },
  10033. },
  10034. [
  10035. {
  10036. name: "Micro",
  10037. height: math.unit(2, "inches")
  10038. },
  10039. {
  10040. name: "Normal",
  10041. height: math.unit(5 + 5 / 12, "feet")
  10042. },
  10043. {
  10044. name: "Macro",
  10045. height: math.unit(785, "feet"),
  10046. default: true
  10047. },
  10048. {
  10049. name: "Megamacro",
  10050. height: math.unit(24.5, "miles")
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10056. {
  10057. front: {
  10058. height: math.unit(6, "feet"),
  10059. weight: math.unit(150, "lb"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/goddess-elizabeth/front.svg",
  10063. extra: 1800 / 1525,
  10064. bottom: 0.005
  10065. }
  10066. },
  10067. foot: {
  10068. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10069. name: "Foot",
  10070. image: {
  10071. source: "./media/characters/goddess-elizabeth/foot.svg"
  10072. }
  10073. },
  10074. mouth: {
  10075. height: math.unit(6, "feet"),
  10076. name: "Mouth",
  10077. image: {
  10078. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Micro",
  10085. height: math.unit(12, "feet")
  10086. },
  10087. {
  10088. name: "Normal",
  10089. height: math.unit(80, "miles"),
  10090. default: true
  10091. },
  10092. {
  10093. name: "Macro",
  10094. height: math.unit(15000, "parsecs")
  10095. },
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10100. {
  10101. front: {
  10102. height: math.unit(5 + 9 / 12, "feet"),
  10103. weight: math.unit(144, "lb"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/kara/front.svg"
  10107. }
  10108. },
  10109. feet: {
  10110. height: math.unit(6 / 6.765, "feet"),
  10111. name: "Kara's Feet",
  10112. rename: true,
  10113. image: {
  10114. source: "./media/characters/kara/feet.svg"
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Normal",
  10121. height: math.unit(5 + 9 / 12, "feet")
  10122. },
  10123. {
  10124. name: "Macro",
  10125. height: math.unit(174, "feet"),
  10126. default: true
  10127. },
  10128. ]
  10129. ))
  10130. characterMakers.push(() => makeCharacter(
  10131. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10132. {
  10133. front: {
  10134. height: math.unit(18, "feet"),
  10135. weight: math.unit(4050, "lb"),
  10136. name: "Front",
  10137. image: {
  10138. source: "./media/characters/tyrone/front.svg",
  10139. extra: 2405 / 2270,
  10140. bottom: 182 / 2587
  10141. }
  10142. },
  10143. },
  10144. [
  10145. {
  10146. name: "Normal",
  10147. height: math.unit(18, "feet"),
  10148. default: true
  10149. },
  10150. {
  10151. name: "Macro",
  10152. height: math.unit(300, "feet")
  10153. },
  10154. {
  10155. name: "Megamacro",
  10156. height: math.unit(15, "km")
  10157. },
  10158. {
  10159. name: "Gigamacro",
  10160. height: math.unit(500, "km")
  10161. },
  10162. {
  10163. name: "Teramacro",
  10164. height: math.unit(0.5, "gigameters")
  10165. },
  10166. {
  10167. name: "Omnimacro",
  10168. height: math.unit(1e252, "yottauniverse")
  10169. },
  10170. ]
  10171. ))
  10172. characterMakers.push(() => makeCharacter(
  10173. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10174. {
  10175. front: {
  10176. height: math.unit(7 + 8 / 12, "feet"),
  10177. weight: math.unit(120, "lb"),
  10178. name: "Front",
  10179. image: {
  10180. source: "./media/characters/danny/front.svg",
  10181. extra: 1490 / 1350
  10182. }
  10183. },
  10184. back: {
  10185. height: math.unit(7 + 8 / 12, "feet"),
  10186. weight: math.unit(120, "lb"),
  10187. name: "Back",
  10188. image: {
  10189. source: "./media/characters/danny/back.svg",
  10190. extra: 1490 / 1350
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(7 + 8 / 12, "feet"),
  10198. default: true
  10199. },
  10200. ]
  10201. ))
  10202. characterMakers.push(() => makeCharacter(
  10203. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10204. {
  10205. front: {
  10206. height: math.unit(3.5, "inches"),
  10207. weight: math.unit(19, "grams"),
  10208. name: "Front",
  10209. image: {
  10210. source: "./media/characters/mallow/front.svg",
  10211. extra: 471 / 431
  10212. }
  10213. },
  10214. back: {
  10215. height: math.unit(3.5, "inches"),
  10216. weight: math.unit(19, "grams"),
  10217. name: "Back",
  10218. image: {
  10219. source: "./media/characters/mallow/back.svg",
  10220. extra: 471 / 431
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(3.5, "inches"),
  10228. default: true
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(9, "feet"),
  10237. weight: math.unit(230, "kg"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/starry-aqua/front.svg"
  10241. }
  10242. },
  10243. back: {
  10244. height: math.unit(9, "feet"),
  10245. weight: math.unit(230, "kg"),
  10246. name: "Back",
  10247. image: {
  10248. source: "./media/characters/starry-aqua/back.svg"
  10249. }
  10250. },
  10251. hand: {
  10252. height: math.unit(9 * 0.1168, "feet"),
  10253. name: "Hand",
  10254. image: {
  10255. source: "./media/characters/starry-aqua/hand.svg"
  10256. }
  10257. },
  10258. foot: {
  10259. height: math.unit(9 * 0.18, "feet"),
  10260. name: "Foot",
  10261. image: {
  10262. source: "./media/characters/starry-aqua/foot.svg"
  10263. }
  10264. }
  10265. },
  10266. [
  10267. {
  10268. name: "Micro",
  10269. height: math.unit(3, "inches")
  10270. },
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(9, "feet")
  10274. },
  10275. {
  10276. name: "Macro",
  10277. height: math.unit(300, "feet"),
  10278. default: true
  10279. },
  10280. {
  10281. name: "Megamacro",
  10282. height: math.unit(3200, "feet")
  10283. }
  10284. ]
  10285. ))
  10286. characterMakers.push(() => makeCharacter(
  10287. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10288. {
  10289. front: {
  10290. height: math.unit(15, "feet"),
  10291. weight: math.unit(5026, "lb"),
  10292. name: "Front",
  10293. image: {
  10294. source: "./media/characters/luka-towers/front.svg",
  10295. extra: 1269/1133,
  10296. bottom: 51/1320
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Normal",
  10303. height: math.unit(15, "feet"),
  10304. default: true
  10305. },
  10306. {
  10307. name: "Minimacro",
  10308. height: math.unit(25, "feet")
  10309. },
  10310. {
  10311. name: "Macro",
  10312. height: math.unit(320, "feet")
  10313. },
  10314. {
  10315. name: "Megamacro",
  10316. height: math.unit(35000, "feet")
  10317. },
  10318. {
  10319. name: "Gigamacro",
  10320. height: math.unit(4000, "miles")
  10321. },
  10322. {
  10323. name: "Teramacro",
  10324. height: math.unit(15000, "miles")
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(150, "lb"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/natalie-nightring/front.svg",
  10337. extra: 1,
  10338. bottom: 0.06
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Uh Oh",
  10345. height: math.unit(0.1, "mm")
  10346. },
  10347. {
  10348. name: "Small",
  10349. height: math.unit(3, "inches")
  10350. },
  10351. {
  10352. name: "Human Scale",
  10353. height: math.unit(6, "feet")
  10354. },
  10355. {
  10356. name: "Librarian",
  10357. height: math.unit(50, "feet"),
  10358. default: true
  10359. },
  10360. {
  10361. name: "Immense",
  10362. height: math.unit(200, "miles")
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10368. {
  10369. front: {
  10370. height: math.unit(6, "feet"),
  10371. weight: math.unit(180, "lbs"),
  10372. name: "Front",
  10373. image: {
  10374. source: "./media/characters/danni-rosie/front.svg",
  10375. extra: 1260 / 1128,
  10376. bottom: 0.022
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Micro",
  10383. height: math.unit(2, "inches"),
  10384. default: true
  10385. },
  10386. ]
  10387. ))
  10388. characterMakers.push(() => makeCharacter(
  10389. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10390. {
  10391. front: {
  10392. height: math.unit(5 + 9 / 12, "feet"),
  10393. weight: math.unit(220, "lb"),
  10394. name: "Front",
  10395. image: {
  10396. source: "./media/characters/samantha-kruse/front.svg",
  10397. extra: (985 / 935),
  10398. bottom: 0.03
  10399. }
  10400. },
  10401. frontUndressed: {
  10402. height: math.unit(5 + 9 / 12, "feet"),
  10403. weight: math.unit(220, "lb"),
  10404. name: "Front (Undressed)",
  10405. image: {
  10406. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10407. extra: (973 / 923),
  10408. bottom: 0.025
  10409. }
  10410. },
  10411. fat: {
  10412. height: math.unit(5 + 9 / 12, "feet"),
  10413. weight: math.unit(900, "lb"),
  10414. name: "Front (Fat)",
  10415. image: {
  10416. source: "./media/characters/samantha-kruse/fat.svg",
  10417. extra: 2688 / 2561
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Normal",
  10424. height: math.unit(5 + 9 / 12, "feet"),
  10425. default: true
  10426. }
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10431. {
  10432. back: {
  10433. height: math.unit(5 + 4 / 12, "feet"),
  10434. weight: math.unit(4963, "lb"),
  10435. name: "Back",
  10436. image: {
  10437. source: "./media/characters/amelia-rosie/back.svg",
  10438. extra: 1113 / 963,
  10439. bottom: 0.01
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Level 0",
  10446. height: math.unit(5 + 4 / 12, "feet")
  10447. },
  10448. {
  10449. name: "Level 1",
  10450. height: math.unit(164597, "feet"),
  10451. default: true
  10452. },
  10453. {
  10454. name: "Level 2",
  10455. height: math.unit(956243, "miles")
  10456. },
  10457. {
  10458. name: "Level 3",
  10459. height: math.unit(29421709423, "miles")
  10460. },
  10461. {
  10462. name: "Level 4",
  10463. height: math.unit(154, "lightyears")
  10464. },
  10465. {
  10466. name: "Level 5",
  10467. height: math.unit(4738272, "lightyears")
  10468. },
  10469. {
  10470. name: "Level 6",
  10471. height: math.unit(145787152896, "lightyears")
  10472. },
  10473. ]
  10474. ))
  10475. characterMakers.push(() => makeCharacter(
  10476. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10477. {
  10478. front: {
  10479. height: math.unit(5 + 11 / 12, "feet"),
  10480. weight: math.unit(65, "kg"),
  10481. name: "Front",
  10482. image: {
  10483. source: "./media/characters/rook-kitara/front.svg",
  10484. extra: 1347 / 1274,
  10485. bottom: 0.005
  10486. }
  10487. },
  10488. },
  10489. [
  10490. {
  10491. name: "Totally Unfair",
  10492. height: math.unit(1.8, "mm")
  10493. },
  10494. {
  10495. name: "Lap Rookie",
  10496. height: math.unit(1.4, "feet")
  10497. },
  10498. {
  10499. name: "Normal",
  10500. height: math.unit(5 + 11 / 12, "feet"),
  10501. default: true
  10502. },
  10503. {
  10504. name: "How Did This Happen",
  10505. height: math.unit(80, "miles")
  10506. }
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10511. {
  10512. front: {
  10513. height: math.unit(7, "feet"),
  10514. weight: math.unit(300, "lb"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/pisces/front.svg",
  10518. extra: 2255 / 2115,
  10519. bottom: 0.03
  10520. }
  10521. },
  10522. back: {
  10523. height: math.unit(7, "feet"),
  10524. weight: math.unit(300, "lb"),
  10525. name: "Back",
  10526. image: {
  10527. source: "./media/characters/pisces/back.svg",
  10528. extra: 2146 / 2055,
  10529. bottom: 0.04
  10530. }
  10531. },
  10532. },
  10533. [
  10534. {
  10535. name: "Normal",
  10536. height: math.unit(7, "feet"),
  10537. default: true
  10538. },
  10539. {
  10540. name: "Swimming Pool",
  10541. height: math.unit(12.2, "meters")
  10542. },
  10543. {
  10544. name: "Olympic Swimming Pool",
  10545. height: math.unit(56.3, "meters")
  10546. },
  10547. {
  10548. name: "Lake Superior",
  10549. height: math.unit(93900, "meters")
  10550. },
  10551. {
  10552. name: "Mediterranean Sea",
  10553. height: math.unit(644457, "meters")
  10554. },
  10555. {
  10556. name: "World's Oceans",
  10557. height: math.unit(4567491, "meters")
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10563. {
  10564. front: {
  10565. height: math.unit(2.3, "meters"),
  10566. weight: math.unit(120, "kg"),
  10567. name: "Front",
  10568. image: {
  10569. source: "./media/characters/zelas/front.svg"
  10570. }
  10571. },
  10572. side: {
  10573. height: math.unit(2.3, "meters"),
  10574. weight: math.unit(120, "kg"),
  10575. name: "Side",
  10576. image: {
  10577. source: "./media/characters/zelas/side.svg"
  10578. }
  10579. },
  10580. back: {
  10581. height: math.unit(2.3, "meters"),
  10582. weight: math.unit(120, "kg"),
  10583. name: "Back",
  10584. image: {
  10585. source: "./media/characters/zelas/back.svg"
  10586. }
  10587. },
  10588. foot: {
  10589. height: math.unit(1.116, "feet"),
  10590. name: "Foot",
  10591. image: {
  10592. source: "./media/characters/zelas/foot.svg"
  10593. }
  10594. },
  10595. },
  10596. [
  10597. {
  10598. name: "Normal",
  10599. height: math.unit(2.3, "meters")
  10600. },
  10601. {
  10602. name: "Macro",
  10603. height: math.unit(30, "meters"),
  10604. default: true
  10605. },
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10610. {
  10611. front: {
  10612. height: math.unit(1, "inch"),
  10613. weight: math.unit(0.21, "grams"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/talbot/front.svg",
  10617. extra: 594 / 544
  10618. }
  10619. },
  10620. },
  10621. [
  10622. {
  10623. name: "Micro",
  10624. height: math.unit(1, "inch"),
  10625. default: true
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10631. {
  10632. front: {
  10633. height: math.unit(3 + 3 / 12, "feet"),
  10634. weight: math.unit(51.8, "lb"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/fliss/front.svg",
  10638. extra: 840 / 640
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Teeny Tiny",
  10645. height: math.unit(1, "mm")
  10646. },
  10647. {
  10648. name: "Small",
  10649. height: math.unit(1, "inch"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Standard Sylveon",
  10654. height: math.unit(3 + 3 / 12, "feet")
  10655. },
  10656. {
  10657. name: "Large Nuisance",
  10658. height: math.unit(33, "feet")
  10659. },
  10660. {
  10661. name: "City Filler",
  10662. height: math.unit(3000, "feet")
  10663. },
  10664. {
  10665. name: "New Horizon",
  10666. height: math.unit(6000, "miles")
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10672. {
  10673. front: {
  10674. height: math.unit(5, "cm"),
  10675. weight: math.unit(1.94, "g"),
  10676. name: "Front",
  10677. image: {
  10678. source: "./media/characters/fleta/front.svg",
  10679. extra: 835 / 803
  10680. }
  10681. },
  10682. back: {
  10683. height: math.unit(5, "cm"),
  10684. weight: math.unit(1.94, "g"),
  10685. name: "Back",
  10686. image: {
  10687. source: "./media/characters/fleta/back.svg",
  10688. extra: 835 / 803
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Micro",
  10695. height: math.unit(5, "cm"),
  10696. default: true
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10702. {
  10703. front: {
  10704. height: math.unit(6, "feet"),
  10705. weight: math.unit(225, "lb"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/dominic/front.svg",
  10709. extra: 1770 / 1620,
  10710. bottom: 0.025
  10711. }
  10712. },
  10713. back: {
  10714. height: math.unit(6, "feet"),
  10715. weight: math.unit(225, "lb"),
  10716. name: "Back",
  10717. image: {
  10718. source: "./media/characters/dominic/back.svg",
  10719. extra: 1745 / 1620,
  10720. bottom: 0.065
  10721. }
  10722. },
  10723. },
  10724. [
  10725. {
  10726. name: "Nano",
  10727. height: math.unit(0.1, "mm")
  10728. },
  10729. {
  10730. name: "Micro-",
  10731. height: math.unit(1, "mm")
  10732. },
  10733. {
  10734. name: "Micro",
  10735. height: math.unit(4, "inches")
  10736. },
  10737. {
  10738. name: "Normal",
  10739. height: math.unit(6 + 4 / 12, "feet"),
  10740. default: true
  10741. },
  10742. {
  10743. name: "Macro",
  10744. height: math.unit(115, "feet")
  10745. },
  10746. {
  10747. name: "Macro+",
  10748. height: math.unit(955, "feet")
  10749. },
  10750. {
  10751. name: "Megamacro",
  10752. height: math.unit(8990, "feet")
  10753. },
  10754. {
  10755. name: "Gigmacro",
  10756. height: math.unit(9310, "miles")
  10757. },
  10758. {
  10759. name: "Teramacro",
  10760. height: math.unit(1567005010, "miles")
  10761. },
  10762. {
  10763. name: "Examacro",
  10764. height: math.unit(1425, "parsecs")
  10765. },
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10770. {
  10771. front: {
  10772. height: math.unit(400, "feet"),
  10773. weight: math.unit(44444444, "lb"),
  10774. name: "Front",
  10775. image: {
  10776. source: "./media/characters/major-colonel/front.svg"
  10777. }
  10778. },
  10779. back: {
  10780. height: math.unit(400, "feet"),
  10781. weight: math.unit(44444444, "lb"),
  10782. name: "Back",
  10783. image: {
  10784. source: "./media/characters/major-colonel/back.svg"
  10785. }
  10786. },
  10787. },
  10788. [
  10789. {
  10790. name: "Macro",
  10791. height: math.unit(400, "feet"),
  10792. default: true
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10798. {
  10799. catFront: {
  10800. height: math.unit(6, "feet"),
  10801. weight: math.unit(120, "lb"),
  10802. name: "Front (Cat Side)",
  10803. image: {
  10804. source: "./media/characters/axel-lycan/cat-front.svg",
  10805. extra: 430 / 402,
  10806. bottom: 43 / 472.35
  10807. }
  10808. },
  10809. catBack: {
  10810. height: math.unit(6, "feet"),
  10811. weight: math.unit(120, "lb"),
  10812. name: "Back (Cat Side)",
  10813. image: {
  10814. source: "./media/characters/axel-lycan/cat-back.svg",
  10815. extra: 447 / 419,
  10816. bottom: 23.3 / 469
  10817. }
  10818. },
  10819. wolfFront: {
  10820. height: math.unit(6, "feet"),
  10821. weight: math.unit(120, "lb"),
  10822. name: "Front (Wolf Side)",
  10823. image: {
  10824. source: "./media/characters/axel-lycan/wolf-front.svg",
  10825. extra: 485 / 456,
  10826. bottom: 19 / 504
  10827. }
  10828. },
  10829. wolfBack: {
  10830. height: math.unit(6, "feet"),
  10831. weight: math.unit(120, "lb"),
  10832. name: "Back (Wolf Side)",
  10833. image: {
  10834. source: "./media/characters/axel-lycan/wolf-back.svg",
  10835. extra: 475 / 438,
  10836. bottom: 39.2 / 514
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(1, "km"),
  10844. default: true
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(5 + 9 / 12, "feet"),
  10853. weight: math.unit(175, "lb"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/vanrel-hyena/front.svg",
  10857. extra: 1086 / 1010,
  10858. bottom: 0.04
  10859. }
  10860. },
  10861. },
  10862. [
  10863. {
  10864. name: "Normal",
  10865. height: math.unit(5 + 9 / 12, "feet"),
  10866. default: true
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(6, "feet"),
  10875. weight: math.unit(103, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/abbott-absol/front.svg",
  10879. extra: 2010 / 1842
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Megamicro",
  10886. height: math.unit(0.1, "mm")
  10887. },
  10888. {
  10889. name: "Micro",
  10890. height: math.unit(1, "inch")
  10891. },
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(6, "feet"),
  10895. default: true
  10896. },
  10897. ]
  10898. ))
  10899. characterMakers.push(() => makeCharacter(
  10900. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10901. {
  10902. front: {
  10903. height: math.unit(6, "feet"),
  10904. weight: math.unit(264, "lb"),
  10905. name: "Front",
  10906. image: {
  10907. source: "./media/characters/hector/front.svg",
  10908. extra: 2280 / 2130,
  10909. bottom: 0.07
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(12.25, "foot"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Macro",
  10921. height: math.unit(160, "feet")
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10927. {
  10928. front: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(150, "lb"),
  10931. name: "Front",
  10932. image: {
  10933. source: "./media/characters/sal/front.svg",
  10934. extra: 1846 / 1699,
  10935. bottom: 0.04
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Megamacro",
  10942. height: math.unit(10, "miles"),
  10943. default: true
  10944. },
  10945. ]
  10946. ))
  10947. characterMakers.push(() => makeCharacter(
  10948. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10949. {
  10950. front: {
  10951. height: math.unit(3, "meters"),
  10952. weight: math.unit(450, "kg"),
  10953. name: "front",
  10954. image: {
  10955. source: "./media/characters/ranger/front.svg",
  10956. extra: 2401 / 2243,
  10957. bottom: 0.05
  10958. }
  10959. },
  10960. },
  10961. [
  10962. {
  10963. name: "Normal",
  10964. height: math.unit(3, "meters"),
  10965. default: true
  10966. },
  10967. ]
  10968. ))
  10969. characterMakers.push(() => makeCharacter(
  10970. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10971. {
  10972. front: {
  10973. height: math.unit(14, "feet"),
  10974. weight: math.unit(800, "kg"),
  10975. name: "Front",
  10976. image: {
  10977. source: "./media/characters/theresa/front.svg",
  10978. extra: 3575 / 3346,
  10979. bottom: 0.03
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Normal",
  10986. height: math.unit(14, "feet"),
  10987. default: true
  10988. },
  10989. ]
  10990. ))
  10991. characterMakers.push(() => makeCharacter(
  10992. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10993. {
  10994. front: {
  10995. height: math.unit(6, "feet"),
  10996. weight: math.unit(3, "kg"),
  10997. name: "Front",
  10998. image: {
  10999. source: "./media/characters/ine/front.svg",
  11000. extra: 678 / 539,
  11001. bottom: 0.023
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(2.265, "feet"),
  11009. default: true
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11015. {
  11016. front: {
  11017. height: math.unit(5, "feet"),
  11018. weight: math.unit(30, "kg"),
  11019. name: "Front",
  11020. image: {
  11021. source: "./media/characters/vial/front.svg",
  11022. extra: 1365 / 1277,
  11023. bottom: 0.04
  11024. }
  11025. },
  11026. },
  11027. [
  11028. {
  11029. name: "Normal",
  11030. height: math.unit(5, "feet"),
  11031. default: true
  11032. },
  11033. ]
  11034. ))
  11035. characterMakers.push(() => makeCharacter(
  11036. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11037. {
  11038. side: {
  11039. height: math.unit(3.4, "meters"),
  11040. weight: math.unit(1000, "lb"),
  11041. name: "Side",
  11042. image: {
  11043. source: "./media/characters/rovoska/side.svg",
  11044. extra: 4403 / 1515
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Normal",
  11051. height: math.unit(3.4, "meters"),
  11052. default: true
  11053. },
  11054. ]
  11055. ))
  11056. characterMakers.push(() => makeCharacter(
  11057. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11058. {
  11059. front: {
  11060. height: math.unit(8, "feet"),
  11061. weight: math.unit(315, "lb"),
  11062. name: "Front",
  11063. image: {
  11064. source: "./media/characters/gunner-rotthbauer/front.svg"
  11065. }
  11066. },
  11067. back: {
  11068. height: math.unit(8, "feet"),
  11069. weight: math.unit(315, "lb"),
  11070. name: "Back",
  11071. image: {
  11072. source: "./media/characters/gunner-rotthbauer/back.svg"
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Micro",
  11079. height: math.unit(3.5, "inches")
  11080. },
  11081. {
  11082. name: "Normal",
  11083. height: math.unit(8, "feet"),
  11084. default: true
  11085. },
  11086. {
  11087. name: "Macro",
  11088. height: math.unit(250, "feet")
  11089. },
  11090. {
  11091. name: "Megamacro",
  11092. height: math.unit(1, "AU")
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11098. {
  11099. front: {
  11100. height: math.unit(5 + 5 / 12, "feet"),
  11101. weight: math.unit(140, "lb"),
  11102. name: "Front",
  11103. image: {
  11104. source: "./media/characters/allatia/front.svg",
  11105. extra: 1227 / 1180,
  11106. bottom: 0.027
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Normal",
  11113. height: math.unit(5 + 5 / 12, "feet")
  11114. },
  11115. {
  11116. name: "Macro",
  11117. height: math.unit(250, "feet"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Megamacro",
  11122. height: math.unit(8, "miles")
  11123. }
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(120, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/tene/front.svg",
  11135. extra: 814/750,
  11136. bottom: 36/850
  11137. }
  11138. },
  11139. stomping: {
  11140. height: math.unit(2.025, "meters"),
  11141. weight: math.unit(120, "lb"),
  11142. name: "Stomping",
  11143. image: {
  11144. source: "./media/characters/tene/stomping.svg",
  11145. extra: 885/821,
  11146. bottom: 15/900
  11147. }
  11148. },
  11149. sitting: {
  11150. height: math.unit(1, "meter"),
  11151. weight: math.unit(120, "lb"),
  11152. name: "Sitting",
  11153. image: {
  11154. source: "./media/characters/tene/sitting.svg",
  11155. extra: 396/366,
  11156. bottom: 79/475
  11157. }
  11158. },
  11159. smiling: {
  11160. height: math.unit(1.2, "feet"),
  11161. name: "Smiling",
  11162. image: {
  11163. source: "./media/characters/tene/smiling.svg",
  11164. extra: 1364/1071,
  11165. bottom: 0/1364
  11166. }
  11167. },
  11168. smug: {
  11169. height: math.unit(1.3, "feet"),
  11170. name: "Smug",
  11171. image: {
  11172. source: "./media/characters/tene/smug.svg",
  11173. extra: 1323/1082,
  11174. bottom: 0/1323
  11175. }
  11176. },
  11177. feral: {
  11178. height: math.unit(3.9, "feet"),
  11179. weight: math.unit(250, "lb"),
  11180. name: "Feral",
  11181. image: {
  11182. source: "./media/characters/tene/feral.svg",
  11183. extra: 717 / 458,
  11184. bottom: 0.179
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Normal",
  11191. height: math.unit(6, "feet")
  11192. },
  11193. {
  11194. name: "Macro",
  11195. height: math.unit(300, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Megamacro",
  11200. height: math.unit(5, "miles")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11206. {
  11207. side: {
  11208. height: math.unit(6, "feet"),
  11209. name: "Side",
  11210. image: {
  11211. source: "./media/characters/evander/side.svg",
  11212. extra: 877 / 477
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(0.83, "meters"),
  11220. default: true
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(12, "feet"),
  11229. weight: math.unit(1000, "lb"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11233. extra: 1762 / 1611
  11234. }
  11235. },
  11236. back: {
  11237. height: math.unit(12, "feet"),
  11238. weight: math.unit(1000, "lb"),
  11239. name: "Back",
  11240. image: {
  11241. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11242. extra: 1762 / 1611
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(12, "feet"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Kaiju",
  11254. height: math.unit(150, "feet")
  11255. },
  11256. ]
  11257. ))
  11258. characterMakers.push(() => makeCharacter(
  11259. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11260. {
  11261. front: {
  11262. height: math.unit(6, "feet"),
  11263. weight: math.unit(150, "lb"),
  11264. name: "Front",
  11265. image: {
  11266. source: "./media/characters/zero-alurus/front.svg"
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(6, "feet"),
  11271. weight: math.unit(150, "lb"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/zero-alurus/back.svg"
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(5 + 10 / 12, "feet")
  11282. },
  11283. {
  11284. name: "Macro",
  11285. height: math.unit(60, "feet"),
  11286. default: true
  11287. },
  11288. {
  11289. name: "Macro+",
  11290. height: math.unit(450, "feet")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(6, "feet"),
  11299. weight: math.unit(200, "lb"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/mega-shi/front.svg",
  11303. extra: 1279 / 1250,
  11304. bottom: 0.02
  11305. }
  11306. },
  11307. back: {
  11308. height: math.unit(6, "feet"),
  11309. weight: math.unit(200, "lb"),
  11310. name: "Back",
  11311. image: {
  11312. source: "./media/characters/mega-shi/back.svg",
  11313. extra: 1279 / 1250,
  11314. bottom: 0.02
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Micro",
  11321. height: math.unit(16 + 6 / 12, "feet")
  11322. },
  11323. {
  11324. name: "Third Dimension",
  11325. height: math.unit(40, "meters")
  11326. },
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(660, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Megamacro",
  11334. height: math.unit(10, "miles")
  11335. },
  11336. {
  11337. name: "Planetary Launch",
  11338. height: math.unit(500, "miles")
  11339. },
  11340. {
  11341. name: "Interstellar",
  11342. height: math.unit(1e9, "miles")
  11343. },
  11344. {
  11345. name: "Leaving the Universe",
  11346. height: math.unit(1, "gigaparsec")
  11347. },
  11348. {
  11349. name: "Travelling Universes",
  11350. height: math.unit(30e15, "parsecs")
  11351. },
  11352. ]
  11353. ))
  11354. characterMakers.push(() => makeCharacter(
  11355. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11356. {
  11357. front: {
  11358. height: math.unit(5 + 4/12, "feet"),
  11359. weight: math.unit(120, "lb"),
  11360. name: "Front",
  11361. image: {
  11362. source: "./media/characters/odyssey/front.svg",
  11363. extra: 1747/1571,
  11364. bottom: 47/1794
  11365. }
  11366. },
  11367. side: {
  11368. height: math.unit(5.1, "feet"),
  11369. weight: math.unit(120, "lb"),
  11370. name: "Side",
  11371. image: {
  11372. source: "./media/characters/odyssey/side.svg",
  11373. extra: 1847/1619,
  11374. bottom: 47/1894
  11375. }
  11376. },
  11377. lounging: {
  11378. height: math.unit(1.464, "feet"),
  11379. weight: math.unit(120, "lb"),
  11380. name: "Lounging",
  11381. image: {
  11382. source: "./media/characters/odyssey/lounging.svg",
  11383. extra: 1235/837,
  11384. bottom: 551/1786
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(5 + 4 / 12, "feet")
  11392. },
  11393. {
  11394. name: "Macro",
  11395. height: math.unit(1, "km")
  11396. },
  11397. {
  11398. name: "Megamacro",
  11399. height: math.unit(3000, "km")
  11400. },
  11401. {
  11402. name: "Gigamacro",
  11403. height: math.unit(1, "AU"),
  11404. default: true
  11405. },
  11406. {
  11407. name: "Omniversal",
  11408. height: math.unit(100e14, "lightyears")
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11414. {
  11415. front: {
  11416. height: math.unit(5 + 10/12, "feet"),
  11417. name: "Front",
  11418. image: {
  11419. source: "./media/characters/mekuto/front.svg",
  11420. extra: 875/835,
  11421. bottom: 46/921
  11422. }
  11423. },
  11424. },
  11425. [
  11426. {
  11427. name: "Minimicro",
  11428. height: math.unit(0.2, "inches")
  11429. },
  11430. {
  11431. name: "Micro",
  11432. height: math.unit(1.5, "inches")
  11433. },
  11434. {
  11435. name: "Normal",
  11436. height: math.unit(5 + 10 / 12, "feet"),
  11437. default: true
  11438. },
  11439. {
  11440. name: "Minimacro",
  11441. height: math.unit(17 + 9 / 12, "feet")
  11442. },
  11443. {
  11444. name: "Macro",
  11445. height: math.unit(177.5, "feet")
  11446. },
  11447. {
  11448. name: "Megamacro",
  11449. height: math.unit(152, "miles")
  11450. },
  11451. ]
  11452. ))
  11453. characterMakers.push(() => makeCharacter(
  11454. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11455. {
  11456. front: {
  11457. height: math.unit(6.5, "inches"),
  11458. weight: math.unit(13, "oz"),
  11459. name: "Front",
  11460. image: {
  11461. source: "./media/characters/dafydd-tomos/front.svg",
  11462. extra: 2990 / 2603,
  11463. bottom: 0.03
  11464. }
  11465. },
  11466. },
  11467. [
  11468. {
  11469. name: "Micro",
  11470. height: math.unit(6.5, "inches"),
  11471. default: true
  11472. },
  11473. ]
  11474. ))
  11475. characterMakers.push(() => makeCharacter(
  11476. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11477. {
  11478. front: {
  11479. height: math.unit(6, "feet"),
  11480. weight: math.unit(150, "lb"),
  11481. name: "Front",
  11482. image: {
  11483. source: "./media/characters/splinter/front.svg",
  11484. extra: 2990 / 2882,
  11485. bottom: 0.04
  11486. }
  11487. },
  11488. back: {
  11489. height: math.unit(6, "feet"),
  11490. weight: math.unit(150, "lb"),
  11491. name: "Back",
  11492. image: {
  11493. source: "./media/characters/splinter/back.svg",
  11494. extra: 2990 / 2882,
  11495. bottom: 0.04
  11496. }
  11497. },
  11498. },
  11499. [
  11500. {
  11501. name: "Normal",
  11502. height: math.unit(6, "feet")
  11503. },
  11504. {
  11505. name: "Macro",
  11506. height: math.unit(230, "meters"),
  11507. default: true
  11508. },
  11509. ]
  11510. ))
  11511. characterMakers.push(() => makeCharacter(
  11512. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11513. {
  11514. front: {
  11515. height: math.unit(4 + 10 / 12, "feet"),
  11516. weight: math.unit(480, "lb"),
  11517. name: "Front",
  11518. image: {
  11519. source: "./media/characters/snow-gabumon/front.svg",
  11520. extra: 1140 / 963,
  11521. bottom: 0.058
  11522. }
  11523. },
  11524. back: {
  11525. height: math.unit(4 + 10 / 12, "feet"),
  11526. weight: math.unit(480, "lb"),
  11527. name: "Back",
  11528. image: {
  11529. source: "./media/characters/snow-gabumon/back.svg",
  11530. extra: 1115 / 962,
  11531. bottom: 0.041
  11532. }
  11533. },
  11534. frontUndresed: {
  11535. height: math.unit(4 + 10 / 12, "feet"),
  11536. weight: math.unit(480, "lb"),
  11537. name: "Front (Undressed)",
  11538. image: {
  11539. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11540. extra: 1061 / 960,
  11541. bottom: 0.045
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Micro",
  11548. height: math.unit(1, "inch")
  11549. },
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(4 + 10 / 12, "feet"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Macro",
  11557. height: math.unit(200, "feet")
  11558. },
  11559. {
  11560. name: "Megamacro",
  11561. height: math.unit(120, "miles")
  11562. },
  11563. {
  11564. name: "Gigamacro",
  11565. height: math.unit(9800, "miles")
  11566. },
  11567. ]
  11568. ))
  11569. characterMakers.push(() => makeCharacter(
  11570. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11571. {
  11572. front: {
  11573. height: math.unit(1.7, "meters"),
  11574. weight: math.unit(140, "lb"),
  11575. name: "Front",
  11576. image: {
  11577. source: "./media/characters/moody/front.svg",
  11578. extra: 3226 / 3007,
  11579. bottom: 0.087
  11580. }
  11581. },
  11582. },
  11583. [
  11584. {
  11585. name: "Micro",
  11586. height: math.unit(1, "mm")
  11587. },
  11588. {
  11589. name: "Normal",
  11590. height: math.unit(1.7, "meters"),
  11591. default: true
  11592. },
  11593. {
  11594. name: "Macro",
  11595. height: math.unit(80, "meters")
  11596. },
  11597. {
  11598. name: "Macro+",
  11599. height: math.unit(500, "meters")
  11600. },
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11605. {
  11606. front: {
  11607. height: math.unit(6, "feet"),
  11608. weight: math.unit(150, "lb"),
  11609. name: "Front",
  11610. image: {
  11611. source: "./media/characters/zyas/front.svg",
  11612. extra: 1180 / 1120,
  11613. bottom: 0.045
  11614. }
  11615. },
  11616. },
  11617. [
  11618. {
  11619. name: "Normal",
  11620. height: math.unit(10, "feet"),
  11621. default: true
  11622. },
  11623. {
  11624. name: "Macro",
  11625. height: math.unit(500, "feet")
  11626. },
  11627. {
  11628. name: "Megamacro",
  11629. height: math.unit(5, "miles")
  11630. },
  11631. {
  11632. name: "Teramacro",
  11633. height: math.unit(150000, "miles")
  11634. },
  11635. ]
  11636. ))
  11637. characterMakers.push(() => makeCharacter(
  11638. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11639. {
  11640. front: {
  11641. height: math.unit(6, "feet"),
  11642. weight: math.unit(150, "lb"),
  11643. name: "Front",
  11644. image: {
  11645. source: "./media/characters/cuon/front.svg",
  11646. extra: 1390 / 1320,
  11647. bottom: 0.008
  11648. }
  11649. },
  11650. },
  11651. [
  11652. {
  11653. name: "Micro",
  11654. height: math.unit(3, "inches")
  11655. },
  11656. {
  11657. name: "Normal",
  11658. height: math.unit(18 + 9 / 12, "feet"),
  11659. default: true
  11660. },
  11661. {
  11662. name: "Macro",
  11663. height: math.unit(360, "feet")
  11664. },
  11665. {
  11666. name: "Megamacro",
  11667. height: math.unit(360, "miles")
  11668. },
  11669. ]
  11670. ))
  11671. characterMakers.push(() => makeCharacter(
  11672. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11673. {
  11674. front: {
  11675. height: math.unit(2.4, "meters"),
  11676. weight: math.unit(70, "kg"),
  11677. name: "Front",
  11678. image: {
  11679. source: "./media/characters/nyanuxk/front.svg",
  11680. extra: 1172 / 1084,
  11681. bottom: 0.065
  11682. }
  11683. },
  11684. side: {
  11685. height: math.unit(2.4, "meters"),
  11686. weight: math.unit(70, "kg"),
  11687. name: "Side",
  11688. image: {
  11689. source: "./media/characters/nyanuxk/side.svg",
  11690. extra: 1190 / 1132,
  11691. bottom: 0.007
  11692. }
  11693. },
  11694. back: {
  11695. height: math.unit(2.4, "meters"),
  11696. weight: math.unit(70, "kg"),
  11697. name: "Back",
  11698. image: {
  11699. source: "./media/characters/nyanuxk/back.svg",
  11700. extra: 1200 / 1141,
  11701. bottom: 0.015
  11702. }
  11703. },
  11704. foot: {
  11705. height: math.unit(0.52, "meters"),
  11706. name: "Foot",
  11707. image: {
  11708. source: "./media/characters/nyanuxk/foot.svg"
  11709. }
  11710. },
  11711. },
  11712. [
  11713. {
  11714. name: "Micro",
  11715. height: math.unit(2, "cm")
  11716. },
  11717. {
  11718. name: "Normal",
  11719. height: math.unit(2.4, "meters"),
  11720. default: true
  11721. },
  11722. {
  11723. name: "Smaller Macro",
  11724. height: math.unit(120, "meters")
  11725. },
  11726. {
  11727. name: "Bigger Macro",
  11728. height: math.unit(1.2, "km")
  11729. },
  11730. {
  11731. name: "Megamacro",
  11732. height: math.unit(15, "kilometers")
  11733. },
  11734. {
  11735. name: "Gigamacro",
  11736. height: math.unit(2000, "km")
  11737. },
  11738. {
  11739. name: "Teramacro",
  11740. height: math.unit(500000, "km")
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11746. {
  11747. side: {
  11748. height: math.unit(6, "feet"),
  11749. name: "Side",
  11750. image: {
  11751. source: "./media/characters/ailbhe/side.svg",
  11752. extra: 757 / 464,
  11753. bottom: 0.041
  11754. }
  11755. },
  11756. },
  11757. [
  11758. {
  11759. name: "Normal",
  11760. height: math.unit(1.07, "meters"),
  11761. default: true
  11762. },
  11763. ]
  11764. ))
  11765. characterMakers.push(() => makeCharacter(
  11766. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11767. {
  11768. front: {
  11769. height: math.unit(6, "feet"),
  11770. weight: math.unit(120, "kg"),
  11771. name: "Front",
  11772. image: {
  11773. source: "./media/characters/zevulfius/front.svg",
  11774. extra: 965 / 903
  11775. }
  11776. },
  11777. side: {
  11778. height: math.unit(6, "feet"),
  11779. weight: math.unit(120, "kg"),
  11780. name: "Side",
  11781. image: {
  11782. source: "./media/characters/zevulfius/side.svg",
  11783. extra: 939 / 900
  11784. }
  11785. },
  11786. back: {
  11787. height: math.unit(6, "feet"),
  11788. weight: math.unit(120, "kg"),
  11789. name: "Back",
  11790. image: {
  11791. source: "./media/characters/zevulfius/back.svg",
  11792. extra: 918 / 854,
  11793. bottom: 0.005
  11794. }
  11795. },
  11796. foot: {
  11797. height: math.unit(6 / 3.72, "feet"),
  11798. name: "Foot",
  11799. image: {
  11800. source: "./media/characters/zevulfius/foot.svg"
  11801. }
  11802. },
  11803. },
  11804. [
  11805. {
  11806. name: "Macro",
  11807. height: math.unit(750, "meters")
  11808. },
  11809. {
  11810. name: "Megamacro",
  11811. height: math.unit(20, "km"),
  11812. default: true
  11813. },
  11814. {
  11815. name: "Gigamacro",
  11816. height: math.unit(2000, "km")
  11817. },
  11818. {
  11819. name: "Teramacro",
  11820. height: math.unit(250000, "km")
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(100, "feet"),
  11829. weight: math.unit(350, "kg"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/rikes/front.svg",
  11833. extra: 1565 / 1483,
  11834. bottom: 0.017
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Macro",
  11841. height: math.unit(100, "feet"),
  11842. default: true
  11843. },
  11844. ]
  11845. ))
  11846. characterMakers.push(() => makeCharacter(
  11847. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11848. {
  11849. front: {
  11850. height: math.unit(8, "feet"),
  11851. weight: math.unit(356, "lb"),
  11852. name: "Front",
  11853. image: {
  11854. source: "./media/characters/adam-silver-mane/front.svg",
  11855. extra: 1036/937,
  11856. bottom: 63/1099
  11857. }
  11858. },
  11859. side: {
  11860. height: math.unit(8, "feet"),
  11861. weight: math.unit(356, "lb"),
  11862. name: "Side",
  11863. image: {
  11864. source: "./media/characters/adam-silver-mane/side.svg",
  11865. extra: 997/901,
  11866. bottom: 59/1056
  11867. }
  11868. },
  11869. frontNsfw: {
  11870. height: math.unit(8, "feet"),
  11871. weight: math.unit(356, "lb"),
  11872. name: "Front (NSFW)",
  11873. image: {
  11874. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11875. extra: 1036/937,
  11876. bottom: 63/1099
  11877. }
  11878. },
  11879. sideNsfw: {
  11880. height: math.unit(8, "feet"),
  11881. weight: math.unit(356, "lb"),
  11882. name: "Side (NSFW)",
  11883. image: {
  11884. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11885. extra: 997/901,
  11886. bottom: 59/1056
  11887. }
  11888. },
  11889. dick: {
  11890. height: math.unit(2.1, "feet"),
  11891. name: "Dick",
  11892. image: {
  11893. source: "./media/characters/adam-silver-mane/dick.svg"
  11894. }
  11895. },
  11896. taur: {
  11897. height: math.unit(16, "feet"),
  11898. weight: math.unit(1500, "kg"),
  11899. name: "Taur",
  11900. image: {
  11901. source: "./media/characters/adam-silver-mane/taur.svg",
  11902. extra: 1713 / 1571,
  11903. bottom: 0.01
  11904. }
  11905. },
  11906. },
  11907. [
  11908. {
  11909. name: "Normal",
  11910. height: math.unit(8, "feet")
  11911. },
  11912. {
  11913. name: "Minimacro",
  11914. height: math.unit(80, "feet")
  11915. },
  11916. {
  11917. name: "MDA",
  11918. height: math.unit(80, "meters")
  11919. },
  11920. {
  11921. name: "Macro",
  11922. height: math.unit(800, "feet"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Megamacro",
  11927. height: math.unit(8000, "feet")
  11928. },
  11929. {
  11930. name: "Gigamacro",
  11931. height: math.unit(800, "miles")
  11932. },
  11933. {
  11934. name: "Teramacro",
  11935. height: math.unit(80000, "miles")
  11936. },
  11937. {
  11938. name: "Celestial",
  11939. height: math.unit(8e6, "miles")
  11940. },
  11941. {
  11942. name: "Star Dragon",
  11943. height: math.unit(800000, "parsecs")
  11944. },
  11945. {
  11946. name: "Godly",
  11947. height: math.unit(800, "teraparsecs")
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11953. {
  11954. front: {
  11955. height: math.unit(6, "feet"),
  11956. weight: math.unit(150, "lb"),
  11957. name: "Front",
  11958. image: {
  11959. source: "./media/characters/ky'owin/front.svg",
  11960. extra: 3862/3053,
  11961. bottom: 74/3936
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(6 + 8 / 12, "feet")
  11969. },
  11970. {
  11971. name: "Large",
  11972. height: math.unit(68, "feet")
  11973. },
  11974. {
  11975. name: "Macro",
  11976. height: math.unit(132, "feet")
  11977. },
  11978. {
  11979. name: "Macro+",
  11980. height: math.unit(340, "feet")
  11981. },
  11982. {
  11983. name: "Macro++",
  11984. height: math.unit(680, "feet"),
  11985. default: true
  11986. },
  11987. {
  11988. name: "Megamacro",
  11989. height: math.unit(1, "mile")
  11990. },
  11991. {
  11992. name: "Megamacro+",
  11993. height: math.unit(10, "miles")
  11994. },
  11995. ]
  11996. ))
  11997. characterMakers.push(() => makeCharacter(
  11998. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11999. {
  12000. front: {
  12001. height: math.unit(4, "feet"),
  12002. weight: math.unit(50, "lb"),
  12003. name: "Front",
  12004. image: {
  12005. source: "./media/characters/mal/front.svg",
  12006. extra: 785 / 724,
  12007. bottom: 0.07
  12008. }
  12009. },
  12010. },
  12011. [
  12012. {
  12013. name: "Micro",
  12014. height: math.unit(4, "inches")
  12015. },
  12016. {
  12017. name: "Normal",
  12018. height: math.unit(4, "feet"),
  12019. default: true
  12020. },
  12021. {
  12022. name: "Macro",
  12023. height: math.unit(200, "feet")
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(6, "feet"),
  12032. weight: math.unit(150, "lb"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/jordan-deware/front.svg",
  12036. extra: 1191 / 1012
  12037. }
  12038. },
  12039. },
  12040. [
  12041. {
  12042. name: "Nano",
  12043. height: math.unit(0.01, "mm")
  12044. },
  12045. {
  12046. name: "Minimicro",
  12047. height: math.unit(1, "mm")
  12048. },
  12049. {
  12050. name: "Micro",
  12051. height: math.unit(0.5, "inches")
  12052. },
  12053. {
  12054. name: "Normal",
  12055. height: math.unit(4, "feet"),
  12056. default: true
  12057. },
  12058. {
  12059. name: "Minimacro",
  12060. height: math.unit(40, "meters")
  12061. },
  12062. {
  12063. name: "Small Macro",
  12064. height: math.unit(400, "meters")
  12065. },
  12066. {
  12067. name: "Macro",
  12068. height: math.unit(4, "miles")
  12069. },
  12070. {
  12071. name: "Megamacro",
  12072. height: math.unit(40, "miles")
  12073. },
  12074. {
  12075. name: "Megamacro+",
  12076. height: math.unit(400, "miles")
  12077. },
  12078. {
  12079. name: "Gigamacro",
  12080. height: math.unit(400000, "miles")
  12081. },
  12082. ]
  12083. ))
  12084. characterMakers.push(() => makeCharacter(
  12085. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12086. {
  12087. side: {
  12088. height: math.unit(6, "feet"),
  12089. weight: math.unit(150, "lb"),
  12090. name: "Side",
  12091. image: {
  12092. source: "./media/characters/kimiko/side.svg",
  12093. extra: 600 / 358
  12094. }
  12095. },
  12096. },
  12097. [
  12098. {
  12099. name: "Normal",
  12100. height: math.unit(15, "feet"),
  12101. default: true
  12102. },
  12103. {
  12104. name: "Macro",
  12105. height: math.unit(220, "feet")
  12106. },
  12107. {
  12108. name: "Macro+",
  12109. height: math.unit(1450, "feet")
  12110. },
  12111. {
  12112. name: "Megamacro",
  12113. height: math.unit(11500, "feet")
  12114. },
  12115. {
  12116. name: "Gigamacro",
  12117. height: math.unit(9500, "miles")
  12118. },
  12119. {
  12120. name: "Teramacro",
  12121. height: math.unit(2208005005, "miles")
  12122. },
  12123. {
  12124. name: "Examacro",
  12125. height: math.unit(2750, "parsecs")
  12126. },
  12127. {
  12128. name: "Zettamacro",
  12129. height: math.unit(101500, "parsecs")
  12130. },
  12131. ]
  12132. ))
  12133. characterMakers.push(() => makeCharacter(
  12134. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12135. {
  12136. front: {
  12137. height: math.unit(6, "feet"),
  12138. weight: math.unit(70, "kg"),
  12139. name: "Front",
  12140. image: {
  12141. source: "./media/characters/andrew-sleepy/front.svg"
  12142. }
  12143. },
  12144. side: {
  12145. height: math.unit(6, "feet"),
  12146. weight: math.unit(70, "kg"),
  12147. name: "Side",
  12148. image: {
  12149. source: "./media/characters/andrew-sleepy/side.svg"
  12150. }
  12151. },
  12152. },
  12153. [
  12154. {
  12155. name: "Micro",
  12156. height: math.unit(1, "mm"),
  12157. default: true
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12163. {
  12164. front: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(150, "lb"),
  12167. name: "Front",
  12168. image: {
  12169. source: "./media/characters/judio/front.svg",
  12170. extra: 1258 / 1110
  12171. }
  12172. },
  12173. },
  12174. [
  12175. {
  12176. name: "Normal",
  12177. height: math.unit(5 + 6 / 12, "feet")
  12178. },
  12179. {
  12180. name: "Macro",
  12181. height: math.unit(1000, "feet"),
  12182. default: true
  12183. },
  12184. {
  12185. name: "Megamacro",
  12186. height: math.unit(10, "miles")
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12192. {
  12193. frontDressed: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(68, "kg"),
  12196. name: "Front (Dressed)",
  12197. image: {
  12198. source: "./media/characters/nomaxice/front-dressed.svg",
  12199. extra: 1137/824,
  12200. bottom: 74/1211
  12201. }
  12202. },
  12203. frontShorts: {
  12204. height: math.unit(6, "feet"),
  12205. weight: math.unit(68, "kg"),
  12206. name: "Front (Shorts)",
  12207. image: {
  12208. source: "./media/characters/nomaxice/front-shorts.svg",
  12209. extra: 1137/824,
  12210. bottom: 74/1211
  12211. }
  12212. },
  12213. back: {
  12214. height: math.unit(6, "feet"),
  12215. weight: math.unit(68, "kg"),
  12216. name: "Back",
  12217. image: {
  12218. source: "./media/characters/nomaxice/back.svg",
  12219. extra: 822/786,
  12220. bottom: 39/861
  12221. }
  12222. },
  12223. hand: {
  12224. height: math.unit(0.565, "feet"),
  12225. name: "Hand",
  12226. image: {
  12227. source: "./media/characters/nomaxice/hand.svg"
  12228. }
  12229. },
  12230. foot: {
  12231. height: math.unit(1, "feet"),
  12232. name: "Foot",
  12233. image: {
  12234. source: "./media/characters/nomaxice/foot.svg"
  12235. }
  12236. },
  12237. },
  12238. [
  12239. {
  12240. name: "Micro",
  12241. height: math.unit(8, "cm")
  12242. },
  12243. {
  12244. name: "Norm",
  12245. height: math.unit(1.82, "m")
  12246. },
  12247. {
  12248. name: "Norm+",
  12249. height: math.unit(8.8, "feet"),
  12250. default: true
  12251. },
  12252. {
  12253. name: "Big",
  12254. height: math.unit(8, "meters")
  12255. },
  12256. {
  12257. name: "Macro",
  12258. height: math.unit(18, "meters")
  12259. },
  12260. {
  12261. name: "Macro+",
  12262. height: math.unit(88, "meters")
  12263. },
  12264. ]
  12265. ))
  12266. characterMakers.push(() => makeCharacter(
  12267. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12268. {
  12269. front: {
  12270. height: math.unit(12, "feet"),
  12271. weight: math.unit(1.5, "tons"),
  12272. name: "Front",
  12273. image: {
  12274. source: "./media/characters/dydros/front.svg",
  12275. extra: 863 / 800,
  12276. bottom: 0.015
  12277. }
  12278. },
  12279. back: {
  12280. height: math.unit(12, "feet"),
  12281. weight: math.unit(1.5, "tons"),
  12282. name: "Back",
  12283. image: {
  12284. source: "./media/characters/dydros/back.svg",
  12285. extra: 900 / 843,
  12286. bottom: 0.005
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Normal",
  12293. height: math.unit(12, "feet"),
  12294. default: true
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12300. {
  12301. front: {
  12302. height: math.unit(6, "feet"),
  12303. weight: math.unit(100, "kg"),
  12304. name: "Front",
  12305. image: {
  12306. source: "./media/characters/riggi/front.svg",
  12307. extra: 5787 / 5303
  12308. }
  12309. },
  12310. hyper: {
  12311. height: math.unit(6 * 5 / 3, "feet"),
  12312. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12313. name: "Hyper",
  12314. image: {
  12315. source: "./media/characters/riggi/hyper.svg",
  12316. extra: 3595 / 3485
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Small Macro",
  12323. height: math.unit(50, "feet")
  12324. },
  12325. {
  12326. name: "Default",
  12327. height: math.unit(200, "feet"),
  12328. default: true
  12329. },
  12330. {
  12331. name: "Loom",
  12332. height: math.unit(10000, "feet")
  12333. },
  12334. {
  12335. name: "Cruising Altitude",
  12336. height: math.unit(30000, "feet")
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(100, "miles")
  12341. },
  12342. {
  12343. name: "Continent Sized",
  12344. height: math.unit(2800, "miles")
  12345. },
  12346. {
  12347. name: "Earth Sized",
  12348. height: math.unit(8000, "miles")
  12349. },
  12350. ]
  12351. ))
  12352. characterMakers.push(() => makeCharacter(
  12353. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12354. {
  12355. front: {
  12356. height: math.unit(6, "feet"),
  12357. weight: math.unit(250, "lb"),
  12358. name: "Front",
  12359. image: {
  12360. source: "./media/characters/alexi/front.svg",
  12361. extra: 3483 / 3291,
  12362. bottom: 0.04
  12363. }
  12364. },
  12365. back: {
  12366. height: math.unit(6, "feet"),
  12367. weight: math.unit(250, "lb"),
  12368. name: "Back",
  12369. image: {
  12370. source: "./media/characters/alexi/back.svg",
  12371. extra: 3533 / 3356,
  12372. bottom: 0.021
  12373. }
  12374. },
  12375. frontTransforming: {
  12376. height: math.unit(8.58, "feet"),
  12377. weight: math.unit(1300, "lb"),
  12378. name: "Transforming",
  12379. image: {
  12380. source: "./media/characters/alexi/front-transforming.svg",
  12381. extra: 437 / 409,
  12382. bottom: 19 / 458.66
  12383. }
  12384. },
  12385. frontTransformed: {
  12386. height: math.unit(12.5, "feet"),
  12387. weight: math.unit(4000, "lb"),
  12388. name: "Transformed",
  12389. image: {
  12390. source: "./media/characters/alexi/front-transformed.svg",
  12391. extra: 639 / 614,
  12392. bottom: 30.55 / 671
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Normal",
  12399. height: math.unit(14, "feet"),
  12400. default: true
  12401. },
  12402. {
  12403. name: "Minimacro",
  12404. height: math.unit(30, "meters")
  12405. },
  12406. {
  12407. name: "Macro",
  12408. height: math.unit(500, "meters")
  12409. },
  12410. {
  12411. name: "Megamacro",
  12412. height: math.unit(9000, "km")
  12413. },
  12414. {
  12415. name: "Teramacro",
  12416. height: math.unit(384000, "km")
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(6, "feet"),
  12425. weight: math.unit(150, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/kayroo/front.svg",
  12429. extra: 1153 / 1038,
  12430. bottom: 0.06
  12431. }
  12432. },
  12433. foot: {
  12434. height: math.unit(6, "feet"),
  12435. weight: math.unit(150, "lb"),
  12436. name: "Foot",
  12437. image: {
  12438. source: "./media/characters/kayroo/foot.svg"
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Normal",
  12445. height: math.unit(8, "feet"),
  12446. default: true
  12447. },
  12448. {
  12449. name: "Minimacro",
  12450. height: math.unit(250, "feet")
  12451. },
  12452. {
  12453. name: "Macro",
  12454. height: math.unit(2800, "feet")
  12455. },
  12456. {
  12457. name: "Megamacro",
  12458. height: math.unit(5200, "feet")
  12459. },
  12460. {
  12461. name: "Gigamacro",
  12462. height: math.unit(27000, "feet")
  12463. },
  12464. {
  12465. name: "Omega",
  12466. height: math.unit(45000, "feet")
  12467. },
  12468. ]
  12469. ))
  12470. characterMakers.push(() => makeCharacter(
  12471. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12472. {
  12473. front: {
  12474. height: math.unit(18, "feet"),
  12475. weight: math.unit(5800, "lb"),
  12476. name: "Front",
  12477. image: {
  12478. source: "./media/characters/rhys/front.svg",
  12479. extra: 3386 / 3090,
  12480. bottom: 0.07
  12481. }
  12482. },
  12483. },
  12484. [
  12485. {
  12486. name: "Normal",
  12487. height: math.unit(18, "feet"),
  12488. default: true
  12489. },
  12490. {
  12491. name: "Working Size",
  12492. height: math.unit(200, "feet")
  12493. },
  12494. {
  12495. name: "Demolition Size",
  12496. height: math.unit(2000, "feet")
  12497. },
  12498. {
  12499. name: "Maximum Licensed Size",
  12500. height: math.unit(5, "miles")
  12501. },
  12502. {
  12503. name: "Maximum Observed Size",
  12504. height: math.unit(10, "yottameters")
  12505. },
  12506. ]
  12507. ))
  12508. characterMakers.push(() => makeCharacter(
  12509. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12510. {
  12511. front: {
  12512. height: math.unit(6, "feet"),
  12513. weight: math.unit(250, "lb"),
  12514. name: "Front",
  12515. image: {
  12516. source: "./media/characters/toto/front.svg",
  12517. extra: 527 / 479,
  12518. bottom: 0.05
  12519. }
  12520. },
  12521. },
  12522. [
  12523. {
  12524. name: "Micro",
  12525. height: math.unit(3, "feet")
  12526. },
  12527. {
  12528. name: "Normal",
  12529. height: math.unit(10, "feet")
  12530. },
  12531. {
  12532. name: "Macro",
  12533. height: math.unit(150, "feet"),
  12534. default: true
  12535. },
  12536. {
  12537. name: "Megamacro",
  12538. height: math.unit(1200, "feet")
  12539. },
  12540. ]
  12541. ))
  12542. characterMakers.push(() => makeCharacter(
  12543. { name: "King", species: ["lion"], tags: ["anthro"] },
  12544. {
  12545. back: {
  12546. height: math.unit(6, "feet"),
  12547. weight: math.unit(150, "lb"),
  12548. name: "Back",
  12549. image: {
  12550. source: "./media/characters/king/back.svg"
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Micro",
  12557. height: math.unit(2, "inches")
  12558. },
  12559. {
  12560. name: "Normal",
  12561. height: math.unit(8, "feet")
  12562. },
  12563. {
  12564. name: "Macro",
  12565. height: math.unit(200, "feet"),
  12566. default: true
  12567. },
  12568. {
  12569. name: "Megamacro",
  12570. height: math.unit(50, "miles")
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12576. {
  12577. front: {
  12578. height: math.unit(11, "feet"),
  12579. weight: math.unit(1400, "lb"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/cordite/front.svg",
  12583. extra: 1919/1827,
  12584. bottom: 40/1959
  12585. }
  12586. },
  12587. side: {
  12588. height: math.unit(11, "feet"),
  12589. weight: math.unit(1400, "lb"),
  12590. name: "Side",
  12591. image: {
  12592. source: "./media/characters/cordite/side.svg",
  12593. extra: 1908/1793,
  12594. bottom: 38/1946
  12595. }
  12596. },
  12597. back: {
  12598. height: math.unit(11, "feet"),
  12599. weight: math.unit(1400, "lb"),
  12600. name: "Back",
  12601. image: {
  12602. source: "./media/characters/cordite/back.svg",
  12603. extra: 1938/1837,
  12604. bottom: 10/1948
  12605. }
  12606. },
  12607. feral: {
  12608. height: math.unit(2, "feet"),
  12609. weight: math.unit(90, "lb"),
  12610. name: "Feral",
  12611. image: {
  12612. source: "./media/characters/cordite/feral.svg",
  12613. extra: 1260 / 755,
  12614. bottom: 0.05
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(11, "feet"),
  12622. default: true
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(6, "feet"),
  12631. weight: math.unit(150, "lb"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/pianostrong/front.svg",
  12635. extra: 6577 / 6254,
  12636. bottom: 0.02
  12637. }
  12638. },
  12639. side: {
  12640. height: math.unit(6, "feet"),
  12641. weight: math.unit(150, "lb"),
  12642. name: "Side",
  12643. image: {
  12644. source: "./media/characters/pianostrong/side.svg",
  12645. extra: 6106 / 5730
  12646. }
  12647. },
  12648. back: {
  12649. height: math.unit(6, "feet"),
  12650. weight: math.unit(150, "lb"),
  12651. name: "Back",
  12652. image: {
  12653. source: "./media/characters/pianostrong/back.svg",
  12654. extra: 6085 / 5733,
  12655. bottom: 0.01
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Macro",
  12662. height: math.unit(100, "feet")
  12663. },
  12664. {
  12665. name: "Macro+",
  12666. height: math.unit(300, "feet"),
  12667. default: true
  12668. },
  12669. {
  12670. name: "Macro++",
  12671. height: math.unit(1000, "feet")
  12672. },
  12673. ]
  12674. ))
  12675. characterMakers.push(() => makeCharacter(
  12676. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12677. {
  12678. front: {
  12679. height: math.unit(6, "feet"),
  12680. weight: math.unit(150, "lb"),
  12681. name: "Front",
  12682. image: {
  12683. source: "./media/characters/kona/front.svg",
  12684. extra: 2960 / 2629,
  12685. bottom: 0.005
  12686. }
  12687. },
  12688. },
  12689. [
  12690. {
  12691. name: "Normal",
  12692. height: math.unit(11 + 8 / 12, "feet")
  12693. },
  12694. {
  12695. name: "Macro",
  12696. height: math.unit(850, "feet"),
  12697. default: true
  12698. },
  12699. {
  12700. name: "Macro+",
  12701. height: math.unit(1.5, "km"),
  12702. default: true
  12703. },
  12704. {
  12705. name: "Megamacro",
  12706. height: math.unit(80, "miles")
  12707. },
  12708. {
  12709. name: "Gigamacro",
  12710. height: math.unit(3500, "miles")
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12716. {
  12717. side: {
  12718. height: math.unit(1.9, "meters"),
  12719. weight: math.unit(326, "kg"),
  12720. name: "Side",
  12721. image: {
  12722. source: "./media/characters/levi/side.svg",
  12723. extra: 1704 / 1334,
  12724. bottom: 0.02
  12725. }
  12726. },
  12727. },
  12728. [
  12729. {
  12730. name: "Normal",
  12731. height: math.unit(1.9, "meters"),
  12732. default: true
  12733. },
  12734. {
  12735. name: "Macro",
  12736. height: math.unit(20, "meters")
  12737. },
  12738. {
  12739. name: "Macro+",
  12740. height: math.unit(200, "meters")
  12741. },
  12742. {
  12743. name: "Megamacro",
  12744. height: math.unit(2, "km")
  12745. },
  12746. {
  12747. name: "Megamacro+",
  12748. height: math.unit(20, "km")
  12749. },
  12750. {
  12751. name: "Gigamacro",
  12752. height: math.unit(2500, "km")
  12753. },
  12754. {
  12755. name: "Gigamacro+",
  12756. height: math.unit(120000, "km")
  12757. },
  12758. {
  12759. name: "Teramacro",
  12760. height: math.unit(7.77e6, "km")
  12761. },
  12762. ]
  12763. ))
  12764. characterMakers.push(() => makeCharacter(
  12765. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12766. {
  12767. front: {
  12768. height: math.unit(6 + 4/12, "feet"),
  12769. weight: math.unit(190, "lb"),
  12770. name: "Front",
  12771. image: {
  12772. source: "./media/characters/bmc/front.svg",
  12773. extra: 1626/1472,
  12774. bottom: 79/1705
  12775. }
  12776. },
  12777. back: {
  12778. height: math.unit(6 + 4/12, "feet"),
  12779. weight: math.unit(190, "lb"),
  12780. name: "Back",
  12781. image: {
  12782. source: "./media/characters/bmc/back.svg",
  12783. extra: 1640/1479,
  12784. bottom: 45/1685
  12785. }
  12786. },
  12787. frontArmor: {
  12788. height: math.unit(6 + 4/12, "feet"),
  12789. weight: math.unit(190, "lb"),
  12790. name: "Front-armor",
  12791. image: {
  12792. source: "./media/characters/bmc/front-armor.svg",
  12793. extra: 1538/1468,
  12794. bottom: 79/1617
  12795. }
  12796. },
  12797. },
  12798. [
  12799. {
  12800. name: "Human-sized",
  12801. height: math.unit(6 + 4 / 12, "feet")
  12802. },
  12803. {
  12804. name: "Interactive Size",
  12805. height: math.unit(25, "feet")
  12806. },
  12807. {
  12808. name: "Small",
  12809. height: math.unit(250, "feet")
  12810. },
  12811. {
  12812. name: "Normal",
  12813. height: math.unit(1250, "feet"),
  12814. default: true
  12815. },
  12816. {
  12817. name: "Good Day",
  12818. height: math.unit(88, "miles")
  12819. },
  12820. {
  12821. name: "Largest Measured Size",
  12822. height: math.unit(105.960, "galaxies")
  12823. },
  12824. ]
  12825. ))
  12826. characterMakers.push(() => makeCharacter(
  12827. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12828. {
  12829. front: {
  12830. height: math.unit(20, "feet"),
  12831. weight: math.unit(2016, "kg"),
  12832. name: "Front",
  12833. image: {
  12834. source: "./media/characters/sven-the-kaiju/front.svg",
  12835. extra: 1277/1250,
  12836. bottom: 35/1312
  12837. }
  12838. },
  12839. mouth: {
  12840. height: math.unit(1.85, "feet"),
  12841. name: "Mouth",
  12842. image: {
  12843. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12844. }
  12845. },
  12846. },
  12847. [
  12848. {
  12849. name: "Fairy",
  12850. height: math.unit(6, "inches")
  12851. },
  12852. {
  12853. name: "Normal",
  12854. height: math.unit(20, "feet"),
  12855. default: true
  12856. },
  12857. {
  12858. name: "Rampage",
  12859. height: math.unit(200, "feet")
  12860. },
  12861. {
  12862. name: "Archfey Forest Guardian",
  12863. height: math.unit(1, "mile")
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12869. {
  12870. front: {
  12871. height: math.unit(4, "meters"),
  12872. weight: math.unit(2, "tons"),
  12873. name: "Front",
  12874. image: {
  12875. source: "./media/characters/marik/front.svg",
  12876. extra: 1057 / 1003,
  12877. bottom: 0.08
  12878. }
  12879. },
  12880. },
  12881. [
  12882. {
  12883. name: "Normal",
  12884. height: math.unit(4, "meters"),
  12885. default: true
  12886. },
  12887. {
  12888. name: "Macro",
  12889. height: math.unit(20, "meters")
  12890. },
  12891. {
  12892. name: "Megamacro",
  12893. height: math.unit(50, "km")
  12894. },
  12895. {
  12896. name: "Gigamacro",
  12897. height: math.unit(100, "km")
  12898. },
  12899. {
  12900. name: "Alpha Macro",
  12901. height: math.unit(7.88e7, "yottameters")
  12902. },
  12903. ]
  12904. ))
  12905. characterMakers.push(() => makeCharacter(
  12906. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12907. {
  12908. front: {
  12909. height: math.unit(6, "feet"),
  12910. weight: math.unit(110, "lb"),
  12911. name: "Front",
  12912. image: {
  12913. source: "./media/characters/mel/front.svg",
  12914. extra: 736 / 617,
  12915. bottom: 0.017
  12916. }
  12917. },
  12918. },
  12919. [
  12920. {
  12921. name: "Pico",
  12922. height: math.unit(3, "pm")
  12923. },
  12924. {
  12925. name: "Nano",
  12926. height: math.unit(3, "nm")
  12927. },
  12928. {
  12929. name: "Micro",
  12930. height: math.unit(0.3, "mm"),
  12931. default: true
  12932. },
  12933. {
  12934. name: "Micro+",
  12935. height: math.unit(3, "mm")
  12936. },
  12937. {
  12938. name: "Normal",
  12939. height: math.unit(5 + 10.5 / 12, "feet")
  12940. },
  12941. ]
  12942. ))
  12943. characterMakers.push(() => makeCharacter(
  12944. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12945. {
  12946. kaiju: {
  12947. height: math.unit(1.75, "meters"),
  12948. weight: math.unit(55, "kg"),
  12949. name: "Kaiju",
  12950. image: {
  12951. source: "./media/characters/lykonous/kaiju.svg",
  12952. extra: 1055 / 946,
  12953. bottom: 0.135
  12954. }
  12955. },
  12956. },
  12957. [
  12958. {
  12959. name: "Normal",
  12960. height: math.unit(2.5, "meters"),
  12961. default: true
  12962. },
  12963. {
  12964. name: "Kaiju Dragon",
  12965. height: math.unit(60, "meters")
  12966. },
  12967. {
  12968. name: "Mega Kaiju",
  12969. height: math.unit(120, "km")
  12970. },
  12971. {
  12972. name: "Giga Kaiju",
  12973. height: math.unit(200, "megameters")
  12974. },
  12975. {
  12976. name: "Terra Kaiju",
  12977. height: math.unit(400, "gigameters")
  12978. },
  12979. {
  12980. name: "Kaiju Dragon God",
  12981. height: math.unit(13000, "exaparsecs")
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(150, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/blü/front.svg",
  12994. extra: 1883 / 1564,
  12995. bottom: 0.031
  12996. }
  12997. },
  12998. },
  12999. [
  13000. {
  13001. name: "Normal",
  13002. height: math.unit(13, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Big Boi",
  13007. height: math.unit(150, "meters")
  13008. },
  13009. {
  13010. name: "Mini Stomper",
  13011. height: math.unit(300, "meters")
  13012. },
  13013. {
  13014. name: "Macro",
  13015. height: math.unit(1000, "meters")
  13016. },
  13017. {
  13018. name: "Megamacro",
  13019. height: math.unit(11000, "meters")
  13020. },
  13021. {
  13022. name: "Gigamacro",
  13023. height: math.unit(11000, "km")
  13024. },
  13025. {
  13026. name: "Teramacro",
  13027. height: math.unit(420000, "km")
  13028. },
  13029. {
  13030. name: "Examacro",
  13031. height: math.unit(120, "parsecs")
  13032. },
  13033. {
  13034. name: "God Tho",
  13035. height: math.unit(98000000000, "parsecs")
  13036. },
  13037. ]
  13038. ))
  13039. characterMakers.push(() => makeCharacter(
  13040. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13041. {
  13042. taurFront: {
  13043. height: math.unit(6, "feet"),
  13044. weight: math.unit(200, "lb"),
  13045. name: "Taur (Front)",
  13046. image: {
  13047. source: "./media/characters/scales/taur-front.svg",
  13048. extra: 1,
  13049. bottom: 0.05
  13050. }
  13051. },
  13052. taurBack: {
  13053. height: math.unit(6, "feet"),
  13054. weight: math.unit(200, "lb"),
  13055. name: "Taur (Back)",
  13056. image: {
  13057. source: "./media/characters/scales/taur-back.svg",
  13058. extra: 1,
  13059. bottom: 0.08
  13060. }
  13061. },
  13062. anthro: {
  13063. height: math.unit(6 * 7 / 12, "feet"),
  13064. weight: math.unit(100, "lb"),
  13065. name: "Anthro",
  13066. image: {
  13067. source: "./media/characters/scales/anthro.svg",
  13068. extra: 1,
  13069. bottom: 0.06
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Normal",
  13076. height: math.unit(12, "feet"),
  13077. default: true
  13078. },
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13083. {
  13084. front: {
  13085. height: math.unit(6, "feet"),
  13086. weight: math.unit(150, "lb"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/koragos/front.svg",
  13090. extra: 841 / 794,
  13091. bottom: 0.035
  13092. }
  13093. },
  13094. back: {
  13095. height: math.unit(6, "feet"),
  13096. weight: math.unit(150, "lb"),
  13097. name: "Back",
  13098. image: {
  13099. source: "./media/characters/koragos/back.svg",
  13100. extra: 841 / 810,
  13101. bottom: 0.022
  13102. }
  13103. },
  13104. },
  13105. [
  13106. {
  13107. name: "Normal",
  13108. height: math.unit(6 + 11 / 12, "feet"),
  13109. default: true
  13110. },
  13111. {
  13112. name: "Macro",
  13113. height: math.unit(490, "feet")
  13114. },
  13115. {
  13116. name: "Megamacro",
  13117. height: math.unit(10, "miles")
  13118. },
  13119. {
  13120. name: "Gigamacro",
  13121. height: math.unit(50, "miles")
  13122. },
  13123. ]
  13124. ))
  13125. characterMakers.push(() => makeCharacter(
  13126. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13127. {
  13128. front: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(250, "lb"),
  13131. name: "Front",
  13132. image: {
  13133. source: "./media/characters/xylrem/front.svg",
  13134. extra: 3323 / 3050,
  13135. bottom: 0.065
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Micro",
  13142. height: math.unit(4, "feet")
  13143. },
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(16, "feet"),
  13147. default: true
  13148. },
  13149. {
  13150. name: "Macro",
  13151. height: math.unit(2720, "feet")
  13152. },
  13153. {
  13154. name: "Megamacro",
  13155. height: math.unit(25000, "miles")
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(8, "feet"),
  13164. weight: math.unit(250, "kg"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/ikideru/front.svg",
  13168. extra: 930 / 870,
  13169. bottom: 0.087
  13170. }
  13171. },
  13172. back: {
  13173. height: math.unit(8, "feet"),
  13174. weight: math.unit(250, "kg"),
  13175. name: "Back",
  13176. image: {
  13177. source: "./media/characters/ikideru/back.svg",
  13178. extra: 919 / 852,
  13179. bottom: 0.055
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Rare",
  13186. height: math.unit(8, "feet"),
  13187. default: true
  13188. },
  13189. {
  13190. name: "Playful Loom",
  13191. height: math.unit(80, "feet")
  13192. },
  13193. {
  13194. name: "City Leaner",
  13195. height: math.unit(230, "feet")
  13196. },
  13197. {
  13198. name: "Megamacro",
  13199. height: math.unit(2500, "feet")
  13200. },
  13201. {
  13202. name: "Gigamacro",
  13203. height: math.unit(26400, "feet")
  13204. },
  13205. {
  13206. name: "Tectonic Shifter",
  13207. height: math.unit(1.7, "megameters")
  13208. },
  13209. {
  13210. name: "Planet Carer",
  13211. height: math.unit(21, "megameters")
  13212. },
  13213. {
  13214. name: "God",
  13215. height: math.unit(11157.22, "parsecs")
  13216. },
  13217. ]
  13218. ))
  13219. characterMakers.push(() => makeCharacter(
  13220. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13221. {
  13222. front: {
  13223. height: math.unit(6, "feet"),
  13224. weight: math.unit(120, "lb"),
  13225. name: "Front",
  13226. image: {
  13227. source: "./media/characters/neo/front.svg"
  13228. }
  13229. },
  13230. },
  13231. [
  13232. {
  13233. name: "Micro",
  13234. height: math.unit(2, "inches"),
  13235. default: true
  13236. },
  13237. {
  13238. name: "Human Size",
  13239. height: math.unit(5 + 8 / 12, "feet")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(13 + 10 / 12, "feet"),
  13248. weight: math.unit(5320, "lb"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/chauncey-chantz/front.svg",
  13252. extra: 1587 / 1435,
  13253. bottom: 0.02
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Normal",
  13260. height: math.unit(13 + 10 / 12, "feet"),
  13261. default: true
  13262. },
  13263. {
  13264. name: "Macro",
  13265. height: math.unit(45, "feet")
  13266. },
  13267. {
  13268. name: "Megamacro",
  13269. height: math.unit(250, "miles")
  13270. },
  13271. {
  13272. name: "Planetary",
  13273. height: math.unit(10000, "miles")
  13274. },
  13275. {
  13276. name: "Galactic",
  13277. height: math.unit(40000, "parsecs")
  13278. },
  13279. {
  13280. name: "Universal",
  13281. height: math.unit(1, "yottameter")
  13282. },
  13283. ]
  13284. ))
  13285. characterMakers.push(() => makeCharacter(
  13286. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13287. {
  13288. front: {
  13289. height: math.unit(6, "feet"),
  13290. weight: math.unit(150, "lb"),
  13291. name: "Front",
  13292. image: {
  13293. source: "./media/characters/epifox/front.svg",
  13294. extra: 1,
  13295. bottom: 0.075
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Micro",
  13302. height: math.unit(6, "inches")
  13303. },
  13304. {
  13305. name: "Normal",
  13306. height: math.unit(12, "feet"),
  13307. default: true
  13308. },
  13309. {
  13310. name: "Macro",
  13311. height: math.unit(3810, "feet")
  13312. },
  13313. {
  13314. name: "Megamacro",
  13315. height: math.unit(500, "miles")
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13321. {
  13322. front: {
  13323. height: math.unit(1.8796, "m"),
  13324. weight: math.unit(230, "lb"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/colin-t/front.svg",
  13328. extra: 1272 / 1193,
  13329. bottom: 0.07
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Micro",
  13336. height: math.unit(0.571, "meters")
  13337. },
  13338. {
  13339. name: "Normal",
  13340. height: math.unit(1.8796, "meters"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Tall",
  13345. height: math.unit(4, "meters")
  13346. },
  13347. {
  13348. name: "Macro",
  13349. height: math.unit(67.241, "meters")
  13350. },
  13351. {
  13352. name: "Megamacro",
  13353. height: math.unit(371.856, "meters")
  13354. },
  13355. {
  13356. name: "Planetary",
  13357. height: math.unit(12631.5689, "km")
  13358. },
  13359. ]
  13360. ))
  13361. characterMakers.push(() => makeCharacter(
  13362. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13363. {
  13364. front: {
  13365. height: math.unit(1.85, "meters"),
  13366. weight: math.unit(80, "kg"),
  13367. name: "Front",
  13368. image: {
  13369. source: "./media/characters/matvei/front.svg",
  13370. extra: 456/447,
  13371. bottom: 8/464
  13372. }
  13373. },
  13374. back: {
  13375. height: math.unit(1.85, "meters"),
  13376. weight: math.unit(80, "kg"),
  13377. name: "Back",
  13378. image: {
  13379. source: "./media/characters/matvei/back.svg",
  13380. extra: 434/427,
  13381. bottom: 11/445
  13382. }
  13383. },
  13384. },
  13385. [
  13386. {
  13387. name: "Normal",
  13388. height: math.unit(1.85, "meters"),
  13389. default: true
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13395. {
  13396. front: {
  13397. height: math.unit(5 + 9 / 12, "feet"),
  13398. weight: math.unit(70, "lb"),
  13399. name: "Front",
  13400. image: {
  13401. source: "./media/characters/quincy/front.svg",
  13402. extra: 3041 / 2751
  13403. }
  13404. },
  13405. back: {
  13406. height: math.unit(5 + 9 / 12, "feet"),
  13407. weight: math.unit(70, "lb"),
  13408. name: "Back",
  13409. image: {
  13410. source: "./media/characters/quincy/back.svg",
  13411. extra: 3041 / 2751
  13412. }
  13413. },
  13414. flying: {
  13415. height: math.unit(5 + 4 / 12, "feet"),
  13416. weight: math.unit(70, "lb"),
  13417. name: "Flying",
  13418. image: {
  13419. source: "./media/characters/quincy/flying.svg",
  13420. extra: 1044 / 930
  13421. }
  13422. },
  13423. },
  13424. [
  13425. {
  13426. name: "Micro",
  13427. height: math.unit(3, "cm")
  13428. },
  13429. {
  13430. name: "Normal",
  13431. height: math.unit(5 + 9 / 12, "feet")
  13432. },
  13433. {
  13434. name: "Macro",
  13435. height: math.unit(200, "meters"),
  13436. default: true
  13437. },
  13438. {
  13439. name: "Megamacro",
  13440. height: math.unit(1000, "meters")
  13441. },
  13442. ]
  13443. ))
  13444. characterMakers.push(() => makeCharacter(
  13445. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13446. {
  13447. front: {
  13448. height: math.unit(3 + 11/12, "feet"),
  13449. weight: math.unit(50, "lb"),
  13450. name: "Front",
  13451. image: {
  13452. source: "./media/characters/vanrel/front.svg",
  13453. extra: 1104/949,
  13454. bottom: 52/1156
  13455. }
  13456. },
  13457. back: {
  13458. height: math.unit(3 + 11/12, "feet"),
  13459. weight: math.unit(50, "lb"),
  13460. name: "Back",
  13461. image: {
  13462. source: "./media/characters/vanrel/back.svg",
  13463. extra: 1119/976,
  13464. bottom: 37/1156
  13465. }
  13466. },
  13467. tome: {
  13468. height: math.unit(1.35, "feet"),
  13469. weight: math.unit(10, "lb"),
  13470. name: "Vanrel's Tome",
  13471. rename: true,
  13472. image: {
  13473. source: "./media/characters/vanrel/tome.svg"
  13474. }
  13475. },
  13476. beans: {
  13477. height: math.unit(0.89, "feet"),
  13478. name: "Beans",
  13479. image: {
  13480. source: "./media/characters/vanrel/beans.svg"
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Normal",
  13487. height: math.unit(3 + 11/12, "feet"),
  13488. default: true
  13489. },
  13490. ]
  13491. ))
  13492. characterMakers.push(() => makeCharacter(
  13493. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13494. {
  13495. front: {
  13496. height: math.unit(7 + 5 / 12, "feet"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/kuiper-vanrel/front.svg",
  13500. extra: 1219/1169,
  13501. bottom: 69/1288
  13502. }
  13503. },
  13504. back: {
  13505. height: math.unit(7 + 5 / 12, "feet"),
  13506. name: "Back",
  13507. image: {
  13508. source: "./media/characters/kuiper-vanrel/back.svg",
  13509. extra: 1236/1193,
  13510. bottom: 27/1263
  13511. }
  13512. },
  13513. foot: {
  13514. height: math.unit(0.55, "meters"),
  13515. name: "Foot",
  13516. image: {
  13517. source: "./media/characters/kuiper-vanrel/foot.svg",
  13518. }
  13519. },
  13520. battle: {
  13521. height: math.unit(6.824, "feet"),
  13522. name: "Battle",
  13523. image: {
  13524. source: "./media/characters/kuiper-vanrel/battle.svg",
  13525. extra: 1466 / 1327,
  13526. bottom: 29 / 1492.5
  13527. }
  13528. },
  13529. meerkui: {
  13530. height: math.unit(18, "inches"),
  13531. name: "Meerkui",
  13532. image: {
  13533. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13534. extra: 1354/1289,
  13535. bottom: 69/1423
  13536. }
  13537. },
  13538. },
  13539. [
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(7 + 5 / 12, "feet"),
  13543. default: true
  13544. },
  13545. ]
  13546. ))
  13547. characterMakers.push(() => makeCharacter(
  13548. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13549. {
  13550. front: {
  13551. height: math.unit(8 + 5 / 12, "feet"),
  13552. name: "Front",
  13553. image: {
  13554. source: "./media/characters/keset-vanrel/front.svg",
  13555. extra: 1231/1148,
  13556. bottom: 82/1313
  13557. }
  13558. },
  13559. back: {
  13560. height: math.unit(8 + 5 / 12, "feet"),
  13561. name: "Back",
  13562. image: {
  13563. source: "./media/characters/keset-vanrel/back.svg",
  13564. extra: 1240/1174,
  13565. bottom: 33/1273
  13566. }
  13567. },
  13568. hand: {
  13569. height: math.unit(0.6, "meters"),
  13570. name: "Hand",
  13571. image: {
  13572. source: "./media/characters/keset-vanrel/hand.svg"
  13573. }
  13574. },
  13575. foot: {
  13576. height: math.unit(0.94978, "meters"),
  13577. name: "Foot",
  13578. image: {
  13579. source: "./media/characters/keset-vanrel/foot.svg"
  13580. }
  13581. },
  13582. battle: {
  13583. height: math.unit(7.408, "feet"),
  13584. name: "Battle",
  13585. image: {
  13586. source: "./media/characters/keset-vanrel/battle.svg",
  13587. extra: 1890 / 1386,
  13588. bottom: 73.28 / 1970
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(8 + 5 / 12, "feet"),
  13596. default: true
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(6, "feet"),
  13605. weight: math.unit(150, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/neos/front.svg",
  13609. extra: 1696 / 992,
  13610. bottom: 0.14
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Normal",
  13617. height: math.unit(54, "cm"),
  13618. default: true
  13619. },
  13620. {
  13621. name: "Macro",
  13622. height: math.unit(100, "m")
  13623. },
  13624. {
  13625. name: "Megamacro",
  13626. height: math.unit(10, "km")
  13627. },
  13628. {
  13629. name: "Megamacro+",
  13630. height: math.unit(100, "km")
  13631. },
  13632. {
  13633. name: "Gigamacro",
  13634. height: math.unit(100, "Mm")
  13635. },
  13636. {
  13637. name: "Teramacro",
  13638. height: math.unit(100, "Gm")
  13639. },
  13640. {
  13641. name: "Examacro",
  13642. height: math.unit(100, "Em")
  13643. },
  13644. {
  13645. name: "Godly",
  13646. height: math.unit(10000, "Ym")
  13647. },
  13648. {
  13649. name: "Beyond Godly",
  13650. height: math.unit(25, "multiverses")
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13656. {
  13657. feminine: {
  13658. height: math.unit(5, "feet"),
  13659. weight: math.unit(100, "lb"),
  13660. name: "Feminine",
  13661. image: {
  13662. source: "./media/characters/sammy-mouse/feminine.svg",
  13663. extra: 2526 / 2425,
  13664. bottom: 0.123
  13665. }
  13666. },
  13667. masculine: {
  13668. height: math.unit(5, "feet"),
  13669. weight: math.unit(100, "lb"),
  13670. name: "Masculine",
  13671. image: {
  13672. source: "./media/characters/sammy-mouse/masculine.svg",
  13673. extra: 2526 / 2425,
  13674. bottom: 0.123
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Micro",
  13681. height: math.unit(5, "inches")
  13682. },
  13683. {
  13684. name: "Normal",
  13685. height: math.unit(5, "feet"),
  13686. default: true
  13687. },
  13688. {
  13689. name: "Macro",
  13690. height: math.unit(60, "feet")
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13696. {
  13697. front: {
  13698. height: math.unit(4, "feet"),
  13699. weight: math.unit(50, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/kole/front.svg",
  13703. extra: 1423 / 1303,
  13704. bottom: 0.025
  13705. }
  13706. },
  13707. back: {
  13708. height: math.unit(4, "feet"),
  13709. weight: math.unit(50, "lb"),
  13710. name: "Back",
  13711. image: {
  13712. source: "./media/characters/kole/back.svg",
  13713. extra: 1426 / 1280,
  13714. bottom: 0.02
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Normal",
  13721. height: math.unit(4, "feet"),
  13722. default: true
  13723. },
  13724. ]
  13725. ))
  13726. characterMakers.push(() => makeCharacter(
  13727. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13728. {
  13729. front: {
  13730. height: math.unit(2.5, "feet"),
  13731. weight: math.unit(32, "lb"),
  13732. name: "Front",
  13733. image: {
  13734. source: "./media/characters/rufran/front.svg",
  13735. extra: 1313/885,
  13736. bottom: 94/1407
  13737. }
  13738. },
  13739. side: {
  13740. height: math.unit(2.5, "feet"),
  13741. weight: math.unit(32, "lb"),
  13742. name: "Side",
  13743. image: {
  13744. source: "./media/characters/rufran/side.svg",
  13745. extra: 1109/852,
  13746. bottom: 118/1227
  13747. }
  13748. },
  13749. back: {
  13750. height: math.unit(2.5, "feet"),
  13751. weight: math.unit(32, "lb"),
  13752. name: "Back",
  13753. image: {
  13754. source: "./media/characters/rufran/back.svg",
  13755. extra: 1280/878,
  13756. bottom: 131/1411
  13757. }
  13758. },
  13759. mouth: {
  13760. height: math.unit(1.13, "feet"),
  13761. name: "Mouth",
  13762. image: {
  13763. source: "./media/characters/rufran/mouth.svg"
  13764. }
  13765. },
  13766. foot: {
  13767. height: math.unit(1.33, "feet"),
  13768. name: "Foot",
  13769. image: {
  13770. source: "./media/characters/rufran/foot.svg"
  13771. }
  13772. },
  13773. koboldFront: {
  13774. height: math.unit(2 + 6 / 12, "feet"),
  13775. weight: math.unit(20, "lb"),
  13776. name: "Front (Kobold)",
  13777. image: {
  13778. source: "./media/characters/rufran/kobold-front.svg",
  13779. extra: 2041 / 1839,
  13780. bottom: 0.055
  13781. }
  13782. },
  13783. koboldBack: {
  13784. height: math.unit(2 + 6 / 12, "feet"),
  13785. weight: math.unit(20, "lb"),
  13786. name: "Back (Kobold)",
  13787. image: {
  13788. source: "./media/characters/rufran/kobold-back.svg",
  13789. extra: 2054 / 1839,
  13790. bottom: 0.01
  13791. }
  13792. },
  13793. koboldHand: {
  13794. height: math.unit(0.2166, "meters"),
  13795. name: "Hand (Kobold)",
  13796. image: {
  13797. source: "./media/characters/rufran/kobold-hand.svg"
  13798. }
  13799. },
  13800. koboldFoot: {
  13801. height: math.unit(0.185, "meters"),
  13802. name: "Foot (Kobold)",
  13803. image: {
  13804. source: "./media/characters/rufran/kobold-foot.svg"
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Micro",
  13811. height: math.unit(1, "inch")
  13812. },
  13813. {
  13814. name: "Normal",
  13815. height: math.unit(2 + 6 / 12, "feet"),
  13816. default: true
  13817. },
  13818. {
  13819. name: "Big",
  13820. height: math.unit(60, "feet")
  13821. },
  13822. {
  13823. name: "Macro",
  13824. height: math.unit(325, "feet")
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13830. {
  13831. front: {
  13832. height: math.unit(0.3, "meters"),
  13833. weight: math.unit(3.5, "kg"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/chip/front.svg",
  13837. extra: 748 / 674
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Micro",
  13844. height: math.unit(1, "inch"),
  13845. default: true
  13846. },
  13847. ]
  13848. ))
  13849. characterMakers.push(() => makeCharacter(
  13850. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13851. {
  13852. side: {
  13853. height: math.unit(2.3, "meters"),
  13854. weight: math.unit(3500, "lb"),
  13855. name: "Side",
  13856. image: {
  13857. source: "./media/characters/torvid/side.svg",
  13858. extra: 1972 / 722,
  13859. bottom: 0.035
  13860. }
  13861. },
  13862. },
  13863. [
  13864. {
  13865. name: "Normal",
  13866. height: math.unit(2.3, "meters"),
  13867. default: true
  13868. },
  13869. ]
  13870. ))
  13871. characterMakers.push(() => makeCharacter(
  13872. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13873. {
  13874. front: {
  13875. height: math.unit(2, "meters"),
  13876. weight: math.unit(150.5, "kg"),
  13877. name: "Front",
  13878. image: {
  13879. source: "./media/characters/susan/front.svg",
  13880. extra: 693 / 635,
  13881. bottom: 0.05
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Megamacro",
  13888. height: math.unit(505, "miles"),
  13889. default: true
  13890. },
  13891. ]
  13892. ))
  13893. characterMakers.push(() => makeCharacter(
  13894. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13895. {
  13896. front: {
  13897. height: math.unit(6, "feet"),
  13898. weight: math.unit(150, "lb"),
  13899. name: "Front",
  13900. image: {
  13901. source: "./media/characters/raindrops/front.svg",
  13902. extra: 2655 / 2461,
  13903. bottom: 49 / 2705
  13904. }
  13905. },
  13906. back: {
  13907. height: math.unit(6, "feet"),
  13908. weight: math.unit(150, "lb"),
  13909. name: "Back",
  13910. image: {
  13911. source: "./media/characters/raindrops/back.svg",
  13912. extra: 2574 / 2400,
  13913. bottom: 65 / 2634
  13914. }
  13915. },
  13916. },
  13917. [
  13918. {
  13919. name: "Micro",
  13920. height: math.unit(6, "inches")
  13921. },
  13922. {
  13923. name: "Normal",
  13924. height: math.unit(6 + 2 / 12, "feet")
  13925. },
  13926. {
  13927. name: "Macro",
  13928. height: math.unit(131, "feet"),
  13929. default: true
  13930. },
  13931. {
  13932. name: "Megamacro",
  13933. height: math.unit(15, "miles")
  13934. },
  13935. {
  13936. name: "Gigamacro",
  13937. height: math.unit(4000, "miles")
  13938. },
  13939. {
  13940. name: "Teramacro",
  13941. height: math.unit(315000, "miles")
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13947. {
  13948. front: {
  13949. height: math.unit(2.794, "meters"),
  13950. weight: math.unit(325, "kg"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/tezwa/front.svg",
  13954. extra: 2083 / 1906,
  13955. bottom: 0.031
  13956. }
  13957. },
  13958. foot: {
  13959. height: math.unit(0.687, "meters"),
  13960. name: "Foot",
  13961. image: {
  13962. source: "./media/characters/tezwa/foot.svg"
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Normal",
  13969. height: math.unit(9 + 2 / 12, "feet"),
  13970. default: true
  13971. },
  13972. ]
  13973. ))
  13974. characterMakers.push(() => makeCharacter(
  13975. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13976. {
  13977. front: {
  13978. height: math.unit(58, "feet"),
  13979. weight: math.unit(89000, "lb"),
  13980. name: "Front",
  13981. image: {
  13982. source: "./media/characters/typhus/front.svg",
  13983. extra: 816 / 800,
  13984. bottom: 0.065
  13985. }
  13986. },
  13987. },
  13988. [
  13989. {
  13990. name: "Macro",
  13991. height: math.unit(58, "feet"),
  13992. default: true
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(12, "feet"),
  14001. weight: math.unit(6, "tonnes"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/lyra-von-wulf/front.svg",
  14005. extra: 1,
  14006. bottom: 0.10
  14007. }
  14008. },
  14009. frontMecha: {
  14010. height: math.unit(12, "feet"),
  14011. weight: math.unit(12, "tonnes"),
  14012. name: "Front (Mecha)",
  14013. image: {
  14014. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14015. extra: 1,
  14016. bottom: 0.042
  14017. }
  14018. },
  14019. maw: {
  14020. height: math.unit(2.2, "feet"),
  14021. name: "Maw",
  14022. image: {
  14023. source: "./media/characters/lyra-von-wulf/maw.svg"
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(12, "feet"),
  14031. default: true
  14032. },
  14033. {
  14034. name: "Classic",
  14035. height: math.unit(50, "feet")
  14036. },
  14037. {
  14038. name: "Macro",
  14039. height: math.unit(500, "feet")
  14040. },
  14041. {
  14042. name: "Megamacro",
  14043. height: math.unit(1, "mile")
  14044. },
  14045. {
  14046. name: "Gigamacro",
  14047. height: math.unit(400, "miles")
  14048. },
  14049. {
  14050. name: "Teramacro",
  14051. height: math.unit(22000, "miles")
  14052. },
  14053. {
  14054. name: "Solarmacro",
  14055. height: math.unit(8600000, "miles")
  14056. },
  14057. {
  14058. name: "Galactic",
  14059. height: math.unit(1057000, "lightyears")
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(6 + 10 / 12, "feet"),
  14068. weight: math.unit(150, "lb"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/dixon/front.svg",
  14072. extra: 3361 / 3209,
  14073. bottom: 0.01
  14074. }
  14075. },
  14076. },
  14077. [
  14078. {
  14079. name: "Normal",
  14080. height: math.unit(6 + 10 / 12, "feet"),
  14081. default: true
  14082. },
  14083. {
  14084. name: "Big",
  14085. height: math.unit(12, "meters")
  14086. },
  14087. {
  14088. name: "Macro",
  14089. height: math.unit(500, "meters")
  14090. },
  14091. {
  14092. name: "Megamacro",
  14093. height: math.unit(2, "km")
  14094. },
  14095. ]
  14096. ))
  14097. characterMakers.push(() => makeCharacter(
  14098. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14099. {
  14100. front: {
  14101. height: math.unit(185, "cm"),
  14102. weight: math.unit(68, "kg"),
  14103. name: "Front",
  14104. image: {
  14105. source: "./media/characters/kauko/front.svg",
  14106. extra: 1455 / 1421,
  14107. bottom: 0.03
  14108. }
  14109. },
  14110. back: {
  14111. height: math.unit(185, "cm"),
  14112. weight: math.unit(68, "kg"),
  14113. name: "Back",
  14114. image: {
  14115. source: "./media/characters/kauko/back.svg",
  14116. extra: 1455 / 1421,
  14117. bottom: 0.004
  14118. }
  14119. },
  14120. },
  14121. [
  14122. {
  14123. name: "Normal",
  14124. height: math.unit(185, "cm"),
  14125. default: true
  14126. },
  14127. ]
  14128. ))
  14129. characterMakers.push(() => makeCharacter(
  14130. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14131. {
  14132. frontSfw: {
  14133. height: math.unit(5, "meters"),
  14134. weight: math.unit(4250, "lb"),
  14135. name: "Front",
  14136. image: {
  14137. source: "./media/characters/varg/front-sfw.svg",
  14138. extra: 1103/1010,
  14139. bottom: 50/1153
  14140. },
  14141. form: "anthro",
  14142. default: true
  14143. },
  14144. backSfw: {
  14145. height: math.unit(5, "meters"),
  14146. weight: math.unit(4250, "lb"),
  14147. name: "Back",
  14148. image: {
  14149. source: "./media/characters/varg/back-sfw.svg",
  14150. extra: 1038/1022,
  14151. bottom: 36/1074
  14152. },
  14153. form: "anthro"
  14154. },
  14155. frontNsfw: {
  14156. height: math.unit(5, "meters"),
  14157. weight: math.unit(4250, "lb"),
  14158. name: "Front (NSFW)",
  14159. image: {
  14160. source: "./media/characters/varg/front-nsfw.svg",
  14161. extra: 1103/1010,
  14162. bottom: 50/1153
  14163. },
  14164. form: "anthro"
  14165. },
  14166. sheath: {
  14167. height: math.unit(3.8, "feet"),
  14168. weight: math.unit(90, "kilograms"),
  14169. name: "Sheath",
  14170. image: {
  14171. source: "./media/characters/varg/sheath.svg"
  14172. },
  14173. form: "anthro"
  14174. },
  14175. dick: {
  14176. height: math.unit(4.6, "feet"),
  14177. weight: math.unit(451, "kilograms"),
  14178. name: "Dick",
  14179. image: {
  14180. source: "./media/characters/varg/dick.svg"
  14181. },
  14182. form: "anthro"
  14183. },
  14184. feralSfw: {
  14185. height: math.unit(5, "meters"),
  14186. weight: math.unit(100000, "lb"),
  14187. name: "Side",
  14188. image: {
  14189. source: "./media/characters/varg/feral-sfw.svg",
  14190. extra: 1065/511,
  14191. bottom: 211/1276
  14192. },
  14193. form: "feral",
  14194. default: true
  14195. },
  14196. feralNsfw: {
  14197. height: math.unit(5, "meters"),
  14198. weight: math.unit(100000, "lb"),
  14199. name: "Side (NSFW)",
  14200. image: {
  14201. source: "./media/characters/varg/feral-nsfw.svg",
  14202. extra: 1065/511,
  14203. bottom: 211/1276
  14204. },
  14205. form: "feral",
  14206. },
  14207. feralSheath: {
  14208. height: math.unit(9.8, "feet"),
  14209. weight: math.unit(2000, "kilograms"),
  14210. name: "Sheath",
  14211. image: {
  14212. source: "./media/characters/varg/sheath.svg"
  14213. },
  14214. form: "feral"
  14215. },
  14216. feralDick: {
  14217. height: math.unit(13.11, "feet"),
  14218. weight: math.unit(10440, "kilograms"),
  14219. name: "Dick",
  14220. image: {
  14221. source: "./media/characters/varg/dick.svg"
  14222. },
  14223. form: "feral"
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(5, "meters"),
  14230. form: "anthro"
  14231. },
  14232. {
  14233. name: "Macro",
  14234. height: math.unit(200, "meters"),
  14235. form: "anthro"
  14236. },
  14237. {
  14238. name: "Megamacro",
  14239. height: math.unit(20, "kilometers"),
  14240. form: "anthro"
  14241. },
  14242. {
  14243. name: "True Size",
  14244. height: math.unit(211, "km"),
  14245. form: "anthro",
  14246. default: true
  14247. },
  14248. {
  14249. name: "Gigamacro",
  14250. height: math.unit(1000, "km"),
  14251. form: "anthro"
  14252. },
  14253. {
  14254. name: "Gigamacro+",
  14255. height: math.unit(8000, "km"),
  14256. form: "anthro"
  14257. },
  14258. {
  14259. name: "Teramacro",
  14260. height: math.unit(1000000, "km"),
  14261. form: "anthro"
  14262. },
  14263. {
  14264. name: "Normal",
  14265. height: math.unit(5, "meters"),
  14266. form: "feral"
  14267. },
  14268. {
  14269. name: "Macro",
  14270. height: math.unit(200, "meters"),
  14271. form: "feral"
  14272. },
  14273. {
  14274. name: "Megamacro",
  14275. height: math.unit(20, "kilometers"),
  14276. form: "feral"
  14277. },
  14278. {
  14279. name: "True Size",
  14280. height: math.unit(211, "km"),
  14281. form: "feral",
  14282. default: true
  14283. },
  14284. {
  14285. name: "Gigamacro",
  14286. height: math.unit(1000, "km"),
  14287. form: "feral"
  14288. },
  14289. {
  14290. name: "Gigamacro+",
  14291. height: math.unit(8000, "km"),
  14292. form: "feral"
  14293. },
  14294. {
  14295. name: "Teramacro",
  14296. height: math.unit(1000000, "km"),
  14297. form: "feral"
  14298. },
  14299. ],
  14300. {
  14301. "anthro": {
  14302. name: "Anthro",
  14303. default: true
  14304. },
  14305. "feral": {
  14306. name: "Feral",
  14307. },
  14308. }
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(7 + 7 / 12, "feet"),
  14315. weight: math.unit(267, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/dayza/front.svg",
  14319. extra: 1262 / 1200,
  14320. bottom: 0.035
  14321. }
  14322. },
  14323. side: {
  14324. height: math.unit(7 + 7 / 12, "feet"),
  14325. weight: math.unit(267, "lb"),
  14326. name: "Side",
  14327. image: {
  14328. source: "./media/characters/dayza/side.svg",
  14329. extra: 1295 / 1245,
  14330. bottom: 0.05
  14331. }
  14332. },
  14333. back: {
  14334. height: math.unit(7 + 7 / 12, "feet"),
  14335. weight: math.unit(267, "lb"),
  14336. name: "Back",
  14337. image: {
  14338. source: "./media/characters/dayza/back.svg",
  14339. extra: 1241 / 1170
  14340. }
  14341. },
  14342. },
  14343. [
  14344. {
  14345. name: "Normal",
  14346. height: math.unit(7 + 7 / 12, "feet"),
  14347. default: true
  14348. },
  14349. {
  14350. name: "Macro",
  14351. height: math.unit(155, "feet")
  14352. },
  14353. ]
  14354. ))
  14355. characterMakers.push(() => makeCharacter(
  14356. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14357. {
  14358. front: {
  14359. height: math.unit(6 + 5 / 12, "feet"),
  14360. weight: math.unit(160, "lb"),
  14361. name: "Front",
  14362. image: {
  14363. source: "./media/characters/xanthos/front.svg",
  14364. extra: 1,
  14365. bottom: 0.04
  14366. }
  14367. },
  14368. back: {
  14369. height: math.unit(6 + 5 / 12, "feet"),
  14370. weight: math.unit(160, "lb"),
  14371. name: "Back",
  14372. image: {
  14373. source: "./media/characters/xanthos/back.svg",
  14374. extra: 1,
  14375. bottom: 0.03
  14376. }
  14377. },
  14378. hand: {
  14379. height: math.unit(0.928, "feet"),
  14380. name: "Hand",
  14381. image: {
  14382. source: "./media/characters/xanthos/hand.svg"
  14383. }
  14384. },
  14385. foot: {
  14386. height: math.unit(1.286, "feet"),
  14387. name: "Foot",
  14388. image: {
  14389. source: "./media/characters/xanthos/foot.svg"
  14390. }
  14391. },
  14392. },
  14393. [
  14394. {
  14395. name: "Normal",
  14396. height: math.unit(6 + 5 / 12, "feet"),
  14397. default: true
  14398. },
  14399. {
  14400. name: "Normal+",
  14401. height: math.unit(6, "meters")
  14402. },
  14403. {
  14404. name: "Macro",
  14405. height: math.unit(40, "feet")
  14406. },
  14407. {
  14408. name: "Macro+",
  14409. height: math.unit(200, "meters")
  14410. },
  14411. {
  14412. name: "Megamacro",
  14413. height: math.unit(20, "km")
  14414. },
  14415. {
  14416. name: "Megamacro+",
  14417. height: math.unit(100, "km")
  14418. },
  14419. {
  14420. name: "Gigamacro",
  14421. height: math.unit(200, "megameters")
  14422. },
  14423. {
  14424. name: "Gigamacro+",
  14425. height: math.unit(1.5, "gigameters")
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(6 + 3 / 12, "feet"),
  14434. weight: math.unit(215, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/grynn/front.svg",
  14438. extra: 4627 / 4209,
  14439. bottom: 0.047
  14440. }
  14441. },
  14442. },
  14443. [
  14444. {
  14445. name: "Micro",
  14446. height: math.unit(6, "inches")
  14447. },
  14448. {
  14449. name: "Normal",
  14450. height: math.unit(6 + 3 / 12, "feet"),
  14451. default: true
  14452. },
  14453. {
  14454. name: "Big",
  14455. height: math.unit(104, "feet")
  14456. },
  14457. {
  14458. name: "Macro",
  14459. height: math.unit(944, "feet")
  14460. },
  14461. {
  14462. name: "Macro+",
  14463. height: math.unit(9480, "feet")
  14464. },
  14465. {
  14466. name: "Megamacro",
  14467. height: math.unit(78752, "feet")
  14468. },
  14469. {
  14470. name: "Megamacro+",
  14471. height: math.unit(630128, "feet")
  14472. },
  14473. {
  14474. name: "Megamacro++",
  14475. height: math.unit(3150695, "feet")
  14476. },
  14477. ]
  14478. ))
  14479. characterMakers.push(() => makeCharacter(
  14480. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14481. {
  14482. front: {
  14483. height: math.unit(7 + 5 / 12, "feet"),
  14484. weight: math.unit(450, "lb"),
  14485. name: "Front",
  14486. image: {
  14487. source: "./media/characters/mocha-aura/front.svg",
  14488. extra: 1907 / 1817,
  14489. bottom: 0.04
  14490. }
  14491. },
  14492. back: {
  14493. height: math.unit(7 + 5 / 12, "feet"),
  14494. weight: math.unit(450, "lb"),
  14495. name: "Back",
  14496. image: {
  14497. source: "./media/characters/mocha-aura/back.svg",
  14498. extra: 1900 / 1825,
  14499. bottom: 0.045
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Nano",
  14506. height: math.unit(1, "nm")
  14507. },
  14508. {
  14509. name: "Megamicro",
  14510. height: math.unit(1, "mm")
  14511. },
  14512. {
  14513. name: "Micro",
  14514. height: math.unit(3, "inches")
  14515. },
  14516. {
  14517. name: "Normal",
  14518. height: math.unit(7 + 5 / 12, "feet"),
  14519. default: true
  14520. },
  14521. {
  14522. name: "Macro",
  14523. height: math.unit(30, "feet")
  14524. },
  14525. {
  14526. name: "Megamacro",
  14527. height: math.unit(3500, "feet")
  14528. },
  14529. {
  14530. name: "Teramacro",
  14531. height: math.unit(500000, "miles")
  14532. },
  14533. {
  14534. name: "Petamacro",
  14535. height: math.unit(50000000000000000, "parsecs")
  14536. },
  14537. ]
  14538. ))
  14539. characterMakers.push(() => makeCharacter(
  14540. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14541. {
  14542. front: {
  14543. height: math.unit(6, "feet"),
  14544. weight: math.unit(150, "lb"),
  14545. name: "Front",
  14546. image: {
  14547. source: "./media/characters/ilisha-devya/front.svg",
  14548. extra: 1053/1049,
  14549. bottom: 270/1323
  14550. }
  14551. },
  14552. back: {
  14553. height: math.unit(6, "feet"),
  14554. weight: math.unit(150, "lb"),
  14555. name: "Back",
  14556. image: {
  14557. source: "./media/characters/ilisha-devya/back.svg",
  14558. extra: 1131/1128,
  14559. bottom: 39/1170
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "Macro",
  14566. height: math.unit(500, "feet"),
  14567. default: true
  14568. },
  14569. {
  14570. name: "Megamacro",
  14571. height: math.unit(10, "miles")
  14572. },
  14573. {
  14574. name: "Gigamacro",
  14575. height: math.unit(100000, "miles")
  14576. },
  14577. {
  14578. name: "Examacro",
  14579. height: math.unit(1e9, "lightyears")
  14580. },
  14581. {
  14582. name: "Omniversal",
  14583. height: math.unit(1e33, "lightyears")
  14584. },
  14585. {
  14586. name: "Beyond Infinite",
  14587. height: math.unit(1e100, "lightyears")
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14593. {
  14594. Side: {
  14595. height: math.unit(6, "feet"),
  14596. weight: math.unit(150, "lb"),
  14597. name: "Side",
  14598. image: {
  14599. source: "./media/characters/mira/side.svg",
  14600. extra: 900 / 799,
  14601. bottom: 0.02
  14602. }
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Human Size",
  14608. height: math.unit(6, "feet")
  14609. },
  14610. {
  14611. name: "Macro",
  14612. height: math.unit(100, "feet"),
  14613. default: true
  14614. },
  14615. {
  14616. name: "Megamacro",
  14617. height: math.unit(10, "miles")
  14618. },
  14619. {
  14620. name: "Gigamacro",
  14621. height: math.unit(25000, "miles")
  14622. },
  14623. {
  14624. name: "Teramacro",
  14625. height: math.unit(300, "AU")
  14626. },
  14627. {
  14628. name: "Full Size",
  14629. height: math.unit(4.5e10, "lightyears")
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14635. {
  14636. front: {
  14637. height: math.unit(6, "feet"),
  14638. weight: math.unit(150, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/holly/front.svg",
  14642. extra: 639 / 606
  14643. }
  14644. },
  14645. back: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(150, "lb"),
  14648. name: "Back",
  14649. image: {
  14650. source: "./media/characters/holly/back.svg",
  14651. extra: 623 / 598
  14652. }
  14653. },
  14654. frontWorking: {
  14655. height: math.unit(6, "feet"),
  14656. weight: math.unit(150, "lb"),
  14657. name: "Front (Working)",
  14658. image: {
  14659. source: "./media/characters/holly/front-working.svg",
  14660. extra: 607 / 577,
  14661. bottom: 0.048
  14662. }
  14663. },
  14664. },
  14665. [
  14666. {
  14667. name: "Normal",
  14668. height: math.unit(12 + 3 / 12, "feet"),
  14669. default: true
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(150, "lb"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/porter/front.svg",
  14682. extra: 1,
  14683. bottom: 0.01
  14684. }
  14685. },
  14686. frontRobes: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(150, "lb"),
  14689. name: "Front (Robes)",
  14690. image: {
  14691. source: "./media/characters/porter/front-robes.svg",
  14692. extra: 1.01,
  14693. bottom: 0.01
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Normal",
  14700. height: math.unit(11 + 9 / 12, "feet"),
  14701. default: true
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14707. {
  14708. legendary: {
  14709. height: math.unit(6, "feet"),
  14710. weight: math.unit(150, "lb"),
  14711. name: "Legendary",
  14712. image: {
  14713. source: "./media/characters/lucy/legendary.svg",
  14714. extra: 1355 / 1100,
  14715. bottom: 0.045
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Legendary",
  14722. height: math.unit(86882 * 2, "miles"),
  14723. default: true
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14729. {
  14730. front: {
  14731. height: math.unit(6, "feet"),
  14732. weight: math.unit(150, "lb"),
  14733. name: "Front",
  14734. image: {
  14735. source: "./media/characters/drusilla/front.svg",
  14736. extra: 678 / 635,
  14737. bottom: 0.03
  14738. }
  14739. },
  14740. back: {
  14741. height: math.unit(6, "feet"),
  14742. weight: math.unit(150, "lb"),
  14743. name: "Back",
  14744. image: {
  14745. source: "./media/characters/drusilla/back.svg",
  14746. extra: 678 / 635,
  14747. bottom: 0.005
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Macro",
  14754. height: math.unit(100, "feet")
  14755. },
  14756. {
  14757. name: "Canon Height",
  14758. height: math.unit(2000, "feet"),
  14759. default: true
  14760. },
  14761. ]
  14762. ))
  14763. characterMakers.push(() => makeCharacter(
  14764. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14765. {
  14766. front: {
  14767. height: math.unit(6, "feet"),
  14768. weight: math.unit(180, "lb"),
  14769. name: "Front",
  14770. image: {
  14771. source: "./media/characters/renard-thatch/front.svg",
  14772. extra: 2411 / 2275,
  14773. bottom: 0.01
  14774. }
  14775. },
  14776. frontPosing: {
  14777. height: math.unit(6, "feet"),
  14778. weight: math.unit(180, "lb"),
  14779. name: "Front (Posing)",
  14780. image: {
  14781. source: "./media/characters/renard-thatch/front-posing.svg",
  14782. extra: 2381 / 2261,
  14783. bottom: 0.01
  14784. }
  14785. },
  14786. back: {
  14787. height: math.unit(6, "feet"),
  14788. weight: math.unit(180, "lb"),
  14789. name: "Back",
  14790. image: {
  14791. source: "./media/characters/renard-thatch/back.svg",
  14792. extra: 2428 / 2288
  14793. }
  14794. },
  14795. },
  14796. [
  14797. {
  14798. name: "Micro",
  14799. height: math.unit(3, "inches")
  14800. },
  14801. {
  14802. name: "Default",
  14803. height: math.unit(6, "feet"),
  14804. default: true
  14805. },
  14806. {
  14807. name: "Macro",
  14808. height: math.unit(75, "feet")
  14809. },
  14810. ]
  14811. ))
  14812. characterMakers.push(() => makeCharacter(
  14813. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14814. {
  14815. front: {
  14816. height: math.unit(1450, "feet"),
  14817. weight: math.unit(1.21e6, "tons"),
  14818. name: "Front",
  14819. image: {
  14820. source: "./media/characters/sekvra/front.svg",
  14821. extra: 1193/1190,
  14822. bottom: 78/1271
  14823. }
  14824. },
  14825. side: {
  14826. height: math.unit(1450, "feet"),
  14827. weight: math.unit(1.21e6, "tons"),
  14828. name: "Side",
  14829. image: {
  14830. source: "./media/characters/sekvra/side.svg",
  14831. extra: 1193/1190,
  14832. bottom: 52/1245
  14833. }
  14834. },
  14835. back: {
  14836. height: math.unit(1450, "feet"),
  14837. weight: math.unit(1.21e6, "tons"),
  14838. name: "Back",
  14839. image: {
  14840. source: "./media/characters/sekvra/back.svg",
  14841. extra: 1219/1216,
  14842. bottom: 21/1240
  14843. }
  14844. },
  14845. frontClothed: {
  14846. height: math.unit(1450, "feet"),
  14847. weight: math.unit(1.21e6, "tons"),
  14848. name: "Front (Clothed)",
  14849. image: {
  14850. source: "./media/characters/sekvra/front-clothed.svg",
  14851. extra: 1192/1189,
  14852. bottom: 79/1271
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Macro",
  14859. height: math.unit(1450, "feet"),
  14860. default: true
  14861. },
  14862. {
  14863. name: "Megamacro",
  14864. height: math.unit(15000, "feet")
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(6, "feet"),
  14873. weight: math.unit(150, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/carmine/front.svg",
  14877. extra: 1557/1538,
  14878. bottom: 68/1625
  14879. }
  14880. },
  14881. frontArmor: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(150, "lb"),
  14884. name: "Front (Armor)",
  14885. image: {
  14886. source: "./media/characters/carmine/front-armor.svg",
  14887. extra: 1549/1530,
  14888. bottom: 82/1631
  14889. }
  14890. },
  14891. mouth: {
  14892. height: math.unit(0.55, "feet"),
  14893. name: "Mouth",
  14894. image: {
  14895. source: "./media/characters/carmine/mouth.svg"
  14896. }
  14897. },
  14898. hand: {
  14899. height: math.unit(1.05, "feet"),
  14900. name: "Hand",
  14901. image: {
  14902. source: "./media/characters/carmine/hand.svg"
  14903. }
  14904. },
  14905. foot: {
  14906. height: math.unit(0.6, "feet"),
  14907. name: "Foot",
  14908. image: {
  14909. source: "./media/characters/carmine/foot.svg"
  14910. }
  14911. },
  14912. },
  14913. [
  14914. {
  14915. name: "Large",
  14916. height: math.unit(1, "mile")
  14917. },
  14918. {
  14919. name: "Huge",
  14920. height: math.unit(40, "miles"),
  14921. default: true
  14922. },
  14923. {
  14924. name: "Colossal",
  14925. height: math.unit(2500, "miles")
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14931. {
  14932. front: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/elyssia/front.svg",
  14938. extra: 2201 / 2035,
  14939. bottom: 0.05
  14940. }
  14941. },
  14942. frontClothed: {
  14943. height: math.unit(6, "feet"),
  14944. weight: math.unit(150, "lb"),
  14945. name: "Front (Clothed)",
  14946. image: {
  14947. source: "./media/characters/elyssia/front-clothed.svg",
  14948. extra: 2201 / 2035,
  14949. bottom: 0.05
  14950. }
  14951. },
  14952. back: {
  14953. height: math.unit(6, "feet"),
  14954. weight: math.unit(150, "lb"),
  14955. name: "Back",
  14956. image: {
  14957. source: "./media/characters/elyssia/back.svg",
  14958. extra: 2201 / 2035,
  14959. bottom: 0.013
  14960. }
  14961. },
  14962. },
  14963. [
  14964. {
  14965. name: "Smaller",
  14966. height: math.unit(150, "feet")
  14967. },
  14968. {
  14969. name: "Standard",
  14970. height: math.unit(1400, "feet"),
  14971. default: true
  14972. },
  14973. {
  14974. name: "Distracted",
  14975. height: math.unit(15000, "feet")
  14976. },
  14977. ]
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14981. {
  14982. front: {
  14983. height: math.unit(7 + 4/12, "feet"),
  14984. weight: math.unit(690, "lb"),
  14985. name: "Front",
  14986. image: {
  14987. source: "./media/characters/geno-maxwell/front.svg",
  14988. extra: 984/856,
  14989. bottom: 87/1071
  14990. }
  14991. },
  14992. back: {
  14993. height: math.unit(7 + 4/12, "feet"),
  14994. weight: math.unit(690, "lb"),
  14995. name: "Back",
  14996. image: {
  14997. source: "./media/characters/geno-maxwell/back.svg",
  14998. extra: 981/854,
  14999. bottom: 57/1038
  15000. }
  15001. },
  15002. frontCostume: {
  15003. height: math.unit(7 + 4/12, "feet"),
  15004. weight: math.unit(690, "lb"),
  15005. name: "Front (Costume)",
  15006. image: {
  15007. source: "./media/characters/geno-maxwell/front-costume.svg",
  15008. extra: 984/856,
  15009. bottom: 87/1071
  15010. }
  15011. },
  15012. backcostume: {
  15013. height: math.unit(7 + 4/12, "feet"),
  15014. weight: math.unit(690, "lb"),
  15015. name: "Back (Costume)",
  15016. image: {
  15017. source: "./media/characters/geno-maxwell/back-costume.svg",
  15018. extra: 981/854,
  15019. bottom: 57/1038
  15020. }
  15021. },
  15022. },
  15023. [
  15024. {
  15025. name: "Micro",
  15026. height: math.unit(3, "inches")
  15027. },
  15028. {
  15029. name: "Normal",
  15030. height: math.unit(7 + 4 / 12, "feet"),
  15031. default: true
  15032. },
  15033. {
  15034. name: "Macro",
  15035. height: math.unit(220, "feet")
  15036. },
  15037. {
  15038. name: "Megamacro",
  15039. height: math.unit(11, "miles")
  15040. },
  15041. ]
  15042. ))
  15043. characterMakers.push(() => makeCharacter(
  15044. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15045. {
  15046. front: {
  15047. height: math.unit(7 + 4/12, "feet"),
  15048. weight: math.unit(750, "lb"),
  15049. name: "Front",
  15050. image: {
  15051. source: "./media/characters/regena-maxwell/front.svg",
  15052. extra: 984/856,
  15053. bottom: 87/1071
  15054. }
  15055. },
  15056. back: {
  15057. height: math.unit(7 + 4/12, "feet"),
  15058. weight: math.unit(750, "lb"),
  15059. name: "Back",
  15060. image: {
  15061. source: "./media/characters/regena-maxwell/back.svg",
  15062. extra: 981/854,
  15063. bottom: 57/1038
  15064. }
  15065. },
  15066. frontCostume: {
  15067. height: math.unit(7 + 4/12, "feet"),
  15068. weight: math.unit(750, "lb"),
  15069. name: "Front (Costume)",
  15070. image: {
  15071. source: "./media/characters/regena-maxwell/front-costume.svg",
  15072. extra: 984/856,
  15073. bottom: 87/1071
  15074. }
  15075. },
  15076. backcostume: {
  15077. height: math.unit(7 + 4/12, "feet"),
  15078. weight: math.unit(750, "lb"),
  15079. name: "Back (Costume)",
  15080. image: {
  15081. source: "./media/characters/regena-maxwell/back-costume.svg",
  15082. extra: 981/854,
  15083. bottom: 57/1038
  15084. }
  15085. },
  15086. },
  15087. [
  15088. {
  15089. name: "Normal",
  15090. height: math.unit(7 + 4 / 12, "feet"),
  15091. default: true
  15092. },
  15093. {
  15094. name: "Macro",
  15095. height: math.unit(220, "feet")
  15096. },
  15097. {
  15098. name: "Megamacro",
  15099. height: math.unit(11, "miles")
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(6, "feet"),
  15108. weight: math.unit(150, "lb"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15112. extra: 860 / 690,
  15113. bottom: 0.03
  15114. }
  15115. },
  15116. },
  15117. [
  15118. {
  15119. name: "Normal",
  15120. height: math.unit(1.7, "meters"),
  15121. default: true
  15122. },
  15123. ]
  15124. ))
  15125. characterMakers.push(() => makeCharacter(
  15126. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15127. {
  15128. front: {
  15129. height: math.unit(6, "feet"),
  15130. weight: math.unit(150, "lb"),
  15131. name: "Front",
  15132. image: {
  15133. source: "./media/characters/quilly/front.svg",
  15134. extra: 890 / 776
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Gigamacro",
  15141. height: math.unit(404090, "miles"),
  15142. default: true
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15148. {
  15149. front: {
  15150. height: math.unit(7 + 8 / 12, "feet"),
  15151. weight: math.unit(350, "lb"),
  15152. name: "Front",
  15153. image: {
  15154. source: "./media/characters/tempest/front.svg",
  15155. extra: 1175 / 1086,
  15156. bottom: 0.02
  15157. }
  15158. },
  15159. },
  15160. [
  15161. {
  15162. name: "Normal",
  15163. height: math.unit(7 + 8 / 12, "feet"),
  15164. default: true
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15170. {
  15171. side: {
  15172. height: math.unit(4 + 5 / 12, "feet"),
  15173. weight: math.unit(80, "lb"),
  15174. name: "Side",
  15175. image: {
  15176. source: "./media/characters/rodger/side.svg",
  15177. extra: 1235 / 1118
  15178. }
  15179. },
  15180. },
  15181. [
  15182. {
  15183. name: "Micro",
  15184. height: math.unit(1, "inch")
  15185. },
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(4 + 5 / 12, "feet"),
  15189. default: true
  15190. },
  15191. {
  15192. name: "Macro",
  15193. height: math.unit(120, "feet")
  15194. },
  15195. ]
  15196. ))
  15197. characterMakers.push(() => makeCharacter(
  15198. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15199. {
  15200. front: {
  15201. height: math.unit(6, "feet"),
  15202. weight: math.unit(150, "lb"),
  15203. name: "Front",
  15204. image: {
  15205. source: "./media/characters/danyel/front.svg",
  15206. extra: 1185 / 1123,
  15207. bottom: 0.05
  15208. }
  15209. },
  15210. },
  15211. [
  15212. {
  15213. name: "Shrunken",
  15214. height: math.unit(0.5, "mm")
  15215. },
  15216. {
  15217. name: "Micro",
  15218. height: math.unit(1, "mm"),
  15219. default: true
  15220. },
  15221. {
  15222. name: "Upsized",
  15223. height: math.unit(5 + 5 / 12, "feet")
  15224. },
  15225. ]
  15226. ))
  15227. characterMakers.push(() => makeCharacter(
  15228. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15229. {
  15230. front: {
  15231. height: math.unit(5 + 6 / 12, "feet"),
  15232. weight: math.unit(200, "lb"),
  15233. name: "Front",
  15234. image: {
  15235. source: "./media/characters/vivian-bijoux/front.svg",
  15236. extra: 1217/1209,
  15237. bottom: 76/1293
  15238. }
  15239. },
  15240. back: {
  15241. height: math.unit(5 + 6 / 12, "feet"),
  15242. weight: math.unit(200, "lb"),
  15243. name: "Back",
  15244. image: {
  15245. source: "./media/characters/vivian-bijoux/back.svg",
  15246. extra: 1214/1208,
  15247. bottom: 51/1265
  15248. }
  15249. },
  15250. dressed: {
  15251. height: math.unit(5 + 6 / 12, "feet"),
  15252. weight: math.unit(200, "lb"),
  15253. name: "Dressed",
  15254. image: {
  15255. source: "./media/characters/vivian-bijoux/dressed.svg",
  15256. extra: 1217/1209,
  15257. bottom: 76/1293
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Normal",
  15264. height: math.unit(5 + 6 / 12, "feet"),
  15265. default: true
  15266. },
  15267. {
  15268. name: "Bad Dream",
  15269. height: math.unit(500, "feet")
  15270. },
  15271. {
  15272. name: "Nightmare",
  15273. height: math.unit(500, "miles")
  15274. },
  15275. ]
  15276. ))
  15277. characterMakers.push(() => makeCharacter(
  15278. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15279. {
  15280. front: {
  15281. height: math.unit(6 + 1 / 12, "feet"),
  15282. weight: math.unit(260, "lb"),
  15283. name: "Front",
  15284. image: {
  15285. source: "./media/characters/zeta/front.svg",
  15286. extra: 1968 / 1889,
  15287. bottom: 0.06
  15288. }
  15289. },
  15290. back: {
  15291. height: math.unit(6 + 1 / 12, "feet"),
  15292. weight: math.unit(260, "lb"),
  15293. name: "Back",
  15294. image: {
  15295. source: "./media/characters/zeta/back.svg",
  15296. extra: 1944 / 1858,
  15297. bottom: 0.03
  15298. }
  15299. },
  15300. hand: {
  15301. height: math.unit(1.112, "feet"),
  15302. name: "Hand",
  15303. image: {
  15304. source: "./media/characters/zeta/hand.svg"
  15305. }
  15306. },
  15307. foot: {
  15308. height: math.unit(1.48, "feet"),
  15309. name: "Foot",
  15310. image: {
  15311. source: "./media/characters/zeta/foot.svg"
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Micro",
  15318. height: math.unit(6, "inches")
  15319. },
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(6 + 1 / 12, "feet"),
  15323. default: true
  15324. },
  15325. {
  15326. name: "Macro",
  15327. height: math.unit(20, "feet")
  15328. },
  15329. ]
  15330. ))
  15331. characterMakers.push(() => makeCharacter(
  15332. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15333. {
  15334. front: {
  15335. height: math.unit(6, "feet"),
  15336. weight: math.unit(150, "lb"),
  15337. name: "Front",
  15338. image: {
  15339. source: "./media/characters/jamie-larsen/front.svg",
  15340. extra: 962 / 933,
  15341. bottom: 0.02
  15342. }
  15343. },
  15344. back: {
  15345. height: math.unit(6, "feet"),
  15346. weight: math.unit(150, "lb"),
  15347. name: "Back",
  15348. image: {
  15349. source: "./media/characters/jamie-larsen/back.svg",
  15350. extra: 997 / 946
  15351. }
  15352. },
  15353. },
  15354. [
  15355. {
  15356. name: "Macro",
  15357. height: math.unit(28 + 7 / 12, "feet"),
  15358. default: true
  15359. },
  15360. {
  15361. name: "Macro+",
  15362. height: math.unit(180, "feet")
  15363. },
  15364. {
  15365. name: "Megamacro",
  15366. height: math.unit(10, "miles")
  15367. },
  15368. {
  15369. name: "Gigamacro",
  15370. height: math.unit(200000, "miles")
  15371. },
  15372. ]
  15373. ))
  15374. characterMakers.push(() => makeCharacter(
  15375. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15376. {
  15377. front: {
  15378. height: math.unit(6, "feet"),
  15379. weight: math.unit(120, "lb"),
  15380. name: "Front",
  15381. image: {
  15382. source: "./media/characters/vance/front.svg",
  15383. extra: 1980 / 1890,
  15384. bottom: 0.09
  15385. }
  15386. },
  15387. back: {
  15388. height: math.unit(6, "feet"),
  15389. weight: math.unit(120, "lb"),
  15390. name: "Back",
  15391. image: {
  15392. source: "./media/characters/vance/back.svg",
  15393. extra: 2081 / 1994,
  15394. bottom: 0.014
  15395. }
  15396. },
  15397. hand: {
  15398. height: math.unit(0.88, "feet"),
  15399. name: "Hand",
  15400. image: {
  15401. source: "./media/characters/vance/hand.svg"
  15402. }
  15403. },
  15404. foot: {
  15405. height: math.unit(0.64, "feet"),
  15406. name: "Foot",
  15407. image: {
  15408. source: "./media/characters/vance/foot.svg"
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Small",
  15415. height: math.unit(90, "feet"),
  15416. default: true
  15417. },
  15418. {
  15419. name: "Macro",
  15420. height: math.unit(100, "meters")
  15421. },
  15422. {
  15423. name: "Megamacro",
  15424. height: math.unit(15, "miles")
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15430. {
  15431. front: {
  15432. height: math.unit(6, "feet"),
  15433. weight: math.unit(180, "lb"),
  15434. name: "Front",
  15435. image: {
  15436. source: "./media/characters/xochitl/front.svg",
  15437. extra: 2297 / 2261,
  15438. bottom: 0.065
  15439. }
  15440. },
  15441. back: {
  15442. height: math.unit(6, "feet"),
  15443. weight: math.unit(180, "lb"),
  15444. name: "Back",
  15445. image: {
  15446. source: "./media/characters/xochitl/back.svg",
  15447. extra: 2386 / 2354,
  15448. bottom: 0.01
  15449. }
  15450. },
  15451. foot: {
  15452. height: math.unit(6 / 5 * 1.15, "feet"),
  15453. weight: math.unit(150, "lb"),
  15454. name: "Foot",
  15455. image: {
  15456. source: "./media/characters/xochitl/foot.svg"
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Macro",
  15463. height: math.unit(80, "feet")
  15464. },
  15465. {
  15466. name: "Macro+",
  15467. height: math.unit(400, "feet"),
  15468. default: true
  15469. },
  15470. {
  15471. name: "Gigamacro",
  15472. height: math.unit(80000, "miles")
  15473. },
  15474. {
  15475. name: "Gigamacro+",
  15476. height: math.unit(400000, "miles")
  15477. },
  15478. {
  15479. name: "Teramacro",
  15480. height: math.unit(300, "AU")
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(6, "feet"),
  15489. weight: math.unit(150, "lb"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/vincent/front.svg",
  15493. extra: 1130 / 1080,
  15494. bottom: 0.055
  15495. }
  15496. },
  15497. beak: {
  15498. height: math.unit(6 * 0.1, "feet"),
  15499. name: "Beak",
  15500. image: {
  15501. source: "./media/characters/vincent/beak.svg"
  15502. }
  15503. },
  15504. hand: {
  15505. height: math.unit(6 * 0.85, "feet"),
  15506. weight: math.unit(150, "lb"),
  15507. name: "Hand",
  15508. image: {
  15509. source: "./media/characters/vincent/hand.svg"
  15510. }
  15511. },
  15512. foot: {
  15513. height: math.unit(6 * 0.19, "feet"),
  15514. weight: math.unit(150, "lb"),
  15515. name: "Foot",
  15516. image: {
  15517. source: "./media/characters/vincent/foot.svg"
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Base",
  15524. height: math.unit(6 + 5 / 12, "feet"),
  15525. default: true
  15526. },
  15527. {
  15528. name: "Macro",
  15529. height: math.unit(300, "feet")
  15530. },
  15531. {
  15532. name: "Megamacro",
  15533. height: math.unit(2, "miles")
  15534. },
  15535. {
  15536. name: "Gigamacro",
  15537. height: math.unit(1000, "miles")
  15538. },
  15539. ]
  15540. ))
  15541. characterMakers.push(() => makeCharacter(
  15542. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15543. {
  15544. front: {
  15545. height: math.unit(2, "meters"),
  15546. weight: math.unit(500, "kg"),
  15547. name: "Front",
  15548. image: {
  15549. source: "./media/characters/coatl/front.svg",
  15550. extra: 3948 / 3500,
  15551. bottom: 0.082
  15552. }
  15553. },
  15554. },
  15555. [
  15556. {
  15557. name: "Normal",
  15558. height: math.unit(4, "meters")
  15559. },
  15560. {
  15561. name: "Macro",
  15562. height: math.unit(100, "meters"),
  15563. default: true
  15564. },
  15565. {
  15566. name: "Macro+",
  15567. height: math.unit(300, "meters")
  15568. },
  15569. {
  15570. name: "Megamacro",
  15571. height: math.unit(3, "gigameters")
  15572. },
  15573. {
  15574. name: "Megamacro+",
  15575. height: math.unit(300, "terameters")
  15576. },
  15577. {
  15578. name: "Megamacro++",
  15579. height: math.unit(3, "lightyears")
  15580. },
  15581. ]
  15582. ))
  15583. characterMakers.push(() => makeCharacter(
  15584. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15585. {
  15586. front: {
  15587. height: math.unit(6, "feet"),
  15588. weight: math.unit(50, "kg"),
  15589. name: "front",
  15590. image: {
  15591. source: "./media/characters/shiroryu/front.svg",
  15592. extra: 1990 / 1935
  15593. }
  15594. },
  15595. },
  15596. [
  15597. {
  15598. name: "Mortal Mingling",
  15599. height: math.unit(3, "meters")
  15600. },
  15601. {
  15602. name: "Kaiju-ish",
  15603. height: math.unit(250, "meters")
  15604. },
  15605. {
  15606. name: "Somewhat Godly",
  15607. height: math.unit(400, "km"),
  15608. default: true
  15609. },
  15610. {
  15611. name: "Planetary",
  15612. height: math.unit(300, "megameters")
  15613. },
  15614. {
  15615. name: "Galaxy-dwarfing",
  15616. height: math.unit(450, "kiloparsecs")
  15617. },
  15618. {
  15619. name: "Universe Eater",
  15620. height: math.unit(150, "gigaparsecs")
  15621. },
  15622. {
  15623. name: "Almost Immeasurable",
  15624. height: math.unit(1.3e266, "yottaparsecs")
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15630. {
  15631. front: {
  15632. height: math.unit(6, "feet"),
  15633. weight: math.unit(150, "lb"),
  15634. name: "Front",
  15635. image: {
  15636. source: "./media/characters/umeko/front.svg",
  15637. extra: 1,
  15638. bottom: 0.019
  15639. }
  15640. },
  15641. frontArmored: {
  15642. height: math.unit(6, "feet"),
  15643. weight: math.unit(150, "lb"),
  15644. name: "Front (Armored)",
  15645. image: {
  15646. source: "./media/characters/umeko/front-armored.svg",
  15647. extra: 1,
  15648. bottom: 0.021
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Macro",
  15655. height: math.unit(220, "feet"),
  15656. default: true
  15657. },
  15658. {
  15659. name: "Guardian Dragon",
  15660. height: math.unit(50, "miles")
  15661. },
  15662. {
  15663. name: "Cosmic",
  15664. height: math.unit(800000, "miles")
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(6, "feet"),
  15673. weight: math.unit(150, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/cassidy/front.svg",
  15677. extra: 810/808,
  15678. bottom: 41/851
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Canon Height",
  15685. height: math.unit(120, "feet"),
  15686. default: true
  15687. },
  15688. {
  15689. name: "Macro+",
  15690. height: math.unit(400, "feet")
  15691. },
  15692. {
  15693. name: "Macro++",
  15694. height: math.unit(4000, "feet")
  15695. },
  15696. {
  15697. name: "Megamacro",
  15698. height: math.unit(3, "miles")
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15704. {
  15705. front: {
  15706. height: math.unit(6, "feet"),
  15707. weight: math.unit(150, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/isaac/front.svg",
  15711. extra: 896 / 815,
  15712. bottom: 0.11
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Human Size",
  15719. height: math.unit(8, "feet"),
  15720. default: true
  15721. },
  15722. {
  15723. name: "Macro",
  15724. height: math.unit(400, "feet")
  15725. },
  15726. {
  15727. name: "Megamacro",
  15728. height: math.unit(50, "miles")
  15729. },
  15730. {
  15731. name: "Canon Height",
  15732. height: math.unit(200, "AU")
  15733. },
  15734. ]
  15735. ))
  15736. characterMakers.push(() => makeCharacter(
  15737. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15738. {
  15739. front: {
  15740. height: math.unit(6, "feet"),
  15741. weight: math.unit(72, "kg"),
  15742. name: "Front",
  15743. image: {
  15744. source: "./media/characters/sleekit/front.svg",
  15745. extra: 4693 / 4487,
  15746. bottom: 0.012
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Minimum Height",
  15753. height: math.unit(10, "meters")
  15754. },
  15755. {
  15756. name: "Smaller",
  15757. height: math.unit(25, "meters")
  15758. },
  15759. {
  15760. name: "Larger",
  15761. height: math.unit(38, "meters"),
  15762. default: true
  15763. },
  15764. {
  15765. name: "Maximum height",
  15766. height: math.unit(100, "meters")
  15767. },
  15768. ]
  15769. ))
  15770. characterMakers.push(() => makeCharacter(
  15771. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15772. {
  15773. front: {
  15774. height: math.unit(6, "feet"),
  15775. weight: math.unit(150, "lb"),
  15776. name: "Front",
  15777. image: {
  15778. source: "./media/characters/nillia/front.svg",
  15779. extra: 719/665,
  15780. bottom: 6/725
  15781. }
  15782. },
  15783. back: {
  15784. height: math.unit(6, "feet"),
  15785. weight: math.unit(150, "lb"),
  15786. name: "Back",
  15787. image: {
  15788. source: "./media/characters/nillia/back.svg",
  15789. extra: 705/651,
  15790. bottom: 5/710
  15791. }
  15792. },
  15793. },
  15794. [
  15795. {
  15796. name: "Canon Height",
  15797. height: math.unit(489, "feet"),
  15798. default: true
  15799. }
  15800. ]
  15801. ))
  15802. characterMakers.push(() => makeCharacter(
  15803. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15804. {
  15805. front: {
  15806. height: math.unit(6, "feet"),
  15807. weight: math.unit(150, "lb"),
  15808. name: "Front",
  15809. image: {
  15810. source: "./media/characters/mesmyriza/front.svg",
  15811. extra: 2067 / 1784,
  15812. bottom: 0.035
  15813. }
  15814. },
  15815. foot: {
  15816. height: math.unit(6 / (250 / 35), "feet"),
  15817. name: "Foot",
  15818. image: {
  15819. source: "./media/characters/mesmyriza/foot.svg"
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Macro",
  15826. height: math.unit(457, "meters"),
  15827. default: true
  15828. },
  15829. {
  15830. name: "Megamacro",
  15831. height: math.unit(8, "megameters")
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(6, "feet"),
  15840. weight: math.unit(250, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/saudade/front.svg",
  15844. extra: 1172 / 1139,
  15845. bottom: 0.035
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Micro",
  15852. height: math.unit(3, "inches")
  15853. },
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(6, "feet"),
  15857. default: true
  15858. },
  15859. {
  15860. name: "Macro",
  15861. height: math.unit(50, "feet")
  15862. },
  15863. {
  15864. name: "Megamacro",
  15865. height: math.unit(2800, "feet")
  15866. },
  15867. ]
  15868. ))
  15869. characterMakers.push(() => makeCharacter(
  15870. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15871. {
  15872. front: {
  15873. height: math.unit(5 + 4 / 12, "feet"),
  15874. weight: math.unit(100, "lb"),
  15875. name: "Front",
  15876. image: {
  15877. source: "./media/characters/keireer/front.svg",
  15878. extra: 716 / 666,
  15879. bottom: 0.05
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Normal",
  15886. height: math.unit(5 + 4 / 12, "feet"),
  15887. default: true
  15888. },
  15889. ]
  15890. ))
  15891. characterMakers.push(() => makeCharacter(
  15892. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15893. {
  15894. front: {
  15895. height: math.unit(5.5, "feet"),
  15896. weight: math.unit(90, "kg"),
  15897. name: "Front",
  15898. image: {
  15899. source: "./media/characters/mirja/front.svg",
  15900. extra: 1452/1262,
  15901. bottom: 67/1519
  15902. }
  15903. },
  15904. frontDressed: {
  15905. height: math.unit(5.5, "feet"),
  15906. weight: math.unit(90, "lb"),
  15907. name: "Front (Dressed)",
  15908. image: {
  15909. source: "./media/characters/mirja/dressed.svg",
  15910. extra: 1452/1262,
  15911. bottom: 67/1519
  15912. }
  15913. },
  15914. back: {
  15915. height: math.unit(6, "feet"),
  15916. weight: math.unit(90, "lb"),
  15917. name: "Back",
  15918. image: {
  15919. source: "./media/characters/mirja/back.svg",
  15920. extra: 1892/1795,
  15921. bottom: 48/1940
  15922. }
  15923. },
  15924. maw: {
  15925. height: math.unit(1.312, "feet"),
  15926. name: "Maw",
  15927. image: {
  15928. source: "./media/characters/mirja/maw.svg"
  15929. }
  15930. },
  15931. paw: {
  15932. height: math.unit(1.15, "feet"),
  15933. name: "Paw",
  15934. image: {
  15935. source: "./media/characters/mirja/paw.svg"
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "\"Incognito\"",
  15942. height: math.unit(3, "meters")
  15943. },
  15944. {
  15945. name: "Strolling Size",
  15946. height: math.unit(15, "km")
  15947. },
  15948. {
  15949. name: "Larger Strolling Size",
  15950. height: math.unit(400, "km")
  15951. },
  15952. {
  15953. name: "Preferred Size",
  15954. height: math.unit(5000, "km"),
  15955. default: true
  15956. },
  15957. {
  15958. name: "True Size",
  15959. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(15, "feet"),
  15968. weight: math.unit(880, "kg"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/nightraver/front.svg",
  15972. extra: 2444 / 2160,
  15973. bottom: 0.027
  15974. }
  15975. },
  15976. back: {
  15977. height: math.unit(15, "feet"),
  15978. weight: math.unit(880, "kg"),
  15979. name: "Back",
  15980. image: {
  15981. source: "./media/characters/nightraver/back.svg",
  15982. extra: 2309 / 2180,
  15983. bottom: 0.005
  15984. }
  15985. },
  15986. sole: {
  15987. height: math.unit(2.878, "feet"),
  15988. name: "Sole",
  15989. image: {
  15990. source: "./media/characters/nightraver/sole.svg"
  15991. }
  15992. },
  15993. foot: {
  15994. height: math.unit(2.285, "feet"),
  15995. name: "Foot",
  15996. image: {
  15997. source: "./media/characters/nightraver/foot.svg"
  15998. }
  15999. },
  16000. maw: {
  16001. height: math.unit(2.67, "feet"),
  16002. name: "Maw",
  16003. image: {
  16004. source: "./media/characters/nightraver/maw.svg"
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Micro",
  16011. height: math.unit(1, "cm")
  16012. },
  16013. {
  16014. name: "Normal",
  16015. height: math.unit(15, "feet"),
  16016. default: true
  16017. },
  16018. {
  16019. name: "Macro",
  16020. height: math.unit(300, "feet")
  16021. },
  16022. {
  16023. name: "Megamacro",
  16024. height: math.unit(300, "miles")
  16025. },
  16026. {
  16027. name: "Gigamacro",
  16028. height: math.unit(10000, "miles")
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16034. {
  16035. side: {
  16036. height: math.unit(2, "inches"),
  16037. weight: math.unit(5, "grams"),
  16038. name: "Side",
  16039. image: {
  16040. source: "./media/characters/arc/side.svg"
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Micro",
  16047. height: math.unit(2, "inches"),
  16048. default: true
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16054. {
  16055. front: {
  16056. height: math.unit(1.1938, "meters"),
  16057. weight: math.unit(54, "kg"),
  16058. name: "Front",
  16059. image: {
  16060. source: "./media/characters/nebula-shahar/front.svg",
  16061. extra: 1642 / 1436,
  16062. bottom: 0.06
  16063. }
  16064. },
  16065. },
  16066. [
  16067. {
  16068. name: "Megamicro",
  16069. height: math.unit(0.3, "mm")
  16070. },
  16071. {
  16072. name: "Micro",
  16073. height: math.unit(3, "cm")
  16074. },
  16075. {
  16076. name: "Normal",
  16077. height: math.unit(138, "cm"),
  16078. default: true
  16079. },
  16080. {
  16081. name: "Macro",
  16082. height: math.unit(30, "m")
  16083. },
  16084. ]
  16085. ))
  16086. characterMakers.push(() => makeCharacter(
  16087. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16088. {
  16089. front: {
  16090. height: math.unit(5.24, "feet"),
  16091. weight: math.unit(150, "lb"),
  16092. name: "Front",
  16093. image: {
  16094. source: "./media/characters/shayla/front.svg",
  16095. extra: 1512 / 1414,
  16096. bottom: 0.01
  16097. }
  16098. },
  16099. back: {
  16100. height: math.unit(5.24, "feet"),
  16101. weight: math.unit(150, "lb"),
  16102. name: "Back",
  16103. image: {
  16104. source: "./media/characters/shayla/back.svg",
  16105. extra: 1512 / 1414
  16106. }
  16107. },
  16108. hand: {
  16109. height: math.unit(0.7781496062992126, "feet"),
  16110. name: "Hand",
  16111. image: {
  16112. source: "./media/characters/shayla/hand.svg"
  16113. }
  16114. },
  16115. foot: {
  16116. height: math.unit(1.4206036745406823, "feet"),
  16117. name: "Foot",
  16118. image: {
  16119. source: "./media/characters/shayla/foot.svg"
  16120. }
  16121. },
  16122. },
  16123. [
  16124. {
  16125. name: "Micro",
  16126. height: math.unit(0.32, "feet")
  16127. },
  16128. {
  16129. name: "Normal",
  16130. height: math.unit(5.24, "feet"),
  16131. default: true
  16132. },
  16133. {
  16134. name: "Macro",
  16135. height: math.unit(492.12, "feet")
  16136. },
  16137. {
  16138. name: "Megamacro",
  16139. height: math.unit(186.41, "miles")
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16145. {
  16146. front: {
  16147. height: math.unit(2.2, "m"),
  16148. weight: math.unit(120, "kg"),
  16149. name: "Front",
  16150. image: {
  16151. source: "./media/characters/pia-jr/front.svg",
  16152. extra: 1000 / 970,
  16153. bottom: 0.035
  16154. }
  16155. },
  16156. hand: {
  16157. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16158. name: "Hand",
  16159. image: {
  16160. source: "./media/characters/pia-jr/hand.svg"
  16161. }
  16162. },
  16163. paw: {
  16164. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16165. name: "Paw",
  16166. image: {
  16167. source: "./media/characters/pia-jr/paw.svg"
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Micro",
  16174. height: math.unit(1.2, "cm")
  16175. },
  16176. {
  16177. name: "Normal",
  16178. height: math.unit(2.2, "m"),
  16179. default: true
  16180. },
  16181. {
  16182. name: "Macro",
  16183. height: math.unit(180, "m")
  16184. },
  16185. {
  16186. name: "Megamacro",
  16187. height: math.unit(420, "km")
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16193. {
  16194. front: {
  16195. height: math.unit(2, "m"),
  16196. weight: math.unit(115, "kg"),
  16197. name: "Front",
  16198. image: {
  16199. source: "./media/characters/pia-sr/front.svg",
  16200. extra: 760 / 730,
  16201. bottom: 0.015
  16202. }
  16203. },
  16204. back: {
  16205. height: math.unit(2, "m"),
  16206. weight: math.unit(115, "kg"),
  16207. name: "Back",
  16208. image: {
  16209. source: "./media/characters/pia-sr/back.svg",
  16210. extra: 760 / 730,
  16211. bottom: 0.01
  16212. }
  16213. },
  16214. hand: {
  16215. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16216. name: "Hand",
  16217. image: {
  16218. source: "./media/characters/pia-sr/hand.svg"
  16219. }
  16220. },
  16221. foot: {
  16222. height: math.unit(1.83, "feet"),
  16223. name: "Foot",
  16224. image: {
  16225. source: "./media/characters/pia-sr/foot.svg"
  16226. }
  16227. },
  16228. },
  16229. [
  16230. {
  16231. name: "Micro",
  16232. height: math.unit(88, "mm")
  16233. },
  16234. {
  16235. name: "Normal",
  16236. height: math.unit(2, "m"),
  16237. default: true
  16238. },
  16239. {
  16240. name: "Macro",
  16241. height: math.unit(200, "m")
  16242. },
  16243. {
  16244. name: "Megamacro",
  16245. height: math.unit(420, "km")
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16251. {
  16252. front: {
  16253. height: math.unit(8 + 2 / 12, "feet"),
  16254. weight: math.unit(300, "lb"),
  16255. name: "Front",
  16256. image: {
  16257. source: "./media/characters/kibibyte/front.svg",
  16258. extra: 2221 / 2098,
  16259. bottom: 0.04
  16260. }
  16261. },
  16262. },
  16263. [
  16264. {
  16265. name: "Normal",
  16266. height: math.unit(8 + 2 / 12, "feet"),
  16267. default: true
  16268. },
  16269. {
  16270. name: "Socialable Macro",
  16271. height: math.unit(50, "feet")
  16272. },
  16273. {
  16274. name: "Macro",
  16275. height: math.unit(300, "feet")
  16276. },
  16277. {
  16278. name: "Megamacro",
  16279. height: math.unit(500, "miles")
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16285. {
  16286. front: {
  16287. height: math.unit(6, "feet"),
  16288. weight: math.unit(150, "lb"),
  16289. name: "Front",
  16290. image: {
  16291. source: "./media/characters/felix/front.svg",
  16292. extra: 762 / 722,
  16293. bottom: 0.02
  16294. }
  16295. },
  16296. frontClothed: {
  16297. height: math.unit(6, "feet"),
  16298. weight: math.unit(150, "lb"),
  16299. name: "Front (Clothed)",
  16300. image: {
  16301. source: "./media/characters/felix/front-clothed.svg",
  16302. extra: 762 / 722,
  16303. bottom: 0.02
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(6 + 8 / 12, "feet"),
  16311. default: true
  16312. },
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(2600, "feet")
  16316. },
  16317. {
  16318. name: "Megamacro",
  16319. height: math.unit(450, "miles")
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16325. {
  16326. front: {
  16327. height: math.unit(6 + 1 / 12, "feet"),
  16328. weight: math.unit(250, "lb"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/tobo/front.svg",
  16332. extra: 608 / 586,
  16333. bottom: 0.023
  16334. }
  16335. },
  16336. back: {
  16337. height: math.unit(6 + 1 / 12, "feet"),
  16338. weight: math.unit(250, "lb"),
  16339. name: "Back",
  16340. image: {
  16341. source: "./media/characters/tobo/back.svg",
  16342. extra: 608 / 586
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Nano",
  16349. height: math.unit(2, "nm")
  16350. },
  16351. {
  16352. name: "Megamicro",
  16353. height: math.unit(0.1, "mm")
  16354. },
  16355. {
  16356. name: "Micro",
  16357. height: math.unit(1, "inch"),
  16358. default: true
  16359. },
  16360. {
  16361. name: "Human-sized",
  16362. height: math.unit(6 + 1 / 12, "feet")
  16363. },
  16364. {
  16365. name: "Macro",
  16366. height: math.unit(250, "feet")
  16367. },
  16368. {
  16369. name: "Megamacro",
  16370. height: math.unit(75, "miles")
  16371. },
  16372. {
  16373. name: "Texas-sized",
  16374. height: math.unit(750, "miles")
  16375. },
  16376. {
  16377. name: "Teramacro",
  16378. height: math.unit(50000, "miles")
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(6, "feet"),
  16387. weight: math.unit(269, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/danny-kapowsky/front.svg",
  16391. extra: 766 / 736,
  16392. bottom: 0.044
  16393. }
  16394. },
  16395. back: {
  16396. height: math.unit(6, "feet"),
  16397. weight: math.unit(269, "lb"),
  16398. name: "Back",
  16399. image: {
  16400. source: "./media/characters/danny-kapowsky/back.svg",
  16401. extra: 797 / 760,
  16402. bottom: 0.025
  16403. }
  16404. },
  16405. },
  16406. [
  16407. {
  16408. name: "Macro",
  16409. height: math.unit(150, "feet"),
  16410. default: true
  16411. },
  16412. {
  16413. name: "Macro+",
  16414. height: math.unit(200, "feet")
  16415. },
  16416. {
  16417. name: "Macro++",
  16418. height: math.unit(300, "feet")
  16419. },
  16420. {
  16421. name: "Macro+++",
  16422. height: math.unit(400, "feet")
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16428. {
  16429. side: {
  16430. height: math.unit(6, "feet"),
  16431. weight: math.unit(170, "lb"),
  16432. name: "Side",
  16433. image: {
  16434. source: "./media/characters/finn/side.svg",
  16435. extra: 1953 / 1807,
  16436. bottom: 0.057
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Megamacro",
  16443. height: math.unit(14445, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(5 + 6 / 12, "feet"),
  16453. weight: math.unit(125, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/roy/front.svg",
  16457. extra: 1,
  16458. bottom: 0.11
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Micro",
  16465. height: math.unit(3, "inches"),
  16466. default: true
  16467. },
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(5 + 6 / 12, "feet")
  16471. },
  16472. {
  16473. name: "Lesser Macro",
  16474. height: math.unit(60, "feet")
  16475. },
  16476. {
  16477. name: "Greater Macro",
  16478. height: math.unit(120, "feet")
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(6, "feet"),
  16487. weight: math.unit(100, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/aevsivs/front.svg",
  16491. extra: 1,
  16492. bottom: 0.03
  16493. }
  16494. },
  16495. back: {
  16496. height: math.unit(6, "feet"),
  16497. weight: math.unit(100, "lb"),
  16498. name: "Back",
  16499. image: {
  16500. source: "./media/characters/aevsivs/back.svg"
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Micro",
  16507. height: math.unit(2, "inches"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Normal",
  16512. height: math.unit(5, "feet")
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16518. {
  16519. front: {
  16520. height: math.unit(5 + 7 / 12, "feet"),
  16521. weight: math.unit(159, "lb"),
  16522. name: "Front",
  16523. image: {
  16524. source: "./media/characters/hildegard/front.svg",
  16525. extra: 289 / 269,
  16526. bottom: 7.63 / 297.8
  16527. }
  16528. },
  16529. back: {
  16530. height: math.unit(5 + 7 / 12, "feet"),
  16531. weight: math.unit(159, "lb"),
  16532. name: "Back",
  16533. image: {
  16534. source: "./media/characters/hildegard/back.svg",
  16535. extra: 280 / 260,
  16536. bottom: 2.3 / 282
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(5 + 7 / 12, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16550. {
  16551. bernard: {
  16552. height: math.unit(2 + 7 / 12, "feet"),
  16553. weight: math.unit(66, "lb"),
  16554. name: "Bernard",
  16555. rename: true,
  16556. image: {
  16557. source: "./media/characters/bernard-wilder/bernard.svg",
  16558. extra: 192 / 128,
  16559. bottom: 0.05
  16560. }
  16561. },
  16562. wilder: {
  16563. height: math.unit(5 + 8 / 12, "feet"),
  16564. weight: math.unit(143, "lb"),
  16565. name: "Wilder",
  16566. rename: true,
  16567. image: {
  16568. source: "./media/characters/bernard-wilder/wilder.svg",
  16569. extra: 361 / 312,
  16570. bottom: 0.02
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(2 + 7 / 12, "feet"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16584. {
  16585. anthro: {
  16586. height: math.unit(6 + 1 / 12, "feet"),
  16587. weight: math.unit(155, "lb"),
  16588. name: "Anthro",
  16589. image: {
  16590. source: "./media/characters/hearth/anthro.svg",
  16591. extra: 1178/1136,
  16592. bottom: 28/1206
  16593. }
  16594. },
  16595. feral: {
  16596. height: math.unit(3.78, "feet"),
  16597. weight: math.unit(35, "kg"),
  16598. name: "Feral",
  16599. image: {
  16600. source: "./media/characters/hearth/feral.svg",
  16601. extra: 153 / 135,
  16602. bottom: 0.03
  16603. }
  16604. },
  16605. },
  16606. [
  16607. {
  16608. name: "Normal",
  16609. height: math.unit(6 + 1 / 12, "feet"),
  16610. default: true
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16616. {
  16617. front: {
  16618. height: math.unit(6, "feet"),
  16619. weight: math.unit(182, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/ingrid/front.svg",
  16623. extra: 294 / 268,
  16624. bottom: 0.027
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(6, "feet"),
  16632. default: true
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16638. {
  16639. eevee: {
  16640. height: math.unit(2 + 10 / 12, "feet"),
  16641. weight: math.unit(86, "lb"),
  16642. name: "Malgam",
  16643. image: {
  16644. source: "./media/characters/malgam/eevee.svg",
  16645. extra: 952/784,
  16646. bottom: 38/990
  16647. }
  16648. },
  16649. sylveon: {
  16650. height: math.unit(4, "feet"),
  16651. weight: math.unit(101, "lb"),
  16652. name: "Future Malgam",
  16653. rename: true,
  16654. image: {
  16655. source: "./media/characters/malgam/sylveon.svg",
  16656. extra: 371 / 325,
  16657. bottom: 0.015
  16658. }
  16659. },
  16660. gigantamax: {
  16661. height: math.unit(50, "feet"),
  16662. name: "Gigantamax Malgam",
  16663. rename: true,
  16664. image: {
  16665. source: "./media/characters/malgam/gigantamax.svg"
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Normal",
  16672. height: math.unit(2 + 10 / 12, "feet"),
  16673. default: true
  16674. },
  16675. ]
  16676. ))
  16677. characterMakers.push(() => makeCharacter(
  16678. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16679. {
  16680. front: {
  16681. height: math.unit(5 + 11 / 12, "feet"),
  16682. weight: math.unit(188, "lb"),
  16683. name: "Front",
  16684. image: {
  16685. source: "./media/characters/fleur/front.svg",
  16686. extra: 309 / 283,
  16687. bottom: 0.007
  16688. }
  16689. },
  16690. },
  16691. [
  16692. {
  16693. name: "Normal",
  16694. height: math.unit(5 + 11 / 12, "feet"),
  16695. default: true
  16696. },
  16697. ]
  16698. ))
  16699. characterMakers.push(() => makeCharacter(
  16700. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16701. {
  16702. front: {
  16703. height: math.unit(5 + 4 / 12, "feet"),
  16704. weight: math.unit(122, "lb"),
  16705. name: "Front",
  16706. image: {
  16707. source: "./media/characters/jude/front.svg",
  16708. extra: 288 / 273,
  16709. bottom: 0.03
  16710. }
  16711. },
  16712. },
  16713. [
  16714. {
  16715. name: "Normal",
  16716. height: math.unit(5 + 4 / 12, "feet"),
  16717. default: true
  16718. },
  16719. ]
  16720. ))
  16721. characterMakers.push(() => makeCharacter(
  16722. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16723. {
  16724. front: {
  16725. height: math.unit(5 + 11 / 12, "feet"),
  16726. weight: math.unit(190, "lb"),
  16727. name: "Front",
  16728. image: {
  16729. source: "./media/characters/seara/front.svg",
  16730. extra: 1,
  16731. bottom: 0.05
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Normal",
  16738. height: math.unit(5 + 11 / 12, "feet"),
  16739. default: true
  16740. },
  16741. ]
  16742. ))
  16743. characterMakers.push(() => makeCharacter(
  16744. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16745. {
  16746. front: {
  16747. height: math.unit(16 + 5 / 12, "feet"),
  16748. weight: math.unit(524, "lb"),
  16749. name: "Front",
  16750. image: {
  16751. source: "./media/characters/caspian-lugia/front.svg",
  16752. extra: 1,
  16753. bottom: 0.04
  16754. }
  16755. },
  16756. },
  16757. [
  16758. {
  16759. name: "Normal",
  16760. height: math.unit(16 + 5 / 12, "feet"),
  16761. default: true
  16762. },
  16763. ]
  16764. ))
  16765. characterMakers.push(() => makeCharacter(
  16766. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16767. {
  16768. front: {
  16769. height: math.unit(5 + 7 / 12, "feet"),
  16770. weight: math.unit(170, "lb"),
  16771. name: "Front",
  16772. image: {
  16773. source: "./media/characters/mika/front.svg",
  16774. extra: 1,
  16775. bottom: 0.016
  16776. }
  16777. },
  16778. },
  16779. [
  16780. {
  16781. name: "Normal",
  16782. height: math.unit(5 + 7 / 12, "feet"),
  16783. default: true
  16784. },
  16785. ]
  16786. ))
  16787. characterMakers.push(() => makeCharacter(
  16788. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16789. {
  16790. front: {
  16791. height: math.unit(6 + 2 / 12, "feet"),
  16792. weight: math.unit(268, "lb"),
  16793. name: "Front",
  16794. image: {
  16795. source: "./media/characters/sol/front.svg",
  16796. extra: 247 / 231,
  16797. bottom: 0.05
  16798. }
  16799. },
  16800. },
  16801. [
  16802. {
  16803. name: "Normal",
  16804. height: math.unit(6 + 2 / 12, "feet"),
  16805. default: true
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16811. {
  16812. buizel: {
  16813. height: math.unit(2 + 5 / 12, "feet"),
  16814. weight: math.unit(87, "lb"),
  16815. name: "Front",
  16816. image: {
  16817. source: "./media/characters/umiko/buizel.svg",
  16818. extra: 172 / 157,
  16819. bottom: 0.01
  16820. },
  16821. form: "buizel",
  16822. default: true
  16823. },
  16824. floatzel: {
  16825. height: math.unit(5 + 9 / 12, "feet"),
  16826. weight: math.unit(250, "lb"),
  16827. name: "Front",
  16828. image: {
  16829. source: "./media/characters/umiko/floatzel.svg",
  16830. extra: 1076/1006,
  16831. bottom: 15/1091
  16832. },
  16833. form: "floatzel",
  16834. default: true
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(2 + 5 / 12, "feet"),
  16841. form: "buizel",
  16842. default: true
  16843. },
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(5 + 9 / 12, "feet"),
  16847. form: "floatzel",
  16848. default: true
  16849. },
  16850. ],
  16851. {
  16852. "buizel": {
  16853. name: "Buizel"
  16854. },
  16855. "floatzel": {
  16856. name: "Floatzel",
  16857. default: true
  16858. }
  16859. }
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(6 + 2 / 12, "feet"),
  16866. weight: math.unit(146, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/iliac/front.svg",
  16870. extra: 389 / 365,
  16871. bottom: 0.035
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Normal",
  16878. height: math.unit(6 + 2 / 12, "feet"),
  16879. default: true
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16885. {
  16886. front: {
  16887. height: math.unit(6, "feet"),
  16888. weight: math.unit(170, "lb"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/topaz/front.svg",
  16892. extra: 317 / 303,
  16893. bottom: 0.055
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(6, "feet"),
  16901. default: true
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16907. {
  16908. front: {
  16909. height: math.unit(5 + 11 / 12, "feet"),
  16910. weight: math.unit(144, "lb"),
  16911. name: "Front",
  16912. image: {
  16913. source: "./media/characters/gabriel/front.svg",
  16914. extra: 285 / 262,
  16915. bottom: 0.004
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Normal",
  16922. height: math.unit(5 + 11 / 12, "feet"),
  16923. default: true
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16929. {
  16930. side: {
  16931. height: math.unit(6 + 5 / 12, "feet"),
  16932. weight: math.unit(300, "lb"),
  16933. name: "Side",
  16934. image: {
  16935. source: "./media/characters/tempest-suicune/side.svg",
  16936. extra: 195 / 154,
  16937. bottom: 0.04
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(6 + 5 / 12, "feet"),
  16945. default: true
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(7 + 2 / 12, "feet"),
  16954. weight: math.unit(322, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/vulcan/front.svg",
  16958. extra: 154 / 147,
  16959. bottom: 0.04
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(7 + 2 / 12, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(5 + 10 / 12, "feet"),
  16976. weight: math.unit(264, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/gault/front.svg",
  16980. extra: 161 / 140,
  16981. bottom: 0.028
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(5 + 10 / 12, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(6, "feet"),
  16998. weight: math.unit(150, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/shard/front.svg",
  17002. extra: 273 / 238,
  17003. bottom: 0.02
  17004. }
  17005. },
  17006. },
  17007. [
  17008. {
  17009. name: "Normal",
  17010. height: math.unit(3 + 6 / 12, "feet"),
  17011. default: true
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17017. {
  17018. front: {
  17019. height: math.unit(5 + 11 / 12, "feet"),
  17020. weight: math.unit(146, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/ashe/front.svg",
  17024. extra: 400 / 373,
  17025. bottom: 0.01
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Normal",
  17032. height: math.unit(5 + 11 / 12, "feet"),
  17033. default: true
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17039. {
  17040. front: {
  17041. height: math.unit(5 + 5 / 12, "feet"),
  17042. weight: math.unit(135, "lb"),
  17043. name: "Front",
  17044. image: {
  17045. source: "./media/characters/beatrix/front.svg",
  17046. extra: 392 / 379,
  17047. bottom: 0.01
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Normal",
  17054. height: math.unit(6, "feet"),
  17055. default: true
  17056. },
  17057. ]
  17058. ))
  17059. characterMakers.push(() => makeCharacter(
  17060. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17061. {
  17062. front: {
  17063. height: math.unit(6 + 2/12, "feet"),
  17064. weight: math.unit(135, "lb"),
  17065. name: "Front",
  17066. image: {
  17067. source: "./media/characters/ignatius/front.svg",
  17068. extra: 1380/1259,
  17069. bottom: 27/1407
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Normal",
  17076. height: math.unit(6 + 2/12, "feet"),
  17077. default: true
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17083. {
  17084. front: {
  17085. height: math.unit(6 + 2 / 12, "feet"),
  17086. weight: math.unit(138, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/mei-li/front.svg",
  17090. extra: 237 / 229,
  17091. bottom: 0.03
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(6 + 2 / 12, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(2 + 4 / 12, "feet"),
  17108. weight: math.unit(62, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/puru/front.svg",
  17112. extra: 206 / 149,
  17113. bottom: 0.06
  17114. }
  17115. },
  17116. },
  17117. [
  17118. {
  17119. name: "Normal",
  17120. height: math.unit(2 + 4 / 12, "feet"),
  17121. default: true
  17122. },
  17123. ]
  17124. ))
  17125. characterMakers.push(() => makeCharacter(
  17126. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17127. {
  17128. anthro: {
  17129. height: math.unit(5 + 8/12, "feet"),
  17130. weight: math.unit(200, "lb"),
  17131. energyNeed: math.unit(2000, "kcal"),
  17132. name: "Anthro",
  17133. image: {
  17134. source: "./media/characters/kee/anthro.svg",
  17135. extra: 3251/3184,
  17136. bottom: 250/3501
  17137. }
  17138. },
  17139. taur: {
  17140. height: math.unit(11, "feet"),
  17141. weight: math.unit(500, "lb"),
  17142. energyNeed: math.unit(5000, "kcal"),
  17143. name: "Taur",
  17144. image: {
  17145. source: "./media/characters/kee/taur.svg",
  17146. extra: 1362/1320,
  17147. bottom: 83/1445
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(5 + 8/12, "feet"),
  17155. default: true
  17156. },
  17157. {
  17158. name: "Macro",
  17159. height: math.unit(35, "feet")
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17165. {
  17166. anthro: {
  17167. height: math.unit(7, "feet"),
  17168. weight: math.unit(190, "lb"),
  17169. name: "Anthro",
  17170. image: {
  17171. source: "./media/characters/cobalt-dracha/anthro.svg",
  17172. extra: 231 / 225,
  17173. bottom: 0.04
  17174. }
  17175. },
  17176. feral: {
  17177. height: math.unit(9 + 7 / 12, "feet"),
  17178. weight: math.unit(294, "lb"),
  17179. name: "Feral",
  17180. image: {
  17181. source: "./media/characters/cobalt-dracha/feral.svg",
  17182. extra: 692 / 633,
  17183. bottom: 0.05
  17184. }
  17185. },
  17186. },
  17187. [
  17188. {
  17189. name: "Normal",
  17190. height: math.unit(7, "feet"),
  17191. default: true
  17192. },
  17193. ]
  17194. ))
  17195. characterMakers.push(() => makeCharacter(
  17196. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17197. {
  17198. fallen: {
  17199. height: math.unit(11 + 8 / 12, "feet"),
  17200. weight: math.unit(485, "lb"),
  17201. name: "Java (Fallen)",
  17202. rename: true,
  17203. image: {
  17204. source: "./media/characters/java/fallen.svg",
  17205. extra: 226 / 208,
  17206. bottom: 0.005
  17207. }
  17208. },
  17209. godkin: {
  17210. height: math.unit(10 + 6 / 12, "feet"),
  17211. weight: math.unit(328, "lb"),
  17212. name: "Java (Godkin)",
  17213. rename: true,
  17214. image: {
  17215. source: "./media/characters/java/godkin.svg",
  17216. extra: 1104/1068,
  17217. bottom: 36/1140
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(11 + 8 / 12, "feet"),
  17225. default: true
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(5 + 9 / 12, "feet"),
  17234. weight: math.unit(170, "lb"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/purna/front.svg",
  17238. extra: 239 / 229,
  17239. bottom: 0.01
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(5 + 9 / 12, "feet"),
  17247. default: true
  17248. },
  17249. ]
  17250. ))
  17251. characterMakers.push(() => makeCharacter(
  17252. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17253. {
  17254. front: {
  17255. height: math.unit(5 + 9 / 12, "feet"),
  17256. weight: math.unit(142, "lb"),
  17257. name: "Front",
  17258. image: {
  17259. source: "./media/characters/kuva/front.svg",
  17260. extra: 281 / 271,
  17261. bottom: 0.006
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(5 + 9 / 12, "feet"),
  17269. default: true
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17275. {
  17276. anthro: {
  17277. height: math.unit(9 + 2 / 12, "feet"),
  17278. weight: math.unit(270, "lb"),
  17279. name: "Anthro",
  17280. image: {
  17281. source: "./media/characters/embra/anthro.svg",
  17282. extra: 200 / 187,
  17283. bottom: 0.02
  17284. }
  17285. },
  17286. feral: {
  17287. height: math.unit(18 + 8 / 12, "feet"),
  17288. weight: math.unit(576, "lb"),
  17289. name: "Feral",
  17290. image: {
  17291. source: "./media/characters/embra/feral.svg",
  17292. extra: 152 / 137,
  17293. bottom: 0.037
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(9 + 2 / 12, "feet"),
  17301. default: true
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17307. {
  17308. anthro: {
  17309. height: math.unit(10 + 9 / 12, "feet"),
  17310. weight: math.unit(224, "lb"),
  17311. name: "Anthro",
  17312. image: {
  17313. source: "./media/characters/grottos/anthro.svg",
  17314. extra: 350 / 332,
  17315. bottom: 0.045
  17316. }
  17317. },
  17318. feral: {
  17319. height: math.unit(20 + 7 / 12, "feet"),
  17320. weight: math.unit(629, "lb"),
  17321. name: "Feral",
  17322. image: {
  17323. source: "./media/characters/grottos/feral.svg",
  17324. extra: 207 / 190,
  17325. bottom: 0.05
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(10 + 9 / 12, "feet"),
  17333. default: true
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17339. {
  17340. anthro: {
  17341. height: math.unit(9 + 6 / 12, "feet"),
  17342. weight: math.unit(298, "lb"),
  17343. name: "Anthro",
  17344. image: {
  17345. source: "./media/characters/frifna/anthro.svg",
  17346. extra: 282 / 269,
  17347. bottom: 0.015
  17348. }
  17349. },
  17350. feral: {
  17351. height: math.unit(16 + 2 / 12, "feet"),
  17352. weight: math.unit(624, "lb"),
  17353. name: "Feral",
  17354. image: {
  17355. source: "./media/characters/frifna/feral.svg"
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(9 + 6 / 12, "feet"),
  17363. default: true
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(6 + 2 / 12, "feet"),
  17372. weight: math.unit(168, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/elise/front.svg",
  17376. extra: 276 / 271
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(6 + 2 / 12, "feet"),
  17384. default: true
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17390. {
  17391. front: {
  17392. height: math.unit(5 + 10 / 12, "feet"),
  17393. weight: math.unit(210, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/glade/front.svg",
  17397. extra: 258 / 247,
  17398. bottom: 0.008
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(5 + 10 / 12, "feet"),
  17406. default: true
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17412. {
  17413. front: {
  17414. height: math.unit(5 + 10 / 12, "feet"),
  17415. weight: math.unit(129, "lb"),
  17416. name: "Front",
  17417. image: {
  17418. source: "./media/characters/rina/front.svg",
  17419. extra: 266 / 255,
  17420. bottom: 0.005
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(5 + 10 / 12, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(6 + 1 / 12, "feet"),
  17437. weight: math.unit(192, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/veronica/front.svg",
  17441. extra: 319 / 309,
  17442. bottom: 0.005
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(6 + 1 / 12, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17456. {
  17457. front: {
  17458. height: math.unit(9 + 3 / 12, "feet"),
  17459. weight: math.unit(1100, "lb"),
  17460. name: "Front",
  17461. image: {
  17462. source: "./media/characters/braxton/front.svg",
  17463. extra: 1057 / 984,
  17464. bottom: 0.05
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(9 + 3 / 12, "feet")
  17472. },
  17473. {
  17474. name: "Giant",
  17475. height: math.unit(300, "feet"),
  17476. default: true
  17477. },
  17478. {
  17479. name: "Macro",
  17480. height: math.unit(700, "feet")
  17481. },
  17482. {
  17483. name: "Megamacro",
  17484. height: math.unit(6000, "feet")
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17490. {
  17491. front: {
  17492. height: math.unit(6 + 7 / 12, "feet"),
  17493. weight: math.unit(150, "lb"),
  17494. name: "Front",
  17495. image: {
  17496. source: "./media/characters/blue-feyonics/front.svg",
  17497. extra: 1403 / 1306,
  17498. bottom: 0.047
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(6 + 7 / 12, "feet"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(1.8, "meters"),
  17515. weight: math.unit(60, "kg"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/maxwell/front.svg",
  17519. extra: 2060 / 1873
  17520. }
  17521. },
  17522. },
  17523. [
  17524. {
  17525. name: "Micro",
  17526. height: math.unit(1, "mm")
  17527. },
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(1.8, "meter"),
  17531. default: true
  17532. },
  17533. {
  17534. name: "Macro",
  17535. height: math.unit(30, "meters")
  17536. },
  17537. {
  17538. name: "Megamacro",
  17539. height: math.unit(10, "km")
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17545. {
  17546. front: {
  17547. height: math.unit(6, "feet"),
  17548. weight: math.unit(150, "lb"),
  17549. name: "Front",
  17550. image: {
  17551. source: "./media/characters/jack/front.svg",
  17552. extra: 1754 / 1640,
  17553. bottom: 0.01
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(80000, "feet"),
  17561. default: true
  17562. },
  17563. {
  17564. name: "Max size",
  17565. height: math.unit(10, "lightyears")
  17566. },
  17567. ]
  17568. ))
  17569. characterMakers.push(() => makeCharacter(
  17570. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17571. {
  17572. urban: {
  17573. height: math.unit(5, "feet"),
  17574. weight: math.unit(240, "lb"),
  17575. name: "Urban",
  17576. image: {
  17577. source: "./media/characters/cafat/urban.svg",
  17578. extra: 1223/1126,
  17579. bottom: 205/1428
  17580. }
  17581. },
  17582. summer: {
  17583. height: math.unit(5, "feet"),
  17584. weight: math.unit(240, "lb"),
  17585. name: "Summer",
  17586. image: {
  17587. source: "./media/characters/cafat/summer.svg",
  17588. extra: 1223/1126,
  17589. bottom: 205/1428
  17590. }
  17591. },
  17592. winter: {
  17593. height: math.unit(5, "feet"),
  17594. weight: math.unit(240, "lb"),
  17595. name: "Winter",
  17596. image: {
  17597. source: "./media/characters/cafat/winter.svg",
  17598. extra: 1223/1126,
  17599. bottom: 205/1428
  17600. }
  17601. },
  17602. lingerie: {
  17603. height: math.unit(5, "feet"),
  17604. weight: math.unit(240, "lb"),
  17605. name: "Lingerie",
  17606. image: {
  17607. source: "./media/characters/cafat/lingerie.svg",
  17608. extra: 1223/1126,
  17609. bottom: 205/1428
  17610. }
  17611. },
  17612. upright: {
  17613. height: math.unit(6.3, "feet"),
  17614. weight: math.unit(240, "lb"),
  17615. name: "Upright",
  17616. image: {
  17617. source: "./media/characters/cafat/upright.svg",
  17618. bottom: 0.01
  17619. }
  17620. },
  17621. uprightFull: {
  17622. height: math.unit(6.3, "feet"),
  17623. weight: math.unit(240, "lb"),
  17624. name: "Upright (Full)",
  17625. image: {
  17626. source: "./media/characters/cafat/upright-full.svg",
  17627. bottom: 0.01
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Small",
  17634. height: math.unit(5, "feet"),
  17635. default: true
  17636. },
  17637. {
  17638. name: "Large",
  17639. height: math.unit(13, "feet")
  17640. },
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17645. {
  17646. front: {
  17647. height: math.unit(6, "feet"),
  17648. weight: math.unit(150, "lb"),
  17649. name: "Front",
  17650. image: {
  17651. source: "./media/characters/verin-raharra/front.svg",
  17652. extra: 5019 / 4835,
  17653. bottom: 0.023
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(7 + 5 / 12, "feet"),
  17661. default: true
  17662. },
  17663. {
  17664. name: "Upsized",
  17665. height: math.unit(20, "feet")
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17671. {
  17672. front: {
  17673. height: math.unit(7, "feet"),
  17674. weight: math.unit(230, "lb"),
  17675. name: "Front",
  17676. image: {
  17677. source: "./media/characters/nakata/front.svg",
  17678. extra: 1.005,
  17679. bottom: 0.01
  17680. }
  17681. },
  17682. },
  17683. [
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(7, "feet"),
  17687. default: true
  17688. },
  17689. {
  17690. name: "Big",
  17691. height: math.unit(14, "feet")
  17692. },
  17693. {
  17694. name: "Macro",
  17695. height: math.unit(400, "feet")
  17696. },
  17697. ]
  17698. ))
  17699. characterMakers.push(() => makeCharacter(
  17700. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17701. {
  17702. front: {
  17703. height: math.unit(4.91, "feet"),
  17704. weight: math.unit(100, "lb"),
  17705. name: "Front",
  17706. image: {
  17707. source: "./media/characters/lily/front.svg",
  17708. extra: 1585 / 1415,
  17709. bottom: 0.02
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(4.91, "feet"),
  17717. default: true
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17723. {
  17724. laying: {
  17725. height: math.unit(4 + 4 / 12, "feet"),
  17726. weight: math.unit(600, "lb"),
  17727. name: "Laying",
  17728. image: {
  17729. source: "./media/characters/sheila/laying.svg",
  17730. extra: 1333 / 1265,
  17731. bottom: 0.16
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(4 + 4 / 12, "feet"),
  17739. default: true
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(6, "feet"),
  17748. weight: math.unit(190, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/sax/front.svg",
  17752. extra: 1187 / 973,
  17753. bottom: 0.042
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Micro",
  17760. height: math.unit(4, "inches"),
  17761. default: true
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17767. {
  17768. front: {
  17769. height: math.unit(6, "feet"),
  17770. weight: math.unit(150, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/pandora/front.svg",
  17774. extra: 2720 / 2556,
  17775. bottom: 0.015
  17776. }
  17777. },
  17778. back: {
  17779. height: math.unit(6, "feet"),
  17780. weight: math.unit(150, "lb"),
  17781. name: "Back",
  17782. image: {
  17783. source: "./media/characters/pandora/back.svg",
  17784. extra: 2720 / 2556,
  17785. bottom: 0.01
  17786. }
  17787. },
  17788. beans: {
  17789. height: math.unit(6 / 8, "feet"),
  17790. name: "Beans",
  17791. image: {
  17792. source: "./media/characters/pandora/beans.svg"
  17793. }
  17794. },
  17795. collar: {
  17796. height: math.unit(0.31, "feet"),
  17797. name: "Collar",
  17798. image: {
  17799. source: "./media/characters/pandora/collar.svg"
  17800. }
  17801. },
  17802. skirt: {
  17803. height: math.unit(6, "feet"),
  17804. weight: math.unit(150, "lb"),
  17805. name: "Skirt",
  17806. image: {
  17807. source: "./media/characters/pandora/skirt.svg",
  17808. extra: 1622 / 1525,
  17809. bottom: 0.015
  17810. }
  17811. },
  17812. hoodie: {
  17813. height: math.unit(6, "feet"),
  17814. weight: math.unit(150, "lb"),
  17815. name: "Hoodie",
  17816. image: {
  17817. source: "./media/characters/pandora/hoodie.svg",
  17818. extra: 1622 / 1525,
  17819. bottom: 0.015
  17820. }
  17821. },
  17822. casual: {
  17823. height: math.unit(6, "feet"),
  17824. weight: math.unit(150, "lb"),
  17825. name: "Casual",
  17826. image: {
  17827. source: "./media/characters/pandora/casual.svg",
  17828. extra: 1622 / 1525,
  17829. bottom: 0.015
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Normal",
  17836. height: math.unit(6, "feet")
  17837. },
  17838. {
  17839. name: "Big Steppy",
  17840. height: math.unit(1, "km"),
  17841. default: true
  17842. },
  17843. {
  17844. name: "Galactic Steppy",
  17845. height: math.unit(2, "gigameters")
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17851. {
  17852. side: {
  17853. height: math.unit(10, "feet"),
  17854. weight: math.unit(800, "kg"),
  17855. name: "Side",
  17856. image: {
  17857. source: "./media/characters/venio-darcony/side.svg",
  17858. extra: 1373 / 1003,
  17859. bottom: 0.037
  17860. }
  17861. },
  17862. front: {
  17863. height: math.unit(19, "feet"),
  17864. weight: math.unit(800, "kg"),
  17865. name: "Front",
  17866. image: {
  17867. source: "./media/characters/venio-darcony/front.svg"
  17868. }
  17869. },
  17870. back: {
  17871. height: math.unit(19, "feet"),
  17872. weight: math.unit(800, "kg"),
  17873. name: "Back",
  17874. image: {
  17875. source: "./media/characters/venio-darcony/back.svg"
  17876. }
  17877. },
  17878. sideNsfw: {
  17879. height: math.unit(10, "feet"),
  17880. weight: math.unit(800, "kg"),
  17881. name: "Side (NSFW)",
  17882. image: {
  17883. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17884. extra: 1373 / 1003,
  17885. bottom: 0.037
  17886. }
  17887. },
  17888. frontNsfw: {
  17889. height: math.unit(19, "feet"),
  17890. weight: math.unit(800, "kg"),
  17891. name: "Front (NSFW)",
  17892. image: {
  17893. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17894. }
  17895. },
  17896. backNsfw: {
  17897. height: math.unit(19, "feet"),
  17898. weight: math.unit(800, "kg"),
  17899. name: "Back (NSFW)",
  17900. image: {
  17901. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17902. }
  17903. },
  17904. sideArmored: {
  17905. height: math.unit(10, "feet"),
  17906. weight: math.unit(800, "kg"),
  17907. name: "Side (Armored)",
  17908. image: {
  17909. source: "./media/characters/venio-darcony/side-armored.svg",
  17910. extra: 1373 / 1003,
  17911. bottom: 0.037
  17912. }
  17913. },
  17914. frontArmored: {
  17915. height: math.unit(19, "feet"),
  17916. weight: math.unit(900, "kg"),
  17917. name: "Front (Armored)",
  17918. image: {
  17919. source: "./media/characters/venio-darcony/front-armored.svg"
  17920. }
  17921. },
  17922. backArmored: {
  17923. height: math.unit(19, "feet"),
  17924. weight: math.unit(900, "kg"),
  17925. name: "Back (Armored)",
  17926. image: {
  17927. source: "./media/characters/venio-darcony/back-armored.svg"
  17928. }
  17929. },
  17930. sword: {
  17931. height: math.unit(10, "feet"),
  17932. weight: math.unit(50, "lb"),
  17933. name: "Sword",
  17934. image: {
  17935. source: "./media/characters/venio-darcony/sword.svg"
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(10, "feet")
  17943. },
  17944. {
  17945. name: "Macro",
  17946. height: math.unit(130, "feet"),
  17947. default: true
  17948. },
  17949. {
  17950. name: "Macro+",
  17951. height: math.unit(240, "feet")
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17957. {
  17958. front: {
  17959. height: math.unit(6, "feet"),
  17960. weight: math.unit(150, "lb"),
  17961. name: "Front",
  17962. image: {
  17963. source: "./media/characters/veski/front.svg",
  17964. extra: 1299 / 1225,
  17965. bottom: 0.04
  17966. }
  17967. },
  17968. back: {
  17969. height: math.unit(6, "feet"),
  17970. weight: math.unit(150, "lb"),
  17971. name: "Back",
  17972. image: {
  17973. source: "./media/characters/veski/back.svg",
  17974. extra: 1299 / 1225,
  17975. bottom: 0.008
  17976. }
  17977. },
  17978. maw: {
  17979. height: math.unit(1.5 * 1.21, "feet"),
  17980. name: "Maw",
  17981. image: {
  17982. source: "./media/characters/veski/maw.svg"
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Macro",
  17989. height: math.unit(2, "km"),
  17990. default: true
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17996. {
  17997. front: {
  17998. height: math.unit(5 + 7 / 12, "feet"),
  17999. name: "Front",
  18000. image: {
  18001. source: "./media/characters/isabelle/front.svg",
  18002. extra: 2130 / 1976,
  18003. bottom: 0.05
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Supermicro",
  18010. height: math.unit(10, "micrometers")
  18011. },
  18012. {
  18013. name: "Micro",
  18014. height: math.unit(1, "inch")
  18015. },
  18016. {
  18017. name: "Tiny",
  18018. height: math.unit(5, "inches")
  18019. },
  18020. {
  18021. name: "Standard",
  18022. height: math.unit(5 + 7 / 12, "inches")
  18023. },
  18024. {
  18025. name: "Macro",
  18026. height: math.unit(80, "meters"),
  18027. default: true
  18028. },
  18029. {
  18030. name: "Megamacro",
  18031. height: math.unit(250, "meters")
  18032. },
  18033. {
  18034. name: "Gigamacro",
  18035. height: math.unit(5, "km")
  18036. },
  18037. {
  18038. name: "Cosmic",
  18039. height: math.unit(2.5e6, "miles")
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(6, "feet"),
  18048. weight: math.unit(150, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/hanzo/front.svg",
  18052. extra: 374 / 344,
  18053. bottom: 0.02
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(8, "feet"),
  18061. default: true
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18067. {
  18068. front: {
  18069. height: math.unit(7, "feet"),
  18070. weight: math.unit(130, "lb"),
  18071. name: "Front",
  18072. image: {
  18073. source: "./media/characters/anna/front.svg",
  18074. extra: 169 / 145,
  18075. bottom: 0.06
  18076. }
  18077. },
  18078. full: {
  18079. height: math.unit(4.96, "feet"),
  18080. weight: math.unit(220, "lb"),
  18081. name: "Full",
  18082. image: {
  18083. source: "./media/characters/anna/full.svg",
  18084. extra: 138 / 114,
  18085. bottom: 0.15
  18086. }
  18087. },
  18088. tongue: {
  18089. height: math.unit(2.53, "feet"),
  18090. name: "Tongue",
  18091. image: {
  18092. source: "./media/characters/anna/tongue.svg"
  18093. }
  18094. },
  18095. },
  18096. [
  18097. {
  18098. name: "Normal",
  18099. height: math.unit(7, "feet"),
  18100. default: true
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18106. {
  18107. front: {
  18108. height: math.unit(7, "feet"),
  18109. weight: math.unit(150, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/ian-corvid/front.svg",
  18113. extra: 150 / 142,
  18114. bottom: 0.02
  18115. }
  18116. },
  18117. back: {
  18118. height: math.unit(7, "feet"),
  18119. weight: math.unit(150, "lb"),
  18120. name: "Back",
  18121. image: {
  18122. source: "./media/characters/ian-corvid/back.svg",
  18123. extra: 150 / 143,
  18124. bottom: 0.01
  18125. }
  18126. },
  18127. stomping: {
  18128. height: math.unit(7, "feet"),
  18129. weight: math.unit(150, "lb"),
  18130. name: "Stomping",
  18131. image: {
  18132. source: "./media/characters/ian-corvid/stomping.svg",
  18133. extra: 76 / 72
  18134. }
  18135. },
  18136. sitting: {
  18137. height: math.unit(7 / 1.8, "feet"),
  18138. weight: math.unit(150, "lb"),
  18139. name: "Sitting",
  18140. image: {
  18141. source: "./media/characters/ian-corvid/sitting.svg",
  18142. extra: 1400 / 1269,
  18143. bottom: 0.15
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Tiny Microw",
  18150. height: math.unit(1, "inch")
  18151. },
  18152. {
  18153. name: "Microw",
  18154. height: math.unit(6, "inches")
  18155. },
  18156. {
  18157. name: "Crow",
  18158. height: math.unit(7 + 1 / 12, "feet"),
  18159. default: true
  18160. },
  18161. {
  18162. name: "Macrow",
  18163. height: math.unit(176, "feet")
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18169. {
  18170. front: {
  18171. height: math.unit(5 + 7 / 12, "feet"),
  18172. weight: math.unit(147, "lb"),
  18173. name: "Front",
  18174. image: {
  18175. source: "./media/characters/natalie-kellon/front.svg",
  18176. extra: 1214 / 1141,
  18177. bottom: 0.02
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Micro",
  18184. height: math.unit(1 / 16, "inch")
  18185. },
  18186. {
  18187. name: "Tiny",
  18188. height: math.unit(4, "inches")
  18189. },
  18190. {
  18191. name: "Normal",
  18192. height: math.unit(5 + 7 / 12, "feet"),
  18193. default: true
  18194. },
  18195. {
  18196. name: "Amazon",
  18197. height: math.unit(12, "feet")
  18198. },
  18199. {
  18200. name: "Giantess",
  18201. height: math.unit(160, "meters")
  18202. },
  18203. {
  18204. name: "Titaness",
  18205. height: math.unit(800, "meters")
  18206. },
  18207. ]
  18208. ))
  18209. characterMakers.push(() => makeCharacter(
  18210. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18211. {
  18212. front: {
  18213. height: math.unit(6, "feet"),
  18214. weight: math.unit(150, "lb"),
  18215. name: "Front",
  18216. image: {
  18217. source: "./media/characters/alluria/front.svg",
  18218. extra: 806 / 738,
  18219. bottom: 0.01
  18220. }
  18221. },
  18222. side: {
  18223. height: math.unit(6, "feet"),
  18224. weight: math.unit(150, "lb"),
  18225. name: "Side",
  18226. image: {
  18227. source: "./media/characters/alluria/side.svg",
  18228. extra: 800 / 750,
  18229. }
  18230. },
  18231. back: {
  18232. height: math.unit(6, "feet"),
  18233. weight: math.unit(150, "lb"),
  18234. name: "Back",
  18235. image: {
  18236. source: "./media/characters/alluria/back.svg",
  18237. extra: 806 / 738,
  18238. }
  18239. },
  18240. frontMaid: {
  18241. height: math.unit(6, "feet"),
  18242. weight: math.unit(150, "lb"),
  18243. name: "Front (Maid)",
  18244. image: {
  18245. source: "./media/characters/alluria/front-maid.svg",
  18246. extra: 806 / 738,
  18247. bottom: 0.01
  18248. }
  18249. },
  18250. sideMaid: {
  18251. height: math.unit(6, "feet"),
  18252. weight: math.unit(150, "lb"),
  18253. name: "Side (Maid)",
  18254. image: {
  18255. source: "./media/characters/alluria/side-maid.svg",
  18256. extra: 800 / 750,
  18257. bottom: 0.005
  18258. }
  18259. },
  18260. backMaid: {
  18261. height: math.unit(6, "feet"),
  18262. weight: math.unit(150, "lb"),
  18263. name: "Back (Maid)",
  18264. image: {
  18265. source: "./media/characters/alluria/back-maid.svg",
  18266. extra: 806 / 738,
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Micro",
  18273. height: math.unit(6, "inches"),
  18274. default: true
  18275. },
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18280. {
  18281. front: {
  18282. height: math.unit(6, "feet"),
  18283. weight: math.unit(150, "lb"),
  18284. name: "Front",
  18285. image: {
  18286. source: "./media/characters/kyle/front.svg",
  18287. extra: 1069 / 962,
  18288. bottom: 77.228 / 1727.45
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Macro",
  18295. height: math.unit(150, "feet"),
  18296. default: true
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(6, "feet"),
  18305. weight: math.unit(300, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/duncan/front.svg",
  18309. extra: 1650 / 1482,
  18310. bottom: 0.05
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Macro",
  18317. height: math.unit(100, "feet"),
  18318. default: true
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18324. {
  18325. front: {
  18326. height: math.unit(5 + 4 / 12, "feet"),
  18327. weight: math.unit(220, "lb"),
  18328. name: "Front",
  18329. image: {
  18330. source: "./media/characters/memory/front.svg",
  18331. extra: 3641 / 3545,
  18332. bottom: 0.03
  18333. }
  18334. },
  18335. back: {
  18336. height: math.unit(5 + 4 / 12, "feet"),
  18337. weight: math.unit(220, "lb"),
  18338. name: "Back",
  18339. image: {
  18340. source: "./media/characters/memory/back.svg",
  18341. extra: 3641 / 3545,
  18342. bottom: 0.025
  18343. }
  18344. },
  18345. frontSkirt: {
  18346. height: math.unit(5 + 4 / 12, "feet"),
  18347. weight: math.unit(220, "lb"),
  18348. name: "Front (Skirt)",
  18349. image: {
  18350. source: "./media/characters/memory/front-skirt.svg",
  18351. extra: 3641 / 3545,
  18352. bottom: 0.03
  18353. }
  18354. },
  18355. frontDress: {
  18356. height: math.unit(5 + 4 / 12, "feet"),
  18357. weight: math.unit(220, "lb"),
  18358. name: "Front (Dress)",
  18359. image: {
  18360. source: "./media/characters/memory/front-dress.svg",
  18361. extra: 3641 / 3545,
  18362. bottom: 0.03
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Micro",
  18369. height: math.unit(6, "inches"),
  18370. default: true
  18371. },
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(5 + 4 / 12, "feet")
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18380. {
  18381. front: {
  18382. height: math.unit(4 + 11 / 12, "feet"),
  18383. weight: math.unit(100, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/luno/front.svg",
  18387. extra: 1535 / 1487,
  18388. bottom: 0.03
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Micro",
  18395. height: math.unit(3, "inches")
  18396. },
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(4 + 11 / 12, "feet"),
  18400. default: true
  18401. },
  18402. {
  18403. name: "Macro",
  18404. height: math.unit(300, "feet")
  18405. },
  18406. {
  18407. name: "Megamacro",
  18408. height: math.unit(700, "miles")
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18414. {
  18415. front: {
  18416. height: math.unit(6 + 2 / 12, "feet"),
  18417. weight: math.unit(170, "lb"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/jamesy/front.svg",
  18421. extra: 440 / 382,
  18422. bottom: 0.005
  18423. }
  18424. },
  18425. },
  18426. [
  18427. {
  18428. name: "Micro",
  18429. height: math.unit(3, "inches")
  18430. },
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(6 + 2 / 12, "feet"),
  18434. default: true
  18435. },
  18436. {
  18437. name: "Macro",
  18438. height: math.unit(300, "feet")
  18439. },
  18440. {
  18441. name: "Megamacro",
  18442. height: math.unit(700, "miles")
  18443. },
  18444. ]
  18445. ))
  18446. characterMakers.push(() => makeCharacter(
  18447. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18448. {
  18449. front: {
  18450. height: math.unit(6, "feet"),
  18451. weight: math.unit(160, "lb"),
  18452. name: "Front",
  18453. image: {
  18454. source: "./media/characters/mark/front.svg",
  18455. extra: 3300 / 3100,
  18456. bottom: 136.42 / 3440.47
  18457. }
  18458. },
  18459. },
  18460. [
  18461. {
  18462. name: "Macro",
  18463. height: math.unit(120, "meters")
  18464. },
  18465. {
  18466. name: "Bigger Macro",
  18467. height: math.unit(350, "meters")
  18468. },
  18469. {
  18470. name: "Megamacro",
  18471. height: math.unit(8, "km"),
  18472. default: true
  18473. },
  18474. {
  18475. name: "Continental",
  18476. height: math.unit(4550, "km")
  18477. },
  18478. {
  18479. name: "Planetary",
  18480. height: math.unit(65000, "km")
  18481. },
  18482. ]
  18483. ))
  18484. characterMakers.push(() => makeCharacter(
  18485. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18486. {
  18487. front: {
  18488. height: math.unit(6, "feet"),
  18489. weight: math.unit(400, "lb"),
  18490. name: "Front",
  18491. image: {
  18492. source: "./media/characters/mac/front.svg",
  18493. extra: 1048 / 987.7,
  18494. bottom: 60 / 1107.6,
  18495. }
  18496. },
  18497. },
  18498. [
  18499. {
  18500. name: "Macro",
  18501. height: math.unit(500, "feet"),
  18502. default: true
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18508. {
  18509. front: {
  18510. height: math.unit(5 + 2 / 12, "feet"),
  18511. weight: math.unit(190, "lb"),
  18512. name: "Front",
  18513. image: {
  18514. source: "./media/characters/bari/front.svg",
  18515. extra: 3156 / 2880,
  18516. bottom: 0.03
  18517. }
  18518. },
  18519. back: {
  18520. height: math.unit(5 + 2 / 12, "feet"),
  18521. weight: math.unit(190, "lb"),
  18522. name: "Back",
  18523. image: {
  18524. source: "./media/characters/bari/back.svg",
  18525. extra: 3260 / 2834,
  18526. bottom: 0.025
  18527. }
  18528. },
  18529. frontPlush: {
  18530. height: math.unit(5 + 2 / 12, "feet"),
  18531. weight: math.unit(190, "lb"),
  18532. name: "Front (Plush)",
  18533. image: {
  18534. source: "./media/characters/bari/front-plush.svg",
  18535. extra: 1112 / 1061,
  18536. bottom: 0.002
  18537. }
  18538. },
  18539. },
  18540. [
  18541. {
  18542. name: "Micro",
  18543. height: math.unit(3, "inches")
  18544. },
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(5 + 2 / 12, "feet"),
  18548. default: true
  18549. },
  18550. {
  18551. name: "Macro",
  18552. height: math.unit(20, "feet")
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18558. {
  18559. front: {
  18560. height: math.unit(6 + 1 / 12, "feet"),
  18561. weight: math.unit(275, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/hunter-misha-raven/front.svg"
  18565. }
  18566. },
  18567. },
  18568. [
  18569. {
  18570. name: "Mortal",
  18571. height: math.unit(6 + 1 / 12, "feet")
  18572. },
  18573. {
  18574. name: "Divine",
  18575. height: math.unit(1.12134e34, "parsecs"),
  18576. default: true
  18577. },
  18578. ]
  18579. ))
  18580. characterMakers.push(() => makeCharacter(
  18581. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18582. {
  18583. front: {
  18584. height: math.unit(6 + 3 / 12, "feet"),
  18585. weight: math.unit(220, "lb"),
  18586. name: "Front",
  18587. image: {
  18588. source: "./media/characters/max-calore/front.svg",
  18589. extra: 1700 / 1648,
  18590. bottom: 0.01
  18591. }
  18592. },
  18593. back: {
  18594. height: math.unit(6 + 3 / 12, "feet"),
  18595. weight: math.unit(220, "lb"),
  18596. name: "Back",
  18597. image: {
  18598. source: "./media/characters/max-calore/back.svg",
  18599. extra: 1700 / 1648,
  18600. bottom: 0.01
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Normal",
  18607. height: math.unit(6 + 3 / 12, "feet"),
  18608. default: true
  18609. },
  18610. ]
  18611. ))
  18612. characterMakers.push(() => makeCharacter(
  18613. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18614. {
  18615. side: {
  18616. height: math.unit(2 + 8 / 12, "feet"),
  18617. weight: math.unit(99, "lb"),
  18618. name: "Side",
  18619. image: {
  18620. source: "./media/characters/aspen/side.svg",
  18621. extra: 152 / 138,
  18622. bottom: 0.032
  18623. }
  18624. },
  18625. },
  18626. [
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(2 + 8 / 12, "feet"),
  18630. default: true
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18636. {
  18637. side: {
  18638. height: math.unit(3 + 2 / 12, "feet"),
  18639. weight: math.unit(224, "lb"),
  18640. name: "Side",
  18641. image: {
  18642. source: "./media/characters/sheila-feral-wolf/side.svg",
  18643. extra: 179 / 166,
  18644. bottom: 0.03
  18645. }
  18646. },
  18647. },
  18648. [
  18649. {
  18650. name: "Normal",
  18651. height: math.unit(3 + 2 / 12, "feet"),
  18652. default: true
  18653. },
  18654. ]
  18655. ))
  18656. characterMakers.push(() => makeCharacter(
  18657. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18658. {
  18659. side: {
  18660. height: math.unit(1 + 9 / 12, "feet"),
  18661. weight: math.unit(38, "lb"),
  18662. name: "Side",
  18663. image: {
  18664. source: "./media/characters/michelle/side.svg",
  18665. extra: 147 / 136.7,
  18666. bottom: 0.03
  18667. }
  18668. },
  18669. },
  18670. [
  18671. {
  18672. name: "Normal",
  18673. height: math.unit(1 + 9 / 12, "feet"),
  18674. default: true
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18680. {
  18681. front: {
  18682. height: math.unit(1.54, "feet"),
  18683. weight: math.unit(50, "lb"),
  18684. name: "Front",
  18685. image: {
  18686. source: "./media/characters/nino/front.svg"
  18687. }
  18688. },
  18689. },
  18690. [
  18691. {
  18692. name: "Normal",
  18693. height: math.unit(1.54, "feet"),
  18694. default: true
  18695. },
  18696. ]
  18697. ))
  18698. characterMakers.push(() => makeCharacter(
  18699. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18700. {
  18701. front: {
  18702. height: math.unit(1.49, "feet"),
  18703. weight: math.unit(45, "lb"),
  18704. name: "Front",
  18705. image: {
  18706. source: "./media/characters/viola/front.svg"
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(1.49, "feet"),
  18714. default: true
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(6 + 5 / 12, "feet"),
  18723. weight: math.unit(580, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/atlas/front.svg",
  18727. extra: 298.5 / 290,
  18728. bottom: 0.015
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(6 + 5 / 12, "feet"),
  18736. default: true
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18742. {
  18743. side: {
  18744. height: math.unit(15.6, "inches"),
  18745. weight: math.unit(10, "lb"),
  18746. name: "Side",
  18747. image: {
  18748. source: "./media/characters/davy/side.svg",
  18749. extra: 200 / 170,
  18750. bottom: 0.01
  18751. }
  18752. },
  18753. },
  18754. [
  18755. {
  18756. name: "Normal",
  18757. height: math.unit(15.6, "inches"),
  18758. default: true
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18764. {
  18765. side: {
  18766. height: math.unit(4 + 8 / 12, "feet"),
  18767. weight: math.unit(166, "lb"),
  18768. name: "Side",
  18769. image: {
  18770. source: "./media/characters/fiona/side.svg",
  18771. extra: 232 / 220,
  18772. bottom: 0.03
  18773. }
  18774. },
  18775. },
  18776. [
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(4 + 8 / 12, "feet"),
  18780. default: true
  18781. },
  18782. ]
  18783. ))
  18784. characterMakers.push(() => makeCharacter(
  18785. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18786. {
  18787. front: {
  18788. height: math.unit(26, "inches"),
  18789. weight: math.unit(35, "lb"),
  18790. name: "Front",
  18791. image: {
  18792. source: "./media/characters/lyla/front.svg",
  18793. bottom: 0.1
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(3, "feet"),
  18801. default: true
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18807. {
  18808. side: {
  18809. height: math.unit(1.8, "feet"),
  18810. weight: math.unit(44, "lb"),
  18811. name: "Side",
  18812. image: {
  18813. source: "./media/characters/perseus/side.svg",
  18814. bottom: 0.21
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(1.8, "feet"),
  18822. default: true
  18823. },
  18824. ]
  18825. ))
  18826. characterMakers.push(() => makeCharacter(
  18827. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18828. {
  18829. side: {
  18830. height: math.unit(4 + 2 / 12, "feet"),
  18831. weight: math.unit(20, "lb"),
  18832. name: "Side",
  18833. image: {
  18834. source: "./media/characters/remus/side.svg"
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(4 + 2 / 12, "feet"),
  18842. default: true
  18843. },
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18848. {
  18849. front: {
  18850. height: math.unit(4 + 11 / 12, "feet"),
  18851. weight: math.unit(114, "lb"),
  18852. name: "Front",
  18853. image: {
  18854. source: "./media/characters/raf/front.svg",
  18855. extra: 1504/1339,
  18856. bottom: 26/1530
  18857. }
  18858. },
  18859. side: {
  18860. height: math.unit(4 + 11 / 12, "feet"),
  18861. weight: math.unit(114, "lb"),
  18862. name: "Side",
  18863. image: {
  18864. source: "./media/characters/raf/side.svg",
  18865. extra: 1466/1316,
  18866. bottom: 29/1495
  18867. }
  18868. },
  18869. paw: {
  18870. height: math.unit(1.45, "feet"),
  18871. name: "Paw",
  18872. image: {
  18873. source: "./media/characters/raf/paw.svg"
  18874. },
  18875. extraAttributes: {
  18876. "toeSize": {
  18877. name: "Toe Size",
  18878. power: 2,
  18879. type: "area",
  18880. base: math.unit(0.004, "m^2")
  18881. },
  18882. "padSize": {
  18883. name: "Pad Size",
  18884. power: 2,
  18885. type: "area",
  18886. base: math.unit(0.04, "m^2")
  18887. },
  18888. "footSize": {
  18889. name: "Foot Size",
  18890. power: 2,
  18891. type: "area",
  18892. base: math.unit(0.08, "m^2")
  18893. },
  18894. }
  18895. },
  18896. },
  18897. [
  18898. {
  18899. name: "Micro",
  18900. height: math.unit(2, "inches")
  18901. },
  18902. {
  18903. name: "Normal",
  18904. height: math.unit(4 + 11 / 12, "feet"),
  18905. default: true
  18906. },
  18907. {
  18908. name: "Macro",
  18909. height: math.unit(70, "feet")
  18910. },
  18911. ]
  18912. ))
  18913. characterMakers.push(() => makeCharacter(
  18914. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18915. {
  18916. front: {
  18917. height: math.unit(1.5, "meters"),
  18918. weight: math.unit(68, "kg"),
  18919. name: "Front",
  18920. image: {
  18921. source: "./media/characters/liam-einarr/front.svg",
  18922. extra: 2822 / 2666
  18923. }
  18924. },
  18925. back: {
  18926. height: math.unit(1.5, "meters"),
  18927. weight: math.unit(68, "kg"),
  18928. name: "Back",
  18929. image: {
  18930. source: "./media/characters/liam-einarr/back.svg",
  18931. extra: 2822 / 2666,
  18932. bottom: 0.015
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(1.5, "meters"),
  18940. default: true
  18941. },
  18942. {
  18943. name: "Macro",
  18944. height: math.unit(150, "meters")
  18945. },
  18946. {
  18947. name: "Megamacro",
  18948. height: math.unit(35, "km")
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18954. {
  18955. front: {
  18956. height: math.unit(6, "feet"),
  18957. weight: math.unit(75, "kg"),
  18958. name: "Front",
  18959. image: {
  18960. source: "./media/characters/linda/front.svg",
  18961. extra: 930 / 874,
  18962. bottom: 0.004
  18963. }
  18964. },
  18965. },
  18966. [
  18967. {
  18968. name: "Normal",
  18969. height: math.unit(6, "feet"),
  18970. default: true
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(6 + 8 / 12, "feet"),
  18979. weight: math.unit(220, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/caylex/front.svg",
  18983. extra: 821 / 772,
  18984. bottom: 0.07
  18985. }
  18986. },
  18987. back: {
  18988. height: math.unit(6 + 8 / 12, "feet"),
  18989. weight: math.unit(220, "lb"),
  18990. name: "Back",
  18991. image: {
  18992. source: "./media/characters/caylex/back.svg",
  18993. extra: 821 / 772,
  18994. bottom: 0.022
  18995. }
  18996. },
  18997. hand: {
  18998. height: math.unit(1.25, "feet"),
  18999. name: "Hand",
  19000. image: {
  19001. source: "./media/characters/caylex/hand.svg"
  19002. }
  19003. },
  19004. foot: {
  19005. height: math.unit(1.6, "feet"),
  19006. name: "Foot",
  19007. image: {
  19008. source: "./media/characters/caylex/foot.svg"
  19009. }
  19010. },
  19011. armored: {
  19012. height: math.unit(6 + 8 / 12, "feet"),
  19013. weight: math.unit(250, "lb"),
  19014. name: "Armored",
  19015. image: {
  19016. source: "./media/characters/caylex/armored.svg",
  19017. extra: 1420 / 1310,
  19018. bottom: 0.045
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(6 + 8 / 12, "feet"),
  19026. default: true
  19027. },
  19028. {
  19029. name: "Normal+",
  19030. height: math.unit(12, "feet")
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19036. {
  19037. front: {
  19038. height: math.unit(7 + 6 / 12, "feet"),
  19039. weight: math.unit(288, "lb"),
  19040. name: "Front",
  19041. image: {
  19042. source: "./media/characters/alana/front.svg",
  19043. extra: 679 / 653,
  19044. bottom: 22.5 / 701
  19045. }
  19046. },
  19047. },
  19048. [
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(7 + 6 / 12, "feet")
  19052. },
  19053. {
  19054. name: "Large",
  19055. height: math.unit(50, "feet")
  19056. },
  19057. {
  19058. name: "Macro",
  19059. height: math.unit(100, "feet"),
  19060. default: true
  19061. },
  19062. {
  19063. name: "Macro+",
  19064. height: math.unit(200, "feet")
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19070. {
  19071. front: {
  19072. height: math.unit(6 + 1 / 12, "feet"),
  19073. weight: math.unit(210, "lb"),
  19074. name: "Front",
  19075. image: {
  19076. source: "./media/characters/hasani/front.svg",
  19077. extra: 244 / 232,
  19078. bottom: 0.01
  19079. }
  19080. },
  19081. back: {
  19082. height: math.unit(6 + 1 / 12, "feet"),
  19083. weight: math.unit(210, "lb"),
  19084. name: "Back",
  19085. image: {
  19086. source: "./media/characters/hasani/back.svg",
  19087. extra: 244 / 232,
  19088. bottom: 0.01
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(6 + 1 / 12, "feet")
  19096. },
  19097. {
  19098. name: "Macro",
  19099. height: math.unit(175, "feet"),
  19100. default: true
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(1.82, "meters"),
  19109. weight: math.unit(140, "lb"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/nita/front.svg",
  19113. extra: 2473 / 2363,
  19114. bottom: 0.01
  19115. }
  19116. },
  19117. },
  19118. [
  19119. {
  19120. name: "Normal",
  19121. height: math.unit(1.82, "m")
  19122. },
  19123. {
  19124. name: "Macro",
  19125. height: math.unit(300, "m")
  19126. },
  19127. {
  19128. name: "Mistake Canon",
  19129. height: math.unit(0.5, "miles"),
  19130. default: true
  19131. },
  19132. {
  19133. name: "Big Mistake",
  19134. height: math.unit(13, "miles")
  19135. },
  19136. {
  19137. name: "Playing God",
  19138. height: math.unit(2450, "miles")
  19139. },
  19140. ]
  19141. ))
  19142. characterMakers.push(() => makeCharacter(
  19143. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19144. {
  19145. front: {
  19146. height: math.unit(4, "feet"),
  19147. weight: math.unit(120, "lb"),
  19148. name: "Front",
  19149. image: {
  19150. source: "./media/characters/shiriko/front.svg",
  19151. extra: 970/934,
  19152. bottom: 5/975
  19153. }
  19154. },
  19155. },
  19156. [
  19157. {
  19158. name: "Normal",
  19159. height: math.unit(4, "feet"),
  19160. default: true
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19166. {
  19167. front: {
  19168. height: math.unit(6, "feet"),
  19169. name: "front",
  19170. image: {
  19171. source: "./media/characters/deja/front.svg",
  19172. extra: 926 / 840,
  19173. bottom: 0.07
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Planck Length",
  19180. height: math.unit(1.6e-35, "meters")
  19181. },
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(30.48, "meters"),
  19185. default: true
  19186. },
  19187. {
  19188. name: "Universal",
  19189. height: math.unit(8.8e26, "meters")
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19195. {
  19196. side: {
  19197. height: math.unit(8, "feet"),
  19198. weight: math.unit(6300, "lb"),
  19199. name: "Side",
  19200. image: {
  19201. source: "./media/characters/anima/side.svg",
  19202. bottom: 0.035
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(8, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(8, "feet"),
  19219. weight: math.unit(350, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/bianca/front.svg",
  19223. extra: 234 / 225,
  19224. bottom: 0.03
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(8, "feet"),
  19232. default: true
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19238. {
  19239. front: {
  19240. height: math.unit(11 + 5/12, "feet"),
  19241. weight: math.unit(1200, "lb"),
  19242. name: "Front",
  19243. image: {
  19244. source: "./media/characters/adinia/front.svg",
  19245. extra: 1767/1641,
  19246. bottom: 44/1811
  19247. },
  19248. extraAttributes: {
  19249. "energyIntake": {
  19250. name: "Energy Intake",
  19251. power: 3,
  19252. type: "energy",
  19253. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19254. },
  19255. }
  19256. },
  19257. back: {
  19258. height: math.unit(11 + 5/12, "feet"),
  19259. weight: math.unit(1200, "lb"),
  19260. name: "Back",
  19261. image: {
  19262. source: "./media/characters/adinia/back.svg",
  19263. extra: 1834/1684,
  19264. bottom: 14/1848
  19265. },
  19266. extraAttributes: {
  19267. "energyIntake": {
  19268. name: "Energy Intake",
  19269. power: 3,
  19270. type: "energy",
  19271. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19272. },
  19273. }
  19274. },
  19275. maw: {
  19276. height: math.unit(3.79, "feet"),
  19277. name: "Maw",
  19278. image: {
  19279. source: "./media/characters/adinia/maw.svg"
  19280. }
  19281. },
  19282. rump: {
  19283. height: math.unit(4.6, "feet"),
  19284. name: "Rump",
  19285. image: {
  19286. source: "./media/characters/adinia/rump.svg"
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(11 + 5 / 12, "feet"),
  19294. default: true
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19300. {
  19301. front: {
  19302. height: math.unit(3, "meters"),
  19303. weight: math.unit(200, "kg"),
  19304. name: "Front",
  19305. image: {
  19306. source: "./media/characters/lykasa/front.svg",
  19307. extra: 1076 / 976,
  19308. bottom: 0.06
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(3, "meters")
  19316. },
  19317. {
  19318. name: "Kaiju",
  19319. height: math.unit(120, "meters"),
  19320. default: true
  19321. },
  19322. {
  19323. name: "Mega Kaiju",
  19324. height: math.unit(240, "km")
  19325. },
  19326. {
  19327. name: "Giga Kaiju",
  19328. height: math.unit(400, "megameters")
  19329. },
  19330. {
  19331. name: "Tera Kaiju",
  19332. height: math.unit(800, "gigameters")
  19333. },
  19334. {
  19335. name: "Kaiju Dragon Goddess",
  19336. height: math.unit(26, "zettaparsecs")
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19342. {
  19343. side: {
  19344. height: math.unit(283 / 124 * 6, "feet"),
  19345. weight: math.unit(35000, "lb"),
  19346. name: "Side",
  19347. image: {
  19348. source: "./media/characters/malfaren/side.svg",
  19349. extra: 1310/529,
  19350. bottom: 24/1334
  19351. }
  19352. },
  19353. front: {
  19354. height: math.unit(22.36, "feet"),
  19355. weight: math.unit(35000, "lb"),
  19356. name: "Front",
  19357. image: {
  19358. source: "./media/characters/malfaren/front.svg",
  19359. extra: 1237/1115,
  19360. bottom: 32/1269
  19361. }
  19362. },
  19363. maw: {
  19364. height: math.unit(6.9, "feet"),
  19365. name: "Maw",
  19366. image: {
  19367. source: "./media/characters/malfaren/maw.svg"
  19368. }
  19369. },
  19370. dick: {
  19371. height: math.unit(6.19, "feet"),
  19372. name: "Dick",
  19373. image: {
  19374. source: "./media/characters/malfaren/dick.svg"
  19375. }
  19376. },
  19377. eye: {
  19378. height: math.unit(0.69, "feet"),
  19379. name: "Eye",
  19380. image: {
  19381. source: "./media/characters/malfaren/eye.svg"
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Big",
  19388. height: math.unit(283 / 162 * 6, "feet"),
  19389. },
  19390. {
  19391. name: "Bigger",
  19392. height: math.unit(283 / 124 * 6, "feet")
  19393. },
  19394. {
  19395. name: "Massive",
  19396. height: math.unit(283 / 92 * 6, "feet"),
  19397. default: true
  19398. },
  19399. {
  19400. name: "👀💦",
  19401. height: math.unit(283 / 73 * 6, "feet"),
  19402. },
  19403. ]
  19404. ))
  19405. characterMakers.push(() => makeCharacter(
  19406. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19407. {
  19408. front: {
  19409. height: math.unit(1.7, "m"),
  19410. weight: math.unit(70, "kg"),
  19411. name: "Front",
  19412. image: {
  19413. source: "./media/characters/kernel/front.svg",
  19414. extra: 222 / 210,
  19415. bottom: 0.007
  19416. }
  19417. },
  19418. },
  19419. [
  19420. {
  19421. name: "Nano",
  19422. height: math.unit(17, "micrometers")
  19423. },
  19424. {
  19425. name: "Micro",
  19426. height: math.unit(1.7, "mm")
  19427. },
  19428. {
  19429. name: "Small",
  19430. height: math.unit(1.7, "cm")
  19431. },
  19432. {
  19433. name: "Normal",
  19434. height: math.unit(1.7, "m"),
  19435. default: true
  19436. },
  19437. ]
  19438. ))
  19439. characterMakers.push(() => makeCharacter(
  19440. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19441. {
  19442. front: {
  19443. height: math.unit(1.75, "meters"),
  19444. weight: math.unit(65, "kg"),
  19445. name: "Front",
  19446. image: {
  19447. source: "./media/characters/jayne-folest/front.svg",
  19448. extra: 2115 / 2007,
  19449. bottom: 0.02
  19450. }
  19451. },
  19452. back: {
  19453. height: math.unit(1.75, "meters"),
  19454. weight: math.unit(65, "kg"),
  19455. name: "Back",
  19456. image: {
  19457. source: "./media/characters/jayne-folest/back.svg",
  19458. extra: 2115 / 2007,
  19459. bottom: 0.005
  19460. }
  19461. },
  19462. frontClothed: {
  19463. height: math.unit(1.75, "meters"),
  19464. weight: math.unit(65, "kg"),
  19465. name: "Front (Clothed)",
  19466. image: {
  19467. source: "./media/characters/jayne-folest/front-clothed.svg",
  19468. extra: 2115 / 2007,
  19469. bottom: 0.035
  19470. }
  19471. },
  19472. hand: {
  19473. height: math.unit(1 / 1.260, "feet"),
  19474. name: "Hand",
  19475. image: {
  19476. source: "./media/characters/jayne-folest/hand.svg"
  19477. }
  19478. },
  19479. foot: {
  19480. height: math.unit(1 / 0.918, "feet"),
  19481. name: "Foot",
  19482. image: {
  19483. source: "./media/characters/jayne-folest/foot.svg"
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Micro",
  19490. height: math.unit(4, "cm")
  19491. },
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(1.75, "meters")
  19495. },
  19496. {
  19497. name: "Macro",
  19498. height: math.unit(47.5, "meters"),
  19499. default: true
  19500. },
  19501. ]
  19502. ))
  19503. characterMakers.push(() => makeCharacter(
  19504. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19505. {
  19506. front: {
  19507. height: math.unit(180, "cm"),
  19508. weight: math.unit(70, "kg"),
  19509. name: "Front",
  19510. image: {
  19511. source: "./media/characters/algier/front.svg",
  19512. extra: 596 / 572,
  19513. bottom: 0.04
  19514. }
  19515. },
  19516. back: {
  19517. height: math.unit(180, "cm"),
  19518. weight: math.unit(70, "kg"),
  19519. name: "Back",
  19520. image: {
  19521. source: "./media/characters/algier/back.svg",
  19522. extra: 596 / 572,
  19523. bottom: 0.025
  19524. }
  19525. },
  19526. frontdressed: {
  19527. height: math.unit(180, "cm"),
  19528. weight: math.unit(150, "kg"),
  19529. name: "Front-dressed",
  19530. image: {
  19531. source: "./media/characters/algier/front-dressed.svg",
  19532. extra: 596 / 572,
  19533. bottom: 0.038
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Micro",
  19540. height: math.unit(5, "cm")
  19541. },
  19542. {
  19543. name: "Normal",
  19544. height: math.unit(180, "cm"),
  19545. default: true
  19546. },
  19547. {
  19548. name: "Macro",
  19549. height: math.unit(64, "m")
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19555. {
  19556. upright: {
  19557. height: math.unit(7, "feet"),
  19558. weight: math.unit(300, "lb"),
  19559. name: "Upright",
  19560. image: {
  19561. source: "./media/characters/pretzel/upright.svg",
  19562. extra: 534 / 522,
  19563. bottom: 0.065
  19564. }
  19565. },
  19566. sprawling: {
  19567. height: math.unit(3.75, "feet"),
  19568. weight: math.unit(300, "lb"),
  19569. name: "Sprawling",
  19570. image: {
  19571. source: "./media/characters/pretzel/sprawling.svg",
  19572. extra: 314 / 281,
  19573. bottom: 0.1
  19574. }
  19575. },
  19576. tongue: {
  19577. height: math.unit(2, "feet"),
  19578. name: "Tongue",
  19579. image: {
  19580. source: "./media/characters/pretzel/tongue.svg"
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Normal",
  19587. height: math.unit(7, "feet"),
  19588. default: true
  19589. },
  19590. {
  19591. name: "Oversized",
  19592. height: math.unit(15, "feet")
  19593. },
  19594. {
  19595. name: "Huge",
  19596. height: math.unit(30, "feet")
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(250, "feet")
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19606. {
  19607. sideFront: {
  19608. height: math.unit(5 + 2 / 12, "feet"),
  19609. weight: math.unit(120, "lb"),
  19610. name: "Front Side",
  19611. image: {
  19612. source: "./media/characters/roxi/side-front.svg",
  19613. extra: 2924 / 2717,
  19614. bottom: 0.08
  19615. }
  19616. },
  19617. sideBack: {
  19618. height: math.unit(5 + 2 / 12, "feet"),
  19619. weight: math.unit(120, "lb"),
  19620. name: "Back Side",
  19621. image: {
  19622. source: "./media/characters/roxi/side-back.svg",
  19623. extra: 2904 / 2693,
  19624. bottom: 0.06
  19625. }
  19626. },
  19627. front: {
  19628. height: math.unit(5 + 2 / 12, "feet"),
  19629. weight: math.unit(120, "lb"),
  19630. name: "Front",
  19631. image: {
  19632. source: "./media/characters/roxi/front.svg",
  19633. extra: 2028 / 1907,
  19634. bottom: 0.01
  19635. }
  19636. },
  19637. frontAlt: {
  19638. height: math.unit(5 + 2 / 12, "feet"),
  19639. weight: math.unit(120, "lb"),
  19640. name: "Front (Alt)",
  19641. image: {
  19642. source: "./media/characters/roxi/front-alt.svg",
  19643. extra: 1828 / 1798,
  19644. bottom: 0.01
  19645. }
  19646. },
  19647. sitting: {
  19648. height: math.unit(2.8, "feet"),
  19649. weight: math.unit(120, "lb"),
  19650. name: "Sitting",
  19651. image: {
  19652. source: "./media/characters/roxi/sitting.svg",
  19653. extra: 2660 / 2462,
  19654. bottom: 0.1
  19655. }
  19656. },
  19657. },
  19658. [
  19659. {
  19660. name: "Normal",
  19661. height: math.unit(5 + 2 / 12, "feet"),
  19662. default: true
  19663. },
  19664. ]
  19665. ))
  19666. characterMakers.push(() => makeCharacter(
  19667. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19668. {
  19669. side: {
  19670. height: math.unit(55, "feet"),
  19671. weight: math.unit(153, "tons"),
  19672. name: "Side",
  19673. image: {
  19674. source: "./media/characters/shadow/side.svg",
  19675. extra: 701 / 628,
  19676. bottom: 0.02
  19677. }
  19678. },
  19679. flying: {
  19680. height: math.unit(145, "feet"),
  19681. weight: math.unit(153, "tons"),
  19682. name: "Flying",
  19683. image: {
  19684. source: "./media/characters/shadow/flying.svg"
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(55, "feet"),
  19692. default: true
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(6, "feet"),
  19701. weight: math.unit(200, "lb"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/marcie/front.svg",
  19705. extra: 960 / 876,
  19706. bottom: 58 / 1017.87
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Macro",
  19713. height: math.unit(1, "mile"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19720. {
  19721. front: {
  19722. height: math.unit(7, "feet"),
  19723. weight: math.unit(200, "lb"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/kachina/front.svg",
  19727. extra: 1290.68 / 1119,
  19728. bottom: 36.5 / 1327.18
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Normal",
  19735. height: math.unit(7, "feet"),
  19736. default: true
  19737. },
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19742. {
  19743. looking: {
  19744. height: math.unit(2, "meters"),
  19745. weight: math.unit(300, "kg"),
  19746. name: "Looking",
  19747. image: {
  19748. source: "./media/characters/kash/looking.svg",
  19749. extra: 474 / 344,
  19750. bottom: 0.03
  19751. }
  19752. },
  19753. side: {
  19754. height: math.unit(2, "meters"),
  19755. weight: math.unit(300, "kg"),
  19756. name: "Side",
  19757. image: {
  19758. source: "./media/characters/kash/side.svg",
  19759. extra: 302 / 251,
  19760. bottom: 0.03
  19761. }
  19762. },
  19763. front: {
  19764. height: math.unit(2, "meters"),
  19765. weight: math.unit(300, "kg"),
  19766. name: "Front",
  19767. image: {
  19768. source: "./media/characters/kash/front.svg",
  19769. extra: 495 / 360,
  19770. bottom: 0.015
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(2, "meters"),
  19778. default: true
  19779. },
  19780. {
  19781. name: "Big",
  19782. height: math.unit(3, "meters")
  19783. },
  19784. {
  19785. name: "Large",
  19786. height: math.unit(5, "meters")
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19792. {
  19793. feeding: {
  19794. height: math.unit(6.7, "feet"),
  19795. weight: math.unit(350, "lb"),
  19796. name: "Feeding",
  19797. image: {
  19798. source: "./media/characters/lalim/feeding.svg",
  19799. }
  19800. },
  19801. },
  19802. [
  19803. {
  19804. name: "Normal",
  19805. height: math.unit(6.7, "feet"),
  19806. default: true
  19807. },
  19808. ]
  19809. ))
  19810. characterMakers.push(() => makeCharacter(
  19811. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19812. {
  19813. front: {
  19814. height: math.unit(9.5, "feet"),
  19815. weight: math.unit(600, "lb"),
  19816. name: "Front",
  19817. image: {
  19818. source: "./media/characters/de'vout/front.svg",
  19819. extra: 1443 / 1328,
  19820. bottom: 0.025
  19821. }
  19822. },
  19823. back: {
  19824. height: math.unit(9.5, "feet"),
  19825. weight: math.unit(600, "lb"),
  19826. name: "Back",
  19827. image: {
  19828. source: "./media/characters/de'vout/back.svg",
  19829. extra: 1443 / 1328
  19830. }
  19831. },
  19832. frontDressed: {
  19833. height: math.unit(9.5, "feet"),
  19834. weight: math.unit(600, "lb"),
  19835. name: "Front (Dressed",
  19836. image: {
  19837. source: "./media/characters/de'vout/front-dressed.svg",
  19838. extra: 1443 / 1328,
  19839. bottom: 0.025
  19840. }
  19841. },
  19842. backDressed: {
  19843. height: math.unit(9.5, "feet"),
  19844. weight: math.unit(600, "lb"),
  19845. name: "Back (Dressed",
  19846. image: {
  19847. source: "./media/characters/de'vout/back-dressed.svg",
  19848. extra: 1443 / 1328
  19849. }
  19850. },
  19851. },
  19852. [
  19853. {
  19854. name: "Normal",
  19855. height: math.unit(9.5, "feet"),
  19856. default: true
  19857. },
  19858. ]
  19859. ))
  19860. characterMakers.push(() => makeCharacter(
  19861. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19862. {
  19863. front: {
  19864. height: math.unit(8, "feet"),
  19865. weight: math.unit(225, "lb"),
  19866. name: "Front",
  19867. image: {
  19868. source: "./media/characters/talana/front.svg",
  19869. extra: 1410 / 1300,
  19870. bottom: 0.015
  19871. }
  19872. },
  19873. frontDressed: {
  19874. height: math.unit(8, "feet"),
  19875. weight: math.unit(225, "lb"),
  19876. name: "Front (Dressed",
  19877. image: {
  19878. source: "./media/characters/talana/front-dressed.svg",
  19879. extra: 1410 / 1300,
  19880. bottom: 0.015
  19881. }
  19882. },
  19883. },
  19884. [
  19885. {
  19886. name: "Normal",
  19887. height: math.unit(8, "feet"),
  19888. default: true
  19889. },
  19890. ]
  19891. ))
  19892. characterMakers.push(() => makeCharacter(
  19893. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19894. {
  19895. side: {
  19896. height: math.unit(7.2, "feet"),
  19897. weight: math.unit(150, "lb"),
  19898. name: "Side",
  19899. image: {
  19900. source: "./media/characters/xeauvok/side.svg",
  19901. extra: 1975 / 1523,
  19902. bottom: 0.07
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(7.2, "feet"),
  19910. default: true
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19916. {
  19917. side: {
  19918. height: math.unit(4, "meters"),
  19919. weight: math.unit(2200, "kg"),
  19920. name: "Side",
  19921. image: {
  19922. source: "./media/characters/zara/side.svg",
  19923. extra: 765/744,
  19924. bottom: 156/921
  19925. }
  19926. },
  19927. },
  19928. [
  19929. {
  19930. name: "Normal",
  19931. height: math.unit(4, "meters"),
  19932. default: true
  19933. },
  19934. ]
  19935. ))
  19936. characterMakers.push(() => makeCharacter(
  19937. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19938. {
  19939. side: {
  19940. height: math.unit(6, "feet"),
  19941. weight: math.unit(150, "lb"),
  19942. name: "Side",
  19943. image: {
  19944. source: "./media/characters/richard-dragon/side.svg",
  19945. extra: 845 / 340,
  19946. bottom: 0.017
  19947. }
  19948. },
  19949. maw: {
  19950. height: math.unit(2.97, "feet"),
  19951. name: "Maw",
  19952. image: {
  19953. source: "./media/characters/richard-dragon/maw.svg"
  19954. }
  19955. },
  19956. },
  19957. [
  19958. ]
  19959. ))
  19960. characterMakers.push(() => makeCharacter(
  19961. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19962. {
  19963. front: {
  19964. height: math.unit(4, "feet"),
  19965. weight: math.unit(100, "lb"),
  19966. name: "Front",
  19967. image: {
  19968. source: "./media/characters/richard-smeargle/front.svg",
  19969. extra: 2952 / 2820,
  19970. bottom: 0.028
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(4, "feet"),
  19978. default: true
  19979. },
  19980. {
  19981. name: "Dynamax",
  19982. height: math.unit(20, "meters")
  19983. },
  19984. ]
  19985. ))
  19986. characterMakers.push(() => makeCharacter(
  19987. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19988. {
  19989. front: {
  19990. height: math.unit(6, "feet"),
  19991. weight: math.unit(110, "lb"),
  19992. name: "Front",
  19993. image: {
  19994. source: "./media/characters/klay/front.svg",
  19995. extra: 962 / 883,
  19996. bottom: 0.04
  19997. }
  19998. },
  19999. back: {
  20000. height: math.unit(6, "feet"),
  20001. weight: math.unit(110, "lb"),
  20002. name: "Back",
  20003. image: {
  20004. source: "./media/characters/klay/back.svg",
  20005. extra: 962 / 883
  20006. }
  20007. },
  20008. beans: {
  20009. height: math.unit(1.15, "feet"),
  20010. name: "Beans",
  20011. image: {
  20012. source: "./media/characters/klay/beans.svg"
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Micro",
  20019. height: math.unit(6, "inches")
  20020. },
  20021. {
  20022. name: "Mini",
  20023. height: math.unit(3, "feet")
  20024. },
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(6, "feet"),
  20028. default: true
  20029. },
  20030. {
  20031. name: "Big",
  20032. height: math.unit(25, "feet")
  20033. },
  20034. {
  20035. name: "Macro",
  20036. height: math.unit(100, "feet")
  20037. },
  20038. {
  20039. name: "Megamacro",
  20040. height: math.unit(400, "feet")
  20041. },
  20042. ]
  20043. ))
  20044. characterMakers.push(() => makeCharacter(
  20045. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20046. {
  20047. front: {
  20048. height: math.unit(6, "feet"),
  20049. weight: math.unit(160, "lb"),
  20050. name: "Front",
  20051. image: {
  20052. source: "./media/characters/marcus/front.svg",
  20053. extra: 734 / 676,
  20054. bottom: 0.03
  20055. }
  20056. },
  20057. },
  20058. [
  20059. {
  20060. name: "Little",
  20061. height: math.unit(6, "feet")
  20062. },
  20063. {
  20064. name: "Normal",
  20065. height: math.unit(110, "feet"),
  20066. default: true
  20067. },
  20068. {
  20069. name: "Macro",
  20070. height: math.unit(250, "feet")
  20071. },
  20072. {
  20073. name: "Megamacro",
  20074. height: math.unit(1000, "feet")
  20075. },
  20076. ]
  20077. ))
  20078. characterMakers.push(() => makeCharacter(
  20079. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20080. {
  20081. front: {
  20082. height: math.unit(7, "feet"),
  20083. weight: math.unit(275, "lb"),
  20084. name: "Front",
  20085. image: {
  20086. source: "./media/characters/claude-delroute/front.svg",
  20087. extra: 902/827,
  20088. bottom: 26/928
  20089. }
  20090. },
  20091. side: {
  20092. height: math.unit(7, "feet"),
  20093. weight: math.unit(275, "lb"),
  20094. name: "Side",
  20095. image: {
  20096. source: "./media/characters/claude-delroute/side.svg",
  20097. extra: 908/853,
  20098. bottom: 16/924
  20099. }
  20100. },
  20101. back: {
  20102. height: math.unit(7, "feet"),
  20103. weight: math.unit(275, "lb"),
  20104. name: "Back",
  20105. image: {
  20106. source: "./media/characters/claude-delroute/back.svg",
  20107. extra: 911/829,
  20108. bottom: 18/929
  20109. }
  20110. },
  20111. maw: {
  20112. height: math.unit(0.6407, "meters"),
  20113. name: "Maw",
  20114. image: {
  20115. source: "./media/characters/claude-delroute/maw.svg"
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(7, "feet"),
  20123. default: true
  20124. },
  20125. {
  20126. name: "Lorge",
  20127. height: math.unit(20, "feet")
  20128. },
  20129. ]
  20130. ))
  20131. characterMakers.push(() => makeCharacter(
  20132. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20133. {
  20134. front: {
  20135. height: math.unit(8 + 4 / 12, "feet"),
  20136. weight: math.unit(600, "lb"),
  20137. name: "Front",
  20138. image: {
  20139. source: "./media/characters/dragonien/front.svg",
  20140. extra: 100 / 94,
  20141. bottom: 3.3 / 103.3445
  20142. }
  20143. },
  20144. back: {
  20145. height: math.unit(8 + 4 / 12, "feet"),
  20146. weight: math.unit(600, "lb"),
  20147. name: "Back",
  20148. image: {
  20149. source: "./media/characters/dragonien/back.svg",
  20150. extra: 776 / 746,
  20151. bottom: 6.4 / 782.0616
  20152. }
  20153. },
  20154. foot: {
  20155. height: math.unit(1.54, "feet"),
  20156. name: "Foot",
  20157. image: {
  20158. source: "./media/characters/dragonien/foot.svg",
  20159. }
  20160. },
  20161. },
  20162. [
  20163. {
  20164. name: "Normal",
  20165. height: math.unit(8 + 4 / 12, "feet"),
  20166. default: true
  20167. },
  20168. {
  20169. name: "Macro",
  20170. height: math.unit(200, "feet")
  20171. },
  20172. {
  20173. name: "Megamacro",
  20174. height: math.unit(1, "mile")
  20175. },
  20176. {
  20177. name: "Gigamacro",
  20178. height: math.unit(1000, "miles")
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(5 + 2 / 12, "feet"),
  20187. weight: math.unit(110, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/desta/front.svg",
  20191. extra: 767 / 726,
  20192. bottom: 11.7 / 779
  20193. }
  20194. },
  20195. back: {
  20196. height: math.unit(5 + 2 / 12, "feet"),
  20197. weight: math.unit(110, "lb"),
  20198. name: "Back",
  20199. image: {
  20200. source: "./media/characters/desta/back.svg",
  20201. extra: 777 / 728,
  20202. bottom: 6 / 784
  20203. }
  20204. },
  20205. frontAlt: {
  20206. height: math.unit(5 + 2 / 12, "feet"),
  20207. weight: math.unit(110, "lb"),
  20208. name: "Front",
  20209. image: {
  20210. source: "./media/characters/desta/front-alt.svg",
  20211. extra: 1482 / 1417
  20212. }
  20213. },
  20214. side: {
  20215. height: math.unit(5 + 2 / 12, "feet"),
  20216. weight: math.unit(110, "lb"),
  20217. name: "Side",
  20218. image: {
  20219. source: "./media/characters/desta/side.svg",
  20220. extra: 2579 / 2491,
  20221. bottom: 0.053
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Micro",
  20228. height: math.unit(6, "inches")
  20229. },
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(5 + 2 / 12, "feet"),
  20233. default: true
  20234. },
  20235. {
  20236. name: "Macro",
  20237. height: math.unit(62, "feet")
  20238. },
  20239. {
  20240. name: "Megamacro",
  20241. height: math.unit(1800, "feet")
  20242. },
  20243. ]
  20244. ))
  20245. characterMakers.push(() => makeCharacter(
  20246. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20247. {
  20248. front: {
  20249. height: math.unit(10, "feet"),
  20250. weight: math.unit(700, "lb"),
  20251. name: "Front",
  20252. image: {
  20253. source: "./media/characters/storm-alystar/front.svg",
  20254. extra: 2112 / 1898,
  20255. bottom: 0.034
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Micro",
  20262. height: math.unit(3.5, "inches")
  20263. },
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(10, "feet"),
  20267. default: true
  20268. },
  20269. {
  20270. name: "Macro",
  20271. height: math.unit(400, "feet")
  20272. },
  20273. {
  20274. name: "Deific",
  20275. height: math.unit(60, "miles")
  20276. },
  20277. ]
  20278. ))
  20279. characterMakers.push(() => makeCharacter(
  20280. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20281. {
  20282. front: {
  20283. height: math.unit(2.35, "meters"),
  20284. weight: math.unit(119, "kg"),
  20285. name: "Front",
  20286. image: {
  20287. source: "./media/characters/ilia/front.svg",
  20288. extra: 1285 / 1255,
  20289. bottom: 0.06
  20290. }
  20291. },
  20292. },
  20293. [
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(2.35, "meters")
  20297. },
  20298. {
  20299. name: "Macro",
  20300. height: math.unit(140, "meters"),
  20301. default: true
  20302. },
  20303. {
  20304. name: "Megamacro",
  20305. height: math.unit(100, "miles")
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20311. {
  20312. front: {
  20313. height: math.unit(6 + 5 / 12, "feet"),
  20314. weight: math.unit(190, "lb"),
  20315. name: "Front",
  20316. image: {
  20317. source: "./media/characters/kingdead/front.svg",
  20318. extra: 1228 / 1177
  20319. }
  20320. },
  20321. },
  20322. [
  20323. {
  20324. name: "Micro",
  20325. height: math.unit(7, "inches")
  20326. },
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(6 + 5 / 12, "feet")
  20330. },
  20331. {
  20332. name: "Macro",
  20333. height: math.unit(150, "feet"),
  20334. default: true
  20335. },
  20336. {
  20337. name: "Megamacro",
  20338. height: math.unit(200, "miles")
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20344. {
  20345. front: {
  20346. height: math.unit(8, "feet"),
  20347. weight: math.unit(600, "lb"),
  20348. name: "Front",
  20349. image: {
  20350. source: "./media/characters/kyrehx/front.svg",
  20351. extra: 1195 / 1095,
  20352. bottom: 0.034
  20353. }
  20354. },
  20355. },
  20356. [
  20357. {
  20358. name: "Micro",
  20359. height: math.unit(2, "inches")
  20360. },
  20361. {
  20362. name: "Normal",
  20363. height: math.unit(8, "feet"),
  20364. default: true
  20365. },
  20366. {
  20367. name: "Macro",
  20368. height: math.unit(255, "feet")
  20369. },
  20370. ]
  20371. ))
  20372. characterMakers.push(() => makeCharacter(
  20373. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20374. {
  20375. front: {
  20376. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20377. weight: math.unit(184, "lb"),
  20378. name: "Front",
  20379. image: {
  20380. source: "./media/characters/xang/front.svg",
  20381. extra: 845 / 755
  20382. }
  20383. },
  20384. },
  20385. [
  20386. {
  20387. name: "Normal",
  20388. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20389. default: true
  20390. },
  20391. {
  20392. name: "Macro",
  20393. height: math.unit(0.935 * 146, "feet")
  20394. },
  20395. {
  20396. name: "Megamacro",
  20397. height: math.unit(0.935 * 3, "miles")
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20403. {
  20404. frontDressed: {
  20405. height: math.unit(5 + 7 / 12, "feet"),
  20406. weight: math.unit(140, "lb"),
  20407. name: "Front (Dressed)",
  20408. image: {
  20409. source: "./media/characters/doc-weardno/front-dressed.svg",
  20410. extra: 263 / 234
  20411. }
  20412. },
  20413. backDressed: {
  20414. height: math.unit(5 + 7 / 12, "feet"),
  20415. weight: math.unit(140, "lb"),
  20416. name: "Back (Dressed)",
  20417. image: {
  20418. source: "./media/characters/doc-weardno/back-dressed.svg",
  20419. extra: 266 / 238
  20420. }
  20421. },
  20422. front: {
  20423. height: math.unit(5 + 7 / 12, "feet"),
  20424. weight: math.unit(140, "lb"),
  20425. name: "Front",
  20426. image: {
  20427. source: "./media/characters/doc-weardno/front.svg",
  20428. extra: 254 / 233
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Micro",
  20435. height: math.unit(3, "inches")
  20436. },
  20437. {
  20438. name: "Normal",
  20439. height: math.unit(5 + 7 / 12, "feet"),
  20440. default: true
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(25, "feet")
  20445. },
  20446. {
  20447. name: "Megamacro",
  20448. height: math.unit(2, "miles")
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(6 + 2 / 12, "feet"),
  20457. weight: math.unit(153, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/seth-whilst/front.svg",
  20461. bottom: 0.07
  20462. }
  20463. },
  20464. },
  20465. [
  20466. {
  20467. name: "Micro",
  20468. height: math.unit(5, "inches")
  20469. },
  20470. {
  20471. name: "Normal",
  20472. height: math.unit(6 + 2 / 12, "feet"),
  20473. default: true
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(3, "inches"),
  20482. weight: math.unit(8, "grams"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/pocket-jabari/front.svg",
  20486. extra: 1024 / 974,
  20487. bottom: 0.039
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Minimicro",
  20494. height: math.unit(8, "mm")
  20495. },
  20496. {
  20497. name: "Micro",
  20498. height: math.unit(3, "inches"),
  20499. default: true
  20500. },
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(3, "feet")
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20509. {
  20510. frontDressed: {
  20511. height: math.unit(15, "feet"),
  20512. weight: math.unit(3280, "lb"),
  20513. name: "Front (Dressed)",
  20514. image: {
  20515. source: "./media/characters/sapphy/front-dressed.svg",
  20516. extra: 1951/1654,
  20517. bottom: 194/2145
  20518. },
  20519. form: "anthro",
  20520. default: true
  20521. },
  20522. backDressed: {
  20523. height: math.unit(15, "feet"),
  20524. weight: math.unit(3280, "lb"),
  20525. name: "Back (Dressed)",
  20526. image: {
  20527. source: "./media/characters/sapphy/back-dressed.svg",
  20528. extra: 2058/1918,
  20529. bottom: 125/2183
  20530. },
  20531. form: "anthro"
  20532. },
  20533. frontNude: {
  20534. height: math.unit(15, "feet"),
  20535. weight: math.unit(3280, "lb"),
  20536. name: "Front (Nude)",
  20537. image: {
  20538. source: "./media/characters/sapphy/front-nude.svg",
  20539. extra: 1951/1654,
  20540. bottom: 194/2145
  20541. },
  20542. form: "anthro"
  20543. },
  20544. backNude: {
  20545. height: math.unit(15, "feet"),
  20546. weight: math.unit(3280, "lb"),
  20547. name: "Back (Nude)",
  20548. image: {
  20549. source: "./media/characters/sapphy/back-nude.svg",
  20550. extra: 2058/1918,
  20551. bottom: 125/2183
  20552. },
  20553. form: "anthro"
  20554. },
  20555. full: {
  20556. height: math.unit(15, "feet"),
  20557. weight: math.unit(3280, "lb"),
  20558. name: "Full",
  20559. image: {
  20560. source: "./media/characters/sapphy/full.svg",
  20561. extra: 1396/1317,
  20562. bottom: 44/1440
  20563. },
  20564. form: "anthro"
  20565. },
  20566. dick: {
  20567. height: math.unit(3.8, "feet"),
  20568. name: "Dick",
  20569. image: {
  20570. source: "./media/characters/sapphy/dick.svg"
  20571. },
  20572. form: "anthro"
  20573. },
  20574. feral: {
  20575. height: math.unit(35, "feet"),
  20576. weight: math.unit(160, "tons"),
  20577. name: "Feral",
  20578. image: {
  20579. source: "./media/characters/sapphy/feral.svg",
  20580. extra: 1050/573,
  20581. bottom: 60/1110
  20582. },
  20583. form: "feral",
  20584. default: true
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(15, "feet"),
  20591. form: "anthro"
  20592. },
  20593. {
  20594. name: "Casual Macro",
  20595. height: math.unit(120, "feet"),
  20596. form: "anthro"
  20597. },
  20598. {
  20599. name: "Macro",
  20600. height: math.unit(2150, "feet"),
  20601. default: true,
  20602. form: "anthro"
  20603. },
  20604. {
  20605. name: "Megamacro",
  20606. height: math.unit(8, "miles"),
  20607. form: "anthro"
  20608. },
  20609. {
  20610. name: "Galaxy Mom",
  20611. height: math.unit(6, "megalightyears"),
  20612. form: "anthro"
  20613. },
  20614. {
  20615. name: "Normal",
  20616. height: math.unit(35, "feet"),
  20617. form: "feral",
  20618. default: true
  20619. },
  20620. {
  20621. name: "Macro",
  20622. height: math.unit(300, "feet"),
  20623. form: "feral"
  20624. },
  20625. {
  20626. name: "Galaxy Mom",
  20627. height: math.unit(10, "megalightyears"),
  20628. form: "feral"
  20629. },
  20630. ],
  20631. {
  20632. "anthro": {
  20633. name: "Anthro",
  20634. default: true
  20635. },
  20636. "feral": {
  20637. name: "Feral"
  20638. }
  20639. }
  20640. ))
  20641. characterMakers.push(() => makeCharacter(
  20642. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20643. {
  20644. hyenaFront: {
  20645. height: math.unit(6, "feet"),
  20646. weight: math.unit(190, "lb"),
  20647. name: "Front",
  20648. image: {
  20649. source: "./media/characters/kiro/hyena-front.svg",
  20650. extra: 927/839,
  20651. bottom: 91/1018
  20652. },
  20653. form: "hyena",
  20654. default: true
  20655. },
  20656. front: {
  20657. height: math.unit(6, "feet"),
  20658. weight: math.unit(170, "lb"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/kiro/front.svg",
  20662. extra: 1064 / 1012,
  20663. bottom: 0.052
  20664. },
  20665. form: "folf",
  20666. default: true
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Micro",
  20672. height: math.unit(6, "inches"),
  20673. form: "folf"
  20674. },
  20675. {
  20676. name: "Normal",
  20677. height: math.unit(6, "feet"),
  20678. form: "folf",
  20679. default: true
  20680. },
  20681. {
  20682. name: "Macro",
  20683. height: math.unit(72, "feet"),
  20684. form: "folf"
  20685. },
  20686. {
  20687. name: "Micro",
  20688. height: math.unit(6, "inches"),
  20689. form: "hyena"
  20690. },
  20691. {
  20692. name: "Normal",
  20693. height: math.unit(6, "feet"),
  20694. form: "hyena",
  20695. default: true
  20696. },
  20697. {
  20698. name: "Macro",
  20699. height: math.unit(72, "feet"),
  20700. form: "hyena"
  20701. },
  20702. ],
  20703. {
  20704. "hyena": {
  20705. name: "Hyena",
  20706. default: true
  20707. },
  20708. "folf": {
  20709. name: "Folf",
  20710. },
  20711. }
  20712. ))
  20713. characterMakers.push(() => makeCharacter(
  20714. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20715. {
  20716. front: {
  20717. height: math.unit(5 + 9 / 12, "feet"),
  20718. weight: math.unit(175, "lb"),
  20719. name: "Front",
  20720. image: {
  20721. source: "./media/characters/irishfox/front.svg",
  20722. extra: 1912 / 1680,
  20723. bottom: 0.02
  20724. }
  20725. },
  20726. },
  20727. [
  20728. {
  20729. name: "Nano",
  20730. height: math.unit(1, "mm")
  20731. },
  20732. {
  20733. name: "Micro",
  20734. height: math.unit(2, "inches")
  20735. },
  20736. {
  20737. name: "Normal",
  20738. height: math.unit(5 + 9 / 12, "feet"),
  20739. default: true
  20740. },
  20741. {
  20742. name: "Macro",
  20743. height: math.unit(45, "feet")
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(6 + 1 / 12, "feet"),
  20752. weight: math.unit(75, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/aronai-sieyes/front.svg",
  20756. extra: 1532/1450,
  20757. bottom: 42/1574
  20758. }
  20759. },
  20760. side: {
  20761. height: math.unit(6 + 1 / 12, "feet"),
  20762. weight: math.unit(75, "lb"),
  20763. name: "Side",
  20764. image: {
  20765. source: "./media/characters/aronai-sieyes/side.svg",
  20766. extra: 1422/1365,
  20767. bottom: 148/1570
  20768. }
  20769. },
  20770. back: {
  20771. height: math.unit(6 + 1 / 12, "feet"),
  20772. weight: math.unit(75, "lb"),
  20773. name: "Back",
  20774. image: {
  20775. source: "./media/characters/aronai-sieyes/back.svg",
  20776. extra: 1526/1464,
  20777. bottom: 51/1577
  20778. }
  20779. },
  20780. dressed: {
  20781. height: math.unit(6 + 1 / 12, "feet"),
  20782. weight: math.unit(75, "lb"),
  20783. name: "Dressed",
  20784. image: {
  20785. source: "./media/characters/aronai-sieyes/dressed.svg",
  20786. extra: 1559/1483,
  20787. bottom: 39/1598
  20788. }
  20789. },
  20790. slit: {
  20791. height: math.unit(1.3, "feet"),
  20792. name: "Slit",
  20793. image: {
  20794. source: "./media/characters/aronai-sieyes/slit.svg"
  20795. }
  20796. },
  20797. slitSpread: {
  20798. height: math.unit(0.9, "feet"),
  20799. name: "Slit (Spread)",
  20800. image: {
  20801. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20802. }
  20803. },
  20804. rump: {
  20805. height: math.unit(1.3, "feet"),
  20806. name: "Rump",
  20807. image: {
  20808. source: "./media/characters/aronai-sieyes/rump.svg"
  20809. }
  20810. },
  20811. maw: {
  20812. height: math.unit(1.25, "feet"),
  20813. name: "Maw",
  20814. image: {
  20815. source: "./media/characters/aronai-sieyes/maw.svg"
  20816. }
  20817. },
  20818. feral: {
  20819. height: math.unit(18, "feet"),
  20820. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20821. name: "Feral",
  20822. image: {
  20823. source: "./media/characters/aronai-sieyes/feral.svg",
  20824. extra: 1530 / 1240,
  20825. bottom: 0.035
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Micro",
  20832. height: math.unit(2, "inches")
  20833. },
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(6 + 1 / 12, "feet"),
  20837. default: true
  20838. }
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20843. {
  20844. front: {
  20845. height: math.unit(12, "feet"),
  20846. weight: math.unit(410, "kg"),
  20847. name: "Front",
  20848. image: {
  20849. source: "./media/characters/xuna/front.svg",
  20850. extra: 2184 / 1980
  20851. }
  20852. },
  20853. side: {
  20854. height: math.unit(12, "feet"),
  20855. weight: math.unit(410, "kg"),
  20856. name: "Side",
  20857. image: {
  20858. source: "./media/characters/xuna/side.svg",
  20859. extra: 2184 / 1980
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(12, "feet"),
  20864. weight: math.unit(410, "kg"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/xuna/back.svg",
  20868. extra: 2184 / 1980
  20869. }
  20870. },
  20871. },
  20872. [
  20873. {
  20874. name: "Nano glow",
  20875. height: math.unit(10, "nm")
  20876. },
  20877. {
  20878. name: "Micro floof",
  20879. height: math.unit(0.3, "m")
  20880. },
  20881. {
  20882. name: "Huggable softy boi",
  20883. height: math.unit(3.6576, "m"),
  20884. default: true
  20885. },
  20886. {
  20887. name: "Admirable floof",
  20888. height: math.unit(80, "meters")
  20889. },
  20890. {
  20891. name: "Gentle macro",
  20892. height: math.unit(300, "meters")
  20893. },
  20894. {
  20895. name: "Very careful floof",
  20896. height: math.unit(3200, "meters")
  20897. },
  20898. {
  20899. name: "The mega floof",
  20900. height: math.unit(36000, "meters")
  20901. },
  20902. {
  20903. name: "Giga-fur-Wicker",
  20904. height: math.unit(4800000, "meters")
  20905. },
  20906. {
  20907. name: "Licky world",
  20908. height: math.unit(20000000, "meters")
  20909. },
  20910. {
  20911. name: "Floofy cyan sun",
  20912. height: math.unit(1500000000, "meters")
  20913. },
  20914. {
  20915. name: "Milky Wicker",
  20916. height: math.unit(1000000000000000000000, "meters")
  20917. },
  20918. {
  20919. name: "The observing Wicker",
  20920. height: math.unit(999999999999999999999999999, "meters")
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20926. {
  20927. front: {
  20928. height: math.unit(5 + 9 / 12, "feet"),
  20929. weight: math.unit(150, "lb"),
  20930. name: "Front",
  20931. image: {
  20932. source: "./media/characters/arokha-sieyes/front.svg",
  20933. extra: 1425 / 1284,
  20934. bottom: 0.05
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(5 + 9 / 12, "feet")
  20942. },
  20943. {
  20944. name: "Macro",
  20945. height: math.unit(30, "meters"),
  20946. default: true
  20947. },
  20948. ]
  20949. ))
  20950. characterMakers.push(() => makeCharacter(
  20951. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20952. {
  20953. front: {
  20954. height: math.unit(6, "feet"),
  20955. weight: math.unit(180, "lb"),
  20956. name: "Front",
  20957. image: {
  20958. source: "./media/characters/arokh-sieyes/front.svg",
  20959. extra: 1830 / 1769,
  20960. bottom: 0.01
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(6, "feet")
  20968. },
  20969. {
  20970. name: "Macro",
  20971. height: math.unit(30, "meters"),
  20972. default: true
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20978. {
  20979. side: {
  20980. height: math.unit(13 + 1 / 12, "feet"),
  20981. weight: math.unit(8.5, "tonnes"),
  20982. preyCapacity: math.unit(36, "people"),
  20983. name: "Side",
  20984. image: {
  20985. source: "./media/characters/goldeneye/side.svg",
  20986. extra: 1139/741,
  20987. bottom: 98/1237
  20988. }
  20989. },
  20990. front: {
  20991. height: math.unit(5.1, "feet"),
  20992. weight: math.unit(8.5, "tonnes"),
  20993. preyCapacity: math.unit(36, "people"),
  20994. name: "Front",
  20995. image: {
  20996. source: "./media/characters/goldeneye/front.svg",
  20997. extra: 635/365,
  20998. bottom: 598/1233
  20999. }
  21000. },
  21001. maw: {
  21002. height: math.unit(6.6, "feet"),
  21003. name: "Maw",
  21004. image: {
  21005. source: "./media/characters/goldeneye/maw.svg"
  21006. }
  21007. },
  21008. headFront: {
  21009. height: math.unit(8, "feet"),
  21010. name: "Head (Front)",
  21011. image: {
  21012. source: "./media/characters/goldeneye/head-front.svg"
  21013. }
  21014. },
  21015. headSide: {
  21016. height: math.unit(6, "feet"),
  21017. name: "Head (Side)",
  21018. image: {
  21019. source: "./media/characters/goldeneye/head-side.svg"
  21020. }
  21021. },
  21022. headBack: {
  21023. height: math.unit(8, "feet"),
  21024. name: "Head (Back)",
  21025. image: {
  21026. source: "./media/characters/goldeneye/head-back.svg"
  21027. }
  21028. },
  21029. paw: {
  21030. height: math.unit(3.4, "feet"),
  21031. name: "Paw",
  21032. image: {
  21033. source: "./media/characters/goldeneye/paw.svg"
  21034. }
  21035. },
  21036. toering: {
  21037. height: math.unit(0.45, "feet"),
  21038. name: "Toering",
  21039. image: {
  21040. source: "./media/characters/goldeneye/toering.svg"
  21041. }
  21042. },
  21043. eyes: {
  21044. height: math.unit(0.5, "feet"),
  21045. name: "Eyes",
  21046. image: {
  21047. source: "./media/characters/goldeneye/eyes.svg"
  21048. }
  21049. },
  21050. },
  21051. [
  21052. {
  21053. name: "Normal",
  21054. height: math.unit(13 + 1 / 12, "feet"),
  21055. default: true
  21056. },
  21057. ]
  21058. ))
  21059. characterMakers.push(() => makeCharacter(
  21060. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21061. {
  21062. front: {
  21063. height: math.unit(6 + 1 / 12, "feet"),
  21064. weight: math.unit(210, "lb"),
  21065. name: "Front",
  21066. image: {
  21067. source: "./media/characters/leonardo-lycheborne/front.svg",
  21068. extra: 776/723,
  21069. bottom: 34/810
  21070. }
  21071. },
  21072. side: {
  21073. height: math.unit(6 + 1 / 12, "feet"),
  21074. weight: math.unit(210, "lb"),
  21075. name: "Side",
  21076. image: {
  21077. source: "./media/characters/leonardo-lycheborne/side.svg",
  21078. extra: 780/728,
  21079. bottom: 12/792
  21080. }
  21081. },
  21082. back: {
  21083. height: math.unit(6 + 1 / 12, "feet"),
  21084. weight: math.unit(210, "lb"),
  21085. name: "Back",
  21086. image: {
  21087. source: "./media/characters/leonardo-lycheborne/back.svg",
  21088. extra: 775/721,
  21089. bottom: 17/792
  21090. }
  21091. },
  21092. hand: {
  21093. height: math.unit(1.08, "feet"),
  21094. name: "Hand",
  21095. image: {
  21096. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21097. }
  21098. },
  21099. foot: {
  21100. height: math.unit(1.32, "feet"),
  21101. name: "Foot",
  21102. image: {
  21103. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21104. }
  21105. },
  21106. maw: {
  21107. height: math.unit(1, "feet"),
  21108. name: "Maw",
  21109. image: {
  21110. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21111. }
  21112. },
  21113. were: {
  21114. height: math.unit(20, "feet"),
  21115. weight: math.unit(7800, "lb"),
  21116. name: "Were",
  21117. image: {
  21118. source: "./media/characters/leonardo-lycheborne/were.svg",
  21119. extra: 1224/1165,
  21120. bottom: 72/1296
  21121. }
  21122. },
  21123. feral: {
  21124. height: math.unit(7.5, "feet"),
  21125. weight: math.unit(600, "lb"),
  21126. name: "Feral",
  21127. image: {
  21128. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21129. extra: 797/702,
  21130. bottom: 139/936
  21131. }
  21132. },
  21133. taur: {
  21134. height: math.unit(11, "feet"),
  21135. weight: math.unit(3300, "lb"),
  21136. name: "Taur",
  21137. image: {
  21138. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21139. extra: 1271/1197,
  21140. bottom: 47/1318
  21141. }
  21142. },
  21143. barghest: {
  21144. height: math.unit(11, "feet"),
  21145. weight: math.unit(1300, "lb"),
  21146. name: "Barghest",
  21147. image: {
  21148. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21149. extra: 1291/1204,
  21150. bottom: 37/1328
  21151. }
  21152. },
  21153. dick: {
  21154. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21155. name: "Dick",
  21156. image: {
  21157. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21158. }
  21159. },
  21160. dickWere: {
  21161. height: math.unit((20) / 3.8, "feet"),
  21162. name: "Dick (Were)",
  21163. image: {
  21164. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Normal",
  21171. height: math.unit(6 + 1 / 12, "feet"),
  21172. default: true
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(10, "feet"),
  21181. weight: math.unit(350, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/jet/front.svg",
  21185. extra: 2050 / 1980,
  21186. bottom: 0.013
  21187. }
  21188. },
  21189. back: {
  21190. height: math.unit(10, "feet"),
  21191. weight: math.unit(350, "lb"),
  21192. name: "Back",
  21193. image: {
  21194. source: "./media/characters/jet/back.svg",
  21195. extra: 2050 / 1980,
  21196. bottom: 0.013
  21197. }
  21198. },
  21199. },
  21200. [
  21201. {
  21202. name: "Micro",
  21203. height: math.unit(6, "inches")
  21204. },
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(10, "feet"),
  21208. default: true
  21209. },
  21210. {
  21211. name: "Macro",
  21212. height: math.unit(100, "feet")
  21213. },
  21214. ]
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21218. {
  21219. front: {
  21220. height: math.unit(15, "feet"),
  21221. weight: math.unit(2800, "lb"),
  21222. name: "Front",
  21223. image: {
  21224. source: "./media/characters/tanarath/front.svg",
  21225. extra: 2392 / 2220,
  21226. bottom: 0.03
  21227. }
  21228. },
  21229. back: {
  21230. height: math.unit(15, "feet"),
  21231. weight: math.unit(2800, "lb"),
  21232. name: "Back",
  21233. image: {
  21234. source: "./media/characters/tanarath/back.svg",
  21235. extra: 2392 / 2220,
  21236. bottom: 0.03
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Normal",
  21243. height: math.unit(15, "feet"),
  21244. default: true
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21250. {
  21251. front: {
  21252. height: math.unit(7 + 1 / 12, "feet"),
  21253. weight: math.unit(175, "lb"),
  21254. name: "Front",
  21255. image: {
  21256. source: "./media/characters/patty-cattybatty/front.svg",
  21257. extra: 908 / 874,
  21258. bottom: 0.025
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Micro",
  21265. height: math.unit(1, "inch")
  21266. },
  21267. {
  21268. name: "Normal",
  21269. height: math.unit(7 + 1 / 12, "feet")
  21270. },
  21271. {
  21272. name: "Mini Macro",
  21273. height: math.unit(155, "feet")
  21274. },
  21275. {
  21276. name: "Macro",
  21277. height: math.unit(1077, "feet")
  21278. },
  21279. {
  21280. name: "Mega Macro",
  21281. height: math.unit(47650, "feet"),
  21282. default: true
  21283. },
  21284. {
  21285. name: "Giga Macro",
  21286. height: math.unit(440, "miles")
  21287. },
  21288. {
  21289. name: "Tera Macro",
  21290. height: math.unit(8700, "miles")
  21291. },
  21292. {
  21293. name: "Planetary Macro",
  21294. height: math.unit(32700, "miles")
  21295. },
  21296. {
  21297. name: "Solar Macro",
  21298. height: math.unit(550000, "miles")
  21299. },
  21300. {
  21301. name: "Celestial Macro",
  21302. height: math.unit(2.5, "AU")
  21303. },
  21304. ]
  21305. ))
  21306. characterMakers.push(() => makeCharacter(
  21307. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21308. {
  21309. front: {
  21310. height: math.unit(4 + 5 / 12, "feet"),
  21311. weight: math.unit(90, "lb"),
  21312. name: "Front",
  21313. image: {
  21314. source: "./media/characters/cappu/front.svg",
  21315. extra: 1247 / 1152,
  21316. bottom: 0.012
  21317. }
  21318. },
  21319. },
  21320. [
  21321. {
  21322. name: "Normal",
  21323. height: math.unit(4 + 5 / 12, "feet"),
  21324. default: true
  21325. },
  21326. ]
  21327. ))
  21328. characterMakers.push(() => makeCharacter(
  21329. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21330. {
  21331. frontDressed: {
  21332. height: math.unit(70, "cm"),
  21333. weight: math.unit(6, "kg"),
  21334. name: "Front (Dressed)",
  21335. image: {
  21336. source: "./media/characters/sebi/front-dressed.svg",
  21337. extra: 713.5 / 686.5,
  21338. bottom: 0.003
  21339. }
  21340. },
  21341. front: {
  21342. height: math.unit(70, "cm"),
  21343. weight: math.unit(5, "kg"),
  21344. name: "Front",
  21345. image: {
  21346. source: "./media/characters/sebi/front.svg",
  21347. extra: 713.5 / 686.5,
  21348. bottom: 0.003
  21349. }
  21350. }
  21351. },
  21352. [
  21353. {
  21354. name: "Normal",
  21355. height: math.unit(70, "cm"),
  21356. default: true
  21357. },
  21358. {
  21359. name: "Macro",
  21360. height: math.unit(8, "meters")
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(6, "feet"),
  21369. weight: math.unit(150, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/typhek/front.svg",
  21373. extra: 1948 / 1929,
  21374. bottom: 0.025
  21375. }
  21376. },
  21377. side: {
  21378. height: math.unit(6, "feet"),
  21379. weight: math.unit(150, "lb"),
  21380. name: "Side",
  21381. image: {
  21382. source: "./media/characters/typhek/side.svg",
  21383. extra: 2034 / 2010,
  21384. bottom: 0.003
  21385. }
  21386. },
  21387. back: {
  21388. height: math.unit(6, "feet"),
  21389. weight: math.unit(150, "lb"),
  21390. name: "Back",
  21391. image: {
  21392. source: "./media/characters/typhek/back.svg",
  21393. extra: 2005 / 1978,
  21394. bottom: 0.004
  21395. }
  21396. },
  21397. palm: {
  21398. height: math.unit(1.2, "feet"),
  21399. name: "Palm",
  21400. image: {
  21401. source: "./media/characters/typhek/palm.svg"
  21402. }
  21403. },
  21404. fist: {
  21405. height: math.unit(1.1, "feet"),
  21406. name: "Fist",
  21407. image: {
  21408. source: "./media/characters/typhek/fist.svg"
  21409. }
  21410. },
  21411. foot: {
  21412. height: math.unit(1.57, "feet"),
  21413. name: "Foot",
  21414. image: {
  21415. source: "./media/characters/typhek/foot.svg"
  21416. }
  21417. },
  21418. sole: {
  21419. height: math.unit(2.05, "feet"),
  21420. name: "Sole",
  21421. image: {
  21422. source: "./media/characters/typhek/sole.svg"
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "Macro",
  21429. height: math.unit(40, "stories"),
  21430. default: true
  21431. },
  21432. {
  21433. name: "Megamacro",
  21434. height: math.unit(1, "mile")
  21435. },
  21436. {
  21437. name: "Gigamacro",
  21438. height: math.unit(4000, "solarradii")
  21439. },
  21440. {
  21441. name: "Universal",
  21442. height: math.unit(1.1, "universes")
  21443. }
  21444. ]
  21445. ))
  21446. characterMakers.push(() => makeCharacter(
  21447. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21448. {
  21449. side: {
  21450. height: math.unit(5 + 7 / 12, "feet"),
  21451. weight: math.unit(150, "lb"),
  21452. name: "Side",
  21453. image: {
  21454. source: "./media/characters/kassy/side.svg",
  21455. extra: 1280 / 1225,
  21456. bottom: 0.002
  21457. }
  21458. },
  21459. front: {
  21460. height: math.unit(5 + 7 / 12, "feet"),
  21461. weight: math.unit(150, "lb"),
  21462. name: "Front",
  21463. image: {
  21464. source: "./media/characters/kassy/front.svg",
  21465. extra: 1280 / 1225,
  21466. bottom: 0.025
  21467. }
  21468. },
  21469. back: {
  21470. height: math.unit(5 + 7 / 12, "feet"),
  21471. weight: math.unit(150, "lb"),
  21472. name: "Back",
  21473. image: {
  21474. source: "./media/characters/kassy/back.svg",
  21475. extra: 1280 / 1225,
  21476. bottom: 0.002
  21477. }
  21478. },
  21479. foot: {
  21480. height: math.unit(1.266, "feet"),
  21481. name: "Foot",
  21482. image: {
  21483. source: "./media/characters/kassy/foot.svg"
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(5 + 7 / 12, "feet")
  21491. },
  21492. {
  21493. name: "Macro",
  21494. height: math.unit(137, "feet"),
  21495. default: true
  21496. },
  21497. {
  21498. name: "Megamacro",
  21499. height: math.unit(1, "mile")
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21505. {
  21506. front: {
  21507. height: math.unit(6 + 1 / 12, "feet"),
  21508. weight: math.unit(200, "lb"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/neil/front.svg",
  21512. extra: 1326 / 1250,
  21513. bottom: 0.023
  21514. }
  21515. },
  21516. },
  21517. [
  21518. {
  21519. name: "Normal",
  21520. height: math.unit(6 + 1 / 12, "feet"),
  21521. default: true
  21522. },
  21523. {
  21524. name: "Macro",
  21525. height: math.unit(200, "feet")
  21526. },
  21527. ]
  21528. ))
  21529. characterMakers.push(() => makeCharacter(
  21530. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21531. {
  21532. front: {
  21533. height: math.unit(5 + 9 / 12, "feet"),
  21534. weight: math.unit(190, "lb"),
  21535. name: "Front",
  21536. image: {
  21537. source: "./media/characters/atticus/front.svg",
  21538. extra: 2934 / 2785,
  21539. bottom: 0.025
  21540. }
  21541. },
  21542. },
  21543. [
  21544. {
  21545. name: "Normal",
  21546. height: math.unit(5 + 9 / 12, "feet"),
  21547. default: true
  21548. },
  21549. {
  21550. name: "Macro",
  21551. height: math.unit(180, "feet")
  21552. },
  21553. ]
  21554. ))
  21555. characterMakers.push(() => makeCharacter(
  21556. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21557. {
  21558. side: {
  21559. height: math.unit(9, "feet"),
  21560. weight: math.unit(650, "lb"),
  21561. name: "Side",
  21562. image: {
  21563. source: "./media/characters/milo/side.svg",
  21564. extra: 2644 / 2310,
  21565. bottom: 0.032
  21566. }
  21567. },
  21568. },
  21569. [
  21570. {
  21571. name: "Normal",
  21572. height: math.unit(9, "feet"),
  21573. default: true
  21574. },
  21575. {
  21576. name: "Macro",
  21577. height: math.unit(300, "feet")
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21583. {
  21584. side: {
  21585. height: math.unit(8, "meters"),
  21586. weight: math.unit(90000, "kg"),
  21587. name: "Side",
  21588. image: {
  21589. source: "./media/characters/ijzer/side.svg",
  21590. extra: 2756 / 1600,
  21591. bottom: 0.01
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Small",
  21598. height: math.unit(3, "meters")
  21599. },
  21600. {
  21601. name: "Normal",
  21602. height: math.unit(8, "meters"),
  21603. default: true
  21604. },
  21605. {
  21606. name: "Normal+",
  21607. height: math.unit(10, "meters")
  21608. },
  21609. {
  21610. name: "Bigger",
  21611. height: math.unit(24, "meters")
  21612. },
  21613. {
  21614. name: "Huge",
  21615. height: math.unit(80, "meters")
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21621. {
  21622. front: {
  21623. height: math.unit(6 + 2 / 12, "feet"),
  21624. weight: math.unit(153, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/luca-cervicum/front.svg",
  21628. extra: 370 / 327,
  21629. bottom: 0.015
  21630. }
  21631. },
  21632. back: {
  21633. height: math.unit(6 + 2 / 12, "feet"),
  21634. weight: math.unit(153, "lb"),
  21635. name: "Back",
  21636. image: {
  21637. source: "./media/characters/luca-cervicum/back.svg",
  21638. extra: 367 / 333,
  21639. bottom: 0.005
  21640. }
  21641. },
  21642. frontGear: {
  21643. height: math.unit(6 + 2 / 12, "feet"),
  21644. weight: math.unit(173, "lb"),
  21645. name: "Front (Gear)",
  21646. image: {
  21647. source: "./media/characters/luca-cervicum/front-gear.svg",
  21648. extra: 377 / 333,
  21649. bottom: 0.006
  21650. }
  21651. },
  21652. },
  21653. [
  21654. {
  21655. name: "Normal",
  21656. height: math.unit(6 + 2 / 12, "feet"),
  21657. default: true
  21658. },
  21659. ]
  21660. ))
  21661. characterMakers.push(() => makeCharacter(
  21662. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21663. {
  21664. front: {
  21665. height: math.unit(6 + 1 / 12, "feet"),
  21666. weight: math.unit(304, "lb"),
  21667. name: "Front",
  21668. image: {
  21669. source: "./media/characters/oliver/front.svg",
  21670. extra: 157 / 143,
  21671. bottom: 0.08
  21672. }
  21673. },
  21674. },
  21675. [
  21676. {
  21677. name: "Normal",
  21678. height: math.unit(6 + 1 / 12, "feet"),
  21679. default: true
  21680. },
  21681. ]
  21682. ))
  21683. characterMakers.push(() => makeCharacter(
  21684. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21685. {
  21686. front: {
  21687. height: math.unit(5 + 7 / 12, "feet"),
  21688. weight: math.unit(140, "lb"),
  21689. name: "Front",
  21690. image: {
  21691. source: "./media/characters/shane/front.svg",
  21692. extra: 304 / 289,
  21693. bottom: 0.005
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(5 + 7 / 12, "feet"),
  21701. default: true
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(5 + 9 / 12, "feet"),
  21710. weight: math.unit(178, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/shin/front.svg",
  21714. extra: 159 / 151,
  21715. bottom: 0.015
  21716. }
  21717. },
  21718. },
  21719. [
  21720. {
  21721. name: "Normal",
  21722. height: math.unit(5 + 9 / 12, "feet"),
  21723. default: true
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21729. {
  21730. front: {
  21731. height: math.unit(5 + 10 / 12, "feet"),
  21732. weight: math.unit(168, "lb"),
  21733. name: "Front",
  21734. image: {
  21735. source: "./media/characters/xerxes/front.svg",
  21736. extra: 282 / 260,
  21737. bottom: 0.045
  21738. }
  21739. },
  21740. },
  21741. [
  21742. {
  21743. name: "Normal",
  21744. height: math.unit(5 + 10 / 12, "feet"),
  21745. default: true
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(6 + 7 / 12, "feet"),
  21754. weight: math.unit(208, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/chaska/front.svg",
  21758. extra: 332 / 319,
  21759. bottom: 0.015
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(6 + 7 / 12, "feet"),
  21767. default: true
  21768. },
  21769. ]
  21770. ))
  21771. characterMakers.push(() => makeCharacter(
  21772. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21773. {
  21774. front: {
  21775. height: math.unit(5 + 8 / 12, "feet"),
  21776. weight: math.unit(208, "lb"),
  21777. name: "Front",
  21778. image: {
  21779. source: "./media/characters/enuk/front.svg",
  21780. extra: 437 / 406,
  21781. bottom: 0.02
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(5 + 8 / 12, "feet"),
  21789. default: true
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(5 + 10 / 12, "feet"),
  21798. weight: math.unit(252, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/bruun/front.svg",
  21802. extra: 197 / 187,
  21803. bottom: 0.012
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Normal",
  21810. height: math.unit(5 + 10 / 12, "feet"),
  21811. default: true
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(6 + 10 / 12, "feet"),
  21820. weight: math.unit(255, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/alexeev/front.svg",
  21824. extra: 213 / 200,
  21825. bottom: 0.05
  21826. }
  21827. },
  21828. },
  21829. [
  21830. {
  21831. name: "Normal",
  21832. height: math.unit(6 + 10 / 12, "feet"),
  21833. default: true
  21834. },
  21835. ]
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21839. {
  21840. front: {
  21841. height: math.unit(2 + 8 / 12, "feet"),
  21842. weight: math.unit(22, "lb"),
  21843. name: "Front",
  21844. image: {
  21845. source: "./media/characters/evelyn/front.svg",
  21846. extra: 208 / 180
  21847. }
  21848. },
  21849. },
  21850. [
  21851. {
  21852. name: "Normal",
  21853. height: math.unit(2 + 8 / 12, "feet"),
  21854. default: true
  21855. },
  21856. ]
  21857. ))
  21858. characterMakers.push(() => makeCharacter(
  21859. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21860. {
  21861. front: {
  21862. height: math.unit(5 + 9 / 12, "feet"),
  21863. weight: math.unit(139, "lb"),
  21864. name: "Front",
  21865. image: {
  21866. source: "./media/characters/inca/front.svg",
  21867. extra: 294 / 291,
  21868. bottom: 0.03
  21869. }
  21870. },
  21871. },
  21872. [
  21873. {
  21874. name: "Normal",
  21875. height: math.unit(5 + 9 / 12, "feet"),
  21876. default: true
  21877. },
  21878. ]
  21879. ))
  21880. characterMakers.push(() => makeCharacter(
  21881. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21882. {
  21883. front: {
  21884. height: math.unit(6 + 3 / 12, "feet"),
  21885. weight: math.unit(185, "lb"),
  21886. name: "Front",
  21887. image: {
  21888. source: "./media/characters/mera/front.svg",
  21889. extra: 291 / 277,
  21890. bottom: 0.03
  21891. }
  21892. },
  21893. },
  21894. [
  21895. {
  21896. name: "Normal",
  21897. height: math.unit(6 + 3 / 12, "feet"),
  21898. default: true
  21899. },
  21900. ]
  21901. ))
  21902. characterMakers.push(() => makeCharacter(
  21903. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21904. {
  21905. front: {
  21906. height: math.unit(6 + 7 / 12, "feet"),
  21907. weight: math.unit(160, "lb"),
  21908. name: "Front",
  21909. image: {
  21910. source: "./media/characters/ceres/front.svg",
  21911. extra: 1023 / 950,
  21912. bottom: 0.027
  21913. }
  21914. },
  21915. back: {
  21916. height: math.unit(6 + 7 / 12, "feet"),
  21917. weight: math.unit(160, "lb"),
  21918. name: "Back",
  21919. image: {
  21920. source: "./media/characters/ceres/back.svg",
  21921. extra: 1023 / 950
  21922. }
  21923. },
  21924. },
  21925. [
  21926. {
  21927. name: "Normal",
  21928. height: math.unit(6 + 7 / 12, "feet"),
  21929. default: true
  21930. },
  21931. ]
  21932. ))
  21933. characterMakers.push(() => makeCharacter(
  21934. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21935. {
  21936. front: {
  21937. height: math.unit(5 + 10 / 12, "feet"),
  21938. weight: math.unit(150, "lb"),
  21939. name: "Front",
  21940. image: {
  21941. source: "./media/characters/kris/front.svg",
  21942. extra: 885 / 803,
  21943. bottom: 0.03
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(5 + 10 / 12, "feet"),
  21951. default: true
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21957. {
  21958. dragon_front: {
  21959. height: math.unit(5, "feet"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/taluthus/dragon-front.svg",
  21963. extra: 1203/1098,
  21964. bottom: 46/1249
  21965. },
  21966. form: "dragon",
  21967. default: true
  21968. },
  21969. dragon_maw: {
  21970. height: math.unit(2.35, "feet"),
  21971. name: "Maw",
  21972. image: {
  21973. source: "./media/characters/taluthus/dragon-maw.svg"
  21974. },
  21975. form: "dragon",
  21976. },
  21977. kitsune_front: {
  21978. height: math.unit(7, "feet"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/taluthus/kitsune-front.svg",
  21982. extra: 900/841,
  21983. bottom: 65/965
  21984. },
  21985. form: "kitsune",
  21986. default: true
  21987. },
  21988. },
  21989. [
  21990. {
  21991. name: "Normal",
  21992. height: math.unit(5, "feet"),
  21993. form: "dragon",
  21994. default: true,
  21995. },
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(7, "feet"),
  21999. form: "kitsune",
  22000. default: true
  22001. },
  22002. {
  22003. name: "Macro",
  22004. height: math.unit(300, "feet"),
  22005. allForms: true
  22006. },
  22007. ],
  22008. {
  22009. "dragon": {
  22010. name: "Dragon",
  22011. default: true
  22012. },
  22013. "kitsune": {
  22014. name: "Kitsune",
  22015. },
  22016. }
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(5 + 9 / 12, "feet"),
  22023. weight: math.unit(145, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/dawn/front.svg",
  22027. extra: 2094 / 2016,
  22028. bottom: 0.025
  22029. }
  22030. },
  22031. back: {
  22032. height: math.unit(5 + 9 / 12, "feet"),
  22033. weight: math.unit(160, "lb"),
  22034. name: "Back",
  22035. image: {
  22036. source: "./media/characters/dawn/back.svg",
  22037. extra: 2112 / 2080,
  22038. bottom: 0.005
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(6 + 7 / 12, "feet"),
  22046. default: true
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22052. {
  22053. anthro: {
  22054. height: math.unit(8 + 3 / 12, "feet"),
  22055. weight: math.unit(450, "lb"),
  22056. name: "Anthro",
  22057. image: {
  22058. source: "./media/characters/arador/anthro.svg",
  22059. extra: 1835 / 1718,
  22060. bottom: 0.025
  22061. }
  22062. },
  22063. feral: {
  22064. height: math.unit(4, "feet"),
  22065. weight: math.unit(200, "lb"),
  22066. name: "Feral",
  22067. image: {
  22068. source: "./media/characters/arador/feral.svg",
  22069. extra: 1683 / 1514,
  22070. bottom: 0.07
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Normal",
  22077. height: math.unit(8 + 3 / 12, "feet")
  22078. },
  22079. {
  22080. name: "Macro",
  22081. height: math.unit(82.5, "feet"),
  22082. default: true
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(5 + 10 / 12, "feet"),
  22091. weight: math.unit(125, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/dharsi/front.svg",
  22095. extra: 716 / 630,
  22096. bottom: 0.035
  22097. }
  22098. },
  22099. },
  22100. [
  22101. {
  22102. name: "Nano",
  22103. height: math.unit(100, "nm")
  22104. },
  22105. {
  22106. name: "Micro",
  22107. height: math.unit(2, "inches")
  22108. },
  22109. {
  22110. name: "Normal",
  22111. height: math.unit(5 + 10 / 12, "feet"),
  22112. default: true
  22113. },
  22114. {
  22115. name: "Macro",
  22116. height: math.unit(1000, "feet")
  22117. },
  22118. {
  22119. name: "Megamacro",
  22120. height: math.unit(10, "miles")
  22121. },
  22122. {
  22123. name: "Gigamacro",
  22124. height: math.unit(3000, "miles")
  22125. },
  22126. {
  22127. name: "Teramacro",
  22128. height: math.unit(500000, "miles")
  22129. },
  22130. {
  22131. name: "Teramacro+",
  22132. height: math.unit(30, "galaxies")
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22138. {
  22139. front: {
  22140. height: math.unit(6, "feet"),
  22141. weight: math.unit(150, "lb"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/deathy/front.svg",
  22145. extra: 1552 / 1463,
  22146. bottom: 0.025
  22147. }
  22148. },
  22149. side: {
  22150. height: math.unit(6, "feet"),
  22151. weight: math.unit(150, "lb"),
  22152. name: "Side",
  22153. image: {
  22154. source: "./media/characters/deathy/side.svg",
  22155. extra: 1604 / 1455,
  22156. bottom: 0.025
  22157. }
  22158. },
  22159. back: {
  22160. height: math.unit(6, "feet"),
  22161. weight: math.unit(150, "lb"),
  22162. name: "Back",
  22163. image: {
  22164. source: "./media/characters/deathy/back.svg",
  22165. extra: 1580 / 1463,
  22166. bottom: 0.005
  22167. }
  22168. },
  22169. },
  22170. [
  22171. {
  22172. name: "Micro",
  22173. height: math.unit(5, "millimeters")
  22174. },
  22175. {
  22176. name: "Normal",
  22177. height: math.unit(6 + 5 / 12, "feet"),
  22178. default: true
  22179. },
  22180. ]
  22181. ))
  22182. characterMakers.push(() => makeCharacter(
  22183. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22184. {
  22185. front: {
  22186. height: math.unit(16, "feet"),
  22187. weight: math.unit(4000, "lb"),
  22188. name: "Front",
  22189. image: {
  22190. source: "./media/characters/juniper/front.svg",
  22191. bottom: 0.04
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Normal",
  22198. height: math.unit(16, "feet"),
  22199. default: true
  22200. },
  22201. ]
  22202. ))
  22203. characterMakers.push(() => makeCharacter(
  22204. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22205. {
  22206. front: {
  22207. height: math.unit(6, "feet"),
  22208. weight: math.unit(150, "lb"),
  22209. name: "Front",
  22210. image: {
  22211. source: "./media/characters/hipster/front.svg",
  22212. extra: 1312 / 1209,
  22213. bottom: 0.025
  22214. }
  22215. },
  22216. back: {
  22217. height: math.unit(6, "feet"),
  22218. weight: math.unit(150, "lb"),
  22219. name: "Back",
  22220. image: {
  22221. source: "./media/characters/hipster/back.svg",
  22222. extra: 1281 / 1196,
  22223. bottom: 0.01
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Micro",
  22230. height: math.unit(1, "mm")
  22231. },
  22232. {
  22233. name: "Normal",
  22234. height: math.unit(4, "inches"),
  22235. default: true
  22236. },
  22237. {
  22238. name: "Macro",
  22239. height: math.unit(500, "feet")
  22240. },
  22241. {
  22242. name: "Megamacro",
  22243. height: math.unit(1000, "miles")
  22244. },
  22245. ]
  22246. ))
  22247. characterMakers.push(() => makeCharacter(
  22248. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22249. {
  22250. front: {
  22251. height: math.unit(6, "feet"),
  22252. weight: math.unit(150, "lb"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/tendirmuldr/front.svg",
  22256. extra: 1878 / 1772,
  22257. bottom: 0.015
  22258. }
  22259. },
  22260. },
  22261. [
  22262. {
  22263. name: "Megamacro",
  22264. height: math.unit(1500, "miles"),
  22265. default: true
  22266. },
  22267. ]
  22268. ))
  22269. characterMakers.push(() => makeCharacter(
  22270. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22271. {
  22272. front: {
  22273. height: math.unit(14, "feet"),
  22274. weight: math.unit(12000, "lb"),
  22275. name: "Front",
  22276. image: {
  22277. source: "./media/characters/mort/front.svg",
  22278. extra: 365 / 318,
  22279. bottom: 0.01
  22280. }
  22281. },
  22282. side: {
  22283. height: math.unit(14, "feet"),
  22284. weight: math.unit(12000, "lb"),
  22285. name: "Side",
  22286. image: {
  22287. source: "./media/characters/mort/side.svg",
  22288. extra: 365 / 318,
  22289. bottom: 0.052
  22290. },
  22291. default: true
  22292. },
  22293. back: {
  22294. height: math.unit(14, "feet"),
  22295. weight: math.unit(12000, "lb"),
  22296. name: "Back",
  22297. image: {
  22298. source: "./media/characters/mort/back.svg",
  22299. extra: 371 / 332,
  22300. bottom: 0.18
  22301. }
  22302. },
  22303. },
  22304. [
  22305. {
  22306. name: "Normal",
  22307. height: math.unit(14, "feet"),
  22308. default: true
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22314. {
  22315. front: {
  22316. height: math.unit(8, "feet"),
  22317. weight: math.unit(1, "ton"),
  22318. name: "Front",
  22319. image: {
  22320. source: "./media/characters/lycoa/front.svg",
  22321. extra: 1836/1728,
  22322. bottom: 81/1917
  22323. }
  22324. },
  22325. back: {
  22326. height: math.unit(8, "feet"),
  22327. weight: math.unit(1, "ton"),
  22328. name: "Back",
  22329. image: {
  22330. source: "./media/characters/lycoa/back.svg",
  22331. extra: 1785/1720,
  22332. bottom: 91/1876
  22333. }
  22334. },
  22335. head: {
  22336. height: math.unit(1.6243, "feet"),
  22337. name: "Head",
  22338. image: {
  22339. source: "./media/characters/lycoa/head.svg",
  22340. extra: 1011/782,
  22341. bottom: 0/1011
  22342. }
  22343. },
  22344. tailmaw: {
  22345. height: math.unit(1.9, "feet"),
  22346. name: "Tailmaw",
  22347. image: {
  22348. source: "./media/characters/lycoa/tailmaw.svg"
  22349. }
  22350. },
  22351. tentacles: {
  22352. height: math.unit(2.1, "feet"),
  22353. name: "Tentacles",
  22354. image: {
  22355. source: "./media/characters/lycoa/tentacles.svg"
  22356. }
  22357. },
  22358. dick: {
  22359. height: math.unit(1.73, "feet"),
  22360. name: "Dick",
  22361. image: {
  22362. source: "./media/characters/lycoa/dick.svg"
  22363. }
  22364. },
  22365. },
  22366. [
  22367. {
  22368. name: "Normal",
  22369. height: math.unit(8, "feet"),
  22370. default: true
  22371. },
  22372. {
  22373. name: "Macro",
  22374. height: math.unit(30, "feet")
  22375. },
  22376. ]
  22377. ))
  22378. characterMakers.push(() => makeCharacter(
  22379. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22380. {
  22381. front: {
  22382. height: math.unit(4 + 2 / 12, "feet"),
  22383. weight: math.unit(70, "lb"),
  22384. name: "Front",
  22385. image: {
  22386. source: "./media/characters/naldara/front.svg",
  22387. extra: 1664/1387,
  22388. bottom: 81/1745
  22389. },
  22390. form: "anthro",
  22391. default: true
  22392. },
  22393. naga: {
  22394. height: math.unit(20, "feet"),
  22395. weight: math.unit(15000, "kg"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/naldara/naga.svg",
  22399. extra: 1590/1396,
  22400. bottom: 285/1875
  22401. },
  22402. form: "naga",
  22403. default: true
  22404. },
  22405. },
  22406. [
  22407. {
  22408. name: "Normal",
  22409. height: math.unit(4 + 2 / 12, "feet"),
  22410. form: "anthro",
  22411. default: true
  22412. },
  22413. {
  22414. name: "Normal",
  22415. height: math.unit(20, "feet"),
  22416. form: "naga",
  22417. default: true
  22418. },
  22419. ],
  22420. {
  22421. "anthro": {
  22422. name: "Anthro",
  22423. default: true
  22424. },
  22425. "naga": {
  22426. name: "Naga"
  22427. }
  22428. }
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(13 + 7 / 12, "feet"),
  22435. weight: math.unit(1500, "lb"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/briar/front.svg",
  22439. extra: 1223/1157,
  22440. bottom: 123/1346
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Normal",
  22447. height: math.unit(13 + 7 / 12, "feet"),
  22448. default: true
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22454. {
  22455. side: {
  22456. height: math.unit(16, "feet"),
  22457. weight: math.unit(500, "lb"),
  22458. name: "Side",
  22459. image: {
  22460. source: "./media/characters/vanguard/side.svg",
  22461. extra: 1022/914,
  22462. bottom: 30/1052
  22463. }
  22464. },
  22465. sideAlt: {
  22466. height: math.unit(10, "feet"),
  22467. weight: math.unit(500, "lb"),
  22468. name: "Side (Alt)",
  22469. image: {
  22470. source: "./media/characters/vanguard/side-alt.svg",
  22471. extra: 502 / 425,
  22472. bottom: 0.087
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Normal",
  22479. height: math.unit(17.71, "feet"),
  22480. default: true
  22481. },
  22482. ]
  22483. ))
  22484. characterMakers.push(() => makeCharacter(
  22485. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22486. {
  22487. front: {
  22488. height: math.unit(7.5, "feet"),
  22489. weight: math.unit(2, "lb"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/artemis/work-safe-front.svg",
  22493. extra: 1192 / 1075,
  22494. bottom: 0.07
  22495. },
  22496. form: "work-safe",
  22497. default: true
  22498. },
  22499. frontNsfw: {
  22500. height: math.unit(7.5, "feet"),
  22501. weight: math.unit(2, "lb"),
  22502. name: "Front",
  22503. image: {
  22504. source: "./media/characters/artemis/calibrating-front.svg",
  22505. extra: 1192 / 1075,
  22506. bottom: 0.07
  22507. },
  22508. form: "calibrating",
  22509. default: true
  22510. },
  22511. frontNsfwer: {
  22512. height: math.unit(7.5, "feet"),
  22513. weight: math.unit(2, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/artemis/oversize-load-front.svg",
  22517. extra: 1192 / 1075,
  22518. bottom: 0.07
  22519. },
  22520. form: "oversize-load",
  22521. default: true
  22522. },
  22523. side: {
  22524. height: math.unit(7.5, "feet"),
  22525. weight: math.unit(2, "lb"),
  22526. name: "Side",
  22527. image: {
  22528. source: "./media/characters/artemis/work-safe-side.svg",
  22529. extra: 1192 / 1075,
  22530. bottom: 0.07
  22531. },
  22532. form: "work-safe"
  22533. },
  22534. sideNsfw: {
  22535. height: math.unit(7.5, "feet"),
  22536. weight: math.unit(2, "lb"),
  22537. name: "Side",
  22538. image: {
  22539. source: "./media/characters/artemis/calibrating-side.svg",
  22540. extra: 1192 / 1075,
  22541. bottom: 0.07
  22542. },
  22543. form: "calibrating"
  22544. },
  22545. sideNsfwer: {
  22546. height: math.unit(7.5, "feet"),
  22547. weight: math.unit(2, "lb"),
  22548. name: "Side",
  22549. image: {
  22550. source: "./media/characters/artemis/oversize-load-side.svg",
  22551. extra: 1192 / 1075,
  22552. bottom: 0.07
  22553. },
  22554. form: "oversize-load"
  22555. },
  22556. maw: {
  22557. height: math.unit(1.1, "feet"),
  22558. name: "Maw",
  22559. image: {
  22560. source: "./media/characters/artemis/maw.svg"
  22561. },
  22562. form: "work-safe"
  22563. },
  22564. stomach: {
  22565. height: math.unit(0.95, "feet"),
  22566. name: "Stomach",
  22567. image: {
  22568. source: "./media/characters/artemis/stomach.svg"
  22569. },
  22570. form: "work-safe"
  22571. },
  22572. dickCanine: {
  22573. height: math.unit(1, "feet"),
  22574. name: "Dick (Canine)",
  22575. image: {
  22576. source: "./media/characters/artemis/dick-canine.svg"
  22577. },
  22578. form: "calibrating"
  22579. },
  22580. dickEquine: {
  22581. height: math.unit(0.85, "feet"),
  22582. name: "Dick (Equine)",
  22583. image: {
  22584. source: "./media/characters/artemis/dick-equine.svg"
  22585. },
  22586. form: "calibrating"
  22587. },
  22588. dickExotic: {
  22589. height: math.unit(0.85, "feet"),
  22590. name: "Dick (Exotic)",
  22591. image: {
  22592. source: "./media/characters/artemis/dick-exotic.svg"
  22593. },
  22594. form: "calibrating"
  22595. },
  22596. dickCanineBigger: {
  22597. height: math.unit(1 * 1.33, "feet"),
  22598. name: "Dick (Canine)",
  22599. image: {
  22600. source: "./media/characters/artemis/dick-canine.svg"
  22601. },
  22602. form: "oversize-load"
  22603. },
  22604. dickEquineBigger: {
  22605. height: math.unit(0.85 * 1.33, "feet"),
  22606. name: "Dick (Equine)",
  22607. image: {
  22608. source: "./media/characters/artemis/dick-equine.svg"
  22609. },
  22610. form: "oversize-load"
  22611. },
  22612. dickExoticBigger: {
  22613. height: math.unit(0.85 * 1.33, "feet"),
  22614. name: "Dick (Exotic)",
  22615. image: {
  22616. source: "./media/characters/artemis/dick-exotic.svg"
  22617. },
  22618. form: "oversize-load"
  22619. },
  22620. },
  22621. [
  22622. {
  22623. name: "Normal",
  22624. height: math.unit(7.5, "feet"),
  22625. form: "work-safe",
  22626. default: true
  22627. },
  22628. {
  22629. name: "Normal",
  22630. height: math.unit(7.5, "feet"),
  22631. form: "calibrating",
  22632. default: true
  22633. },
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(7.5, "feet"),
  22637. form: "oversize-load",
  22638. default: true
  22639. },
  22640. {
  22641. name: "Enlarged",
  22642. height: math.unit(12, "feet"),
  22643. form: "work-safe",
  22644. },
  22645. {
  22646. name: "Enlarged",
  22647. height: math.unit(12, "feet"),
  22648. form: "calibrating",
  22649. },
  22650. {
  22651. name: "Enlarged",
  22652. height: math.unit(12, "feet"),
  22653. form: "oversize-load",
  22654. },
  22655. ],
  22656. {
  22657. "work-safe": {
  22658. name: "Work-Safe",
  22659. default: true
  22660. },
  22661. "calibrating": {
  22662. name: "Calibrating"
  22663. },
  22664. "oversize-load": {
  22665. name: "Oversize Load"
  22666. }
  22667. }
  22668. ))
  22669. characterMakers.push(() => makeCharacter(
  22670. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22671. {
  22672. front: {
  22673. height: math.unit(5 + 3 / 12, "feet"),
  22674. weight: math.unit(160, "lb"),
  22675. name: "Front",
  22676. image: {
  22677. source: "./media/characters/kira/front.svg",
  22678. extra: 906 / 786,
  22679. bottom: 0.01
  22680. }
  22681. },
  22682. back: {
  22683. height: math.unit(5 + 3 / 12, "feet"),
  22684. weight: math.unit(160, "lb"),
  22685. name: "Back",
  22686. image: {
  22687. source: "./media/characters/kira/back.svg",
  22688. extra: 882 / 757,
  22689. bottom: 0.005
  22690. }
  22691. },
  22692. frontDressed: {
  22693. height: math.unit(5 + 3 / 12, "feet"),
  22694. weight: math.unit(160, "lb"),
  22695. name: "Front (Dressed)",
  22696. image: {
  22697. source: "./media/characters/kira/front-dressed.svg",
  22698. extra: 906 / 786,
  22699. bottom: 0.01
  22700. }
  22701. },
  22702. beans: {
  22703. height: math.unit(0.92, "feet"),
  22704. name: "Beans",
  22705. image: {
  22706. source: "./media/characters/kira/beans.svg"
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Normal",
  22713. height: math.unit(5 + 3 / 12, "feet"),
  22714. default: true
  22715. },
  22716. ]
  22717. ))
  22718. characterMakers.push(() => makeCharacter(
  22719. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22720. {
  22721. front: {
  22722. height: math.unit(5 + 4 / 12, "feet"),
  22723. weight: math.unit(145, "lb"),
  22724. name: "Front",
  22725. image: {
  22726. source: "./media/characters/scramble/front.svg",
  22727. extra: 763 / 727,
  22728. bottom: 0.05
  22729. }
  22730. },
  22731. back: {
  22732. height: math.unit(5 + 4 / 12, "feet"),
  22733. weight: math.unit(145, "lb"),
  22734. name: "Back",
  22735. image: {
  22736. source: "./media/characters/scramble/back.svg",
  22737. extra: 826 / 737,
  22738. bottom: 0.002
  22739. }
  22740. },
  22741. },
  22742. [
  22743. {
  22744. name: "Normal",
  22745. height: math.unit(5 + 4 / 12, "feet"),
  22746. default: true
  22747. },
  22748. ]
  22749. ))
  22750. characterMakers.push(() => makeCharacter(
  22751. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22752. {
  22753. side: {
  22754. height: math.unit(6 + 2 / 12, "feet"),
  22755. weight: math.unit(190, "lb"),
  22756. name: "Side",
  22757. image: {
  22758. source: "./media/characters/biscuit/side.svg",
  22759. extra: 858 / 791,
  22760. bottom: 0.044
  22761. }
  22762. },
  22763. },
  22764. [
  22765. {
  22766. name: "Normal",
  22767. height: math.unit(6 + 2 / 12, "feet"),
  22768. default: true
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22774. {
  22775. front: {
  22776. height: math.unit(5 + 2 / 12, "feet"),
  22777. weight: math.unit(120, "lb"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/poffin/front.svg",
  22781. extra: 786 / 680,
  22782. bottom: 0.005
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Normal",
  22789. height: math.unit(5 + 2 / 12, "feet"),
  22790. default: true
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22796. {
  22797. front: {
  22798. height: math.unit(6 + 3 / 12, "feet"),
  22799. weight: math.unit(519, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/dhari/front.svg",
  22803. extra: 1048 / 946,
  22804. bottom: 0.015
  22805. }
  22806. },
  22807. back: {
  22808. height: math.unit(6 + 3 / 12, "feet"),
  22809. weight: math.unit(519, "lb"),
  22810. name: "Back",
  22811. image: {
  22812. source: "./media/characters/dhari/back.svg",
  22813. extra: 1048 / 931,
  22814. bottom: 0.005
  22815. }
  22816. },
  22817. frontDressed: {
  22818. height: math.unit(6 + 3 / 12, "feet"),
  22819. weight: math.unit(519, "lb"),
  22820. name: "Front (Dressed)",
  22821. image: {
  22822. source: "./media/characters/dhari/front-dressed.svg",
  22823. extra: 1713 / 1546,
  22824. bottom: 0.02
  22825. }
  22826. },
  22827. backDressed: {
  22828. height: math.unit(6 + 3 / 12, "feet"),
  22829. weight: math.unit(519, "lb"),
  22830. name: "Back (Dressed)",
  22831. image: {
  22832. source: "./media/characters/dhari/back-dressed.svg",
  22833. extra: 1699 / 1537,
  22834. bottom: 0.01
  22835. }
  22836. },
  22837. maw: {
  22838. height: math.unit(0.95, "feet"),
  22839. name: "Maw",
  22840. image: {
  22841. source: "./media/characters/dhari/maw.svg"
  22842. }
  22843. },
  22844. wereFront: {
  22845. height: math.unit(12 + 8 / 12, "feet"),
  22846. weight: math.unit(4000, "lb"),
  22847. name: "Front (Were)",
  22848. image: {
  22849. source: "./media/characters/dhari/were-front.svg",
  22850. extra: 1065 / 969,
  22851. bottom: 0.015
  22852. }
  22853. },
  22854. wereBack: {
  22855. height: math.unit(12 + 8 / 12, "feet"),
  22856. weight: math.unit(4000, "lb"),
  22857. name: "Back (Were)",
  22858. image: {
  22859. source: "./media/characters/dhari/were-back.svg",
  22860. extra: 1065 / 969,
  22861. bottom: 0.012
  22862. }
  22863. },
  22864. wereMaw: {
  22865. height: math.unit(0.625, "meters"),
  22866. name: "Maw (Were)",
  22867. image: {
  22868. source: "./media/characters/dhari/were-maw.svg"
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Normal",
  22875. height: math.unit(6 + 3 / 12, "feet"),
  22876. default: true
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22882. {
  22883. anthro: {
  22884. height: math.unit(5 + 7 / 12, "feet"),
  22885. weight: math.unit(175, "lb"),
  22886. name: "Anthro",
  22887. image: {
  22888. source: "./media/characters/rena-dyne/anthro.svg",
  22889. extra: 1849 / 1785,
  22890. bottom: 0.005
  22891. }
  22892. },
  22893. taur: {
  22894. height: math.unit(15 + 6 / 12, "feet"),
  22895. weight: math.unit(8000, "lb"),
  22896. name: "Taur",
  22897. image: {
  22898. source: "./media/characters/rena-dyne/taur.svg",
  22899. extra: 2315 / 2234,
  22900. bottom: 0.033
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "Normal",
  22907. height: math.unit(5 + 7 / 12, "feet"),
  22908. default: true
  22909. },
  22910. ]
  22911. ))
  22912. characterMakers.push(() => makeCharacter(
  22913. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22914. {
  22915. front: {
  22916. height: math.unit(8, "feet"),
  22917. weight: math.unit(600, "lb"),
  22918. name: "Front",
  22919. image: {
  22920. source: "./media/characters/weremeep/front.svg",
  22921. extra: 970/849,
  22922. bottom: 7/977
  22923. }
  22924. },
  22925. },
  22926. [
  22927. {
  22928. name: "Normal",
  22929. height: math.unit(8, "feet"),
  22930. default: true
  22931. },
  22932. {
  22933. name: "Lorg",
  22934. height: math.unit(12, "feet")
  22935. },
  22936. {
  22937. name: "Oh Lawd She Comin'",
  22938. height: math.unit(20, "feet")
  22939. },
  22940. ]
  22941. ))
  22942. characterMakers.push(() => makeCharacter(
  22943. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22944. {
  22945. front: {
  22946. height: math.unit(4, "feet"),
  22947. weight: math.unit(90, "lb"),
  22948. name: "Front",
  22949. image: {
  22950. source: "./media/characters/reza/front.svg",
  22951. extra: 1183 / 1111,
  22952. bottom: 0.017
  22953. }
  22954. },
  22955. back: {
  22956. height: math.unit(4, "feet"),
  22957. weight: math.unit(90, "lb"),
  22958. name: "Back",
  22959. image: {
  22960. source: "./media/characters/reza/back.svg",
  22961. extra: 1183 / 1111,
  22962. bottom: 0.01
  22963. }
  22964. },
  22965. drake: {
  22966. height: math.unit(30, "feet"),
  22967. weight: math.unit(246960, "lb"),
  22968. name: "Drake",
  22969. image: {
  22970. source: "./media/characters/reza/drake.svg",
  22971. extra: 2350 / 2024,
  22972. bottom: 60.7 / 2403
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Normal",
  22979. height: math.unit(4, "feet"),
  22980. default: true
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22986. {
  22987. side: {
  22988. height: math.unit(15, "feet"),
  22989. weight: math.unit(14, "tons"),
  22990. name: "Side",
  22991. image: {
  22992. source: "./media/characters/athea/side.svg",
  22993. extra: 960 / 540,
  22994. bottom: 0.003
  22995. }
  22996. },
  22997. sitting: {
  22998. height: math.unit(6 * 2.85, "feet"),
  22999. weight: math.unit(14, "tons"),
  23000. name: "Sitting",
  23001. image: {
  23002. source: "./media/characters/athea/sitting.svg",
  23003. extra: 621 / 581,
  23004. bottom: 0.075
  23005. }
  23006. },
  23007. maw: {
  23008. height: math.unit(7.59498031496063, "feet"),
  23009. name: "Maw",
  23010. image: {
  23011. source: "./media/characters/athea/maw.svg"
  23012. }
  23013. },
  23014. },
  23015. [
  23016. {
  23017. name: "Lap Cat",
  23018. height: math.unit(2.5, "feet")
  23019. },
  23020. {
  23021. name: "Minimacro",
  23022. height: math.unit(15, "feet"),
  23023. default: true
  23024. },
  23025. {
  23026. name: "Macro",
  23027. height: math.unit(120, "feet")
  23028. },
  23029. {
  23030. name: "Macro+",
  23031. height: math.unit(640, "feet")
  23032. },
  23033. {
  23034. name: "Colossus",
  23035. height: math.unit(2.2, "miles")
  23036. },
  23037. ]
  23038. ))
  23039. characterMakers.push(() => makeCharacter(
  23040. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23041. {
  23042. front: {
  23043. height: math.unit(8 + 8 / 12, "feet"),
  23044. weight: math.unit(130, "kg"),
  23045. name: "Front",
  23046. image: {
  23047. source: "./media/characters/seroko/front.svg",
  23048. extra: 1385 / 1280,
  23049. bottom: 0.025
  23050. }
  23051. },
  23052. back: {
  23053. height: math.unit(8 + 8 / 12, "feet"),
  23054. weight: math.unit(130, "kg"),
  23055. name: "Back",
  23056. image: {
  23057. source: "./media/characters/seroko/back.svg",
  23058. extra: 1369 / 1238,
  23059. bottom: 0.018
  23060. }
  23061. },
  23062. frontDressed: {
  23063. height: math.unit(8 + 8 / 12, "feet"),
  23064. weight: math.unit(130, "kg"),
  23065. name: "Front (Dressed)",
  23066. image: {
  23067. source: "./media/characters/seroko/front-dressed.svg",
  23068. extra: 1366 / 1275,
  23069. bottom: 0.03
  23070. }
  23071. },
  23072. },
  23073. [
  23074. {
  23075. name: "Normal",
  23076. height: math.unit(8 + 8 / 12, "feet"),
  23077. default: true
  23078. },
  23079. ]
  23080. ))
  23081. characterMakers.push(() => makeCharacter(
  23082. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23083. {
  23084. front: {
  23085. height: math.unit(5.5, "feet"),
  23086. weight: math.unit(160, "lb"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/quatzi/front.svg",
  23090. extra: 2346 / 2242,
  23091. bottom: 0.015
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Normal",
  23098. height: math.unit(5.5, "feet"),
  23099. default: true
  23100. },
  23101. {
  23102. name: "Big",
  23103. height: math.unit(7.7, "feet")
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23109. {
  23110. front: {
  23111. height: math.unit(5 + 11 / 12, "feet"),
  23112. weight: math.unit(180, "lb"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/sen/front.svg",
  23116. extra: 1321 / 1254,
  23117. bottom: 0.015
  23118. }
  23119. },
  23120. side: {
  23121. height: math.unit(5 + 11 / 12, "feet"),
  23122. weight: math.unit(180, "lb"),
  23123. name: "Side",
  23124. image: {
  23125. source: "./media/characters/sen/side.svg",
  23126. extra: 1321 / 1254,
  23127. bottom: 0.007
  23128. }
  23129. },
  23130. back: {
  23131. height: math.unit(5 + 11 / 12, "feet"),
  23132. weight: math.unit(180, "lb"),
  23133. name: "Back",
  23134. image: {
  23135. source: "./media/characters/sen/back.svg",
  23136. extra: 1321 / 1254
  23137. }
  23138. },
  23139. },
  23140. [
  23141. {
  23142. name: "Normal",
  23143. height: math.unit(5 + 11 / 12, "feet"),
  23144. default: true
  23145. },
  23146. ]
  23147. ))
  23148. characterMakers.push(() => makeCharacter(
  23149. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23150. {
  23151. front: {
  23152. height: math.unit(166.6, "cm"),
  23153. weight: math.unit(66.6, "kg"),
  23154. name: "Front",
  23155. image: {
  23156. source: "./media/characters/fruity/front.svg",
  23157. extra: 1510 / 1386,
  23158. bottom: 0.04
  23159. }
  23160. },
  23161. back: {
  23162. height: math.unit(166.6, "cm"),
  23163. weight: math.unit(66.6, "lb"),
  23164. name: "Back",
  23165. image: {
  23166. source: "./media/characters/fruity/back.svg",
  23167. extra: 1563 / 1435,
  23168. bottom: 0.005
  23169. }
  23170. },
  23171. },
  23172. [
  23173. {
  23174. name: "Normal",
  23175. height: math.unit(166.6, "cm"),
  23176. default: true
  23177. },
  23178. {
  23179. name: "Demonic",
  23180. height: math.unit(166.6, "feet")
  23181. },
  23182. ]
  23183. ))
  23184. characterMakers.push(() => makeCharacter(
  23185. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23186. {
  23187. side: {
  23188. height: math.unit(10, "feet"),
  23189. weight: math.unit(500, "lb"),
  23190. name: "Side",
  23191. image: {
  23192. source: "./media/characters/zost/side.svg",
  23193. extra: 2870/2533,
  23194. bottom: 252/3122
  23195. }
  23196. },
  23197. mawFront: {
  23198. height: math.unit(1.08, "meters"),
  23199. name: "Maw (Front)",
  23200. image: {
  23201. source: "./media/characters/zost/maw-front.svg"
  23202. }
  23203. },
  23204. mawSide: {
  23205. height: math.unit(2.66, "feet"),
  23206. name: "Maw (Side)",
  23207. image: {
  23208. source: "./media/characters/zost/maw-side.svg"
  23209. }
  23210. },
  23211. wingspan: {
  23212. height: math.unit(7.4, "feet"),
  23213. name: "Wingspan",
  23214. image: {
  23215. source: "./media/characters/zost/wingspan.svg"
  23216. }
  23217. },
  23218. },
  23219. [
  23220. {
  23221. name: "Normal",
  23222. height: math.unit(10, "feet"),
  23223. default: true
  23224. },
  23225. ]
  23226. ))
  23227. characterMakers.push(() => makeCharacter(
  23228. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23229. {
  23230. front: {
  23231. height: math.unit(5 + 4 / 12, "feet"),
  23232. weight: math.unit(120, "lb"),
  23233. name: "Front",
  23234. image: {
  23235. source: "./media/characters/luci/front.svg",
  23236. extra: 1985 / 1884,
  23237. bottom: 0.04
  23238. }
  23239. },
  23240. back: {
  23241. height: math.unit(5 + 4 / 12, "feet"),
  23242. weight: math.unit(120, "lb"),
  23243. name: "Back",
  23244. image: {
  23245. source: "./media/characters/luci/back.svg",
  23246. extra: 1892 / 1791,
  23247. bottom: 0.002
  23248. }
  23249. },
  23250. },
  23251. [
  23252. {
  23253. name: "Normal",
  23254. height: math.unit(5 + 4 / 12, "feet"),
  23255. default: true
  23256. },
  23257. ]
  23258. ))
  23259. characterMakers.push(() => makeCharacter(
  23260. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23261. {
  23262. front: {
  23263. height: math.unit(1500, "feet"),
  23264. weight: math.unit(3.8e6, "tons"),
  23265. name: "Front",
  23266. image: {
  23267. source: "./media/characters/2th/front.svg",
  23268. extra: 3489 / 3350,
  23269. bottom: 0.1
  23270. }
  23271. },
  23272. foot: {
  23273. height: math.unit(461, "feet"),
  23274. name: "Foot",
  23275. image: {
  23276. source: "./media/characters/2th/foot.svg"
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "\"Micro\"",
  23283. height: math.unit(15 + 7 / 12, "feet")
  23284. },
  23285. {
  23286. name: "Normal",
  23287. height: math.unit(1500, "feet"),
  23288. default: true
  23289. },
  23290. {
  23291. name: "Macro",
  23292. height: math.unit(5000, "feet")
  23293. },
  23294. {
  23295. name: "Megamacro",
  23296. height: math.unit(15, "miles")
  23297. },
  23298. {
  23299. name: "Gigamacro",
  23300. height: math.unit(4000, "miles")
  23301. },
  23302. {
  23303. name: "Galactic",
  23304. height: math.unit(50, "AU")
  23305. },
  23306. ]
  23307. ))
  23308. characterMakers.push(() => makeCharacter(
  23309. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23310. {
  23311. front: {
  23312. height: math.unit(5 + 6 / 12, "feet"),
  23313. weight: math.unit(220, "lb"),
  23314. name: "Front",
  23315. image: {
  23316. source: "./media/characters/amethyst/front.svg",
  23317. extra: 2078 / 2040,
  23318. bottom: 0.045
  23319. }
  23320. },
  23321. back: {
  23322. height: math.unit(5 + 6 / 12, "feet"),
  23323. weight: math.unit(220, "lb"),
  23324. name: "Back",
  23325. image: {
  23326. source: "./media/characters/amethyst/back.svg",
  23327. extra: 2021 / 1989,
  23328. bottom: 0.02
  23329. }
  23330. },
  23331. },
  23332. [
  23333. {
  23334. name: "Normal",
  23335. height: math.unit(5 + 6 / 12, "feet"),
  23336. default: true
  23337. },
  23338. ]
  23339. ))
  23340. characterMakers.push(() => makeCharacter(
  23341. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23342. {
  23343. front: {
  23344. height: math.unit(4 + 11 / 12, "feet"),
  23345. weight: math.unit(120, "lb"),
  23346. name: "Front",
  23347. image: {
  23348. source: "./media/characters/yumi-akiyama/front.svg",
  23349. extra: 1327 / 1235,
  23350. bottom: 0.02
  23351. }
  23352. },
  23353. back: {
  23354. height: math.unit(4 + 11 / 12, "feet"),
  23355. weight: math.unit(120, "lb"),
  23356. name: "Back",
  23357. image: {
  23358. source: "./media/characters/yumi-akiyama/back.svg",
  23359. extra: 1287 / 1245,
  23360. bottom: 0.002
  23361. }
  23362. },
  23363. },
  23364. [
  23365. {
  23366. name: "Galactic",
  23367. height: math.unit(50, "galaxies"),
  23368. default: true
  23369. },
  23370. {
  23371. name: "Universal",
  23372. height: math.unit(100, "universes")
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23378. {
  23379. front: {
  23380. height: math.unit(8, "feet"),
  23381. weight: math.unit(500, "lb"),
  23382. name: "Front",
  23383. image: {
  23384. source: "./media/characters/rifter-yrmori/front.svg",
  23385. extra: 1180 / 1125,
  23386. bottom: 0.02
  23387. }
  23388. },
  23389. back: {
  23390. height: math.unit(8, "feet"),
  23391. weight: math.unit(500, "lb"),
  23392. name: "Back",
  23393. image: {
  23394. source: "./media/characters/rifter-yrmori/back.svg",
  23395. extra: 1190 / 1145,
  23396. bottom: 0.001
  23397. }
  23398. },
  23399. wings: {
  23400. height: math.unit(7.75, "feet"),
  23401. weight: math.unit(500, "lb"),
  23402. name: "Wings",
  23403. image: {
  23404. source: "./media/characters/rifter-yrmori/wings.svg",
  23405. extra: 1357 / 1285
  23406. }
  23407. },
  23408. maw: {
  23409. height: math.unit(0.8, "feet"),
  23410. name: "Maw",
  23411. image: {
  23412. source: "./media/characters/rifter-yrmori/maw.svg"
  23413. }
  23414. },
  23415. mawfront: {
  23416. height: math.unit(1.45, "feet"),
  23417. name: "Maw (Front)",
  23418. image: {
  23419. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23420. }
  23421. },
  23422. },
  23423. [
  23424. {
  23425. name: "Normal",
  23426. height: math.unit(8, "feet"),
  23427. default: true
  23428. },
  23429. {
  23430. name: "Macro",
  23431. height: math.unit(42, "meters")
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23437. {
  23438. were: {
  23439. height: math.unit(25 + 6 / 12, "feet"),
  23440. weight: math.unit(10000, "lb"),
  23441. name: "Were",
  23442. image: {
  23443. source: "./media/characters/tahajin/were.svg",
  23444. extra: 801 / 770,
  23445. bottom: 0.042
  23446. }
  23447. },
  23448. aquatic: {
  23449. height: math.unit(6 + 4 / 12, "feet"),
  23450. weight: math.unit(160, "lb"),
  23451. name: "Aquatic",
  23452. image: {
  23453. source: "./media/characters/tahajin/aquatic.svg",
  23454. extra: 572 / 542,
  23455. bottom: 0.04
  23456. }
  23457. },
  23458. chow: {
  23459. height: math.unit(8 + 11 / 12, "feet"),
  23460. weight: math.unit(450, "lb"),
  23461. name: "Chow",
  23462. image: {
  23463. source: "./media/characters/tahajin/chow.svg",
  23464. extra: 660 / 640,
  23465. bottom: 0.015
  23466. }
  23467. },
  23468. demiNaga: {
  23469. height: math.unit(6 + 8 / 12, "feet"),
  23470. weight: math.unit(300, "lb"),
  23471. name: "Demi Naga",
  23472. image: {
  23473. source: "./media/characters/tahajin/demi-naga.svg",
  23474. extra: 643 / 615,
  23475. bottom: 0.1
  23476. }
  23477. },
  23478. data: {
  23479. height: math.unit(5, "inches"),
  23480. weight: math.unit(0.1, "lb"),
  23481. name: "Data",
  23482. image: {
  23483. source: "./media/characters/tahajin/data.svg"
  23484. }
  23485. },
  23486. fluu: {
  23487. height: math.unit(5 + 7 / 12, "feet"),
  23488. weight: math.unit(140, "lb"),
  23489. name: "Fluu",
  23490. image: {
  23491. source: "./media/characters/tahajin/fluu.svg",
  23492. extra: 628 / 592,
  23493. bottom: 0.02
  23494. }
  23495. },
  23496. starWarrior: {
  23497. height: math.unit(4 + 5 / 12, "feet"),
  23498. weight: math.unit(50, "lb"),
  23499. name: "Star Warrior",
  23500. image: {
  23501. source: "./media/characters/tahajin/star-warrior.svg"
  23502. }
  23503. },
  23504. },
  23505. [
  23506. {
  23507. name: "Normal",
  23508. height: math.unit(25 + 6 / 12, "feet"),
  23509. default: true
  23510. },
  23511. ]
  23512. ))
  23513. characterMakers.push(() => makeCharacter(
  23514. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23515. {
  23516. front: {
  23517. height: math.unit(8, "feet"),
  23518. weight: math.unit(350, "lb"),
  23519. name: "Front",
  23520. image: {
  23521. source: "./media/characters/gabira/front.svg",
  23522. extra: 1261/1154,
  23523. bottom: 51/1312
  23524. }
  23525. },
  23526. back: {
  23527. height: math.unit(8, "feet"),
  23528. weight: math.unit(350, "lb"),
  23529. name: "Back",
  23530. image: {
  23531. source: "./media/characters/gabira/back.svg",
  23532. extra: 1265/1163,
  23533. bottom: 46/1311
  23534. }
  23535. },
  23536. head: {
  23537. height: math.unit(2.85, "feet"),
  23538. name: "Head",
  23539. image: {
  23540. source: "./media/characters/gabira/head.svg"
  23541. }
  23542. },
  23543. },
  23544. [
  23545. {
  23546. name: "Normal",
  23547. height: math.unit(8, "feet"),
  23548. default: true
  23549. },
  23550. ]
  23551. ))
  23552. characterMakers.push(() => makeCharacter(
  23553. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23554. {
  23555. front: {
  23556. height: math.unit(5 + 3 / 12, "feet"),
  23557. weight: math.unit(137, "lb"),
  23558. name: "Front",
  23559. image: {
  23560. source: "./media/characters/sasha-katraine/front.svg",
  23561. extra: 1745/1694,
  23562. bottom: 37/1782
  23563. }
  23564. },
  23565. back: {
  23566. height: math.unit(5 + 3 / 12, "feet"),
  23567. weight: math.unit(137, "lb"),
  23568. name: "Back",
  23569. image: {
  23570. source: "./media/characters/sasha-katraine/back.svg",
  23571. extra: 1776/1699,
  23572. bottom: 26/1802
  23573. }
  23574. },
  23575. },
  23576. [
  23577. {
  23578. name: "Micro",
  23579. height: math.unit(5, "inches")
  23580. },
  23581. {
  23582. name: "Normal",
  23583. height: math.unit(5 + 3 / 12, "feet"),
  23584. default: true
  23585. },
  23586. ]
  23587. ))
  23588. characterMakers.push(() => makeCharacter(
  23589. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23590. {
  23591. side: {
  23592. height: math.unit(4, "inches"),
  23593. weight: math.unit(200, "grams"),
  23594. name: "Side",
  23595. image: {
  23596. source: "./media/characters/der/side.svg",
  23597. extra: 719 / 400,
  23598. bottom: 30.6 / 749.9187
  23599. }
  23600. },
  23601. },
  23602. [
  23603. {
  23604. name: "Micro",
  23605. height: math.unit(4, "inches"),
  23606. default: true
  23607. },
  23608. ]
  23609. ))
  23610. characterMakers.push(() => makeCharacter(
  23611. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23612. {
  23613. side: {
  23614. height: math.unit(30, "meters"),
  23615. weight: math.unit(700, "tonnes"),
  23616. name: "Side",
  23617. image: {
  23618. source: "./media/characters/fixerdragon/side.svg",
  23619. extra: (1293.0514 - 116.03) / 1106.86,
  23620. bottom: 116.03 / 1293.0514
  23621. }
  23622. },
  23623. },
  23624. [
  23625. {
  23626. name: "Planck",
  23627. height: math.unit(1.6e-35, "meters")
  23628. },
  23629. {
  23630. name: "Micro",
  23631. height: math.unit(0.4, "meters")
  23632. },
  23633. {
  23634. name: "Normal",
  23635. height: math.unit(30, "meters"),
  23636. default: true
  23637. },
  23638. {
  23639. name: "Megamacro",
  23640. height: math.unit(1.2, "megameters")
  23641. },
  23642. {
  23643. name: "Teramacro",
  23644. height: math.unit(130, "terameters")
  23645. },
  23646. {
  23647. name: "Yottamacro",
  23648. height: math.unit(6200, "yottameters")
  23649. },
  23650. ]
  23651. ));
  23652. characterMakers.push(() => makeCharacter(
  23653. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23654. {
  23655. front: {
  23656. height: math.unit(8, "feet"),
  23657. weight: math.unit(250, "lb"),
  23658. name: "Front",
  23659. image: {
  23660. source: "./media/characters/kite/front.svg",
  23661. extra: 2796 / 2659,
  23662. bottom: 0.002
  23663. }
  23664. },
  23665. },
  23666. [
  23667. {
  23668. name: "Normal",
  23669. height: math.unit(8, "feet"),
  23670. default: true
  23671. },
  23672. {
  23673. name: "Macro",
  23674. height: math.unit(360, "feet")
  23675. },
  23676. {
  23677. name: "Megamacro",
  23678. height: math.unit(1500, "feet")
  23679. },
  23680. ]
  23681. ))
  23682. characterMakers.push(() => makeCharacter(
  23683. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23684. {
  23685. front: {
  23686. height: math.unit(5 + 11/12, "feet"),
  23687. weight: math.unit(170, "lb"),
  23688. name: "Front",
  23689. image: {
  23690. source: "./media/characters/poojawa-vynar/front.svg",
  23691. extra: 1735/1585,
  23692. bottom: 96/1831
  23693. }
  23694. },
  23695. back: {
  23696. height: math.unit(5 + 11/12, "feet"),
  23697. weight: math.unit(170, "lb"),
  23698. name: "Back",
  23699. image: {
  23700. source: "./media/characters/poojawa-vynar/back.svg",
  23701. extra: 1749/1607,
  23702. bottom: 28/1777
  23703. }
  23704. },
  23705. male: {
  23706. height: math.unit(5 + 11/12, "feet"),
  23707. weight: math.unit(170, "lb"),
  23708. name: "Male",
  23709. image: {
  23710. source: "./media/characters/poojawa-vynar/male.svg",
  23711. extra: 1855/1713,
  23712. bottom: 63/1918
  23713. }
  23714. },
  23715. taur: {
  23716. height: math.unit(5 + 11/12, "feet"),
  23717. weight: math.unit(170, "lb"),
  23718. name: "Taur",
  23719. image: {
  23720. source: "./media/characters/poojawa-vynar/taur.svg",
  23721. extra: 1151/1059,
  23722. bottom: 356/1507
  23723. }
  23724. },
  23725. frontDressed: {
  23726. height: math.unit(5 + 11/12, "feet"),
  23727. weight: math.unit(170, "lb"),
  23728. name: "Front (Dressed)",
  23729. image: {
  23730. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23731. extra: 1735/1585,
  23732. bottom: 96/1831
  23733. }
  23734. },
  23735. backDressed: {
  23736. height: math.unit(5 + 11/12, "feet"),
  23737. weight: math.unit(170, "lb"),
  23738. name: "Back (Dressed)",
  23739. image: {
  23740. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23741. extra: 1749/1607,
  23742. bottom: 28/1777
  23743. }
  23744. },
  23745. maleDressed: {
  23746. height: math.unit(5 + 11/12, "feet"),
  23747. weight: math.unit(170, "lb"),
  23748. name: "Male (Dressed)",
  23749. image: {
  23750. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23751. extra: 1855/1713,
  23752. bottom: 63/1918
  23753. }
  23754. },
  23755. taurDressed: {
  23756. height: math.unit(5 + 11/12, "feet"),
  23757. weight: math.unit(170, "lb"),
  23758. name: "Taur (Dressed)",
  23759. image: {
  23760. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23761. extra: 1151/1059,
  23762. bottom: 356/1507
  23763. }
  23764. },
  23765. maw: {
  23766. height: math.unit(1.46, "feet"),
  23767. name: "Maw",
  23768. image: {
  23769. source: "./media/characters/poojawa-vynar/maw.svg"
  23770. }
  23771. },
  23772. head: {
  23773. height: math.unit(2.34, "feet"),
  23774. name: "Head",
  23775. image: {
  23776. source: "./media/characters/poojawa-vynar/head.svg"
  23777. }
  23778. },
  23779. paw: {
  23780. height: math.unit(1.61, "feet"),
  23781. name: "Paw",
  23782. image: {
  23783. source: "./media/characters/poojawa-vynar/paw.svg"
  23784. }
  23785. },
  23786. pawToering: {
  23787. height: math.unit(1.72, "feet"),
  23788. name: "Paw (Toering)",
  23789. image: {
  23790. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23791. }
  23792. },
  23793. toering: {
  23794. height: math.unit(2.9, "inches"),
  23795. name: "Toering",
  23796. image: {
  23797. source: "./media/characters/poojawa-vynar/toering.svg"
  23798. }
  23799. },
  23800. shaft: {
  23801. height: math.unit(0.625, "feet"),
  23802. name: "Shaft",
  23803. image: {
  23804. source: "./media/characters/poojawa-vynar/shaft.svg"
  23805. }
  23806. },
  23807. spade: {
  23808. height: math.unit(0.42, "feet"),
  23809. name: "Spade",
  23810. image: {
  23811. source: "./media/characters/poojawa-vynar/spade.svg"
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Shortstack",
  23818. height: math.unit(4, "feet")
  23819. },
  23820. {
  23821. name: "Normal",
  23822. height: math.unit(5 + 11 / 12, "feet"),
  23823. default: true
  23824. },
  23825. {
  23826. name: "Tauric",
  23827. height: math.unit(4, "meters")
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23833. {
  23834. front: {
  23835. height: math.unit(293, "meters"),
  23836. weight: math.unit(70400, "tons"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/violette/front.svg",
  23840. extra: 1227 / 1180,
  23841. bottom: 0.005
  23842. }
  23843. },
  23844. back: {
  23845. height: math.unit(293, "meters"),
  23846. weight: math.unit(70400, "tons"),
  23847. name: "Back",
  23848. image: {
  23849. source: "./media/characters/violette/back.svg",
  23850. extra: 1227 / 1180,
  23851. bottom: 0.005
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Macro",
  23858. height: math.unit(293, "meters"),
  23859. default: true
  23860. },
  23861. ]
  23862. ))
  23863. characterMakers.push(() => makeCharacter(
  23864. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23865. {
  23866. front: {
  23867. height: math.unit(1050, "feet"),
  23868. weight: math.unit(200000, "tons"),
  23869. name: "Front",
  23870. image: {
  23871. source: "./media/characters/alessandra/front.svg",
  23872. extra: 960 / 912,
  23873. bottom: 0.06
  23874. }
  23875. },
  23876. },
  23877. [
  23878. {
  23879. name: "Macro",
  23880. height: math.unit(1050, "feet")
  23881. },
  23882. {
  23883. name: "Macro+",
  23884. height: math.unit(900, "meters"),
  23885. default: true
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23891. {
  23892. front: {
  23893. height: math.unit(5, "feet"),
  23894. weight: math.unit(187, "lb"),
  23895. name: "Front",
  23896. image: {
  23897. source: "./media/characters/person/front.svg",
  23898. extra: 3087 / 2945,
  23899. bottom: 91 / 3181
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Micro",
  23906. height: math.unit(3, "inches")
  23907. },
  23908. {
  23909. name: "Normal",
  23910. height: math.unit(5, "feet"),
  23911. default: true
  23912. },
  23913. {
  23914. name: "Macro",
  23915. height: math.unit(90, "feet")
  23916. },
  23917. {
  23918. name: "Max Size",
  23919. height: math.unit(280, "feet")
  23920. },
  23921. ]
  23922. ))
  23923. characterMakers.push(() => makeCharacter(
  23924. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23925. {
  23926. front: {
  23927. height: math.unit(4.5, "meters"),
  23928. weight: math.unit(3200, "lb"),
  23929. name: "Front",
  23930. image: {
  23931. source: "./media/characters/ty/front.svg",
  23932. extra: 1038 / 960,
  23933. bottom: 31.156 / 1068
  23934. }
  23935. },
  23936. back: {
  23937. height: math.unit(4.5, "meters"),
  23938. weight: math.unit(3200, "lb"),
  23939. name: "Back",
  23940. image: {
  23941. source: "./media/characters/ty/back.svg",
  23942. extra: 1044 / 966,
  23943. bottom: 7.48 / 1049
  23944. }
  23945. },
  23946. },
  23947. [
  23948. {
  23949. name: "Normal",
  23950. height: math.unit(4.5, "meters"),
  23951. default: true
  23952. },
  23953. ]
  23954. ))
  23955. characterMakers.push(() => makeCharacter(
  23956. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23957. {
  23958. front: {
  23959. height: math.unit(5 + 4 / 12, "feet"),
  23960. weight: math.unit(115, "lb"),
  23961. name: "Front",
  23962. image: {
  23963. source: "./media/characters/rocky/front.svg",
  23964. extra: 1012 / 975,
  23965. bottom: 54 / 1066
  23966. }
  23967. },
  23968. },
  23969. [
  23970. {
  23971. name: "Normal",
  23972. height: math.unit(5 + 4 / 12, "feet"),
  23973. default: true
  23974. },
  23975. ]
  23976. ))
  23977. characterMakers.push(() => makeCharacter(
  23978. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23979. {
  23980. upright: {
  23981. height: math.unit(6, "meters"),
  23982. weight: math.unit(4000, "kg"),
  23983. name: "Upright",
  23984. image: {
  23985. source: "./media/characters/ruin/upright.svg",
  23986. extra: 668 / 661,
  23987. bottom: 42 / 799.8396
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Normal",
  23994. height: math.unit(6, "meters"),
  23995. default: true
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24001. {
  24002. front: {
  24003. height: math.unit(5, "feet"),
  24004. weight: math.unit(106, "lb"),
  24005. name: "Front",
  24006. image: {
  24007. source: "./media/characters/robin/front.svg",
  24008. extra: 862 / 799,
  24009. bottom: 42.4 / 914.8856
  24010. }
  24011. },
  24012. },
  24013. [
  24014. {
  24015. name: "Normal",
  24016. height: math.unit(5, "feet"),
  24017. default: true
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24023. {
  24024. side: {
  24025. height: math.unit(3, "feet"),
  24026. weight: math.unit(225, "lb"),
  24027. name: "Side",
  24028. image: {
  24029. source: "./media/characters/saian/side.svg",
  24030. extra: 566 / 356,
  24031. bottom: 79.7 / 643
  24032. }
  24033. },
  24034. maw: {
  24035. height: math.unit(2.85, "feet"),
  24036. name: "Maw",
  24037. image: {
  24038. source: "./media/characters/saian/maw.svg"
  24039. }
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Normal",
  24045. height: math.unit(3, "feet"),
  24046. default: true
  24047. },
  24048. ]
  24049. ))
  24050. characterMakers.push(() => makeCharacter(
  24051. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24052. {
  24053. side: {
  24054. height: math.unit(8, "feet"),
  24055. weight: math.unit(300, "lb"),
  24056. name: "Side",
  24057. image: {
  24058. source: "./media/characters/equus-silvermane/side.svg",
  24059. extra: 2176 / 2050,
  24060. bottom: 65.7 / 2245
  24061. }
  24062. },
  24063. front: {
  24064. height: math.unit(8, "feet"),
  24065. weight: math.unit(300, "lb"),
  24066. name: "Front",
  24067. image: {
  24068. source: "./media/characters/equus-silvermane/front.svg",
  24069. extra: 4633 / 4400,
  24070. bottom: 71.3 / 4706.915
  24071. }
  24072. },
  24073. sideStepping: {
  24074. height: math.unit(8, "feet"),
  24075. weight: math.unit(300, "lb"),
  24076. name: "Side (Stepping)",
  24077. image: {
  24078. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24079. extra: 1968 / 1860,
  24080. bottom: 16.4 / 1989
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Normal",
  24087. height: math.unit(8, "feet")
  24088. },
  24089. {
  24090. name: "Minimacro",
  24091. height: math.unit(75, "feet"),
  24092. default: true
  24093. },
  24094. {
  24095. name: "Macro",
  24096. height: math.unit(150, "feet")
  24097. },
  24098. {
  24099. name: "Macro+",
  24100. height: math.unit(1000, "feet")
  24101. },
  24102. {
  24103. name: "Megamacro",
  24104. height: math.unit(1, "mile")
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24110. {
  24111. side: {
  24112. height: math.unit(20, "feet"),
  24113. weight: math.unit(30000, "kg"),
  24114. name: "Side",
  24115. image: {
  24116. source: "./media/characters/windar/side.svg",
  24117. extra: 1491 / 1248,
  24118. bottom: 82.56 / 1568
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Normal",
  24125. height: math.unit(20, "feet"),
  24126. default: true
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24132. {
  24133. side: {
  24134. height: math.unit(15.66, "feet"),
  24135. weight: math.unit(150, "lb"),
  24136. name: "Side",
  24137. image: {
  24138. source: "./media/characters/melody/side.svg",
  24139. extra: 1097 / 944,
  24140. bottom: 11.8 / 1109
  24141. }
  24142. },
  24143. sideOutfit: {
  24144. height: math.unit(15.66, "feet"),
  24145. weight: math.unit(150, "lb"),
  24146. name: "Side (Outfit)",
  24147. image: {
  24148. source: "./media/characters/melody/side-outfit.svg",
  24149. extra: 1097 / 944,
  24150. bottom: 11.8 / 1109
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Normal",
  24157. height: math.unit(15.66, "feet"),
  24158. default: true
  24159. },
  24160. ]
  24161. ))
  24162. characterMakers.push(() => makeCharacter(
  24163. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24164. {
  24165. armoredFront: {
  24166. height: math.unit(8, "feet"),
  24167. weight: math.unit(325, "lb"),
  24168. name: "Front",
  24169. image: {
  24170. source: "./media/characters/windera/armored-front.svg",
  24171. extra: 1830/1598,
  24172. bottom: 151/1981
  24173. },
  24174. form: "armored",
  24175. default: true
  24176. },
  24177. macroFront: {
  24178. height: math.unit(70, "feet"),
  24179. weight: math.unit(315453, "lb"),
  24180. name: "Front",
  24181. image: {
  24182. source: "./media/characters/windera/macro-front.svg",
  24183. extra: 963/883,
  24184. bottom: 23/986
  24185. },
  24186. form: "macro",
  24187. default: true
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(8, "feet"),
  24194. default: true,
  24195. form: "armored"
  24196. },
  24197. {
  24198. name: "Normal",
  24199. height: math.unit(70, "feet"),
  24200. default: true,
  24201. form: "macro"
  24202. },
  24203. ],
  24204. {
  24205. "armored": {
  24206. name: "Armored",
  24207. default: true
  24208. },
  24209. "macro": {
  24210. name: "Macro",
  24211. },
  24212. }
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24216. {
  24217. front: {
  24218. height: math.unit(28.75, "feet"),
  24219. weight: math.unit(2000, "kg"),
  24220. name: "Front",
  24221. image: {
  24222. source: "./media/characters/sonear/front.svg",
  24223. extra: 1041.1 / 964.9,
  24224. bottom: 53.7 / 1096.6
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(28.75, "feet"),
  24232. default: true
  24233. },
  24234. ]
  24235. ))
  24236. characterMakers.push(() => makeCharacter(
  24237. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24238. {
  24239. side: {
  24240. height: math.unit(25.5, "feet"),
  24241. weight: math.unit(23000, "kg"),
  24242. name: "Side",
  24243. image: {
  24244. source: "./media/characters/kanara/side.svg"
  24245. }
  24246. },
  24247. },
  24248. [
  24249. {
  24250. name: "Normal",
  24251. height: math.unit(25.5, "feet"),
  24252. default: true
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24258. {
  24259. side: {
  24260. height: math.unit(10, "feet"),
  24261. weight: math.unit(1000, "kg"),
  24262. name: "Side",
  24263. image: {
  24264. source: "./media/characters/ereus/side.svg",
  24265. extra: 1157 / 959,
  24266. bottom: 153 / 1312.5
  24267. }
  24268. },
  24269. },
  24270. [
  24271. {
  24272. name: "Normal",
  24273. height: math.unit(10, "feet"),
  24274. default: true
  24275. },
  24276. ]
  24277. ))
  24278. characterMakers.push(() => makeCharacter(
  24279. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24280. {
  24281. side: {
  24282. height: math.unit(4.5, "feet"),
  24283. weight: math.unit(500, "lb"),
  24284. name: "Side",
  24285. image: {
  24286. source: "./media/characters/e-ter/side.svg",
  24287. extra: 1550 / 1248,
  24288. bottom: 146 / 1694
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Normal",
  24295. height: math.unit(4.5, "feet"),
  24296. default: true
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24302. {
  24303. side: {
  24304. height: math.unit(9.7, "feet"),
  24305. weight: math.unit(4000, "kg"),
  24306. name: "Side",
  24307. image: {
  24308. source: "./media/characters/yamie/side.svg"
  24309. }
  24310. },
  24311. },
  24312. [
  24313. {
  24314. name: "Normal",
  24315. height: math.unit(9.7, "feet"),
  24316. default: true
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24322. {
  24323. front: {
  24324. height: math.unit(50, "feet"),
  24325. weight: math.unit(50000, "kg"),
  24326. name: "Front",
  24327. image: {
  24328. source: "./media/characters/anders/front.svg",
  24329. extra: 570 / 539,
  24330. bottom: 14.7 / 586.7
  24331. }
  24332. },
  24333. },
  24334. [
  24335. {
  24336. name: "Large",
  24337. height: math.unit(50, "feet")
  24338. },
  24339. {
  24340. name: "Macro",
  24341. height: math.unit(2000, "feet"),
  24342. default: true
  24343. },
  24344. {
  24345. name: "Megamacro",
  24346. height: math.unit(12, "miles")
  24347. },
  24348. ]
  24349. ))
  24350. characterMakers.push(() => makeCharacter(
  24351. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24352. {
  24353. front: {
  24354. height: math.unit(7 + 2 / 12, "feet"),
  24355. weight: math.unit(300, "lb"),
  24356. name: "Front",
  24357. image: {
  24358. source: "./media/characters/reban/front.svg",
  24359. extra: 1287/1212,
  24360. bottom: 148/1435
  24361. }
  24362. },
  24363. head: {
  24364. height: math.unit(1.95, "feet"),
  24365. name: "Head",
  24366. image: {
  24367. source: "./media/characters/reban/head.svg"
  24368. }
  24369. },
  24370. maw: {
  24371. height: math.unit(0.95, "feet"),
  24372. name: "Maw",
  24373. image: {
  24374. source: "./media/characters/reban/maw.svg"
  24375. }
  24376. },
  24377. foot: {
  24378. height: math.unit(1.65, "feet"),
  24379. name: "Foot",
  24380. image: {
  24381. source: "./media/characters/reban/foot.svg"
  24382. }
  24383. },
  24384. dick: {
  24385. height: math.unit(7 / 5, "feet"),
  24386. name: "Dick",
  24387. image: {
  24388. source: "./media/characters/reban/dick.svg"
  24389. }
  24390. },
  24391. },
  24392. [
  24393. {
  24394. name: "Natural Height",
  24395. height: math.unit(7 + 2 / 12, "feet")
  24396. },
  24397. {
  24398. name: "Macro",
  24399. height: math.unit(500, "feet"),
  24400. default: true
  24401. },
  24402. {
  24403. name: "Canon Height",
  24404. height: math.unit(50, "AU")
  24405. },
  24406. ]
  24407. ))
  24408. characterMakers.push(() => makeCharacter(
  24409. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24410. {
  24411. front: {
  24412. height: math.unit(6, "feet"),
  24413. weight: math.unit(150, "lb"),
  24414. name: "Front",
  24415. image: {
  24416. source: "./media/characters/terrance-keayes/front.svg",
  24417. extra: 1.005,
  24418. bottom: 151 / 1615
  24419. }
  24420. },
  24421. side: {
  24422. height: math.unit(6, "feet"),
  24423. weight: math.unit(150, "lb"),
  24424. name: "Side",
  24425. image: {
  24426. source: "./media/characters/terrance-keayes/side.svg",
  24427. extra: 1.005,
  24428. bottom: 129.4 / 1544
  24429. }
  24430. },
  24431. back: {
  24432. height: math.unit(6, "feet"),
  24433. weight: math.unit(150, "lb"),
  24434. name: "Back",
  24435. image: {
  24436. source: "./media/characters/terrance-keayes/back.svg",
  24437. extra: 1.005,
  24438. bottom: 58.4 / 1557.3
  24439. }
  24440. },
  24441. dick: {
  24442. height: math.unit(6 * 0.208, "feet"),
  24443. name: "Dick",
  24444. image: {
  24445. source: "./media/characters/terrance-keayes/dick.svg"
  24446. }
  24447. },
  24448. },
  24449. [
  24450. {
  24451. name: "Canon Height",
  24452. height: math.unit(35, "miles"),
  24453. default: true
  24454. },
  24455. ]
  24456. ))
  24457. characterMakers.push(() => makeCharacter(
  24458. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24459. {
  24460. front: {
  24461. height: math.unit(6, "feet"),
  24462. weight: math.unit(150, "lb"),
  24463. name: "Front",
  24464. image: {
  24465. source: "./media/characters/ofelia/front.svg",
  24466. extra: 1130/1117,
  24467. bottom: 91/1221
  24468. }
  24469. },
  24470. back: {
  24471. height: math.unit(6, "feet"),
  24472. weight: math.unit(150, "lb"),
  24473. name: "Back",
  24474. image: {
  24475. source: "./media/characters/ofelia/back.svg",
  24476. extra: 1172/1159,
  24477. bottom: 28/1200
  24478. }
  24479. },
  24480. maw: {
  24481. height: math.unit(1, "feet"),
  24482. name: "Maw",
  24483. image: {
  24484. source: "./media/characters/ofelia/maw.svg"
  24485. }
  24486. },
  24487. foot: {
  24488. height: math.unit(1.949, "feet"),
  24489. name: "Foot",
  24490. image: {
  24491. source: "./media/characters/ofelia/foot.svg"
  24492. }
  24493. },
  24494. },
  24495. [
  24496. {
  24497. name: "Canon Height",
  24498. height: math.unit(2000, "miles"),
  24499. default: true
  24500. },
  24501. ]
  24502. ))
  24503. characterMakers.push(() => makeCharacter(
  24504. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24505. {
  24506. front: {
  24507. height: math.unit(6, "feet"),
  24508. weight: math.unit(150, "lb"),
  24509. name: "Front",
  24510. image: {
  24511. source: "./media/characters/samuel/front.svg",
  24512. extra: 265 / 258,
  24513. bottom: 2 / 266.1566
  24514. }
  24515. },
  24516. },
  24517. [
  24518. {
  24519. name: "Macro",
  24520. height: math.unit(100, "feet"),
  24521. default: true
  24522. },
  24523. {
  24524. name: "Full Size",
  24525. height: math.unit(1000, "miles")
  24526. },
  24527. ]
  24528. ))
  24529. characterMakers.push(() => makeCharacter(
  24530. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24531. {
  24532. front: {
  24533. height: math.unit(6, "feet"),
  24534. weight: math.unit(300, "lb"),
  24535. name: "Front",
  24536. image: {
  24537. source: "./media/characters/beishir-kiel/front.svg",
  24538. extra: 569 / 547,
  24539. bottom: 41.9 / 609
  24540. }
  24541. },
  24542. maw: {
  24543. height: math.unit(6 * 0.202, "feet"),
  24544. name: "Maw",
  24545. image: {
  24546. source: "./media/characters/beishir-kiel/maw.svg"
  24547. }
  24548. },
  24549. },
  24550. [
  24551. {
  24552. name: "Macro",
  24553. height: math.unit(300, "feet"),
  24554. default: true
  24555. },
  24556. ]
  24557. ))
  24558. characterMakers.push(() => makeCharacter(
  24559. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24560. {
  24561. front: {
  24562. height: math.unit(5 + 7/12, "feet"),
  24563. weight: math.unit(120, "lb"),
  24564. name: "Front",
  24565. image: {
  24566. source: "./media/characters/logan-grey/front.svg",
  24567. extra: 1836/1738,
  24568. bottom: 108/1944
  24569. }
  24570. },
  24571. back: {
  24572. height: math.unit(5 + 7/12, "feet"),
  24573. weight: math.unit(120, "lb"),
  24574. name: "Back",
  24575. image: {
  24576. source: "./media/characters/logan-grey/back.svg",
  24577. extra: 1880/1794,
  24578. bottom: 24/1904
  24579. }
  24580. },
  24581. frontSfw: {
  24582. height: math.unit(5 + 7/12, "feet"),
  24583. weight: math.unit(120, "lb"),
  24584. name: "Front (SFW)",
  24585. image: {
  24586. source: "./media/characters/logan-grey/front-sfw.svg",
  24587. extra: 1836/1738,
  24588. bottom: 108/1944
  24589. }
  24590. },
  24591. backSfw: {
  24592. height: math.unit(5 + 7/12, "feet"),
  24593. weight: math.unit(120, "lb"),
  24594. name: "Back (SFW)",
  24595. image: {
  24596. source: "./media/characters/logan-grey/back-sfw.svg",
  24597. extra: 1880/1794,
  24598. bottom: 24/1904
  24599. }
  24600. },
  24601. hands: {
  24602. height: math.unit(0.84, "feet"),
  24603. name: "Hands",
  24604. image: {
  24605. source: "./media/characters/logan-grey/hands.svg"
  24606. }
  24607. },
  24608. paws: {
  24609. height: math.unit(0.72, "feet"),
  24610. name: "Paws",
  24611. image: {
  24612. source: "./media/characters/logan-grey/paws.svg"
  24613. }
  24614. },
  24615. cock: {
  24616. height: math.unit(1.45, "feet"),
  24617. name: "Cock",
  24618. image: {
  24619. source: "./media/characters/logan-grey/cock.svg"
  24620. }
  24621. },
  24622. cockAlt: {
  24623. height: math.unit(1.437, "feet"),
  24624. name: "Cock (alt)",
  24625. image: {
  24626. source: "./media/characters/logan-grey/cock-alt.svg"
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Normal",
  24633. height: math.unit(5 + 8 / 12, "feet")
  24634. },
  24635. {
  24636. name: "The 500 Foot Femboy",
  24637. height: math.unit(500, "feet"),
  24638. default: true
  24639. },
  24640. {
  24641. name: "Megmacro",
  24642. height: math.unit(20, "miles")
  24643. },
  24644. ]
  24645. ))
  24646. characterMakers.push(() => makeCharacter(
  24647. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24648. {
  24649. front: {
  24650. height: math.unit(8 + 2 / 12, "feet"),
  24651. weight: math.unit(275, "lb"),
  24652. name: "Front",
  24653. image: {
  24654. source: "./media/characters/draganta/front.svg",
  24655. extra: 1177 / 1135,
  24656. bottom: 33.46 / 1212.1
  24657. }
  24658. },
  24659. },
  24660. [
  24661. {
  24662. name: "Normal",
  24663. height: math.unit(8 + 6 / 12, "feet"),
  24664. default: true
  24665. },
  24666. {
  24667. name: "Macro",
  24668. height: math.unit(150, "feet")
  24669. },
  24670. {
  24671. name: "Megamacro",
  24672. height: math.unit(1000, "miles")
  24673. },
  24674. ]
  24675. ))
  24676. characterMakers.push(() => makeCharacter(
  24677. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24678. {
  24679. front: {
  24680. height: math.unit(1.72, "m"),
  24681. weight: math.unit(80, "lb"),
  24682. name: "Front",
  24683. image: {
  24684. source: "./media/characters/voski/front.svg",
  24685. extra: 2076.22 / 2022.4,
  24686. bottom: 102.7 / 2177.3866
  24687. }
  24688. },
  24689. frontFlaccid: {
  24690. height: math.unit(1.72, "m"),
  24691. weight: math.unit(80, "lb"),
  24692. name: "Front (Flaccid)",
  24693. image: {
  24694. source: "./media/characters/voski/front-flaccid.svg",
  24695. extra: 2076.22 / 2022.4,
  24696. bottom: 102.7 / 2177.3866
  24697. }
  24698. },
  24699. frontErect: {
  24700. height: math.unit(1.72, "m"),
  24701. weight: math.unit(80, "lb"),
  24702. name: "Front (Erect)",
  24703. image: {
  24704. source: "./media/characters/voski/front-erect.svg",
  24705. extra: 2076.22 / 2022.4,
  24706. bottom: 102.7 / 2177.3866
  24707. }
  24708. },
  24709. back: {
  24710. height: math.unit(1.72, "m"),
  24711. weight: math.unit(80, "lb"),
  24712. name: "Back",
  24713. image: {
  24714. source: "./media/characters/voski/back.svg",
  24715. extra: 2104 / 2051,
  24716. bottom: 10.45 / 2113.63
  24717. }
  24718. },
  24719. },
  24720. [
  24721. {
  24722. name: "Normal",
  24723. height: math.unit(1.72, "m")
  24724. },
  24725. {
  24726. name: "Macro",
  24727. height: math.unit(55, "m"),
  24728. default: true
  24729. },
  24730. {
  24731. name: "Macro+",
  24732. height: math.unit(300, "m")
  24733. },
  24734. {
  24735. name: "Macro++",
  24736. height: math.unit(700, "m")
  24737. },
  24738. {
  24739. name: "Macro+++",
  24740. height: math.unit(4500, "m")
  24741. },
  24742. {
  24743. name: "Macro++++",
  24744. height: math.unit(45, "km")
  24745. },
  24746. {
  24747. name: "Macro+++++",
  24748. height: math.unit(1220, "km")
  24749. },
  24750. ]
  24751. ))
  24752. characterMakers.push(() => makeCharacter(
  24753. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24754. {
  24755. front: {
  24756. height: math.unit(2.3, "m"),
  24757. weight: math.unit(304, "kg"),
  24758. name: "Front",
  24759. image: {
  24760. source: "./media/characters/icowom-lee/front.svg",
  24761. extra: 985 / 955,
  24762. bottom: 25.4 / 1012
  24763. }
  24764. },
  24765. fronttentacles: {
  24766. height: math.unit(2.3, "m"),
  24767. weight: math.unit(304, "kg"),
  24768. name: "Front-tentacles",
  24769. image: {
  24770. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24771. extra: 985 / 955,
  24772. bottom: 25.4 / 1012
  24773. }
  24774. },
  24775. back: {
  24776. height: math.unit(2.3, "m"),
  24777. weight: math.unit(304, "kg"),
  24778. name: "Back",
  24779. image: {
  24780. source: "./media/characters/icowom-lee/back.svg",
  24781. extra: 975 / 954,
  24782. bottom: 9.5 / 985
  24783. }
  24784. },
  24785. backtentacles: {
  24786. height: math.unit(2.3, "m"),
  24787. weight: math.unit(304, "kg"),
  24788. name: "Back-tentacles",
  24789. image: {
  24790. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24791. extra: 975 / 954,
  24792. bottom: 9.5 / 985
  24793. }
  24794. },
  24795. frontDressed: {
  24796. height: math.unit(2.3, "m"),
  24797. weight: math.unit(304, "kg"),
  24798. name: "Front (Dressed)",
  24799. image: {
  24800. source: "./media/characters/icowom-lee/front-dressed.svg",
  24801. extra: 3076 / 2933,
  24802. bottom: 51.4 / 3125.1889
  24803. }
  24804. },
  24805. rump: {
  24806. height: math.unit(0.776, "meters"),
  24807. name: "Rump",
  24808. image: {
  24809. source: "./media/characters/icowom-lee/rump.svg"
  24810. }
  24811. },
  24812. genitals: {
  24813. height: math.unit(0.78, "meters"),
  24814. name: "Genitals",
  24815. image: {
  24816. source: "./media/characters/icowom-lee/genitals.svg"
  24817. }
  24818. },
  24819. },
  24820. [
  24821. {
  24822. name: "Normal",
  24823. height: math.unit(2.3, "meters"),
  24824. default: true
  24825. },
  24826. {
  24827. name: "Macro",
  24828. height: math.unit(94, "meters"),
  24829. default: true
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24835. {
  24836. front: {
  24837. height: math.unit(22, "meters"),
  24838. weight: math.unit(21000, "kg"),
  24839. name: "Front",
  24840. image: {
  24841. source: "./media/characters/shock-diamond/front.svg",
  24842. extra: 2204 / 2053,
  24843. bottom: 65 / 2239.47
  24844. }
  24845. },
  24846. frontNude: {
  24847. height: math.unit(22, "meters"),
  24848. weight: math.unit(21000, "kg"),
  24849. name: "Front (Nude)",
  24850. image: {
  24851. source: "./media/characters/shock-diamond/front-nude.svg",
  24852. extra: 2514 / 2285,
  24853. bottom: 13 / 2527.56
  24854. }
  24855. },
  24856. },
  24857. [
  24858. {
  24859. name: "Normal",
  24860. height: math.unit(3, "meters")
  24861. },
  24862. {
  24863. name: "Macro",
  24864. height: math.unit(22, "meters"),
  24865. default: true
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24871. {
  24872. front: {
  24873. height: math.unit(5 + 4/12, "feet"),
  24874. weight: math.unit(125, "lb"),
  24875. name: "Front",
  24876. image: {
  24877. source: "./media/characters/rory/front.svg",
  24878. extra: 1790/1681,
  24879. bottom: 66/1856
  24880. },
  24881. form: "normal",
  24882. default: true
  24883. },
  24884. back: {
  24885. height: math.unit(5 + 4/12, "feet"),
  24886. weight: math.unit(125, "lb"),
  24887. name: "Back",
  24888. image: {
  24889. source: "./media/characters/rory/back.svg",
  24890. extra: 1805/1690,
  24891. bottom: 56/1861
  24892. },
  24893. form: "normal"
  24894. },
  24895. frontDressed: {
  24896. height: math.unit(5 + 4/12, "feet"),
  24897. weight: math.unit(125, "lb"),
  24898. name: "Front (Dressed)",
  24899. image: {
  24900. source: "./media/characters/rory/front-dressed.svg",
  24901. extra: 1790/1681,
  24902. bottom: 66/1856
  24903. },
  24904. form: "normal"
  24905. },
  24906. backDressed: {
  24907. height: math.unit(5 + 4/12, "feet"),
  24908. weight: math.unit(125, "lb"),
  24909. name: "Back (Dressed)",
  24910. image: {
  24911. source: "./media/characters/rory/back-dressed.svg",
  24912. extra: 1805/1690,
  24913. bottom: 56/1861
  24914. },
  24915. form: "normal"
  24916. },
  24917. frontNsfw: {
  24918. height: math.unit(5 + 4/12, "feet"),
  24919. weight: math.unit(125, "lb"),
  24920. name: "Front (NSFW)",
  24921. image: {
  24922. source: "./media/characters/rory/front-nsfw.svg",
  24923. extra: 1790/1681,
  24924. bottom: 66/1856
  24925. },
  24926. form: "normal"
  24927. },
  24928. backNsfw: {
  24929. height: math.unit(5 + 4/12, "feet"),
  24930. weight: math.unit(125, "lb"),
  24931. name: "Back (NSFW)",
  24932. image: {
  24933. source: "./media/characters/rory/back-nsfw.svg",
  24934. extra: 1805/1690,
  24935. bottom: 56/1861
  24936. },
  24937. form: "normal"
  24938. },
  24939. dick: {
  24940. height: math.unit(0.8, "feet"),
  24941. name: "Dick",
  24942. image: {
  24943. source: "./media/characters/rory/dick.svg"
  24944. },
  24945. form: "normal"
  24946. },
  24947. thicc_front: {
  24948. height: math.unit(5 + 4/12, "feet"),
  24949. weight: math.unit(195, "lb"),
  24950. name: "Front",
  24951. image: {
  24952. source: "./media/characters/rory/thicc-front.svg",
  24953. extra: 1220/1100,
  24954. bottom: 103/1323
  24955. },
  24956. form: "thicc",
  24957. default: true
  24958. },
  24959. thicc_back: {
  24960. height: math.unit(5 + 4/12, "feet"),
  24961. weight: math.unit(195, "lb"),
  24962. name: "Back",
  24963. image: {
  24964. source: "./media/characters/rory/thicc-back.svg",
  24965. extra: 1166/1086,
  24966. bottom: 35/1201
  24967. },
  24968. form: "thicc"
  24969. },
  24970. },
  24971. [
  24972. {
  24973. name: "Micro",
  24974. height: math.unit(3, "inches"),
  24975. allForms: true
  24976. },
  24977. {
  24978. name: "Normal",
  24979. height: math.unit(5 + 4/12, "feet"),
  24980. allForms: true,
  24981. default: true
  24982. },
  24983. {
  24984. name: "Macro",
  24985. height: math.unit(90, "feet"),
  24986. allForms: true
  24987. },
  24988. {
  24989. name: "Supercharged",
  24990. height: math.unit(270, "feet"),
  24991. allForms: true
  24992. },
  24993. ],
  24994. {
  24995. "normal": {
  24996. name: "Normal",
  24997. default: true
  24998. },
  24999. "thicc": {
  25000. name: "Thicc",
  25001. },
  25002. }
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(5 + 9 / 12, "feet"),
  25009. weight: math.unit(190, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/sprisk/front.svg",
  25013. extra: 1225 / 1180,
  25014. bottom: 42.7 / 1266.4
  25015. }
  25016. },
  25017. frontNsfw: {
  25018. height: math.unit(5 + 9 / 12, "feet"),
  25019. weight: math.unit(190, "lb"),
  25020. name: "Front (NSFW)",
  25021. image: {
  25022. source: "./media/characters/sprisk/front-nsfw.svg",
  25023. extra: 1225 / 1180,
  25024. bottom: 42.7 / 1266.4
  25025. }
  25026. },
  25027. back: {
  25028. height: math.unit(5 + 9 / 12, "feet"),
  25029. weight: math.unit(190, "lb"),
  25030. name: "Back",
  25031. image: {
  25032. source: "./media/characters/sprisk/back.svg",
  25033. extra: 1247 / 1200,
  25034. bottom: 5.6 / 1253.04
  25035. }
  25036. },
  25037. },
  25038. [
  25039. {
  25040. name: "Tiny",
  25041. height: math.unit(2, "inches")
  25042. },
  25043. {
  25044. name: "Normal",
  25045. height: math.unit(5 + 9 / 12, "feet"),
  25046. default: true
  25047. },
  25048. {
  25049. name: "Mini Macro",
  25050. height: math.unit(18, "feet")
  25051. },
  25052. {
  25053. name: "Macro",
  25054. height: math.unit(100, "feet")
  25055. },
  25056. {
  25057. name: "MACRO",
  25058. height: math.unit(50, "miles")
  25059. },
  25060. {
  25061. name: "M A C R O",
  25062. height: math.unit(300, "miles")
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25068. {
  25069. side: {
  25070. height: math.unit(15.6, "meters"),
  25071. weight: math.unit(700000, "kg"),
  25072. name: "Side",
  25073. image: {
  25074. source: "./media/characters/bunsen/side.svg",
  25075. extra: 1644 / 358
  25076. }
  25077. },
  25078. foot: {
  25079. height: math.unit(1.611 * 1644 / 358, "meter"),
  25080. name: "Foot",
  25081. image: {
  25082. source: "./media/characters/bunsen/foot.svg"
  25083. }
  25084. },
  25085. },
  25086. [
  25087. {
  25088. name: "Small",
  25089. height: math.unit(10, "feet")
  25090. },
  25091. {
  25092. name: "Normal",
  25093. height: math.unit(15.6, "meters"),
  25094. default: true
  25095. },
  25096. ]
  25097. ))
  25098. characterMakers.push(() => makeCharacter(
  25099. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25100. {
  25101. front: {
  25102. height: math.unit(4 + 11 / 12, "feet"),
  25103. weight: math.unit(140, "lb"),
  25104. name: "Front",
  25105. image: {
  25106. source: "./media/characters/sesh/front.svg",
  25107. extra: 3420 / 3231,
  25108. bottom: 72 / 3949.5
  25109. }
  25110. },
  25111. },
  25112. [
  25113. {
  25114. name: "Normal",
  25115. height: math.unit(4 + 11 / 12, "feet")
  25116. },
  25117. {
  25118. name: "Grown",
  25119. height: math.unit(15, "feet"),
  25120. default: true
  25121. },
  25122. {
  25123. name: "Macro",
  25124. height: math.unit(1500, "feet")
  25125. },
  25126. {
  25127. name: "Megamacro",
  25128. height: math.unit(30, "miles")
  25129. },
  25130. {
  25131. name: "Continental",
  25132. height: math.unit(3000, "miles")
  25133. },
  25134. {
  25135. name: "Gravity Mass",
  25136. height: math.unit(300000, "miles")
  25137. },
  25138. {
  25139. name: "Planet Buster",
  25140. height: math.unit(30000000, "miles")
  25141. },
  25142. {
  25143. name: "Big",
  25144. height: math.unit(3000000000, "miles")
  25145. },
  25146. ]
  25147. ))
  25148. characterMakers.push(() => makeCharacter(
  25149. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25150. {
  25151. front: {
  25152. height: math.unit(9, "feet"),
  25153. weight: math.unit(350, "lb"),
  25154. name: "Front",
  25155. image: {
  25156. source: "./media/characters/pepper/front.svg",
  25157. extra: 1448 / 1312,
  25158. bottom: 9.4 / 1457.88
  25159. }
  25160. },
  25161. back: {
  25162. height: math.unit(9, "feet"),
  25163. weight: math.unit(350, "lb"),
  25164. name: "Back",
  25165. image: {
  25166. source: "./media/characters/pepper/back.svg",
  25167. extra: 1423 / 1300,
  25168. bottom: 4.6 / 1429
  25169. }
  25170. },
  25171. maw: {
  25172. height: math.unit(0.932, "feet"),
  25173. name: "Maw",
  25174. image: {
  25175. source: "./media/characters/pepper/maw.svg"
  25176. }
  25177. },
  25178. },
  25179. [
  25180. {
  25181. name: "Normal",
  25182. height: math.unit(9, "feet"),
  25183. default: true
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25189. {
  25190. front: {
  25191. height: math.unit(6, "feet"),
  25192. weight: math.unit(150, "lb"),
  25193. name: "Front",
  25194. image: {
  25195. source: "./media/characters/maelstrom/front.svg",
  25196. extra: 2100 / 1883,
  25197. bottom: 94 / 2196.7
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Less Kaiju",
  25204. height: math.unit(200, "feet")
  25205. },
  25206. {
  25207. name: "Kaiju",
  25208. height: math.unit(400, "feet"),
  25209. default: true
  25210. },
  25211. {
  25212. name: "Kaiju-er",
  25213. height: math.unit(600, "feet")
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25219. {
  25220. front: {
  25221. height: math.unit(6 + 5 / 12, "feet"),
  25222. weight: math.unit(180, "lb"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/lexir/front.svg",
  25226. extra: 180 / 172,
  25227. bottom: 12 / 192
  25228. }
  25229. },
  25230. back: {
  25231. height: math.unit(6 + 5 / 12, "feet"),
  25232. weight: math.unit(180, "lb"),
  25233. name: "Back",
  25234. image: {
  25235. source: "./media/characters/lexir/back.svg",
  25236. extra: 1273/1201,
  25237. bottom: 39/1312
  25238. }
  25239. },
  25240. },
  25241. [
  25242. {
  25243. name: "Very Smal",
  25244. height: math.unit(1, "nm")
  25245. },
  25246. {
  25247. name: "Normal",
  25248. height: math.unit(6 + 5 / 12, "feet"),
  25249. default: true
  25250. },
  25251. {
  25252. name: "Macro",
  25253. height: math.unit(1, "mile")
  25254. },
  25255. {
  25256. name: "Megamacro",
  25257. height: math.unit(50, "miles")
  25258. },
  25259. ]
  25260. ))
  25261. characterMakers.push(() => makeCharacter(
  25262. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25263. {
  25264. front: {
  25265. height: math.unit(1.5, "meters"),
  25266. weight: math.unit(100, "lb"),
  25267. name: "Front",
  25268. image: {
  25269. source: "./media/characters/maksio/front.svg",
  25270. extra: 1549 / 1531,
  25271. bottom: 123.7 / 1674.5429
  25272. }
  25273. },
  25274. back: {
  25275. height: math.unit(1.5, "meters"),
  25276. weight: math.unit(100, "lb"),
  25277. name: "Back",
  25278. image: {
  25279. source: "./media/characters/maksio/back.svg",
  25280. extra: 1541 / 1509,
  25281. bottom: 97 / 1639
  25282. }
  25283. },
  25284. hand: {
  25285. height: math.unit(0.621, "feet"),
  25286. name: "Hand",
  25287. image: {
  25288. source: "./media/characters/maksio/hand.svg"
  25289. }
  25290. },
  25291. foot: {
  25292. height: math.unit(1.611, "feet"),
  25293. name: "Foot",
  25294. image: {
  25295. source: "./media/characters/maksio/foot.svg"
  25296. }
  25297. },
  25298. },
  25299. [
  25300. {
  25301. name: "Shrunken",
  25302. height: math.unit(10, "cm")
  25303. },
  25304. {
  25305. name: "Normal",
  25306. height: math.unit(150, "cm"),
  25307. default: true
  25308. },
  25309. ]
  25310. ))
  25311. characterMakers.push(() => makeCharacter(
  25312. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25313. {
  25314. front: {
  25315. height: math.unit(100, "feet"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/erza-bear/front.svg",
  25319. extra: 2449 / 2390,
  25320. bottom: 46 / 2494
  25321. }
  25322. },
  25323. back: {
  25324. height: math.unit(100, "feet"),
  25325. name: "Back",
  25326. image: {
  25327. source: "./media/characters/erza-bear/back.svg",
  25328. extra: 2489 / 2430,
  25329. bottom: 85.4 / 2480
  25330. }
  25331. },
  25332. tail: {
  25333. height: math.unit(42, "feet"),
  25334. name: "Tail",
  25335. image: {
  25336. source: "./media/characters/erza-bear/tail.svg"
  25337. }
  25338. },
  25339. tongue: {
  25340. height: math.unit(8, "feet"),
  25341. name: "Tongue",
  25342. image: {
  25343. source: "./media/characters/erza-bear/tongue.svg"
  25344. }
  25345. },
  25346. dick: {
  25347. height: math.unit(10.5, "feet"),
  25348. name: "Dick",
  25349. image: {
  25350. source: "./media/characters/erza-bear/dick.svg"
  25351. }
  25352. },
  25353. dickVertical: {
  25354. height: math.unit(16.9, "feet"),
  25355. name: "Dick (Vertical)",
  25356. image: {
  25357. source: "./media/characters/erza-bear/dick-vertical.svg"
  25358. }
  25359. },
  25360. },
  25361. [
  25362. {
  25363. name: "Macro",
  25364. height: math.unit(100, "feet"),
  25365. default: true
  25366. },
  25367. ]
  25368. ))
  25369. characterMakers.push(() => makeCharacter(
  25370. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25371. {
  25372. front: {
  25373. height: math.unit(172, "cm"),
  25374. weight: math.unit(73, "kg"),
  25375. name: "Front",
  25376. image: {
  25377. source: "./media/characters/violet-flor/front.svg",
  25378. extra: 1530 / 1442,
  25379. bottom: 61.9 / 1588.8
  25380. }
  25381. },
  25382. back: {
  25383. height: math.unit(180, "cm"),
  25384. weight: math.unit(73, "kg"),
  25385. name: "Back",
  25386. image: {
  25387. source: "./media/characters/violet-flor/back.svg",
  25388. extra: 1692 / 1630,
  25389. bottom: 20 / 1712
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(172, "cm"),
  25397. default: true
  25398. },
  25399. ]
  25400. ))
  25401. characterMakers.push(() => makeCharacter(
  25402. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25403. {
  25404. front: {
  25405. height: math.unit(6, "feet"),
  25406. weight: math.unit(220, "lb"),
  25407. name: "Front",
  25408. image: {
  25409. source: "./media/characters/lynn-rhea/front.svg",
  25410. extra: 310 / 273
  25411. }
  25412. },
  25413. back: {
  25414. height: math.unit(6, "feet"),
  25415. weight: math.unit(220, "lb"),
  25416. name: "Back",
  25417. image: {
  25418. source: "./media/characters/lynn-rhea/back.svg",
  25419. extra: 310 / 273
  25420. }
  25421. },
  25422. dicks: {
  25423. height: math.unit(0.9, "feet"),
  25424. name: "Dicks",
  25425. image: {
  25426. source: "./media/characters/lynn-rhea/dicks.svg"
  25427. }
  25428. },
  25429. slit: {
  25430. height: math.unit(0.4, "feet"),
  25431. name: "Slit",
  25432. image: {
  25433. source: "./media/characters/lynn-rhea/slit.svg"
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Micro",
  25440. height: math.unit(1, "inch")
  25441. },
  25442. {
  25443. name: "Macro",
  25444. height: math.unit(60, "feet"),
  25445. default: true
  25446. },
  25447. {
  25448. name: "Megamacro",
  25449. height: math.unit(2, "miles")
  25450. },
  25451. {
  25452. name: "Gigamacro",
  25453. height: math.unit(3, "earths")
  25454. },
  25455. {
  25456. name: "Galactic",
  25457. height: math.unit(0.8, "galaxies")
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25463. {
  25464. front: {
  25465. height: math.unit(1600, "feet"),
  25466. weight: math.unit(85758785169, "kg"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/valathos/front.svg",
  25470. extra: 1451 / 1339
  25471. }
  25472. },
  25473. },
  25474. [
  25475. {
  25476. name: "Macro",
  25477. height: math.unit(1600, "feet"),
  25478. default: true
  25479. },
  25480. ]
  25481. ))
  25482. characterMakers.push(() => makeCharacter(
  25483. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25484. {
  25485. front: {
  25486. height: math.unit(7 + 5 / 12, "feet"),
  25487. weight: math.unit(300, "lb"),
  25488. name: "Front",
  25489. image: {
  25490. source: "./media/characters/azula/front.svg",
  25491. extra: 3208 / 2880,
  25492. bottom: 80.2 / 3277
  25493. }
  25494. },
  25495. back: {
  25496. height: math.unit(7 + 5 / 12, "feet"),
  25497. weight: math.unit(300, "lb"),
  25498. name: "Back",
  25499. image: {
  25500. source: "./media/characters/azula/back.svg",
  25501. extra: 3169 / 2822,
  25502. bottom: 150.6 / 3321
  25503. }
  25504. },
  25505. },
  25506. [
  25507. {
  25508. name: "Normal",
  25509. height: math.unit(7 + 5 / 12, "feet"),
  25510. default: true
  25511. },
  25512. {
  25513. name: "Big",
  25514. height: math.unit(20, "feet")
  25515. },
  25516. ]
  25517. ))
  25518. characterMakers.push(() => makeCharacter(
  25519. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25520. {
  25521. front: {
  25522. height: math.unit(5 + 1 / 12, "feet"),
  25523. weight: math.unit(110, "lb"),
  25524. name: "Front",
  25525. image: {
  25526. source: "./media/characters/rupert/front.svg",
  25527. extra: 1549 / 1495,
  25528. bottom: 54.2 / 1604.4
  25529. }
  25530. },
  25531. },
  25532. [
  25533. {
  25534. name: "Normal",
  25535. height: math.unit(5 + 1 / 12, "feet"),
  25536. default: true
  25537. },
  25538. ]
  25539. ))
  25540. characterMakers.push(() => makeCharacter(
  25541. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25542. {
  25543. front: {
  25544. height: math.unit(8 + 4 / 12, "feet"),
  25545. weight: math.unit(350, "lb"),
  25546. name: "Front",
  25547. image: {
  25548. source: "./media/characters/sheera-castellar/front.svg",
  25549. extra: 1957 / 1894,
  25550. bottom: 26.97 / 1975.017
  25551. }
  25552. },
  25553. side: {
  25554. height: math.unit(8 + 4 / 12, "feet"),
  25555. weight: math.unit(350, "lb"),
  25556. name: "Side",
  25557. image: {
  25558. source: "./media/characters/sheera-castellar/side.svg",
  25559. extra: 1957 / 1894
  25560. }
  25561. },
  25562. back: {
  25563. height: math.unit(8 + 4 / 12, "feet"),
  25564. weight: math.unit(350, "lb"),
  25565. name: "Back",
  25566. image: {
  25567. source: "./media/characters/sheera-castellar/back.svg",
  25568. extra: 1957 / 1894
  25569. }
  25570. },
  25571. angled: {
  25572. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25573. weight: math.unit(350, "lb"),
  25574. name: "Angled",
  25575. image: {
  25576. source: "./media/characters/sheera-castellar/angled.svg",
  25577. extra: 1807 / 1707,
  25578. bottom: 68 / 1875
  25579. }
  25580. },
  25581. genitals: {
  25582. height: math.unit(2.2, "feet"),
  25583. name: "Genitals",
  25584. image: {
  25585. source: "./media/characters/sheera-castellar/genitals.svg"
  25586. }
  25587. },
  25588. taur: {
  25589. height: math.unit(10 + 6/12, "feet"),
  25590. name: "Taur",
  25591. image: {
  25592. source: "./media/characters/sheera-castellar/taur.svg",
  25593. extra: 2017/1909,
  25594. bottom: 185/2202
  25595. }
  25596. },
  25597. },
  25598. [
  25599. {
  25600. name: "Normal",
  25601. height: math.unit(8 + 4 / 12, "feet")
  25602. },
  25603. {
  25604. name: "Macro",
  25605. height: math.unit(150, "feet"),
  25606. default: true
  25607. },
  25608. {
  25609. name: "Macro+",
  25610. height: math.unit(800, "feet")
  25611. },
  25612. ]
  25613. ))
  25614. characterMakers.push(() => makeCharacter(
  25615. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25616. {
  25617. front: {
  25618. height: math.unit(6, "feet"),
  25619. weight: math.unit(150, "lb"),
  25620. name: "Front",
  25621. image: {
  25622. source: "./media/characters/jaipur/front.svg",
  25623. extra: 3860 / 3731,
  25624. bottom: 287 / 4140
  25625. }
  25626. },
  25627. back: {
  25628. height: math.unit(6, "feet"),
  25629. weight: math.unit(150, "lb"),
  25630. name: "Back",
  25631. image: {
  25632. source: "./media/characters/jaipur/back.svg",
  25633. extra: 1637/1561,
  25634. bottom: 154/1791
  25635. }
  25636. },
  25637. },
  25638. [
  25639. {
  25640. name: "Normal",
  25641. height: math.unit(1.85, "meters"),
  25642. default: true
  25643. },
  25644. {
  25645. name: "Macro",
  25646. height: math.unit(150, "meters")
  25647. },
  25648. {
  25649. name: "Macro+",
  25650. height: math.unit(0.5, "miles")
  25651. },
  25652. {
  25653. name: "Macro++",
  25654. height: math.unit(2.5, "miles")
  25655. },
  25656. {
  25657. name: "Macro+++",
  25658. height: math.unit(12, "miles")
  25659. },
  25660. {
  25661. name: "Macro++++",
  25662. height: math.unit(120, "miles")
  25663. },
  25664. {
  25665. name: "Macro+++++",
  25666. height: math.unit(1200, "miles")
  25667. },
  25668. ]
  25669. ))
  25670. characterMakers.push(() => makeCharacter(
  25671. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25672. {
  25673. front: {
  25674. height: math.unit(6, "feet"),
  25675. weight: math.unit(150, "lb"),
  25676. name: "Front",
  25677. image: {
  25678. source: "./media/characters/sheila-wolf/front.svg",
  25679. extra: 1931 / 1808,
  25680. bottom: 29.5 / 1960
  25681. }
  25682. },
  25683. dick: {
  25684. height: math.unit(1.464, "feet"),
  25685. name: "Dick",
  25686. image: {
  25687. source: "./media/characters/sheila-wolf/dick.svg"
  25688. }
  25689. },
  25690. muzzle: {
  25691. height: math.unit(0.513, "feet"),
  25692. name: "Muzzle",
  25693. image: {
  25694. source: "./media/characters/sheila-wolf/muzzle.svg"
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Macro",
  25701. height: math.unit(70, "feet"),
  25702. default: true
  25703. },
  25704. ]
  25705. ))
  25706. characterMakers.push(() => makeCharacter(
  25707. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25708. {
  25709. front: {
  25710. height: math.unit(32, "meters"),
  25711. weight: math.unit(300000, "kg"),
  25712. name: "Front",
  25713. image: {
  25714. source: "./media/characters/almor/front.svg",
  25715. extra: 1408 / 1322,
  25716. bottom: 94.6 / 1506.5
  25717. }
  25718. },
  25719. },
  25720. [
  25721. {
  25722. name: "Macro",
  25723. height: math.unit(32, "meters"),
  25724. default: true
  25725. },
  25726. ]
  25727. ))
  25728. characterMakers.push(() => makeCharacter(
  25729. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25730. {
  25731. front: {
  25732. height: math.unit(7, "feet"),
  25733. weight: math.unit(200, "lb"),
  25734. name: "Front",
  25735. image: {
  25736. source: "./media/characters/silver/front.svg",
  25737. extra: 472.1 / 450.5,
  25738. bottom: 26.5 / 499.424
  25739. }
  25740. },
  25741. },
  25742. [
  25743. {
  25744. name: "Normal",
  25745. height: math.unit(7, "feet"),
  25746. default: true
  25747. },
  25748. {
  25749. name: "Macro",
  25750. height: math.unit(800, "feet")
  25751. },
  25752. {
  25753. name: "Megamacro",
  25754. height: math.unit(250, "miles")
  25755. },
  25756. ]
  25757. ))
  25758. characterMakers.push(() => makeCharacter(
  25759. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25760. {
  25761. front: {
  25762. height: math.unit(6, "feet"),
  25763. weight: math.unit(150, "lb"),
  25764. name: "Front",
  25765. image: {
  25766. source: "./media/characters/pliskin/front.svg",
  25767. extra: 1469 / 1359,
  25768. bottom: 70 / 1540
  25769. }
  25770. },
  25771. },
  25772. [
  25773. {
  25774. name: "Micro",
  25775. height: math.unit(3, "inches")
  25776. },
  25777. {
  25778. name: "Normal",
  25779. height: math.unit(5 + 11 / 12, "feet"),
  25780. default: true
  25781. },
  25782. {
  25783. name: "Macro",
  25784. height: math.unit(120, "feet")
  25785. },
  25786. ]
  25787. ))
  25788. characterMakers.push(() => makeCharacter(
  25789. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25790. {
  25791. front: {
  25792. height: math.unit(6, "feet"),
  25793. weight: math.unit(150, "lb"),
  25794. name: "Front",
  25795. image: {
  25796. source: "./media/characters/sammy/front.svg",
  25797. extra: 1193 / 1089,
  25798. bottom: 30.5 / 1226
  25799. }
  25800. },
  25801. },
  25802. [
  25803. {
  25804. name: "Macro",
  25805. height: math.unit(1700, "feet"),
  25806. default: true
  25807. },
  25808. {
  25809. name: "Examacro",
  25810. height: math.unit(2.5e9, "lightyears")
  25811. },
  25812. ]
  25813. ))
  25814. characterMakers.push(() => makeCharacter(
  25815. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25816. {
  25817. front: {
  25818. height: math.unit(21, "meters"),
  25819. weight: math.unit(12, "tonnes"),
  25820. name: "Front",
  25821. image: {
  25822. source: "./media/characters/kuru/front.svg",
  25823. extra: 4301 / 3785,
  25824. bottom: 371.3 / 4691
  25825. }
  25826. },
  25827. },
  25828. [
  25829. {
  25830. name: "Macro",
  25831. height: math.unit(21, "meters"),
  25832. default: true
  25833. },
  25834. ]
  25835. ))
  25836. characterMakers.push(() => makeCharacter(
  25837. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25838. {
  25839. front: {
  25840. height: math.unit(23, "meters"),
  25841. weight: math.unit(12.2, "tonnes"),
  25842. name: "Front",
  25843. image: {
  25844. source: "./media/characters/rakka/front.svg",
  25845. extra: 4670 / 4169,
  25846. bottom: 301 / 4968.7
  25847. }
  25848. },
  25849. },
  25850. [
  25851. {
  25852. name: "Macro",
  25853. height: math.unit(23, "meters"),
  25854. default: true
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25860. {
  25861. front: {
  25862. height: math.unit(6, "feet"),
  25863. weight: math.unit(150, "lb"),
  25864. name: "Front",
  25865. image: {
  25866. source: "./media/characters/rhys-feline/front.svg",
  25867. extra: 2488 / 2308,
  25868. bottom: 35.67 / 2519.19
  25869. }
  25870. },
  25871. },
  25872. [
  25873. {
  25874. name: "Really Small",
  25875. height: math.unit(1, "nm")
  25876. },
  25877. {
  25878. name: "Micro",
  25879. height: math.unit(4, "inches")
  25880. },
  25881. {
  25882. name: "Normal",
  25883. height: math.unit(4 + 10 / 12, "feet"),
  25884. default: true
  25885. },
  25886. {
  25887. name: "Macro",
  25888. height: math.unit(100, "feet")
  25889. },
  25890. {
  25891. name: "Megamacto",
  25892. height: math.unit(50, "miles")
  25893. },
  25894. ]
  25895. ))
  25896. characterMakers.push(() => makeCharacter(
  25897. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25898. {
  25899. side: {
  25900. height: math.unit(30, "feet"),
  25901. weight: math.unit(35000, "kg"),
  25902. name: "Side",
  25903. image: {
  25904. source: "./media/characters/alydar/side.svg",
  25905. extra: 234 / 222,
  25906. bottom: 6.5 / 241
  25907. }
  25908. },
  25909. front: {
  25910. height: math.unit(30, "feet"),
  25911. weight: math.unit(35000, "kg"),
  25912. name: "Front",
  25913. image: {
  25914. source: "./media/characters/alydar/front.svg",
  25915. extra: 223.37 / 210.2,
  25916. bottom: 22.3 / 246.76
  25917. }
  25918. },
  25919. top: {
  25920. height: math.unit(64.54, "feet"),
  25921. weight: math.unit(35000, "kg"),
  25922. name: "Top",
  25923. image: {
  25924. source: "./media/characters/alydar/top.svg"
  25925. }
  25926. },
  25927. anthro: {
  25928. height: math.unit(30, "feet"),
  25929. weight: math.unit(9000, "kg"),
  25930. name: "Anthro",
  25931. image: {
  25932. source: "./media/characters/alydar/anthro.svg",
  25933. extra: 432 / 421,
  25934. bottom: 7.18 / 440
  25935. }
  25936. },
  25937. maw: {
  25938. height: math.unit(11.693, "feet"),
  25939. name: "Maw",
  25940. image: {
  25941. source: "./media/characters/alydar/maw.svg"
  25942. }
  25943. },
  25944. head: {
  25945. height: math.unit(11.693, "feet"),
  25946. name: "Head",
  25947. image: {
  25948. source: "./media/characters/alydar/head.svg"
  25949. }
  25950. },
  25951. headAlt: {
  25952. height: math.unit(12.861, "feet"),
  25953. name: "Head (Alt)",
  25954. image: {
  25955. source: "./media/characters/alydar/head-alt.svg"
  25956. }
  25957. },
  25958. wing: {
  25959. height: math.unit(20.712, "feet"),
  25960. name: "Wing",
  25961. image: {
  25962. source: "./media/characters/alydar/wing.svg"
  25963. }
  25964. },
  25965. wingFeather: {
  25966. height: math.unit(9.662, "feet"),
  25967. name: "Wing Feather",
  25968. image: {
  25969. source: "./media/characters/alydar/wing-feather.svg"
  25970. }
  25971. },
  25972. countourFeather: {
  25973. height: math.unit(4.154, "feet"),
  25974. name: "Contour Feather",
  25975. image: {
  25976. source: "./media/characters/alydar/contour-feather.svg"
  25977. }
  25978. },
  25979. },
  25980. [
  25981. {
  25982. name: "Diplomatic",
  25983. height: math.unit(13, "feet"),
  25984. default: true
  25985. },
  25986. {
  25987. name: "Small",
  25988. height: math.unit(30, "feet")
  25989. },
  25990. {
  25991. name: "Normal",
  25992. height: math.unit(95, "feet"),
  25993. default: true
  25994. },
  25995. {
  25996. name: "Large",
  25997. height: math.unit(285, "feet")
  25998. },
  25999. {
  26000. name: "Incomprehensible",
  26001. height: math.unit(450, "megameters")
  26002. },
  26003. ]
  26004. ))
  26005. characterMakers.push(() => makeCharacter(
  26006. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26007. {
  26008. side: {
  26009. height: math.unit(11, "feet"),
  26010. weight: math.unit(1750, "kg"),
  26011. name: "Side",
  26012. image: {
  26013. source: "./media/characters/selicia/side.svg",
  26014. extra: 440 / 396,
  26015. bottom: 24.8 / 465.979
  26016. }
  26017. },
  26018. maw: {
  26019. height: math.unit(4.665, "feet"),
  26020. name: "Maw",
  26021. image: {
  26022. source: "./media/characters/selicia/maw.svg"
  26023. }
  26024. },
  26025. },
  26026. [
  26027. {
  26028. name: "Normal",
  26029. height: math.unit(11, "feet"),
  26030. default: true
  26031. },
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26036. {
  26037. side: {
  26038. height: math.unit(2 + 6 / 12, "feet"),
  26039. weight: math.unit(30, "lb"),
  26040. name: "Side",
  26041. image: {
  26042. source: "./media/characters/layla/side.svg",
  26043. extra: 244 / 188,
  26044. bottom: 18.2 / 262.1
  26045. }
  26046. },
  26047. back: {
  26048. height: math.unit(2 + 6 / 12, "feet"),
  26049. weight: math.unit(30, "lb"),
  26050. name: "Back",
  26051. image: {
  26052. source: "./media/characters/layla/back.svg",
  26053. extra: 308 / 241.5,
  26054. bottom: 8.9 / 316.8
  26055. }
  26056. },
  26057. cumming: {
  26058. height: math.unit(2 + 6 / 12, "feet"),
  26059. weight: math.unit(30, "lb"),
  26060. name: "Cumming",
  26061. image: {
  26062. source: "./media/characters/layla/cumming.svg",
  26063. extra: 342 / 279,
  26064. bottom: 595 / 938
  26065. }
  26066. },
  26067. dickFlaccid: {
  26068. height: math.unit(2.595, "feet"),
  26069. name: "Flaccid Genitals",
  26070. image: {
  26071. source: "./media/characters/layla/dick-flaccid.svg"
  26072. }
  26073. },
  26074. dickErect: {
  26075. height: math.unit(2.359, "feet"),
  26076. name: "Erect Genitals",
  26077. image: {
  26078. source: "./media/characters/layla/dick-erect.svg"
  26079. }
  26080. },
  26081. dragon: {
  26082. height: math.unit(40, "feet"),
  26083. name: "Dragon",
  26084. image: {
  26085. source: "./media/characters/layla/dragon.svg",
  26086. extra: 610/535,
  26087. bottom: 367/977
  26088. }
  26089. },
  26090. taur: {
  26091. height: math.unit(30, "feet"),
  26092. name: "Taur",
  26093. image: {
  26094. source: "./media/characters/layla/taur.svg",
  26095. extra: 1268/1199,
  26096. bottom: 112/1380
  26097. }
  26098. },
  26099. },
  26100. [
  26101. {
  26102. name: "Micro",
  26103. height: math.unit(1, "inch")
  26104. },
  26105. {
  26106. name: "Small",
  26107. height: math.unit(1, "foot")
  26108. },
  26109. {
  26110. name: "Normal",
  26111. height: math.unit(2 + 6 / 12, "feet"),
  26112. default: true
  26113. },
  26114. {
  26115. name: "Macro",
  26116. height: math.unit(200, "feet")
  26117. },
  26118. {
  26119. name: "Megamacro",
  26120. height: math.unit(1000, "miles")
  26121. },
  26122. {
  26123. name: "Planetary",
  26124. height: math.unit(8000, "miles")
  26125. },
  26126. {
  26127. name: "True Layla",
  26128. height: math.unit(200000 * 7, "multiverses")
  26129. },
  26130. ]
  26131. ))
  26132. characterMakers.push(() => makeCharacter(
  26133. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26134. {
  26135. back: {
  26136. height: math.unit(10.5, "feet"),
  26137. weight: math.unit(800, "lb"),
  26138. name: "Back",
  26139. image: {
  26140. source: "./media/characters/knox/back.svg",
  26141. extra: 1486 / 1089,
  26142. bottom: 107 / 1601.4
  26143. }
  26144. },
  26145. side: {
  26146. height: math.unit(10.5, "feet"),
  26147. weight: math.unit(800, "lb"),
  26148. name: "Side",
  26149. image: {
  26150. source: "./media/characters/knox/side.svg",
  26151. extra: 244 / 218,
  26152. bottom: 14 / 260
  26153. }
  26154. },
  26155. },
  26156. [
  26157. {
  26158. name: "Compact",
  26159. height: math.unit(10.5, "feet"),
  26160. default: true
  26161. },
  26162. {
  26163. name: "Dynamax",
  26164. height: math.unit(210, "feet")
  26165. },
  26166. {
  26167. name: "Full Macro",
  26168. height: math.unit(850, "feet")
  26169. },
  26170. ]
  26171. ))
  26172. characterMakers.push(() => makeCharacter(
  26173. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26174. {
  26175. front: {
  26176. height: math.unit(28, "feet"),
  26177. weight: math.unit(10500, "lb"),
  26178. name: "Front",
  26179. image: {
  26180. source: "./media/characters/kayda/front.svg",
  26181. extra: 1536 / 1428,
  26182. bottom: 68.7 / 1603
  26183. }
  26184. },
  26185. back: {
  26186. height: math.unit(28, "feet"),
  26187. weight: math.unit(10500, "lb"),
  26188. name: "Back",
  26189. image: {
  26190. source: "./media/characters/kayda/back.svg",
  26191. extra: 1557 / 1464,
  26192. bottom: 39.5 / 1597.49
  26193. }
  26194. },
  26195. dick: {
  26196. height: math.unit(3.858, "feet"),
  26197. name: "Dick",
  26198. image: {
  26199. source: "./media/characters/kayda/dick.svg"
  26200. }
  26201. },
  26202. },
  26203. [
  26204. {
  26205. name: "Macro",
  26206. height: math.unit(28, "feet"),
  26207. default: true
  26208. },
  26209. ]
  26210. ))
  26211. characterMakers.push(() => makeCharacter(
  26212. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26213. {
  26214. front: {
  26215. height: math.unit(10 + 11 / 12, "feet"),
  26216. weight: math.unit(1400, "lb"),
  26217. name: "Front",
  26218. image: {
  26219. source: "./media/characters/brian/front.svg",
  26220. extra: 737 / 692,
  26221. bottom: 55.4 / 785
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(10 + 11 / 12, "feet"),
  26229. default: true
  26230. },
  26231. ]
  26232. ))
  26233. characterMakers.push(() => makeCharacter(
  26234. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26235. {
  26236. front: {
  26237. height: math.unit(5 + 8 / 12, "feet"),
  26238. weight: math.unit(140, "lb"),
  26239. name: "Front",
  26240. image: {
  26241. source: "./media/characters/khemri/front.svg",
  26242. extra: 4780 / 4059,
  26243. bottom: 80.1 / 4859.25
  26244. }
  26245. },
  26246. },
  26247. [
  26248. {
  26249. name: "Micro",
  26250. height: math.unit(6, "inches")
  26251. },
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(5 + 8 / 12, "feet"),
  26255. default: true
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26261. {
  26262. front: {
  26263. height: math.unit(13, "feet"),
  26264. weight: math.unit(1700, "lb"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/felix-braveheart/front.svg",
  26268. extra: 1222 / 1157,
  26269. bottom: 53.2 / 1280
  26270. }
  26271. },
  26272. back: {
  26273. height: math.unit(13, "feet"),
  26274. weight: math.unit(1700, "lb"),
  26275. name: "Back",
  26276. image: {
  26277. source: "./media/characters/felix-braveheart/back.svg",
  26278. extra: 1277 / 1203,
  26279. bottom: 50.2 / 1327
  26280. }
  26281. },
  26282. feral: {
  26283. height: math.unit(6, "feet"),
  26284. weight: math.unit(400, "lb"),
  26285. name: "Feral",
  26286. image: {
  26287. source: "./media/characters/felix-braveheart/feral.svg",
  26288. extra: 682 / 625,
  26289. bottom: 6.9 / 688
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(13, "feet"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26303. {
  26304. side: {
  26305. height: math.unit(5 + 11 / 12, "feet"),
  26306. weight: math.unit(1400, "lb"),
  26307. name: "Side",
  26308. image: {
  26309. source: "./media/characters/shadow-blade/side.svg",
  26310. extra: 1726 / 1267,
  26311. bottom: 58.4 / 1785
  26312. }
  26313. },
  26314. },
  26315. [
  26316. {
  26317. name: "Normal",
  26318. height: math.unit(5 + 11 / 12, "feet"),
  26319. default: true
  26320. },
  26321. ]
  26322. ))
  26323. characterMakers.push(() => makeCharacter(
  26324. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26325. {
  26326. front: {
  26327. height: math.unit(1 + 6 / 12, "feet"),
  26328. weight: math.unit(25, "lb"),
  26329. name: "Front",
  26330. image: {
  26331. source: "./media/characters/karla-halldor/front.svg",
  26332. extra: 1459 / 1383,
  26333. bottom: 12 / 1472
  26334. }
  26335. },
  26336. },
  26337. [
  26338. {
  26339. name: "Normal",
  26340. height: math.unit(1 + 6 / 12, "feet"),
  26341. default: true
  26342. },
  26343. ]
  26344. ))
  26345. characterMakers.push(() => makeCharacter(
  26346. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26347. {
  26348. front: {
  26349. height: math.unit(6 + 2 / 12, "feet"),
  26350. weight: math.unit(160, "lb"),
  26351. name: "Front",
  26352. image: {
  26353. source: "./media/characters/ariam/front.svg",
  26354. extra: 1073/976,
  26355. bottom: 52/1125
  26356. }
  26357. },
  26358. back: {
  26359. height: math.unit(6 + 2/12, "feet"),
  26360. weight: math.unit(160, "lb"),
  26361. name: "Back",
  26362. image: {
  26363. source: "./media/characters/ariam/back.svg",
  26364. extra: 1103/1023,
  26365. bottom: 9/1112
  26366. }
  26367. },
  26368. dressed: {
  26369. height: math.unit(6 + 2/12, "feet"),
  26370. weight: math.unit(160, "lb"),
  26371. name: "Dressed",
  26372. image: {
  26373. source: "./media/characters/ariam/dressed.svg",
  26374. extra: 1099/1009,
  26375. bottom: 25/1124
  26376. }
  26377. },
  26378. squatting: {
  26379. height: math.unit(4.1, "feet"),
  26380. weight: math.unit(160, "lb"),
  26381. name: "Squatting",
  26382. image: {
  26383. source: "./media/characters/ariam/squatting.svg",
  26384. extra: 2617 / 2112,
  26385. bottom: 61.2 / 2681,
  26386. }
  26387. },
  26388. },
  26389. [
  26390. {
  26391. name: "Normal",
  26392. height: math.unit(6 + 2 / 12, "feet"),
  26393. default: true
  26394. },
  26395. {
  26396. name: "Normal+",
  26397. height: math.unit(4, "meters")
  26398. },
  26399. {
  26400. name: "Macro",
  26401. height: math.unit(50, "meters")
  26402. },
  26403. {
  26404. name: "Macro+",
  26405. height: math.unit(100, "meters")
  26406. },
  26407. {
  26408. name: "Megamacro",
  26409. height: math.unit(20, "km")
  26410. },
  26411. {
  26412. name: "Caretaker",
  26413. height: math.unit(444, "megameters")
  26414. },
  26415. ]
  26416. ))
  26417. characterMakers.push(() => makeCharacter(
  26418. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26419. {
  26420. front: {
  26421. height: math.unit(1.67, "meters"),
  26422. weight: math.unit(140, "lb"),
  26423. name: "Front",
  26424. image: {
  26425. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26426. extra: 438 / 410,
  26427. bottom: 0.75 / 439
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Shrunken",
  26434. height: math.unit(7.6, "cm")
  26435. },
  26436. {
  26437. name: "Human Scale",
  26438. height: math.unit(1.67, "meters")
  26439. },
  26440. {
  26441. name: "Wolxi Scale",
  26442. height: math.unit(36.7, "meters"),
  26443. default: true
  26444. },
  26445. ]
  26446. ))
  26447. characterMakers.push(() => makeCharacter(
  26448. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26449. {
  26450. front: {
  26451. height: math.unit(1.73, "meters"),
  26452. weight: math.unit(240, "lb"),
  26453. name: "Front",
  26454. image: {
  26455. source: "./media/characters/izue-two-mothers/front.svg",
  26456. extra: 469 / 437,
  26457. bottom: 1.24 / 470.6
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Shrunken",
  26464. height: math.unit(7.86, "cm")
  26465. },
  26466. {
  26467. name: "Human Scale",
  26468. height: math.unit(1.73, "meters")
  26469. },
  26470. {
  26471. name: "Wolxi Scale",
  26472. height: math.unit(38, "meters"),
  26473. default: true
  26474. },
  26475. ]
  26476. ))
  26477. characterMakers.push(() => makeCharacter(
  26478. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26479. {
  26480. front: {
  26481. height: math.unit(1.55, "meters"),
  26482. weight: math.unit(120, "lb"),
  26483. name: "Front",
  26484. image: {
  26485. source: "./media/characters/teeku-love-shack/front.svg",
  26486. extra: 387 / 362,
  26487. bottom: 1.51 / 388
  26488. }
  26489. },
  26490. },
  26491. [
  26492. {
  26493. name: "Shrunken",
  26494. height: math.unit(7, "cm")
  26495. },
  26496. {
  26497. name: "Human Scale",
  26498. height: math.unit(1.55, "meters")
  26499. },
  26500. {
  26501. name: "Wolxi Scale",
  26502. height: math.unit(34.1, "meters"),
  26503. default: true
  26504. },
  26505. ]
  26506. ))
  26507. characterMakers.push(() => makeCharacter(
  26508. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26509. {
  26510. front: {
  26511. height: math.unit(1.83, "meters"),
  26512. weight: math.unit(135, "lb"),
  26513. name: "Front",
  26514. image: {
  26515. source: "./media/characters/dejma-the-red/front.svg",
  26516. extra: 480 / 458,
  26517. bottom: 1.8 / 482
  26518. }
  26519. },
  26520. },
  26521. [
  26522. {
  26523. name: "Shrunken",
  26524. height: math.unit(8.3, "cm")
  26525. },
  26526. {
  26527. name: "Human Scale",
  26528. height: math.unit(1.83, "meters")
  26529. },
  26530. {
  26531. name: "Wolxi Scale",
  26532. height: math.unit(40, "meters"),
  26533. default: true
  26534. },
  26535. ]
  26536. ))
  26537. characterMakers.push(() => makeCharacter(
  26538. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26539. {
  26540. front: {
  26541. height: math.unit(1.78, "meters"),
  26542. weight: math.unit(65, "kg"),
  26543. name: "Front",
  26544. image: {
  26545. source: "./media/characters/aki/front.svg",
  26546. extra: 452 / 415
  26547. }
  26548. },
  26549. frontNsfw: {
  26550. height: math.unit(1.78, "meters"),
  26551. weight: math.unit(65, "kg"),
  26552. name: "Front (NSFW)",
  26553. image: {
  26554. source: "./media/characters/aki/front-nsfw.svg",
  26555. extra: 452 / 415
  26556. }
  26557. },
  26558. back: {
  26559. height: math.unit(1.78, "meters"),
  26560. weight: math.unit(65, "kg"),
  26561. name: "Back",
  26562. image: {
  26563. source: "./media/characters/aki/back.svg",
  26564. extra: 452 / 415
  26565. }
  26566. },
  26567. rump: {
  26568. height: math.unit(2.05, "feet"),
  26569. name: "Rump",
  26570. image: {
  26571. source: "./media/characters/aki/rump.svg"
  26572. }
  26573. },
  26574. dick: {
  26575. height: math.unit(0.95, "feet"),
  26576. name: "Dick",
  26577. image: {
  26578. source: "./media/characters/aki/dick.svg"
  26579. }
  26580. },
  26581. },
  26582. [
  26583. {
  26584. name: "Micro",
  26585. height: math.unit(15, "cm")
  26586. },
  26587. {
  26588. name: "Normal",
  26589. height: math.unit(178, "cm"),
  26590. default: true
  26591. },
  26592. {
  26593. name: "Macro",
  26594. height: math.unit(214, "m")
  26595. },
  26596. {
  26597. name: "Macro+",
  26598. height: math.unit(534, "m")
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26604. {
  26605. front: {
  26606. height: math.unit(5 + 5 / 12, "feet"),
  26607. weight: math.unit(120, "lb"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/ari/front.svg",
  26611. extra: 1550/1471,
  26612. bottom: 39/1589
  26613. }
  26614. },
  26615. },
  26616. [
  26617. {
  26618. name: "Normal",
  26619. height: math.unit(5 + 5 / 12, "feet")
  26620. },
  26621. {
  26622. name: "Macro",
  26623. height: math.unit(100, "feet"),
  26624. default: true
  26625. },
  26626. {
  26627. name: "Megamacro",
  26628. height: math.unit(100, "miles")
  26629. },
  26630. {
  26631. name: "Gigamacro",
  26632. height: math.unit(80000, "miles")
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26638. {
  26639. side: {
  26640. height: math.unit(9, "feet"),
  26641. weight: math.unit(400, "kg"),
  26642. name: "Side",
  26643. image: {
  26644. source: "./media/characters/bolt/side.svg",
  26645. extra: 1126 / 896,
  26646. bottom: 60 / 1187.3,
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Micro",
  26653. height: math.unit(5, "inches")
  26654. },
  26655. {
  26656. name: "Normal",
  26657. height: math.unit(9, "feet"),
  26658. default: true
  26659. },
  26660. {
  26661. name: "Macro",
  26662. height: math.unit(700, "feet")
  26663. },
  26664. {
  26665. name: "Max Size",
  26666. height: math.unit(1.52e22, "yottameters")
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(4.3, "meters"),
  26675. weight: math.unit(3, "tons"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/draekon-sylviar/front.svg",
  26679. extra: 2072/1512,
  26680. bottom: 74/2146
  26681. }
  26682. },
  26683. back: {
  26684. height: math.unit(4.3, "meters"),
  26685. weight: math.unit(3, "tons"),
  26686. name: "Back",
  26687. image: {
  26688. source: "./media/characters/draekon-sylviar/back.svg",
  26689. extra: 1639/1483,
  26690. bottom: 41/1680
  26691. }
  26692. },
  26693. feral: {
  26694. height: math.unit(1.15, "meters"),
  26695. weight: math.unit(3, "tons"),
  26696. name: "Feral",
  26697. image: {
  26698. source: "./media/characters/draekon-sylviar/feral.svg",
  26699. extra: 1033/395,
  26700. bottom: 130/1163
  26701. }
  26702. },
  26703. maw: {
  26704. height: math.unit(1.3, "meters"),
  26705. name: "Maw",
  26706. image: {
  26707. source: "./media/characters/draekon-sylviar/maw.svg"
  26708. }
  26709. },
  26710. mawSeparated: {
  26711. height: math.unit(1.53, "meters"),
  26712. name: "Separated Maw",
  26713. image: {
  26714. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26715. }
  26716. },
  26717. tail: {
  26718. height: math.unit(1.15, "meters"),
  26719. name: "Tail",
  26720. image: {
  26721. source: "./media/characters/draekon-sylviar/tail.svg"
  26722. }
  26723. },
  26724. tailDick: {
  26725. height: math.unit(1.15, "meters"),
  26726. name: "Tail (Dick)",
  26727. image: {
  26728. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26729. }
  26730. },
  26731. tailDickSeparated: {
  26732. height: math.unit(1.19, "meters"),
  26733. name: "Tail (Separated Dick)",
  26734. image: {
  26735. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26736. }
  26737. },
  26738. slit: {
  26739. height: math.unit(1, "meters"),
  26740. name: "Slit",
  26741. image: {
  26742. source: "./media/characters/draekon-sylviar/slit.svg"
  26743. }
  26744. },
  26745. dick: {
  26746. height: math.unit(1.15, "meters"),
  26747. name: "Dick",
  26748. image: {
  26749. source: "./media/characters/draekon-sylviar/dick.svg"
  26750. }
  26751. },
  26752. dickSeparated: {
  26753. height: math.unit(1.1, "meters"),
  26754. name: "Separated Dick",
  26755. image: {
  26756. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26757. }
  26758. },
  26759. sheath: {
  26760. height: math.unit(1.15, "meters"),
  26761. name: "Sheath",
  26762. image: {
  26763. source: "./media/characters/draekon-sylviar/sheath.svg"
  26764. }
  26765. },
  26766. },
  26767. [
  26768. {
  26769. name: "Small",
  26770. height: math.unit(4.53 / 2, "meters"),
  26771. default: true
  26772. },
  26773. {
  26774. name: "Normal",
  26775. height: math.unit(4.53, "meters"),
  26776. default: true
  26777. },
  26778. {
  26779. name: "Large",
  26780. height: math.unit(4.53 * 2, "meters"),
  26781. },
  26782. ]
  26783. ))
  26784. characterMakers.push(() => makeCharacter(
  26785. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26786. {
  26787. front: {
  26788. height: math.unit(6 + 2 / 12, "feet"),
  26789. weight: math.unit(180, "lb"),
  26790. name: "Front",
  26791. image: {
  26792. source: "./media/characters/brawler/front.svg",
  26793. extra: 3301 / 3027,
  26794. bottom: 138 / 3439
  26795. }
  26796. },
  26797. },
  26798. [
  26799. {
  26800. name: "Normal",
  26801. height: math.unit(6 + 2 / 12, "feet"),
  26802. default: true
  26803. },
  26804. ]
  26805. ))
  26806. characterMakers.push(() => makeCharacter(
  26807. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26808. {
  26809. front: {
  26810. height: math.unit(11, "feet"),
  26811. weight: math.unit(1000, "lb"),
  26812. name: "Front",
  26813. image: {
  26814. source: "./media/characters/alex/front.svg",
  26815. bottom: 44.5 / 620
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Micro",
  26822. height: math.unit(5, "inches")
  26823. },
  26824. {
  26825. name: "Normal",
  26826. height: math.unit(11, "feet"),
  26827. default: true
  26828. },
  26829. {
  26830. name: "Macro",
  26831. height: math.unit(9.5e9, "feet")
  26832. },
  26833. {
  26834. name: "Max Size",
  26835. height: math.unit(1.4e283, "yottameters")
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26841. {
  26842. female: {
  26843. height: math.unit(29.9, "m"),
  26844. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26845. name: "Female",
  26846. image: {
  26847. source: "./media/characters/zenari/female.svg",
  26848. extra: 3281.6 / 3217,
  26849. bottom: 72.2 / 3353
  26850. }
  26851. },
  26852. male: {
  26853. height: math.unit(27.7, "m"),
  26854. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26855. name: "Male",
  26856. image: {
  26857. source: "./media/characters/zenari/male.svg",
  26858. extra: 3008 / 2991,
  26859. bottom: 54.6 / 3069
  26860. }
  26861. },
  26862. },
  26863. [
  26864. {
  26865. name: "Macro",
  26866. height: math.unit(29.7, "meters"),
  26867. default: true
  26868. },
  26869. ]
  26870. ))
  26871. characterMakers.push(() => makeCharacter(
  26872. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26873. {
  26874. female: {
  26875. height: math.unit(23.8, "m"),
  26876. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26877. name: "Female",
  26878. image: {
  26879. source: "./media/characters/mactarian/female.svg",
  26880. extra: 2662 / 2569,
  26881. bottom: 73 / 2736
  26882. }
  26883. },
  26884. male: {
  26885. height: math.unit(23.8, "m"),
  26886. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26887. name: "Male",
  26888. image: {
  26889. source: "./media/characters/mactarian/male.svg",
  26890. extra: 2673 / 2600,
  26891. bottom: 76 / 2750
  26892. }
  26893. },
  26894. },
  26895. [
  26896. {
  26897. name: "Macro",
  26898. height: math.unit(23.8, "meters"),
  26899. default: true
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26905. {
  26906. female: {
  26907. height: math.unit(19.3, "m"),
  26908. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26909. name: "Female",
  26910. image: {
  26911. source: "./media/characters/umok/female.svg",
  26912. extra: 2186 / 2078,
  26913. bottom: 87 / 2277
  26914. }
  26915. },
  26916. male: {
  26917. height: math.unit(19.5, "m"),
  26918. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26919. name: "Male",
  26920. image: {
  26921. source: "./media/characters/umok/male.svg",
  26922. extra: 2233 / 2140,
  26923. bottom: 24.4 / 2258
  26924. }
  26925. },
  26926. },
  26927. [
  26928. {
  26929. name: "Macro",
  26930. height: math.unit(19.3, "meters"),
  26931. default: true
  26932. },
  26933. ]
  26934. ))
  26935. characterMakers.push(() => makeCharacter(
  26936. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26937. {
  26938. female: {
  26939. height: math.unit(26.15, "m"),
  26940. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26941. name: "Female",
  26942. image: {
  26943. source: "./media/characters/joraxian/female.svg",
  26944. extra: 2912 / 2824,
  26945. bottom: 36 / 2956
  26946. }
  26947. },
  26948. male: {
  26949. height: math.unit(25.4, "m"),
  26950. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26951. name: "Male",
  26952. image: {
  26953. source: "./media/characters/joraxian/male.svg",
  26954. extra: 2877 / 2721,
  26955. bottom: 82 / 2967
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Macro",
  26962. height: math.unit(26.15, "meters"),
  26963. default: true
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26969. {
  26970. female: {
  26971. height: math.unit(21.6, "m"),
  26972. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26973. name: "Female",
  26974. image: {
  26975. source: "./media/characters/sthara/female.svg",
  26976. extra: 2516 / 2347,
  26977. bottom: 21.5 / 2537
  26978. }
  26979. },
  26980. male: {
  26981. height: math.unit(24, "m"),
  26982. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26983. name: "Male",
  26984. image: {
  26985. source: "./media/characters/sthara/male.svg",
  26986. extra: 2732 / 2607,
  26987. bottom: 23 / 2732
  26988. }
  26989. },
  26990. },
  26991. [
  26992. {
  26993. name: "Macro",
  26994. height: math.unit(21.6, "meters"),
  26995. default: true
  26996. },
  26997. ]
  26998. ))
  26999. characterMakers.push(() => makeCharacter(
  27000. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27001. {
  27002. front: {
  27003. height: math.unit(6 + 4 / 12, "feet"),
  27004. weight: math.unit(175, "lb"),
  27005. name: "Front",
  27006. image: {
  27007. source: "./media/characters/luka-bryzant/front.svg",
  27008. extra: 311 / 289,
  27009. bottom: 4 / 315
  27010. }
  27011. },
  27012. back: {
  27013. height: math.unit(6 + 4 / 12, "feet"),
  27014. weight: math.unit(175, "lb"),
  27015. name: "Back",
  27016. image: {
  27017. source: "./media/characters/luka-bryzant/back.svg",
  27018. extra: 311 / 289,
  27019. bottom: 3.8 / 313.7
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Micro",
  27026. height: math.unit(10, "inches")
  27027. },
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(6 + 4 / 12, "feet"),
  27031. default: true
  27032. },
  27033. {
  27034. name: "Large",
  27035. height: math.unit(12, "feet")
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(5 + 7 / 12, "feet"),
  27044. weight: math.unit(185, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/aman-aquila/front.svg",
  27048. extra: 1013 / 976,
  27049. bottom: 45.6 / 1057
  27050. }
  27051. },
  27052. side: {
  27053. height: math.unit(5 + 7 / 12, "feet"),
  27054. weight: math.unit(185, "lb"),
  27055. name: "Side",
  27056. image: {
  27057. source: "./media/characters/aman-aquila/side.svg",
  27058. extra: 1054 / 1011,
  27059. bottom: 15 / 1070
  27060. }
  27061. },
  27062. back: {
  27063. height: math.unit(5 + 7 / 12, "feet"),
  27064. weight: math.unit(185, "lb"),
  27065. name: "Back",
  27066. image: {
  27067. source: "./media/characters/aman-aquila/back.svg",
  27068. extra: 1026 / 970,
  27069. bottom: 12 / 1039
  27070. }
  27071. },
  27072. head: {
  27073. height: math.unit(1.211, "feet"),
  27074. name: "Head",
  27075. image: {
  27076. source: "./media/characters/aman-aquila/head.svg",
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Minimicro",
  27083. height: math.unit(0.057, "inches")
  27084. },
  27085. {
  27086. name: "Micro",
  27087. height: math.unit(7, "inches")
  27088. },
  27089. {
  27090. name: "Mini",
  27091. height: math.unit(3 + 7 / 12, "feet")
  27092. },
  27093. {
  27094. name: "Normal",
  27095. height: math.unit(5 + 7 / 12, "feet"),
  27096. default: true
  27097. },
  27098. {
  27099. name: "Macro",
  27100. height: math.unit(157 + 7 / 12, "feet")
  27101. },
  27102. {
  27103. name: "Megamacro",
  27104. height: math.unit(1557 + 7 / 12, "feet")
  27105. },
  27106. {
  27107. name: "Gigamacro",
  27108. height: math.unit(15557 + 7 / 12, "feet")
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(3 + 2 / 12, "inches"),
  27117. weight: math.unit(0.3, "ounces"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/hiphae/front.svg",
  27121. extra: 1931 / 1683,
  27122. bottom: 24 / 1955
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(3 + 1 / 2, "inches"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(5 + 10 / 12, "feet"),
  27139. weight: math.unit(165, "lb"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/nicky/front.svg",
  27143. extra: 3144 / 2886,
  27144. bottom: 45.6 / 3192
  27145. }
  27146. },
  27147. back: {
  27148. height: math.unit(5 + 10 / 12, "feet"),
  27149. weight: math.unit(165, "lb"),
  27150. name: "Back",
  27151. image: {
  27152. source: "./media/characters/nicky/back.svg",
  27153. extra: 3055 / 2804,
  27154. bottom: 28.4 / 3087
  27155. }
  27156. },
  27157. frontclothed: {
  27158. height: math.unit(5 + 10 / 12, "feet"),
  27159. weight: math.unit(165, "lb"),
  27160. name: "Front-clothed",
  27161. image: {
  27162. source: "./media/characters/nicky/front-clothed.svg",
  27163. extra: 3184.9 / 2926.9,
  27164. bottom: 86.5 / 3239.9
  27165. }
  27166. },
  27167. foot: {
  27168. height: math.unit(1.16, "feet"),
  27169. name: "Foot",
  27170. image: {
  27171. source: "./media/characters/nicky/foot.svg"
  27172. }
  27173. },
  27174. feet: {
  27175. height: math.unit(1.34, "feet"),
  27176. name: "Feet",
  27177. image: {
  27178. source: "./media/characters/nicky/feet.svg"
  27179. }
  27180. },
  27181. maw: {
  27182. height: math.unit(0.9, "feet"),
  27183. name: "Maw",
  27184. image: {
  27185. source: "./media/characters/nicky/maw.svg"
  27186. }
  27187. },
  27188. },
  27189. [
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(5 + 10 / 12, "feet"),
  27193. default: true
  27194. },
  27195. {
  27196. name: "Macro",
  27197. height: math.unit(60, "feet")
  27198. },
  27199. {
  27200. name: "Megamacro",
  27201. height: math.unit(1, "mile")
  27202. },
  27203. ]
  27204. ))
  27205. characterMakers.push(() => makeCharacter(
  27206. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27207. {
  27208. side: {
  27209. height: math.unit(10, "feet"),
  27210. weight: math.unit(600, "lb"),
  27211. name: "Side",
  27212. image: {
  27213. source: "./media/characters/blair/side.svg",
  27214. bottom: 16.6 / 475,
  27215. extra: 458 / 431
  27216. }
  27217. },
  27218. },
  27219. [
  27220. {
  27221. name: "Micro",
  27222. height: math.unit(8, "inches")
  27223. },
  27224. {
  27225. name: "Normal",
  27226. height: math.unit(10, "feet"),
  27227. default: true
  27228. },
  27229. {
  27230. name: "Macro",
  27231. height: math.unit(180, "feet")
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27237. {
  27238. front: {
  27239. height: math.unit(5 + 4 / 12, "feet"),
  27240. weight: math.unit(125, "lb"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/fisher/front.svg",
  27244. extra: 444 / 390,
  27245. bottom: 2 / 444.8
  27246. }
  27247. },
  27248. },
  27249. [
  27250. {
  27251. name: "Micro",
  27252. height: math.unit(4, "inches")
  27253. },
  27254. {
  27255. name: "Normal",
  27256. height: math.unit(5 + 4 / 12, "feet"),
  27257. default: true
  27258. },
  27259. {
  27260. name: "Macro",
  27261. height: math.unit(100, "feet")
  27262. },
  27263. ]
  27264. ))
  27265. characterMakers.push(() => makeCharacter(
  27266. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27267. {
  27268. front: {
  27269. height: math.unit(6.71, "feet"),
  27270. weight: math.unit(200, "lb"),
  27271. preyCapacity: math.unit(1000000, "people"),
  27272. name: "Front",
  27273. image: {
  27274. source: "./media/characters/gliss/front.svg",
  27275. extra: 2347 / 2231,
  27276. bottom: 113 / 2462
  27277. }
  27278. },
  27279. hammerspaceSize: {
  27280. height: math.unit(6.71 * 717, "feet"),
  27281. weight: math.unit(200, "lb"),
  27282. preyCapacity: math.unit(1000000, "people"),
  27283. name: "Hammerspace Size",
  27284. image: {
  27285. source: "./media/characters/gliss/front.svg",
  27286. extra: 2347 / 2231,
  27287. bottom: 113 / 2462
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Normal",
  27294. height: math.unit(6.71, "feet"),
  27295. default: true
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27301. {
  27302. side: {
  27303. height: math.unit(1.44, "m"),
  27304. weight: math.unit(80, "kg"),
  27305. name: "Side",
  27306. image: {
  27307. source: "./media/characters/dune-anderson/side.svg",
  27308. bottom: 49 / 1426
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Wolf-sized",
  27315. height: math.unit(1.44, "meters")
  27316. },
  27317. {
  27318. name: "Normal",
  27319. height: math.unit(5.05, "meters"),
  27320. default: true
  27321. },
  27322. {
  27323. name: "Big",
  27324. height: math.unit(14.4, "meters")
  27325. },
  27326. {
  27327. name: "Huge",
  27328. height: math.unit(144, "meters")
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27334. {
  27335. front: {
  27336. height: math.unit(7, "feet"),
  27337. weight: math.unit(425, "lb"),
  27338. name: "Front",
  27339. image: {
  27340. source: "./media/characters/hind/front.svg",
  27341. extra: 2091 / 1860,
  27342. bottom: 129 / 2220
  27343. }
  27344. },
  27345. back: {
  27346. height: math.unit(7, "feet"),
  27347. weight: math.unit(425, "lb"),
  27348. name: "Back",
  27349. image: {
  27350. source: "./media/characters/hind/back.svg",
  27351. extra: 2091 / 1860,
  27352. bottom: 24.6 / 2309
  27353. }
  27354. },
  27355. tail: {
  27356. height: math.unit(2.8, "feet"),
  27357. name: "Tail",
  27358. image: {
  27359. source: "./media/characters/hind/tail.svg"
  27360. }
  27361. },
  27362. head: {
  27363. height: math.unit(2.55, "feet"),
  27364. name: "Head",
  27365. image: {
  27366. source: "./media/characters/hind/head.svg"
  27367. }
  27368. },
  27369. },
  27370. [
  27371. {
  27372. name: "XS",
  27373. height: math.unit(0.7, "feet")
  27374. },
  27375. {
  27376. name: "Normal",
  27377. height: math.unit(7, "feet"),
  27378. default: true
  27379. },
  27380. {
  27381. name: "XL",
  27382. height: math.unit(70, "feet")
  27383. },
  27384. ]
  27385. ))
  27386. characterMakers.push(() => makeCharacter(
  27387. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27388. {
  27389. front: {
  27390. height: math.unit(2.1, "meters"),
  27391. weight: math.unit(150, "lb"),
  27392. name: "Front",
  27393. image: {
  27394. source: "./media/characters/tharquench-sizestealer/front.svg",
  27395. extra: 1605/1470,
  27396. bottom: 36/1641
  27397. }
  27398. },
  27399. frontAlt: {
  27400. height: math.unit(2.1, "meters"),
  27401. weight: math.unit(150, "lb"),
  27402. name: "Front (Alt)",
  27403. image: {
  27404. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27405. extra: 2318 / 2063,
  27406. bottom: 93.4 / 2410
  27407. }
  27408. },
  27409. },
  27410. [
  27411. {
  27412. name: "Nano",
  27413. height: math.unit(1, "mm")
  27414. },
  27415. {
  27416. name: "Micro",
  27417. height: math.unit(1, "cm")
  27418. },
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(2.1, "meters"),
  27422. default: true
  27423. },
  27424. ]
  27425. ))
  27426. characterMakers.push(() => makeCharacter(
  27427. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27428. {
  27429. front: {
  27430. height: math.unit(7 + 5 / 12, "feet"),
  27431. weight: math.unit(357, "lb"),
  27432. name: "Front",
  27433. image: {
  27434. source: "./media/characters/solex-draconov/front.svg",
  27435. extra: 1993 / 1865,
  27436. bottom: 117 / 2111
  27437. }
  27438. },
  27439. },
  27440. [
  27441. {
  27442. name: "Natural Height",
  27443. height: math.unit(7 + 5 / 12, "feet"),
  27444. default: true
  27445. },
  27446. {
  27447. name: "Macro",
  27448. height: math.unit(350, "feet")
  27449. },
  27450. {
  27451. name: "Macro+",
  27452. height: math.unit(1000, "feet")
  27453. },
  27454. {
  27455. name: "Megamacro",
  27456. height: math.unit(20, "km")
  27457. },
  27458. {
  27459. name: "Megamacro+",
  27460. height: math.unit(1000, "km")
  27461. },
  27462. {
  27463. name: "Gigamacro",
  27464. height: math.unit(2.5, "Gm")
  27465. },
  27466. {
  27467. name: "Teramacro",
  27468. height: math.unit(15, "Tm")
  27469. },
  27470. {
  27471. name: "Galactic",
  27472. height: math.unit(30, "Zm")
  27473. },
  27474. {
  27475. name: "Universal",
  27476. height: math.unit(21000, "Ym")
  27477. },
  27478. {
  27479. name: "Omniversal",
  27480. height: math.unit(9.861e50, "Ym")
  27481. },
  27482. {
  27483. name: "Existential",
  27484. height: math.unit(1e300, "meters")
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27490. {
  27491. side: {
  27492. height: math.unit(25, "feet"),
  27493. weight: math.unit(90000, "lb"),
  27494. name: "Side",
  27495. image: {
  27496. source: "./media/characters/mandarax/side.svg",
  27497. extra: 614 / 332,
  27498. bottom: 55 / 630
  27499. }
  27500. },
  27501. lounging: {
  27502. height: math.unit(15.4, "feet"),
  27503. weight: math.unit(90000, "lb"),
  27504. name: "Lounging",
  27505. image: {
  27506. source: "./media/characters/mandarax/lounging.svg",
  27507. extra: 817/609,
  27508. bottom: 685/1502
  27509. }
  27510. },
  27511. head: {
  27512. height: math.unit(11.4, "feet"),
  27513. name: "Head",
  27514. image: {
  27515. source: "./media/characters/mandarax/head.svg"
  27516. }
  27517. },
  27518. belly: {
  27519. height: math.unit(33, "feet"),
  27520. name: "Belly",
  27521. preyCapacity: math.unit(500, "people"),
  27522. image: {
  27523. source: "./media/characters/mandarax/belly.svg"
  27524. }
  27525. },
  27526. dick: {
  27527. height: math.unit(8.46, "feet"),
  27528. name: "Dick",
  27529. image: {
  27530. source: "./media/characters/mandarax/dick.svg"
  27531. }
  27532. },
  27533. top: {
  27534. height: math.unit(28, "meters"),
  27535. name: "Top",
  27536. image: {
  27537. source: "./media/characters/mandarax/top.svg"
  27538. }
  27539. },
  27540. },
  27541. [
  27542. {
  27543. name: "Normal",
  27544. height: math.unit(25, "feet"),
  27545. default: true
  27546. },
  27547. ]
  27548. ))
  27549. characterMakers.push(() => makeCharacter(
  27550. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27551. {
  27552. front: {
  27553. height: math.unit(5, "feet"),
  27554. weight: math.unit(90, "lb"),
  27555. name: "Front",
  27556. image: {
  27557. source: "./media/characters/pixil/front.svg",
  27558. extra: 2000 / 1618,
  27559. bottom: 12.3 / 2011
  27560. }
  27561. },
  27562. },
  27563. [
  27564. {
  27565. name: "Normal",
  27566. height: math.unit(5, "feet"),
  27567. default: true
  27568. },
  27569. {
  27570. name: "Megamacro",
  27571. height: math.unit(10, "miles"),
  27572. },
  27573. ]
  27574. ))
  27575. characterMakers.push(() => makeCharacter(
  27576. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27577. {
  27578. front: {
  27579. height: math.unit(7 + 2 / 12, "feet"),
  27580. weight: math.unit(200, "lb"),
  27581. name: "Front",
  27582. image: {
  27583. source: "./media/characters/angel/front.svg",
  27584. extra: 1830 / 1737,
  27585. bottom: 22.6 / 1854,
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Normal",
  27592. height: math.unit(7 + 2 / 12, "feet"),
  27593. default: true
  27594. },
  27595. {
  27596. name: "Macro",
  27597. height: math.unit(1000, "feet")
  27598. },
  27599. {
  27600. name: "Megamacro",
  27601. height: math.unit(2, "miles")
  27602. },
  27603. {
  27604. name: "Gigamacro",
  27605. height: math.unit(20, "earths")
  27606. },
  27607. ]
  27608. ))
  27609. characterMakers.push(() => makeCharacter(
  27610. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27611. {
  27612. front: {
  27613. height: math.unit(5, "feet"),
  27614. weight: math.unit(180, "lb"),
  27615. name: "Front",
  27616. image: {
  27617. source: "./media/characters/mekana/front.svg",
  27618. extra: 1671 / 1605,
  27619. bottom: 3.5 / 1691
  27620. }
  27621. },
  27622. side: {
  27623. height: math.unit(5, "feet"),
  27624. weight: math.unit(180, "lb"),
  27625. name: "Side",
  27626. image: {
  27627. source: "./media/characters/mekana/side.svg",
  27628. extra: 1671 / 1605,
  27629. bottom: 3.5 / 1691
  27630. }
  27631. },
  27632. back: {
  27633. height: math.unit(5, "feet"),
  27634. weight: math.unit(180, "lb"),
  27635. name: "Back",
  27636. image: {
  27637. source: "./media/characters/mekana/back.svg",
  27638. extra: 1671 / 1605,
  27639. bottom: 3.5 / 1691
  27640. }
  27641. },
  27642. },
  27643. [
  27644. {
  27645. name: "Normal",
  27646. height: math.unit(5, "feet"),
  27647. default: true
  27648. },
  27649. ]
  27650. ))
  27651. characterMakers.push(() => makeCharacter(
  27652. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27653. {
  27654. front: {
  27655. height: math.unit(4 + 6 / 12, "feet"),
  27656. weight: math.unit(80, "lb"),
  27657. name: "Front",
  27658. image: {
  27659. source: "./media/characters/pixie/front.svg",
  27660. extra: 1924 / 1825,
  27661. bottom: 22.4 / 1946
  27662. }
  27663. },
  27664. },
  27665. [
  27666. {
  27667. name: "Normal",
  27668. height: math.unit(4 + 6 / 12, "feet"),
  27669. default: true
  27670. },
  27671. {
  27672. name: "Macro",
  27673. height: math.unit(40, "feet")
  27674. },
  27675. ]
  27676. ))
  27677. characterMakers.push(() => makeCharacter(
  27678. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27679. {
  27680. front: {
  27681. height: math.unit(2.1, "meters"),
  27682. weight: math.unit(200, "lb"),
  27683. name: "Front",
  27684. image: {
  27685. source: "./media/characters/the-lascivious/front.svg",
  27686. extra: 1 / 0.893,
  27687. bottom: 3.5 / 573.7
  27688. }
  27689. },
  27690. },
  27691. [
  27692. {
  27693. name: "Human Scale",
  27694. height: math.unit(2.1, "meters")
  27695. },
  27696. {
  27697. name: "Wolxi Scale",
  27698. height: math.unit(46.2, "m"),
  27699. default: true
  27700. },
  27701. {
  27702. name: "Boinker of Buildings",
  27703. height: math.unit(10, "km")
  27704. },
  27705. {
  27706. name: "Shagger of Skyscrapers",
  27707. height: math.unit(40, "km")
  27708. },
  27709. {
  27710. name: "Banger of Boroughs",
  27711. height: math.unit(4000, "km")
  27712. },
  27713. {
  27714. name: "Screwer of States",
  27715. height: math.unit(100000, "km")
  27716. },
  27717. {
  27718. name: "Pounder of Planets",
  27719. height: math.unit(2000000, "km")
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27725. {
  27726. front: {
  27727. height: math.unit(6, "feet"),
  27728. weight: math.unit(150, "lb"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/aj/front.svg",
  27732. extra: 2039 / 1562,
  27733. bottom: 40 / 2079
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Normal",
  27740. height: math.unit(11 + 6 / 12, "feet"),
  27741. default: true
  27742. },
  27743. {
  27744. name: "Megamacro",
  27745. height: math.unit(60, "megameters")
  27746. },
  27747. ]
  27748. ))
  27749. characterMakers.push(() => makeCharacter(
  27750. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27751. {
  27752. side: {
  27753. height: math.unit(31 + 8 / 12, "feet"),
  27754. weight: math.unit(75000, "kg"),
  27755. name: "Side",
  27756. image: {
  27757. source: "./media/characters/koros/side.svg",
  27758. extra: 1442 / 1297,
  27759. bottom: 122.7 / 1562
  27760. }
  27761. },
  27762. dicksKingsCrown: {
  27763. height: math.unit(6, "feet"),
  27764. name: "Dicks (King's Crown)",
  27765. image: {
  27766. source: "./media/characters/koros/dicks-kings-crown.svg"
  27767. }
  27768. },
  27769. dicksTailSet: {
  27770. height: math.unit(3, "feet"),
  27771. name: "Dicks (Tail Set)",
  27772. image: {
  27773. source: "./media/characters/koros/dicks-tail-set.svg"
  27774. }
  27775. },
  27776. dickCumming: {
  27777. height: math.unit(7.98, "feet"),
  27778. name: "Dick (Cumming)",
  27779. image: {
  27780. source: "./media/characters/koros/dick-cumming.svg"
  27781. }
  27782. },
  27783. dicksBack: {
  27784. height: math.unit(5.9, "feet"),
  27785. name: "Dicks (Back)",
  27786. image: {
  27787. source: "./media/characters/koros/dicks-back.svg"
  27788. }
  27789. },
  27790. dicksFront: {
  27791. height: math.unit(3.72, "feet"),
  27792. name: "Dicks (Front)",
  27793. image: {
  27794. source: "./media/characters/koros/dicks-front.svg"
  27795. }
  27796. },
  27797. dicksPeeking: {
  27798. height: math.unit(3.0, "feet"),
  27799. name: "Dicks (Peeking)",
  27800. image: {
  27801. source: "./media/characters/koros/dicks-peeking.svg"
  27802. }
  27803. },
  27804. eye: {
  27805. height: math.unit(1.7, "feet"),
  27806. name: "Eye",
  27807. image: {
  27808. source: "./media/characters/koros/eye.svg"
  27809. }
  27810. },
  27811. headFront: {
  27812. height: math.unit(11.69, "feet"),
  27813. name: "Head (Front)",
  27814. image: {
  27815. source: "./media/characters/koros/head-front.svg"
  27816. }
  27817. },
  27818. headSide: {
  27819. height: math.unit(14, "feet"),
  27820. name: "Head (Side)",
  27821. image: {
  27822. source: "./media/characters/koros/head-side.svg"
  27823. }
  27824. },
  27825. leg: {
  27826. height: math.unit(17, "feet"),
  27827. name: "Leg",
  27828. image: {
  27829. source: "./media/characters/koros/leg.svg"
  27830. }
  27831. },
  27832. mawSide: {
  27833. height: math.unit(12.8, "feet"),
  27834. name: "Maw (Side)",
  27835. image: {
  27836. source: "./media/characters/koros/maw-side.svg"
  27837. }
  27838. },
  27839. mawSpitting: {
  27840. height: math.unit(17, "feet"),
  27841. name: "Maw (Spitting)",
  27842. image: {
  27843. source: "./media/characters/koros/maw-spitting.svg"
  27844. }
  27845. },
  27846. slit: {
  27847. height: math.unit(2.8, "feet"),
  27848. name: "Slit",
  27849. image: {
  27850. source: "./media/characters/koros/slit.svg"
  27851. }
  27852. },
  27853. stomach: {
  27854. height: math.unit(6.8, "feet"),
  27855. preyCapacity: math.unit(20, "people"),
  27856. name: "Stomach",
  27857. image: {
  27858. source: "./media/characters/koros/stomach.svg"
  27859. }
  27860. },
  27861. wingspanBottom: {
  27862. height: math.unit(114, "feet"),
  27863. name: "Wingspan (Bottom)",
  27864. image: {
  27865. source: "./media/characters/koros/wingspan-bottom.svg"
  27866. }
  27867. },
  27868. wingspanTop: {
  27869. height: math.unit(104, "feet"),
  27870. name: "Wingspan (Top)",
  27871. image: {
  27872. source: "./media/characters/koros/wingspan-top.svg"
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Normal",
  27879. height: math.unit(31 + 8 / 12, "feet"),
  27880. default: true
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27886. {
  27887. front: {
  27888. height: math.unit(18 + 5 / 12, "feet"),
  27889. weight: math.unit(3750, "kg"),
  27890. name: "Front",
  27891. image: {
  27892. source: "./media/characters/vexx/front.svg",
  27893. extra: 426 / 396,
  27894. bottom: 31.5 / 458
  27895. }
  27896. },
  27897. maw: {
  27898. height: math.unit(6, "feet"),
  27899. name: "Maw",
  27900. image: {
  27901. source: "./media/characters/vexx/maw.svg"
  27902. }
  27903. },
  27904. },
  27905. [
  27906. {
  27907. name: "Normal",
  27908. height: math.unit(18 + 5 / 12, "feet"),
  27909. default: true
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27915. {
  27916. front: {
  27917. height: math.unit(17 + 6 / 12, "feet"),
  27918. weight: math.unit(150, "lb"),
  27919. name: "Front",
  27920. image: {
  27921. source: "./media/characters/baadra/front.svg",
  27922. extra: 1694/1553,
  27923. bottom: 179/1873
  27924. }
  27925. },
  27926. frontAlt: {
  27927. height: math.unit(17 + 6 / 12, "feet"),
  27928. weight: math.unit(150, "lb"),
  27929. name: "Front (Alt)",
  27930. image: {
  27931. source: "./media/characters/baadra/front-alt.svg",
  27932. extra: 3137 / 2890,
  27933. bottom: 168.4 / 3305
  27934. }
  27935. },
  27936. back: {
  27937. height: math.unit(17 + 6 / 12, "feet"),
  27938. weight: math.unit(150, "lb"),
  27939. name: "Back",
  27940. image: {
  27941. source: "./media/characters/baadra/back.svg",
  27942. extra: 3142 / 2890,
  27943. bottom: 220 / 3371
  27944. }
  27945. },
  27946. head: {
  27947. height: math.unit(5.45, "feet"),
  27948. name: "Head",
  27949. image: {
  27950. source: "./media/characters/baadra/head.svg"
  27951. }
  27952. },
  27953. headAngry: {
  27954. height: math.unit(4.95, "feet"),
  27955. name: "Head (Angry)",
  27956. image: {
  27957. source: "./media/characters/baadra/head-angry.svg"
  27958. }
  27959. },
  27960. headOpen: {
  27961. height: math.unit(6, "feet"),
  27962. name: "Head (Open)",
  27963. image: {
  27964. source: "./media/characters/baadra/head-open.svg"
  27965. }
  27966. },
  27967. },
  27968. [
  27969. {
  27970. name: "Normal",
  27971. height: math.unit(17 + 6 / 12, "feet"),
  27972. default: true
  27973. },
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27978. {
  27979. front: {
  27980. height: math.unit(7 + 3 / 12, "feet"),
  27981. weight: math.unit(180, "lb"),
  27982. name: "Front",
  27983. image: {
  27984. source: "./media/characters/juri/front.svg",
  27985. extra: 1401 / 1237,
  27986. bottom: 18.5 / 1418
  27987. }
  27988. },
  27989. side: {
  27990. height: math.unit(7 + 3 / 12, "feet"),
  27991. weight: math.unit(180, "lb"),
  27992. name: "Side",
  27993. image: {
  27994. source: "./media/characters/juri/side.svg",
  27995. extra: 1424 / 1242,
  27996. bottom: 18.5 / 1447
  27997. }
  27998. },
  27999. sitting: {
  28000. height: math.unit(6, "feet"),
  28001. weight: math.unit(180, "lb"),
  28002. name: "Sitting",
  28003. image: {
  28004. source: "./media/characters/juri/sitting.svg",
  28005. extra: 1270 / 1143,
  28006. bottom: 100 / 1343
  28007. }
  28008. },
  28009. back: {
  28010. height: math.unit(7 + 3 / 12, "feet"),
  28011. weight: math.unit(180, "lb"),
  28012. name: "Back",
  28013. image: {
  28014. source: "./media/characters/juri/back.svg",
  28015. extra: 1377 / 1240,
  28016. bottom: 23.7 / 1405
  28017. }
  28018. },
  28019. maw: {
  28020. height: math.unit(2.8, "feet"),
  28021. name: "Maw",
  28022. image: {
  28023. source: "./media/characters/juri/maw.svg"
  28024. }
  28025. },
  28026. stomach: {
  28027. height: math.unit(0.89, "feet"),
  28028. preyCapacity: math.unit(4, "liters"),
  28029. name: "Stomach",
  28030. image: {
  28031. source: "./media/characters/juri/stomach.svg"
  28032. }
  28033. },
  28034. },
  28035. [
  28036. {
  28037. name: "Normal",
  28038. height: math.unit(7 + 3 / 12, "feet"),
  28039. default: true
  28040. },
  28041. ]
  28042. ))
  28043. characterMakers.push(() => makeCharacter(
  28044. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28045. {
  28046. fox: {
  28047. height: math.unit(5 + 6 / 12, "feet"),
  28048. weight: math.unit(140, "lb"),
  28049. name: "Fox",
  28050. image: {
  28051. source: "./media/characters/maxene-sita/fox.svg",
  28052. extra: 146 / 138,
  28053. bottom: 2.1 / 148.19
  28054. }
  28055. },
  28056. foxLaying: {
  28057. height: math.unit(1.70, "feet"),
  28058. weight: math.unit(140, "lb"),
  28059. name: "Fox (Laying)",
  28060. image: {
  28061. source: "./media/characters/maxene-sita/fox-laying.svg",
  28062. extra: 910 / 572,
  28063. bottom: 71 / 981
  28064. }
  28065. },
  28066. kitsune: {
  28067. height: math.unit(10, "feet"),
  28068. weight: math.unit(800, "lb"),
  28069. name: "Kitsune",
  28070. image: {
  28071. source: "./media/characters/maxene-sita/kitsune.svg",
  28072. extra: 185 / 176,
  28073. bottom: 4.7 / 189.9
  28074. }
  28075. },
  28076. hellhound: {
  28077. height: math.unit(10, "feet"),
  28078. weight: math.unit(700, "lb"),
  28079. name: "Hellhound",
  28080. image: {
  28081. source: "./media/characters/maxene-sita/hellhound.svg",
  28082. extra: 1600 / 1545,
  28083. bottom: 81 / 1681
  28084. }
  28085. },
  28086. },
  28087. [
  28088. {
  28089. name: "Normal",
  28090. height: math.unit(5 + 6 / 12, "feet"),
  28091. default: true
  28092. },
  28093. ]
  28094. ))
  28095. characterMakers.push(() => makeCharacter(
  28096. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28097. {
  28098. front: {
  28099. height: math.unit(3 + 4 / 12, "feet"),
  28100. weight: math.unit(70, "lb"),
  28101. name: "Front",
  28102. image: {
  28103. source: "./media/characters/maia/front.svg",
  28104. extra: 227 / 219.5,
  28105. bottom: 40 / 267
  28106. }
  28107. },
  28108. back: {
  28109. height: math.unit(3 + 4 / 12, "feet"),
  28110. weight: math.unit(70, "lb"),
  28111. name: "Back",
  28112. image: {
  28113. source: "./media/characters/maia/back.svg",
  28114. extra: 237 / 225
  28115. }
  28116. },
  28117. },
  28118. [
  28119. {
  28120. name: "Normal",
  28121. height: math.unit(3 + 4 / 12, "feet"),
  28122. default: true
  28123. },
  28124. ]
  28125. ))
  28126. characterMakers.push(() => makeCharacter(
  28127. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28128. {
  28129. front: {
  28130. height: math.unit(5 + 10 / 12, "feet"),
  28131. weight: math.unit(197, "lb"),
  28132. name: "Front",
  28133. image: {
  28134. source: "./media/characters/jabaro/front.svg",
  28135. extra: 225 / 216,
  28136. bottom: 5.06 / 230
  28137. }
  28138. },
  28139. back: {
  28140. height: math.unit(5 + 10 / 12, "feet"),
  28141. weight: math.unit(197, "lb"),
  28142. name: "Back",
  28143. image: {
  28144. source: "./media/characters/jabaro/back.svg",
  28145. extra: 225 / 219,
  28146. bottom: 1.9 / 227
  28147. }
  28148. },
  28149. },
  28150. [
  28151. {
  28152. name: "Normal",
  28153. height: math.unit(5 + 10 / 12, "feet"),
  28154. default: true
  28155. },
  28156. ]
  28157. ))
  28158. characterMakers.push(() => makeCharacter(
  28159. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28160. {
  28161. front: {
  28162. height: math.unit(5 + 8 / 12, "feet"),
  28163. weight: math.unit(139, "lb"),
  28164. name: "Front",
  28165. image: {
  28166. source: "./media/characters/risa/front.svg",
  28167. extra: 270 / 260,
  28168. bottom: 11.2 / 282
  28169. }
  28170. },
  28171. back: {
  28172. height: math.unit(5 + 8 / 12, "feet"),
  28173. weight: math.unit(139, "lb"),
  28174. name: "Back",
  28175. image: {
  28176. source: "./media/characters/risa/back.svg",
  28177. extra: 264 / 255,
  28178. bottom: 4 / 268
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(5 + 8 / 12, "feet"),
  28186. default: true
  28187. },
  28188. ]
  28189. ))
  28190. characterMakers.push(() => makeCharacter(
  28191. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28192. {
  28193. front: {
  28194. height: math.unit(2 + 11 / 12, "feet"),
  28195. weight: math.unit(30, "lb"),
  28196. name: "Front",
  28197. image: {
  28198. source: "./media/characters/weatley/front.svg",
  28199. bottom: 10.7 / 414,
  28200. extra: 403.5 / 362
  28201. }
  28202. },
  28203. back: {
  28204. height: math.unit(2 + 11 / 12, "feet"),
  28205. weight: math.unit(30, "lb"),
  28206. name: "Back",
  28207. image: {
  28208. source: "./media/characters/weatley/back.svg",
  28209. bottom: 10.7 / 414,
  28210. extra: 403.5 / 362
  28211. }
  28212. },
  28213. },
  28214. [
  28215. {
  28216. name: "Normal",
  28217. height: math.unit(2 + 11 / 12, "feet"),
  28218. default: true
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(5 + 2 / 12, "feet"),
  28227. weight: math.unit(50, "kg"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/mercury-crescent/front.svg",
  28231. extra: 1088 / 1033,
  28232. bottom: 18.9 / 1109
  28233. }
  28234. },
  28235. },
  28236. [
  28237. {
  28238. name: "Normal",
  28239. height: math.unit(5 + 2 / 12, "feet"),
  28240. default: true
  28241. },
  28242. ]
  28243. ))
  28244. characterMakers.push(() => makeCharacter(
  28245. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28246. {
  28247. front: {
  28248. height: math.unit(2, "feet"),
  28249. weight: math.unit(15, "kg"),
  28250. name: "Front",
  28251. image: {
  28252. source: "./media/characters/diamond-jones/front.svg",
  28253. extra: 727/723,
  28254. bottom: 46/773
  28255. }
  28256. },
  28257. },
  28258. [
  28259. {
  28260. name: "Normal",
  28261. height: math.unit(2, "feet"),
  28262. default: true
  28263. },
  28264. ]
  28265. ))
  28266. characterMakers.push(() => makeCharacter(
  28267. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28268. {
  28269. front: {
  28270. height: math.unit(3, "feet"),
  28271. weight: math.unit(30, "kg"),
  28272. name: "Front",
  28273. image: {
  28274. source: "./media/characters/sweet-bit/front.svg",
  28275. extra: 675 / 567,
  28276. bottom: 27.7 / 703
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Normal",
  28283. height: math.unit(3, "feet"),
  28284. default: true
  28285. },
  28286. ]
  28287. ))
  28288. characterMakers.push(() => makeCharacter(
  28289. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28290. {
  28291. side: {
  28292. height: math.unit(9.178, "feet"),
  28293. weight: math.unit(500, "lb"),
  28294. name: "Side",
  28295. image: {
  28296. source: "./media/characters/umbrazen/side.svg",
  28297. extra: 1730 / 1473,
  28298. bottom: 34.6 / 1765
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(9.178, "feet"),
  28306. default: true
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28312. {
  28313. front: {
  28314. height: math.unit(10, "feet"),
  28315. weight: math.unit(750, "lb"),
  28316. name: "Front",
  28317. image: {
  28318. source: "./media/characters/arlist/front.svg",
  28319. extra: 961 / 778,
  28320. bottom: 6.2 / 986
  28321. }
  28322. },
  28323. },
  28324. [
  28325. {
  28326. name: "Normal",
  28327. height: math.unit(10, "feet"),
  28328. default: true
  28329. },
  28330. ]
  28331. ))
  28332. characterMakers.push(() => makeCharacter(
  28333. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28334. {
  28335. front: {
  28336. height: math.unit(5 + 1 / 12, "feet"),
  28337. weight: math.unit(110, "lb"),
  28338. name: "Front",
  28339. image: {
  28340. source: "./media/characters/aradel/front.svg",
  28341. extra: 324 / 303,
  28342. bottom: 3.6 / 329.4
  28343. }
  28344. },
  28345. },
  28346. [
  28347. {
  28348. name: "Normal",
  28349. height: math.unit(5 + 1 / 12, "feet"),
  28350. default: true
  28351. },
  28352. ]
  28353. ))
  28354. characterMakers.push(() => makeCharacter(
  28355. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28356. {
  28357. dressed: {
  28358. height: math.unit(3 + 8 / 12, "feet"),
  28359. weight: math.unit(50, "lb"),
  28360. name: "Dressed",
  28361. image: {
  28362. source: "./media/characters/serryn/dressed.svg",
  28363. extra: 1792 / 1656,
  28364. bottom: 43.5 / 1840
  28365. }
  28366. },
  28367. nude: {
  28368. height: math.unit(3 + 8 / 12, "feet"),
  28369. weight: math.unit(50, "lb"),
  28370. name: "Nude",
  28371. image: {
  28372. source: "./media/characters/serryn/nude.svg",
  28373. extra: 1792 / 1656,
  28374. bottom: 43.5 / 1840
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(3 + 8 / 12, "feet"),
  28382. default: true
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(7 + 10 / 12, "feet"),
  28391. weight: math.unit(255, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/xavier-thyme/front.svg",
  28395. extra: 3733 / 3642,
  28396. bottom: 131 / 3869
  28397. }
  28398. },
  28399. frontRaven: {
  28400. height: math.unit(7 + 10 / 12, "feet"),
  28401. weight: math.unit(255, "lb"),
  28402. name: "Front (Raven)",
  28403. image: {
  28404. source: "./media/characters/xavier-thyme/front-raven.svg",
  28405. extra: 4385 / 3642,
  28406. bottom: 131 / 4517
  28407. }
  28408. },
  28409. },
  28410. [
  28411. {
  28412. name: "Normal",
  28413. height: math.unit(7 + 10 / 12, "feet"),
  28414. default: true
  28415. },
  28416. ]
  28417. ))
  28418. characterMakers.push(() => makeCharacter(
  28419. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28420. {
  28421. front: {
  28422. height: math.unit(1.6, "m"),
  28423. weight: math.unit(50, "kg"),
  28424. name: "Front",
  28425. image: {
  28426. source: "./media/characters/kiki/front.svg",
  28427. extra: 4682 / 3610,
  28428. bottom: 115 / 4777
  28429. }
  28430. },
  28431. },
  28432. [
  28433. {
  28434. name: "Normal",
  28435. height: math.unit(1.6, "meters"),
  28436. default: true
  28437. },
  28438. ]
  28439. ))
  28440. characterMakers.push(() => makeCharacter(
  28441. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28442. {
  28443. front: {
  28444. height: math.unit(50, "m"),
  28445. weight: math.unit(500, "tonnes"),
  28446. name: "Front",
  28447. image: {
  28448. source: "./media/characters/ryoko/front.svg",
  28449. extra: 4632 / 3926,
  28450. bottom: 193 / 4823
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(50, "meters"),
  28458. default: true
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28464. {
  28465. front: {
  28466. height: math.unit(30, "m"),
  28467. weight: math.unit(22, "tonnes"),
  28468. name: "Front",
  28469. image: {
  28470. source: "./media/characters/elio/front.svg",
  28471. extra: 4582 / 3720,
  28472. bottom: 236 / 4828
  28473. }
  28474. },
  28475. },
  28476. [
  28477. {
  28478. name: "Normal",
  28479. height: math.unit(30, "meters"),
  28480. default: true
  28481. },
  28482. ]
  28483. ))
  28484. characterMakers.push(() => makeCharacter(
  28485. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28486. {
  28487. front: {
  28488. height: math.unit(6 + 3 / 12, "feet"),
  28489. weight: math.unit(120, "lb"),
  28490. name: "Front",
  28491. image: {
  28492. source: "./media/characters/azura/front.svg",
  28493. extra: 1149 / 1135,
  28494. bottom: 45 / 1194
  28495. }
  28496. },
  28497. frontClothed: {
  28498. height: math.unit(6 + 3 / 12, "feet"),
  28499. weight: math.unit(120, "lb"),
  28500. name: "Front (Clothed)",
  28501. image: {
  28502. source: "./media/characters/azura/front-clothed.svg",
  28503. extra: 1149 / 1135,
  28504. bottom: 45 / 1194
  28505. }
  28506. },
  28507. },
  28508. [
  28509. {
  28510. name: "Normal",
  28511. height: math.unit(6 + 3 / 12, "feet"),
  28512. default: true
  28513. },
  28514. {
  28515. name: "Macro",
  28516. height: math.unit(20 + 6 / 12, "feet")
  28517. },
  28518. {
  28519. name: "Megamacro",
  28520. height: math.unit(12, "miles")
  28521. },
  28522. {
  28523. name: "Gigamacro",
  28524. height: math.unit(10000, "miles")
  28525. },
  28526. {
  28527. name: "Teramacro",
  28528. height: math.unit(900000, "miles")
  28529. },
  28530. ]
  28531. ))
  28532. characterMakers.push(() => makeCharacter(
  28533. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28534. {
  28535. front: {
  28536. height: math.unit(12, "feet"),
  28537. weight: math.unit(1, "ton"),
  28538. capacity: math.unit(660000, "gallons"),
  28539. name: "Front",
  28540. image: {
  28541. source: "./media/characters/zeus/front.svg",
  28542. extra: 5005 / 4717,
  28543. bottom: 363 / 5388
  28544. }
  28545. },
  28546. },
  28547. [
  28548. {
  28549. name: "Normal",
  28550. height: math.unit(12, "feet")
  28551. },
  28552. {
  28553. name: "Preferred Size",
  28554. height: math.unit(0.5, "miles"),
  28555. default: true
  28556. },
  28557. {
  28558. name: "Giga Horse",
  28559. height: math.unit(300, "miles")
  28560. },
  28561. {
  28562. name: "Riding Planets",
  28563. height: math.unit(30, "megameters")
  28564. },
  28565. {
  28566. name: "Cosmic Giant",
  28567. height: math.unit(3, "zettameters")
  28568. },
  28569. {
  28570. name: "Breeding God",
  28571. height: math.unit(9.92e22, "yottameters")
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28577. {
  28578. side: {
  28579. height: math.unit(9, "feet"),
  28580. weight: math.unit(1500, "kg"),
  28581. name: "Side",
  28582. image: {
  28583. source: "./media/characters/fang/side.svg",
  28584. extra: 924 / 866,
  28585. bottom: 47.5 / 972.3
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(9, "feet"),
  28593. default: true
  28594. },
  28595. {
  28596. name: "Macro",
  28597. height: math.unit(75 + 6 / 12, "feet")
  28598. },
  28599. {
  28600. name: "Teramacro",
  28601. height: math.unit(50000, "miles")
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(10, "feet"),
  28610. weight: math.unit(2, "tons"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/rekhit/front.svg",
  28614. extra: 2796 / 2590,
  28615. bottom: 225 / 3022
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(10, "feet"),
  28623. default: true
  28624. },
  28625. {
  28626. name: "Macro",
  28627. height: math.unit(500, "feet")
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(7 + 6.451 / 12, "feet"),
  28636. weight: math.unit(310, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/dahlia-verrick/front.svg",
  28640. extra: 1488 / 1365,
  28641. bottom: 6.2 / 1495
  28642. }
  28643. },
  28644. back: {
  28645. height: math.unit(7 + 6.451 / 12, "feet"),
  28646. weight: math.unit(310, "lb"),
  28647. name: "Back",
  28648. image: {
  28649. source: "./media/characters/dahlia-verrick/back.svg",
  28650. extra: 1472 / 1351,
  28651. bottom: 5.28 / 1477
  28652. }
  28653. },
  28654. frontBusiness: {
  28655. height: math.unit(7 + 6.451 / 12, "feet"),
  28656. weight: math.unit(200, "lb"),
  28657. name: "Front (Business)",
  28658. image: {
  28659. source: "./media/characters/dahlia-verrick/front-business.svg",
  28660. extra: 1478 / 1381,
  28661. bottom: 5.5 / 1484
  28662. }
  28663. },
  28664. frontCasual: {
  28665. height: math.unit(7 + 6.451 / 12, "feet"),
  28666. weight: math.unit(200, "lb"),
  28667. name: "Front (Casual)",
  28668. image: {
  28669. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28670. extra: 1478 / 1381,
  28671. bottom: 5.5 / 1484
  28672. }
  28673. },
  28674. },
  28675. [
  28676. {
  28677. name: "Travel-Sized",
  28678. height: math.unit(7.45, "inches")
  28679. },
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(7 + 6.451 / 12, "feet"),
  28683. default: true
  28684. },
  28685. {
  28686. name: "Hitting the Town",
  28687. height: math.unit(37 + 8 / 12, "feet")
  28688. },
  28689. {
  28690. name: "Stomp in the Suburbs",
  28691. height: math.unit(964 + 9.728 / 12, "feet")
  28692. },
  28693. {
  28694. name: "Sit on the City",
  28695. height: math.unit(61747 + 10.592 / 12, "feet")
  28696. },
  28697. {
  28698. name: "Glomp the Globe",
  28699. height: math.unit(252919327 + 4.832 / 12, "feet")
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28705. {
  28706. front: {
  28707. height: math.unit(6 + 4 / 12, "feet"),
  28708. weight: math.unit(320, "lb"),
  28709. name: "Front",
  28710. image: {
  28711. source: "./media/characters/balina-mahigan/front.svg",
  28712. extra: 447 / 428,
  28713. bottom: 18 / 466
  28714. }
  28715. },
  28716. back: {
  28717. height: math.unit(6 + 4 / 12, "feet"),
  28718. weight: math.unit(320, "lb"),
  28719. name: "Back",
  28720. image: {
  28721. source: "./media/characters/balina-mahigan/back.svg",
  28722. extra: 445 / 428,
  28723. bottom: 4.07 / 448
  28724. }
  28725. },
  28726. arm: {
  28727. height: math.unit(1.88, "feet"),
  28728. name: "Arm",
  28729. image: {
  28730. source: "./media/characters/balina-mahigan/arm.svg"
  28731. }
  28732. },
  28733. backPort: {
  28734. height: math.unit(0.685, "feet"),
  28735. name: "Back Port",
  28736. image: {
  28737. source: "./media/characters/balina-mahigan/back-port.svg"
  28738. }
  28739. },
  28740. hoofpaw: {
  28741. height: math.unit(1.41, "feet"),
  28742. name: "Hoofpaw",
  28743. image: {
  28744. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28745. }
  28746. },
  28747. leftHandBack: {
  28748. height: math.unit(0.938, "feet"),
  28749. name: "Left Hand (Back)",
  28750. image: {
  28751. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28752. }
  28753. },
  28754. leftHandFront: {
  28755. height: math.unit(0.938, "feet"),
  28756. name: "Left Hand (Front)",
  28757. image: {
  28758. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28759. }
  28760. },
  28761. rightHandBack: {
  28762. height: math.unit(0.95, "feet"),
  28763. name: "Right Hand (Back)",
  28764. image: {
  28765. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28766. }
  28767. },
  28768. rightHandFront: {
  28769. height: math.unit(0.95, "feet"),
  28770. name: "Right Hand (Front)",
  28771. image: {
  28772. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28773. }
  28774. },
  28775. },
  28776. [
  28777. {
  28778. name: "Normal",
  28779. height: math.unit(6 + 4 / 12, "feet"),
  28780. default: true
  28781. },
  28782. ]
  28783. ))
  28784. characterMakers.push(() => makeCharacter(
  28785. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28786. {
  28787. front: {
  28788. height: math.unit(6, "feet"),
  28789. weight: math.unit(320, "lb"),
  28790. name: "Front",
  28791. image: {
  28792. source: "./media/characters/balina-mejeri/front.svg",
  28793. extra: 517 / 488,
  28794. bottom: 44.2 / 561
  28795. }
  28796. },
  28797. },
  28798. [
  28799. {
  28800. name: "Normal",
  28801. height: math.unit(6 + 4 / 12, "feet")
  28802. },
  28803. {
  28804. name: "Business",
  28805. height: math.unit(155, "feet"),
  28806. default: true
  28807. },
  28808. ]
  28809. ))
  28810. characterMakers.push(() => makeCharacter(
  28811. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28812. {
  28813. kneeling: {
  28814. height: math.unit(6 + 4 / 12, "feet"),
  28815. weight: math.unit(300 * 20, "lb"),
  28816. name: "Kneeling",
  28817. image: {
  28818. source: "./media/characters/balbarian/kneeling.svg",
  28819. extra: 922 / 862,
  28820. bottom: 42.4 / 965
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Normal",
  28827. height: math.unit(6 + 4 / 12, "feet")
  28828. },
  28829. {
  28830. name: "Treasured",
  28831. height: math.unit(18 + 9 / 12, "feet"),
  28832. default: true
  28833. },
  28834. {
  28835. name: "Macro",
  28836. height: math.unit(900, "feet")
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28842. {
  28843. front: {
  28844. height: math.unit(6 + 4 / 12, "feet"),
  28845. weight: math.unit(325, "lb"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/balina-amarini/front.svg",
  28849. extra: 415 / 403,
  28850. bottom: 19 / 433.4
  28851. }
  28852. },
  28853. back: {
  28854. height: math.unit(6 + 4 / 12, "feet"),
  28855. weight: math.unit(325, "lb"),
  28856. name: "Back",
  28857. image: {
  28858. source: "./media/characters/balina-amarini/back.svg",
  28859. extra: 415 / 403,
  28860. bottom: 13.5 / 432
  28861. }
  28862. },
  28863. overdrive: {
  28864. height: math.unit(6 + 4 / 12, "feet"),
  28865. weight: math.unit(400, "lb"),
  28866. name: "Overdrive",
  28867. image: {
  28868. source: "./media/characters/balina-amarini/overdrive.svg",
  28869. extra: 269 / 259,
  28870. bottom: 12 / 282
  28871. }
  28872. },
  28873. },
  28874. [
  28875. {
  28876. name: "Boom",
  28877. height: math.unit(9 + 10 / 12, "feet"),
  28878. default: true
  28879. },
  28880. {
  28881. name: "Macro",
  28882. height: math.unit(280, "feet")
  28883. },
  28884. ]
  28885. ))
  28886. characterMakers.push(() => makeCharacter(
  28887. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28888. {
  28889. goddess: {
  28890. height: math.unit(600, "feet"),
  28891. weight: math.unit(2000000, "tons"),
  28892. name: "Goddess",
  28893. image: {
  28894. source: "./media/characters/lady-kubwa/goddess.svg",
  28895. extra: 1240.5 / 1223,
  28896. bottom: 22 / 1263
  28897. }
  28898. },
  28899. goddesser: {
  28900. height: math.unit(900, "feet"),
  28901. weight: math.unit(20000000, "lb"),
  28902. name: "Goddess-er",
  28903. image: {
  28904. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28905. extra: 899 / 888,
  28906. bottom: 12.6 / 912
  28907. }
  28908. },
  28909. },
  28910. [
  28911. {
  28912. name: "Macro",
  28913. height: math.unit(600, "feet"),
  28914. default: true
  28915. },
  28916. {
  28917. name: "Megamacro",
  28918. height: math.unit(250, "miles")
  28919. },
  28920. ]
  28921. ))
  28922. characterMakers.push(() => makeCharacter(
  28923. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28924. {
  28925. front: {
  28926. height: math.unit(7 + 7 / 12, "feet"),
  28927. weight: math.unit(250, "lb"),
  28928. name: "Front",
  28929. image: {
  28930. source: "./media/characters/tala-grovehorn/front.svg",
  28931. extra: 2636 / 2525,
  28932. bottom: 147 / 2781
  28933. }
  28934. },
  28935. back: {
  28936. height: math.unit(7 + 7 / 12, "feet"),
  28937. weight: math.unit(250, "lb"),
  28938. name: "Back",
  28939. image: {
  28940. source: "./media/characters/tala-grovehorn/back.svg",
  28941. extra: 2635 / 2539,
  28942. bottom: 100 / 2732.8
  28943. }
  28944. },
  28945. mouth: {
  28946. height: math.unit(1.15, "feet"),
  28947. name: "Mouth",
  28948. image: {
  28949. source: "./media/characters/tala-grovehorn/mouth.svg"
  28950. }
  28951. },
  28952. dick: {
  28953. height: math.unit(2.36, "feet"),
  28954. name: "Dick",
  28955. image: {
  28956. source: "./media/characters/tala-grovehorn/dick.svg"
  28957. }
  28958. },
  28959. slit: {
  28960. height: math.unit(0.61, "feet"),
  28961. name: "Slit",
  28962. image: {
  28963. source: "./media/characters/tala-grovehorn/slit.svg"
  28964. }
  28965. },
  28966. },
  28967. [
  28968. ]
  28969. ))
  28970. characterMakers.push(() => makeCharacter(
  28971. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28972. {
  28973. front: {
  28974. height: math.unit(7 + 7 / 12, "feet"),
  28975. weight: math.unit(225, "lb"),
  28976. name: "Front",
  28977. image: {
  28978. source: "./media/characters/epona/front.svg",
  28979. extra: 2445 / 2290,
  28980. bottom: 251 / 2696
  28981. }
  28982. },
  28983. back: {
  28984. height: math.unit(7 + 7 / 12, "feet"),
  28985. weight: math.unit(225, "lb"),
  28986. name: "Back",
  28987. image: {
  28988. source: "./media/characters/epona/back.svg",
  28989. extra: 2546 / 2408,
  28990. bottom: 44 / 2589
  28991. }
  28992. },
  28993. genitals: {
  28994. height: math.unit(1.5, "feet"),
  28995. name: "Genitals",
  28996. image: {
  28997. source: "./media/characters/epona/genitals.svg"
  28998. }
  28999. },
  29000. },
  29001. [
  29002. {
  29003. name: "Normal",
  29004. height: math.unit(7 + 7 / 12, "feet"),
  29005. default: true
  29006. },
  29007. ]
  29008. ))
  29009. characterMakers.push(() => makeCharacter(
  29010. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29011. {
  29012. front: {
  29013. height: math.unit(7, "feet"),
  29014. weight: math.unit(518, "lb"),
  29015. name: "Front",
  29016. image: {
  29017. source: "./media/characters/avia-bloodbourn/front.svg",
  29018. extra: 1466 / 1350,
  29019. bottom: 65 / 1527
  29020. }
  29021. },
  29022. },
  29023. [
  29024. ]
  29025. ))
  29026. characterMakers.push(() => makeCharacter(
  29027. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29028. {
  29029. front: {
  29030. height: math.unit(9.35, "feet"),
  29031. weight: math.unit(600, "lb"),
  29032. name: "Front",
  29033. image: {
  29034. source: "./media/characters/amera/front.svg",
  29035. extra: 891 / 818,
  29036. bottom: 30 / 922.7
  29037. }
  29038. },
  29039. back: {
  29040. height: math.unit(9.35, "feet"),
  29041. weight: math.unit(600, "lb"),
  29042. name: "Back",
  29043. image: {
  29044. source: "./media/characters/amera/back.svg",
  29045. extra: 876 / 824,
  29046. bottom: 6.8 / 884
  29047. }
  29048. },
  29049. dick: {
  29050. height: math.unit(2.14, "feet"),
  29051. name: "Dick",
  29052. image: {
  29053. source: "./media/characters/amera/dick.svg"
  29054. }
  29055. },
  29056. },
  29057. [
  29058. {
  29059. name: "Normal",
  29060. height: math.unit(9.35, "feet"),
  29061. default: true
  29062. },
  29063. ]
  29064. ))
  29065. characterMakers.push(() => makeCharacter(
  29066. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29067. {
  29068. kneeling: {
  29069. height: math.unit(3 + 4 / 12, "feet"),
  29070. weight: math.unit(90, "lb"),
  29071. name: "Kneeling",
  29072. image: {
  29073. source: "./media/characters/rosewen/kneeling.svg",
  29074. extra: 1835 / 1571,
  29075. bottom: 27.7 / 1862
  29076. }
  29077. },
  29078. },
  29079. [
  29080. {
  29081. name: "Normal",
  29082. height: math.unit(3 + 4 / 12, "feet"),
  29083. default: true
  29084. },
  29085. ]
  29086. ))
  29087. characterMakers.push(() => makeCharacter(
  29088. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29089. {
  29090. front: {
  29091. height: math.unit(5 + 10 / 12, "feet"),
  29092. weight: math.unit(200, "lb"),
  29093. name: "Front",
  29094. image: {
  29095. source: "./media/characters/sabah/front.svg",
  29096. extra: 849 / 763,
  29097. bottom: 33.9 / 881
  29098. }
  29099. },
  29100. },
  29101. [
  29102. {
  29103. name: "Normal",
  29104. height: math.unit(5 + 10 / 12, "feet"),
  29105. default: true
  29106. },
  29107. ]
  29108. ))
  29109. characterMakers.push(() => makeCharacter(
  29110. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29111. {
  29112. front: {
  29113. height: math.unit(3 + 5 / 12, "feet"),
  29114. weight: math.unit(40, "kg"),
  29115. name: "Front",
  29116. image: {
  29117. source: "./media/characters/purple-flame/front.svg",
  29118. extra: 1577 / 1412,
  29119. bottom: 97 / 1694
  29120. }
  29121. },
  29122. frontDressed: {
  29123. height: math.unit(3 + 5 / 12, "feet"),
  29124. weight: math.unit(40, "kg"),
  29125. name: "Front (Dressed)",
  29126. image: {
  29127. source: "./media/characters/purple-flame/front-dressed.svg",
  29128. extra: 1577 / 1412,
  29129. bottom: 97 / 1694
  29130. }
  29131. },
  29132. headphones: {
  29133. height: math.unit(0.85, "feet"),
  29134. name: "Headphones",
  29135. image: {
  29136. source: "./media/characters/purple-flame/headphones.svg"
  29137. }
  29138. },
  29139. },
  29140. [
  29141. {
  29142. name: "Really Small",
  29143. height: math.unit(5, "cm")
  29144. },
  29145. {
  29146. name: "Micro",
  29147. height: math.unit(1 + 5 / 12, "feet")
  29148. },
  29149. {
  29150. name: "Normal",
  29151. height: math.unit(3 + 5 / 12, "feet"),
  29152. default: true
  29153. },
  29154. {
  29155. name: "Minimacro",
  29156. height: math.unit(125, "feet")
  29157. },
  29158. {
  29159. name: "Macro",
  29160. height: math.unit(0.5, "miles")
  29161. },
  29162. {
  29163. name: "Megamacro",
  29164. height: math.unit(50, "miles")
  29165. },
  29166. {
  29167. name: "Gigantic",
  29168. height: math.unit(750, "miles")
  29169. },
  29170. {
  29171. name: "Planetary",
  29172. height: math.unit(15000, "miles")
  29173. },
  29174. ]
  29175. ))
  29176. characterMakers.push(() => makeCharacter(
  29177. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29178. {
  29179. front: {
  29180. height: math.unit(14, "feet"),
  29181. weight: math.unit(959, "lb"),
  29182. name: "Front",
  29183. image: {
  29184. source: "./media/characters/arsenal/front.svg",
  29185. extra: 2357 / 2157,
  29186. bottom: 93 / 2458
  29187. }
  29188. },
  29189. },
  29190. [
  29191. {
  29192. name: "Normal",
  29193. height: math.unit(14, "feet"),
  29194. default: true
  29195. },
  29196. ]
  29197. ))
  29198. characterMakers.push(() => makeCharacter(
  29199. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29200. {
  29201. front: {
  29202. height: math.unit(6, "feet"),
  29203. weight: math.unit(150, "lb"),
  29204. name: "Front",
  29205. image: {
  29206. source: "./media/characters/adira/front.svg",
  29207. extra: 1078 / 1029,
  29208. bottom: 87 / 1166
  29209. }
  29210. },
  29211. },
  29212. [
  29213. {
  29214. name: "Micro",
  29215. height: math.unit(4, "inches"),
  29216. default: true
  29217. },
  29218. {
  29219. name: "Macro",
  29220. height: math.unit(50, "feet")
  29221. },
  29222. ]
  29223. ))
  29224. characterMakers.push(() => makeCharacter(
  29225. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29226. {
  29227. front: {
  29228. height: math.unit(16, "feet"),
  29229. weight: math.unit(1000, "lb"),
  29230. name: "Front",
  29231. image: {
  29232. source: "./media/characters/grim/front.svg",
  29233. extra: 622 / 614,
  29234. bottom: 18.1 / 642
  29235. }
  29236. },
  29237. back: {
  29238. height: math.unit(16, "feet"),
  29239. weight: math.unit(1000, "lb"),
  29240. name: "Back",
  29241. image: {
  29242. source: "./media/characters/grim/back.svg",
  29243. extra: 610.6 / 602,
  29244. bottom: 40.8 / 652
  29245. }
  29246. },
  29247. hunched: {
  29248. height: math.unit(9.75, "feet"),
  29249. weight: math.unit(1000, "lb"),
  29250. name: "Hunched",
  29251. image: {
  29252. source: "./media/characters/grim/hunched.svg",
  29253. extra: 304 / 297,
  29254. bottom: 35.4 / 394
  29255. }
  29256. },
  29257. },
  29258. [
  29259. {
  29260. name: "Normal",
  29261. height: math.unit(16, "feet"),
  29262. default: true
  29263. },
  29264. ]
  29265. ))
  29266. characterMakers.push(() => makeCharacter(
  29267. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29268. {
  29269. front: {
  29270. height: math.unit(2.3, "meters"),
  29271. weight: math.unit(300, "lb"),
  29272. name: "Front",
  29273. image: {
  29274. source: "./media/characters/sinja/front-sfw.svg",
  29275. extra: 1393 / 1294,
  29276. bottom: 70 / 1463
  29277. }
  29278. },
  29279. frontNsfw: {
  29280. height: math.unit(2.3, "meters"),
  29281. weight: math.unit(300, "lb"),
  29282. name: "Front (NSFW)",
  29283. image: {
  29284. source: "./media/characters/sinja/front-nsfw.svg",
  29285. extra: 1393 / 1294,
  29286. bottom: 70 / 1463
  29287. }
  29288. },
  29289. back: {
  29290. height: math.unit(2.3, "meters"),
  29291. weight: math.unit(300, "lb"),
  29292. name: "Back",
  29293. image: {
  29294. source: "./media/characters/sinja/back.svg",
  29295. extra: 1393 / 1294,
  29296. bottom: 70 / 1463
  29297. }
  29298. },
  29299. head: {
  29300. height: math.unit(1.771, "feet"),
  29301. name: "Head",
  29302. image: {
  29303. source: "./media/characters/sinja/head.svg"
  29304. }
  29305. },
  29306. slit: {
  29307. height: math.unit(0.8, "feet"),
  29308. name: "Slit",
  29309. image: {
  29310. source: "./media/characters/sinja/slit.svg"
  29311. }
  29312. },
  29313. },
  29314. [
  29315. {
  29316. name: "Normal",
  29317. height: math.unit(2.3, "meters")
  29318. },
  29319. {
  29320. name: "Macro",
  29321. height: math.unit(91, "meters"),
  29322. default: true
  29323. },
  29324. {
  29325. name: "Megamacro",
  29326. height: math.unit(91440, "meters")
  29327. },
  29328. {
  29329. name: "Gigamacro",
  29330. height: math.unit(60960000, "meters")
  29331. },
  29332. {
  29333. name: "Teramacro",
  29334. height: math.unit(9144000000, "meters")
  29335. },
  29336. ]
  29337. ))
  29338. characterMakers.push(() => makeCharacter(
  29339. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29340. {
  29341. front: {
  29342. height: math.unit(1.7, "meters"),
  29343. weight: math.unit(130, "lb"),
  29344. name: "Front",
  29345. image: {
  29346. source: "./media/characters/kyu/front.svg",
  29347. extra: 415 / 395,
  29348. bottom: 5 / 420
  29349. }
  29350. },
  29351. head: {
  29352. height: math.unit(1.75, "feet"),
  29353. name: "Head",
  29354. image: {
  29355. source: "./media/characters/kyu/head.svg"
  29356. }
  29357. },
  29358. foot: {
  29359. height: math.unit(0.81, "feet"),
  29360. name: "Foot",
  29361. image: {
  29362. source: "./media/characters/kyu/foot.svg"
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Normal",
  29369. height: math.unit(1.7, "meters")
  29370. },
  29371. {
  29372. name: "Macro",
  29373. height: math.unit(131, "feet"),
  29374. default: true
  29375. },
  29376. {
  29377. name: "Megamacro",
  29378. height: math.unit(91440, "meters")
  29379. },
  29380. {
  29381. name: "Gigamacro",
  29382. height: math.unit(60960000, "meters")
  29383. },
  29384. {
  29385. name: "Teramacro",
  29386. height: math.unit(9144000000, "meters")
  29387. },
  29388. ]
  29389. ))
  29390. characterMakers.push(() => makeCharacter(
  29391. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29392. {
  29393. front: {
  29394. height: math.unit(7 + 1 / 12, "feet"),
  29395. weight: math.unit(250, "lb"),
  29396. name: "Front",
  29397. image: {
  29398. source: "./media/characters/joey/front.svg",
  29399. extra: 1791 / 1537,
  29400. bottom: 28 / 1816
  29401. }
  29402. },
  29403. },
  29404. [
  29405. {
  29406. name: "Micro",
  29407. height: math.unit(3, "inches")
  29408. },
  29409. {
  29410. name: "Normal",
  29411. height: math.unit(7 + 1 / 12, "feet"),
  29412. default: true
  29413. },
  29414. ]
  29415. ))
  29416. characterMakers.push(() => makeCharacter(
  29417. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29418. {
  29419. front: {
  29420. height: math.unit(165, "cm"),
  29421. weight: math.unit(140, "lb"),
  29422. name: "Front",
  29423. image: {
  29424. source: "./media/characters/sam-evans/front.svg",
  29425. extra: 3417 / 3230,
  29426. bottom: 41.3 / 3417
  29427. }
  29428. },
  29429. frontSixTails: {
  29430. height: math.unit(165, "cm"),
  29431. weight: math.unit(140, "lb"),
  29432. name: "Front-six-tails",
  29433. image: {
  29434. source: "./media/characters/sam-evans/front-six-tails.svg",
  29435. extra: 3417 / 3230,
  29436. bottom: 41.3 / 3417
  29437. }
  29438. },
  29439. back: {
  29440. height: math.unit(165, "cm"),
  29441. weight: math.unit(140, "lb"),
  29442. name: "Back",
  29443. image: {
  29444. source: "./media/characters/sam-evans/back.svg",
  29445. extra: 3227 / 3032,
  29446. bottom: 6.8 / 3234
  29447. }
  29448. },
  29449. face: {
  29450. height: math.unit(0.68, "feet"),
  29451. name: "Face",
  29452. image: {
  29453. source: "./media/characters/sam-evans/face.svg"
  29454. }
  29455. },
  29456. },
  29457. [
  29458. {
  29459. name: "Normal",
  29460. height: math.unit(165, "cm"),
  29461. default: true
  29462. },
  29463. {
  29464. name: "Macro",
  29465. height: math.unit(100, "meters")
  29466. },
  29467. {
  29468. name: "Macro+",
  29469. height: math.unit(800, "meters")
  29470. },
  29471. {
  29472. name: "Macro++",
  29473. height: math.unit(3, "km")
  29474. },
  29475. {
  29476. name: "Macro+++",
  29477. height: math.unit(30, "km")
  29478. },
  29479. ]
  29480. ))
  29481. characterMakers.push(() => makeCharacter(
  29482. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29483. {
  29484. front: {
  29485. height: math.unit(10, "feet"),
  29486. weight: math.unit(750, "lb"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/juliet-a/front.svg",
  29490. extra: 1766 / 1720,
  29491. bottom: 43 / 1809
  29492. }
  29493. },
  29494. back: {
  29495. height: math.unit(10, "feet"),
  29496. weight: math.unit(750, "lb"),
  29497. name: "Back",
  29498. image: {
  29499. source: "./media/characters/juliet-a/back.svg",
  29500. extra: 1781 / 1734,
  29501. bottom: 35 / 1810,
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "Normal",
  29508. height: math.unit(10, "feet"),
  29509. default: true
  29510. },
  29511. {
  29512. name: "Dragon Form",
  29513. height: math.unit(250, "feet")
  29514. },
  29515. {
  29516. name: "Macro",
  29517. height: math.unit(1000, "feet")
  29518. },
  29519. {
  29520. name: "Megamacro",
  29521. height: math.unit(10000, "feet")
  29522. }
  29523. ]
  29524. ))
  29525. characterMakers.push(() => makeCharacter(
  29526. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29527. {
  29528. regular: {
  29529. height: math.unit(7 + 3 / 12, "feet"),
  29530. weight: math.unit(260, "lb"),
  29531. name: "Regular",
  29532. image: {
  29533. source: "./media/characters/wild/regular.svg",
  29534. extra: 97.45 / 92,
  29535. bottom: 6.8 / 104.3
  29536. }
  29537. },
  29538. biggums: {
  29539. height: math.unit(8 + 6 / 12, "feet"),
  29540. weight: math.unit(425, "lb"),
  29541. name: "Biggums",
  29542. image: {
  29543. source: "./media/characters/wild/biggums.svg",
  29544. extra: 97.45 / 92,
  29545. bottom: 7.5 / 132.34
  29546. }
  29547. },
  29548. mawRegular: {
  29549. height: math.unit(1.24, "feet"),
  29550. name: "Maw (Regular)",
  29551. image: {
  29552. source: "./media/characters/wild/maw.svg"
  29553. }
  29554. },
  29555. mawBiggums: {
  29556. height: math.unit(1.47, "feet"),
  29557. name: "Maw (Biggums)",
  29558. image: {
  29559. source: "./media/characters/wild/maw.svg"
  29560. }
  29561. },
  29562. },
  29563. [
  29564. {
  29565. name: "Normal",
  29566. height: math.unit(7 + 3 / 12, "feet"),
  29567. default: true
  29568. },
  29569. ]
  29570. ))
  29571. characterMakers.push(() => makeCharacter(
  29572. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29573. {
  29574. front: {
  29575. height: math.unit(2.5, "meters"),
  29576. weight: math.unit(200, "kg"),
  29577. name: "Front",
  29578. image: {
  29579. source: "./media/characters/vidar/front.svg",
  29580. extra: 2994 / 2795,
  29581. bottom: 56 / 3061
  29582. }
  29583. },
  29584. back: {
  29585. height: math.unit(2.5, "meters"),
  29586. weight: math.unit(200, "kg"),
  29587. name: "Back",
  29588. image: {
  29589. source: "./media/characters/vidar/back.svg",
  29590. extra: 3131 / 2928,
  29591. bottom: 13.5 / 3141.5
  29592. }
  29593. },
  29594. feral: {
  29595. height: math.unit(2.5, "meters"),
  29596. weight: math.unit(2000, "kg"),
  29597. name: "Feral",
  29598. image: {
  29599. source: "./media/characters/vidar/feral.svg",
  29600. extra: 2790 / 1765,
  29601. bottom: 6 / 2796
  29602. }
  29603. },
  29604. },
  29605. [
  29606. {
  29607. name: "Normal",
  29608. height: math.unit(2.5, "meters"),
  29609. default: true
  29610. },
  29611. {
  29612. name: "Macro",
  29613. height: math.unit(100, "meters")
  29614. },
  29615. ]
  29616. ))
  29617. characterMakers.push(() => makeCharacter(
  29618. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29619. {
  29620. front: {
  29621. height: math.unit(5 + 9 / 12, "feet"),
  29622. weight: math.unit(120, "lb"),
  29623. name: "Front",
  29624. image: {
  29625. source: "./media/characters/ash/front.svg",
  29626. extra: 2189 / 1961,
  29627. bottom: 5.2 / 2194
  29628. }
  29629. },
  29630. },
  29631. [
  29632. {
  29633. name: "Normal",
  29634. height: math.unit(5 + 9 / 12, "feet"),
  29635. default: true
  29636. },
  29637. ]
  29638. ))
  29639. characterMakers.push(() => makeCharacter(
  29640. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29641. {
  29642. front: {
  29643. height: math.unit(9, "feet"),
  29644. weight: math.unit(10000, "lb"),
  29645. name: "Front",
  29646. image: {
  29647. source: "./media/characters/gygabite/front.svg",
  29648. bottom: 31.7 / 537.8,
  29649. extra: 505 / 370
  29650. }
  29651. },
  29652. },
  29653. [
  29654. {
  29655. name: "Normal",
  29656. height: math.unit(9, "feet"),
  29657. default: true
  29658. },
  29659. ]
  29660. ))
  29661. characterMakers.push(() => makeCharacter(
  29662. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29663. {
  29664. front: {
  29665. height: math.unit(12, "feet"),
  29666. weight: math.unit(4000, "lb"),
  29667. name: "Front",
  29668. image: {
  29669. source: "./media/characters/p0tat0/front.svg",
  29670. extra: 1065 / 921,
  29671. bottom: 55.7 / 1121.25
  29672. }
  29673. },
  29674. },
  29675. [
  29676. {
  29677. name: "Normal",
  29678. height: math.unit(12, "feet"),
  29679. default: true
  29680. },
  29681. ]
  29682. ))
  29683. characterMakers.push(() => makeCharacter(
  29684. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29685. {
  29686. side: {
  29687. height: math.unit(6.5, "feet"),
  29688. weight: math.unit(800, "lb"),
  29689. name: "Side",
  29690. image: {
  29691. source: "./media/characters/dusk/side.svg",
  29692. extra: 615 / 373,
  29693. bottom: 53 / 664
  29694. }
  29695. },
  29696. sitting: {
  29697. height: math.unit(7, "feet"),
  29698. weight: math.unit(800, "lb"),
  29699. name: "Sitting",
  29700. image: {
  29701. source: "./media/characters/dusk/sitting.svg",
  29702. extra: 753 / 425,
  29703. bottom: 33 / 774
  29704. }
  29705. },
  29706. head: {
  29707. height: math.unit(6.1, "feet"),
  29708. name: "Head",
  29709. image: {
  29710. source: "./media/characters/dusk/head.svg"
  29711. }
  29712. },
  29713. },
  29714. [
  29715. {
  29716. name: "Normal",
  29717. height: math.unit(7, "feet"),
  29718. default: true
  29719. },
  29720. ]
  29721. ))
  29722. characterMakers.push(() => makeCharacter(
  29723. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29724. {
  29725. front: {
  29726. height: math.unit(15, "feet"),
  29727. weight: math.unit(7000, "lb"),
  29728. name: "Front",
  29729. image: {
  29730. source: "./media/characters/jay-direwolf/front.svg",
  29731. extra: 1810 / 1732,
  29732. bottom: 66 / 1892
  29733. }
  29734. },
  29735. },
  29736. [
  29737. {
  29738. name: "Normal",
  29739. height: math.unit(15, "feet"),
  29740. default: true
  29741. },
  29742. ]
  29743. ))
  29744. characterMakers.push(() => makeCharacter(
  29745. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29746. {
  29747. front: {
  29748. height: math.unit(4 + 9 / 12, "feet"),
  29749. weight: math.unit(130, "lb"),
  29750. name: "Front",
  29751. image: {
  29752. source: "./media/characters/anchovie/front.svg",
  29753. extra: 382 / 350,
  29754. bottom: 25 / 409
  29755. }
  29756. },
  29757. back: {
  29758. height: math.unit(4 + 9 / 12, "feet"),
  29759. weight: math.unit(130, "lb"),
  29760. name: "Back",
  29761. image: {
  29762. source: "./media/characters/anchovie/back.svg",
  29763. extra: 385 / 352,
  29764. bottom: 16.6 / 402
  29765. }
  29766. },
  29767. frontDressed: {
  29768. height: math.unit(4 + 9 / 12, "feet"),
  29769. weight: math.unit(130, "lb"),
  29770. name: "Front (Dressed)",
  29771. image: {
  29772. source: "./media/characters/anchovie/front-dressed.svg",
  29773. extra: 382 / 350,
  29774. bottom: 25 / 409
  29775. }
  29776. },
  29777. backDressed: {
  29778. height: math.unit(4 + 9 / 12, "feet"),
  29779. weight: math.unit(130, "lb"),
  29780. name: "Back (Dressed)",
  29781. image: {
  29782. source: "./media/characters/anchovie/back-dressed.svg",
  29783. extra: 385 / 352,
  29784. bottom: 16.6 / 402
  29785. }
  29786. },
  29787. },
  29788. [
  29789. {
  29790. name: "Micro",
  29791. height: math.unit(6.4, "inches")
  29792. },
  29793. {
  29794. name: "Normal",
  29795. height: math.unit(4 + 9 / 12, "feet"),
  29796. default: true
  29797. },
  29798. ]
  29799. ))
  29800. characterMakers.push(() => makeCharacter(
  29801. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29802. {
  29803. front: {
  29804. height: math.unit(2, "meters"),
  29805. weight: math.unit(180, "lb"),
  29806. name: "Front",
  29807. image: {
  29808. source: "./media/characters/acidrenamon/front.svg",
  29809. extra: 987 / 890,
  29810. bottom: 22.8 / 1009
  29811. }
  29812. },
  29813. back: {
  29814. height: math.unit(2, "meters"),
  29815. weight: math.unit(180, "lb"),
  29816. name: "Back",
  29817. image: {
  29818. source: "./media/characters/acidrenamon/back.svg",
  29819. extra: 983 / 891,
  29820. bottom: 8.4 / 992
  29821. }
  29822. },
  29823. head: {
  29824. height: math.unit(1.92, "feet"),
  29825. name: "Head",
  29826. image: {
  29827. source: "./media/characters/acidrenamon/head.svg"
  29828. }
  29829. },
  29830. rump: {
  29831. height: math.unit(1.72, "feet"),
  29832. name: "Rump",
  29833. image: {
  29834. source: "./media/characters/acidrenamon/rump.svg"
  29835. }
  29836. },
  29837. tail: {
  29838. height: math.unit(4.2, "feet"),
  29839. name: "Tail",
  29840. image: {
  29841. source: "./media/characters/acidrenamon/tail.svg"
  29842. }
  29843. },
  29844. },
  29845. [
  29846. {
  29847. name: "Normal",
  29848. height: math.unit(2, "meters"),
  29849. default: true
  29850. },
  29851. {
  29852. name: "Minimacro",
  29853. height: math.unit(7, "meters")
  29854. },
  29855. {
  29856. name: "Macro",
  29857. height: math.unit(200, "meters")
  29858. },
  29859. {
  29860. name: "Gigamacro",
  29861. height: math.unit(0.2, "earths")
  29862. },
  29863. ]
  29864. ))
  29865. characterMakers.push(() => makeCharacter(
  29866. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29867. {
  29868. front: {
  29869. height: math.unit(152, "feet"),
  29870. name: "Front",
  29871. image: {
  29872. source: "./media/characters/kenzie-lee/front.svg",
  29873. extra: 1869/1774,
  29874. bottom: 128/1997
  29875. }
  29876. },
  29877. side: {
  29878. height: math.unit(86, "feet"),
  29879. name: "Side",
  29880. image: {
  29881. source: "./media/characters/kenzie-lee/side.svg",
  29882. extra: 930/815,
  29883. bottom: 177/1107
  29884. }
  29885. },
  29886. paw: {
  29887. height: math.unit(15, "feet"),
  29888. name: "Paw",
  29889. image: {
  29890. source: "./media/characters/kenzie-lee/paw.svg"
  29891. }
  29892. },
  29893. },
  29894. [
  29895. {
  29896. name: "Kenzie Flea",
  29897. height: math.unit(2, "mm"),
  29898. default: true
  29899. },
  29900. {
  29901. name: "Micro",
  29902. height: math.unit(2, "inches")
  29903. },
  29904. {
  29905. name: "Normal",
  29906. height: math.unit(152, "feet")
  29907. },
  29908. {
  29909. name: "Megamacro",
  29910. height: math.unit(7, "miles")
  29911. },
  29912. {
  29913. name: "Gigamacro",
  29914. height: math.unit(8000, "miles")
  29915. },
  29916. ]
  29917. ))
  29918. characterMakers.push(() => makeCharacter(
  29919. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29920. {
  29921. front: {
  29922. height: math.unit(6, "feet"),
  29923. name: "Front",
  29924. image: {
  29925. source: "./media/characters/withers/front.svg",
  29926. extra: 1935/1760,
  29927. bottom: 72/2007
  29928. }
  29929. },
  29930. back: {
  29931. height: math.unit(6, "feet"),
  29932. name: "Back",
  29933. image: {
  29934. source: "./media/characters/withers/back.svg",
  29935. extra: 1944/1792,
  29936. bottom: 12/1956
  29937. }
  29938. },
  29939. dressed: {
  29940. height: math.unit(6, "feet"),
  29941. name: "Dressed",
  29942. image: {
  29943. source: "./media/characters/withers/dressed.svg",
  29944. extra: 1937/1765,
  29945. bottom: 73/2010
  29946. }
  29947. },
  29948. phase1: {
  29949. height: math.unit(1.1, "feet"),
  29950. name: "Phase 1",
  29951. image: {
  29952. source: "./media/characters/withers/phase-1.svg",
  29953. extra: 1885/1232,
  29954. bottom: 0/1885
  29955. }
  29956. },
  29957. phase2: {
  29958. height: math.unit(1.05, "feet"),
  29959. name: "Phase 2",
  29960. image: {
  29961. source: "./media/characters/withers/phase-2.svg",
  29962. extra: 1792/1090,
  29963. bottom: 0/1792
  29964. }
  29965. },
  29966. partyWipe: {
  29967. height: math.unit(1.1, "feet"),
  29968. name: "Party Wipe",
  29969. image: {
  29970. source: "./media/characters/withers/party-wipe.svg",
  29971. extra: 1864/1207,
  29972. bottom: 0/1864
  29973. }
  29974. },
  29975. },
  29976. [
  29977. {
  29978. name: "Macro",
  29979. height: math.unit(167, "feet"),
  29980. default: true
  29981. },
  29982. {
  29983. name: "Megamacro",
  29984. height: math.unit(15, "miles")
  29985. }
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29990. {
  29991. front: {
  29992. height: math.unit(6 + 7 / 12, "feet"),
  29993. weight: math.unit(250, "lb"),
  29994. name: "Front",
  29995. image: {
  29996. source: "./media/characters/nemoskii/front.svg",
  29997. extra: 2270 / 1734,
  29998. bottom: 86 / 2354
  29999. }
  30000. },
  30001. back: {
  30002. height: math.unit(6 + 7 / 12, "feet"),
  30003. weight: math.unit(250, "lb"),
  30004. name: "Back",
  30005. image: {
  30006. source: "./media/characters/nemoskii/back.svg",
  30007. extra: 1845 / 1788,
  30008. bottom: 10.5 / 1852
  30009. }
  30010. },
  30011. head: {
  30012. height: math.unit(1.31, "feet"),
  30013. name: "Head",
  30014. image: {
  30015. source: "./media/characters/nemoskii/head.svg"
  30016. }
  30017. },
  30018. },
  30019. [
  30020. {
  30021. name: "Micro",
  30022. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30023. },
  30024. {
  30025. name: "Normal",
  30026. height: math.unit(6 + 7 / 12, "feet"),
  30027. default: true
  30028. },
  30029. {
  30030. name: "Macro",
  30031. height: math.unit((6 + 7 / 12) * 150, "feet")
  30032. },
  30033. {
  30034. name: "Macro+",
  30035. height: math.unit((6 + 7 / 12) * 500, "feet")
  30036. },
  30037. {
  30038. name: "Megamacro",
  30039. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(1, "mile"),
  30048. weight: math.unit(265261.9, "lb"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/shui/front.svg",
  30052. extra: 1633 / 1564,
  30053. bottom: 91.5 / 1726
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Macro",
  30060. height: math.unit(1, "mile"),
  30061. default: true
  30062. },
  30063. ]
  30064. ))
  30065. characterMakers.push(() => makeCharacter(
  30066. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30067. {
  30068. front: {
  30069. height: math.unit(12 + 6 / 12, "feet"),
  30070. weight: math.unit(1342, "lb"),
  30071. name: "Front",
  30072. image: {
  30073. source: "./media/characters/arokh-takakura/front.svg",
  30074. extra: 1089 / 1043,
  30075. bottom: 77.4 / 1176.7
  30076. }
  30077. },
  30078. back: {
  30079. height: math.unit(12 + 6 / 12, "feet"),
  30080. weight: math.unit(1342, "lb"),
  30081. name: "Back",
  30082. image: {
  30083. source: "./media/characters/arokh-takakura/back.svg",
  30084. extra: 1046 / 1019,
  30085. bottom: 102 / 1150
  30086. }
  30087. },
  30088. },
  30089. [
  30090. {
  30091. name: "Big",
  30092. height: math.unit(12 + 6 / 12, "feet"),
  30093. default: true
  30094. },
  30095. ]
  30096. ))
  30097. characterMakers.push(() => makeCharacter(
  30098. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30099. {
  30100. front: {
  30101. height: math.unit(5 + 6 / 12, "feet"),
  30102. weight: math.unit(150, "lb"),
  30103. name: "Front",
  30104. image: {
  30105. source: "./media/characters/theo/front.svg",
  30106. extra: 1184 / 1131,
  30107. bottom: 7.4 / 1191
  30108. }
  30109. },
  30110. },
  30111. [
  30112. {
  30113. name: "Micro",
  30114. height: math.unit(5, "inches")
  30115. },
  30116. {
  30117. name: "Normal",
  30118. height: math.unit(5 + 6 / 12, "feet"),
  30119. default: true
  30120. },
  30121. ]
  30122. ))
  30123. characterMakers.push(() => makeCharacter(
  30124. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30125. {
  30126. front: {
  30127. height: math.unit(5 + 9 / 12, "feet"),
  30128. weight: math.unit(130, "lb"),
  30129. name: "Front",
  30130. image: {
  30131. source: "./media/characters/cecelia-swift/front.svg",
  30132. extra: 502 / 484,
  30133. bottom: 23 / 523
  30134. }
  30135. },
  30136. back: {
  30137. height: math.unit(5 + 9 / 12, "feet"),
  30138. weight: math.unit(130, "lb"),
  30139. name: "Back",
  30140. image: {
  30141. source: "./media/characters/cecelia-swift/back.svg",
  30142. extra: 499 / 485,
  30143. bottom: 12 / 511
  30144. }
  30145. },
  30146. head: {
  30147. height: math.unit(0.90, "feet"),
  30148. name: "Head",
  30149. image: {
  30150. source: "./media/characters/cecelia-swift/head.svg"
  30151. }
  30152. },
  30153. rump: {
  30154. height: math.unit(1.75, "feet"),
  30155. name: "Rump",
  30156. image: {
  30157. source: "./media/characters/cecelia-swift/rump.svg"
  30158. }
  30159. },
  30160. },
  30161. [
  30162. {
  30163. name: "Normal",
  30164. height: math.unit(5 + 9 / 12, "feet"),
  30165. default: true
  30166. },
  30167. {
  30168. name: "Big",
  30169. height: math.unit(50, "feet")
  30170. },
  30171. {
  30172. name: "Macro",
  30173. height: math.unit(100, "feet")
  30174. },
  30175. {
  30176. name: "Macro+",
  30177. height: math.unit(500, "feet")
  30178. },
  30179. {
  30180. name: "Macro++",
  30181. height: math.unit(1000, "feet")
  30182. },
  30183. ]
  30184. ))
  30185. characterMakers.push(() => makeCharacter(
  30186. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30187. {
  30188. front: {
  30189. height: math.unit(6, "feet"),
  30190. weight: math.unit(150, "lb"),
  30191. name: "Front",
  30192. image: {
  30193. source: "./media/characters/kaunan/front.svg",
  30194. extra: 2890 / 2523,
  30195. bottom: 49 / 2939
  30196. }
  30197. },
  30198. },
  30199. [
  30200. {
  30201. name: "Macro",
  30202. height: math.unit(150, "feet"),
  30203. default: true
  30204. },
  30205. ]
  30206. ))
  30207. characterMakers.push(() => makeCharacter(
  30208. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30209. {
  30210. dressed: {
  30211. height: math.unit(175, "cm"),
  30212. weight: math.unit(60, "kg"),
  30213. name: "Dressed",
  30214. image: {
  30215. source: "./media/characters/fei/dressed.svg",
  30216. extra: 1402/1278,
  30217. bottom: 27/1429
  30218. }
  30219. },
  30220. nude: {
  30221. height: math.unit(175, "cm"),
  30222. weight: math.unit(60, "kg"),
  30223. name: "Nude",
  30224. image: {
  30225. source: "./media/characters/fei/nude.svg",
  30226. extra: 1402/1278,
  30227. bottom: 27/1429
  30228. }
  30229. },
  30230. heels: {
  30231. height: math.unit(0.466, "feet"),
  30232. name: "Heels",
  30233. image: {
  30234. source: "./media/characters/fei/heels.svg",
  30235. extra: 156/152,
  30236. bottom: 28/184
  30237. }
  30238. },
  30239. },
  30240. [
  30241. {
  30242. name: "Mortal",
  30243. height: math.unit(175, "cm")
  30244. },
  30245. {
  30246. name: "Normal",
  30247. height: math.unit(3500, "m")
  30248. },
  30249. {
  30250. name: "Stroll",
  30251. height: math.unit(18.4, "km"),
  30252. default: true
  30253. },
  30254. {
  30255. name: "Showoff",
  30256. height: math.unit(175, "km")
  30257. },
  30258. ]
  30259. ))
  30260. characterMakers.push(() => makeCharacter(
  30261. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30262. {
  30263. front: {
  30264. height: math.unit(7, "feet"),
  30265. weight: math.unit(1000, "kg"),
  30266. name: "Front",
  30267. image: {
  30268. source: "./media/characters/edrax/front.svg",
  30269. extra: 2838 / 2550,
  30270. bottom: 130 / 2968
  30271. }
  30272. },
  30273. },
  30274. [
  30275. {
  30276. name: "Small",
  30277. height: math.unit(7, "feet")
  30278. },
  30279. {
  30280. name: "Normal",
  30281. height: math.unit(1500, "meters")
  30282. },
  30283. {
  30284. name: "Mega",
  30285. height: math.unit(12000000, "km"),
  30286. default: true
  30287. },
  30288. {
  30289. name: "Megamacro",
  30290. height: math.unit(10600000, "lightyears")
  30291. },
  30292. {
  30293. name: "Hypermacro",
  30294. height: math.unit(256, "yottameters")
  30295. },
  30296. ]
  30297. ))
  30298. characterMakers.push(() => makeCharacter(
  30299. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30300. {
  30301. front: {
  30302. height: math.unit(10, "feet"),
  30303. weight: math.unit(750, "lb"),
  30304. name: "Front",
  30305. image: {
  30306. source: "./media/characters/clove/front.svg",
  30307. extra: 1918/1751,
  30308. bottom: 52/1970
  30309. }
  30310. },
  30311. back: {
  30312. height: math.unit(10, "feet"),
  30313. weight: math.unit(750, "lb"),
  30314. name: "Back",
  30315. image: {
  30316. source: "./media/characters/clove/back.svg",
  30317. extra: 1912/1747,
  30318. bottom: 50/1962
  30319. }
  30320. },
  30321. },
  30322. [
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(10, "feet"),
  30326. default: true
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30332. {
  30333. front: {
  30334. height: math.unit(4, "feet"),
  30335. weight: math.unit(50, "lb"),
  30336. name: "Front",
  30337. image: {
  30338. source: "./media/characters/alex-rabbit/front.svg",
  30339. extra: 507 / 458,
  30340. bottom: 18.5 / 527
  30341. }
  30342. },
  30343. back: {
  30344. height: math.unit(4, "feet"),
  30345. weight: math.unit(50, "lb"),
  30346. name: "Back",
  30347. image: {
  30348. source: "./media/characters/alex-rabbit/back.svg",
  30349. extra: 502 / 460,
  30350. bottom: 18.9 / 521
  30351. }
  30352. },
  30353. },
  30354. [
  30355. {
  30356. name: "Normal",
  30357. height: math.unit(4, "feet"),
  30358. default: true
  30359. },
  30360. ]
  30361. ))
  30362. characterMakers.push(() => makeCharacter(
  30363. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30364. {
  30365. front: {
  30366. height: math.unit(1 + 3 / 12, "feet"),
  30367. weight: math.unit(80, "lb"),
  30368. name: "Front",
  30369. image: {
  30370. source: "./media/characters/zander-rose/front.svg",
  30371. extra: 916 / 797,
  30372. bottom: 17 / 933
  30373. }
  30374. },
  30375. back: {
  30376. height: math.unit(1 + 3 / 12, "feet"),
  30377. weight: math.unit(80, "lb"),
  30378. name: "Back",
  30379. image: {
  30380. source: "./media/characters/zander-rose/back.svg",
  30381. extra: 903 / 779,
  30382. bottom: 31 / 934
  30383. }
  30384. },
  30385. },
  30386. [
  30387. {
  30388. name: "Normal",
  30389. height: math.unit(1 + 3 / 12, "feet"),
  30390. default: true
  30391. },
  30392. ]
  30393. ))
  30394. characterMakers.push(() => makeCharacter(
  30395. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30396. {
  30397. anthro: {
  30398. height: math.unit(6, "feet"),
  30399. weight: math.unit(150, "lb"),
  30400. name: "Anthro",
  30401. image: {
  30402. source: "./media/characters/razz/anthro.svg",
  30403. extra: 1437 / 1343,
  30404. bottom: 48 / 1485
  30405. }
  30406. },
  30407. feral: {
  30408. height: math.unit(6, "feet"),
  30409. weight: math.unit(150, "lb"),
  30410. name: "Feral",
  30411. image: {
  30412. source: "./media/characters/razz/feral.svg",
  30413. extra: 2569 / 1385,
  30414. bottom: 95 / 2664
  30415. }
  30416. },
  30417. },
  30418. [
  30419. {
  30420. name: "Normal",
  30421. height: math.unit(6, "feet"),
  30422. default: true
  30423. },
  30424. ]
  30425. ))
  30426. characterMakers.push(() => makeCharacter(
  30427. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30428. {
  30429. front: {
  30430. height: math.unit(9 + 4 / 12, "feet"),
  30431. weight: math.unit(500, "lb"),
  30432. name: "Front",
  30433. image: {
  30434. source: "./media/characters/morrigan/front.svg",
  30435. extra: 2707 / 2579,
  30436. bottom: 156 / 2863
  30437. }
  30438. },
  30439. },
  30440. [
  30441. {
  30442. name: "Normal",
  30443. height: math.unit(9 + 4 / 12, "feet"),
  30444. default: true
  30445. },
  30446. ]
  30447. ))
  30448. characterMakers.push(() => makeCharacter(
  30449. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30450. {
  30451. front: {
  30452. height: math.unit(5, "stories"),
  30453. weight: math.unit(4000, "lb"),
  30454. name: "Front",
  30455. image: {
  30456. source: "./media/characters/jenene/front.svg",
  30457. extra: 1780 / 1710,
  30458. bottom: 57 / 1837
  30459. }
  30460. },
  30461. },
  30462. [
  30463. {
  30464. name: "Normal",
  30465. height: math.unit(5, "stories"),
  30466. default: true
  30467. },
  30468. ]
  30469. ))
  30470. characterMakers.push(() => makeCharacter(
  30471. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30472. {
  30473. taurSfw: {
  30474. height: math.unit(10, "meters"),
  30475. weight: math.unit(17500, "kg"),
  30476. name: "Taur",
  30477. image: {
  30478. source: "./media/characters/faey/taur-sfw.svg",
  30479. extra: 1200 / 968,
  30480. bottom: 41 / 1241
  30481. }
  30482. },
  30483. chestmaw: {
  30484. height: math.unit(2.01, "meters"),
  30485. name: "Chestmaw",
  30486. image: {
  30487. source: "./media/characters/faey/chestmaw.svg"
  30488. }
  30489. },
  30490. foot: {
  30491. height: math.unit(2.43, "meters"),
  30492. name: "Foot",
  30493. image: {
  30494. source: "./media/characters/faey/foot.svg"
  30495. }
  30496. },
  30497. jaws: {
  30498. height: math.unit(1.66, "meters"),
  30499. name: "Jaws",
  30500. image: {
  30501. source: "./media/characters/faey/jaws.svg"
  30502. }
  30503. },
  30504. tongues: {
  30505. height: math.unit(2.01, "meters"),
  30506. name: "Tongues",
  30507. image: {
  30508. source: "./media/characters/faey/tongues.svg"
  30509. }
  30510. },
  30511. },
  30512. [
  30513. {
  30514. name: "Small",
  30515. height: math.unit(10, "meters"),
  30516. default: true
  30517. },
  30518. {
  30519. name: "Big",
  30520. height: math.unit(500000, "km")
  30521. },
  30522. ]
  30523. ))
  30524. characterMakers.push(() => makeCharacter(
  30525. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30526. {
  30527. front: {
  30528. height: math.unit(7, "feet"),
  30529. weight: math.unit(275, "lb"),
  30530. name: "Front",
  30531. image: {
  30532. source: "./media/characters/roku/front.svg",
  30533. extra: 903 / 878,
  30534. bottom: 37 / 940
  30535. }
  30536. },
  30537. },
  30538. [
  30539. {
  30540. name: "Normal",
  30541. height: math.unit(7, "feet"),
  30542. default: true
  30543. },
  30544. {
  30545. name: "Macro",
  30546. height: math.unit(500, "feet")
  30547. },
  30548. {
  30549. name: "Megamacro",
  30550. height: math.unit(200, "miles")
  30551. },
  30552. ]
  30553. ))
  30554. characterMakers.push(() => makeCharacter(
  30555. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30556. {
  30557. front: {
  30558. height: math.unit(6 + 2 / 12, "feet"),
  30559. weight: math.unit(150, "lb"),
  30560. name: "Front",
  30561. image: {
  30562. source: "./media/characters/lira/front.svg",
  30563. extra: 1727 / 1605,
  30564. bottom: 26 / 1753
  30565. }
  30566. },
  30567. back: {
  30568. height: math.unit(6 + 2 / 12, "feet"),
  30569. weight: math.unit(150, "lb"),
  30570. name: "Back",
  30571. image: {
  30572. source: "./media/characters/lira/back.svg",
  30573. extra: 1713/1621,
  30574. bottom: 20/1733
  30575. }
  30576. },
  30577. hand: {
  30578. height: math.unit(0.75, "feet"),
  30579. name: "Hand",
  30580. image: {
  30581. source: "./media/characters/lira/hand.svg"
  30582. }
  30583. },
  30584. maw: {
  30585. height: math.unit(0.65, "feet"),
  30586. name: "Maw",
  30587. image: {
  30588. source: "./media/characters/lira/maw.svg"
  30589. }
  30590. },
  30591. pawDigi: {
  30592. height: math.unit(1.6, "feet"),
  30593. name: "Paw Digi",
  30594. image: {
  30595. source: "./media/characters/lira/paw-digi.svg"
  30596. }
  30597. },
  30598. pawPlanti: {
  30599. height: math.unit(1.4, "feet"),
  30600. name: "Paw Planti",
  30601. image: {
  30602. source: "./media/characters/lira/paw-planti.svg"
  30603. }
  30604. },
  30605. },
  30606. [
  30607. {
  30608. name: "Normal",
  30609. height: math.unit(6 + 2 / 12, "feet"),
  30610. default: true
  30611. },
  30612. {
  30613. name: "Macro",
  30614. height: math.unit(100, "feet")
  30615. },
  30616. {
  30617. name: "Macro²",
  30618. height: math.unit(1600, "feet")
  30619. },
  30620. {
  30621. name: "Planetary",
  30622. height: math.unit(20, "earths")
  30623. },
  30624. ]
  30625. ))
  30626. characterMakers.push(() => makeCharacter(
  30627. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30628. {
  30629. front: {
  30630. height: math.unit(6, "feet"),
  30631. weight: math.unit(150, "lb"),
  30632. name: "Front",
  30633. image: {
  30634. source: "./media/characters/hadjet/front.svg",
  30635. extra: 1480 / 1346,
  30636. bottom: 26 / 1506
  30637. }
  30638. },
  30639. frontNsfw: {
  30640. height: math.unit(6, "feet"),
  30641. weight: math.unit(150, "lb"),
  30642. name: "Front (NSFW)",
  30643. image: {
  30644. source: "./media/characters/hadjet/front-nsfw.svg",
  30645. extra: 1440 / 1358,
  30646. bottom: 52 / 1492
  30647. }
  30648. },
  30649. },
  30650. [
  30651. {
  30652. name: "Macro",
  30653. height: math.unit(10, "stories"),
  30654. default: true
  30655. },
  30656. {
  30657. name: "Megamacro",
  30658. height: math.unit(1.5, "miles")
  30659. },
  30660. {
  30661. name: "Megamacro+",
  30662. height: math.unit(5, "miles")
  30663. },
  30664. ]
  30665. ))
  30666. characterMakers.push(() => makeCharacter(
  30667. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30668. {
  30669. side: {
  30670. height: math.unit(106, "feet"),
  30671. weight: math.unit(500, "tonnes"),
  30672. name: "Side",
  30673. image: {
  30674. source: "./media/characters/kodran/side.svg",
  30675. extra: 553 / 480,
  30676. bottom: 33 / 586
  30677. }
  30678. },
  30679. front: {
  30680. height: math.unit(132, "feet"),
  30681. weight: math.unit(500, "tonnes"),
  30682. name: "Front",
  30683. image: {
  30684. source: "./media/characters/kodran/front.svg",
  30685. extra: 667 / 643,
  30686. bottom: 42 / 709
  30687. }
  30688. },
  30689. flying: {
  30690. height: math.unit(350, "feet"),
  30691. weight: math.unit(500, "tonnes"),
  30692. name: "Flying",
  30693. image: {
  30694. source: "./media/characters/kodran/flying.svg"
  30695. }
  30696. },
  30697. foot: {
  30698. height: math.unit(33, "feet"),
  30699. name: "Foot",
  30700. image: {
  30701. source: "./media/characters/kodran/foot.svg"
  30702. }
  30703. },
  30704. footFront: {
  30705. height: math.unit(19, "feet"),
  30706. name: "Foot (Front)",
  30707. image: {
  30708. source: "./media/characters/kodran/foot-front.svg",
  30709. extra: 261 / 261,
  30710. bottom: 91 / 352
  30711. }
  30712. },
  30713. headFront: {
  30714. height: math.unit(53, "feet"),
  30715. name: "Head (Front)",
  30716. image: {
  30717. source: "./media/characters/kodran/head-front.svg"
  30718. }
  30719. },
  30720. headSide: {
  30721. height: math.unit(65, "feet"),
  30722. name: "Head (Side)",
  30723. image: {
  30724. source: "./media/characters/kodran/head-side.svg"
  30725. }
  30726. },
  30727. throat: {
  30728. height: math.unit(79, "feet"),
  30729. name: "Throat",
  30730. image: {
  30731. source: "./media/characters/kodran/throat.svg"
  30732. }
  30733. },
  30734. },
  30735. [
  30736. {
  30737. name: "Large",
  30738. height: math.unit(106, "feet"),
  30739. default: true
  30740. },
  30741. ]
  30742. ))
  30743. characterMakers.push(() => makeCharacter(
  30744. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30745. {
  30746. side: {
  30747. height: math.unit(11, "feet"),
  30748. weight: math.unit(150, "lb"),
  30749. name: "Side",
  30750. image: {
  30751. source: "./media/characters/pyxaron/side.svg",
  30752. extra: 305 / 195,
  30753. bottom: 17 / 322
  30754. }
  30755. },
  30756. },
  30757. [
  30758. {
  30759. name: "Normal",
  30760. height: math.unit(11, "feet"),
  30761. default: true
  30762. },
  30763. ]
  30764. ))
  30765. characterMakers.push(() => makeCharacter(
  30766. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30767. {
  30768. front: {
  30769. height: math.unit(6, "feet"),
  30770. weight: math.unit(150, "lb"),
  30771. name: "Front",
  30772. image: {
  30773. source: "./media/characters/meep/front.svg",
  30774. extra: 88 / 80,
  30775. bottom: 6 / 94
  30776. }
  30777. },
  30778. },
  30779. [
  30780. {
  30781. name: "Fun Sized",
  30782. height: math.unit(2, "inches"),
  30783. default: true
  30784. },
  30785. {
  30786. name: "Friend Sized",
  30787. height: math.unit(8, "inches")
  30788. },
  30789. ]
  30790. ))
  30791. characterMakers.push(() => makeCharacter(
  30792. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30793. {
  30794. front: {
  30795. height: math.unit(15, "feet"),
  30796. weight: math.unit(2500, "lb"),
  30797. name: "Front",
  30798. image: {
  30799. source: "./media/characters/holly-rabbit/front.svg",
  30800. extra: 1433 / 1233,
  30801. bottom: 125 / 1558
  30802. }
  30803. },
  30804. dick: {
  30805. height: math.unit(4.6, "feet"),
  30806. name: "Dick",
  30807. image: {
  30808. source: "./media/characters/holly-rabbit/dick.svg"
  30809. }
  30810. },
  30811. },
  30812. [
  30813. {
  30814. name: "Normal",
  30815. height: math.unit(15, "feet"),
  30816. default: true
  30817. },
  30818. {
  30819. name: "Macro",
  30820. height: math.unit(250, "feet")
  30821. },
  30822. {
  30823. name: "Macro+",
  30824. height: math.unit(2500, "feet")
  30825. },
  30826. ]
  30827. ))
  30828. characterMakers.push(() => makeCharacter(
  30829. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30830. {
  30831. front: {
  30832. height: math.unit(3.02, "meters"),
  30833. weight: math.unit(500, "kg"),
  30834. name: "Front",
  30835. image: {
  30836. source: "./media/characters/drena/front.svg",
  30837. extra: 282 / 243,
  30838. bottom: 8 / 290
  30839. }
  30840. },
  30841. side: {
  30842. height: math.unit(3.02, "meters"),
  30843. weight: math.unit(500, "kg"),
  30844. name: "Side",
  30845. image: {
  30846. source: "./media/characters/drena/side.svg",
  30847. extra: 280 / 245,
  30848. bottom: 10 / 290
  30849. }
  30850. },
  30851. back: {
  30852. height: math.unit(3.02, "meters"),
  30853. weight: math.unit(500, "kg"),
  30854. name: "Back",
  30855. image: {
  30856. source: "./media/characters/drena/back.svg",
  30857. extra: 278 / 243,
  30858. bottom: 2 / 280
  30859. }
  30860. },
  30861. foot: {
  30862. height: math.unit(0.75, "meters"),
  30863. name: "Foot",
  30864. image: {
  30865. source: "./media/characters/drena/foot.svg"
  30866. }
  30867. },
  30868. maw: {
  30869. height: math.unit(0.82, "meters"),
  30870. name: "Maw",
  30871. image: {
  30872. source: "./media/characters/drena/maw.svg"
  30873. }
  30874. },
  30875. eating: {
  30876. height: math.unit(0.75, "meters"),
  30877. name: "Eating",
  30878. image: {
  30879. source: "./media/characters/drena/eating.svg"
  30880. }
  30881. },
  30882. rump: {
  30883. height: math.unit(0.93, "meters"),
  30884. name: "Rump",
  30885. image: {
  30886. source: "./media/characters/drena/rump.svg"
  30887. }
  30888. },
  30889. },
  30890. [
  30891. {
  30892. name: "Normal",
  30893. height: math.unit(3.02, "meters"),
  30894. default: true
  30895. },
  30896. ]
  30897. ))
  30898. characterMakers.push(() => makeCharacter(
  30899. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30900. {
  30901. front: {
  30902. height: math.unit(6 + 4 / 12, "feet"),
  30903. weight: math.unit(250, "lb"),
  30904. name: "Front",
  30905. image: {
  30906. source: "./media/characters/remmyzilla/front.svg",
  30907. extra: 4033 / 3588,
  30908. bottom: 123 / 4156
  30909. }
  30910. },
  30911. back: {
  30912. height: math.unit(6 + 4 / 12, "feet"),
  30913. weight: math.unit(250, "lb"),
  30914. name: "Back",
  30915. image: {
  30916. source: "./media/characters/remmyzilla/back.svg",
  30917. extra: 2687 / 2555,
  30918. bottom: 48 / 2735
  30919. }
  30920. },
  30921. paw: {
  30922. height: math.unit(1.73, "feet"),
  30923. name: "Paw",
  30924. image: {
  30925. source: "./media/characters/remmyzilla/paw.svg"
  30926. },
  30927. extraAttributes: {
  30928. "toeSize": {
  30929. name: "Toe Size",
  30930. power: 2,
  30931. type: "area",
  30932. base: math.unit(0.0035, "m^2")
  30933. },
  30934. "padSize": {
  30935. name: "Pad Size",
  30936. power: 2,
  30937. type: "area",
  30938. base: math.unit(0.015, "m^2")
  30939. },
  30940. "pawsize": {
  30941. name: "Paw Size",
  30942. power: 2,
  30943. type: "area",
  30944. base: math.unit(0.072, "m^2")
  30945. },
  30946. }
  30947. },
  30948. maw: {
  30949. height: math.unit(1.73, "feet"),
  30950. name: "Maw",
  30951. image: {
  30952. source: "./media/characters/remmyzilla/maw.svg"
  30953. }
  30954. },
  30955. },
  30956. [
  30957. {
  30958. name: "Normal",
  30959. height: math.unit(6 + 4 / 12, "feet")
  30960. },
  30961. {
  30962. name: "Minimacro",
  30963. height: math.unit(12 + 8 / 12, "feet")
  30964. },
  30965. {
  30966. name: "Normal",
  30967. height: math.unit(640, "feet"),
  30968. default: true
  30969. },
  30970. {
  30971. name: "Megamacro",
  30972. height: math.unit(6400, "feet")
  30973. },
  30974. {
  30975. name: "Gigamacro",
  30976. height: math.unit(64000, "miles")
  30977. },
  30978. ]
  30979. ))
  30980. characterMakers.push(() => makeCharacter(
  30981. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30982. {
  30983. front: {
  30984. height: math.unit(2.5, "meters"),
  30985. weight: math.unit(300, "lb"),
  30986. name: "Front",
  30987. image: {
  30988. source: "./media/characters/lawrence/front.svg",
  30989. extra: 357 / 335,
  30990. bottom: 30 / 387
  30991. }
  30992. },
  30993. back: {
  30994. height: math.unit(2.5, "meters"),
  30995. weight: math.unit(300, "lb"),
  30996. name: "Back",
  30997. image: {
  30998. source: "./media/characters/lawrence/back.svg",
  30999. extra: 357 / 338,
  31000. bottom: 16 / 373
  31001. }
  31002. },
  31003. head: {
  31004. height: math.unit(0.9, "meter"),
  31005. name: "Head",
  31006. image: {
  31007. source: "./media/characters/lawrence/head.svg"
  31008. }
  31009. },
  31010. maw: {
  31011. height: math.unit(0.7, "meter"),
  31012. name: "Maw",
  31013. image: {
  31014. source: "./media/characters/lawrence/maw.svg"
  31015. }
  31016. },
  31017. footBottom: {
  31018. height: math.unit(0.5, "meter"),
  31019. name: "Foot (Bottom)",
  31020. image: {
  31021. source: "./media/characters/lawrence/foot-bottom.svg"
  31022. }
  31023. },
  31024. footTop: {
  31025. height: math.unit(0.5, "meter"),
  31026. name: "Foot (Top)",
  31027. image: {
  31028. source: "./media/characters/lawrence/foot-top.svg"
  31029. }
  31030. },
  31031. },
  31032. [
  31033. {
  31034. name: "Normal",
  31035. height: math.unit(2.5, "meters"),
  31036. default: true
  31037. },
  31038. {
  31039. name: "Macro",
  31040. height: math.unit(95, "meters")
  31041. },
  31042. {
  31043. name: "Megamacro",
  31044. height: math.unit(150, "km")
  31045. },
  31046. ]
  31047. ))
  31048. characterMakers.push(() => makeCharacter(
  31049. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31050. {
  31051. front: {
  31052. height: math.unit(4.2, "meters"),
  31053. preyCapacity: math.unit(50, "m^3"),
  31054. weight: math.unit(30, "tonnes"),
  31055. name: "Front",
  31056. image: {
  31057. source: "./media/characters/sydney/front.svg",
  31058. extra: 1177/1129,
  31059. bottom: 197/1374
  31060. },
  31061. extraAttributes: {
  31062. "length": {
  31063. name: "Length",
  31064. power: 1,
  31065. type: "length",
  31066. base: math.unit(21, "meters")
  31067. },
  31068. }
  31069. },
  31070. },
  31071. [
  31072. {
  31073. name: "Normal",
  31074. height: math.unit(4.2, "meters"),
  31075. default: true
  31076. },
  31077. ]
  31078. ))
  31079. characterMakers.push(() => makeCharacter(
  31080. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31081. {
  31082. back: {
  31083. height: math.unit(201, "feet"),
  31084. name: "Back",
  31085. image: {
  31086. source: "./media/characters/jessica/back.svg",
  31087. extra: 273 / 259,
  31088. bottom: 7 / 280
  31089. }
  31090. },
  31091. },
  31092. [
  31093. {
  31094. name: "Normal",
  31095. height: math.unit(201, "feet"),
  31096. default: true
  31097. },
  31098. {
  31099. name: "Megamacro",
  31100. height: math.unit(8, "miles")
  31101. },
  31102. ]
  31103. ))
  31104. characterMakers.push(() => makeCharacter(
  31105. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31106. {
  31107. side: {
  31108. height: math.unit(5.6, "m"),
  31109. weight: math.unit(8000, "kg"),
  31110. name: "Side",
  31111. image: {
  31112. source: "./media/characters/victoria/side.svg",
  31113. extra: 1542/1229,
  31114. bottom: 124/1666
  31115. }
  31116. },
  31117. maw: {
  31118. height: math.unit(7.14, "feet"),
  31119. name: "Maw",
  31120. image: {
  31121. source: "./media/characters/victoria/maw.svg"
  31122. }
  31123. },
  31124. },
  31125. [
  31126. {
  31127. name: "Normal",
  31128. height: math.unit(5.6, "m"),
  31129. default: true
  31130. },
  31131. ]
  31132. ))
  31133. characterMakers.push(() => makeCharacter(
  31134. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31135. {
  31136. front: {
  31137. height: math.unit(5 + 6 / 12, "feet"),
  31138. name: "Front",
  31139. image: {
  31140. source: "./media/characters/cat/front.svg",
  31141. extra: 1449/1295,
  31142. bottom: 34/1483
  31143. },
  31144. form: "cat",
  31145. default: true
  31146. },
  31147. back: {
  31148. height: math.unit(5 + 6 / 12, "feet"),
  31149. name: "Back",
  31150. image: {
  31151. source: "./media/characters/cat/back.svg",
  31152. extra: 1466/1301,
  31153. bottom: 19/1485
  31154. },
  31155. form: "cat"
  31156. },
  31157. taur: {
  31158. height: math.unit(7, "feet"),
  31159. name: "Taur",
  31160. image: {
  31161. source: "./media/characters/cat/taur.svg",
  31162. extra: 1389/1233,
  31163. bottom: 83/1472
  31164. },
  31165. form: "taur",
  31166. default: true
  31167. },
  31168. lucarioFront: {
  31169. height: math.unit(4, "feet"),
  31170. name: "Lucario (Front)",
  31171. image: {
  31172. source: "./media/characters/cat/lucario-front.svg",
  31173. extra: 1149/1019,
  31174. bottom: 84/1233
  31175. },
  31176. form: "lucario",
  31177. default: true
  31178. },
  31179. lucarioBack: {
  31180. height: math.unit(4, "feet"),
  31181. name: "Lucario (Back)",
  31182. image: {
  31183. source: "./media/characters/cat/lucario-back.svg",
  31184. extra: 1190/1059,
  31185. bottom: 33/1223
  31186. },
  31187. form: "lucario"
  31188. },
  31189. megaLucario: {
  31190. height: math.unit(4, "feet"),
  31191. name: "Mega Lucario",
  31192. image: {
  31193. source: "./media/characters/cat/mega-lucario.svg",
  31194. extra: 1515 / 1319,
  31195. bottom: 63 / 1578
  31196. },
  31197. form: "lucario"
  31198. },
  31199. nickit: {
  31200. height: math.unit(2, "feet"),
  31201. name: "Nickit",
  31202. image: {
  31203. source: "./media/characters/cat/nickit.svg",
  31204. extra: 1980 / 1585,
  31205. bottom: 102 / 2082
  31206. },
  31207. form: "nickit",
  31208. default: true
  31209. },
  31210. lopunnyFront: {
  31211. height: math.unit(5, "feet"),
  31212. name: "Lopunny (Front)",
  31213. image: {
  31214. source: "./media/characters/cat/lopunny-front.svg",
  31215. extra: 1782 / 1469,
  31216. bottom: 38 / 1820
  31217. },
  31218. form: "lopunny",
  31219. default: true
  31220. },
  31221. lopunnyBack: {
  31222. height: math.unit(5, "feet"),
  31223. name: "Lopunny (Back)",
  31224. image: {
  31225. source: "./media/characters/cat/lopunny-back.svg",
  31226. extra: 1660 / 1490,
  31227. bottom: 25 / 1685
  31228. },
  31229. form: "lopunny"
  31230. },
  31231. },
  31232. [
  31233. {
  31234. name: "Really small",
  31235. height: math.unit(1, "nm")
  31236. },
  31237. {
  31238. name: "Micro",
  31239. height: math.unit(5, "inches")
  31240. },
  31241. {
  31242. name: "Normal",
  31243. height: math.unit(5 + 6 / 12, "feet"),
  31244. default: true
  31245. },
  31246. {
  31247. name: "Macro",
  31248. height: math.unit(50, "feet")
  31249. },
  31250. {
  31251. name: "Macro+",
  31252. height: math.unit(150, "feet")
  31253. },
  31254. {
  31255. name: "Megamacro",
  31256. height: math.unit(100, "miles")
  31257. },
  31258. ]
  31259. ))
  31260. characterMakers.push(() => makeCharacter(
  31261. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31262. {
  31263. front: {
  31264. height: math.unit(63.4, "meters"),
  31265. weight: math.unit(3.28349e+6, "kilograms"),
  31266. name: "Front",
  31267. image: {
  31268. source: "./media/characters/kirina-violet/front.svg",
  31269. extra: 2812 / 2725,
  31270. bottom: 0 / 2812
  31271. }
  31272. },
  31273. back: {
  31274. height: math.unit(63.4, "meters"),
  31275. weight: math.unit(3.28349e+6, "kilograms"),
  31276. name: "Back",
  31277. image: {
  31278. source: "./media/characters/kirina-violet/back.svg",
  31279. extra: 2812 / 2725,
  31280. bottom: 0 / 2812
  31281. }
  31282. },
  31283. mouth: {
  31284. height: math.unit(4.35, "meters"),
  31285. name: "Mouth",
  31286. image: {
  31287. source: "./media/characters/kirina-violet/mouth.svg"
  31288. }
  31289. },
  31290. paw: {
  31291. height: math.unit(5.6, "meters"),
  31292. name: "Paw",
  31293. image: {
  31294. source: "./media/characters/kirina-violet/paw.svg"
  31295. }
  31296. },
  31297. tail: {
  31298. height: math.unit(18, "meters"),
  31299. name: "Tail",
  31300. image: {
  31301. source: "./media/characters/kirina-violet/tail.svg"
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Macro",
  31308. height: math.unit(63.4, "meters"),
  31309. default: true
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31315. {
  31316. front: {
  31317. height: math.unit(75, "feet"),
  31318. name: "Front",
  31319. image: {
  31320. source: "./media/characters/cat-gigachu/front.svg",
  31321. extra: 1239/1027,
  31322. bottom: 32/1271
  31323. }
  31324. },
  31325. back: {
  31326. height: math.unit(75, "feet"),
  31327. name: "Back",
  31328. image: {
  31329. source: "./media/characters/cat-gigachu/back.svg",
  31330. extra: 1229/1030,
  31331. bottom: 9/1238
  31332. }
  31333. },
  31334. },
  31335. [
  31336. {
  31337. name: "Dynamax",
  31338. height: math.unit(75, "feet"),
  31339. default: true
  31340. },
  31341. ]
  31342. ))
  31343. characterMakers.push(() => makeCharacter(
  31344. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31345. {
  31346. front: {
  31347. height: math.unit(6, "feet"),
  31348. weight: math.unit(150, "lb"),
  31349. name: "Front",
  31350. image: {
  31351. source: "./media/characters/sfaiyan/front.svg",
  31352. extra: 999 / 978,
  31353. bottom: 5 / 1004
  31354. }
  31355. },
  31356. },
  31357. [
  31358. {
  31359. name: "Normal",
  31360. height: math.unit(1.82, "meters")
  31361. },
  31362. {
  31363. name: "Giant",
  31364. height: math.unit(2.27, "km"),
  31365. default: true
  31366. },
  31367. ]
  31368. ))
  31369. characterMakers.push(() => makeCharacter(
  31370. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31371. {
  31372. front: {
  31373. height: math.unit(179, "cm"),
  31374. weight: math.unit(100, "kg"),
  31375. name: "Front",
  31376. image: {
  31377. source: "./media/characters/raunehkeli/front.svg",
  31378. extra: 1934 / 1926,
  31379. bottom: 0 / 1934
  31380. }
  31381. },
  31382. },
  31383. [
  31384. {
  31385. name: "Normal",
  31386. height: math.unit(179, "cm")
  31387. },
  31388. {
  31389. name: "Maximum",
  31390. height: math.unit(575, "meters"),
  31391. default: true
  31392. },
  31393. ]
  31394. ))
  31395. characterMakers.push(() => makeCharacter(
  31396. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31397. {
  31398. front: {
  31399. height: math.unit(6, "feet"),
  31400. weight: math.unit(150, "lb"),
  31401. name: "Front",
  31402. image: {
  31403. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31404. extra: 2625 / 2518,
  31405. bottom: 60 / 2685
  31406. }
  31407. },
  31408. },
  31409. [
  31410. {
  31411. name: "Normal",
  31412. height: math.unit(6 + 2 / 12, "feet")
  31413. },
  31414. {
  31415. name: "Macro",
  31416. height: math.unit(1180, "feet"),
  31417. default: true
  31418. },
  31419. ]
  31420. ))
  31421. characterMakers.push(() => makeCharacter(
  31422. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31423. {
  31424. front: {
  31425. height: math.unit(5 + 6 / 12, "feet"),
  31426. weight: math.unit(108, "lb"),
  31427. name: "Front",
  31428. image: {
  31429. source: "./media/characters/lilith-zott/front.svg",
  31430. extra: 2510 / 2238,
  31431. bottom: 100 / 2610
  31432. }
  31433. },
  31434. frontDressed: {
  31435. height: math.unit(5 + 6 / 12, "feet"),
  31436. weight: math.unit(108, "lb"),
  31437. name: "Front (Dressed)",
  31438. image: {
  31439. source: "./media/characters/lilith-zott/front-dressed.svg",
  31440. extra: 2510 / 2238,
  31441. bottom: 100 / 2610
  31442. }
  31443. },
  31444. },
  31445. [
  31446. {
  31447. name: "Normal",
  31448. height: math.unit(5 + 6 / 12, "feet")
  31449. },
  31450. {
  31451. name: "Macro",
  31452. height: math.unit(1030, "feet"),
  31453. default: true
  31454. },
  31455. ]
  31456. ))
  31457. characterMakers.push(() => makeCharacter(
  31458. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31459. {
  31460. front: {
  31461. height: math.unit(6, "feet"),
  31462. weight: math.unit(150, "lb"),
  31463. name: "Front",
  31464. image: {
  31465. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31466. extra: 2567 / 2435,
  31467. bottom: 39 / 2606
  31468. }
  31469. },
  31470. frontSuper: {
  31471. height: math.unit(6, "feet"),
  31472. name: "Front (Super)",
  31473. image: {
  31474. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31475. extra: 2567 / 2435,
  31476. bottom: 39 / 2606
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Normal",
  31483. height: math.unit(5 + 10 / 12, "feet")
  31484. },
  31485. {
  31486. name: "Macro",
  31487. height: math.unit(1100, "feet"),
  31488. default: true
  31489. },
  31490. ]
  31491. ))
  31492. characterMakers.push(() => makeCharacter(
  31493. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31494. {
  31495. front: {
  31496. height: math.unit(100, "miles"),
  31497. name: "Front",
  31498. image: {
  31499. source: "./media/characters/sona/front.svg",
  31500. extra: 2433 / 2201,
  31501. bottom: 53 / 2486
  31502. }
  31503. },
  31504. foot: {
  31505. height: math.unit(16.1, "miles"),
  31506. name: "Foot",
  31507. image: {
  31508. source: "./media/characters/sona/foot.svg"
  31509. }
  31510. },
  31511. },
  31512. [
  31513. {
  31514. name: "Macro",
  31515. height: math.unit(100, "miles"),
  31516. default: true
  31517. },
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31522. {
  31523. front: {
  31524. height: math.unit(6, "feet"),
  31525. weight: math.unit(150, "lb"),
  31526. name: "Front",
  31527. image: {
  31528. source: "./media/characters/bailey/front.svg",
  31529. extra: 1778 / 1724,
  31530. bottom: 30 / 1808
  31531. }
  31532. },
  31533. },
  31534. [
  31535. {
  31536. name: "Micro",
  31537. height: math.unit(4, "inches")
  31538. },
  31539. {
  31540. name: "Normal",
  31541. height: math.unit(5 + 5 / 12, "feet"),
  31542. default: true
  31543. },
  31544. {
  31545. name: "Macro",
  31546. height: math.unit(250, "feet")
  31547. },
  31548. {
  31549. name: "Megamacro",
  31550. height: math.unit(100, "miles")
  31551. },
  31552. ]
  31553. ))
  31554. characterMakers.push(() => makeCharacter(
  31555. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31556. {
  31557. front: {
  31558. height: math.unit(5 + 2 / 12, "feet"),
  31559. weight: math.unit(120, "lb"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/snaps/front.svg",
  31563. extra: 2370 / 2177,
  31564. bottom: 48 / 2418
  31565. }
  31566. },
  31567. back: {
  31568. height: math.unit(5 + 2 / 12, "feet"),
  31569. weight: math.unit(120, "lb"),
  31570. name: "Back",
  31571. image: {
  31572. source: "./media/characters/snaps/back.svg",
  31573. extra: 2408 / 2258,
  31574. bottom: 15 / 2423
  31575. }
  31576. },
  31577. },
  31578. [
  31579. {
  31580. name: "Micro",
  31581. height: math.unit(9, "inches")
  31582. },
  31583. {
  31584. name: "Normal",
  31585. height: math.unit(5 + 2 / 12, "feet"),
  31586. default: true
  31587. },
  31588. {
  31589. name: "Mini Macro",
  31590. height: math.unit(10, "feet")
  31591. },
  31592. ]
  31593. ))
  31594. characterMakers.push(() => makeCharacter(
  31595. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31596. {
  31597. front: {
  31598. height: math.unit(1.8, "meters"),
  31599. weight: math.unit(85, "kg"),
  31600. name: "Front",
  31601. image: {
  31602. source: "./media/characters/azteck/front.svg",
  31603. extra: 2815 / 2625,
  31604. bottom: 89 / 2904
  31605. }
  31606. },
  31607. back: {
  31608. height: math.unit(1.8, "meters"),
  31609. weight: math.unit(85, "kg"),
  31610. name: "Back",
  31611. image: {
  31612. source: "./media/characters/azteck/back.svg",
  31613. extra: 2856 / 2648,
  31614. bottom: 85 / 2941
  31615. }
  31616. },
  31617. frontDressed: {
  31618. height: math.unit(1.8, "meters"),
  31619. weight: math.unit(85, "kg"),
  31620. name: "Front (Dressed)",
  31621. image: {
  31622. source: "./media/characters/azteck/front-dressed.svg",
  31623. extra: 2147 / 2003,
  31624. bottom: 68 / 2215
  31625. }
  31626. },
  31627. head: {
  31628. height: math.unit(0.47, "meters"),
  31629. weight: math.unit(85, "kg"),
  31630. name: "Head",
  31631. image: {
  31632. source: "./media/characters/azteck/head.svg"
  31633. }
  31634. },
  31635. },
  31636. [
  31637. {
  31638. name: "Bite sized",
  31639. height: math.unit(16, "cm")
  31640. },
  31641. {
  31642. name: "Normal",
  31643. height: math.unit(1.8, "meters"),
  31644. default: true
  31645. },
  31646. ]
  31647. ))
  31648. characterMakers.push(() => makeCharacter(
  31649. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31650. {
  31651. front: {
  31652. height: math.unit(6, "feet"),
  31653. weight: math.unit(150, "lb"),
  31654. name: "Front",
  31655. image: {
  31656. source: "./media/characters/pidge/front.svg",
  31657. extra: 1936/1820,
  31658. bottom: 0/1936
  31659. }
  31660. },
  31661. back: {
  31662. height: math.unit(6, "feet"),
  31663. weight: math.unit(150, "lb"),
  31664. name: "Back",
  31665. image: {
  31666. source: "./media/characters/pidge/back.svg",
  31667. extra: 1938/1843,
  31668. bottom: 0/1938
  31669. }
  31670. },
  31671. casual: {
  31672. height: math.unit(6, "feet"),
  31673. weight: math.unit(150, "lb"),
  31674. name: "Casual",
  31675. image: {
  31676. source: "./media/characters/pidge/casual.svg",
  31677. extra: 1936/1820,
  31678. bottom: 0/1936
  31679. }
  31680. },
  31681. tech: {
  31682. height: math.unit(6, "feet"),
  31683. weight: math.unit(150, "lb"),
  31684. name: "Tech",
  31685. image: {
  31686. source: "./media/characters/pidge/tech.svg",
  31687. extra: 1802/1682,
  31688. bottom: 0/1802
  31689. }
  31690. },
  31691. head: {
  31692. height: math.unit(1.61, "feet"),
  31693. name: "Head",
  31694. image: {
  31695. source: "./media/characters/pidge/head.svg"
  31696. }
  31697. },
  31698. collar: {
  31699. height: math.unit(0.82, "feet"),
  31700. name: "Collar",
  31701. image: {
  31702. source: "./media/characters/pidge/collar.svg"
  31703. }
  31704. },
  31705. },
  31706. [
  31707. {
  31708. name: "Macro",
  31709. height: math.unit(2, "mile"),
  31710. default: true
  31711. },
  31712. {
  31713. name: "PUPPY",
  31714. height: math.unit(20, "miles")
  31715. },
  31716. ]
  31717. ))
  31718. characterMakers.push(() => makeCharacter(
  31719. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31720. {
  31721. front: {
  31722. height: math.unit(6, "feet"),
  31723. weight: math.unit(150, "lb"),
  31724. name: "Front",
  31725. image: {
  31726. source: "./media/characters/en/front.svg",
  31727. extra: 1697 / 1563,
  31728. bottom: 103 / 1800
  31729. }
  31730. },
  31731. back: {
  31732. height: math.unit(6, "feet"),
  31733. weight: math.unit(150, "lb"),
  31734. name: "Back",
  31735. image: {
  31736. source: "./media/characters/en/back.svg",
  31737. extra: 1700 / 1570,
  31738. bottom: 51 / 1751
  31739. }
  31740. },
  31741. frontDressed: {
  31742. height: math.unit(6, "feet"),
  31743. weight: math.unit(150, "lb"),
  31744. name: "Front (Dressed)",
  31745. image: {
  31746. source: "./media/characters/en/front-dressed.svg",
  31747. extra: 1697 / 1563,
  31748. bottom: 103 / 1800
  31749. }
  31750. },
  31751. backDressed: {
  31752. height: math.unit(6, "feet"),
  31753. weight: math.unit(150, "lb"),
  31754. name: "Back (Dressed)",
  31755. image: {
  31756. source: "./media/characters/en/back-dressed.svg",
  31757. extra: 1700 / 1570,
  31758. bottom: 51 / 1751
  31759. }
  31760. },
  31761. },
  31762. [
  31763. {
  31764. name: "Macro",
  31765. height: math.unit(210, "feet"),
  31766. default: true
  31767. },
  31768. ]
  31769. ))
  31770. characterMakers.push(() => makeCharacter(
  31771. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31772. {
  31773. front: {
  31774. height: math.unit(6, "feet"),
  31775. weight: math.unit(150, "lb"),
  31776. name: "Front",
  31777. image: {
  31778. source: "./media/characters/haze-orris/front.svg",
  31779. extra: 3975 / 3525,
  31780. bottom: 137 / 4112
  31781. }
  31782. },
  31783. },
  31784. [
  31785. {
  31786. name: "Micro",
  31787. height: math.unit(150, "mm"),
  31788. default: true
  31789. },
  31790. ]
  31791. ))
  31792. characterMakers.push(() => makeCharacter(
  31793. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31794. {
  31795. front: {
  31796. height: math.unit(6, "feet"),
  31797. weight: math.unit(150, "lb"),
  31798. name: "Front",
  31799. image: {
  31800. source: "./media/characters/casselene-yaro/front.svg",
  31801. extra: 4721 / 4541,
  31802. bottom: 82 / 4803
  31803. }
  31804. },
  31805. back: {
  31806. height: math.unit(6, "feet"),
  31807. weight: math.unit(150, "lb"),
  31808. name: "Back",
  31809. image: {
  31810. source: "./media/characters/casselene-yaro/back.svg",
  31811. extra: 4569 / 4377,
  31812. bottom: 69 / 4638
  31813. }
  31814. },
  31815. dressed: {
  31816. height: math.unit(6, "feet"),
  31817. weight: math.unit(150, "lb"),
  31818. name: "Dressed",
  31819. image: {
  31820. source: "./media/characters/casselene-yaro/dressed.svg",
  31821. extra: 4721 / 4541,
  31822. bottom: 82 / 4803
  31823. }
  31824. },
  31825. maw: {
  31826. height: math.unit(1, "feet"),
  31827. name: "Maw",
  31828. image: {
  31829. source: "./media/characters/casselene-yaro/maw.svg"
  31830. }
  31831. },
  31832. },
  31833. [
  31834. {
  31835. name: "Macro",
  31836. height: math.unit(190, "feet"),
  31837. default: true
  31838. },
  31839. ]
  31840. ))
  31841. characterMakers.push(() => makeCharacter(
  31842. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31843. {
  31844. front: {
  31845. height: math.unit(10, "feet"),
  31846. weight: math.unit(15015, "lb"),
  31847. name: "Front",
  31848. image: {
  31849. source: "./media/characters/platine/front.svg",
  31850. extra: 1741/1650,
  31851. bottom: 84/1825
  31852. }
  31853. },
  31854. side: {
  31855. height: math.unit(10, "feet"),
  31856. weight: math.unit(15015, "lb"),
  31857. name: "Side",
  31858. image: {
  31859. source: "./media/characters/platine/side.svg",
  31860. extra: 1790/1705,
  31861. bottom: 29/1819
  31862. }
  31863. },
  31864. },
  31865. [
  31866. {
  31867. name: "Normal",
  31868. height: math.unit(10, "feet"),
  31869. default: true
  31870. },
  31871. {
  31872. name: "Macro",
  31873. height: math.unit(100, "feet")
  31874. },
  31875. {
  31876. name: "Megamacro",
  31877. height: math.unit(1000, "feet")
  31878. },
  31879. ]
  31880. ))
  31881. characterMakers.push(() => makeCharacter(
  31882. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31883. {
  31884. front: {
  31885. height: math.unit(15 + 5 / 12, "feet"),
  31886. weight: math.unit(4600, "lb"),
  31887. name: "Front",
  31888. image: {
  31889. source: "./media/characters/neapolitan-ananassa/front.svg",
  31890. extra: 2903 / 2736,
  31891. bottom: 0 / 2903
  31892. }
  31893. },
  31894. side: {
  31895. height: math.unit(15 + 5 / 12, "feet"),
  31896. weight: math.unit(4600, "lb"),
  31897. name: "Side",
  31898. image: {
  31899. source: "./media/characters/neapolitan-ananassa/side.svg",
  31900. extra: 2925 / 2719,
  31901. bottom: 0 / 2925
  31902. }
  31903. },
  31904. back: {
  31905. height: math.unit(15 + 5 / 12, "feet"),
  31906. weight: math.unit(4600, "lb"),
  31907. name: "Back",
  31908. image: {
  31909. source: "./media/characters/neapolitan-ananassa/back.svg",
  31910. extra: 2903 / 2736,
  31911. bottom: 0 / 2903
  31912. }
  31913. },
  31914. },
  31915. [
  31916. {
  31917. name: "Normal",
  31918. height: math.unit(15 + 5 / 12, "feet"),
  31919. default: true
  31920. },
  31921. {
  31922. name: "Post-Millenium",
  31923. height: math.unit(35 + 5 / 12, "feet")
  31924. },
  31925. {
  31926. name: "Post-Era",
  31927. height: math.unit(450 + 5 / 12, "feet")
  31928. },
  31929. ]
  31930. ))
  31931. characterMakers.push(() => makeCharacter(
  31932. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31933. {
  31934. front: {
  31935. height: math.unit(300, "meters"),
  31936. weight: math.unit(125000, "tonnes"),
  31937. name: "Front",
  31938. image: {
  31939. source: "./media/characters/pazuzu/front.svg",
  31940. extra: 877 / 794,
  31941. bottom: 47 / 924
  31942. }
  31943. },
  31944. },
  31945. [
  31946. {
  31947. name: "Macro",
  31948. height: math.unit(300, "meters"),
  31949. default: true
  31950. },
  31951. ]
  31952. ))
  31953. characterMakers.push(() => makeCharacter(
  31954. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31955. {
  31956. side: {
  31957. height: math.unit(10 + 7 / 12, "feet"),
  31958. weight: math.unit(2.5, "tons"),
  31959. name: "Side",
  31960. image: {
  31961. source: "./media/characters/aasha/side.svg",
  31962. extra: 1345 / 1245,
  31963. bottom: 111 / 1456
  31964. }
  31965. },
  31966. back: {
  31967. height: math.unit(10 + 7 / 12, "feet"),
  31968. weight: math.unit(2.5, "tons"),
  31969. name: "Back",
  31970. image: {
  31971. source: "./media/characters/aasha/back.svg",
  31972. extra: 1133 / 1057,
  31973. bottom: 257 / 1390
  31974. }
  31975. },
  31976. },
  31977. [
  31978. {
  31979. name: "Normal",
  31980. height: math.unit(10 + 7 / 12, "feet"),
  31981. default: true
  31982. },
  31983. ]
  31984. ))
  31985. characterMakers.push(() => makeCharacter(
  31986. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31987. {
  31988. front: {
  31989. height: math.unit(6 + 3 / 12, "feet"),
  31990. name: "Front",
  31991. image: {
  31992. source: "./media/characters/nevan/front.svg",
  31993. extra: 704 / 704,
  31994. bottom: 28 / 732
  31995. }
  31996. },
  31997. back: {
  31998. height: math.unit(6 + 3 / 12, "feet"),
  31999. name: "Back",
  32000. image: {
  32001. source: "./media/characters/nevan/back.svg",
  32002. extra: 714 / 714,
  32003. bottom: 21 / 735
  32004. }
  32005. },
  32006. frontFlaccid: {
  32007. height: math.unit(6 + 3 / 12, "feet"),
  32008. name: "Front (Flaccid)",
  32009. image: {
  32010. source: "./media/characters/nevan/front-flaccid.svg",
  32011. extra: 704 / 704,
  32012. bottom: 28 / 732
  32013. }
  32014. },
  32015. frontErect: {
  32016. height: math.unit(6 + 3 / 12, "feet"),
  32017. name: "Front (Erect)",
  32018. image: {
  32019. source: "./media/characters/nevan/front-erect.svg",
  32020. extra: 704 / 704,
  32021. bottom: 28 / 732
  32022. }
  32023. },
  32024. backFlaccid: {
  32025. height: math.unit(6 + 3 / 12, "feet"),
  32026. name: "Back (Flaccid)",
  32027. image: {
  32028. source: "./media/characters/nevan/back-flaccid.svg",
  32029. extra: 714 / 714,
  32030. bottom: 21 / 735
  32031. }
  32032. },
  32033. },
  32034. [
  32035. {
  32036. name: "Normal",
  32037. height: math.unit(6 + 3 / 12, "feet"),
  32038. default: true
  32039. },
  32040. ]
  32041. ))
  32042. characterMakers.push(() => makeCharacter(
  32043. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32044. {
  32045. front: {
  32046. height: math.unit(4, "feet"),
  32047. name: "Front",
  32048. image: {
  32049. source: "./media/characters/arhan/front.svg",
  32050. extra: 3368 / 3133,
  32051. bottom: 0 / 3368
  32052. }
  32053. },
  32054. side: {
  32055. height: math.unit(4, "feet"),
  32056. name: "Side",
  32057. image: {
  32058. source: "./media/characters/arhan/side.svg",
  32059. extra: 3347 / 3105,
  32060. bottom: 0 / 3347
  32061. }
  32062. },
  32063. tongue: {
  32064. height: math.unit(1.42, "feet"),
  32065. name: "Tongue",
  32066. image: {
  32067. source: "./media/characters/arhan/tongue.svg"
  32068. }
  32069. },
  32070. head: {
  32071. height: math.unit(0.85, "feet"),
  32072. name: "Head",
  32073. image: {
  32074. source: "./media/characters/arhan/head.svg"
  32075. }
  32076. },
  32077. },
  32078. [
  32079. {
  32080. name: "Normal",
  32081. height: math.unit(4, "feet"),
  32082. default: true
  32083. },
  32084. ]
  32085. ))
  32086. characterMakers.push(() => makeCharacter(
  32087. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32088. {
  32089. front: {
  32090. height: math.unit(5 + 7.5 / 12, "feet"),
  32091. weight: math.unit(120, "lb"),
  32092. name: "Front",
  32093. image: {
  32094. source: "./media/characters/digi-duncan/front.svg",
  32095. extra: 330 / 326,
  32096. bottom: 16 / 346
  32097. }
  32098. },
  32099. side: {
  32100. height: math.unit(5 + 7.5 / 12, "feet"),
  32101. weight: math.unit(120, "lb"),
  32102. name: "Side",
  32103. image: {
  32104. source: "./media/characters/digi-duncan/side.svg",
  32105. extra: 341 / 337,
  32106. bottom: 1 / 342
  32107. }
  32108. },
  32109. back: {
  32110. height: math.unit(5 + 7.5 / 12, "feet"),
  32111. weight: math.unit(120, "lb"),
  32112. name: "Back",
  32113. image: {
  32114. source: "./media/characters/digi-duncan/back.svg",
  32115. extra: 330 / 326,
  32116. bottom: 12 / 342
  32117. }
  32118. },
  32119. },
  32120. [
  32121. {
  32122. name: "Speck",
  32123. height: math.unit(0.25, "mm")
  32124. },
  32125. {
  32126. name: "Micro",
  32127. height: math.unit(5, "mm")
  32128. },
  32129. {
  32130. name: "Tiny",
  32131. height: math.unit(0.5, "inches"),
  32132. default: true
  32133. },
  32134. {
  32135. name: "Human",
  32136. height: math.unit(5 + 7.5 / 12, "feet")
  32137. },
  32138. {
  32139. name: "Minigiant",
  32140. height: math.unit(8 + 5.25, "feet")
  32141. },
  32142. {
  32143. name: "Giant",
  32144. height: math.unit(2000, "feet")
  32145. },
  32146. {
  32147. name: "Mega",
  32148. height: math.unit(371.1, "miles")
  32149. },
  32150. ]
  32151. ))
  32152. characterMakers.push(() => makeCharacter(
  32153. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32154. {
  32155. front: {
  32156. height: math.unit(2, "meters"),
  32157. weight: math.unit(350, "kg"),
  32158. name: "Front",
  32159. image: {
  32160. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32161. extra: 898 / 838,
  32162. bottom: 9 / 907
  32163. }
  32164. },
  32165. },
  32166. [
  32167. {
  32168. name: "Micro",
  32169. height: math.unit(8, "meters")
  32170. },
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(50, "meters"),
  32174. default: true
  32175. },
  32176. {
  32177. name: "Macro",
  32178. height: math.unit(500, "meters")
  32179. },
  32180. ]
  32181. ))
  32182. characterMakers.push(() => makeCharacter(
  32183. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32184. {
  32185. front: {
  32186. height: math.unit(6 + 6 / 12, "feet"),
  32187. name: "Front",
  32188. image: {
  32189. source: "./media/characters/khardesh/front.svg",
  32190. extra: 1788/1596,
  32191. bottom: 66/1854
  32192. }
  32193. },
  32194. back: {
  32195. height: math.unit(6 + 6 / 12, "feet"),
  32196. name: "Back",
  32197. image: {
  32198. source: "./media/characters/khardesh/back.svg",
  32199. extra: 1781/1584,
  32200. bottom: 68/1849
  32201. }
  32202. },
  32203. },
  32204. [
  32205. {
  32206. name: "Normal",
  32207. height: math.unit(6 + 6 / 12, "feet"),
  32208. default: true
  32209. },
  32210. {
  32211. name: "Normal+",
  32212. height: math.unit(4, "meters")
  32213. },
  32214. {
  32215. name: "Macro",
  32216. height: math.unit(50, "meters")
  32217. },
  32218. {
  32219. name: "Macro+",
  32220. height: math.unit(100, "meters")
  32221. },
  32222. {
  32223. name: "Megamacro",
  32224. height: math.unit(20, "km")
  32225. },
  32226. ]
  32227. ))
  32228. characterMakers.push(() => makeCharacter(
  32229. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32230. {
  32231. front: {
  32232. height: math.unit(6, "feet"),
  32233. weight: math.unit(150, "lb"),
  32234. name: "Front",
  32235. image: {
  32236. source: "./media/characters/kosho/front.svg",
  32237. extra: 1847 / 1847,
  32238. bottom: 86 / 1933
  32239. }
  32240. },
  32241. },
  32242. [
  32243. {
  32244. name: "Second-stage micro",
  32245. height: math.unit(0.5, "inches")
  32246. },
  32247. {
  32248. name: "First-stage micro",
  32249. height: math.unit(6, "inches")
  32250. },
  32251. {
  32252. name: "Normal",
  32253. height: math.unit(6, "feet"),
  32254. default: true
  32255. },
  32256. {
  32257. name: "First-stage macro",
  32258. height: math.unit(72, "feet")
  32259. },
  32260. {
  32261. name: "Second-stage macro",
  32262. height: math.unit(864, "feet")
  32263. },
  32264. ]
  32265. ))
  32266. characterMakers.push(() => makeCharacter(
  32267. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32268. {
  32269. normal: {
  32270. height: math.unit(4 + 6 / 12, "feet"),
  32271. name: "Normal",
  32272. image: {
  32273. source: "./media/characters/hydra/normal.svg",
  32274. extra: 2833 / 2634,
  32275. bottom: 68 / 2901
  32276. }
  32277. },
  32278. smol: {
  32279. height: math.unit(0.705, "inches"),
  32280. name: "Smol",
  32281. image: {
  32282. source: "./media/characters/hydra/smol.svg",
  32283. extra: 2715 / 2540,
  32284. bottom: 0 / 2715
  32285. }
  32286. },
  32287. },
  32288. [
  32289. {
  32290. name: "Normal",
  32291. height: math.unit(4 + 6 / 12, "feet"),
  32292. default: true
  32293. }
  32294. ]
  32295. ))
  32296. characterMakers.push(() => makeCharacter(
  32297. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32298. {
  32299. front: {
  32300. height: math.unit(0.6, "cm"),
  32301. name: "Front",
  32302. image: {
  32303. source: "./media/characters/daz/front.svg",
  32304. extra: 1682 / 1164,
  32305. bottom: 42 / 1724
  32306. }
  32307. },
  32308. },
  32309. [
  32310. {
  32311. name: "Normal",
  32312. height: math.unit(0.6, "cm"),
  32313. default: true
  32314. },
  32315. ]
  32316. ))
  32317. characterMakers.push(() => makeCharacter(
  32318. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32319. {
  32320. front: {
  32321. height: math.unit(6, "feet"),
  32322. weight: math.unit(235, "lb"),
  32323. name: "Front",
  32324. image: {
  32325. source: "./media/characters/theo-pangolin/front.svg",
  32326. extra: 1996 / 1969,
  32327. bottom: 115 / 2111
  32328. }
  32329. },
  32330. back: {
  32331. height: math.unit(6, "feet"),
  32332. weight: math.unit(235, "lb"),
  32333. name: "Back",
  32334. image: {
  32335. source: "./media/characters/theo-pangolin/back.svg",
  32336. extra: 1979 / 1979,
  32337. bottom: 40 / 2019
  32338. }
  32339. },
  32340. feral: {
  32341. height: math.unit(2, "feet"),
  32342. weight: math.unit(30, "lb"),
  32343. name: "Feral",
  32344. image: {
  32345. source: "./media/characters/theo-pangolin/feral.svg",
  32346. extra: 803 / 791,
  32347. bottom: 181 / 984
  32348. }
  32349. },
  32350. footFive: {
  32351. height: math.unit(1.43, "feet"),
  32352. name: "Foot (Five Toes)",
  32353. image: {
  32354. source: "./media/characters/theo-pangolin/foot-five.svg"
  32355. }
  32356. },
  32357. footFour: {
  32358. height: math.unit(1.43, "feet"),
  32359. name: "Foot (Four Toes)",
  32360. image: {
  32361. source: "./media/characters/theo-pangolin/foot-four.svg"
  32362. }
  32363. },
  32364. handFour: {
  32365. height: math.unit(0.81, "feet"),
  32366. name: "Hand (Four Fingers)",
  32367. image: {
  32368. source: "./media/characters/theo-pangolin/hand-four.svg"
  32369. }
  32370. },
  32371. handThree: {
  32372. height: math.unit(0.81, "feet"),
  32373. name: "Hand (Three Fingers)",
  32374. image: {
  32375. source: "./media/characters/theo-pangolin/hand-three.svg"
  32376. }
  32377. },
  32378. headFront: {
  32379. height: math.unit(1.37, "feet"),
  32380. name: "Head (Front)",
  32381. image: {
  32382. source: "./media/characters/theo-pangolin/head-front.svg"
  32383. }
  32384. },
  32385. headSide: {
  32386. height: math.unit(1.43, "feet"),
  32387. name: "Head (Side)",
  32388. image: {
  32389. source: "./media/characters/theo-pangolin/head-side.svg"
  32390. }
  32391. },
  32392. tongue: {
  32393. height: math.unit(2.29, "feet"),
  32394. name: "Tongue",
  32395. image: {
  32396. source: "./media/characters/theo-pangolin/tongue.svg"
  32397. }
  32398. },
  32399. },
  32400. [
  32401. {
  32402. name: "Normal",
  32403. height: math.unit(6, "feet")
  32404. },
  32405. {
  32406. name: "Macro",
  32407. height: math.unit(400, "feet"),
  32408. default: true
  32409. },
  32410. ]
  32411. ))
  32412. characterMakers.push(() => makeCharacter(
  32413. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32414. {
  32415. front: {
  32416. height: math.unit(6, "inches"),
  32417. weight: math.unit(0.036, "kg"),
  32418. name: "Front",
  32419. image: {
  32420. source: "./media/characters/renée/front.svg",
  32421. extra: 900 / 886,
  32422. bottom: 8 / 908
  32423. }
  32424. },
  32425. },
  32426. [
  32427. {
  32428. name: "Nano",
  32429. height: math.unit(1, "nm")
  32430. },
  32431. {
  32432. name: "Micro",
  32433. height: math.unit(1, "mm")
  32434. },
  32435. {
  32436. name: "Normal",
  32437. height: math.unit(6, "inches")
  32438. },
  32439. {
  32440. name: "Macro",
  32441. height: math.unit(2000, "feet"),
  32442. default: true
  32443. },
  32444. {
  32445. name: "Megamacro",
  32446. height: math.unit(2, "km")
  32447. },
  32448. {
  32449. name: "Gigamacro",
  32450. height: math.unit(2000, "km")
  32451. },
  32452. {
  32453. name: "Teramacro",
  32454. height: math.unit(250000, "km")
  32455. },
  32456. ]
  32457. ))
  32458. characterMakers.push(() => makeCharacter(
  32459. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32460. {
  32461. front: {
  32462. height: math.unit(4, "meters"),
  32463. weight: math.unit(150, "kg"),
  32464. name: "Front",
  32465. image: {
  32466. source: "./media/characters/caledvwlch/front.svg",
  32467. extra: 1757/1537,
  32468. bottom: 31/1788
  32469. }
  32470. },
  32471. side: {
  32472. height: math.unit(4, "meters"),
  32473. weight: math.unit(150, "kg"),
  32474. name: "Side",
  32475. image: {
  32476. source: "./media/characters/caledvwlch/side.svg",
  32477. extra: 1605 / 1536,
  32478. bottom: 31 / 1636
  32479. }
  32480. },
  32481. back: {
  32482. height: math.unit(4, "meters"),
  32483. weight: math.unit(150, "kg"),
  32484. name: "Back",
  32485. image: {
  32486. source: "./media/characters/caledvwlch/back.svg",
  32487. extra: 1635 / 1565,
  32488. bottom: 27 / 1662
  32489. }
  32490. },
  32491. },
  32492. [
  32493. {
  32494. name: "\"Incognito\"",
  32495. height: math.unit(4, "meters")
  32496. },
  32497. {
  32498. name: "Small rampage",
  32499. height: math.unit(600, "meters")
  32500. },
  32501. {
  32502. name: "Mega",
  32503. height: math.unit(30, "km")
  32504. },
  32505. {
  32506. name: "Home-size",
  32507. height: math.unit(50, "km"),
  32508. default: true
  32509. },
  32510. {
  32511. name: "Giga",
  32512. height: math.unit(300, "km")
  32513. },
  32514. {
  32515. name: "Lounging",
  32516. height: math.unit(11000, "km")
  32517. },
  32518. {
  32519. name: "Planet snacking",
  32520. height: math.unit(2000000, "km")
  32521. },
  32522. ]
  32523. ))
  32524. characterMakers.push(() => makeCharacter(
  32525. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32526. {
  32527. front: {
  32528. height: math.unit(6, "feet"),
  32529. weight: math.unit(215, "lb"),
  32530. name: "Front",
  32531. image: {
  32532. source: "./media/characters/sapphire-svell/front.svg",
  32533. extra: 495 / 455,
  32534. bottom: 20 / 515
  32535. }
  32536. },
  32537. back: {
  32538. height: math.unit(6, "feet"),
  32539. weight: math.unit(216, "lb"),
  32540. name: "Back",
  32541. image: {
  32542. source: "./media/characters/sapphire-svell/back.svg",
  32543. extra: 497 / 477,
  32544. bottom: 7 / 504
  32545. }
  32546. },
  32547. maw: {
  32548. height: math.unit(1.57, "feet"),
  32549. name: "Maw",
  32550. image: {
  32551. source: "./media/characters/sapphire-svell/maw.svg"
  32552. }
  32553. },
  32554. foot: {
  32555. height: math.unit(1.07, "feet"),
  32556. name: "Foot",
  32557. image: {
  32558. source: "./media/characters/sapphire-svell/foot.svg"
  32559. }
  32560. },
  32561. toering: {
  32562. height: math.unit(1.7, "inch"),
  32563. name: "Toering",
  32564. image: {
  32565. source: "./media/characters/sapphire-svell/toering.svg"
  32566. }
  32567. },
  32568. },
  32569. [
  32570. {
  32571. name: "Normal",
  32572. height: math.unit(300, "feet"),
  32573. default: true
  32574. },
  32575. {
  32576. name: "Augmented",
  32577. height: math.unit(1250, "feet")
  32578. },
  32579. {
  32580. name: "Unleashed",
  32581. height: math.unit(3000, "feet")
  32582. },
  32583. ]
  32584. ))
  32585. characterMakers.push(() => makeCharacter(
  32586. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32587. {
  32588. side: {
  32589. height: math.unit(2 + 3 / 12, "feet"),
  32590. weight: math.unit(110, "lb"),
  32591. name: "Side",
  32592. image: {
  32593. source: "./media/characters/glitch-flux/side.svg",
  32594. extra: 997 / 805,
  32595. bottom: 20 / 1017
  32596. }
  32597. },
  32598. },
  32599. [
  32600. {
  32601. name: "Normal",
  32602. height: math.unit(2 + 3 / 12, "feet"),
  32603. default: true
  32604. },
  32605. ]
  32606. ))
  32607. characterMakers.push(() => makeCharacter(
  32608. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32609. {
  32610. front: {
  32611. height: math.unit(4, "meters"),
  32612. name: "Front",
  32613. image: {
  32614. source: "./media/characters/mid/front.svg",
  32615. extra: 507 / 476,
  32616. bottom: 17 / 524
  32617. }
  32618. },
  32619. back: {
  32620. height: math.unit(4, "meters"),
  32621. name: "Back",
  32622. image: {
  32623. source: "./media/characters/mid/back.svg",
  32624. extra: 519 / 487,
  32625. bottom: 7 / 526
  32626. }
  32627. },
  32628. stuck: {
  32629. height: math.unit(2.2, "meters"),
  32630. name: "Stuck",
  32631. image: {
  32632. source: "./media/characters/mid/stuck.svg",
  32633. extra: 1951 / 1869,
  32634. bottom: 88 / 2039
  32635. }
  32636. }
  32637. },
  32638. [
  32639. {
  32640. name: "Normal",
  32641. height: math.unit(4, "meters"),
  32642. default: true
  32643. },
  32644. {
  32645. name: "Big",
  32646. height: math.unit(10, "meters")
  32647. },
  32648. {
  32649. name: "Macro",
  32650. height: math.unit(800, "meters")
  32651. },
  32652. {
  32653. name: "Megamacro",
  32654. height: math.unit(100, "km")
  32655. },
  32656. {
  32657. name: "Overgrown",
  32658. height: math.unit(1, "parsec")
  32659. },
  32660. ]
  32661. ))
  32662. characterMakers.push(() => makeCharacter(
  32663. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32664. {
  32665. front: {
  32666. height: math.unit(2.5, "meters"),
  32667. weight: math.unit(225, "kg"),
  32668. name: "Front",
  32669. image: {
  32670. source: "./media/characters/iris/front.svg",
  32671. extra: 3348 / 3251,
  32672. bottom: 205 / 3553
  32673. }
  32674. },
  32675. maw: {
  32676. height: math.unit(0.56, "meter"),
  32677. name: "Maw",
  32678. image: {
  32679. source: "./media/characters/iris/maw.svg"
  32680. }
  32681. },
  32682. },
  32683. [
  32684. {
  32685. name: "Mewter cat",
  32686. height: math.unit(1.2, "meters")
  32687. },
  32688. {
  32689. name: "Normal",
  32690. height: math.unit(2.5, "meters"),
  32691. default: true
  32692. },
  32693. {
  32694. name: "Minimacro",
  32695. height: math.unit(18, "feet")
  32696. },
  32697. {
  32698. name: "Macro",
  32699. height: math.unit(140, "feet")
  32700. },
  32701. {
  32702. name: "Macro+",
  32703. height: math.unit(180, "meters")
  32704. },
  32705. {
  32706. name: "Megamacro",
  32707. height: math.unit(2746, "meters")
  32708. },
  32709. ]
  32710. ))
  32711. characterMakers.push(() => makeCharacter(
  32712. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32713. {
  32714. front: {
  32715. height: math.unit(6, "feet"),
  32716. weight: math.unit(135, "lb"),
  32717. name: "Front",
  32718. image: {
  32719. source: "./media/characters/axel/front.svg",
  32720. extra: 908 / 908,
  32721. bottom: 58 / 966
  32722. }
  32723. },
  32724. side: {
  32725. height: math.unit(6, "feet"),
  32726. weight: math.unit(135, "lb"),
  32727. name: "Side",
  32728. image: {
  32729. source: "./media/characters/axel/side.svg",
  32730. extra: 958 / 958,
  32731. bottom: 11 / 969
  32732. }
  32733. },
  32734. back: {
  32735. height: math.unit(6, "feet"),
  32736. weight: math.unit(135, "lb"),
  32737. name: "Back",
  32738. image: {
  32739. source: "./media/characters/axel/back.svg",
  32740. extra: 887 / 887,
  32741. bottom: 34 / 921
  32742. }
  32743. },
  32744. head: {
  32745. height: math.unit(1.07, "feet"),
  32746. name: "Head",
  32747. image: {
  32748. source: "./media/characters/axel/head.svg"
  32749. }
  32750. },
  32751. beak: {
  32752. height: math.unit(1.4, "feet"),
  32753. name: "Beak",
  32754. image: {
  32755. source: "./media/characters/axel/beak.svg"
  32756. }
  32757. },
  32758. beakSide: {
  32759. height: math.unit(1.4, "feet"),
  32760. name: "Beak Side",
  32761. image: {
  32762. source: "./media/characters/axel/beak-side.svg"
  32763. }
  32764. },
  32765. sheath: {
  32766. height: math.unit(0.5, "feet"),
  32767. name: "Sheath",
  32768. image: {
  32769. source: "./media/characters/axel/sheath.svg"
  32770. }
  32771. },
  32772. dick: {
  32773. height: math.unit(0.98, "feet"),
  32774. name: "Dick",
  32775. image: {
  32776. source: "./media/characters/axel/dick.svg"
  32777. }
  32778. },
  32779. },
  32780. [
  32781. {
  32782. name: "Macro",
  32783. height: math.unit(68, "meters"),
  32784. default: true
  32785. },
  32786. ]
  32787. ))
  32788. characterMakers.push(() => makeCharacter(
  32789. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32790. {
  32791. front: {
  32792. height: math.unit(3.5, "meters"),
  32793. weight: math.unit(1200, "kg"),
  32794. name: "Front",
  32795. image: {
  32796. source: "./media/characters/joanna/front.svg",
  32797. extra: 1596 / 1488,
  32798. bottom: 29 / 1625
  32799. }
  32800. },
  32801. back: {
  32802. height: math.unit(3.5, "meters"),
  32803. weight: math.unit(1200, "kg"),
  32804. name: "Back",
  32805. image: {
  32806. source: "./media/characters/joanna/back.svg",
  32807. extra: 1594 / 1495,
  32808. bottom: 26 / 1620
  32809. }
  32810. },
  32811. frontShorts: {
  32812. height: math.unit(3.5, "meters"),
  32813. weight: math.unit(1200, "kg"),
  32814. name: "Front (Shorts)",
  32815. image: {
  32816. source: "./media/characters/joanna/front-shorts.svg",
  32817. extra: 1596 / 1488,
  32818. bottom: 29 / 1625
  32819. }
  32820. },
  32821. frontBiker: {
  32822. height: math.unit(3.5, "meters"),
  32823. weight: math.unit(1200, "kg"),
  32824. name: "Front (Biker)",
  32825. image: {
  32826. source: "./media/characters/joanna/front-biker.svg",
  32827. extra: 1596 / 1488,
  32828. bottom: 29 / 1625
  32829. }
  32830. },
  32831. backBiker: {
  32832. height: math.unit(3.5, "meters"),
  32833. weight: math.unit(1200, "kg"),
  32834. name: "Back (Biker)",
  32835. image: {
  32836. source: "./media/characters/joanna/back-biker.svg",
  32837. extra: 1594 / 1495,
  32838. bottom: 88 / 1682
  32839. }
  32840. },
  32841. bikeLeft: {
  32842. height: math.unit(2.4, "meters"),
  32843. weight: math.unit(1600, "kg"),
  32844. name: "Bike (Left)",
  32845. image: {
  32846. source: "./media/characters/joanna/bike-left.svg",
  32847. extra: 720 / 720,
  32848. bottom: 8 / 728
  32849. }
  32850. },
  32851. bikeRight: {
  32852. height: math.unit(2.4, "meters"),
  32853. weight: math.unit(1600, "kg"),
  32854. name: "Bike (Right)",
  32855. image: {
  32856. source: "./media/characters/joanna/bike-right.svg",
  32857. extra: 720 / 720,
  32858. bottom: 8 / 728
  32859. }
  32860. },
  32861. },
  32862. [
  32863. {
  32864. name: "Incognito",
  32865. height: math.unit(3.5, "meters")
  32866. },
  32867. {
  32868. name: "Casual Big",
  32869. height: math.unit(200, "meters")
  32870. },
  32871. {
  32872. name: "Macro",
  32873. height: math.unit(600, "meters")
  32874. },
  32875. {
  32876. name: "Original",
  32877. height: math.unit(20, "km"),
  32878. default: true
  32879. },
  32880. {
  32881. name: "Giga",
  32882. height: math.unit(400, "km")
  32883. },
  32884. {
  32885. name: "Lounging",
  32886. height: math.unit(1500, "km")
  32887. },
  32888. {
  32889. name: "Planetary",
  32890. height: math.unit(200000, "km")
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(6, "feet"),
  32899. weight: math.unit(150, "lb"),
  32900. name: "Front",
  32901. image: {
  32902. source: "./media/characters/hugo-sigil/front.svg",
  32903. extra: 522 / 500,
  32904. bottom: 2 / 524
  32905. }
  32906. },
  32907. back: {
  32908. height: math.unit(6, "feet"),
  32909. weight: math.unit(150, "lb"),
  32910. name: "Back",
  32911. image: {
  32912. source: "./media/characters/hugo-sigil/back.svg",
  32913. extra: 519 / 495,
  32914. bottom: 5 / 524
  32915. }
  32916. },
  32917. maw: {
  32918. height: math.unit(1.4, "feet"),
  32919. weight: math.unit(150, "lb"),
  32920. name: "Maw",
  32921. image: {
  32922. source: "./media/characters/hugo-sigil/maw.svg"
  32923. }
  32924. },
  32925. feet: {
  32926. height: math.unit(1.56, "feet"),
  32927. weight: math.unit(150, "lb"),
  32928. name: "Feet",
  32929. image: {
  32930. source: "./media/characters/hugo-sigil/feet.svg",
  32931. extra: 177 / 177,
  32932. bottom: 12 / 189
  32933. }
  32934. },
  32935. },
  32936. [
  32937. {
  32938. name: "Normal",
  32939. height: math.unit(6, "feet")
  32940. },
  32941. {
  32942. name: "Macro",
  32943. height: math.unit(200, "feet"),
  32944. default: true
  32945. },
  32946. ]
  32947. ))
  32948. characterMakers.push(() => makeCharacter(
  32949. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32950. {
  32951. front: {
  32952. height: math.unit(6, "feet"),
  32953. weight: math.unit(150, "lb"),
  32954. name: "Front",
  32955. image: {
  32956. source: "./media/characters/peri/front.svg",
  32957. extra: 2354 / 2233,
  32958. bottom: 49 / 2403
  32959. }
  32960. },
  32961. },
  32962. [
  32963. {
  32964. name: "Really Small",
  32965. height: math.unit(1, "nm")
  32966. },
  32967. {
  32968. name: "Micro",
  32969. height: math.unit(4, "inches")
  32970. },
  32971. {
  32972. name: "Normal",
  32973. height: math.unit(7, "inches"),
  32974. default: true
  32975. },
  32976. {
  32977. name: "Macro",
  32978. height: math.unit(400, "feet")
  32979. },
  32980. {
  32981. name: "Megamacro",
  32982. height: math.unit(100, "miles")
  32983. },
  32984. ]
  32985. ))
  32986. characterMakers.push(() => makeCharacter(
  32987. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32988. {
  32989. frontSlim: {
  32990. height: math.unit(7, "feet"),
  32991. name: "Front (Slim)",
  32992. image: {
  32993. source: "./media/characters/issilora/front-slim.svg",
  32994. extra: 529 / 449,
  32995. bottom: 53 / 582
  32996. }
  32997. },
  32998. sideSlim: {
  32999. height: math.unit(7, "feet"),
  33000. name: "Side (Slim)",
  33001. image: {
  33002. source: "./media/characters/issilora/side-slim.svg",
  33003. extra: 570 / 480,
  33004. bottom: 30 / 600
  33005. }
  33006. },
  33007. backSlim: {
  33008. height: math.unit(7, "feet"),
  33009. name: "Back (Slim)",
  33010. image: {
  33011. source: "./media/characters/issilora/back-slim.svg",
  33012. extra: 537 / 455,
  33013. bottom: 46 / 583
  33014. }
  33015. },
  33016. frontBuff: {
  33017. height: math.unit(7, "feet"),
  33018. name: "Front (Buff)",
  33019. image: {
  33020. source: "./media/characters/issilora/front-buff.svg",
  33021. extra: 2310 / 2035,
  33022. bottom: 335 / 2645
  33023. }
  33024. },
  33025. head: {
  33026. height: math.unit(1.94, "feet"),
  33027. name: "Head",
  33028. image: {
  33029. source: "./media/characters/issilora/head.svg"
  33030. }
  33031. },
  33032. },
  33033. [
  33034. {
  33035. name: "Minimum",
  33036. height: math.unit(7, "feet")
  33037. },
  33038. {
  33039. name: "Comfortable",
  33040. height: math.unit(17, "feet")
  33041. },
  33042. {
  33043. name: "Fun Size",
  33044. height: math.unit(47, "feet")
  33045. },
  33046. {
  33047. name: "Natural Macro",
  33048. height: math.unit(137, "feet"),
  33049. default: true
  33050. },
  33051. {
  33052. name: "Maximum Kaiju",
  33053. height: math.unit(397, "feet")
  33054. },
  33055. ]
  33056. ))
  33057. characterMakers.push(() => makeCharacter(
  33058. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33059. {
  33060. front: {
  33061. height: math.unit(50 + 9/12, "feet"),
  33062. weight: math.unit(32.8, "tons"),
  33063. name: "Front",
  33064. image: {
  33065. source: "./media/characters/irb'iiritaahn/front.svg",
  33066. extra: 1878/1826,
  33067. bottom: 326/2204
  33068. }
  33069. },
  33070. back: {
  33071. height: math.unit(50 + 9/12, "feet"),
  33072. weight: math.unit(32.8, "tons"),
  33073. name: "Back",
  33074. image: {
  33075. source: "./media/characters/irb'iiritaahn/back.svg",
  33076. extra: 2052/2018,
  33077. bottom: 152/2204
  33078. }
  33079. },
  33080. head: {
  33081. height: math.unit(12.86, "feet"),
  33082. name: "Head",
  33083. image: {
  33084. source: "./media/characters/irb'iiritaahn/head.svg"
  33085. }
  33086. },
  33087. maw: {
  33088. height: math.unit(9.66, "feet"),
  33089. name: "Maw",
  33090. image: {
  33091. source: "./media/characters/irb'iiritaahn/maw.svg"
  33092. }
  33093. },
  33094. frontDick: {
  33095. height: math.unit(8.78461, "feet"),
  33096. name: "Front Dick",
  33097. image: {
  33098. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33099. }
  33100. },
  33101. rearDick: {
  33102. height: math.unit(8.78461, "feet"),
  33103. name: "Rear Dick",
  33104. image: {
  33105. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33106. }
  33107. },
  33108. rearDickUnfolded: {
  33109. height: math.unit(8.78, "feet"),
  33110. name: "Rear Dick (Unfolded)",
  33111. image: {
  33112. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33113. }
  33114. },
  33115. wings: {
  33116. height: math.unit(43, "feet"),
  33117. name: "Wings",
  33118. image: {
  33119. source: "./media/characters/irb'iiritaahn/wings.svg"
  33120. }
  33121. },
  33122. },
  33123. [
  33124. {
  33125. name: "Macro",
  33126. height: math.unit(50 + 9/12, "feet"),
  33127. default: true
  33128. },
  33129. ]
  33130. ))
  33131. characterMakers.push(() => makeCharacter(
  33132. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33133. {
  33134. front: {
  33135. height: math.unit(205, "cm"),
  33136. weight: math.unit(102, "kg"),
  33137. name: "Front",
  33138. image: {
  33139. source: "./media/characters/irbisgreif/front.svg",
  33140. extra: 785/706,
  33141. bottom: 13/798
  33142. }
  33143. },
  33144. back: {
  33145. height: math.unit(205, "cm"),
  33146. weight: math.unit(102, "kg"),
  33147. name: "Back",
  33148. image: {
  33149. source: "./media/characters/irbisgreif/back.svg",
  33150. extra: 713/701,
  33151. bottom: 26/739
  33152. }
  33153. },
  33154. frontDressed: {
  33155. height: math.unit(216, "cm"),
  33156. weight: math.unit(102, "kg"),
  33157. name: "Front-dressed",
  33158. image: {
  33159. source: "./media/characters/irbisgreif/front-dressed.svg",
  33160. extra: 902/776,
  33161. bottom: 14/916
  33162. }
  33163. },
  33164. sideDressed: {
  33165. height: math.unit(195, "cm"),
  33166. weight: math.unit(102, "kg"),
  33167. name: "Side-dressed",
  33168. image: {
  33169. source: "./media/characters/irbisgreif/side-dressed.svg",
  33170. extra: 788/688,
  33171. bottom: 21/809
  33172. }
  33173. },
  33174. backDressed: {
  33175. height: math.unit(216, "cm"),
  33176. weight: math.unit(102, "kg"),
  33177. name: "Back-dressed",
  33178. image: {
  33179. source: "./media/characters/irbisgreif/back-dressed.svg",
  33180. extra: 901/783,
  33181. bottom: 10/911
  33182. }
  33183. },
  33184. dick: {
  33185. height: math.unit(0.49, "feet"),
  33186. name: "Dick",
  33187. image: {
  33188. source: "./media/characters/irbisgreif/dick.svg"
  33189. }
  33190. },
  33191. wingTop: {
  33192. height: math.unit(1.93 , "feet"),
  33193. name: "Wing-top",
  33194. image: {
  33195. source: "./media/characters/irbisgreif/wing-top.svg"
  33196. }
  33197. },
  33198. wingBottom: {
  33199. height: math.unit(1.93 , "feet"),
  33200. name: "Wing-bottom",
  33201. image: {
  33202. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33203. }
  33204. },
  33205. },
  33206. [
  33207. {
  33208. name: "Normal",
  33209. height: math.unit(216, "cm"),
  33210. default: true
  33211. },
  33212. ]
  33213. ))
  33214. characterMakers.push(() => makeCharacter(
  33215. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33216. {
  33217. front: {
  33218. height: math.unit(6, "feet"),
  33219. weight: math.unit(150, "lb"),
  33220. name: "Front",
  33221. image: {
  33222. source: "./media/characters/pride/front.svg",
  33223. extra: 1299/1230,
  33224. bottom: 18/1317
  33225. }
  33226. },
  33227. },
  33228. [
  33229. {
  33230. name: "Normal",
  33231. height: math.unit(7, "feet")
  33232. },
  33233. {
  33234. name: "Mini-macro",
  33235. height: math.unit(11, "feet")
  33236. },
  33237. {
  33238. name: "Macro",
  33239. height: math.unit(15, "meters"),
  33240. default: true
  33241. },
  33242. {
  33243. name: "Macro+",
  33244. height: math.unit(40, "meters")
  33245. },
  33246. ]
  33247. ))
  33248. characterMakers.push(() => makeCharacter(
  33249. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33250. {
  33251. front: {
  33252. height: math.unit(4 + 2 / 12, "feet"),
  33253. weight: math.unit(95, "lb"),
  33254. name: "Front",
  33255. image: {
  33256. source: "./media/characters/vaelophis-nyx/front.svg",
  33257. extra: 2532/2330,
  33258. bottom: 0/2532
  33259. }
  33260. },
  33261. back: {
  33262. height: math.unit(4 + 2 / 12, "feet"),
  33263. weight: math.unit(95, "lb"),
  33264. name: "Back",
  33265. image: {
  33266. source: "./media/characters/vaelophis-nyx/back.svg",
  33267. extra: 2484/2361,
  33268. bottom: 0/2484
  33269. }
  33270. },
  33271. feralSide: {
  33272. height: math.unit(2 + 1/12, "feet"),
  33273. weight: math.unit(20, "lb"),
  33274. name: "Feral (Side)",
  33275. image: {
  33276. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33277. extra: 1721/1581,
  33278. bottom: 70/1791
  33279. }
  33280. },
  33281. feralLazing: {
  33282. height: math.unit(1.08, "feet"),
  33283. weight: math.unit(20, "lb"),
  33284. name: "Feral (Lazing)",
  33285. image: {
  33286. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33287. extra: 822/822,
  33288. bottom: 248/1070
  33289. }
  33290. },
  33291. ear: {
  33292. height: math.unit(0.416, "feet"),
  33293. name: "Ear",
  33294. image: {
  33295. source: "./media/characters/vaelophis-nyx/ear.svg"
  33296. }
  33297. },
  33298. eye: {
  33299. height: math.unit(0.0748, "feet"),
  33300. name: "Eye",
  33301. image: {
  33302. source: "./media/characters/vaelophis-nyx/eye.svg"
  33303. }
  33304. },
  33305. mouth: {
  33306. height: math.unit(0.378, "feet"),
  33307. name: "Mouth",
  33308. image: {
  33309. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33310. }
  33311. },
  33312. spade: {
  33313. height: math.unit(0.55, "feet"),
  33314. name: "Spade",
  33315. image: {
  33316. source: "./media/characters/vaelophis-nyx/spade.svg"
  33317. }
  33318. },
  33319. },
  33320. [
  33321. {
  33322. name: "Normal",
  33323. height: math.unit(4 + 2/12, "feet"),
  33324. default: true
  33325. },
  33326. ]
  33327. ))
  33328. characterMakers.push(() => makeCharacter(
  33329. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33330. {
  33331. front: {
  33332. height: math.unit(7, "feet"),
  33333. weight: math.unit(231, "lb"),
  33334. name: "Front",
  33335. image: {
  33336. source: "./media/characters/flux/front.svg",
  33337. extra: 919/871,
  33338. bottom: 0/919
  33339. }
  33340. },
  33341. back: {
  33342. height: math.unit(7, "feet"),
  33343. weight: math.unit(231, "lb"),
  33344. name: "Back",
  33345. image: {
  33346. source: "./media/characters/flux/back.svg",
  33347. extra: 1040/992,
  33348. bottom: 0/1040
  33349. }
  33350. },
  33351. frontDressed: {
  33352. height: math.unit(7, "feet"),
  33353. weight: math.unit(231, "lb"),
  33354. name: "Front (Dressed)",
  33355. image: {
  33356. source: "./media/characters/flux/front-dressed.svg",
  33357. extra: 919/871,
  33358. bottom: 0/919
  33359. }
  33360. },
  33361. feralSide: {
  33362. height: math.unit(5, "feet"),
  33363. weight: math.unit(150, "lb"),
  33364. name: "Feral (Side)",
  33365. image: {
  33366. source: "./media/characters/flux/feral-side.svg",
  33367. extra: 598/528,
  33368. bottom: 28/626
  33369. }
  33370. },
  33371. head: {
  33372. height: math.unit(1.585, "feet"),
  33373. name: "Head",
  33374. image: {
  33375. source: "./media/characters/flux/head.svg"
  33376. }
  33377. },
  33378. headSide: {
  33379. height: math.unit(1.74, "feet"),
  33380. name: "Head (Side)",
  33381. image: {
  33382. source: "./media/characters/flux/head-side.svg"
  33383. }
  33384. },
  33385. headSideFire: {
  33386. height: math.unit(1.76, "feet"),
  33387. name: "Head (Side, Fire)",
  33388. image: {
  33389. source: "./media/characters/flux/head-side-fire.svg"
  33390. }
  33391. },
  33392. },
  33393. [
  33394. {
  33395. name: "Normal",
  33396. height: math.unit(7, "feet"),
  33397. default: true
  33398. },
  33399. ]
  33400. ))
  33401. characterMakers.push(() => makeCharacter(
  33402. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33403. {
  33404. front: {
  33405. height: math.unit(9, "feet"),
  33406. weight: math.unit(1012, "lb"),
  33407. name: "Front",
  33408. image: {
  33409. source: "./media/characters/ulfra-lupae/front.svg",
  33410. extra: 1083/1011,
  33411. bottom: 67/1150
  33412. }
  33413. },
  33414. },
  33415. [
  33416. {
  33417. name: "Micro",
  33418. height: math.unit(6, "inches")
  33419. },
  33420. {
  33421. name: "Socializing",
  33422. height: math.unit(6 + 5/12, "feet")
  33423. },
  33424. {
  33425. name: "Normal",
  33426. height: math.unit(9, "feet"),
  33427. default: true
  33428. },
  33429. {
  33430. name: "Macro",
  33431. height: math.unit(150, "feet")
  33432. },
  33433. ]
  33434. ))
  33435. characterMakers.push(() => makeCharacter(
  33436. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33437. {
  33438. front: {
  33439. height: math.unit(5 + 2/12, "feet"),
  33440. weight: math.unit(120, "lb"),
  33441. name: "Front",
  33442. image: {
  33443. source: "./media/characters/timber/front.svg",
  33444. extra: 2814/2705,
  33445. bottom: 181/2995
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Normal",
  33452. height: math.unit(5 + 2/12, "feet"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(9, "feet"),
  33462. name: "Front",
  33463. image: {
  33464. source: "./media/characters/nicki/front.svg",
  33465. extra: 1240/990,
  33466. bottom: 45/1285
  33467. },
  33468. form: "anthro",
  33469. default: true
  33470. },
  33471. side: {
  33472. height: math.unit(9, "feet"),
  33473. name: "Side",
  33474. image: {
  33475. source: "./media/characters/nicki/side.svg",
  33476. extra: 1047/973,
  33477. bottom: 61/1108
  33478. },
  33479. form: "anthro"
  33480. },
  33481. back: {
  33482. height: math.unit(9, "feet"),
  33483. name: "Back",
  33484. image: {
  33485. source: "./media/characters/nicki/back.svg",
  33486. extra: 1006/965,
  33487. bottom: 39/1045
  33488. },
  33489. form: "anthro"
  33490. },
  33491. taur: {
  33492. height: math.unit(15, "feet"),
  33493. name: "Taur",
  33494. image: {
  33495. source: "./media/characters/nicki/taur.svg",
  33496. extra: 1592/1347,
  33497. bottom: 0/1592
  33498. },
  33499. form: "taur",
  33500. default: true
  33501. },
  33502. },
  33503. [
  33504. {
  33505. name: "Normal",
  33506. height: math.unit(9, "feet"),
  33507. form: "anthro",
  33508. default: true
  33509. },
  33510. {
  33511. name: "Normal",
  33512. height: math.unit(15, "feet"),
  33513. form: "taur",
  33514. default: true
  33515. }
  33516. ],
  33517. {
  33518. "anthro": {
  33519. name: "Anthro",
  33520. default: true
  33521. },
  33522. "taur": {
  33523. name: "Taur"
  33524. }
  33525. }
  33526. ))
  33527. characterMakers.push(() => makeCharacter(
  33528. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33529. {
  33530. front: {
  33531. height: math.unit(7 + 10/12, "feet"),
  33532. weight: math.unit(3.5, "tons"),
  33533. name: "Front",
  33534. image: {
  33535. source: "./media/characters/lee/front.svg",
  33536. extra: 1773/1615,
  33537. bottom: 86/1859
  33538. }
  33539. },
  33540. hand: {
  33541. height: math.unit(1.78, "feet"),
  33542. name: "Hand",
  33543. image: {
  33544. source: "./media/characters/lee/hand.svg"
  33545. }
  33546. },
  33547. maw: {
  33548. height: math.unit(1.18, "feet"),
  33549. name: "Maw",
  33550. image: {
  33551. source: "./media/characters/lee/maw.svg"
  33552. }
  33553. },
  33554. },
  33555. [
  33556. {
  33557. name: "Normal",
  33558. height: math.unit(7 + 10/12, "feet"),
  33559. default: true
  33560. },
  33561. ]
  33562. ))
  33563. characterMakers.push(() => makeCharacter(
  33564. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33565. {
  33566. front: {
  33567. height: math.unit(9, "feet"),
  33568. name: "Front",
  33569. image: {
  33570. source: "./media/characters/guti/front.svg",
  33571. extra: 4551/4355,
  33572. bottom: 123/4674
  33573. }
  33574. },
  33575. tongue: {
  33576. height: math.unit(1, "feet"),
  33577. name: "Tongue",
  33578. image: {
  33579. source: "./media/characters/guti/tongue.svg"
  33580. }
  33581. },
  33582. paw: {
  33583. height: math.unit(1.18, "feet"),
  33584. name: "Paw",
  33585. image: {
  33586. source: "./media/characters/guti/paw.svg"
  33587. }
  33588. },
  33589. },
  33590. [
  33591. {
  33592. name: "Normal",
  33593. height: math.unit(9, "feet"),
  33594. default: true
  33595. },
  33596. ]
  33597. ))
  33598. characterMakers.push(() => makeCharacter(
  33599. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33600. {
  33601. side: {
  33602. height: math.unit(5, "meters"),
  33603. name: "Side",
  33604. image: {
  33605. source: "./media/characters/vesper/side.svg",
  33606. extra: 1605/1518,
  33607. bottom: 0/1605
  33608. }
  33609. },
  33610. },
  33611. [
  33612. {
  33613. name: "Small",
  33614. height: math.unit(5, "meters")
  33615. },
  33616. {
  33617. name: "Sage",
  33618. height: math.unit(100, "meters"),
  33619. default: true
  33620. },
  33621. {
  33622. name: "Fun Size",
  33623. height: math.unit(600, "meters")
  33624. },
  33625. {
  33626. name: "Goddess",
  33627. height: math.unit(20000, "km")
  33628. },
  33629. {
  33630. name: "Maximum",
  33631. height: math.unit(5, "galaxies")
  33632. },
  33633. ]
  33634. ))
  33635. characterMakers.push(() => makeCharacter(
  33636. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33637. {
  33638. front: {
  33639. height: math.unit(6 + 3/12, "feet"),
  33640. weight: math.unit(190, "lb"),
  33641. name: "Front",
  33642. image: {
  33643. source: "./media/characters/gawain/front.svg",
  33644. extra: 2222/2139,
  33645. bottom: 90/2312
  33646. }
  33647. },
  33648. back: {
  33649. height: math.unit(6 + 3/12, "feet"),
  33650. weight: math.unit(190, "lb"),
  33651. name: "Back",
  33652. image: {
  33653. source: "./media/characters/gawain/back.svg",
  33654. extra: 2199/2111,
  33655. bottom: 73/2272
  33656. }
  33657. },
  33658. },
  33659. [
  33660. {
  33661. name: "Normal",
  33662. height: math.unit(6 + 3/12, "feet"),
  33663. default: true
  33664. },
  33665. ]
  33666. ))
  33667. characterMakers.push(() => makeCharacter(
  33668. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33669. {
  33670. side: {
  33671. height: math.unit(3.5, "meters"),
  33672. weight: math.unit(16000, "lb"),
  33673. name: "Side",
  33674. image: {
  33675. source: "./media/characters/dascalti/side.svg",
  33676. extra: 392/273,
  33677. bottom: 47/439
  33678. }
  33679. },
  33680. breath: {
  33681. height: math.unit(7.4, "feet"),
  33682. name: "Breath",
  33683. image: {
  33684. source: "./media/characters/dascalti/breath.svg"
  33685. }
  33686. },
  33687. fed: {
  33688. height: math.unit(3.6, "meters"),
  33689. weight: math.unit(16000, "lb"),
  33690. name: "Fed",
  33691. image: {
  33692. source: "./media/characters/dascalti/fed.svg",
  33693. extra: 1419/820,
  33694. bottom: 95/1514
  33695. }
  33696. },
  33697. },
  33698. [
  33699. {
  33700. name: "Normal",
  33701. height: math.unit(3.5, "meters"),
  33702. default: true
  33703. },
  33704. ]
  33705. ))
  33706. characterMakers.push(() => makeCharacter(
  33707. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33708. {
  33709. front: {
  33710. height: math.unit(3 + 5/12, "feet"),
  33711. name: "Front",
  33712. image: {
  33713. source: "./media/characters/mauve/front.svg",
  33714. extra: 1126/1033,
  33715. bottom: 65/1191
  33716. }
  33717. },
  33718. side: {
  33719. height: math.unit(3 + 5/12, "feet"),
  33720. name: "Side",
  33721. image: {
  33722. source: "./media/characters/mauve/side.svg",
  33723. extra: 1089/1001,
  33724. bottom: 29/1118
  33725. }
  33726. },
  33727. back: {
  33728. height: math.unit(3 + 5/12, "feet"),
  33729. name: "Back",
  33730. image: {
  33731. source: "./media/characters/mauve/back.svg",
  33732. extra: 1173/1053,
  33733. bottom: 109/1282
  33734. }
  33735. },
  33736. },
  33737. [
  33738. {
  33739. name: "Normal",
  33740. height: math.unit(3 + 5/12, "feet"),
  33741. default: true
  33742. },
  33743. ]
  33744. ))
  33745. characterMakers.push(() => makeCharacter(
  33746. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33747. {
  33748. front: {
  33749. height: math.unit(6 + 3/12, "feet"),
  33750. weight: math.unit(430, "lb"),
  33751. name: "Front",
  33752. image: {
  33753. source: "./media/characters/carlos/front.svg",
  33754. extra: 1964/1913,
  33755. bottom: 70/2034
  33756. }
  33757. },
  33758. },
  33759. [
  33760. {
  33761. name: "Normal",
  33762. height: math.unit(6 + 3/12, "feet"),
  33763. default: true
  33764. },
  33765. ]
  33766. ))
  33767. characterMakers.push(() => makeCharacter(
  33768. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33769. {
  33770. back: {
  33771. height: math.unit(5 + 10/12, "feet"),
  33772. weight: math.unit(200, "lb"),
  33773. name: "Back",
  33774. image: {
  33775. source: "./media/characters/jax/back.svg",
  33776. extra: 764/739,
  33777. bottom: 25/789
  33778. }
  33779. },
  33780. },
  33781. [
  33782. {
  33783. name: "Normal",
  33784. height: math.unit(5 + 10/12, "feet"),
  33785. default: true
  33786. },
  33787. ]
  33788. ))
  33789. characterMakers.push(() => makeCharacter(
  33790. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33791. {
  33792. front: {
  33793. height: math.unit(8, "feet"),
  33794. weight: math.unit(250, "lb"),
  33795. name: "Front",
  33796. image: {
  33797. source: "./media/characters/eikthynir/front.svg",
  33798. extra: 1332/1166,
  33799. bottom: 82/1414
  33800. }
  33801. },
  33802. back: {
  33803. height: math.unit(8, "feet"),
  33804. weight: math.unit(250, "lb"),
  33805. name: "Back",
  33806. image: {
  33807. source: "./media/characters/eikthynir/back.svg",
  33808. extra: 1342/1190,
  33809. bottom: 19/1361
  33810. }
  33811. },
  33812. dick: {
  33813. height: math.unit(2.35, "feet"),
  33814. name: "Dick",
  33815. image: {
  33816. source: "./media/characters/eikthynir/dick.svg"
  33817. }
  33818. },
  33819. },
  33820. [
  33821. {
  33822. name: "Normal",
  33823. height: math.unit(8, "feet"),
  33824. default: true
  33825. },
  33826. ]
  33827. ))
  33828. characterMakers.push(() => makeCharacter(
  33829. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33830. {
  33831. front: {
  33832. height: math.unit(99, "meters"),
  33833. weight: math.unit(13000, "tons"),
  33834. name: "Front",
  33835. image: {
  33836. source: "./media/characters/zlmos/front.svg",
  33837. extra: 2202/1992,
  33838. bottom: 315/2517
  33839. }
  33840. },
  33841. },
  33842. [
  33843. {
  33844. name: "Macro",
  33845. height: math.unit(99, "meters"),
  33846. default: true
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33852. {
  33853. front: {
  33854. height: math.unit(6 + 5/12, "feet"),
  33855. name: "Front",
  33856. image: {
  33857. source: "./media/characters/purri/front.svg",
  33858. extra: 1698/1610,
  33859. bottom: 32/1730
  33860. }
  33861. },
  33862. frontAlt: {
  33863. height: math.unit(6 + 5/12, "feet"),
  33864. name: "Front (Alt)",
  33865. image: {
  33866. source: "./media/characters/purri/front-alt.svg",
  33867. extra: 450/420,
  33868. bottom: 26/476
  33869. }
  33870. },
  33871. boots: {
  33872. height: math.unit(5.5, "feet"),
  33873. name: "Boots",
  33874. image: {
  33875. source: "./media/characters/purri/boots.svg",
  33876. extra: 905/853,
  33877. bottom: 18/923
  33878. }
  33879. },
  33880. lying: {
  33881. height: math.unit(2, "feet"),
  33882. name: "Lying",
  33883. image: {
  33884. source: "./media/characters/purri/lying.svg",
  33885. extra: 940/843,
  33886. bottom: 146/1086
  33887. }
  33888. },
  33889. devious: {
  33890. height: math.unit(1.77, "feet"),
  33891. name: "Devious",
  33892. image: {
  33893. source: "./media/characters/purri/devious.svg",
  33894. extra: 1440/1155,
  33895. bottom: 147/1587
  33896. }
  33897. },
  33898. bean: {
  33899. height: math.unit(1.94, "feet"),
  33900. name: "Bean",
  33901. image: {
  33902. source: "./media/characters/purri/bean.svg"
  33903. }
  33904. },
  33905. },
  33906. [
  33907. {
  33908. name: "Micro",
  33909. height: math.unit(1, "mm")
  33910. },
  33911. {
  33912. name: "Normal",
  33913. height: math.unit(6 + 5/12, "feet"),
  33914. default: true
  33915. },
  33916. {
  33917. name: "Macro :3c",
  33918. height: math.unit(2, "miles")
  33919. },
  33920. ]
  33921. ))
  33922. characterMakers.push(() => makeCharacter(
  33923. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33924. {
  33925. front: {
  33926. height: math.unit(6 + 2/12, "feet"),
  33927. weight: math.unit(250, "lb"),
  33928. name: "Front",
  33929. image: {
  33930. source: "./media/characters/moonlight/front.svg",
  33931. extra: 1044/908,
  33932. bottom: 56/1100
  33933. }
  33934. },
  33935. feral: {
  33936. height: math.unit(3 + 1/12, "feet"),
  33937. weight: math.unit(50, "kg"),
  33938. name: "Feral",
  33939. image: {
  33940. source: "./media/characters/moonlight/feral.svg",
  33941. extra: 3705/2791,
  33942. bottom: 145/3850
  33943. }
  33944. },
  33945. paw: {
  33946. height: math.unit(1, "feet"),
  33947. name: "Paw",
  33948. image: {
  33949. source: "./media/characters/moonlight/paw.svg"
  33950. }
  33951. },
  33952. paws: {
  33953. height: math.unit(0.98, "feet"),
  33954. name: "Paws",
  33955. image: {
  33956. source: "./media/characters/moonlight/paws.svg",
  33957. extra: 939/939,
  33958. bottom: 50/989
  33959. }
  33960. },
  33961. mouth: {
  33962. height: math.unit(0.48, "feet"),
  33963. name: "Mouth",
  33964. image: {
  33965. source: "./media/characters/moonlight/mouth.svg"
  33966. }
  33967. },
  33968. dick: {
  33969. height: math.unit(1.46, "feet"),
  33970. name: "Dick",
  33971. image: {
  33972. source: "./media/characters/moonlight/dick.svg"
  33973. }
  33974. },
  33975. },
  33976. [
  33977. {
  33978. name: "Normal",
  33979. height: math.unit(6 + 2/12, "feet"),
  33980. default: true
  33981. },
  33982. {
  33983. name: "Macro",
  33984. height: math.unit(300, "feet")
  33985. },
  33986. {
  33987. name: "Macro+",
  33988. height: math.unit(1, "mile")
  33989. },
  33990. {
  33991. name: "Mt. Moon",
  33992. height: math.unit(5, "miles")
  33993. },
  33994. {
  33995. name: "Megamacro",
  33996. height: math.unit(15, "miles")
  33997. },
  33998. ]
  33999. ))
  34000. characterMakers.push(() => makeCharacter(
  34001. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34002. {
  34003. back: {
  34004. height: math.unit(6, "feet"),
  34005. weight: math.unit(150, "lb"),
  34006. name: "Back",
  34007. image: {
  34008. source: "./media/characters/sylen/back.svg",
  34009. extra: 1335/1273,
  34010. bottom: 107/1442
  34011. }
  34012. },
  34013. },
  34014. [
  34015. {
  34016. name: "Normal",
  34017. height: math.unit(5 + 5/12, "feet")
  34018. },
  34019. {
  34020. name: "Megamacro",
  34021. height: math.unit(3, "miles"),
  34022. default: true
  34023. },
  34024. ]
  34025. ))
  34026. characterMakers.push(() => makeCharacter(
  34027. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34028. {
  34029. front: {
  34030. height: math.unit(6, "feet"),
  34031. weight: math.unit(190, "lb"),
  34032. name: "Front",
  34033. image: {
  34034. source: "./media/characters/huttser/front.svg",
  34035. extra: 1152/1058,
  34036. bottom: 23/1175
  34037. }
  34038. },
  34039. side: {
  34040. height: math.unit(6, "feet"),
  34041. weight: math.unit(190, "lb"),
  34042. name: "Side",
  34043. image: {
  34044. source: "./media/characters/huttser/side.svg",
  34045. extra: 1174/1065,
  34046. bottom: 18/1192
  34047. }
  34048. },
  34049. back: {
  34050. height: math.unit(6, "feet"),
  34051. weight: math.unit(190, "lb"),
  34052. name: "Back",
  34053. image: {
  34054. source: "./media/characters/huttser/back.svg",
  34055. extra: 1158/1056,
  34056. bottom: 12/1170
  34057. }
  34058. },
  34059. },
  34060. [
  34061. ]
  34062. ))
  34063. characterMakers.push(() => makeCharacter(
  34064. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34065. {
  34066. side: {
  34067. height: math.unit(12 + 9/12, "feet"),
  34068. weight: math.unit(15000, "lb"),
  34069. name: "Side",
  34070. image: {
  34071. source: "./media/characters/faan/side.svg",
  34072. extra: 2747/2697,
  34073. bottom: 0/2747
  34074. }
  34075. },
  34076. front: {
  34077. height: math.unit(12 + 9/12, "feet"),
  34078. weight: math.unit(15000, "lb"),
  34079. name: "Front",
  34080. image: {
  34081. source: "./media/characters/faan/front.svg",
  34082. extra: 607/571,
  34083. bottom: 24/631
  34084. }
  34085. },
  34086. head: {
  34087. height: math.unit(2.85, "feet"),
  34088. name: "Head",
  34089. image: {
  34090. source: "./media/characters/faan/head.svg"
  34091. }
  34092. },
  34093. headAlt: {
  34094. height: math.unit(3.13, "feet"),
  34095. name: "Head-alt",
  34096. image: {
  34097. source: "./media/characters/faan/head-alt.svg"
  34098. }
  34099. },
  34100. },
  34101. [
  34102. {
  34103. name: "Normal",
  34104. height: math.unit(12 + 9/12, "feet"),
  34105. default: true
  34106. },
  34107. ]
  34108. ))
  34109. characterMakers.push(() => makeCharacter(
  34110. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34111. {
  34112. front: {
  34113. height: math.unit(6, "feet"),
  34114. weight: math.unit(300, "lb"),
  34115. name: "Front",
  34116. image: {
  34117. source: "./media/characters/tanio/front.svg",
  34118. extra: 711/673,
  34119. bottom: 25/736
  34120. }
  34121. },
  34122. },
  34123. [
  34124. {
  34125. name: "Normal",
  34126. height: math.unit(6, "feet"),
  34127. default: true
  34128. },
  34129. ]
  34130. ))
  34131. characterMakers.push(() => makeCharacter(
  34132. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34133. {
  34134. front: {
  34135. height: math.unit(3, "inches"),
  34136. name: "Front",
  34137. image: {
  34138. source: "./media/characters/noboru/front.svg",
  34139. extra: 1039/932,
  34140. bottom: 18/1057
  34141. }
  34142. },
  34143. },
  34144. [
  34145. {
  34146. name: "Micro",
  34147. height: math.unit(3, "inches"),
  34148. default: true
  34149. },
  34150. ]
  34151. ))
  34152. characterMakers.push(() => makeCharacter(
  34153. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34154. {
  34155. front: {
  34156. height: math.unit(1.85, "meters"),
  34157. weight: math.unit(80, "kg"),
  34158. name: "Front",
  34159. image: {
  34160. source: "./media/characters/daniel-barrett/front.svg",
  34161. extra: 355/337,
  34162. bottom: 9/364
  34163. }
  34164. },
  34165. },
  34166. [
  34167. {
  34168. name: "Pico",
  34169. height: math.unit(0.0433, "mm")
  34170. },
  34171. {
  34172. name: "Nano",
  34173. height: math.unit(1.5, "mm")
  34174. },
  34175. {
  34176. name: "Micro",
  34177. height: math.unit(5.3, "cm"),
  34178. default: true
  34179. },
  34180. {
  34181. name: "Normal",
  34182. height: math.unit(1.85, "meters")
  34183. },
  34184. {
  34185. name: "Macro",
  34186. height: math.unit(64.7, "meters")
  34187. },
  34188. {
  34189. name: "Megamacro",
  34190. height: math.unit(2.26, "km")
  34191. },
  34192. {
  34193. name: "Gigamacro",
  34194. height: math.unit(79, "km")
  34195. },
  34196. {
  34197. name: "Teramacro",
  34198. height: math.unit(2765, "km")
  34199. },
  34200. {
  34201. name: "Petamacro",
  34202. height: math.unit(96678, "km")
  34203. },
  34204. ]
  34205. ))
  34206. characterMakers.push(() => makeCharacter(
  34207. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34208. {
  34209. front: {
  34210. height: math.unit(30, "meters"),
  34211. weight: math.unit(400, "tons"),
  34212. name: "Front",
  34213. image: {
  34214. source: "./media/characters/zeel/front.svg",
  34215. extra: 2599/2599,
  34216. bottom: 226/2825
  34217. }
  34218. },
  34219. },
  34220. [
  34221. {
  34222. name: "Macro",
  34223. height: math.unit(30, "meters"),
  34224. default: true
  34225. },
  34226. ]
  34227. ))
  34228. characterMakers.push(() => makeCharacter(
  34229. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34230. {
  34231. front: {
  34232. height: math.unit(6 + 7/12, "feet"),
  34233. weight: math.unit(210, "lb"),
  34234. name: "Front",
  34235. image: {
  34236. source: "./media/characters/tarn/front.svg",
  34237. extra: 3517/3220,
  34238. bottom: 91/3608
  34239. }
  34240. },
  34241. back: {
  34242. height: math.unit(6 + 7/12, "feet"),
  34243. weight: math.unit(210, "lb"),
  34244. name: "Back",
  34245. image: {
  34246. source: "./media/characters/tarn/back.svg",
  34247. extra: 3566/3241,
  34248. bottom: 34/3600
  34249. }
  34250. },
  34251. dick: {
  34252. height: math.unit(1.65, "feet"),
  34253. name: "Dick",
  34254. image: {
  34255. source: "./media/characters/tarn/dick.svg"
  34256. }
  34257. },
  34258. paw: {
  34259. height: math.unit(1.80, "feet"),
  34260. name: "Paw",
  34261. image: {
  34262. source: "./media/characters/tarn/paw.svg"
  34263. }
  34264. },
  34265. tongue: {
  34266. height: math.unit(0.97, "feet"),
  34267. name: "Tongue",
  34268. image: {
  34269. source: "./media/characters/tarn/tongue.svg"
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Micro",
  34276. height: math.unit(4, "inches")
  34277. },
  34278. {
  34279. name: "Normal",
  34280. height: math.unit(6 + 7/12, "feet"),
  34281. default: true
  34282. },
  34283. {
  34284. name: "Macro",
  34285. height: math.unit(300, "feet")
  34286. },
  34287. ]
  34288. ))
  34289. characterMakers.push(() => makeCharacter(
  34290. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34291. {
  34292. front: {
  34293. height: math.unit(5 + 7/12, "feet"),
  34294. weight: math.unit(80, "kg"),
  34295. name: "Front",
  34296. image: {
  34297. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34298. extra: 3023/2865,
  34299. bottom: 33/3056
  34300. }
  34301. },
  34302. back: {
  34303. height: math.unit(5 + 7/12, "feet"),
  34304. weight: math.unit(80, "kg"),
  34305. name: "Back",
  34306. image: {
  34307. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34308. extra: 3020/2886,
  34309. bottom: 30/3050
  34310. }
  34311. },
  34312. dick: {
  34313. height: math.unit(0.98, "feet"),
  34314. name: "Dick",
  34315. image: {
  34316. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34317. }
  34318. },
  34319. anatomy: {
  34320. height: math.unit(2.86, "feet"),
  34321. name: "Anatomy",
  34322. image: {
  34323. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34324. }
  34325. },
  34326. },
  34327. [
  34328. {
  34329. name: "Really Small",
  34330. height: math.unit(2, "inches")
  34331. },
  34332. {
  34333. name: "Micro",
  34334. height: math.unit(5.583, "inches")
  34335. },
  34336. {
  34337. name: "Normal",
  34338. height: math.unit(5 + 7/12, "feet"),
  34339. default: true
  34340. },
  34341. {
  34342. name: "Macro",
  34343. height: math.unit(67, "feet")
  34344. },
  34345. {
  34346. name: "Megamacro",
  34347. height: math.unit(134, "feet")
  34348. },
  34349. ]
  34350. ))
  34351. characterMakers.push(() => makeCharacter(
  34352. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34353. {
  34354. front: {
  34355. height: math.unit(9, "feet"),
  34356. weight: math.unit(120, "lb"),
  34357. name: "Front",
  34358. image: {
  34359. source: "./media/characters/sally/front.svg",
  34360. extra: 1506/1349,
  34361. bottom: 66/1572
  34362. }
  34363. },
  34364. },
  34365. [
  34366. {
  34367. name: "Normal",
  34368. height: math.unit(9, "feet"),
  34369. default: true
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34375. {
  34376. front: {
  34377. height: math.unit(8, "feet"),
  34378. weight: math.unit(900, "lb"),
  34379. name: "Front",
  34380. image: {
  34381. source: "./media/characters/owen/front.svg",
  34382. extra: 1761/1657,
  34383. bottom: 74/1835
  34384. }
  34385. },
  34386. side: {
  34387. height: math.unit(8, "feet"),
  34388. weight: math.unit(900, "lb"),
  34389. name: "Side",
  34390. image: {
  34391. source: "./media/characters/owen/side.svg",
  34392. extra: 1797/1734,
  34393. bottom: 30/1827
  34394. }
  34395. },
  34396. back: {
  34397. height: math.unit(8, "feet"),
  34398. weight: math.unit(900, "lb"),
  34399. name: "Back",
  34400. image: {
  34401. source: "./media/characters/owen/back.svg",
  34402. extra: 1796/1706,
  34403. bottom: 59/1855
  34404. }
  34405. },
  34406. maw: {
  34407. height: math.unit(1.76, "feet"),
  34408. name: "Maw",
  34409. image: {
  34410. source: "./media/characters/owen/maw.svg"
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(8, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34424. {
  34425. front: {
  34426. height: math.unit(4, "feet"),
  34427. weight: math.unit(400, "lb"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/ryth/front.svg",
  34431. extra: 1920/1748,
  34432. bottom: 42/1962
  34433. }
  34434. },
  34435. back: {
  34436. height: math.unit(4, "feet"),
  34437. weight: math.unit(400, "lb"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/ryth/back.svg",
  34441. extra: 1897/1690,
  34442. bottom: 89/1986
  34443. }
  34444. },
  34445. mouth: {
  34446. height: math.unit(1.39, "feet"),
  34447. name: "Mouth",
  34448. image: {
  34449. source: "./media/characters/ryth/mouth.svg"
  34450. }
  34451. },
  34452. tailmaw: {
  34453. height: math.unit(1.23, "feet"),
  34454. name: "Tailmaw",
  34455. image: {
  34456. source: "./media/characters/ryth/tailmaw.svg"
  34457. }
  34458. },
  34459. goia: {
  34460. height: math.unit(4, "meters"),
  34461. weight: math.unit(10800, "lb"),
  34462. name: "Goia",
  34463. image: {
  34464. source: "./media/characters/ryth/goia.svg",
  34465. extra: 745/640,
  34466. bottom: 107/852
  34467. }
  34468. },
  34469. goiaFront: {
  34470. height: math.unit(4, "meters"),
  34471. weight: math.unit(10800, "lb"),
  34472. name: "Goia (Front)",
  34473. image: {
  34474. source: "./media/characters/ryth/goia-front.svg",
  34475. extra: 750/586,
  34476. bottom: 114/864
  34477. }
  34478. },
  34479. goiaMaw: {
  34480. height: math.unit(5.55, "feet"),
  34481. name: "Goia Maw",
  34482. image: {
  34483. source: "./media/characters/ryth/goia-maw.svg"
  34484. }
  34485. },
  34486. goiaForepaw: {
  34487. height: math.unit(3.5, "feet"),
  34488. name: "Goia Forepaw",
  34489. image: {
  34490. source: "./media/characters/ryth/goia-forepaw.svg"
  34491. }
  34492. },
  34493. goiaHindpaw: {
  34494. height: math.unit(5.55, "feet"),
  34495. name: "Goia Hindpaw",
  34496. image: {
  34497. source: "./media/characters/ryth/goia-hindpaw.svg"
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Normal",
  34504. height: math.unit(4, "feet"),
  34505. default: true
  34506. },
  34507. ]
  34508. ))
  34509. characterMakers.push(() => makeCharacter(
  34510. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34511. {
  34512. front: {
  34513. height: math.unit(7, "feet"),
  34514. weight: math.unit(180, "lb"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/necrolance/front.svg",
  34518. extra: 1062/947,
  34519. bottom: 41/1103
  34520. }
  34521. },
  34522. back: {
  34523. height: math.unit(7, "feet"),
  34524. weight: math.unit(180, "lb"),
  34525. name: "Back",
  34526. image: {
  34527. source: "./media/characters/necrolance/back.svg",
  34528. extra: 1045/984,
  34529. bottom: 14/1059
  34530. }
  34531. },
  34532. wing: {
  34533. height: math.unit(2.67, "feet"),
  34534. name: "Wing",
  34535. image: {
  34536. source: "./media/characters/necrolance/wing.svg"
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(7, "feet"),
  34544. default: true
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34550. {
  34551. front: {
  34552. height: math.unit(76, "meters"),
  34553. weight: math.unit(30000, "tons"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/tyler/front.svg",
  34557. extra: 1640/1640,
  34558. bottom: 114/1754
  34559. }
  34560. },
  34561. },
  34562. [
  34563. {
  34564. name: "Macro",
  34565. height: math.unit(76, "meters"),
  34566. default: true
  34567. },
  34568. ]
  34569. ))
  34570. characterMakers.push(() => makeCharacter(
  34571. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34572. {
  34573. front: {
  34574. height: math.unit(4 + 11/12, "feet"),
  34575. weight: math.unit(132, "lb"),
  34576. name: "Front",
  34577. image: {
  34578. source: "./media/characters/icey/front.svg",
  34579. extra: 2750/2550,
  34580. bottom: 33/2783
  34581. }
  34582. },
  34583. back: {
  34584. height: math.unit(4 + 11/12, "feet"),
  34585. weight: math.unit(132, "lb"),
  34586. name: "Back",
  34587. image: {
  34588. source: "./media/characters/icey/back.svg",
  34589. extra: 2624/2481,
  34590. bottom: 35/2659
  34591. }
  34592. },
  34593. },
  34594. [
  34595. {
  34596. name: "Normal",
  34597. height: math.unit(4 + 11/12, "feet"),
  34598. default: true
  34599. },
  34600. ]
  34601. ))
  34602. characterMakers.push(() => makeCharacter(
  34603. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34604. {
  34605. front: {
  34606. height: math.unit(100, "feet"),
  34607. weight: math.unit(0, "lb"),
  34608. name: "Front",
  34609. image: {
  34610. source: "./media/characters/smile/front.svg",
  34611. extra: 2983/2912,
  34612. bottom: 162/3145
  34613. }
  34614. },
  34615. back: {
  34616. height: math.unit(100, "feet"),
  34617. weight: math.unit(0, "lb"),
  34618. name: "Back",
  34619. image: {
  34620. source: "./media/characters/smile/back.svg",
  34621. extra: 3143/3031,
  34622. bottom: 91/3234
  34623. }
  34624. },
  34625. head: {
  34626. height: math.unit(26.3, "feet"),
  34627. weight: math.unit(0, "lb"),
  34628. name: "Head",
  34629. image: {
  34630. source: "./media/characters/smile/head.svg"
  34631. }
  34632. },
  34633. collar: {
  34634. height: math.unit(5.3, "feet"),
  34635. weight: math.unit(0, "lb"),
  34636. name: "Collar",
  34637. image: {
  34638. source: "./media/characters/smile/collar.svg"
  34639. }
  34640. },
  34641. },
  34642. [
  34643. {
  34644. name: "Macro",
  34645. height: math.unit(100, "feet"),
  34646. default: true
  34647. },
  34648. ]
  34649. ))
  34650. characterMakers.push(() => makeCharacter(
  34651. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34652. {
  34653. dragon: {
  34654. height: math.unit(26, "feet"),
  34655. weight: math.unit(36, "tons"),
  34656. name: "Dragon",
  34657. image: {
  34658. source: "./media/characters/arimphae/dragon.svg",
  34659. extra: 1574/983,
  34660. bottom: 357/1931
  34661. }
  34662. },
  34663. drake: {
  34664. height: math.unit(9, "feet"),
  34665. weight: math.unit(1.5, "tons"),
  34666. name: "Drake",
  34667. image: {
  34668. source: "./media/characters/arimphae/drake.svg",
  34669. extra: 1120/925,
  34670. bottom: 435/1555
  34671. }
  34672. },
  34673. },
  34674. [
  34675. {
  34676. name: "Small",
  34677. height: math.unit(26*5/9, "feet")
  34678. },
  34679. {
  34680. name: "Normal",
  34681. height: math.unit(26, "feet"),
  34682. default: true
  34683. },
  34684. ]
  34685. ))
  34686. characterMakers.push(() => makeCharacter(
  34687. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34688. {
  34689. front: {
  34690. height: math.unit(8 + 9/12, "feet"),
  34691. name: "Front",
  34692. image: {
  34693. source: "./media/characters/xander/front.svg",
  34694. extra: 1237/974,
  34695. bottom: 94/1331
  34696. }
  34697. },
  34698. },
  34699. [
  34700. {
  34701. name: "Normal",
  34702. height: math.unit(8 + 9/12, "feet"),
  34703. default: true
  34704. },
  34705. {
  34706. name: "Gaze Grabber",
  34707. height: math.unit(13 + 8/12, "feet")
  34708. },
  34709. {
  34710. name: "Jaw Dropper",
  34711. height: math.unit(27, "feet")
  34712. },
  34713. {
  34714. name: "Show Stopper",
  34715. height: math.unit(136, "feet")
  34716. },
  34717. {
  34718. name: "Superstar",
  34719. height: math.unit(1.9e6, "miles")
  34720. },
  34721. ]
  34722. ))
  34723. characterMakers.push(() => makeCharacter(
  34724. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34725. {
  34726. side: {
  34727. height: math.unit(2100, "feet"),
  34728. name: "Side",
  34729. image: {
  34730. source: "./media/characters/osiris/side.svg",
  34731. extra: 1105/939,
  34732. bottom: 167/1272
  34733. }
  34734. },
  34735. },
  34736. [
  34737. {
  34738. name: "Macro",
  34739. height: math.unit(2100, "feet"),
  34740. default: true
  34741. },
  34742. ]
  34743. ))
  34744. characterMakers.push(() => makeCharacter(
  34745. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34746. {
  34747. front: {
  34748. height: math.unit(6 + 8/12, "feet"),
  34749. weight: math.unit(225, "lb"),
  34750. name: "Front",
  34751. image: {
  34752. source: "./media/characters/rhys-londe/front.svg",
  34753. extra: 2258/2141,
  34754. bottom: 188/2446
  34755. }
  34756. },
  34757. back: {
  34758. height: math.unit(6 + 8/12, "feet"),
  34759. weight: math.unit(225, "lb"),
  34760. name: "Back",
  34761. image: {
  34762. source: "./media/characters/rhys-londe/back.svg",
  34763. extra: 2237/2137,
  34764. bottom: 63/2300
  34765. }
  34766. },
  34767. frontNsfw: {
  34768. height: math.unit(6 + 8/12, "feet"),
  34769. weight: math.unit(225, "lb"),
  34770. name: "Front (NSFW)",
  34771. image: {
  34772. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34773. extra: 2258/2141,
  34774. bottom: 188/2446
  34775. }
  34776. },
  34777. backNsfw: {
  34778. height: math.unit(6 + 8/12, "feet"),
  34779. weight: math.unit(225, "lb"),
  34780. name: "Back (NSFW)",
  34781. image: {
  34782. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34783. extra: 2237/2137,
  34784. bottom: 63/2300
  34785. }
  34786. },
  34787. dick: {
  34788. height: math.unit(30, "inches"),
  34789. name: "Dick",
  34790. image: {
  34791. source: "./media/characters/rhys-londe/dick.svg"
  34792. }
  34793. },
  34794. maw: {
  34795. height: math.unit(1.6, "feet"),
  34796. name: "Maw",
  34797. image: {
  34798. source: "./media/characters/rhys-londe/maw.svg"
  34799. }
  34800. },
  34801. },
  34802. [
  34803. {
  34804. name: "Normal",
  34805. height: math.unit(6 + 8/12, "feet"),
  34806. default: true
  34807. },
  34808. ]
  34809. ))
  34810. characterMakers.push(() => makeCharacter(
  34811. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34812. {
  34813. front: {
  34814. height: math.unit(3 + 10/12, "feet"),
  34815. weight: math.unit(90, "lb"),
  34816. name: "Front",
  34817. image: {
  34818. source: "./media/characters/taivas-ensim/front.svg",
  34819. extra: 1327/1216,
  34820. bottom: 96/1423
  34821. }
  34822. },
  34823. back: {
  34824. height: math.unit(3 + 10/12, "feet"),
  34825. weight: math.unit(90, "lb"),
  34826. name: "Back",
  34827. image: {
  34828. source: "./media/characters/taivas-ensim/back.svg",
  34829. extra: 1355/1247,
  34830. bottom: 11/1366
  34831. }
  34832. },
  34833. frontNsfw: {
  34834. height: math.unit(3 + 10/12, "feet"),
  34835. weight: math.unit(90, "lb"),
  34836. name: "Front (NSFW)",
  34837. image: {
  34838. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34839. extra: 1327/1216,
  34840. bottom: 96/1423
  34841. }
  34842. },
  34843. backNsfw: {
  34844. height: math.unit(3 + 10/12, "feet"),
  34845. weight: math.unit(90, "lb"),
  34846. name: "Back (NSFW)",
  34847. image: {
  34848. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34849. extra: 1355/1247,
  34850. bottom: 11/1366
  34851. }
  34852. },
  34853. },
  34854. [
  34855. {
  34856. name: "Normal",
  34857. height: math.unit(3 + 10/12, "feet"),
  34858. default: true
  34859. },
  34860. ]
  34861. ))
  34862. characterMakers.push(() => makeCharacter(
  34863. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34864. {
  34865. front: {
  34866. height: math.unit(9 + 6/12, "feet"),
  34867. weight: math.unit(940, "lb"),
  34868. name: "Front",
  34869. image: {
  34870. source: "./media/characters/byliss/front.svg",
  34871. extra: 1327/1290,
  34872. bottom: 82/1409
  34873. }
  34874. },
  34875. back: {
  34876. height: math.unit(9 + 6/12, "feet"),
  34877. weight: math.unit(940, "lb"),
  34878. name: "Back",
  34879. image: {
  34880. source: "./media/characters/byliss/back.svg",
  34881. extra: 1376/1349,
  34882. bottom: 9/1385
  34883. }
  34884. },
  34885. frontNsfw: {
  34886. height: math.unit(9 + 6/12, "feet"),
  34887. weight: math.unit(940, "lb"),
  34888. name: "Front (NSFW)",
  34889. image: {
  34890. source: "./media/characters/byliss/front-nsfw.svg",
  34891. extra: 1327/1290,
  34892. bottom: 82/1409
  34893. }
  34894. },
  34895. backNsfw: {
  34896. height: math.unit(9 + 6/12, "feet"),
  34897. weight: math.unit(940, "lb"),
  34898. name: "Back (NSFW)",
  34899. image: {
  34900. source: "./media/characters/byliss/back-nsfw.svg",
  34901. extra: 1376/1349,
  34902. bottom: 9/1385
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(9 + 6/12, "feet"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34916. {
  34917. front: {
  34918. height: math.unit(5 + 2/12, "feet"),
  34919. weight: math.unit(200, "lb"),
  34920. name: "Front",
  34921. image: {
  34922. source: "./media/characters/noraly/front.svg",
  34923. extra: 4985/4773,
  34924. bottom: 150/5135
  34925. }
  34926. },
  34927. full: {
  34928. height: math.unit(5 + 2/12, "feet"),
  34929. weight: math.unit(164, "lb"),
  34930. name: "Full",
  34931. image: {
  34932. source: "./media/characters/noraly/full.svg",
  34933. extra: 1114/1059,
  34934. bottom: 35/1149
  34935. }
  34936. },
  34937. fuller: {
  34938. height: math.unit(5 + 2/12, "feet"),
  34939. weight: math.unit(230, "lb"),
  34940. name: "Fuller",
  34941. image: {
  34942. source: "./media/characters/noraly/fuller.svg",
  34943. extra: 1114/1059,
  34944. bottom: 35/1149
  34945. }
  34946. },
  34947. fullest: {
  34948. height: math.unit(5 + 2/12, "feet"),
  34949. weight: math.unit(300, "lb"),
  34950. name: "Fullest",
  34951. image: {
  34952. source: "./media/characters/noraly/fullest.svg",
  34953. extra: 1114/1059,
  34954. bottom: 35/1149
  34955. }
  34956. },
  34957. },
  34958. [
  34959. {
  34960. name: "Normal",
  34961. height: math.unit(5 + 2/12, "feet"),
  34962. default: true
  34963. },
  34964. ]
  34965. ))
  34966. characterMakers.push(() => makeCharacter(
  34967. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34968. {
  34969. front: {
  34970. height: math.unit(5 + 2/12, "feet"),
  34971. weight: math.unit(210, "lb"),
  34972. name: "Front",
  34973. image: {
  34974. source: "./media/characters/pera/front.svg",
  34975. extra: 1560/1531,
  34976. bottom: 165/1725
  34977. }
  34978. },
  34979. back: {
  34980. height: math.unit(5 + 2/12, "feet"),
  34981. weight: math.unit(210, "lb"),
  34982. name: "Back",
  34983. image: {
  34984. source: "./media/characters/pera/back.svg",
  34985. extra: 1523/1493,
  34986. bottom: 152/1675
  34987. }
  34988. },
  34989. dick: {
  34990. height: math.unit(2.4, "feet"),
  34991. name: "Dick",
  34992. image: {
  34993. source: "./media/characters/pera/dick.svg"
  34994. }
  34995. },
  34996. },
  34997. [
  34998. {
  34999. name: "Normal",
  35000. height: math.unit(5 + 2/12, "feet"),
  35001. default: true
  35002. },
  35003. ]
  35004. ))
  35005. characterMakers.push(() => makeCharacter(
  35006. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35007. {
  35008. front: {
  35009. height: math.unit(12, "feet"),
  35010. weight: math.unit(3200, "lb"),
  35011. name: "Front",
  35012. image: {
  35013. source: "./media/characters/julian/front.svg",
  35014. extra: 2962/2701,
  35015. bottom: 184/3146
  35016. }
  35017. },
  35018. maw: {
  35019. height: math.unit(5.35, "feet"),
  35020. name: "Maw",
  35021. image: {
  35022. source: "./media/characters/julian/maw.svg"
  35023. }
  35024. },
  35025. paw: {
  35026. height: math.unit(3.07, "feet"),
  35027. name: "Paw",
  35028. image: {
  35029. source: "./media/characters/julian/paw.svg"
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Default",
  35036. height: math.unit(12, "feet"),
  35037. default: true
  35038. },
  35039. {
  35040. name: "Big",
  35041. height: math.unit(50, "feet")
  35042. },
  35043. {
  35044. name: "Really Big",
  35045. height: math.unit(1, "mile")
  35046. },
  35047. {
  35048. name: "Extremely Big",
  35049. height: math.unit(100, "miles")
  35050. },
  35051. {
  35052. name: "Planet Hugger",
  35053. height: math.unit(200, "megameters")
  35054. },
  35055. {
  35056. name: "Unreasonably Big",
  35057. height: math.unit(1e300, "meters")
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35063. {
  35064. solgooleo: {
  35065. height: math.unit(4, "meters"),
  35066. weight: math.unit(6000*1.5, "kg"),
  35067. volume: math.unit(6000, "liters"),
  35068. name: "Solgooleo",
  35069. image: {
  35070. source: "./media/characters/pi/solgooleo.svg",
  35071. extra: 388/331,
  35072. bottom: 29/417
  35073. }
  35074. },
  35075. },
  35076. [
  35077. {
  35078. name: "Normal",
  35079. height: math.unit(4, "meters"),
  35080. default: true
  35081. },
  35082. ]
  35083. ))
  35084. characterMakers.push(() => makeCharacter(
  35085. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35086. {
  35087. front: {
  35088. height: math.unit(8, "feet"),
  35089. weight: math.unit(4, "tons"),
  35090. name: "Front",
  35091. image: {
  35092. source: "./media/characters/shaun/front.svg",
  35093. extra: 503/495,
  35094. bottom: 20/523
  35095. }
  35096. },
  35097. back: {
  35098. height: math.unit(8, "feet"),
  35099. weight: math.unit(4, "tons"),
  35100. name: "Back",
  35101. image: {
  35102. source: "./media/characters/shaun/back.svg",
  35103. extra: 487/480,
  35104. bottom: 20/507
  35105. }
  35106. },
  35107. },
  35108. [
  35109. {
  35110. name: "Lorg",
  35111. height: math.unit(8, "feet"),
  35112. default: true
  35113. },
  35114. ]
  35115. ))
  35116. characterMakers.push(() => makeCharacter(
  35117. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35118. {
  35119. frontAnthro: {
  35120. height: math.unit(7, "feet"),
  35121. name: "Front",
  35122. image: {
  35123. source: "./media/characters/sini/front-anthro.svg",
  35124. extra: 726/678,
  35125. bottom: 35/761
  35126. },
  35127. form: "anthro",
  35128. default: true
  35129. },
  35130. backAnthro: {
  35131. height: math.unit(7, "feet"),
  35132. name: "Back",
  35133. image: {
  35134. source: "./media/characters/sini/back-anthro.svg",
  35135. extra: 743/701,
  35136. bottom: 12/755
  35137. },
  35138. form: "anthro",
  35139. },
  35140. frontAnthroNsfw: {
  35141. height: math.unit(7, "feet"),
  35142. name: "Front (NSFW)",
  35143. image: {
  35144. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35145. extra: 726/678,
  35146. bottom: 35/761
  35147. },
  35148. form: "anthro"
  35149. },
  35150. backAnthroNsfw: {
  35151. height: math.unit(7, "feet"),
  35152. name: "Back (NSFW)",
  35153. image: {
  35154. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35155. extra: 743/701,
  35156. bottom: 12/755
  35157. },
  35158. form: "anthro",
  35159. },
  35160. mawAnthro: {
  35161. height: math.unit(2.14, "feet"),
  35162. name: "Maw",
  35163. image: {
  35164. source: "./media/characters/sini/maw-anthro.svg"
  35165. },
  35166. form: "anthro"
  35167. },
  35168. dick: {
  35169. height: math.unit(1.45, "feet"),
  35170. name: "Dick",
  35171. image: {
  35172. source: "./media/characters/sini/dick-anthro.svg"
  35173. },
  35174. form: "anthro"
  35175. },
  35176. feral: {
  35177. height: math.unit(16, "feet"),
  35178. name: "Feral",
  35179. image: {
  35180. source: "./media/characters/sini/feral.svg",
  35181. extra: 814/605,
  35182. bottom: 11/825
  35183. },
  35184. form: "feral",
  35185. default: true
  35186. },
  35187. feralNsfw: {
  35188. height: math.unit(16, "feet"),
  35189. name: "Feral (NSFW)",
  35190. image: {
  35191. source: "./media/characters/sini/feral-nsfw.svg",
  35192. extra: 814/605,
  35193. bottom: 11/825
  35194. },
  35195. form: "feral"
  35196. },
  35197. mawFeral: {
  35198. height: math.unit(5.66, "feet"),
  35199. name: "Maw",
  35200. image: {
  35201. source: "./media/characters/sini/maw-feral.svg"
  35202. },
  35203. form: "feral",
  35204. },
  35205. pawFeral: {
  35206. height: math.unit(5.17, "feet"),
  35207. name: "Paw",
  35208. image: {
  35209. source: "./media/characters/sini/paw-feral.svg"
  35210. },
  35211. form: "feral",
  35212. },
  35213. rumpFeral: {
  35214. height: math.unit(13.11, "feet"),
  35215. name: "Rump",
  35216. image: {
  35217. source: "./media/characters/sini/rump-feral.svg"
  35218. },
  35219. form: "feral",
  35220. },
  35221. dickFeral: {
  35222. height: math.unit(1, "feet"),
  35223. name: "Dick",
  35224. image: {
  35225. source: "./media/characters/sini/dick-feral.svg"
  35226. },
  35227. form: "feral",
  35228. },
  35229. eyeFeral: {
  35230. height: math.unit(1.23, "feet"),
  35231. name: "Eye",
  35232. image: {
  35233. source: "./media/characters/sini/eye-feral.svg"
  35234. },
  35235. form: "feral",
  35236. },
  35237. },
  35238. [
  35239. {
  35240. name: "Normal",
  35241. height: math.unit(7, "feet"),
  35242. default: true,
  35243. form: "anthro"
  35244. },
  35245. {
  35246. name: "Normal",
  35247. height: math.unit(16, "feet"),
  35248. default: true,
  35249. form: "feral"
  35250. },
  35251. ],
  35252. {
  35253. "anthro": {
  35254. name: "Anthro",
  35255. default: true
  35256. },
  35257. "feral": {
  35258. name: "Feral",
  35259. }
  35260. }
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35264. {
  35265. side: {
  35266. height: math.unit(47.2, "meters"),
  35267. weight: math.unit(10000, "tons"),
  35268. name: "Side",
  35269. image: {
  35270. source: "./media/characters/raylldo/side.svg",
  35271. extra: 2363/642,
  35272. bottom: 221/2584
  35273. }
  35274. },
  35275. top: {
  35276. height: math.unit(240, "meters"),
  35277. weight: math.unit(10000, "tons"),
  35278. name: "Top",
  35279. image: {
  35280. source: "./media/characters/raylldo/top.svg"
  35281. }
  35282. },
  35283. bottom: {
  35284. height: math.unit(240, "meters"),
  35285. weight: math.unit(10000, "tons"),
  35286. name: "Bottom",
  35287. image: {
  35288. source: "./media/characters/raylldo/bottom.svg"
  35289. }
  35290. },
  35291. head: {
  35292. height: math.unit(38.6, "meters"),
  35293. name: "Head",
  35294. image: {
  35295. source: "./media/characters/raylldo/head.svg",
  35296. extra: 1335/1112,
  35297. bottom: 0/1335
  35298. }
  35299. },
  35300. maw: {
  35301. height: math.unit(16.37, "meters"),
  35302. name: "Maw",
  35303. image: {
  35304. source: "./media/characters/raylldo/maw.svg",
  35305. extra: 883/660,
  35306. bottom: 0/883
  35307. },
  35308. extraAttributes: {
  35309. preyCapacity: {
  35310. name: "Capacity",
  35311. power: 3,
  35312. type: "volume",
  35313. base: math.unit(1000, "people")
  35314. },
  35315. tongueSize: {
  35316. name: "Tongue Size",
  35317. power: 2,
  35318. type: "area",
  35319. base: math.unit(21, "m^2")
  35320. }
  35321. }
  35322. },
  35323. forepaw: {
  35324. height: math.unit(18, "meters"),
  35325. name: "Forepaw",
  35326. image: {
  35327. source: "./media/characters/raylldo/forepaw.svg"
  35328. }
  35329. },
  35330. hindpaw: {
  35331. height: math.unit(23, "meters"),
  35332. name: "Hindpaw",
  35333. image: {
  35334. source: "./media/characters/raylldo/hindpaw.svg"
  35335. }
  35336. },
  35337. genitals: {
  35338. height: math.unit(42, "meters"),
  35339. name: "Genitals",
  35340. image: {
  35341. source: "./media/characters/raylldo/genitals.svg"
  35342. }
  35343. },
  35344. },
  35345. [
  35346. {
  35347. name: "Normal",
  35348. height: math.unit(47.2, "meters"),
  35349. default: true
  35350. },
  35351. ]
  35352. ))
  35353. characterMakers.push(() => makeCharacter(
  35354. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35355. {
  35356. anthroFront: {
  35357. height: math.unit(9, "feet"),
  35358. weight: math.unit(600, "lb"),
  35359. name: "Anthro (Front)",
  35360. image: {
  35361. source: "./media/characters/glint/anthro-front.svg",
  35362. extra: 1097/1018,
  35363. bottom: 28/1125
  35364. }
  35365. },
  35366. anthroBack: {
  35367. height: math.unit(9, "feet"),
  35368. weight: math.unit(600, "lb"),
  35369. name: "Anthro (Back)",
  35370. image: {
  35371. source: "./media/characters/glint/anthro-back.svg",
  35372. extra: 1154/997,
  35373. bottom: 36/1190
  35374. }
  35375. },
  35376. feral: {
  35377. height: math.unit(11, "feet"),
  35378. weight: math.unit(50000, "lb"),
  35379. name: "Feral",
  35380. image: {
  35381. source: "./media/characters/glint/feral.svg",
  35382. extra: 3035/1585,
  35383. bottom: 1169/4204
  35384. }
  35385. },
  35386. dickAnthro: {
  35387. height: math.unit(0.7, "meters"),
  35388. name: "Dick (Anthro)",
  35389. image: {
  35390. source: "./media/characters/glint/dick-anthro.svg"
  35391. }
  35392. },
  35393. dickFeral: {
  35394. height: math.unit(2.65, "meters"),
  35395. name: "Dick (Feral)",
  35396. image: {
  35397. source: "./media/characters/glint/dick-feral.svg"
  35398. }
  35399. },
  35400. slitHidden: {
  35401. height: math.unit(5.85, "meters"),
  35402. name: "Slit (Hidden)",
  35403. image: {
  35404. source: "./media/characters/glint/slit-hidden.svg"
  35405. }
  35406. },
  35407. slitErect: {
  35408. height: math.unit(5.85, "meters"),
  35409. name: "Slit (Erect)",
  35410. image: {
  35411. source: "./media/characters/glint/slit-erect.svg"
  35412. }
  35413. },
  35414. mawAnthro: {
  35415. height: math.unit(0.63, "meters"),
  35416. name: "Maw (Anthro)",
  35417. image: {
  35418. source: "./media/characters/glint/maw.svg"
  35419. }
  35420. },
  35421. mawFeral: {
  35422. height: math.unit(2.89, "meters"),
  35423. name: "Maw (Feral)",
  35424. image: {
  35425. source: "./media/characters/glint/maw.svg"
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(9, "feet"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35439. {
  35440. side: {
  35441. height: math.unit(15, "feet"),
  35442. weight: math.unit(5000, "kg"),
  35443. name: "Side",
  35444. image: {
  35445. source: "./media/characters/kairne/side.svg",
  35446. extra: 979/811,
  35447. bottom: 13/992
  35448. }
  35449. },
  35450. front: {
  35451. height: math.unit(15, "feet"),
  35452. weight: math.unit(5000, "kg"),
  35453. name: "Front",
  35454. image: {
  35455. source: "./media/characters/kairne/front.svg",
  35456. extra: 908/814,
  35457. bottom: 26/934
  35458. }
  35459. },
  35460. sideNsfw: {
  35461. height: math.unit(15, "feet"),
  35462. weight: math.unit(5000, "kg"),
  35463. name: "Side (NSFW)",
  35464. image: {
  35465. source: "./media/characters/kairne/side-nsfw.svg",
  35466. extra: 979/811,
  35467. bottom: 13/992
  35468. }
  35469. },
  35470. frontNsfw: {
  35471. height: math.unit(15, "feet"),
  35472. weight: math.unit(5000, "kg"),
  35473. name: "Front (NSFW)",
  35474. image: {
  35475. source: "./media/characters/kairne/front-nsfw.svg",
  35476. extra: 908/814,
  35477. bottom: 26/934
  35478. }
  35479. },
  35480. dickCaged: {
  35481. height: math.unit(0.65, "meters"),
  35482. name: "Dick-caged",
  35483. image: {
  35484. source: "./media/characters/kairne/dick-caged.svg"
  35485. }
  35486. },
  35487. dick: {
  35488. height: math.unit(0.79, "meters"),
  35489. name: "Dick",
  35490. image: {
  35491. source: "./media/characters/kairne/dick.svg"
  35492. }
  35493. },
  35494. genitals: {
  35495. height: math.unit(1.29, "meters"),
  35496. name: "Genitals",
  35497. image: {
  35498. source: "./media/characters/kairne/genitals.svg"
  35499. }
  35500. },
  35501. maw: {
  35502. height: math.unit(1.73, "meters"),
  35503. name: "Maw",
  35504. image: {
  35505. source: "./media/characters/kairne/maw.svg"
  35506. }
  35507. },
  35508. },
  35509. [
  35510. {
  35511. name: "Normal",
  35512. height: math.unit(15, "feet"),
  35513. default: true
  35514. },
  35515. ]
  35516. ))
  35517. characterMakers.push(() => makeCharacter(
  35518. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35519. {
  35520. front: {
  35521. height: math.unit(5 + 8/12, "feet"),
  35522. weight: math.unit(139, "lb"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/biscuit-jackal/front.svg",
  35526. extra: 2106/1961,
  35527. bottom: 58/2164
  35528. }
  35529. },
  35530. back: {
  35531. height: math.unit(5 + 8/12, "feet"),
  35532. weight: math.unit(139, "lb"),
  35533. name: "Back",
  35534. image: {
  35535. source: "./media/characters/biscuit-jackal/back.svg",
  35536. extra: 2132/1976,
  35537. bottom: 57/2189
  35538. }
  35539. },
  35540. werejackal: {
  35541. height: math.unit(6 + 3/12, "feet"),
  35542. weight: math.unit(188, "lb"),
  35543. name: "Werejackal",
  35544. image: {
  35545. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35546. extra: 2373/2178,
  35547. bottom: 53/2426
  35548. }
  35549. },
  35550. },
  35551. [
  35552. {
  35553. name: "Normal",
  35554. height: math.unit(5 + 8/12, "feet"),
  35555. default: true
  35556. },
  35557. ]
  35558. ))
  35559. characterMakers.push(() => makeCharacter(
  35560. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35561. {
  35562. front: {
  35563. height: math.unit(140, "cm"),
  35564. weight: math.unit(45, "kg"),
  35565. name: "Front",
  35566. image: {
  35567. source: "./media/characters/tayra-white/front.svg",
  35568. extra: 2229/2192,
  35569. bottom: 75/2304
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(140, "cm"),
  35577. default: true
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35583. {
  35584. front: {
  35585. height: math.unit(4 + 5/12, "feet"),
  35586. name: "Front",
  35587. image: {
  35588. source: "./media/characters/scoop/front.svg",
  35589. extra: 1257/1136,
  35590. bottom: 69/1326
  35591. }
  35592. },
  35593. back: {
  35594. height: math.unit(4 + 5/12, "feet"),
  35595. name: "Back",
  35596. image: {
  35597. source: "./media/characters/scoop/back.svg",
  35598. extra: 1321/1152,
  35599. bottom: 32/1353
  35600. }
  35601. },
  35602. maw: {
  35603. height: math.unit(0.68, "feet"),
  35604. name: "Maw",
  35605. image: {
  35606. source: "./media/characters/scoop/maw.svg"
  35607. }
  35608. },
  35609. },
  35610. [
  35611. {
  35612. name: "Really Small",
  35613. height: math.unit(1, "mm")
  35614. },
  35615. {
  35616. name: "Micro",
  35617. height: math.unit(1, "inch")
  35618. },
  35619. {
  35620. name: "Normal",
  35621. height: math.unit(4 + 5/12, "feet"),
  35622. default: true
  35623. },
  35624. {
  35625. name: "Macro",
  35626. height: math.unit(200, "feet")
  35627. },
  35628. {
  35629. name: "Megamacro",
  35630. height: math.unit(3240, "feet")
  35631. },
  35632. {
  35633. name: "Teramacro",
  35634. height: math.unit(2500, "miles")
  35635. },
  35636. ]
  35637. ))
  35638. characterMakers.push(() => makeCharacter(
  35639. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35640. {
  35641. front: {
  35642. height: math.unit(15 + 7/12, "feet"),
  35643. weight: math.unit(1150, "tons"),
  35644. name: "Front",
  35645. image: {
  35646. source: "./media/characters/saphinara/front.svg",
  35647. extra: 1837/1643,
  35648. bottom: 84/1921
  35649. },
  35650. form: "normal",
  35651. default: true
  35652. },
  35653. side: {
  35654. height: math.unit(15 + 7/12, "feet"),
  35655. weight: math.unit(1150, "tons"),
  35656. name: "Side",
  35657. image: {
  35658. source: "./media/characters/saphinara/side.svg",
  35659. extra: 605/547,
  35660. bottom: 6/611
  35661. },
  35662. form: "normal"
  35663. },
  35664. back: {
  35665. height: math.unit(15 + 7/12, "feet"),
  35666. weight: math.unit(1150, "tons"),
  35667. name: "Back",
  35668. image: {
  35669. source: "./media/characters/saphinara/back.svg",
  35670. extra: 591/531,
  35671. bottom: 13/604
  35672. },
  35673. form: "normal"
  35674. },
  35675. frontTail: {
  35676. height: math.unit(15 + 7/12, "feet"),
  35677. weight: math.unit(1150, "tons"),
  35678. name: "Front (Full Tail)",
  35679. image: {
  35680. source: "./media/characters/saphinara/front-tail.svg",
  35681. extra: 2256/1630,
  35682. bottom: 261/2517
  35683. },
  35684. form: "normal"
  35685. },
  35686. insides: {
  35687. height: math.unit(11.92, "feet"),
  35688. name: "Insides",
  35689. image: {
  35690. source: "./media/characters/saphinara/insides.svg"
  35691. },
  35692. form: "normal"
  35693. },
  35694. head: {
  35695. height: math.unit(4.17, "feet"),
  35696. name: "Head",
  35697. image: {
  35698. source: "./media/characters/saphinara/head.svg"
  35699. },
  35700. form: "normal"
  35701. },
  35702. tongue: {
  35703. height: math.unit(4.60, "feet"),
  35704. name: "Tongue",
  35705. image: {
  35706. source: "./media/characters/saphinara/tongue.svg"
  35707. },
  35708. form: "normal"
  35709. },
  35710. headEnraged: {
  35711. height: math.unit(5.55, "feet"),
  35712. name: "Head (Enraged)",
  35713. image: {
  35714. source: "./media/characters/saphinara/head-enraged.svg"
  35715. },
  35716. form: "normal"
  35717. },
  35718. wings: {
  35719. height: math.unit(11.95, "feet"),
  35720. name: "Wings",
  35721. image: {
  35722. source: "./media/characters/saphinara/wings.svg"
  35723. },
  35724. form: "normal"
  35725. },
  35726. feathers: {
  35727. height: math.unit(8.92, "feet"),
  35728. name: "Feathers",
  35729. image: {
  35730. source: "./media/characters/saphinara/feathers.svg"
  35731. },
  35732. form: "normal"
  35733. },
  35734. shackles: {
  35735. height: math.unit(2, "feet"),
  35736. name: "Shackles",
  35737. image: {
  35738. source: "./media/characters/saphinara/shackles.svg"
  35739. },
  35740. form: "normal"
  35741. },
  35742. eyes: {
  35743. height: math.unit(1.331, "feet"),
  35744. name: "Eyes",
  35745. image: {
  35746. source: "./media/characters/saphinara/eyes.svg"
  35747. },
  35748. form: "normal"
  35749. },
  35750. eyesEnraged: {
  35751. height: math.unit(1.331, "feet"),
  35752. name: "Eyes (Enraged)",
  35753. image: {
  35754. source: "./media/characters/saphinara/eyes-enraged.svg"
  35755. },
  35756. form: "normal"
  35757. },
  35758. trueFormSide: {
  35759. height: math.unit(200, "feet"),
  35760. weight: math.unit(1e7, "tons"),
  35761. name: "Side",
  35762. image: {
  35763. source: "./media/characters/saphinara/true-form-side.svg",
  35764. extra: 1399/770,
  35765. bottom: 97/1496
  35766. },
  35767. form: "true-form",
  35768. default: true
  35769. },
  35770. trueFormMaw: {
  35771. height: math.unit(71.5, "feet"),
  35772. name: "Maw",
  35773. image: {
  35774. source: "./media/characters/saphinara/true-form-maw.svg",
  35775. extra: 2302/1453,
  35776. bottom: 0/2302
  35777. },
  35778. form: "true-form"
  35779. },
  35780. meowberusSide: {
  35781. height: math.unit(75, "feet"),
  35782. weight: math.unit(180000, "kg"),
  35783. preyCapacity: math.unit(50000, "people"),
  35784. name: "Side",
  35785. image: {
  35786. source: "./media/characters/saphinara/meowberus-side.svg",
  35787. extra: 1400/711,
  35788. bottom: 126/1526
  35789. },
  35790. form: "meowberus",
  35791. extraAttributes: {
  35792. "pawArea": {
  35793. name: "Paw Size",
  35794. power: 2,
  35795. type: "area",
  35796. base: math.unit(35, "m^2")
  35797. }
  35798. }
  35799. },
  35800. },
  35801. [
  35802. {
  35803. name: "Normal",
  35804. height: math.unit(15 + 7/12, "feet"),
  35805. default: true,
  35806. form: "normal"
  35807. },
  35808. {
  35809. name: "Angry",
  35810. height: math.unit(30 + 6/12, "feet"),
  35811. form: "normal"
  35812. },
  35813. {
  35814. name: "Enraged",
  35815. height: math.unit(102 + 1/12, "feet"),
  35816. form: "normal"
  35817. },
  35818. {
  35819. name: "True",
  35820. height: math.unit(200, "feet"),
  35821. default: true,
  35822. form: "true-form"
  35823. },
  35824. {
  35825. name: "Normal",
  35826. height: math.unit(75, "feet"),
  35827. default: true,
  35828. form: "meowberus"
  35829. },
  35830. ],
  35831. {
  35832. "normal": {
  35833. name: "Normal",
  35834. default: true
  35835. },
  35836. "true-form": {
  35837. name: "True Form"
  35838. },
  35839. "meowberus": {
  35840. name: "Meowberus",
  35841. },
  35842. }
  35843. ))
  35844. characterMakers.push(() => makeCharacter(
  35845. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35846. {
  35847. front: {
  35848. height: math.unit(6 + 8/12, "feet"),
  35849. weight: math.unit(300, "lb"),
  35850. name: "Front",
  35851. image: {
  35852. source: "./media/characters/jrain/front.svg",
  35853. extra: 3039/2865,
  35854. bottom: 399/3438
  35855. }
  35856. },
  35857. back: {
  35858. height: math.unit(6 + 8/12, "feet"),
  35859. weight: math.unit(300, "lb"),
  35860. name: "Back",
  35861. image: {
  35862. source: "./media/characters/jrain/back.svg",
  35863. extra: 3089/2938,
  35864. bottom: 172/3261
  35865. }
  35866. },
  35867. head: {
  35868. height: math.unit(2.14, "feet"),
  35869. name: "Head",
  35870. image: {
  35871. source: "./media/characters/jrain/head.svg"
  35872. }
  35873. },
  35874. maw: {
  35875. height: math.unit(1.77, "feet"),
  35876. name: "Maw",
  35877. image: {
  35878. source: "./media/characters/jrain/maw.svg"
  35879. }
  35880. },
  35881. leftHand: {
  35882. height: math.unit(1.1, "feet"),
  35883. name: "Left Hand",
  35884. image: {
  35885. source: "./media/characters/jrain/left-hand.svg"
  35886. }
  35887. },
  35888. rightHand: {
  35889. height: math.unit(1.1, "feet"),
  35890. name: "Right Hand",
  35891. image: {
  35892. source: "./media/characters/jrain/right-hand.svg"
  35893. }
  35894. },
  35895. eye: {
  35896. height: math.unit(0.35, "feet"),
  35897. name: "Eye",
  35898. image: {
  35899. source: "./media/characters/jrain/eye.svg"
  35900. }
  35901. },
  35902. },
  35903. [
  35904. {
  35905. name: "Normal",
  35906. height: math.unit(6 + 8/12, "feet"),
  35907. default: true
  35908. },
  35909. {
  35910. name: "Casually Large",
  35911. height: math.unit(25, "feet")
  35912. },
  35913. {
  35914. name: "Giant",
  35915. height: math.unit(100, "feet")
  35916. },
  35917. {
  35918. name: "Kaiju",
  35919. height: math.unit(300, "feet")
  35920. },
  35921. ]
  35922. ))
  35923. characterMakers.push(() => makeCharacter(
  35924. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35925. {
  35926. dragon: {
  35927. height: math.unit(5, "meters"),
  35928. name: "Dragon",
  35929. image: {
  35930. source: "./media/characters/sabrina/dragon.svg",
  35931. extra: 3670 / 2365,
  35932. bottom: 333 / 4003
  35933. }
  35934. },
  35935. gryphon: {
  35936. height: math.unit(3, "meters"),
  35937. name: "Gryphon",
  35938. image: {
  35939. source: "./media/characters/sabrina/gryphon.svg",
  35940. extra: 1576 / 945,
  35941. bottom: 71 / 1647
  35942. }
  35943. },
  35944. snake: {
  35945. height: math.unit(12, "meters"),
  35946. name: "Snake",
  35947. image: {
  35948. source: "./media/characters/sabrina/snake.svg",
  35949. extra: 1758 / 1320,
  35950. bottom: 186 / 1944
  35951. }
  35952. },
  35953. collar: {
  35954. height: math.unit(1.86, "meters"),
  35955. name: "Collar",
  35956. image: {
  35957. source: "./media/characters/sabrina/collar.svg"
  35958. }
  35959. },
  35960. eye: {
  35961. height: math.unit(0.53, "meters"),
  35962. name: "Eye",
  35963. image: {
  35964. source: "./media/characters/sabrina/eye.svg"
  35965. }
  35966. },
  35967. foot: {
  35968. height: math.unit(1.86, "meters"),
  35969. name: "Foot",
  35970. image: {
  35971. source: "./media/characters/sabrina/foot.svg"
  35972. }
  35973. },
  35974. hand: {
  35975. height: math.unit(1.32, "meters"),
  35976. name: "Hand",
  35977. image: {
  35978. source: "./media/characters/sabrina/hand.svg"
  35979. }
  35980. },
  35981. head: {
  35982. height: math.unit(2.44, "meters"),
  35983. name: "Head",
  35984. image: {
  35985. source: "./media/characters/sabrina/head.svg"
  35986. }
  35987. },
  35988. headAngry: {
  35989. height: math.unit(2.44, "meters"),
  35990. name: "Head (Angry))",
  35991. image: {
  35992. source: "./media/characters/sabrina/head-angry.svg"
  35993. }
  35994. },
  35995. maw: {
  35996. height: math.unit(1.65, "meters"),
  35997. name: "Maw",
  35998. image: {
  35999. source: "./media/characters/sabrina/maw.svg"
  36000. }
  36001. },
  36002. spikes: {
  36003. height: math.unit(1.69, "meters"),
  36004. name: "Spikes",
  36005. image: {
  36006. source: "./media/characters/sabrina/spikes.svg"
  36007. }
  36008. },
  36009. stomach: {
  36010. height: math.unit(1.15, "meters"),
  36011. name: "Stomach",
  36012. image: {
  36013. source: "./media/characters/sabrina/stomach.svg"
  36014. }
  36015. },
  36016. tongue: {
  36017. height: math.unit(1.27, "meters"),
  36018. name: "Tongue",
  36019. image: {
  36020. source: "./media/characters/sabrina/tongue.svg"
  36021. }
  36022. },
  36023. wingDorsal: {
  36024. height: math.unit(4.85, "meters"),
  36025. name: "Wing (Dorsal)",
  36026. image: {
  36027. source: "./media/characters/sabrina/wing-dorsal.svg"
  36028. }
  36029. },
  36030. wingVentral: {
  36031. height: math.unit(4.85, "meters"),
  36032. name: "Wing (Ventral)",
  36033. image: {
  36034. source: "./media/characters/sabrina/wing-ventral.svg"
  36035. }
  36036. },
  36037. },
  36038. [
  36039. {
  36040. name: "Normal",
  36041. height: math.unit(5, "meters"),
  36042. default: true
  36043. },
  36044. ]
  36045. ))
  36046. characterMakers.push(() => makeCharacter(
  36047. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36048. {
  36049. frontMaid: {
  36050. height: math.unit(5 + 5/12, "feet"),
  36051. weight: math.unit(130, "lb"),
  36052. name: "Front (Maid)",
  36053. image: {
  36054. source: "./media/characters/midnight-tales/front-maid.svg",
  36055. extra: 489/454,
  36056. bottom: 61/550
  36057. }
  36058. },
  36059. frontFormal: {
  36060. height: math.unit(5 + 5/12, "feet"),
  36061. weight: math.unit(130, "lb"),
  36062. name: "Front (Formal)",
  36063. image: {
  36064. source: "./media/characters/midnight-tales/front-formal.svg",
  36065. extra: 489/454,
  36066. bottom: 61/550
  36067. }
  36068. },
  36069. back: {
  36070. height: math.unit(5 + 5/12, "feet"),
  36071. weight: math.unit(130, "lb"),
  36072. name: "Back",
  36073. image: {
  36074. source: "./media/characters/midnight-tales/back.svg",
  36075. extra: 498/456,
  36076. bottom: 33/531
  36077. }
  36078. },
  36079. frontBeast: {
  36080. height: math.unit(40, "feet"),
  36081. weight: math.unit(64000, "lb"),
  36082. name: "Front (Beast)",
  36083. image: {
  36084. source: "./media/characters/midnight-tales/front-beast.svg",
  36085. extra: 927/860,
  36086. bottom: 53/980
  36087. }
  36088. },
  36089. backBeast: {
  36090. height: math.unit(40, "feet"),
  36091. weight: math.unit(64000, "lb"),
  36092. name: "Back (Beast)",
  36093. image: {
  36094. source: "./media/characters/midnight-tales/back-beast.svg",
  36095. extra: 929/855,
  36096. bottom: 16/945
  36097. }
  36098. },
  36099. footBeast: {
  36100. height: math.unit(6.7, "feet"),
  36101. name: "Foot (Beast)",
  36102. image: {
  36103. source: "./media/characters/midnight-tales/foot-beast.svg"
  36104. }
  36105. },
  36106. headBeast: {
  36107. height: math.unit(8, "feet"),
  36108. name: "Head (Beast)",
  36109. image: {
  36110. source: "./media/characters/midnight-tales/head-beast.svg"
  36111. }
  36112. },
  36113. },
  36114. [
  36115. {
  36116. name: "Normal",
  36117. height: math.unit(5 + 5 / 12, "feet"),
  36118. default: true
  36119. },
  36120. {
  36121. name: "Macro",
  36122. height: math.unit(25, "feet")
  36123. },
  36124. ]
  36125. ))
  36126. characterMakers.push(() => makeCharacter(
  36127. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36128. {
  36129. front: {
  36130. height: math.unit(5 + 10/12, "feet"),
  36131. name: "Front",
  36132. image: {
  36133. source: "./media/characters/argon/front.svg",
  36134. extra: 2009/1935,
  36135. bottom: 118/2127
  36136. }
  36137. },
  36138. back: {
  36139. height: math.unit(5 + 10/12, "feet"),
  36140. name: "Back",
  36141. image: {
  36142. source: "./media/characters/argon/back.svg",
  36143. extra: 2047/1992,
  36144. bottom: 20/2067
  36145. }
  36146. },
  36147. frontDressed: {
  36148. height: math.unit(5 + 10/12, "feet"),
  36149. name: "Front (Dressed)",
  36150. image: {
  36151. source: "./media/characters/argon/front-dressed.svg",
  36152. extra: 2009/1935,
  36153. bottom: 118/2127
  36154. }
  36155. },
  36156. },
  36157. [
  36158. {
  36159. name: "Normal",
  36160. height: math.unit(5 + 10/12, "feet"),
  36161. default: true
  36162. },
  36163. ]
  36164. ))
  36165. characterMakers.push(() => makeCharacter(
  36166. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36167. {
  36168. front: {
  36169. height: math.unit(8 + 6/12, "feet"),
  36170. weight: math.unit(1150, "lb"),
  36171. name: "Front",
  36172. image: {
  36173. source: "./media/characters/kichi/front.svg",
  36174. extra: 1267/1164,
  36175. bottom: 61/1328
  36176. }
  36177. },
  36178. back: {
  36179. height: math.unit(8 + 6/12, "feet"),
  36180. weight: math.unit(1150, "lb"),
  36181. name: "Back",
  36182. image: {
  36183. source: "./media/characters/kichi/back.svg",
  36184. extra: 1273/1166,
  36185. bottom: 33/1306
  36186. }
  36187. },
  36188. },
  36189. [
  36190. {
  36191. name: "Normal",
  36192. height: math.unit(8 + 6/12, "feet"),
  36193. default: true
  36194. },
  36195. ]
  36196. ))
  36197. characterMakers.push(() => makeCharacter(
  36198. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36199. {
  36200. front: {
  36201. height: math.unit(6, "feet"),
  36202. weight: math.unit(210, "lb"),
  36203. name: "Front",
  36204. image: {
  36205. source: "./media/characters/manetel-greyscale/front.svg",
  36206. extra: 350/312,
  36207. bottom: 8/358
  36208. }
  36209. },
  36210. },
  36211. [
  36212. {
  36213. name: "Micro",
  36214. height: math.unit(2, "inches")
  36215. },
  36216. {
  36217. name: "Normal",
  36218. height: math.unit(6, "feet"),
  36219. default: true
  36220. },
  36221. {
  36222. name: "Minimacro",
  36223. height: math.unit(17, "feet")
  36224. },
  36225. {
  36226. name: "Macro",
  36227. height: math.unit(117, "feet")
  36228. },
  36229. ]
  36230. ))
  36231. characterMakers.push(() => makeCharacter(
  36232. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36233. {
  36234. side: {
  36235. height: math.unit(5 + 1/12, "feet"),
  36236. weight: math.unit(418, "lb"),
  36237. name: "Side",
  36238. image: {
  36239. source: "./media/characters/softpurr/side.svg",
  36240. extra: 1993/1945,
  36241. bottom: 134/2127
  36242. }
  36243. },
  36244. front: {
  36245. height: math.unit(5 + 1/12, "feet"),
  36246. weight: math.unit(418, "lb"),
  36247. name: "Front",
  36248. image: {
  36249. source: "./media/characters/softpurr/front.svg",
  36250. extra: 1950/1856,
  36251. bottom: 174/2124
  36252. }
  36253. },
  36254. paw: {
  36255. height: math.unit(1, "feet"),
  36256. name: "Paw",
  36257. image: {
  36258. source: "./media/characters/softpurr/paw.svg"
  36259. }
  36260. },
  36261. },
  36262. [
  36263. {
  36264. name: "Normal",
  36265. height: math.unit(5 + 1/12, "feet"),
  36266. default: true
  36267. },
  36268. ]
  36269. ))
  36270. characterMakers.push(() => makeCharacter(
  36271. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36272. {
  36273. front: {
  36274. height: math.unit(260, "meters"),
  36275. name: "Front",
  36276. image: {
  36277. source: "./media/characters/anahita/front.svg",
  36278. extra: 665/635,
  36279. bottom: 89/754
  36280. }
  36281. },
  36282. },
  36283. [
  36284. {
  36285. name: "Macro",
  36286. height: math.unit(260, "meters"),
  36287. default: true
  36288. },
  36289. ]
  36290. ))
  36291. characterMakers.push(() => makeCharacter(
  36292. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36293. {
  36294. front: {
  36295. height: math.unit(4 + 10/12, "feet"),
  36296. weight: math.unit(160, "lb"),
  36297. name: "Front",
  36298. image: {
  36299. source: "./media/characters/chip-mouse/front.svg",
  36300. extra: 3528/3408,
  36301. bottom: 0/3528
  36302. }
  36303. },
  36304. frontNsfw: {
  36305. height: math.unit(4 + 10/12, "feet"),
  36306. weight: math.unit(160, "lb"),
  36307. name: "Front (NSFW)",
  36308. image: {
  36309. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36310. extra: 3528/3408,
  36311. bottom: 0/3528
  36312. }
  36313. },
  36314. },
  36315. [
  36316. {
  36317. name: "Normal",
  36318. height: math.unit(4 + 10/12, "feet"),
  36319. default: true
  36320. },
  36321. ]
  36322. ))
  36323. characterMakers.push(() => makeCharacter(
  36324. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36325. {
  36326. side: {
  36327. height: math.unit(10, "feet"),
  36328. weight: math.unit(14000, "lb"),
  36329. name: "Side",
  36330. image: {
  36331. source: "./media/characters/kremm/side.svg",
  36332. extra: 1390/1053,
  36333. bottom: 90/1480
  36334. }
  36335. },
  36336. gut: {
  36337. height: math.unit(5.8, "feet"),
  36338. name: "Gut",
  36339. image: {
  36340. source: "./media/characters/kremm/gut.svg"
  36341. }
  36342. },
  36343. ass: {
  36344. height: math.unit(6.1, "feet"),
  36345. name: "Ass",
  36346. image: {
  36347. source: "./media/characters/kremm/ass.svg"
  36348. }
  36349. },
  36350. jaws: {
  36351. height: math.unit(2.2, "feet"),
  36352. name: "Jaws",
  36353. image: {
  36354. source: "./media/characters/kremm/jaws.svg"
  36355. }
  36356. },
  36357. dick: {
  36358. height: math.unit(4.26, "feet"),
  36359. name: "Dick",
  36360. image: {
  36361. source: "./media/characters/kremm/dick.svg"
  36362. }
  36363. },
  36364. },
  36365. [
  36366. {
  36367. name: "Normal",
  36368. height: math.unit(10, "feet"),
  36369. default: true
  36370. },
  36371. ]
  36372. ))
  36373. characterMakers.push(() => makeCharacter(
  36374. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36375. {
  36376. front: {
  36377. height: math.unit(30, "stories"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/kai/front.svg",
  36381. extra: 1892/1718,
  36382. bottom: 162/2054
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Macro",
  36389. height: math.unit(30, "stories"),
  36390. default: true
  36391. },
  36392. ]
  36393. ))
  36394. characterMakers.push(() => makeCharacter(
  36395. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36396. {
  36397. front: {
  36398. height: math.unit(6 + 4/12, "feet"),
  36399. weight: math.unit(145, "lb"),
  36400. name: "Front",
  36401. image: {
  36402. source: "./media/characters/sykes/front.svg",
  36403. extra: 1321 / 1187,
  36404. bottom: 66 / 1387
  36405. }
  36406. },
  36407. back: {
  36408. height: math.unit(6 + 4/12, "feet"),
  36409. weight: math.unit(145, "lb"),
  36410. name: "Back",
  36411. image: {
  36412. source: "./media/characters/sykes/back.svg",
  36413. extra: 1326/1181,
  36414. bottom: 31/1357
  36415. }
  36416. },
  36417. traditionalOutfit: {
  36418. height: math.unit(6 + 4/12, "feet"),
  36419. weight: math.unit(145, "lb"),
  36420. name: "Traditional Outfit",
  36421. image: {
  36422. source: "./media/characters/sykes/traditional-outfit.svg",
  36423. extra: 1321 / 1187,
  36424. bottom: 66 / 1387
  36425. }
  36426. },
  36427. adventureOutfit: {
  36428. height: math.unit(6 + 4/12, "feet"),
  36429. weight: math.unit(145, "lb"),
  36430. name: "Adventure Outfit",
  36431. image: {
  36432. source: "./media/characters/sykes/adventure-outfit.svg",
  36433. extra: 1321 / 1187,
  36434. bottom: 66 / 1387
  36435. }
  36436. },
  36437. handLeft: {
  36438. height: math.unit(0.9, "feet"),
  36439. name: "Hand (Left)",
  36440. image: {
  36441. source: "./media/characters/sykes/hand-left.svg"
  36442. }
  36443. },
  36444. handRight: {
  36445. height: math.unit(0.839, "feet"),
  36446. name: "Hand (Right)",
  36447. image: {
  36448. source: "./media/characters/sykes/hand-right.svg"
  36449. }
  36450. },
  36451. leftFoot: {
  36452. height: math.unit(1.2, "feet"),
  36453. name: "Foot (Left)",
  36454. image: {
  36455. source: "./media/characters/sykes/foot-left.svg"
  36456. }
  36457. },
  36458. rightFoot: {
  36459. height: math.unit(1.2, "feet"),
  36460. name: "Foot (Right)",
  36461. image: {
  36462. source: "./media/characters/sykes/foot-right.svg"
  36463. }
  36464. },
  36465. maw: {
  36466. height: math.unit(1.93, "feet"),
  36467. name: "Maw",
  36468. image: {
  36469. source: "./media/characters/sykes/maw.svg"
  36470. }
  36471. },
  36472. teeth: {
  36473. height: math.unit(0.51, "feet"),
  36474. name: "Teeth",
  36475. image: {
  36476. source: "./media/characters/sykes/teeth.svg"
  36477. }
  36478. },
  36479. tongue: {
  36480. height: math.unit(2.13, "feet"),
  36481. name: "Tongue",
  36482. image: {
  36483. source: "./media/characters/sykes/tongue.svg"
  36484. }
  36485. },
  36486. uvula: {
  36487. height: math.unit(0.16, "feet"),
  36488. name: "Uvula",
  36489. image: {
  36490. source: "./media/characters/sykes/uvula.svg"
  36491. }
  36492. },
  36493. collar: {
  36494. height: math.unit(0.287, "feet"),
  36495. name: "Collar",
  36496. image: {
  36497. source: "./media/characters/sykes/collar.svg"
  36498. }
  36499. },
  36500. tail: {
  36501. height: math.unit(3.8, "feet"),
  36502. name: "Tail",
  36503. image: {
  36504. source: "./media/characters/sykes/tail.svg"
  36505. }
  36506. },
  36507. },
  36508. [
  36509. {
  36510. name: "Shrunken",
  36511. height: math.unit(5, "inches")
  36512. },
  36513. {
  36514. name: "Normal",
  36515. height: math.unit(6 + 4 / 12, "feet"),
  36516. default: true
  36517. },
  36518. {
  36519. name: "Big",
  36520. height: math.unit(15, "feet")
  36521. },
  36522. ]
  36523. ))
  36524. characterMakers.push(() => makeCharacter(
  36525. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36526. {
  36527. front: {
  36528. height: math.unit(5 + 8/12, "feet"),
  36529. weight: math.unit(190, "lb"),
  36530. name: "Front",
  36531. image: {
  36532. source: "./media/characters/oven-otter/front.svg",
  36533. extra: 1809/1740,
  36534. bottom: 181/1990
  36535. }
  36536. },
  36537. back: {
  36538. height: math.unit(5 + 8/12, "feet"),
  36539. weight: math.unit(190, "lb"),
  36540. name: "Back",
  36541. image: {
  36542. source: "./media/characters/oven-otter/back.svg",
  36543. extra: 1709/1635,
  36544. bottom: 118/1827
  36545. }
  36546. },
  36547. hand: {
  36548. height: math.unit(1.07, "feet"),
  36549. name: "Hand",
  36550. image: {
  36551. source: "./media/characters/oven-otter/hand.svg"
  36552. }
  36553. },
  36554. beans: {
  36555. height: math.unit(1.74, "feet"),
  36556. name: "Beans",
  36557. image: {
  36558. source: "./media/characters/oven-otter/beans.svg"
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Micro",
  36565. height: math.unit(0.5, "inches")
  36566. },
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(5 + 8/12, "feet"),
  36570. default: true
  36571. },
  36572. {
  36573. name: "Macro",
  36574. height: math.unit(250, "feet")
  36575. },
  36576. {
  36577. name: "Really High",
  36578. height: math.unit(420, "feet")
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(5, "meters"),
  36587. weight: math.unit(292000000000000, "kg"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/devourer/front.svg",
  36591. extra: 1800/1733,
  36592. bottom: 211/2011
  36593. }
  36594. },
  36595. maw: {
  36596. height: math.unit(1.1, "meter"),
  36597. name: "Maw",
  36598. image: {
  36599. source: "./media/characters/devourer/maw.svg"
  36600. }
  36601. },
  36602. },
  36603. [
  36604. {
  36605. name: "Small",
  36606. height: math.unit(3, "meters")
  36607. },
  36608. {
  36609. name: "Large",
  36610. height: math.unit(5, "meters"),
  36611. default: true
  36612. },
  36613. ]
  36614. ))
  36615. characterMakers.push(() => makeCharacter(
  36616. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36617. {
  36618. front: {
  36619. height: math.unit(6, "feet"),
  36620. weight: math.unit(400, "lb"),
  36621. name: "Front",
  36622. image: {
  36623. source: "./media/characters/ellarby/front.svg",
  36624. extra: 1909/1763,
  36625. bottom: 80/1989
  36626. }
  36627. },
  36628. back: {
  36629. height: math.unit(6, "feet"),
  36630. weight: math.unit(400, "lb"),
  36631. name: "Back",
  36632. image: {
  36633. source: "./media/characters/ellarby/back.svg",
  36634. extra: 1914/1784,
  36635. bottom: 172/2086
  36636. }
  36637. },
  36638. },
  36639. [
  36640. {
  36641. name: "Mischief",
  36642. height: math.unit(18, "inches")
  36643. },
  36644. {
  36645. name: "Trouble",
  36646. height: math.unit(12, "feet")
  36647. },
  36648. {
  36649. name: "Havoc",
  36650. height: math.unit(200, "feet"),
  36651. default: true
  36652. },
  36653. {
  36654. name: "Pandemonium",
  36655. height: math.unit(1, "mile")
  36656. },
  36657. {
  36658. name: "Catastrophe",
  36659. height: math.unit(100, "miles")
  36660. },
  36661. ]
  36662. ))
  36663. characterMakers.push(() => makeCharacter(
  36664. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36665. {
  36666. front: {
  36667. height: math.unit(4.7, "meters"),
  36668. weight: math.unit(6500, "kg"),
  36669. name: "Front",
  36670. image: {
  36671. source: "./media/characters/vex/front.svg",
  36672. extra: 1288/1140,
  36673. bottom: 100/1388
  36674. }
  36675. },
  36676. },
  36677. [
  36678. {
  36679. name: "Normal",
  36680. height: math.unit(4.7, "meters"),
  36681. default: true
  36682. },
  36683. ]
  36684. ))
  36685. characterMakers.push(() => makeCharacter(
  36686. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36687. {
  36688. normal: {
  36689. height: math.unit(6, "feet"),
  36690. weight: math.unit(350, "lb"),
  36691. name: "Normal",
  36692. image: {
  36693. source: "./media/characters/teshy/normal.svg",
  36694. extra: 1795/1735,
  36695. bottom: 16/1811
  36696. }
  36697. },
  36698. monsterFront: {
  36699. height: math.unit(12, "feet"),
  36700. weight: math.unit(4700, "lb"),
  36701. name: "Monster (Front)",
  36702. image: {
  36703. source: "./media/characters/teshy/monster-front.svg",
  36704. extra: 2042/2034,
  36705. bottom: 128/2170
  36706. }
  36707. },
  36708. monsterSide: {
  36709. height: math.unit(12, "feet"),
  36710. weight: math.unit(4700, "lb"),
  36711. name: "Monster (Side)",
  36712. image: {
  36713. source: "./media/characters/teshy/monster-side.svg",
  36714. extra: 2067/2056,
  36715. bottom: 70/2137
  36716. }
  36717. },
  36718. monsterBack: {
  36719. height: math.unit(12, "feet"),
  36720. weight: math.unit(4700, "lb"),
  36721. name: "Monster (Back)",
  36722. image: {
  36723. source: "./media/characters/teshy/monster-back.svg",
  36724. extra: 1921/1914,
  36725. bottom: 171/2092
  36726. }
  36727. },
  36728. },
  36729. [
  36730. {
  36731. name: "Normal",
  36732. height: math.unit(6, "feet"),
  36733. default: true
  36734. },
  36735. ]
  36736. ))
  36737. characterMakers.push(() => makeCharacter(
  36738. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36739. {
  36740. front: {
  36741. height: math.unit(6, "feet"),
  36742. name: "Front",
  36743. image: {
  36744. source: "./media/characters/ramey/front.svg",
  36745. extra: 790/787,
  36746. bottom: 27/817
  36747. }
  36748. },
  36749. },
  36750. [
  36751. {
  36752. name: "Normal",
  36753. height: math.unit(6, "feet"),
  36754. default: true
  36755. },
  36756. ]
  36757. ))
  36758. characterMakers.push(() => makeCharacter(
  36759. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36760. {
  36761. front: {
  36762. height: math.unit(5 + 5/12, "feet"),
  36763. weight: math.unit(120, "lb"),
  36764. name: "Front",
  36765. image: {
  36766. source: "./media/characters/phirae/front.svg",
  36767. extra: 2491/2436,
  36768. bottom: 38/2529
  36769. }
  36770. },
  36771. },
  36772. [
  36773. {
  36774. name: "Normal",
  36775. height: math.unit(5 + 5/12, "feet"),
  36776. default: true
  36777. },
  36778. ]
  36779. ))
  36780. characterMakers.push(() => makeCharacter(
  36781. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36782. {
  36783. front: {
  36784. height: math.unit(5 + 3/12, "feet"),
  36785. name: "Front",
  36786. image: {
  36787. source: "./media/characters/stagglas/front.svg",
  36788. extra: 962/882,
  36789. bottom: 53/1015
  36790. }
  36791. },
  36792. feral: {
  36793. height: math.unit(335, "cm"),
  36794. name: "Feral",
  36795. image: {
  36796. source: "./media/characters/stagglas/feral.svg",
  36797. extra: 1732/1090,
  36798. bottom: 48/1780
  36799. }
  36800. },
  36801. },
  36802. [
  36803. {
  36804. name: "Normal",
  36805. height: math.unit(5 + 3/12, "feet"),
  36806. default: true
  36807. },
  36808. ]
  36809. ))
  36810. characterMakers.push(() => makeCharacter(
  36811. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36812. {
  36813. front: {
  36814. height: math.unit(5 + 4/12, "feet"),
  36815. weight: math.unit(145, "lb"),
  36816. name: "Front",
  36817. image: {
  36818. source: "./media/characters/starra/front.svg",
  36819. extra: 1790/1691,
  36820. bottom: 91/1881
  36821. }
  36822. },
  36823. },
  36824. [
  36825. {
  36826. name: "Normal",
  36827. height: math.unit(5 + 4/12, "feet"),
  36828. default: true
  36829. },
  36830. ]
  36831. ))
  36832. characterMakers.push(() => makeCharacter(
  36833. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36834. {
  36835. front: {
  36836. height: math.unit(3.5, "meters"),
  36837. name: "Front",
  36838. image: {
  36839. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36840. extra: 1248/972,
  36841. bottom: 38/1286
  36842. }
  36843. },
  36844. },
  36845. [
  36846. {
  36847. name: "Normal",
  36848. height: math.unit(3.5, "meters"),
  36849. default: true
  36850. },
  36851. ]
  36852. ))
  36853. characterMakers.push(() => makeCharacter(
  36854. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36855. {
  36856. side: {
  36857. height: math.unit(8 + 2/12, "feet"),
  36858. weight: math.unit(1240, "lb"),
  36859. name: "Side",
  36860. image: {
  36861. source: "./media/characters/mika-valentine/side.svg",
  36862. extra: 2670/2501,
  36863. bottom: 250/2920
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(8 + 2/12, "feet"),
  36871. default: true
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36877. {
  36878. front: {
  36879. height: math.unit(7 + 2/12, "feet"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/xoltol/front.svg",
  36883. extra: 2212/2124,
  36884. bottom: 84/2296
  36885. }
  36886. },
  36887. side: {
  36888. height: math.unit(7 + 2/12, "feet"),
  36889. name: "Side",
  36890. image: {
  36891. source: "./media/characters/xoltol/side.svg",
  36892. extra: 2273/2197,
  36893. bottom: 26/2299
  36894. }
  36895. },
  36896. hand: {
  36897. height: math.unit(2.5, "feet"),
  36898. name: "Hand",
  36899. image: {
  36900. source: "./media/characters/xoltol/hand.svg"
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Small-ish",
  36907. height: math.unit(5 + 11/12, "feet")
  36908. },
  36909. {
  36910. name: "Normal",
  36911. height: math.unit(7 + 2/12, "feet")
  36912. },
  36913. {
  36914. name: "\"Macro\"",
  36915. height: math.unit(14 + 9/12, "feet"),
  36916. default: true
  36917. },
  36918. {
  36919. name: "Alternate Height",
  36920. height: math.unit(20, "feet")
  36921. },
  36922. {
  36923. name: "Actually Macro",
  36924. height: math.unit(100, "feet")
  36925. },
  36926. ]
  36927. ))
  36928. characterMakers.push(() => makeCharacter(
  36929. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36930. {
  36931. front: {
  36932. height: math.unit(5 + 2/12, "feet"),
  36933. weight: math.unit(75, "kg"),
  36934. name: "Front",
  36935. image: {
  36936. source: "./media/characters/kotetsu-redwood/front.svg",
  36937. extra: 1053/942,
  36938. bottom: 60/1113
  36939. }
  36940. },
  36941. },
  36942. [
  36943. {
  36944. name: "Normal",
  36945. height: math.unit(5 + 2/12, "feet"),
  36946. default: true
  36947. },
  36948. ]
  36949. ))
  36950. characterMakers.push(() => makeCharacter(
  36951. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36952. {
  36953. front: {
  36954. height: math.unit(2.4, "meters"),
  36955. weight: math.unit(125, "kg"),
  36956. name: "Front",
  36957. image: {
  36958. source: "./media/characters/lilith/front.svg",
  36959. extra: 1590/1513,
  36960. bottom: 203/1793
  36961. }
  36962. },
  36963. },
  36964. [
  36965. {
  36966. name: "Humanoid",
  36967. height: math.unit(2.4, "meters")
  36968. },
  36969. {
  36970. name: "Normal",
  36971. height: math.unit(6, "meters"),
  36972. default: true
  36973. },
  36974. {
  36975. name: "Largest",
  36976. height: math.unit(55, "meters")
  36977. },
  36978. ]
  36979. ))
  36980. characterMakers.push(() => makeCharacter(
  36981. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36982. {
  36983. front: {
  36984. height: math.unit(8 + 4/12, "feet"),
  36985. weight: math.unit(535, "lb"),
  36986. name: "Front",
  36987. image: {
  36988. source: "./media/characters/beh'kah-bolger/front.svg",
  36989. extra: 1660/1603,
  36990. bottom: 37/1697
  36991. }
  36992. },
  36993. },
  36994. [
  36995. {
  36996. name: "Normal",
  36997. height: math.unit(8 + 4/12, "feet"),
  36998. default: true
  36999. },
  37000. {
  37001. name: "Kaiju",
  37002. height: math.unit(250, "feet")
  37003. },
  37004. {
  37005. name: "Still Growing",
  37006. height: math.unit(10, "miles")
  37007. },
  37008. {
  37009. name: "Continental",
  37010. height: math.unit(5000, "miles")
  37011. },
  37012. {
  37013. name: "Final Form",
  37014. height: math.unit(2500000, "miles")
  37015. },
  37016. ]
  37017. ))
  37018. characterMakers.push(() => makeCharacter(
  37019. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37020. {
  37021. front: {
  37022. height: math.unit(7 + 2/12, "feet"),
  37023. weight: math.unit(230, "kg"),
  37024. name: "Front",
  37025. image: {
  37026. source: "./media/characters/tatyana-milewska/front.svg",
  37027. extra: 1199/1150,
  37028. bottom: 86/1285
  37029. }
  37030. },
  37031. },
  37032. [
  37033. {
  37034. name: "Normal",
  37035. height: math.unit(7 + 2/12, "feet"),
  37036. default: true
  37037. },
  37038. {
  37039. name: "Big",
  37040. height: math.unit(12, "feet")
  37041. },
  37042. {
  37043. name: "Minimacro",
  37044. height: math.unit(20, "feet")
  37045. },
  37046. {
  37047. name: "Macro",
  37048. height: math.unit(120, "feet")
  37049. },
  37050. ]
  37051. ))
  37052. characterMakers.push(() => makeCharacter(
  37053. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37054. {
  37055. front: {
  37056. height: math.unit(7 + 8/12, "feet"),
  37057. weight: math.unit(152, "kg"),
  37058. name: "Front",
  37059. image: {
  37060. source: "./media/characters/helen-arri/front.svg",
  37061. extra: 440/423,
  37062. bottom: 14/454
  37063. }
  37064. },
  37065. back: {
  37066. height: math.unit(7 + 8/12, "feet"),
  37067. weight: math.unit(152, "kg"),
  37068. name: "Back",
  37069. image: {
  37070. source: "./media/characters/helen-arri/back.svg",
  37071. extra: 443/426,
  37072. bottom: 8/451
  37073. }
  37074. },
  37075. },
  37076. [
  37077. {
  37078. name: "Normal",
  37079. height: math.unit(7 + 8/12, "feet"),
  37080. default: true
  37081. },
  37082. {
  37083. name: "Big",
  37084. height: math.unit(14, "feet")
  37085. },
  37086. {
  37087. name: "Minimacro",
  37088. height: math.unit(24, "feet")
  37089. },
  37090. {
  37091. name: "Macro",
  37092. height: math.unit(140, "feet")
  37093. },
  37094. ]
  37095. ))
  37096. characterMakers.push(() => makeCharacter(
  37097. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37098. {
  37099. front: {
  37100. height: math.unit(6, "meters"),
  37101. name: "Front",
  37102. image: {
  37103. source: "./media/characters/ehanu-rehu/front.svg",
  37104. extra: 1800/1800,
  37105. bottom: 59/1859
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Normal",
  37112. height: math.unit(6, "meters"),
  37113. default: true
  37114. },
  37115. ]
  37116. ))
  37117. characterMakers.push(() => makeCharacter(
  37118. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37119. {
  37120. front: {
  37121. height: math.unit(7 + 3/12, "feet"),
  37122. name: "Front",
  37123. image: {
  37124. source: "./media/characters/renholder/front.svg",
  37125. extra: 3096/2960,
  37126. bottom: 250/3346
  37127. }
  37128. },
  37129. },
  37130. [
  37131. {
  37132. name: "Normal Bat",
  37133. height: math.unit(7 + 3/12, "feet"),
  37134. default: true
  37135. },
  37136. {
  37137. name: "Slightly Tall Bat",
  37138. height: math.unit(100, "feet")
  37139. },
  37140. {
  37141. name: "Big Bat",
  37142. height: math.unit(1000, "feet")
  37143. },
  37144. {
  37145. name: "City-Sized Bat",
  37146. height: math.unit(200000, "feet")
  37147. },
  37148. {
  37149. name: "Bigger Bat",
  37150. height: math.unit(10000, "miles")
  37151. },
  37152. {
  37153. name: "Solar Sized Bat",
  37154. height: math.unit(100, "AU")
  37155. },
  37156. {
  37157. name: "Galactic Bat",
  37158. height: math.unit(200000, "lightyears")
  37159. },
  37160. {
  37161. name: "Universally Known Bat",
  37162. height: math.unit(1, "universe")
  37163. },
  37164. ]
  37165. ))
  37166. characterMakers.push(() => makeCharacter(
  37167. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37168. {
  37169. front: {
  37170. height: math.unit(6 + 11/12, "feet"),
  37171. weight: math.unit(250, "lb"),
  37172. name: "Front",
  37173. image: {
  37174. source: "./media/characters/cookiecat/front.svg",
  37175. extra: 893/827,
  37176. bottom: 14/907
  37177. }
  37178. },
  37179. },
  37180. [
  37181. {
  37182. name: "Micro",
  37183. height: math.unit(3, "inches")
  37184. },
  37185. {
  37186. name: "Normal",
  37187. height: math.unit(6 + 11/12, "feet"),
  37188. default: true
  37189. },
  37190. {
  37191. name: "Macro",
  37192. height: math.unit(100, "feet")
  37193. },
  37194. {
  37195. name: "Macro+",
  37196. height: math.unit(404, "feet")
  37197. },
  37198. {
  37199. name: "Megamacro",
  37200. height: math.unit(165, "miles")
  37201. },
  37202. {
  37203. name: "Planetary",
  37204. height: math.unit(4600, "miles")
  37205. },
  37206. ]
  37207. ))
  37208. characterMakers.push(() => makeCharacter(
  37209. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37210. {
  37211. front: {
  37212. height: math.unit(10 + 3/12, "feet"),
  37213. weight: math.unit(1500, "lb"),
  37214. name: "Front",
  37215. image: {
  37216. source: "./media/characters/tux-kusanagi/front.svg",
  37217. extra: 944/840,
  37218. bottom: 39/983
  37219. }
  37220. },
  37221. back: {
  37222. height: math.unit(10 + 3/12, "feet"),
  37223. weight: math.unit(1500, "lb"),
  37224. name: "Back",
  37225. image: {
  37226. source: "./media/characters/tux-kusanagi/back.svg",
  37227. extra: 941/842,
  37228. bottom: 28/969
  37229. }
  37230. },
  37231. rump: {
  37232. height: math.unit(5.25, "feet"),
  37233. name: "Rump",
  37234. image: {
  37235. source: "./media/characters/tux-kusanagi/rump.svg"
  37236. }
  37237. },
  37238. beak: {
  37239. height: math.unit(1.54, "feet"),
  37240. name: "Beak",
  37241. image: {
  37242. source: "./media/characters/tux-kusanagi/beak.svg"
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(10 + 3/12, "feet"),
  37250. default: true
  37251. },
  37252. ]
  37253. ))
  37254. characterMakers.push(() => makeCharacter(
  37255. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37256. {
  37257. front: {
  37258. height: math.unit(58, "feet"),
  37259. weight: math.unit(200, "tons"),
  37260. name: "Front",
  37261. image: {
  37262. source: "./media/characters/uzarmazari/front.svg",
  37263. extra: 1575/1455,
  37264. bottom: 152/1727
  37265. }
  37266. },
  37267. back: {
  37268. height: math.unit(58, "feet"),
  37269. weight: math.unit(200, "tons"),
  37270. name: "Back",
  37271. image: {
  37272. source: "./media/characters/uzarmazari/back.svg",
  37273. extra: 1585/1510,
  37274. bottom: 157/1742
  37275. }
  37276. },
  37277. head: {
  37278. height: math.unit(26, "feet"),
  37279. name: "Head",
  37280. image: {
  37281. source: "./media/characters/uzarmazari/head.svg"
  37282. }
  37283. },
  37284. },
  37285. [
  37286. {
  37287. name: "Normal",
  37288. height: math.unit(58, "feet"),
  37289. default: true
  37290. },
  37291. ]
  37292. ))
  37293. characterMakers.push(() => makeCharacter(
  37294. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37295. {
  37296. side: {
  37297. height: math.unit(15, "feet"),
  37298. name: "Side",
  37299. image: {
  37300. source: "./media/characters/akitu/side.svg",
  37301. extra: 1421/1321,
  37302. bottom: 157/1578
  37303. }
  37304. },
  37305. front: {
  37306. height: math.unit(15, "feet"),
  37307. name: "Front",
  37308. image: {
  37309. source: "./media/characters/akitu/front.svg",
  37310. extra: 1435/1326,
  37311. bottom: 232/1667
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(15, "feet"),
  37319. default: true
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37325. {
  37326. front: {
  37327. height: math.unit(10 + 8/12, "feet"),
  37328. name: "Front",
  37329. image: {
  37330. source: "./media/characters/azalie-croixland/front.svg",
  37331. extra: 1972/1856,
  37332. bottom: 31/2003
  37333. }
  37334. },
  37335. },
  37336. [
  37337. {
  37338. name: "Original Height",
  37339. height: math.unit(5 + 4/12, "feet")
  37340. },
  37341. {
  37342. name: "Normal Height",
  37343. height: math.unit(10 + 8/12, "feet"),
  37344. default: true
  37345. },
  37346. ]
  37347. ))
  37348. characterMakers.push(() => makeCharacter(
  37349. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37350. {
  37351. side: {
  37352. height: math.unit(7 + 1/12, "feet"),
  37353. weight: math.unit(245, "lb"),
  37354. name: "Side",
  37355. image: {
  37356. source: "./media/characters/kavus-kazian/side.svg",
  37357. extra: 349/342,
  37358. bottom: 15/364
  37359. }
  37360. },
  37361. },
  37362. [
  37363. {
  37364. name: "Normal",
  37365. height: math.unit(7 + 1/12, "feet"),
  37366. default: true
  37367. },
  37368. ]
  37369. ))
  37370. characterMakers.push(() => makeCharacter(
  37371. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37372. {
  37373. normalFront: {
  37374. height: math.unit(5 + 11/12, "feet"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/moonlight-rose/normal-front.svg",
  37378. extra: 1980/1825,
  37379. bottom: 18/1998
  37380. },
  37381. form: "normal",
  37382. default: true
  37383. },
  37384. normalBack: {
  37385. height: math.unit(5 + 11/12, "feet"),
  37386. name: "Back",
  37387. image: {
  37388. source: "./media/characters/moonlight-rose/normal-back.svg",
  37389. extra: 2010/1839,
  37390. bottom: 10/2020
  37391. },
  37392. form: "normal"
  37393. },
  37394. demonFront: {
  37395. height: math.unit(1.5, "earths"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/moonlight-rose/demon.svg",
  37399. extra: 1400/1294,
  37400. bottom: 45/1445
  37401. },
  37402. form: "demon",
  37403. default: true
  37404. },
  37405. terraFront: {
  37406. height: math.unit(1.5, "earths"),
  37407. name: "Front",
  37408. image: {
  37409. source: "./media/characters/moonlight-rose/terra.svg"
  37410. },
  37411. form: "terra",
  37412. default: true
  37413. },
  37414. jupiterFront: {
  37415. height: math.unit(69911*2, "km"),
  37416. name: "Front",
  37417. image: {
  37418. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37419. extra: 1367/1286,
  37420. bottom: 55/1422
  37421. },
  37422. form: "jupiter",
  37423. default: true
  37424. },
  37425. neptuneFront: {
  37426. height: math.unit(24622*2, "feet"),
  37427. name: "Front",
  37428. image: {
  37429. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37430. extra: 1851/1712,
  37431. bottom: 0/1851
  37432. },
  37433. form: "neptune",
  37434. default: true
  37435. },
  37436. },
  37437. [
  37438. {
  37439. name: "\"Natural\" Height",
  37440. height: math.unit(5 + 11/12, "feet"),
  37441. form: "normal"
  37442. },
  37443. {
  37444. name: "Smallest comfortable size",
  37445. height: math.unit(40, "meters"),
  37446. form: "normal"
  37447. },
  37448. {
  37449. name: "Common size",
  37450. height: math.unit(50, "km"),
  37451. form: "normal",
  37452. default: true
  37453. },
  37454. {
  37455. name: "Normal",
  37456. height: math.unit(1.5, "earths"),
  37457. form: "demon",
  37458. default: true
  37459. },
  37460. {
  37461. name: "Universal",
  37462. height: math.unit(15, "universes"),
  37463. form: "demon"
  37464. },
  37465. {
  37466. name: "Earth",
  37467. height: math.unit(1.5, "earths"),
  37468. form: "terra",
  37469. default: true
  37470. },
  37471. {
  37472. name: "Super Earth",
  37473. height: math.unit(67.5, "earths"),
  37474. form: "terra"
  37475. },
  37476. {
  37477. name: "Doesn't fit in a solar system...",
  37478. height: math.unit(1, "galaxy"),
  37479. form: "terra"
  37480. },
  37481. {
  37482. name: "Saturn",
  37483. height: math.unit(58232*2, "km"),
  37484. form: "jupiter"
  37485. },
  37486. {
  37487. name: "Jupiter",
  37488. height: math.unit(69911*2, "km"),
  37489. form: "jupiter",
  37490. default: true
  37491. },
  37492. {
  37493. name: "HD 100546 b",
  37494. height: math.unit(482938, "km"),
  37495. form: "jupiter"
  37496. },
  37497. {
  37498. name: "Enceladus",
  37499. height: math.unit(513*2, "km"),
  37500. form: "neptune"
  37501. },
  37502. {
  37503. name: "Europe",
  37504. height: math.unit(1560*2, "km"),
  37505. form: "neptune"
  37506. },
  37507. {
  37508. name: "Neptune",
  37509. height: math.unit(24622*2, "km"),
  37510. form: "neptune",
  37511. default: true
  37512. },
  37513. {
  37514. name: "CoRoT-9b",
  37515. height: math.unit(75067*2, "km"),
  37516. form: "neptune"
  37517. },
  37518. ],
  37519. {
  37520. "normal": {
  37521. name: "Normal",
  37522. default: true
  37523. },
  37524. "demon": {
  37525. name: "Demon"
  37526. },
  37527. "terra": {
  37528. name: "Terra"
  37529. },
  37530. "jupiter": {
  37531. name: "Jupiter"
  37532. },
  37533. "neptune": {
  37534. name: "Neptune"
  37535. }
  37536. }
  37537. ))
  37538. characterMakers.push(() => makeCharacter(
  37539. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37540. {
  37541. front: {
  37542. height: math.unit(16, "feet"),
  37543. weight: math.unit(610, "kg"),
  37544. name: "Front",
  37545. image: {
  37546. source: "./media/characters/huckle/front.svg",
  37547. extra: 1731/1625,
  37548. bottom: 33/1764
  37549. }
  37550. },
  37551. back: {
  37552. height: math.unit(16, "feet"),
  37553. weight: math.unit(610, "kg"),
  37554. name: "Back",
  37555. image: {
  37556. source: "./media/characters/huckle/back.svg",
  37557. extra: 1738/1651,
  37558. bottom: 37/1775
  37559. }
  37560. },
  37561. laughing: {
  37562. height: math.unit(3.75, "feet"),
  37563. name: "Laughing",
  37564. image: {
  37565. source: "./media/characters/huckle/laughing.svg"
  37566. }
  37567. },
  37568. angry: {
  37569. height: math.unit(4.15, "feet"),
  37570. name: "Angry",
  37571. image: {
  37572. source: "./media/characters/huckle/angry.svg"
  37573. }
  37574. },
  37575. },
  37576. [
  37577. {
  37578. name: "Normal",
  37579. height: math.unit(16, "feet"),
  37580. default: true
  37581. },
  37582. {
  37583. name: "Mini Macro",
  37584. height: math.unit(463, "feet")
  37585. },
  37586. {
  37587. name: "Macro",
  37588. height: math.unit(1680, "meters")
  37589. },
  37590. {
  37591. name: "Mega Macro",
  37592. height: math.unit(175, "km")
  37593. },
  37594. {
  37595. name: "Terra Macro",
  37596. height: math.unit(32, "gigameters")
  37597. },
  37598. {
  37599. name: "Multiverse+",
  37600. height: math.unit(2.56e23, "yottameters")
  37601. },
  37602. ]
  37603. ))
  37604. characterMakers.push(() => makeCharacter(
  37605. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37606. {
  37607. front: {
  37608. height: math.unit(6 + 9/12, "feet"),
  37609. weight: math.unit(280, "lb"),
  37610. name: "Front",
  37611. image: {
  37612. source: "./media/characters/candy/front.svg",
  37613. extra: 234/217,
  37614. bottom: 11/245
  37615. }
  37616. },
  37617. },
  37618. [
  37619. {
  37620. name: "Really Small",
  37621. height: math.unit(0.1, "nm")
  37622. },
  37623. {
  37624. name: "Micro",
  37625. height: math.unit(2, "inches")
  37626. },
  37627. {
  37628. name: "Normal",
  37629. height: math.unit(6 + 9/12, "feet"),
  37630. default: true
  37631. },
  37632. {
  37633. name: "Small Macro",
  37634. height: math.unit(69, "feet")
  37635. },
  37636. {
  37637. name: "Macro",
  37638. height: math.unit(160, "feet")
  37639. },
  37640. {
  37641. name: "Megamacro",
  37642. height: math.unit(22000, "miles")
  37643. },
  37644. {
  37645. name: "Gigamacro",
  37646. height: math.unit(50000, "miles")
  37647. },
  37648. ]
  37649. ))
  37650. characterMakers.push(() => makeCharacter(
  37651. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37652. {
  37653. front: {
  37654. height: math.unit(4, "feet"),
  37655. weight: math.unit(90, "lb"),
  37656. name: "Front",
  37657. image: {
  37658. source: "./media/characters/joey-mcdonald/front.svg",
  37659. extra: 1059/852,
  37660. bottom: 33/1092
  37661. }
  37662. },
  37663. back: {
  37664. height: math.unit(4, "feet"),
  37665. weight: math.unit(90, "lb"),
  37666. name: "Back",
  37667. image: {
  37668. source: "./media/characters/joey-mcdonald/back.svg",
  37669. extra: 1077/879,
  37670. bottom: 5/1082
  37671. }
  37672. },
  37673. frontKobold: {
  37674. height: math.unit(4, "feet"),
  37675. weight: math.unit(100, "lb"),
  37676. name: "Front-kobold",
  37677. image: {
  37678. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37679. extra: 1480/1367,
  37680. bottom: 0/1480
  37681. }
  37682. },
  37683. backKobold: {
  37684. height: math.unit(4, "feet"),
  37685. weight: math.unit(100, "lb"),
  37686. name: "Back-kobold",
  37687. image: {
  37688. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37689. extra: 1449/1361,
  37690. bottom: 0/1449
  37691. }
  37692. },
  37693. },
  37694. [
  37695. {
  37696. name: "Normal",
  37697. height: math.unit(4, "feet"),
  37698. default: true
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(12 + 6/12, "feet"),
  37707. name: "Front",
  37708. image: {
  37709. source: "./media/characters/kass-lockheed/front.svg",
  37710. extra: 354/343,
  37711. bottom: 9/363
  37712. }
  37713. },
  37714. back: {
  37715. height: math.unit(12 + 6/12, "feet"),
  37716. name: "Back",
  37717. image: {
  37718. source: "./media/characters/kass-lockheed/back.svg",
  37719. extra: 364/352,
  37720. bottom: 3/367
  37721. }
  37722. },
  37723. dick: {
  37724. height: math.unit(3.12, "feet"),
  37725. name: "Dick",
  37726. image: {
  37727. source: "./media/characters/kass-lockheed/dick.svg"
  37728. }
  37729. },
  37730. head: {
  37731. height: math.unit(2.6, "feet"),
  37732. name: "Head",
  37733. image: {
  37734. source: "./media/characters/kass-lockheed/head.svg"
  37735. }
  37736. },
  37737. bleh: {
  37738. height: math.unit(2.85, "feet"),
  37739. name: "Bleh",
  37740. image: {
  37741. source: "./media/characters/kass-lockheed/bleh.svg"
  37742. }
  37743. },
  37744. smug: {
  37745. height: math.unit(2.85, "feet"),
  37746. name: "Smug",
  37747. image: {
  37748. source: "./media/characters/kass-lockheed/smug.svg"
  37749. }
  37750. },
  37751. },
  37752. [
  37753. {
  37754. name: "Normal",
  37755. height: math.unit(12 + 6/12, "feet"),
  37756. default: true
  37757. },
  37758. ]
  37759. ))
  37760. characterMakers.push(() => makeCharacter(
  37761. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37762. {
  37763. front: {
  37764. height: math.unit(6 + 2/12, "feet"),
  37765. name: "Front",
  37766. image: {
  37767. source: "./media/characters/taylor/front.svg",
  37768. extra: 639/495,
  37769. bottom: 12/651
  37770. }
  37771. },
  37772. },
  37773. [
  37774. {
  37775. name: "Normal",
  37776. height: math.unit(6 + 2/12, "feet"),
  37777. default: true
  37778. },
  37779. {
  37780. name: "Big",
  37781. height: math.unit(15, "feet")
  37782. },
  37783. {
  37784. name: "Lorg",
  37785. height: math.unit(80, "feet")
  37786. },
  37787. {
  37788. name: "Too Lorg",
  37789. height: math.unit(120, "feet")
  37790. },
  37791. ]
  37792. ))
  37793. characterMakers.push(() => makeCharacter(
  37794. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37795. {
  37796. front: {
  37797. height: math.unit(15, "feet"),
  37798. name: "Front",
  37799. image: {
  37800. source: "./media/characters/kaizer/front.svg",
  37801. extra: 1612/1436,
  37802. bottom: 43/1655
  37803. }
  37804. },
  37805. },
  37806. [
  37807. {
  37808. name: "Normal",
  37809. height: math.unit(15, "feet"),
  37810. default: true
  37811. },
  37812. ]
  37813. ))
  37814. characterMakers.push(() => makeCharacter(
  37815. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37816. {
  37817. front: {
  37818. height: math.unit(2, "feet"),
  37819. weight: math.unit(30, "lb"),
  37820. name: "Front",
  37821. image: {
  37822. source: "./media/characters/sandy/front.svg",
  37823. extra: 1439/1307,
  37824. bottom: 194/1633
  37825. }
  37826. },
  37827. },
  37828. [
  37829. {
  37830. name: "Normal",
  37831. height: math.unit(2, "feet"),
  37832. default: true
  37833. },
  37834. ]
  37835. ))
  37836. characterMakers.push(() => makeCharacter(
  37837. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37838. {
  37839. front: {
  37840. height: math.unit(3, "feet"),
  37841. name: "Front",
  37842. image: {
  37843. source: "./media/characters/mellvi/front.svg",
  37844. extra: 1831/1630,
  37845. bottom: 58/1889
  37846. }
  37847. },
  37848. },
  37849. [
  37850. {
  37851. name: "Normal",
  37852. height: math.unit(3, "feet"),
  37853. default: true
  37854. },
  37855. ]
  37856. ))
  37857. characterMakers.push(() => makeCharacter(
  37858. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37859. {
  37860. front: {
  37861. height: math.unit(5 + 11/12, "feet"),
  37862. weight: math.unit(200, "lb"),
  37863. name: "Front",
  37864. image: {
  37865. source: "./media/characters/shirou/front.svg",
  37866. extra: 2491/2383,
  37867. bottom: 189/2680
  37868. }
  37869. },
  37870. back: {
  37871. height: math.unit(5 + 11/12, "feet"),
  37872. weight: math.unit(200, "lb"),
  37873. name: "Back",
  37874. image: {
  37875. source: "./media/characters/shirou/back.svg",
  37876. extra: 2554/2450,
  37877. bottom: 76/2630
  37878. }
  37879. },
  37880. },
  37881. [
  37882. {
  37883. name: "Normal",
  37884. height: math.unit(5 + 11/12, "feet"),
  37885. default: true
  37886. },
  37887. ]
  37888. ))
  37889. characterMakers.push(() => makeCharacter(
  37890. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37891. {
  37892. front: {
  37893. height: math.unit(6 + 3/12, "feet"),
  37894. weight: math.unit(177, "lb"),
  37895. name: "Front",
  37896. image: {
  37897. source: "./media/characters/noryu/front.svg",
  37898. extra: 973/885,
  37899. bottom: 10/983
  37900. }
  37901. },
  37902. },
  37903. [
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(6 + 3/12, "feet"),
  37907. default: true
  37908. },
  37909. ]
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37913. {
  37914. front: {
  37915. height: math.unit(5 + 6/12, "feet"),
  37916. weight: math.unit(170, "lb"),
  37917. name: "Front",
  37918. image: {
  37919. source: "./media/characters/mevolas-rubenido/front.svg",
  37920. extra: 2109/1901,
  37921. bottom: 96/2205
  37922. }
  37923. },
  37924. },
  37925. [
  37926. {
  37927. name: "Normal",
  37928. height: math.unit(5 + 6/12, "feet"),
  37929. default: true
  37930. },
  37931. ]
  37932. ))
  37933. characterMakers.push(() => makeCharacter(
  37934. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37935. {
  37936. front: {
  37937. height: math.unit(100, "feet"),
  37938. name: "Front",
  37939. image: {
  37940. source: "./media/characters/dee/front.svg",
  37941. extra: 2153/2036,
  37942. bottom: 59/2212
  37943. }
  37944. },
  37945. back: {
  37946. height: math.unit(100, "feet"),
  37947. name: "Back",
  37948. image: {
  37949. source: "./media/characters/dee/back.svg",
  37950. extra: 2183/2058,
  37951. bottom: 75/2258
  37952. }
  37953. },
  37954. foot: {
  37955. height: math.unit(19.43, "feet"),
  37956. name: "Foot",
  37957. image: {
  37958. source: "./media/characters/dee/foot.svg"
  37959. }
  37960. },
  37961. hoof: {
  37962. height: math.unit(20.6, "feet"),
  37963. name: "Hoof",
  37964. image: {
  37965. source: "./media/characters/dee/hoof.svg"
  37966. }
  37967. },
  37968. },
  37969. [
  37970. {
  37971. name: "Macro",
  37972. height: math.unit(100, "feet"),
  37973. default: true
  37974. },
  37975. ]
  37976. ))
  37977. characterMakers.push(() => makeCharacter(
  37978. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37979. {
  37980. front: {
  37981. height: math.unit(5 + 6/12, "feet"),
  37982. name: "Front",
  37983. image: {
  37984. source: "./media/characters/teh/front.svg",
  37985. extra: 1002/847,
  37986. bottom: 62/1064
  37987. }
  37988. },
  37989. },
  37990. [
  37991. {
  37992. name: "Normal",
  37993. height: math.unit(5 + 6/12, "feet"),
  37994. default: true
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38000. {
  38001. side: {
  38002. height: math.unit(6 + 1/12, "feet"),
  38003. weight: math.unit(204, "lb"),
  38004. name: "Side",
  38005. image: {
  38006. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38007. extra: 974/775,
  38008. bottom: 169/1143
  38009. }
  38010. },
  38011. sitting: {
  38012. height: math.unit(6 + 2/12, "feet"),
  38013. weight: math.unit(204, "lb"),
  38014. name: "Sitting",
  38015. image: {
  38016. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38017. extra: 1175/964,
  38018. bottom: 378/1553
  38019. }
  38020. },
  38021. },
  38022. [
  38023. {
  38024. name: "Normal",
  38025. height: math.unit(6 + 1/12, "feet"),
  38026. default: true
  38027. },
  38028. ]
  38029. ))
  38030. characterMakers.push(() => makeCharacter(
  38031. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38032. {
  38033. front: {
  38034. height: math.unit(6, "inches"),
  38035. name: "Front",
  38036. image: {
  38037. source: "./media/characters/tululi/front.svg",
  38038. extra: 1997/1876,
  38039. bottom: 20/2017
  38040. }
  38041. },
  38042. },
  38043. [
  38044. {
  38045. name: "Normal",
  38046. height: math.unit(6, "inches"),
  38047. default: true
  38048. },
  38049. ]
  38050. ))
  38051. characterMakers.push(() => makeCharacter(
  38052. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38053. {
  38054. front: {
  38055. height: math.unit(4 + 1/12, "feet"),
  38056. name: "Front",
  38057. image: {
  38058. source: "./media/characters/star/front.svg",
  38059. extra: 1493/1189,
  38060. bottom: 48/1541
  38061. }
  38062. },
  38063. },
  38064. [
  38065. {
  38066. name: "Normal",
  38067. height: math.unit(4 + 1/12, "feet"),
  38068. default: true
  38069. },
  38070. ]
  38071. ))
  38072. characterMakers.push(() => makeCharacter(
  38073. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38074. {
  38075. front: {
  38076. height: math.unit(6 + 3/12, "feet"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/comet/front.svg",
  38080. extra: 1681/1462,
  38081. bottom: 26/1707
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(6 + 3/12, "feet"),
  38089. default: true
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(950, "feet"),
  38098. name: "Front",
  38099. image: {
  38100. source: "./media/characters/vortex/front.svg",
  38101. extra: 1497/1434,
  38102. bottom: 56/1553
  38103. }
  38104. },
  38105. maw: {
  38106. height: math.unit(285, "feet"),
  38107. name: "Maw",
  38108. image: {
  38109. source: "./media/characters/vortex/maw.svg"
  38110. }
  38111. },
  38112. },
  38113. [
  38114. {
  38115. name: "Macro",
  38116. height: math.unit(950, "feet"),
  38117. default: true
  38118. },
  38119. ]
  38120. ))
  38121. characterMakers.push(() => makeCharacter(
  38122. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38123. {
  38124. front: {
  38125. height: math.unit(600, "feet"),
  38126. weight: math.unit(0.02, "grams"),
  38127. name: "Front",
  38128. image: {
  38129. source: "./media/characters/doodle/front.svg",
  38130. extra: 1578/1413,
  38131. bottom: 37/1615
  38132. }
  38133. },
  38134. },
  38135. [
  38136. {
  38137. name: "Macro",
  38138. height: math.unit(600, "feet"),
  38139. default: true
  38140. },
  38141. ]
  38142. ))
  38143. characterMakers.push(() => makeCharacter(
  38144. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38145. {
  38146. front: {
  38147. height: math.unit(6 + 6/12, "feet"),
  38148. name: "Front",
  38149. image: {
  38150. source: "./media/characters/jai/front.svg",
  38151. extra: 1645/1534,
  38152. bottom: 115/1760
  38153. }
  38154. },
  38155. },
  38156. [
  38157. {
  38158. name: "Normal",
  38159. height: math.unit(6 + 6/12, "feet"),
  38160. default: true
  38161. },
  38162. ]
  38163. ))
  38164. characterMakers.push(() => makeCharacter(
  38165. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38166. {
  38167. front: {
  38168. height: math.unit(6 + 8/12, "feet"),
  38169. name: "Front",
  38170. image: {
  38171. source: "./media/characters/pixel/front.svg",
  38172. extra: 1900/1735,
  38173. bottom: 63/1963
  38174. }
  38175. },
  38176. },
  38177. [
  38178. {
  38179. name: "Normal",
  38180. height: math.unit(6 + 8/12, "feet"),
  38181. default: true
  38182. },
  38183. ]
  38184. ))
  38185. characterMakers.push(() => makeCharacter(
  38186. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38187. {
  38188. back: {
  38189. height: math.unit(4 + 1/12, "feet"),
  38190. weight: math.unit(75, "lb"),
  38191. name: "Back",
  38192. image: {
  38193. source: "./media/characters/rhett/back.svg",
  38194. extra: 930/878,
  38195. bottom: 25/955
  38196. }
  38197. },
  38198. front: {
  38199. height: math.unit(4 + 1/12, "feet"),
  38200. weight: math.unit(75, "lb"),
  38201. name: "Front",
  38202. image: {
  38203. source: "./media/characters/rhett/front.svg",
  38204. extra: 1682/1586,
  38205. bottom: 92/1774
  38206. }
  38207. },
  38208. },
  38209. [
  38210. {
  38211. name: "Micro",
  38212. height: math.unit(8, "inches")
  38213. },
  38214. {
  38215. name: "Tiny",
  38216. height: math.unit(2, "feet")
  38217. },
  38218. {
  38219. name: "Normal",
  38220. height: math.unit(4 + 1/12, "feet"),
  38221. default: true
  38222. },
  38223. ]
  38224. ))
  38225. characterMakers.push(() => makeCharacter(
  38226. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38227. {
  38228. front: {
  38229. height: math.unit(3 + 3/12, "feet"),
  38230. name: "Front",
  38231. image: {
  38232. source: "./media/characters/penny/front.svg",
  38233. extra: 1406/1311,
  38234. bottom: 26/1432
  38235. }
  38236. },
  38237. },
  38238. [
  38239. {
  38240. name: "Normal",
  38241. height: math.unit(3 + 3/12, "feet"),
  38242. default: true
  38243. },
  38244. ]
  38245. ))
  38246. characterMakers.push(() => makeCharacter(
  38247. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38248. {
  38249. front: {
  38250. height: math.unit(4 + 11/12, "feet"),
  38251. name: "Front",
  38252. image: {
  38253. source: "./media/characters/monty/front.svg",
  38254. extra: 1479/1209,
  38255. bottom: 0/1479
  38256. }
  38257. },
  38258. },
  38259. [
  38260. {
  38261. name: "Normal",
  38262. height: math.unit(4 + 11/12, "feet"),
  38263. default: true
  38264. },
  38265. ]
  38266. ))
  38267. characterMakers.push(() => makeCharacter(
  38268. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38269. {
  38270. front: {
  38271. height: math.unit(8 + 4/12, "feet"),
  38272. name: "Front",
  38273. image: {
  38274. source: "./media/characters/sterling/front.svg",
  38275. extra: 1420/1236,
  38276. bottom: 27/1447
  38277. }
  38278. },
  38279. },
  38280. [
  38281. {
  38282. name: "Normal",
  38283. height: math.unit(8 + 4/12, "feet"),
  38284. default: true
  38285. },
  38286. ]
  38287. ))
  38288. characterMakers.push(() => makeCharacter(
  38289. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38290. {
  38291. front: {
  38292. height: math.unit(15, "feet"),
  38293. name: "Front",
  38294. image: {
  38295. source: "./media/characters/marble/front.svg",
  38296. extra: 973/937,
  38297. bottom: 32/1005
  38298. }
  38299. },
  38300. },
  38301. [
  38302. {
  38303. name: "Normal",
  38304. height: math.unit(15, "feet"),
  38305. default: true
  38306. },
  38307. ]
  38308. ))
  38309. characterMakers.push(() => makeCharacter(
  38310. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38311. {
  38312. front: {
  38313. height: math.unit(3, "inches"),
  38314. name: "Front",
  38315. image: {
  38316. source: "./media/characters/powder/front.svg",
  38317. extra: 1504/1334,
  38318. bottom: 518/2022
  38319. }
  38320. },
  38321. },
  38322. [
  38323. {
  38324. name: "Normal",
  38325. height: math.unit(3, "inches"),
  38326. default: true
  38327. },
  38328. ]
  38329. ))
  38330. characterMakers.push(() => makeCharacter(
  38331. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38332. {
  38333. front: {
  38334. height: math.unit(4 + 5/12, "feet"),
  38335. name: "Front",
  38336. image: {
  38337. source: "./media/characters/joey-raccoon/front.svg",
  38338. extra: 1273/1197,
  38339. bottom: 0/1273
  38340. }
  38341. },
  38342. },
  38343. [
  38344. {
  38345. name: "Normal",
  38346. height: math.unit(4 + 5/12, "feet"),
  38347. default: true
  38348. },
  38349. ]
  38350. ))
  38351. characterMakers.push(() => makeCharacter(
  38352. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38353. {
  38354. front: {
  38355. height: math.unit(8 + 4/12, "feet"),
  38356. name: "Front",
  38357. image: {
  38358. source: "./media/characters/vick/front.svg",
  38359. extra: 2187/2118,
  38360. bottom: 47/2234
  38361. }
  38362. },
  38363. },
  38364. [
  38365. {
  38366. name: "Normal",
  38367. height: math.unit(8 + 4/12, "feet"),
  38368. default: true
  38369. },
  38370. ]
  38371. ))
  38372. characterMakers.push(() => makeCharacter(
  38373. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38374. {
  38375. front: {
  38376. height: math.unit(5 + 5/12, "feet"),
  38377. name: "Front",
  38378. image: {
  38379. source: "./media/characters/mitsy/front.svg",
  38380. extra: 1842/1695,
  38381. bottom: 0/1842
  38382. }
  38383. },
  38384. },
  38385. [
  38386. {
  38387. name: "Normal",
  38388. height: math.unit(5 + 5/12, "feet"),
  38389. default: true
  38390. },
  38391. ]
  38392. ))
  38393. characterMakers.push(() => makeCharacter(
  38394. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38395. {
  38396. front: {
  38397. height: math.unit(6 + 3/12, "feet"),
  38398. name: "Front",
  38399. image: {
  38400. source: "./media/characters/silvy/front.svg",
  38401. extra: 1995/1836,
  38402. bottom: 225/2220
  38403. }
  38404. },
  38405. },
  38406. [
  38407. {
  38408. name: "Normal",
  38409. height: math.unit(6 + 3/12, "feet"),
  38410. default: true
  38411. },
  38412. ]
  38413. ))
  38414. characterMakers.push(() => makeCharacter(
  38415. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38416. {
  38417. front: {
  38418. height: math.unit(3 + 8/12, "feet"),
  38419. name: "Front",
  38420. image: {
  38421. source: "./media/characters/rodney/front.svg",
  38422. extra: 1956/1747,
  38423. bottom: 31/1987
  38424. }
  38425. },
  38426. frontDressed: {
  38427. height: math.unit(2.9, "feet"),
  38428. name: "Front (Dressed)",
  38429. image: {
  38430. source: "./media/characters/rodney/front-dressed.svg",
  38431. extra: 1382/1241,
  38432. bottom: 385/1767
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Normal",
  38439. height: math.unit(3 + 8/12, "feet"),
  38440. default: true
  38441. },
  38442. ]
  38443. ))
  38444. characterMakers.push(() => makeCharacter(
  38445. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38446. {
  38447. front: {
  38448. height: math.unit(5 + 9/12, "feet"),
  38449. weight: math.unit(194, "lbs"),
  38450. name: "Front",
  38451. image: {
  38452. source: "./media/characters/zakail-sudekai/front.svg",
  38453. extra: 2696/2533,
  38454. bottom: 248/2944
  38455. }
  38456. },
  38457. maw: {
  38458. height: math.unit(1.35, "feet"),
  38459. name: "Maw",
  38460. image: {
  38461. source: "./media/characters/zakail-sudekai/maw.svg"
  38462. }
  38463. },
  38464. },
  38465. [
  38466. {
  38467. name: "Normal",
  38468. height: math.unit(5 + 9/12, "feet"),
  38469. default: true
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38475. {
  38476. front: {
  38477. height: math.unit(8 + 4/12, "feet"),
  38478. weight: math.unit(1200, "lb"),
  38479. name: "Front",
  38480. image: {
  38481. source: "./media/characters/eleanor/front.svg",
  38482. extra: 1226/1192,
  38483. bottom: 52/1278
  38484. }
  38485. },
  38486. back: {
  38487. height: math.unit(8 + 4/12, "feet"),
  38488. weight: math.unit(1200, "lb"),
  38489. name: "Back",
  38490. image: {
  38491. source: "./media/characters/eleanor/back.svg",
  38492. extra: 1242/1184,
  38493. bottom: 60/1302
  38494. }
  38495. },
  38496. head: {
  38497. height: math.unit(2.62, "feet"),
  38498. name: "Head",
  38499. image: {
  38500. source: "./media/characters/eleanor/head.svg"
  38501. }
  38502. },
  38503. },
  38504. [
  38505. {
  38506. name: "Normal",
  38507. height: math.unit(8 + 4/12, "feet"),
  38508. default: true
  38509. },
  38510. ]
  38511. ))
  38512. characterMakers.push(() => makeCharacter(
  38513. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38514. {
  38515. front: {
  38516. height: math.unit(8 + 4/12, "feet"),
  38517. weight: math.unit(750, "lb"),
  38518. name: "Front",
  38519. image: {
  38520. source: "./media/characters/tanya/front.svg",
  38521. extra: 1749/1615,
  38522. bottom: 33/1782
  38523. }
  38524. },
  38525. },
  38526. [
  38527. {
  38528. name: "Normal",
  38529. height: math.unit(8 + 4/12, "feet"),
  38530. default: true
  38531. },
  38532. ]
  38533. ))
  38534. characterMakers.push(() => makeCharacter(
  38535. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38536. {
  38537. front: {
  38538. height: math.unit(5, "feet"),
  38539. weight: math.unit(225, "lb"),
  38540. name: "Front",
  38541. image: {
  38542. source: "./media/characters/cindy/front.svg",
  38543. extra: 1320/1250,
  38544. bottom: 42/1362
  38545. }
  38546. },
  38547. frontDressed: {
  38548. height: math.unit(5, "feet"),
  38549. weight: math.unit(225, "lb"),
  38550. name: "Front (Dressed)",
  38551. image: {
  38552. source: "./media/characters/cindy/front-dressed.svg",
  38553. extra: 1320/1250,
  38554. bottom: 42/1362
  38555. }
  38556. },
  38557. back: {
  38558. height: math.unit(5, "feet"),
  38559. weight: math.unit(225, "lb"),
  38560. name: "Back",
  38561. image: {
  38562. source: "./media/characters/cindy/back.svg",
  38563. extra: 1384/1346,
  38564. bottom: 14/1398
  38565. }
  38566. },
  38567. },
  38568. [
  38569. {
  38570. name: "Normal",
  38571. height: math.unit(5, "feet"),
  38572. default: true
  38573. },
  38574. ]
  38575. ))
  38576. characterMakers.push(() => makeCharacter(
  38577. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38578. {
  38579. front: {
  38580. height: math.unit(6 + 9/12, "feet"),
  38581. weight: math.unit(440, "lb"),
  38582. name: "Front",
  38583. image: {
  38584. source: "./media/characters/wilbur-owen/front.svg",
  38585. extra: 1575/1448,
  38586. bottom: 72/1647
  38587. }
  38588. },
  38589. back: {
  38590. height: math.unit(6 + 9/12, "feet"),
  38591. weight: math.unit(440, "lb"),
  38592. name: "Back",
  38593. image: {
  38594. source: "./media/characters/wilbur-owen/back.svg",
  38595. extra: 1578/1445,
  38596. bottom: 36/1614
  38597. }
  38598. },
  38599. },
  38600. [
  38601. {
  38602. name: "Normal",
  38603. height: math.unit(6 + 9/12, "feet"),
  38604. default: true
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38610. {
  38611. front: {
  38612. height: math.unit(6 + 5/12, "feet"),
  38613. weight: math.unit(650, "lb"),
  38614. name: "Front",
  38615. image: {
  38616. source: "./media/characters/keegan/front.svg",
  38617. extra: 2387/2198,
  38618. bottom: 33/2420
  38619. }
  38620. },
  38621. side: {
  38622. height: math.unit(6 + 5/12, "feet"),
  38623. weight: math.unit(650, "lb"),
  38624. name: "Side",
  38625. image: {
  38626. source: "./media/characters/keegan/side.svg",
  38627. extra: 2390/2202,
  38628. bottom: 47/2437
  38629. }
  38630. },
  38631. back: {
  38632. height: math.unit(6 + 5/12, "feet"),
  38633. weight: math.unit(650, "lb"),
  38634. name: "Back",
  38635. image: {
  38636. source: "./media/characters/keegan/back.svg",
  38637. extra: 2418/2268,
  38638. bottom: 15/2433
  38639. }
  38640. },
  38641. frontSfw: {
  38642. height: math.unit(6 + 5/12, "feet"),
  38643. weight: math.unit(650, "lb"),
  38644. name: "Front (SFW)",
  38645. image: {
  38646. source: "./media/characters/keegan/front-sfw.svg",
  38647. extra: 2387/2198,
  38648. bottom: 33/2420
  38649. }
  38650. },
  38651. beans: {
  38652. height: math.unit(1.85, "feet"),
  38653. name: "Beans",
  38654. image: {
  38655. source: "./media/characters/keegan/beans.svg"
  38656. }
  38657. },
  38658. },
  38659. [
  38660. {
  38661. name: "Normal",
  38662. height: math.unit(6 + 5/12, "feet"),
  38663. default: true
  38664. },
  38665. ]
  38666. ))
  38667. characterMakers.push(() => makeCharacter(
  38668. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38669. {
  38670. front: {
  38671. height: math.unit(9, "feet"),
  38672. name: "Front",
  38673. image: {
  38674. source: "./media/characters/colton/front.svg",
  38675. extra: 1589/1326,
  38676. bottom: 139/1728
  38677. }
  38678. },
  38679. },
  38680. [
  38681. {
  38682. name: "Normal",
  38683. height: math.unit(9, "feet"),
  38684. default: true
  38685. },
  38686. ]
  38687. ))
  38688. characterMakers.push(() => makeCharacter(
  38689. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38690. {
  38691. front: {
  38692. height: math.unit(2 + 9/12, "feet"),
  38693. name: "Front",
  38694. image: {
  38695. source: "./media/characters/bora/front.svg",
  38696. extra: 1265/1250,
  38697. bottom: 24/1289
  38698. }
  38699. },
  38700. },
  38701. [
  38702. {
  38703. name: "Normal",
  38704. height: math.unit(2 + 9/12, "feet"),
  38705. default: true
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38711. {
  38712. front: {
  38713. height: math.unit(8, "feet"),
  38714. name: "Front",
  38715. image: {
  38716. source: "./media/characters/myu-myu/front.svg",
  38717. extra: 1949/1857,
  38718. bottom: 90/2039
  38719. }
  38720. },
  38721. },
  38722. [
  38723. {
  38724. name: "Normal",
  38725. height: math.unit(8, "feet"),
  38726. default: true
  38727. },
  38728. {
  38729. name: "Big",
  38730. height: math.unit(15, "feet")
  38731. },
  38732. {
  38733. name: "BIG",
  38734. height: math.unit(25, "feet")
  38735. },
  38736. ]
  38737. ))
  38738. characterMakers.push(() => makeCharacter(
  38739. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38740. {
  38741. side: {
  38742. height: math.unit(7 + 5/12, "feet"),
  38743. weight: math.unit(2800, "lb"),
  38744. name: "Side",
  38745. image: {
  38746. source: "./media/characters/haloren/side.svg",
  38747. extra: 1793/409,
  38748. bottom: 59/1852
  38749. }
  38750. },
  38751. frontPaw: {
  38752. height: math.unit(2.36, "feet"),
  38753. name: "Front paw",
  38754. image: {
  38755. source: "./media/characters/haloren/front-paw.svg"
  38756. }
  38757. },
  38758. hindPaw: {
  38759. height: math.unit(3.18, "feet"),
  38760. name: "Hind paw",
  38761. image: {
  38762. source: "./media/characters/haloren/hind-paw.svg"
  38763. }
  38764. },
  38765. maw: {
  38766. height: math.unit(5.05, "feet"),
  38767. name: "Maw",
  38768. image: {
  38769. source: "./media/characters/haloren/maw.svg"
  38770. }
  38771. },
  38772. dick: {
  38773. height: math.unit(2.90, "feet"),
  38774. name: "Dick",
  38775. image: {
  38776. source: "./media/characters/haloren/dick.svg"
  38777. }
  38778. },
  38779. },
  38780. [
  38781. {
  38782. name: "Normal",
  38783. height: math.unit(7 + 5/12, "feet"),
  38784. default: true
  38785. },
  38786. {
  38787. name: "Enhanced",
  38788. height: math.unit(14 + 3/12, "feet")
  38789. },
  38790. ]
  38791. ))
  38792. characterMakers.push(() => makeCharacter(
  38793. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38794. {
  38795. front: {
  38796. height: math.unit(171, "cm"),
  38797. name: "Front",
  38798. image: {
  38799. source: "./media/characters/kimmy/front.svg",
  38800. extra: 1491/1435,
  38801. bottom: 53/1544
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Small",
  38808. height: math.unit(9, "cm")
  38809. },
  38810. {
  38811. name: "Normal",
  38812. height: math.unit(171, "cm"),
  38813. default: true
  38814. },
  38815. ]
  38816. ))
  38817. characterMakers.push(() => makeCharacter(
  38818. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38819. {
  38820. front: {
  38821. height: math.unit(8, "feet"),
  38822. weight: math.unit(300, "lb"),
  38823. name: "Front",
  38824. image: {
  38825. source: "./media/characters/galeboomer/front.svg",
  38826. extra: 4651/4415,
  38827. bottom: 162/4813
  38828. }
  38829. },
  38830. back: {
  38831. height: math.unit(8, "feet"),
  38832. weight: math.unit(300, "lb"),
  38833. name: "Back",
  38834. image: {
  38835. source: "./media/characters/galeboomer/back.svg",
  38836. extra: 4544/4314,
  38837. bottom: 16/4560
  38838. }
  38839. },
  38840. frontAlt: {
  38841. height: math.unit(8, "feet"),
  38842. weight: math.unit(300, "lb"),
  38843. name: "Front (Alt)",
  38844. image: {
  38845. source: "./media/characters/galeboomer/front-alt.svg",
  38846. extra: 4458/4228,
  38847. bottom: 68/4526
  38848. }
  38849. },
  38850. maw: {
  38851. height: math.unit(1.2, "feet"),
  38852. name: "Maw",
  38853. image: {
  38854. source: "./media/characters/galeboomer/maw.svg"
  38855. }
  38856. },
  38857. },
  38858. [
  38859. {
  38860. name: "Normal",
  38861. height: math.unit(8, "feet"),
  38862. default: true
  38863. },
  38864. ]
  38865. ))
  38866. characterMakers.push(() => makeCharacter(
  38867. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38868. {
  38869. front: {
  38870. height: math.unit(5 + 9/12, "feet"),
  38871. weight: math.unit(120, "lb"),
  38872. name: "Front",
  38873. image: {
  38874. source: "./media/characters/chyr/front.svg",
  38875. extra: 1323/1254,
  38876. bottom: 63/1386
  38877. }
  38878. },
  38879. back: {
  38880. height: math.unit(5 + 9/12, "feet"),
  38881. weight: math.unit(120, "lb"),
  38882. name: "Back",
  38883. image: {
  38884. source: "./media/characters/chyr/back.svg",
  38885. extra: 1323/1252,
  38886. bottom: 48/1371
  38887. }
  38888. },
  38889. },
  38890. [
  38891. {
  38892. name: "Normal",
  38893. height: math.unit(5 + 9/12, "feet"),
  38894. default: true
  38895. },
  38896. ]
  38897. ))
  38898. characterMakers.push(() => makeCharacter(
  38899. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38900. {
  38901. front: {
  38902. height: math.unit(7, "feet"),
  38903. weight: math.unit(310, "lb"),
  38904. name: "Front",
  38905. image: {
  38906. source: "./media/characters/solarus/front.svg",
  38907. extra: 2415/2021,
  38908. bottom: 103/2518
  38909. }
  38910. },
  38911. back: {
  38912. height: math.unit(7, "feet"),
  38913. weight: math.unit(310, "lb"),
  38914. name: "Back",
  38915. image: {
  38916. source: "./media/characters/solarus/back.svg",
  38917. extra: 2463/2089,
  38918. bottom: 79/2542
  38919. }
  38920. },
  38921. },
  38922. [
  38923. {
  38924. name: "Normal",
  38925. height: math.unit(7, "feet"),
  38926. default: true
  38927. },
  38928. ]
  38929. ))
  38930. characterMakers.push(() => makeCharacter(
  38931. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38932. {
  38933. front: {
  38934. height: math.unit(16, "feet"),
  38935. name: "Front",
  38936. image: {
  38937. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38938. extra: 1844/1780,
  38939. bottom: 58/1902
  38940. }
  38941. },
  38942. winterCoat: {
  38943. height: math.unit(16, "feet"),
  38944. name: "Winter Coat",
  38945. image: {
  38946. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38947. extra: 1807/1775,
  38948. bottom: 69/1876
  38949. }
  38950. },
  38951. },
  38952. [
  38953. {
  38954. name: "Normal",
  38955. height: math.unit(16, "feet"),
  38956. default: true
  38957. },
  38958. {
  38959. name: "Chicago Size",
  38960. height: math.unit(560, "feet")
  38961. },
  38962. ]
  38963. ))
  38964. characterMakers.push(() => makeCharacter(
  38965. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38966. {
  38967. front: {
  38968. height: math.unit(11 + 6/12, "feet"),
  38969. weight: math.unit(1366, "lb"),
  38970. name: "Front",
  38971. image: {
  38972. source: "./media/characters/lexor/front.svg",
  38973. extra: 1560/1481,
  38974. bottom: 211/1771
  38975. }
  38976. },
  38977. back: {
  38978. height: math.unit(11 + 6/12, "feet"),
  38979. weight: math.unit(1366, "lb"),
  38980. name: "Back",
  38981. image: {
  38982. source: "./media/characters/lexor/back.svg",
  38983. extra: 1614/1533,
  38984. bottom: 76/1690
  38985. }
  38986. },
  38987. maw: {
  38988. height: math.unit(3, "feet"),
  38989. name: "Maw",
  38990. image: {
  38991. source: "./media/characters/lexor/maw.svg"
  38992. }
  38993. },
  38994. dick: {
  38995. height: math.unit(2.59, "feet"),
  38996. name: "Dick",
  38997. image: {
  38998. source: "./media/characters/lexor/dick.svg"
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Normal",
  39005. height: math.unit(11 + 6/12, "feet"),
  39006. default: true
  39007. },
  39008. ]
  39009. ))
  39010. characterMakers.push(() => makeCharacter(
  39011. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39012. {
  39013. front: {
  39014. height: math.unit(5 + 8/12, "feet"),
  39015. name: "Front",
  39016. image: {
  39017. source: "./media/characters/magnum/front.svg",
  39018. extra: 942/855,
  39019. bottom: 26/968
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Normal",
  39026. height: math.unit(5 + 8/12, "feet"),
  39027. default: true
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39033. {
  39034. front: {
  39035. height: math.unit(18 + 4/12, "feet"),
  39036. weight: math.unit(1500, "kg"),
  39037. name: "Front",
  39038. image: {
  39039. source: "./media/characters/solas-sharpsman/front.svg",
  39040. extra: 1698/1589,
  39041. bottom: 0/1698
  39042. }
  39043. },
  39044. },
  39045. [
  39046. {
  39047. name: "Normal",
  39048. height: math.unit(18 + 4/12, "feet"),
  39049. default: true
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39055. {
  39056. front: {
  39057. height: math.unit(5 + 5/12, "feet"),
  39058. weight: math.unit(180, "lb"),
  39059. name: "Front",
  39060. image: {
  39061. source: "./media/characters/october/front.svg",
  39062. extra: 1800/1650,
  39063. bottom: 0/1800
  39064. }
  39065. },
  39066. frontNsfw: {
  39067. height: math.unit(5 + 5/12, "feet"),
  39068. weight: math.unit(180, "lb"),
  39069. name: "Front (NSFW)",
  39070. image: {
  39071. source: "./media/characters/october/front-nsfw.svg",
  39072. extra: 1392/1307,
  39073. bottom: 42/1434
  39074. }
  39075. },
  39076. },
  39077. [
  39078. {
  39079. name: "Normal",
  39080. height: math.unit(5 + 5/12, "feet"),
  39081. default: true
  39082. },
  39083. ]
  39084. ))
  39085. characterMakers.push(() => makeCharacter(
  39086. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39087. {
  39088. front: {
  39089. height: math.unit(8 + 6/12, "feet"),
  39090. name: "Front",
  39091. image: {
  39092. source: "./media/characters/essynkardi/front.svg",
  39093. extra: 1541/1457,
  39094. bottom: 47/1588
  39095. }
  39096. },
  39097. },
  39098. [
  39099. {
  39100. name: "Normal",
  39101. height: math.unit(8 + 6/12, "feet"),
  39102. default: true
  39103. },
  39104. ]
  39105. ))
  39106. characterMakers.push(() => makeCharacter(
  39107. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39108. {
  39109. front: {
  39110. height: math.unit(6 + 6/12, "feet"),
  39111. weight: math.unit(7, "lb"),
  39112. name: "Front",
  39113. image: {
  39114. source: "./media/characters/icky/front.svg",
  39115. extra: 813/782,
  39116. bottom: 66/879
  39117. }
  39118. },
  39119. back: {
  39120. height: math.unit(6 + 6/12, "feet"),
  39121. weight: math.unit(7, "lb"),
  39122. name: "Back",
  39123. image: {
  39124. source: "./media/characters/icky/back.svg",
  39125. extra: 754/735,
  39126. bottom: 56/810
  39127. }
  39128. },
  39129. },
  39130. [
  39131. {
  39132. name: "Normal",
  39133. height: math.unit(6 + 6/12, "feet"),
  39134. default: true
  39135. },
  39136. ]
  39137. ))
  39138. characterMakers.push(() => makeCharacter(
  39139. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39140. {
  39141. front: {
  39142. height: math.unit(15, "feet"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/rojas/front.svg",
  39146. extra: 1462/1408,
  39147. bottom: 95/1557
  39148. }
  39149. },
  39150. back: {
  39151. height: math.unit(15, "feet"),
  39152. name: "Back",
  39153. image: {
  39154. source: "./media/characters/rojas/back.svg",
  39155. extra: 1023/954,
  39156. bottom: 28/1051
  39157. }
  39158. },
  39159. },
  39160. [
  39161. {
  39162. name: "Normal",
  39163. height: math.unit(15, "feet"),
  39164. default: true
  39165. },
  39166. ]
  39167. ))
  39168. characterMakers.push(() => makeCharacter(
  39169. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39170. {
  39171. frontHuman: {
  39172. height: math.unit(5 + 7/12, "feet"),
  39173. name: "Front (Human)",
  39174. image: {
  39175. source: "./media/characters/alek-dryagan/front-human.svg",
  39176. extra: 1687/1667,
  39177. bottom: 69/1756
  39178. }
  39179. },
  39180. backHuman: {
  39181. height: math.unit(5 + 7/12, "feet"),
  39182. name: "Back (Human)",
  39183. image: {
  39184. source: "./media/characters/alek-dryagan/back-human.svg",
  39185. extra: 1670/1649,
  39186. bottom: 65/1735
  39187. }
  39188. },
  39189. frontDemi: {
  39190. height: math.unit(65, "feet"),
  39191. name: "Front (Demi)",
  39192. image: {
  39193. source: "./media/characters/alek-dryagan/front-demi.svg",
  39194. extra: 1669/1642,
  39195. bottom: 49/1718
  39196. }
  39197. },
  39198. backDemi: {
  39199. height: math.unit(65, "feet"),
  39200. name: "Back (Demi)",
  39201. image: {
  39202. source: "./media/characters/alek-dryagan/back-demi.svg",
  39203. extra: 1658/1637,
  39204. bottom: 40/1698
  39205. }
  39206. },
  39207. mawHuman: {
  39208. height: math.unit(0.3, "feet"),
  39209. name: "Maw (Human)",
  39210. image: {
  39211. source: "./media/characters/alek-dryagan/maw-human.svg"
  39212. }
  39213. },
  39214. mawDemi: {
  39215. height: math.unit(3.8, "feet"),
  39216. name: "Maw (Demi)",
  39217. image: {
  39218. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39219. }
  39220. },
  39221. },
  39222. [
  39223. {
  39224. name: "Normal",
  39225. height: math.unit(5 + 7/12, "feet"),
  39226. default: true
  39227. },
  39228. ]
  39229. ))
  39230. characterMakers.push(() => makeCharacter(
  39231. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39232. {
  39233. frontHuman: {
  39234. height: math.unit(5 + 2/12, "feet"),
  39235. name: "Front (Human)",
  39236. image: {
  39237. source: "./media/characters/gen/front-human.svg",
  39238. extra: 1627/1538,
  39239. bottom: 71/1698
  39240. }
  39241. },
  39242. backHuman: {
  39243. height: math.unit(5 + 2/12, "feet"),
  39244. name: "Back (Human)",
  39245. image: {
  39246. source: "./media/characters/gen/back-human.svg",
  39247. extra: 1638/1548,
  39248. bottom: 69/1707
  39249. }
  39250. },
  39251. frontDemi: {
  39252. height: math.unit(5 + 2/12, "feet"),
  39253. name: "Front (Demi)",
  39254. image: {
  39255. source: "./media/characters/gen/front-demi.svg",
  39256. extra: 1627/1538,
  39257. bottom: 71/1698
  39258. }
  39259. },
  39260. backDemi: {
  39261. height: math.unit(5 + 2/12, "feet"),
  39262. name: "Back (Demi)",
  39263. image: {
  39264. source: "./media/characters/gen/back-demi.svg",
  39265. extra: 1638/1548,
  39266. bottom: 69/1707
  39267. }
  39268. },
  39269. },
  39270. [
  39271. {
  39272. name: "Normal",
  39273. height: math.unit(5 + 2/12, "feet"),
  39274. default: true
  39275. },
  39276. ]
  39277. ))
  39278. characterMakers.push(() => makeCharacter(
  39279. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39280. {
  39281. frontImp: {
  39282. height: math.unit(1 + 11/12, "feet"),
  39283. name: "Front (Imp)",
  39284. image: {
  39285. source: "./media/characters/max-kobold/front-imp.svg",
  39286. extra: 1238/1134,
  39287. bottom: 81/1319
  39288. }
  39289. },
  39290. backImp: {
  39291. height: math.unit(1 + 11/12, "feet"),
  39292. name: "Back (Imp)",
  39293. image: {
  39294. source: "./media/characters/max-kobold/back-imp.svg",
  39295. extra: 1334/1175,
  39296. bottom: 34/1368
  39297. }
  39298. },
  39299. frontDemi: {
  39300. height: math.unit(5 + 9/12, "feet"),
  39301. name: "Front (Demi)",
  39302. image: {
  39303. source: "./media/characters/max-kobold/front-demi.svg",
  39304. extra: 1715/1685,
  39305. bottom: 54/1769
  39306. }
  39307. },
  39308. backDemi: {
  39309. height: math.unit(5 + 9/12, "feet"),
  39310. name: "Back (Demi)",
  39311. image: {
  39312. source: "./media/characters/max-kobold/back-demi.svg",
  39313. extra: 1752/1729,
  39314. bottom: 41/1793
  39315. }
  39316. },
  39317. handImp: {
  39318. height: math.unit(0.45, "feet"),
  39319. name: "Hand (Imp)",
  39320. image: {
  39321. source: "./media/characters/max-kobold/hand.svg"
  39322. }
  39323. },
  39324. pawImp: {
  39325. height: math.unit(0.46, "feet"),
  39326. name: "Paw (Imp)",
  39327. image: {
  39328. source: "./media/characters/max-kobold/paw.svg"
  39329. }
  39330. },
  39331. handDemi: {
  39332. height: math.unit(0.80, "feet"),
  39333. name: "Hand (Demi)",
  39334. image: {
  39335. source: "./media/characters/max-kobold/hand.svg"
  39336. }
  39337. },
  39338. pawDemi: {
  39339. height: math.unit(1.1, "feet"),
  39340. name: "Paw (Demi)",
  39341. image: {
  39342. source: "./media/characters/max-kobold/paw.svg"
  39343. }
  39344. },
  39345. headImp: {
  39346. height: math.unit(1.33, "feet"),
  39347. name: "Head (Imp)",
  39348. image: {
  39349. source: "./media/characters/max-kobold/head-imp.svg"
  39350. }
  39351. },
  39352. mawImp: {
  39353. height: math.unit(0.75, "feet"),
  39354. name: "Maw (Imp)",
  39355. image: {
  39356. source: "./media/characters/max-kobold/maw-imp.svg"
  39357. }
  39358. },
  39359. mawDemi: {
  39360. height: math.unit(0.42, "feet"),
  39361. name: "Maw (Demi)",
  39362. image: {
  39363. source: "./media/characters/max-kobold/maw-demi.svg"
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "Normal",
  39370. height: math.unit(1 + 11/12, "feet"),
  39371. default: true
  39372. },
  39373. ]
  39374. ))
  39375. characterMakers.push(() => makeCharacter(
  39376. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39377. {
  39378. front: {
  39379. height: math.unit(7 + 5/12, "feet"),
  39380. name: "Front",
  39381. image: {
  39382. source: "./media/characters/carbon/front.svg",
  39383. extra: 1754/1689,
  39384. bottom: 65/1819
  39385. }
  39386. },
  39387. back: {
  39388. height: math.unit(7 + 5/12, "feet"),
  39389. name: "Back",
  39390. image: {
  39391. source: "./media/characters/carbon/back.svg",
  39392. extra: 1762/1695,
  39393. bottom: 24/1786
  39394. }
  39395. },
  39396. frontGigantamax: {
  39397. height: math.unit(150, "feet"),
  39398. name: "Front (Gigantamax)",
  39399. image: {
  39400. source: "./media/characters/carbon/front-gigantamax.svg",
  39401. extra: 1826/1669,
  39402. bottom: 59/1885
  39403. }
  39404. },
  39405. backGigantamax: {
  39406. height: math.unit(150, "feet"),
  39407. name: "Back (Gigantamax)",
  39408. image: {
  39409. source: "./media/characters/carbon/back-gigantamax.svg",
  39410. extra: 1796/1653,
  39411. bottom: 53/1849
  39412. }
  39413. },
  39414. maw: {
  39415. height: math.unit(0.48, "feet"),
  39416. name: "Maw",
  39417. image: {
  39418. source: "./media/characters/carbon/maw.svg"
  39419. }
  39420. },
  39421. mawGigantamax: {
  39422. height: math.unit(7.5, "feet"),
  39423. name: "Maw (Gigantamax)",
  39424. image: {
  39425. source: "./media/characters/carbon/maw-gigantamax.svg"
  39426. }
  39427. },
  39428. },
  39429. [
  39430. {
  39431. name: "Normal",
  39432. height: math.unit(7 + 5/12, "feet"),
  39433. default: true
  39434. },
  39435. ]
  39436. ))
  39437. characterMakers.push(() => makeCharacter(
  39438. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39439. {
  39440. front: {
  39441. height: math.unit(6, "feet"),
  39442. name: "Front",
  39443. image: {
  39444. source: "./media/characters/maverick/front.svg",
  39445. extra: 1672/1661,
  39446. bottom: 85/1757
  39447. }
  39448. },
  39449. back: {
  39450. height: math.unit(6, "feet"),
  39451. name: "Back",
  39452. image: {
  39453. source: "./media/characters/maverick/back.svg",
  39454. extra: 1642/1631,
  39455. bottom: 38/1680
  39456. }
  39457. },
  39458. },
  39459. [
  39460. {
  39461. name: "Normal",
  39462. height: math.unit(6, "feet"),
  39463. default: true
  39464. },
  39465. ]
  39466. ))
  39467. characterMakers.push(() => makeCharacter(
  39468. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39469. {
  39470. front: {
  39471. height: math.unit(15, "feet"),
  39472. weight: math.unit(615, "lb"),
  39473. name: "Front",
  39474. image: {
  39475. source: "./media/characters/grockle/front.svg",
  39476. extra: 1535/1427,
  39477. bottom: 56/1591
  39478. }
  39479. },
  39480. },
  39481. [
  39482. {
  39483. name: "Normal",
  39484. height: math.unit(15, "feet"),
  39485. default: true
  39486. },
  39487. {
  39488. name: "Large",
  39489. height: math.unit(150, "feet")
  39490. },
  39491. {
  39492. name: "Macro",
  39493. height: math.unit(1876, "feet")
  39494. },
  39495. {
  39496. name: "Mega Macro",
  39497. height: math.unit(121940, "feet")
  39498. },
  39499. {
  39500. name: "Giga Macro",
  39501. height: math.unit(750, "km")
  39502. },
  39503. {
  39504. name: "Tera Macro",
  39505. height: math.unit(750000, "km")
  39506. },
  39507. {
  39508. name: "Galactic",
  39509. height: math.unit(1.4e5, "km")
  39510. },
  39511. {
  39512. name: "Godlike",
  39513. height: math.unit(9.8e280, "galaxies")
  39514. },
  39515. ]
  39516. ))
  39517. characterMakers.push(() => makeCharacter(
  39518. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39519. {
  39520. front: {
  39521. height: math.unit(11, "meters"),
  39522. weight: math.unit(20, "tonnes"),
  39523. name: "Front",
  39524. image: {
  39525. source: "./media/characters/alistair/front.svg",
  39526. extra: 1265/1009,
  39527. bottom: 93/1358
  39528. }
  39529. },
  39530. },
  39531. [
  39532. {
  39533. name: "Normal",
  39534. height: math.unit(11, "meters"),
  39535. default: true
  39536. },
  39537. ]
  39538. ))
  39539. characterMakers.push(() => makeCharacter(
  39540. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39541. {
  39542. front: {
  39543. height: math.unit(5 + 8/12, "feet"),
  39544. name: "Front",
  39545. image: {
  39546. source: "./media/characters/haruka/front.svg",
  39547. extra: 2012/1952,
  39548. bottom: 0/2012
  39549. }
  39550. },
  39551. },
  39552. [
  39553. {
  39554. name: "Normal",
  39555. height: math.unit(5 + 8/12, "feet"),
  39556. default: true
  39557. },
  39558. ]
  39559. ))
  39560. characterMakers.push(() => makeCharacter(
  39561. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39562. {
  39563. back: {
  39564. height: math.unit(9, "feet"),
  39565. name: "Back",
  39566. image: {
  39567. source: "./media/characters/vivian-sylveon/back.svg",
  39568. extra: 1853/1714,
  39569. bottom: 0/1853
  39570. }
  39571. },
  39572. },
  39573. [
  39574. {
  39575. name: "Normal",
  39576. height: math.unit(9, "feet"),
  39577. default: true
  39578. },
  39579. {
  39580. name: "Macro",
  39581. height: math.unit(500, "feet")
  39582. },
  39583. {
  39584. name: "Megamacro",
  39585. height: math.unit(600, "miles")
  39586. },
  39587. {
  39588. name: "Gigamacro",
  39589. height: math.unit(30000, "miles")
  39590. },
  39591. ]
  39592. ))
  39593. characterMakers.push(() => makeCharacter(
  39594. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39595. {
  39596. anthro: {
  39597. height: math.unit(5 + 10/12, "feet"),
  39598. weight: math.unit(100, "lb"),
  39599. name: "Anthro",
  39600. image: {
  39601. source: "./media/characters/daiki/anthro.svg",
  39602. extra: 1115/1027,
  39603. bottom: 69/1184
  39604. }
  39605. },
  39606. feral: {
  39607. height: math.unit(200, "feet"),
  39608. name: "Feral",
  39609. image: {
  39610. source: "./media/characters/daiki/feral.svg",
  39611. extra: 1256/313,
  39612. bottom: 39/1295
  39613. }
  39614. },
  39615. feralHead: {
  39616. height: math.unit(171, "feet"),
  39617. name: "Feral Head",
  39618. image: {
  39619. source: "./media/characters/daiki/feral-head.svg"
  39620. }
  39621. },
  39622. manaDragon: {
  39623. height: math.unit(170, "meters"),
  39624. name: "Mana-dragon",
  39625. image: {
  39626. source: "./media/characters/daiki/mana-dragon.svg",
  39627. extra: 763/420,
  39628. bottom: 97/860
  39629. }
  39630. },
  39631. },
  39632. [
  39633. {
  39634. name: "Normal",
  39635. height: math.unit(5 + 10/12, "feet"),
  39636. default: true
  39637. },
  39638. ]
  39639. ))
  39640. characterMakers.push(() => makeCharacter(
  39641. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39642. {
  39643. fullyEquippedFront: {
  39644. height: math.unit(3 + 1/12, "feet"),
  39645. weight: math.unit(24, "lb"),
  39646. name: "Fully Equipped (Front)",
  39647. image: {
  39648. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39649. extra: 687/605,
  39650. bottom: 18/705
  39651. }
  39652. },
  39653. fullyEquippedBack: {
  39654. height: math.unit(3 + 1/12, "feet"),
  39655. weight: math.unit(24, "lb"),
  39656. name: "Fully Equipped (Back)",
  39657. image: {
  39658. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39659. extra: 689/590,
  39660. bottom: 18/707
  39661. }
  39662. },
  39663. dailyWear: {
  39664. height: math.unit(3 + 1/12, "feet"),
  39665. weight: math.unit(24, "lb"),
  39666. name: "Daily Wear",
  39667. image: {
  39668. source: "./media/characters/tea-spot/daily-wear.svg",
  39669. extra: 701/620,
  39670. bottom: 21/722
  39671. }
  39672. },
  39673. maidWork: {
  39674. height: math.unit(3 + 1/12, "feet"),
  39675. weight: math.unit(24, "lb"),
  39676. name: "Maid Work",
  39677. image: {
  39678. source: "./media/characters/tea-spot/maid-work.svg",
  39679. extra: 693/609,
  39680. bottom: 15/708
  39681. }
  39682. },
  39683. },
  39684. [
  39685. {
  39686. name: "Normal",
  39687. height: math.unit(3 + 1/12, "feet"),
  39688. default: true
  39689. },
  39690. ]
  39691. ))
  39692. characterMakers.push(() => makeCharacter(
  39693. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39694. {
  39695. front: {
  39696. height: math.unit(175, "cm"),
  39697. weight: math.unit(75, "kg"),
  39698. name: "Front",
  39699. image: {
  39700. source: "./media/characters/chee/front.svg",
  39701. extra: 1796/1740,
  39702. bottom: 40/1836
  39703. }
  39704. },
  39705. },
  39706. [
  39707. {
  39708. name: "Micro-Micro",
  39709. height: math.unit(1, "nm")
  39710. },
  39711. {
  39712. name: "Micro-erst",
  39713. height: math.unit(1, "micrometer")
  39714. },
  39715. {
  39716. name: "Micro-er",
  39717. height: math.unit(1, "cm")
  39718. },
  39719. {
  39720. name: "Normal",
  39721. height: math.unit(175, "cm"),
  39722. default: true
  39723. },
  39724. {
  39725. name: "Macro",
  39726. height: math.unit(100, "m")
  39727. },
  39728. {
  39729. name: "Macro-er",
  39730. height: math.unit(1, "km")
  39731. },
  39732. {
  39733. name: "Macro-erst",
  39734. height: math.unit(10, "km")
  39735. },
  39736. {
  39737. name: "Macro-Macro",
  39738. height: math.unit(100, "km")
  39739. },
  39740. ]
  39741. ))
  39742. characterMakers.push(() => makeCharacter(
  39743. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39744. {
  39745. front: {
  39746. height: math.unit(11 + 9/12, "feet"),
  39747. weight: math.unit(935, "lb"),
  39748. name: "Front",
  39749. image: {
  39750. source: "./media/characters/kingsley/front.svg",
  39751. extra: 1803/1674,
  39752. bottom: 127/1930
  39753. }
  39754. },
  39755. frontNude: {
  39756. height: math.unit(11 + 9/12, "feet"),
  39757. weight: math.unit(935, "lb"),
  39758. name: "Front (Nude)",
  39759. image: {
  39760. source: "./media/characters/kingsley/front-nude.svg",
  39761. extra: 1803/1674,
  39762. bottom: 127/1930
  39763. }
  39764. },
  39765. },
  39766. [
  39767. {
  39768. name: "Normal",
  39769. height: math.unit(11 + 9/12, "feet"),
  39770. default: true
  39771. },
  39772. ]
  39773. ))
  39774. characterMakers.push(() => makeCharacter(
  39775. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39776. {
  39777. side: {
  39778. height: math.unit(9, "feet"),
  39779. name: "Side",
  39780. image: {
  39781. source: "./media/characters/rymel/side.svg",
  39782. extra: 792/469,
  39783. bottom: 121/913
  39784. }
  39785. },
  39786. maw: {
  39787. height: math.unit(2.4, "meters"),
  39788. name: "Maw",
  39789. image: {
  39790. source: "./media/characters/rymel/maw.svg"
  39791. }
  39792. },
  39793. },
  39794. [
  39795. {
  39796. name: "House Drake",
  39797. height: math.unit(2, "feet")
  39798. },
  39799. {
  39800. name: "Reduced",
  39801. height: math.unit(4.5, "feet")
  39802. },
  39803. {
  39804. name: "Normal",
  39805. height: math.unit(9, "feet"),
  39806. default: true
  39807. },
  39808. ]
  39809. ))
  39810. characterMakers.push(() => makeCharacter(
  39811. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39812. {
  39813. front: {
  39814. height: math.unit(1.74, "meters"),
  39815. weight: math.unit(55, "kg"),
  39816. name: "Front",
  39817. image: {
  39818. source: "./media/characters/rubus/front.svg",
  39819. extra: 1894/1742,
  39820. bottom: 44/1938
  39821. }
  39822. },
  39823. },
  39824. [
  39825. {
  39826. name: "Normal",
  39827. height: math.unit(1.74, "meters"),
  39828. default: true
  39829. },
  39830. ]
  39831. ))
  39832. characterMakers.push(() => makeCharacter(
  39833. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39834. {
  39835. front: {
  39836. height: math.unit(5 + 2/12, "feet"),
  39837. weight: math.unit(112, "lb"),
  39838. name: "Front",
  39839. image: {
  39840. source: "./media/characters/cassie-kingston/front.svg",
  39841. extra: 1438/1390,
  39842. bottom: 47/1485
  39843. }
  39844. },
  39845. },
  39846. [
  39847. {
  39848. name: "Normal",
  39849. height: math.unit(5 + 2/12, "feet"),
  39850. default: true
  39851. },
  39852. {
  39853. name: "Macro",
  39854. height: math.unit(128, "feet")
  39855. },
  39856. {
  39857. name: "Megamacro",
  39858. height: math.unit(2.56, "miles")
  39859. },
  39860. ]
  39861. ))
  39862. characterMakers.push(() => makeCharacter(
  39863. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39864. {
  39865. front: {
  39866. height: math.unit(7, "feet"),
  39867. name: "Front",
  39868. image: {
  39869. source: "./media/characters/fox/front.svg",
  39870. extra: 1798/1703,
  39871. bottom: 55/1853
  39872. }
  39873. },
  39874. back: {
  39875. height: math.unit(7, "feet"),
  39876. name: "Back",
  39877. image: {
  39878. source: "./media/characters/fox/back.svg",
  39879. extra: 1748/1649,
  39880. bottom: 32/1780
  39881. }
  39882. },
  39883. head: {
  39884. height: math.unit(1.95, "feet"),
  39885. name: "Head",
  39886. image: {
  39887. source: "./media/characters/fox/head.svg"
  39888. }
  39889. },
  39890. dick: {
  39891. height: math.unit(1.33, "feet"),
  39892. name: "Dick",
  39893. image: {
  39894. source: "./media/characters/fox/dick.svg"
  39895. }
  39896. },
  39897. foot: {
  39898. height: math.unit(1, "feet"),
  39899. name: "Foot",
  39900. image: {
  39901. source: "./media/characters/fox/foot.svg"
  39902. }
  39903. },
  39904. paw: {
  39905. height: math.unit(0.92, "feet"),
  39906. name: "Paw",
  39907. image: {
  39908. source: "./media/characters/fox/paw.svg"
  39909. }
  39910. },
  39911. },
  39912. [
  39913. {
  39914. name: "Small",
  39915. height: math.unit(3, "inches")
  39916. },
  39917. {
  39918. name: "\"Realistic\"",
  39919. height: math.unit(7, "feet")
  39920. },
  39921. {
  39922. name: "Normal",
  39923. height: math.unit(150, "feet"),
  39924. default: true
  39925. },
  39926. {
  39927. name: "BIG",
  39928. height: math.unit(1200, "feet")
  39929. },
  39930. {
  39931. name: "👀",
  39932. height: math.unit(5, "miles")
  39933. },
  39934. {
  39935. name: "👀👀👀",
  39936. height: math.unit(64, "miles")
  39937. },
  39938. ]
  39939. ))
  39940. characterMakers.push(() => makeCharacter(
  39941. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39942. {
  39943. front: {
  39944. height: math.unit(625, "feet"),
  39945. name: "Front",
  39946. image: {
  39947. source: "./media/characters/asonja-rossa/front.svg",
  39948. extra: 1833/1686,
  39949. bottom: 24/1857
  39950. }
  39951. },
  39952. back: {
  39953. height: math.unit(625, "feet"),
  39954. name: "Back",
  39955. image: {
  39956. source: "./media/characters/asonja-rossa/back.svg",
  39957. extra: 1852/1753,
  39958. bottom: 26/1878
  39959. }
  39960. },
  39961. },
  39962. [
  39963. {
  39964. name: "Macro",
  39965. height: math.unit(625, "feet"),
  39966. default: true
  39967. },
  39968. ]
  39969. ))
  39970. characterMakers.push(() => makeCharacter(
  39971. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39972. {
  39973. side: {
  39974. height: math.unit(8, "feet"),
  39975. name: "Side",
  39976. image: {
  39977. source: "./media/characters/rezukii/side.svg",
  39978. extra: 979/542,
  39979. bottom: 87/1066
  39980. }
  39981. },
  39982. sitting: {
  39983. height: math.unit(14.6, "feet"),
  39984. name: "Sitting",
  39985. image: {
  39986. source: "./media/characters/rezukii/sitting.svg",
  39987. extra: 1023/813,
  39988. bottom: 45/1068
  39989. }
  39990. },
  39991. },
  39992. [
  39993. {
  39994. name: "Tiny",
  39995. height: math.unit(2, "feet")
  39996. },
  39997. {
  39998. name: "Smol",
  39999. height: math.unit(4, "feet")
  40000. },
  40001. {
  40002. name: "Normal",
  40003. height: math.unit(8, "feet"),
  40004. default: true
  40005. },
  40006. {
  40007. name: "Big",
  40008. height: math.unit(12, "feet")
  40009. },
  40010. {
  40011. name: "Macro",
  40012. height: math.unit(30, "feet")
  40013. },
  40014. ]
  40015. ))
  40016. characterMakers.push(() => makeCharacter(
  40017. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40018. {
  40019. front: {
  40020. height: math.unit(14, "feet"),
  40021. weight: math.unit(9.5, "tonnes"),
  40022. name: "Front",
  40023. image: {
  40024. source: "./media/characters/dawnheart/front.svg",
  40025. extra: 2792/2675,
  40026. bottom: 64/2856
  40027. }
  40028. },
  40029. },
  40030. [
  40031. {
  40032. name: "Normal",
  40033. height: math.unit(14, "feet"),
  40034. default: true
  40035. },
  40036. ]
  40037. ))
  40038. characterMakers.push(() => makeCharacter(
  40039. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40040. {
  40041. front: {
  40042. height: math.unit(1.7, "m"),
  40043. name: "Front",
  40044. image: {
  40045. source: "./media/characters/gladi/front.svg",
  40046. extra: 1460/1362,
  40047. bottom: 19/1479
  40048. }
  40049. },
  40050. back: {
  40051. height: math.unit(1.7, "m"),
  40052. name: "Back",
  40053. image: {
  40054. source: "./media/characters/gladi/back.svg",
  40055. extra: 1459/1357,
  40056. bottom: 12/1471
  40057. }
  40058. },
  40059. feral: {
  40060. height: math.unit(2.05, "m"),
  40061. name: "Feral",
  40062. image: {
  40063. source: "./media/characters/gladi/feral.svg",
  40064. extra: 821/557,
  40065. bottom: 91/912
  40066. }
  40067. },
  40068. },
  40069. [
  40070. {
  40071. name: "Shortest",
  40072. height: math.unit(70, "cm")
  40073. },
  40074. {
  40075. name: "Normal",
  40076. height: math.unit(1.7, "m")
  40077. },
  40078. {
  40079. name: "Macro",
  40080. height: math.unit(10, "m"),
  40081. default: true
  40082. },
  40083. {
  40084. name: "Tallest",
  40085. height: math.unit(200, "m")
  40086. },
  40087. ]
  40088. ))
  40089. characterMakers.push(() => makeCharacter(
  40090. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40091. {
  40092. front: {
  40093. height: math.unit(5 + 7/12, "feet"),
  40094. weight: math.unit(2, "tons"),
  40095. name: "Front",
  40096. image: {
  40097. source: "./media/characters/erdno/front.svg",
  40098. extra: 1234/1129,
  40099. bottom: 35/1269
  40100. }
  40101. },
  40102. angled: {
  40103. height: math.unit(5 + 7/12, "feet"),
  40104. weight: math.unit(2, "tons"),
  40105. name: "Angled",
  40106. image: {
  40107. source: "./media/characters/erdno/angled.svg",
  40108. extra: 1185/1139,
  40109. bottom: 36/1221
  40110. }
  40111. },
  40112. side: {
  40113. height: math.unit(5 + 7/12, "feet"),
  40114. weight: math.unit(2, "tons"),
  40115. name: "Side",
  40116. image: {
  40117. source: "./media/characters/erdno/side.svg",
  40118. extra: 1191/1144,
  40119. bottom: 40/1231
  40120. }
  40121. },
  40122. back: {
  40123. height: math.unit(5 + 7/12, "feet"),
  40124. weight: math.unit(2, "tons"),
  40125. name: "Back",
  40126. image: {
  40127. source: "./media/characters/erdno/back.svg",
  40128. extra: 1202/1146,
  40129. bottom: 17/1219
  40130. }
  40131. },
  40132. frontNsfw: {
  40133. height: math.unit(5 + 7/12, "feet"),
  40134. weight: math.unit(2, "tons"),
  40135. name: "Front (NSFW)",
  40136. image: {
  40137. source: "./media/characters/erdno/front-nsfw.svg",
  40138. extra: 1234/1129,
  40139. bottom: 35/1269
  40140. }
  40141. },
  40142. angledNsfw: {
  40143. height: math.unit(5 + 7/12, "feet"),
  40144. weight: math.unit(2, "tons"),
  40145. name: "Angled (NSFW)",
  40146. image: {
  40147. source: "./media/characters/erdno/angled-nsfw.svg",
  40148. extra: 1185/1139,
  40149. bottom: 36/1221
  40150. }
  40151. },
  40152. sideNsfw: {
  40153. height: math.unit(5 + 7/12, "feet"),
  40154. weight: math.unit(2, "tons"),
  40155. name: "Side (NSFW)",
  40156. image: {
  40157. source: "./media/characters/erdno/side-nsfw.svg",
  40158. extra: 1191/1144,
  40159. bottom: 40/1231
  40160. }
  40161. },
  40162. backNsfw: {
  40163. height: math.unit(5 + 7/12, "feet"),
  40164. weight: math.unit(2, "tons"),
  40165. name: "Back (NSFW)",
  40166. image: {
  40167. source: "./media/characters/erdno/back-nsfw.svg",
  40168. extra: 1202/1146,
  40169. bottom: 17/1219
  40170. }
  40171. },
  40172. frontHyper: {
  40173. height: math.unit(5 + 7/12, "feet"),
  40174. weight: math.unit(2, "tons"),
  40175. name: "Front (Hyper)",
  40176. image: {
  40177. source: "./media/characters/erdno/front-hyper.svg",
  40178. extra: 1298/1136,
  40179. bottom: 35/1333
  40180. }
  40181. },
  40182. },
  40183. [
  40184. {
  40185. name: "Normal",
  40186. height: math.unit(5 + 7/12, "feet"),
  40187. default: true
  40188. },
  40189. {
  40190. name: "Big",
  40191. height: math.unit(5.7, "meters")
  40192. },
  40193. {
  40194. name: "Macro",
  40195. height: math.unit(5.7, "kilometers")
  40196. },
  40197. {
  40198. name: "Megamacro",
  40199. height: math.unit(5.7, "earths")
  40200. },
  40201. ]
  40202. ))
  40203. characterMakers.push(() => makeCharacter(
  40204. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40205. {
  40206. front: {
  40207. height: math.unit(5 + 10/12, "feet"),
  40208. weight: math.unit(150, "lb"),
  40209. name: "Front",
  40210. image: {
  40211. source: "./media/characters/jamie/front.svg",
  40212. extra: 1908/1768,
  40213. bottom: 19/1927
  40214. }
  40215. },
  40216. },
  40217. [
  40218. {
  40219. name: "Minimum",
  40220. height: math.unit(2, "cm")
  40221. },
  40222. {
  40223. name: "Micro",
  40224. height: math.unit(3, "inches")
  40225. },
  40226. {
  40227. name: "Normal",
  40228. height: math.unit(5 + 10/12, "feet"),
  40229. default: true
  40230. },
  40231. {
  40232. name: "Macro",
  40233. height: math.unit(150, "feet")
  40234. },
  40235. {
  40236. name: "Megamacro",
  40237. height: math.unit(10000, "m")
  40238. },
  40239. ]
  40240. ))
  40241. characterMakers.push(() => makeCharacter(
  40242. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40243. {
  40244. front: {
  40245. height: math.unit(2, "meters"),
  40246. weight: math.unit(100, "kg"),
  40247. name: "Front",
  40248. image: {
  40249. source: "./media/characters/shiron/front.svg",
  40250. extra: 2103/1985,
  40251. bottom: 98/2201
  40252. }
  40253. },
  40254. back: {
  40255. height: math.unit(2, "meters"),
  40256. weight: math.unit(100, "kg"),
  40257. name: "Back",
  40258. image: {
  40259. source: "./media/characters/shiron/back.svg",
  40260. extra: 2110/2015,
  40261. bottom: 89/2199
  40262. }
  40263. },
  40264. hand: {
  40265. height: math.unit(0.96, "feet"),
  40266. name: "Hand",
  40267. image: {
  40268. source: "./media/characters/shiron/hand.svg"
  40269. }
  40270. },
  40271. foot: {
  40272. height: math.unit(1.464, "feet"),
  40273. name: "Foot",
  40274. image: {
  40275. source: "./media/characters/shiron/foot.svg"
  40276. }
  40277. },
  40278. },
  40279. [
  40280. {
  40281. name: "Normal",
  40282. height: math.unit(2, "meters")
  40283. },
  40284. {
  40285. name: "Macro",
  40286. height: math.unit(500, "meters"),
  40287. default: true
  40288. },
  40289. {
  40290. name: "Megamacro",
  40291. height: math.unit(20, "km")
  40292. },
  40293. ]
  40294. ))
  40295. characterMakers.push(() => makeCharacter(
  40296. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40297. {
  40298. front: {
  40299. height: math.unit(6, "feet"),
  40300. name: "Front",
  40301. image: {
  40302. source: "./media/characters/sam/front.svg",
  40303. extra: 849/826,
  40304. bottom: 19/868
  40305. }
  40306. },
  40307. },
  40308. [
  40309. {
  40310. name: "Normal",
  40311. height: math.unit(6, "feet"),
  40312. default: true
  40313. },
  40314. ]
  40315. ))
  40316. characterMakers.push(() => makeCharacter(
  40317. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40318. {
  40319. front: {
  40320. height: math.unit(8 + 4/12, "feet"),
  40321. weight: math.unit(122, "kg"),
  40322. name: "Front",
  40323. image: {
  40324. source: "./media/characters/namori-kurogawa/front.svg",
  40325. extra: 1894/1576,
  40326. bottom: 34/1928
  40327. }
  40328. },
  40329. },
  40330. [
  40331. {
  40332. name: "Normal",
  40333. height: math.unit(8 + 4/12, "feet"),
  40334. default: true
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40340. {
  40341. front: {
  40342. height: math.unit(9, "feet"),
  40343. weight: math.unit(621, "lb"),
  40344. name: "Front",
  40345. image: {
  40346. source: "./media/characters/unmru/front.svg",
  40347. extra: 1853/1747,
  40348. bottom: 73/1926
  40349. }
  40350. },
  40351. side: {
  40352. height: math.unit(9, "feet"),
  40353. weight: math.unit(621, "lb"),
  40354. name: "Side",
  40355. image: {
  40356. source: "./media/characters/unmru/side.svg",
  40357. extra: 1781/1671,
  40358. bottom: 127/1908
  40359. }
  40360. },
  40361. back: {
  40362. height: math.unit(9, "feet"),
  40363. weight: math.unit(621, "lb"),
  40364. name: "Back",
  40365. image: {
  40366. source: "./media/characters/unmru/back.svg",
  40367. extra: 1894/1765,
  40368. bottom: 75/1969
  40369. }
  40370. },
  40371. dick: {
  40372. height: math.unit(3, "feet"),
  40373. weight: math.unit(35, "lb"),
  40374. name: "Dick",
  40375. image: {
  40376. source: "./media/characters/unmru/dick.svg"
  40377. }
  40378. },
  40379. },
  40380. [
  40381. {
  40382. name: "Normal",
  40383. height: math.unit(9, "feet")
  40384. },
  40385. {
  40386. name: "Natural",
  40387. height: math.unit(27, "feet"),
  40388. default: true
  40389. },
  40390. {
  40391. name: "Giant",
  40392. height: math.unit(90, "feet")
  40393. },
  40394. {
  40395. name: "Kaiju",
  40396. height: math.unit(270, "feet")
  40397. },
  40398. {
  40399. name: "Macro",
  40400. height: math.unit(900, "feet")
  40401. },
  40402. {
  40403. name: "Macro+",
  40404. height: math.unit(2700, "feet")
  40405. },
  40406. {
  40407. name: "Megamacro",
  40408. height: math.unit(9000, "feet")
  40409. },
  40410. {
  40411. name: "City-Crushing",
  40412. height: math.unit(27000, "feet")
  40413. },
  40414. {
  40415. name: "Mountain-Mashing",
  40416. height: math.unit(90000, "feet")
  40417. },
  40418. {
  40419. name: "Earth-Eclipsing",
  40420. height: math.unit(2.7e8, "feet")
  40421. },
  40422. {
  40423. name: "Sol-Swallowing",
  40424. height: math.unit(9e10, "feet")
  40425. },
  40426. {
  40427. name: "Majoris-Munching",
  40428. height: math.unit(2.7e13, "feet")
  40429. },
  40430. ]
  40431. ))
  40432. characterMakers.push(() => makeCharacter(
  40433. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40434. {
  40435. front: {
  40436. height: math.unit(1, "inch"),
  40437. name: "Front",
  40438. image: {
  40439. source: "./media/characters/squeaks-mouse/front.svg",
  40440. extra: 352/308,
  40441. bottom: 25/377
  40442. }
  40443. },
  40444. },
  40445. [
  40446. {
  40447. name: "Micro",
  40448. height: math.unit(1, "inch"),
  40449. default: true
  40450. },
  40451. ]
  40452. ))
  40453. characterMakers.push(() => makeCharacter(
  40454. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40455. {
  40456. side: {
  40457. height: math.unit(35, "feet"),
  40458. name: "Side",
  40459. image: {
  40460. source: "./media/characters/sayko/side.svg",
  40461. extra: 1697/1021,
  40462. bottom: 82/1779
  40463. }
  40464. },
  40465. head: {
  40466. height: math.unit(16, "feet"),
  40467. name: "Head",
  40468. image: {
  40469. source: "./media/characters/sayko/head.svg"
  40470. }
  40471. },
  40472. forepaw: {
  40473. height: math.unit(7.85, "feet"),
  40474. name: "Forepaw",
  40475. image: {
  40476. source: "./media/characters/sayko/forepaw.svg"
  40477. }
  40478. },
  40479. hindpaw: {
  40480. height: math.unit(8.8, "feet"),
  40481. name: "Hindpaw",
  40482. image: {
  40483. source: "./media/characters/sayko/hindpaw.svg"
  40484. }
  40485. },
  40486. },
  40487. [
  40488. {
  40489. name: "Normal",
  40490. height: math.unit(35, "feet"),
  40491. default: true
  40492. },
  40493. {
  40494. name: "Colossus",
  40495. height: math.unit(100, "meters")
  40496. },
  40497. {
  40498. name: "\"Small\" Deity",
  40499. height: math.unit(1, "km")
  40500. },
  40501. {
  40502. name: "\"Large\" Deity",
  40503. height: math.unit(15, "km")
  40504. },
  40505. ]
  40506. ))
  40507. characterMakers.push(() => makeCharacter(
  40508. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40509. {
  40510. front: {
  40511. height: math.unit(6, "feet"),
  40512. weight: math.unit(250, "lb"),
  40513. name: "Front",
  40514. image: {
  40515. source: "./media/characters/mukiro/front.svg",
  40516. extra: 1368/1310,
  40517. bottom: 34/1402
  40518. }
  40519. },
  40520. },
  40521. [
  40522. {
  40523. name: "Normal",
  40524. height: math.unit(6, "feet"),
  40525. default: true
  40526. },
  40527. ]
  40528. ))
  40529. characterMakers.push(() => makeCharacter(
  40530. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40531. {
  40532. front: {
  40533. height: math.unit(12 + 4/12, "feet"),
  40534. name: "Front",
  40535. image: {
  40536. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40537. extra: 1346/1311,
  40538. bottom: 65/1411
  40539. }
  40540. },
  40541. },
  40542. [
  40543. {
  40544. name: "Base",
  40545. height: math.unit(12 + 4/12, "feet"),
  40546. default: true
  40547. },
  40548. {
  40549. name: "Macro",
  40550. height: math.unit(150, "feet")
  40551. },
  40552. {
  40553. name: "Mega",
  40554. height: math.unit(2, "miles")
  40555. },
  40556. {
  40557. name: "Demi God",
  40558. height: math.unit(4, "AU")
  40559. },
  40560. {
  40561. name: "God Size",
  40562. height: math.unit(1, "universe")
  40563. },
  40564. ]
  40565. ))
  40566. characterMakers.push(() => makeCharacter(
  40567. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40568. {
  40569. front: {
  40570. height: math.unit(3 + 3/12, "feet"),
  40571. weight: math.unit(88, "lb"),
  40572. name: "Front",
  40573. image: {
  40574. source: "./media/characters/trey/front.svg",
  40575. extra: 1815/1509,
  40576. bottom: 60/1875
  40577. }
  40578. },
  40579. },
  40580. [
  40581. {
  40582. name: "Normal",
  40583. height: math.unit(3 + 3/12, "feet"),
  40584. default: true
  40585. },
  40586. ]
  40587. ))
  40588. characterMakers.push(() => makeCharacter(
  40589. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40590. {
  40591. front: {
  40592. height: math.unit(4, "meters"),
  40593. name: "Front",
  40594. image: {
  40595. source: "./media/characters/adelonda/front.svg",
  40596. extra: 1077/982,
  40597. bottom: 39/1116
  40598. }
  40599. },
  40600. back: {
  40601. height: math.unit(4, "meters"),
  40602. name: "Back",
  40603. image: {
  40604. source: "./media/characters/adelonda/back.svg",
  40605. extra: 1105/1003,
  40606. bottom: 25/1130
  40607. }
  40608. },
  40609. feral: {
  40610. height: math.unit(40/1.5, "meters"),
  40611. name: "Feral",
  40612. image: {
  40613. source: "./media/characters/adelonda/feral.svg",
  40614. extra: 597/271,
  40615. bottom: 387/984
  40616. }
  40617. },
  40618. },
  40619. [
  40620. {
  40621. name: "Normal",
  40622. height: math.unit(4, "meters"),
  40623. default: true
  40624. },
  40625. ]
  40626. ))
  40627. characterMakers.push(() => makeCharacter(
  40628. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40629. {
  40630. front: {
  40631. height: math.unit(8 + 4/12, "feet"),
  40632. weight: math.unit(670, "lb"),
  40633. name: "Front",
  40634. image: {
  40635. source: "./media/characters/acadiel/front.svg",
  40636. extra: 1901/1595,
  40637. bottom: 142/2043
  40638. }
  40639. },
  40640. },
  40641. [
  40642. {
  40643. name: "Normal",
  40644. height: math.unit(8 + 4/12, "feet"),
  40645. default: true
  40646. },
  40647. {
  40648. name: "Macro",
  40649. height: math.unit(200, "feet")
  40650. },
  40651. ]
  40652. ))
  40653. characterMakers.push(() => makeCharacter(
  40654. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40655. {
  40656. front: {
  40657. height: math.unit(6 + 2/12, "feet"),
  40658. weight: math.unit(185, "lb"),
  40659. name: "Front",
  40660. image: {
  40661. source: "./media/characters/kayne-ein/front.svg",
  40662. extra: 1780/1560,
  40663. bottom: 81/1861
  40664. }
  40665. },
  40666. },
  40667. [
  40668. {
  40669. name: "Normal",
  40670. height: math.unit(6 + 2/12, "feet"),
  40671. default: true
  40672. },
  40673. {
  40674. name: "Transformation Stage",
  40675. height: math.unit(15, "feet")
  40676. },
  40677. {
  40678. name: "Macro",
  40679. height: math.unit(150, "feet")
  40680. },
  40681. {
  40682. name: "Earth's Shadow",
  40683. height: math.unit(6200, "miles")
  40684. },
  40685. {
  40686. name: "Universal Demon",
  40687. height: math.unit(28e9, "parsecs")
  40688. },
  40689. {
  40690. name: "Multiverse God",
  40691. height: math.unit(3, "multiverses")
  40692. },
  40693. ]
  40694. ))
  40695. characterMakers.push(() => makeCharacter(
  40696. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40697. {
  40698. front: {
  40699. height: math.unit(5 + 5/12, "feet"),
  40700. name: "Front",
  40701. image: {
  40702. source: "./media/characters/fawn/front.svg",
  40703. extra: 1873/1731,
  40704. bottom: 95/1968
  40705. }
  40706. },
  40707. back: {
  40708. height: math.unit(5 + 5/12, "feet"),
  40709. name: "Back",
  40710. image: {
  40711. source: "./media/characters/fawn/back.svg",
  40712. extra: 1813/1700,
  40713. bottom: 14/1827
  40714. }
  40715. },
  40716. hoof: {
  40717. height: math.unit(1.45, "feet"),
  40718. name: "Hoof",
  40719. image: {
  40720. source: "./media/characters/fawn/hoof.svg"
  40721. }
  40722. },
  40723. },
  40724. [
  40725. {
  40726. name: "Normal",
  40727. height: math.unit(5 + 5/12, "feet"),
  40728. default: true
  40729. },
  40730. ]
  40731. ))
  40732. characterMakers.push(() => makeCharacter(
  40733. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40734. {
  40735. front: {
  40736. height: math.unit(2 + 5/12, "feet"),
  40737. name: "Front",
  40738. image: {
  40739. source: "./media/characters/orion/front.svg",
  40740. extra: 1366/1304,
  40741. bottom: 43/1409
  40742. }
  40743. },
  40744. paw: {
  40745. height: math.unit(0.52, "feet"),
  40746. name: "Paw",
  40747. image: {
  40748. source: "./media/characters/orion/paw.svg"
  40749. }
  40750. },
  40751. },
  40752. [
  40753. {
  40754. name: "Normal",
  40755. height: math.unit(2 + 5/12, "feet"),
  40756. default: true
  40757. },
  40758. ]
  40759. ))
  40760. characterMakers.push(() => makeCharacter(
  40761. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40762. {
  40763. front: {
  40764. height: math.unit(5 + 10/12, "feet"),
  40765. name: "Front",
  40766. image: {
  40767. source: "./media/characters/vera/front.svg",
  40768. extra: 1680/1575,
  40769. bottom: 49/1729
  40770. }
  40771. },
  40772. back: {
  40773. height: math.unit(5 + 10/12, "feet"),
  40774. name: "Back",
  40775. image: {
  40776. source: "./media/characters/vera/back.svg",
  40777. extra: 1700/1588,
  40778. bottom: 18/1718
  40779. }
  40780. },
  40781. arcanine: {
  40782. height: math.unit(6 + 8/12, "feet"),
  40783. name: "Arcanine",
  40784. image: {
  40785. source: "./media/characters/vera/arcanine.svg",
  40786. extra: 1590/1511,
  40787. bottom: 71/1661
  40788. }
  40789. },
  40790. maw: {
  40791. height: math.unit(0.82, "feet"),
  40792. name: "Maw",
  40793. image: {
  40794. source: "./media/characters/vera/maw.svg"
  40795. }
  40796. },
  40797. mawArcanine: {
  40798. height: math.unit(0.97, "feet"),
  40799. name: "Maw (Arcanine)",
  40800. image: {
  40801. source: "./media/characters/vera/maw-arcanine.svg"
  40802. }
  40803. },
  40804. paw: {
  40805. height: math.unit(0.75, "feet"),
  40806. name: "Paw",
  40807. image: {
  40808. source: "./media/characters/vera/paw.svg"
  40809. }
  40810. },
  40811. pawprint: {
  40812. height: math.unit(0.52, "feet"),
  40813. name: "Pawprint",
  40814. image: {
  40815. source: "./media/characters/vera/pawprint.svg"
  40816. }
  40817. },
  40818. },
  40819. [
  40820. {
  40821. name: "Normal",
  40822. height: math.unit(5 + 10/12, "feet"),
  40823. default: true
  40824. },
  40825. {
  40826. name: "Macro",
  40827. height: math.unit(75, "feet")
  40828. },
  40829. ]
  40830. ))
  40831. characterMakers.push(() => makeCharacter(
  40832. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40833. {
  40834. front: {
  40835. height: math.unit(4, "feet"),
  40836. weight: math.unit(40, "lb"),
  40837. name: "Front",
  40838. image: {
  40839. source: "./media/characters/orvan-rabbit/front.svg",
  40840. extra: 1896/1642,
  40841. bottom: 29/1925
  40842. }
  40843. },
  40844. },
  40845. [
  40846. {
  40847. name: "Normal",
  40848. height: math.unit(4, "feet"),
  40849. default: true
  40850. },
  40851. ]
  40852. ))
  40853. characterMakers.push(() => makeCharacter(
  40854. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40855. {
  40856. front: {
  40857. height: math.unit(6, "feet"),
  40858. weight: math.unit(168, "lb"),
  40859. name: "Front",
  40860. image: {
  40861. source: "./media/characters/lisa/front.svg",
  40862. extra: 2065/1867,
  40863. bottom: 46/2111
  40864. }
  40865. },
  40866. back: {
  40867. height: math.unit(6, "feet"),
  40868. weight: math.unit(168, "lb"),
  40869. name: "Back",
  40870. image: {
  40871. source: "./media/characters/lisa/back.svg",
  40872. extra: 1982/1838,
  40873. bottom: 29/2011
  40874. }
  40875. },
  40876. maw: {
  40877. height: math.unit(0.81, "feet"),
  40878. name: "Maw",
  40879. image: {
  40880. source: "./media/characters/lisa/maw.svg"
  40881. }
  40882. },
  40883. paw: {
  40884. height: math.unit(0.9, "feet"),
  40885. name: "Paw",
  40886. image: {
  40887. source: "./media/characters/lisa/paw.svg"
  40888. }
  40889. },
  40890. caribousune: {
  40891. height: math.unit(7 + 2/12, "feet"),
  40892. weight: math.unit(268, "lb"),
  40893. name: "Caribousune",
  40894. image: {
  40895. source: "./media/characters/lisa/caribousune.svg",
  40896. extra: 1843/1633,
  40897. bottom: 29/1872
  40898. }
  40899. },
  40900. frontCaribousune: {
  40901. height: math.unit(7 + 2/12, "feet"),
  40902. weight: math.unit(268, "lb"),
  40903. name: "Front (Caribousune)",
  40904. image: {
  40905. source: "./media/characters/lisa/front-caribousune.svg",
  40906. extra: 1818/1638,
  40907. bottom: 52/1870
  40908. }
  40909. },
  40910. sideCaribousune: {
  40911. height: math.unit(7 + 2/12, "feet"),
  40912. weight: math.unit(268, "lb"),
  40913. name: "Side (Caribousune)",
  40914. image: {
  40915. source: "./media/characters/lisa/side-caribousune.svg",
  40916. extra: 1851/1635,
  40917. bottom: 16/1867
  40918. }
  40919. },
  40920. backCaribousune: {
  40921. height: math.unit(7 + 2/12, "feet"),
  40922. weight: math.unit(268, "lb"),
  40923. name: "Back (Caribousune)",
  40924. image: {
  40925. source: "./media/characters/lisa/back-caribousune.svg",
  40926. extra: 1801/1604,
  40927. bottom: 44/1845
  40928. }
  40929. },
  40930. caribou: {
  40931. height: math.unit(7 + 2/12, "feet"),
  40932. weight: math.unit(268, "lb"),
  40933. name: "Caribou",
  40934. image: {
  40935. source: "./media/characters/lisa/caribou.svg",
  40936. extra: 1843/1633,
  40937. bottom: 29/1872
  40938. }
  40939. },
  40940. frontCaribou: {
  40941. height: math.unit(7 + 2/12, "feet"),
  40942. weight: math.unit(268, "lb"),
  40943. name: "Front (Caribou)",
  40944. image: {
  40945. source: "./media/characters/lisa/front-caribou.svg",
  40946. extra: 1818/1638,
  40947. bottom: 52/1870
  40948. }
  40949. },
  40950. sideCaribou: {
  40951. height: math.unit(7 + 2/12, "feet"),
  40952. weight: math.unit(268, "lb"),
  40953. name: "Side (Caribou)",
  40954. image: {
  40955. source: "./media/characters/lisa/side-caribou.svg",
  40956. extra: 1851/1635,
  40957. bottom: 16/1867
  40958. }
  40959. },
  40960. backCaribou: {
  40961. height: math.unit(7 + 2/12, "feet"),
  40962. weight: math.unit(268, "lb"),
  40963. name: "Back (Caribou)",
  40964. image: {
  40965. source: "./media/characters/lisa/back-caribou.svg",
  40966. extra: 1801/1604,
  40967. bottom: 44/1845
  40968. }
  40969. },
  40970. mawCaribou: {
  40971. height: math.unit(1.45, "feet"),
  40972. name: "Maw (Caribou)",
  40973. image: {
  40974. source: "./media/characters/lisa/maw-caribou.svg"
  40975. }
  40976. },
  40977. mawCaribousune: {
  40978. height: math.unit(1.45, "feet"),
  40979. name: "Maw (Caribousune)",
  40980. image: {
  40981. source: "./media/characters/lisa/maw-caribousune.svg"
  40982. }
  40983. },
  40984. pawCaribousune: {
  40985. height: math.unit(1.61, "feet"),
  40986. name: "Paw (Caribou)",
  40987. image: {
  40988. source: "./media/characters/lisa/paw-caribousune.svg"
  40989. }
  40990. },
  40991. },
  40992. [
  40993. {
  40994. name: "Normal",
  40995. height: math.unit(6, "feet")
  40996. },
  40997. {
  40998. name: "God Size",
  40999. height: math.unit(72, "feet"),
  41000. default: true
  41001. },
  41002. {
  41003. name: "Towering",
  41004. height: math.unit(288, "feet")
  41005. },
  41006. {
  41007. name: "City Size",
  41008. height: math.unit(48384, "feet")
  41009. },
  41010. {
  41011. name: "Continental",
  41012. height: math.unit(4200, "miles")
  41013. },
  41014. {
  41015. name: "Planet Eater",
  41016. height: math.unit(42, "earths")
  41017. },
  41018. {
  41019. name: "Star Swallower",
  41020. height: math.unit(42, "solarradii")
  41021. },
  41022. {
  41023. name: "System Swallower",
  41024. height: math.unit(84000, "AU")
  41025. },
  41026. {
  41027. name: "Galaxy Gobbler",
  41028. height: math.unit(42, "galaxies")
  41029. },
  41030. {
  41031. name: "Universe Devourer",
  41032. height: math.unit(42, "universes")
  41033. },
  41034. {
  41035. name: "Multiverse Muncher",
  41036. height: math.unit(42, "multiverses")
  41037. },
  41038. ]
  41039. ))
  41040. characterMakers.push(() => makeCharacter(
  41041. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41042. {
  41043. front: {
  41044. height: math.unit(36, "feet"),
  41045. name: "Front",
  41046. image: {
  41047. source: "./media/characters/shadow-rat/front.svg",
  41048. extra: 1845/1758,
  41049. bottom: 83/1928
  41050. }
  41051. },
  41052. },
  41053. [
  41054. {
  41055. name: "Macro",
  41056. height: math.unit(36, "feet"),
  41057. default: true
  41058. },
  41059. ]
  41060. ))
  41061. characterMakers.push(() => makeCharacter(
  41062. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41063. {
  41064. side: {
  41065. height: math.unit(8, "feet"),
  41066. weight: math.unit(2630, "lb"),
  41067. name: "Side",
  41068. image: {
  41069. source: "./media/characters/torallia/side.svg",
  41070. extra: 2164/2021,
  41071. bottom: 371/2535
  41072. }
  41073. },
  41074. },
  41075. [
  41076. {
  41077. name: "Mortal Interaction",
  41078. height: math.unit(8, "feet")
  41079. },
  41080. {
  41081. name: "Natural",
  41082. height: math.unit(24, "feet"),
  41083. default: true
  41084. },
  41085. {
  41086. name: "Giant",
  41087. height: math.unit(80, "feet")
  41088. },
  41089. {
  41090. name: "Kaiju",
  41091. height: math.unit(240, "feet")
  41092. },
  41093. {
  41094. name: "Macro",
  41095. height: math.unit(800, "feet")
  41096. },
  41097. {
  41098. name: "Macro+",
  41099. height: math.unit(2400, "feet")
  41100. },
  41101. {
  41102. name: "Macro++",
  41103. height: math.unit(8000, "feet")
  41104. },
  41105. {
  41106. name: "City-Crushing",
  41107. height: math.unit(24000, "feet")
  41108. },
  41109. {
  41110. name: "Mountain-Mashing",
  41111. height: math.unit(80000, "feet")
  41112. },
  41113. {
  41114. name: "District Demolisher",
  41115. height: math.unit(240000, "feet")
  41116. },
  41117. {
  41118. name: "Tri-County Terror",
  41119. height: math.unit(800000, "feet")
  41120. },
  41121. {
  41122. name: "State Smasher",
  41123. height: math.unit(2.4e6, "feet")
  41124. },
  41125. {
  41126. name: "Nation Nemesis",
  41127. height: math.unit(8e6, "feet")
  41128. },
  41129. {
  41130. name: "Continent Cracker",
  41131. height: math.unit(2.4e7, "feet")
  41132. },
  41133. {
  41134. name: "Planet-Pillaging",
  41135. height: math.unit(8e7, "feet")
  41136. },
  41137. {
  41138. name: "Earth-Eclipsing",
  41139. height: math.unit(2.4e8, "feet")
  41140. },
  41141. {
  41142. name: "Jovian-Jostling",
  41143. height: math.unit(8e8, "feet")
  41144. },
  41145. {
  41146. name: "Gas Giant Gulper",
  41147. height: math.unit(2.4e9, "feet")
  41148. },
  41149. {
  41150. name: "Astral Annihilator",
  41151. height: math.unit(8e9, "feet")
  41152. },
  41153. {
  41154. name: "Celestial Conqueror",
  41155. height: math.unit(2.4e10, "feet")
  41156. },
  41157. {
  41158. name: "Sol-Swallowing",
  41159. height: math.unit(8e10, "feet")
  41160. },
  41161. {
  41162. name: "Hunter of the Heavens",
  41163. height: math.unit(2.4e13, "feet")
  41164. },
  41165. ]
  41166. ))
  41167. characterMakers.push(() => makeCharacter(
  41168. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41169. {
  41170. front: {
  41171. height: math.unit(6 + 8/12, "feet"),
  41172. weight: math.unit(250, "kilograms"),
  41173. volume: math.unit(28, "liters"),
  41174. name: "Front",
  41175. image: {
  41176. source: "./media/characters/rebecca-pawlson/front.svg",
  41177. extra: 1737/1596,
  41178. bottom: 107/1844
  41179. }
  41180. },
  41181. back: {
  41182. height: math.unit(6 + 8/12, "feet"),
  41183. weight: math.unit(250, "kilograms"),
  41184. volume: math.unit(28, "liters"),
  41185. name: "Back",
  41186. image: {
  41187. source: "./media/characters/rebecca-pawlson/back.svg",
  41188. extra: 1702/1523,
  41189. bottom: 86/1788
  41190. }
  41191. },
  41192. },
  41193. [
  41194. {
  41195. name: "Normal",
  41196. height: math.unit(6 + 8/12, "feet")
  41197. },
  41198. {
  41199. name: "Mini Macro",
  41200. height: math.unit(10, "feet"),
  41201. default: true
  41202. },
  41203. {
  41204. name: "Macro",
  41205. height: math.unit(100, "feet")
  41206. },
  41207. {
  41208. name: "Mega Macro",
  41209. height: math.unit(2500, "feet")
  41210. },
  41211. {
  41212. name: "Giga Macro",
  41213. height: math.unit(50, "miles")
  41214. },
  41215. ]
  41216. ))
  41217. characterMakers.push(() => makeCharacter(
  41218. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41219. {
  41220. front: {
  41221. height: math.unit(7 + 6/12, "feet"),
  41222. weight: math.unit(600, "lb"),
  41223. name: "Front",
  41224. image: {
  41225. source: "./media/characters/moxie-nova/front.svg",
  41226. extra: 1734/1652,
  41227. bottom: 41/1775
  41228. }
  41229. },
  41230. },
  41231. [
  41232. {
  41233. name: "Normal",
  41234. height: math.unit(7 + 6/12, "feet"),
  41235. default: true
  41236. },
  41237. ]
  41238. ))
  41239. characterMakers.push(() => makeCharacter(
  41240. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41241. {
  41242. goat: {
  41243. height: math.unit(4, "feet"),
  41244. weight: math.unit(180, "lb"),
  41245. name: "Goat",
  41246. image: {
  41247. source: "./media/characters/tiffany/goat.svg",
  41248. extra: 1845/1595,
  41249. bottom: 106/1951
  41250. }
  41251. },
  41252. front: {
  41253. height: math.unit(5, "feet"),
  41254. weight: math.unit(150, "lb"),
  41255. name: "Foxcoon",
  41256. image: {
  41257. source: "./media/characters/tiffany/foxcoon.svg",
  41258. extra: 1941/1845,
  41259. bottom: 58/1999
  41260. }
  41261. },
  41262. },
  41263. [
  41264. {
  41265. name: "Normal",
  41266. height: math.unit(5, "feet"),
  41267. default: true
  41268. },
  41269. ]
  41270. ))
  41271. characterMakers.push(() => makeCharacter(
  41272. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41273. {
  41274. front: {
  41275. height: math.unit(8, "feet"),
  41276. weight: math.unit(300, "lb"),
  41277. name: "Front",
  41278. image: {
  41279. source: "./media/characters/raxinath/front.svg",
  41280. extra: 1407/1309,
  41281. bottom: 39/1446
  41282. }
  41283. },
  41284. back: {
  41285. height: math.unit(8, "feet"),
  41286. weight: math.unit(300, "lb"),
  41287. name: "Back",
  41288. image: {
  41289. source: "./media/characters/raxinath/back.svg",
  41290. extra: 1405/1315,
  41291. bottom: 9/1414
  41292. }
  41293. },
  41294. },
  41295. [
  41296. {
  41297. name: "Speck",
  41298. height: math.unit(0.5, "nm")
  41299. },
  41300. {
  41301. name: "Micro",
  41302. height: math.unit(3, "inches")
  41303. },
  41304. {
  41305. name: "Kobold",
  41306. height: math.unit(3, "feet")
  41307. },
  41308. {
  41309. name: "Normal",
  41310. height: math.unit(8, "feet"),
  41311. default: true
  41312. },
  41313. {
  41314. name: "Giant",
  41315. height: math.unit(50, "feet")
  41316. },
  41317. {
  41318. name: "Macro",
  41319. height: math.unit(1000, "feet")
  41320. },
  41321. {
  41322. name: "Megamacro",
  41323. height: math.unit(1, "mile")
  41324. },
  41325. ]
  41326. ))
  41327. characterMakers.push(() => makeCharacter(
  41328. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41329. {
  41330. front: {
  41331. height: math.unit(10, "feet"),
  41332. weight: math.unit(1442, "lb"),
  41333. name: "Front",
  41334. image: {
  41335. source: "./media/characters/mal-dragon/front.svg",
  41336. extra: 1515/1444,
  41337. bottom: 113/1628
  41338. }
  41339. },
  41340. back: {
  41341. height: math.unit(10, "feet"),
  41342. weight: math.unit(1442, "lb"),
  41343. name: "Back",
  41344. image: {
  41345. source: "./media/characters/mal-dragon/back.svg",
  41346. extra: 1527/1434,
  41347. bottom: 25/1552
  41348. }
  41349. },
  41350. },
  41351. [
  41352. {
  41353. name: "Mortal Interaction",
  41354. height: math.unit(10, "feet"),
  41355. default: true
  41356. },
  41357. {
  41358. name: "Large",
  41359. height: math.unit(30, "feet")
  41360. },
  41361. {
  41362. name: "Kaiju",
  41363. height: math.unit(300, "feet")
  41364. },
  41365. {
  41366. name: "Megamacro",
  41367. height: math.unit(10000, "feet")
  41368. },
  41369. {
  41370. name: "Continent Cracker",
  41371. height: math.unit(30000000, "feet")
  41372. },
  41373. {
  41374. name: "Sol-Swallowing",
  41375. height: math.unit(1e11, "feet")
  41376. },
  41377. {
  41378. name: "Light Universal",
  41379. height: math.unit(5, "universes")
  41380. },
  41381. {
  41382. name: "Universe Atoms",
  41383. height: math.unit(1.829e9, "universes")
  41384. },
  41385. {
  41386. name: "Light Multiversal",
  41387. height: math.unit(5, "multiverses")
  41388. },
  41389. {
  41390. name: "Multiverse Atoms",
  41391. height: math.unit(1.829e9, "multiverses")
  41392. },
  41393. {
  41394. name: "Fabric of Time",
  41395. height: math.unit(1e262, "multiverses")
  41396. },
  41397. ]
  41398. ))
  41399. characterMakers.push(() => makeCharacter(
  41400. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41401. {
  41402. front: {
  41403. height: math.unit(9, "feet"),
  41404. weight: math.unit(1050, "lb"),
  41405. name: "Front",
  41406. image: {
  41407. source: "./media/characters/tabitha/front.svg",
  41408. extra: 2083/1994,
  41409. bottom: 68/2151
  41410. }
  41411. },
  41412. },
  41413. [
  41414. {
  41415. name: "Baseline",
  41416. height: math.unit(9, "feet"),
  41417. default: true
  41418. },
  41419. {
  41420. name: "Giant",
  41421. height: math.unit(90, "feet")
  41422. },
  41423. {
  41424. name: "Macro",
  41425. height: math.unit(900, "feet")
  41426. },
  41427. {
  41428. name: "Megamacro",
  41429. height: math.unit(9000, "feet")
  41430. },
  41431. {
  41432. name: "City-Crushing",
  41433. height: math.unit(27000, "feet")
  41434. },
  41435. {
  41436. name: "Mountain-Mashing",
  41437. height: math.unit(90000, "feet")
  41438. },
  41439. {
  41440. name: "Nation Nemesis",
  41441. height: math.unit(9e6, "feet")
  41442. },
  41443. {
  41444. name: "Continent Cracker",
  41445. height: math.unit(27e6, "feet")
  41446. },
  41447. {
  41448. name: "Earth-Eclipsing",
  41449. height: math.unit(2.7e8, "feet")
  41450. },
  41451. {
  41452. name: "Gas Giant Gulper",
  41453. height: math.unit(2.7e9, "feet")
  41454. },
  41455. {
  41456. name: "Sol-Swallowing",
  41457. height: math.unit(9e10, "feet")
  41458. },
  41459. {
  41460. name: "Galaxy Gulper",
  41461. height: math.unit(9, "galaxies")
  41462. },
  41463. {
  41464. name: "Cosmos Churner",
  41465. height: math.unit(9, "universes")
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41471. {
  41472. front: {
  41473. height: math.unit(160, "cm"),
  41474. weight: math.unit(55, "kg"),
  41475. name: "Front",
  41476. image: {
  41477. source: "./media/characters/tow/front.svg",
  41478. extra: 1751/1722,
  41479. bottom: 74/1825
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Norm",
  41486. height: math.unit(160, "cm")
  41487. },
  41488. {
  41489. name: "Casual",
  41490. height: math.unit(3200, "m"),
  41491. default: true
  41492. },
  41493. {
  41494. name: "Show-Off",
  41495. height: math.unit(160, "km")
  41496. },
  41497. ]
  41498. ))
  41499. characterMakers.push(() => makeCharacter(
  41500. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41501. {
  41502. front: {
  41503. height: math.unit(7 + 11/12, "feet"),
  41504. weight: math.unit(342.8, "lb"),
  41505. name: "Front",
  41506. image: {
  41507. source: "./media/characters/vivian-orca-dragon/front.svg",
  41508. extra: 1890/1865,
  41509. bottom: 28/1918
  41510. }
  41511. },
  41512. },
  41513. [
  41514. {
  41515. name: "Micro",
  41516. height: math.unit(5, "inches")
  41517. },
  41518. {
  41519. name: "Normal",
  41520. height: math.unit(7 + 11/12, "feet"),
  41521. default: true
  41522. },
  41523. {
  41524. name: "Macro",
  41525. height: math.unit(395 + 7/12, "feet")
  41526. },
  41527. ]
  41528. ))
  41529. characterMakers.push(() => makeCharacter(
  41530. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41531. {
  41532. side: {
  41533. height: math.unit(10, "feet"),
  41534. weight: math.unit(1442, "lb"),
  41535. name: "Side",
  41536. image: {
  41537. source: "./media/characters/lotherakon/side.svg",
  41538. extra: 1604/1497,
  41539. bottom: 89/1693
  41540. }
  41541. },
  41542. },
  41543. [
  41544. {
  41545. name: "Mortal Interaction",
  41546. height: math.unit(10, "feet")
  41547. },
  41548. {
  41549. name: "Large",
  41550. height: math.unit(30, "feet"),
  41551. default: true
  41552. },
  41553. {
  41554. name: "Giant",
  41555. height: math.unit(100, "feet")
  41556. },
  41557. {
  41558. name: "Kaiju",
  41559. height: math.unit(300, "feet")
  41560. },
  41561. {
  41562. name: "Macro",
  41563. height: math.unit(1000, "feet")
  41564. },
  41565. {
  41566. name: "Macro+",
  41567. height: math.unit(3000, "feet")
  41568. },
  41569. {
  41570. name: "Megamacro",
  41571. height: math.unit(10000, "feet")
  41572. },
  41573. {
  41574. name: "City-Crushing",
  41575. height: math.unit(30000, "feet")
  41576. },
  41577. {
  41578. name: "Continent Cracker",
  41579. height: math.unit(30e6, "feet")
  41580. },
  41581. {
  41582. name: "Earth Eclipsing",
  41583. height: math.unit(3e8, "feet")
  41584. },
  41585. {
  41586. name: "Gas Giant Gulper",
  41587. height: math.unit(3e9, "feet")
  41588. },
  41589. {
  41590. name: "Sol-Swallowing",
  41591. height: math.unit(1e11, "feet")
  41592. },
  41593. {
  41594. name: "System Swallower",
  41595. height: math.unit(3e14, "feet")
  41596. },
  41597. {
  41598. name: "Galaxy Gulper",
  41599. height: math.unit(10, "galaxies")
  41600. },
  41601. {
  41602. name: "Light Universal",
  41603. height: math.unit(5, "universes")
  41604. },
  41605. {
  41606. name: "Universe Palm",
  41607. height: math.unit(20, "universes")
  41608. },
  41609. {
  41610. name: "Light Multiversal",
  41611. height: math.unit(5, "multiverses")
  41612. },
  41613. {
  41614. name: "Multiverse Palm",
  41615. height: math.unit(20, "multiverses")
  41616. },
  41617. {
  41618. name: "Inferno Incarnate",
  41619. height: math.unit(1e7, "multiverses")
  41620. },
  41621. ]
  41622. ))
  41623. characterMakers.push(() => makeCharacter(
  41624. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41625. {
  41626. front: {
  41627. height: math.unit(8, "feet"),
  41628. weight: math.unit(1200, "lb"),
  41629. name: "Front",
  41630. image: {
  41631. source: "./media/characters/malithee/front.svg",
  41632. extra: 1675/1640,
  41633. bottom: 162/1837
  41634. }
  41635. },
  41636. },
  41637. [
  41638. {
  41639. name: "Mortal Interaction",
  41640. height: math.unit(8, "feet"),
  41641. default: true
  41642. },
  41643. {
  41644. name: "Large",
  41645. height: math.unit(24, "feet")
  41646. },
  41647. {
  41648. name: "Kaiju",
  41649. height: math.unit(240, "feet")
  41650. },
  41651. {
  41652. name: "Megamacro",
  41653. height: math.unit(8000, "feet")
  41654. },
  41655. {
  41656. name: "Continent Cracker",
  41657. height: math.unit(24e6, "feet")
  41658. },
  41659. {
  41660. name: "Earth-Eclipsing",
  41661. height: math.unit(2.4e8, "feet")
  41662. },
  41663. {
  41664. name: "Sol-Swallowing",
  41665. height: math.unit(8e10, "feet")
  41666. },
  41667. {
  41668. name: "Galaxy Gulper",
  41669. height: math.unit(8, "galaxies")
  41670. },
  41671. {
  41672. name: "Light Universal",
  41673. height: math.unit(4, "universes")
  41674. },
  41675. {
  41676. name: "Universe Atoms",
  41677. height: math.unit(1.829e9, "universes")
  41678. },
  41679. {
  41680. name: "Light Multiversal",
  41681. height: math.unit(4, "multiverses")
  41682. },
  41683. {
  41684. name: "Multiverse Atoms",
  41685. height: math.unit(1.829e9, "multiverses")
  41686. },
  41687. {
  41688. name: "Nigh-Omnipresence",
  41689. height: math.unit(8e261, "multiverses")
  41690. },
  41691. ]
  41692. ))
  41693. characterMakers.push(() => makeCharacter(
  41694. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41695. {
  41696. front: {
  41697. height: math.unit(10, "feet"),
  41698. weight: math.unit(1500, "lb"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/miles-thestia/front.svg",
  41702. extra: 1812/1727,
  41703. bottom: 86/1898
  41704. }
  41705. },
  41706. back: {
  41707. height: math.unit(10, "feet"),
  41708. weight: math.unit(1500, "lb"),
  41709. name: "Back",
  41710. image: {
  41711. source: "./media/characters/miles-thestia/back.svg",
  41712. extra: 1799/1690,
  41713. bottom: 47/1846
  41714. }
  41715. },
  41716. frontNsfw: {
  41717. height: math.unit(10, "feet"),
  41718. weight: math.unit(1500, "lb"),
  41719. name: "Front (NSFW)",
  41720. image: {
  41721. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41722. extra: 1812/1727,
  41723. bottom: 86/1898
  41724. }
  41725. },
  41726. },
  41727. [
  41728. {
  41729. name: "Mini-Macro",
  41730. height: math.unit(10, "feet"),
  41731. default: true
  41732. },
  41733. ]
  41734. ))
  41735. characterMakers.push(() => makeCharacter(
  41736. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41737. {
  41738. front: {
  41739. height: math.unit(25, "feet"),
  41740. name: "Front",
  41741. image: {
  41742. source: "./media/characters/titan-s-wulf/front.svg",
  41743. extra: 1560/1484,
  41744. bottom: 76/1636
  41745. }
  41746. },
  41747. },
  41748. [
  41749. {
  41750. name: "Smallest",
  41751. height: math.unit(25, "feet"),
  41752. default: true
  41753. },
  41754. {
  41755. name: "Normal",
  41756. height: math.unit(200, "feet")
  41757. },
  41758. {
  41759. name: "Macro",
  41760. height: math.unit(200000, "feet")
  41761. },
  41762. {
  41763. name: "Multiversal Original",
  41764. height: math.unit(10000, "multiverses")
  41765. },
  41766. ]
  41767. ))
  41768. characterMakers.push(() => makeCharacter(
  41769. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41770. {
  41771. front: {
  41772. height: math.unit(8, "feet"),
  41773. weight: math.unit(553, "lb"),
  41774. name: "Front",
  41775. image: {
  41776. source: "./media/characters/tawendeh/front.svg",
  41777. extra: 2365/2268,
  41778. bottom: 83/2448
  41779. }
  41780. },
  41781. frontClothed: {
  41782. height: math.unit(8, "feet"),
  41783. weight: math.unit(553, "lb"),
  41784. name: "Front (Clothed)",
  41785. image: {
  41786. source: "./media/characters/tawendeh/front-clothed.svg",
  41787. extra: 2365/2268,
  41788. bottom: 83/2448
  41789. }
  41790. },
  41791. back: {
  41792. height: math.unit(8, "feet"),
  41793. weight: math.unit(553, "lb"),
  41794. name: "Back",
  41795. image: {
  41796. source: "./media/characters/tawendeh/back.svg",
  41797. extra: 2397/2294,
  41798. bottom: 42/2439
  41799. }
  41800. },
  41801. },
  41802. [
  41803. {
  41804. name: "Mortal Interaction",
  41805. height: math.unit(8, "feet"),
  41806. default: true
  41807. },
  41808. {
  41809. name: "Giant",
  41810. height: math.unit(80, "feet")
  41811. },
  41812. {
  41813. name: "Macro",
  41814. height: math.unit(800, "feet")
  41815. },
  41816. {
  41817. name: "Megamacro",
  41818. height: math.unit(8000, "feet")
  41819. },
  41820. {
  41821. name: "City-Crushing",
  41822. height: math.unit(24000, "feet")
  41823. },
  41824. {
  41825. name: "Mountain-Mashing",
  41826. height: math.unit(80000, "feet")
  41827. },
  41828. {
  41829. name: "Nation Nemesis",
  41830. height: math.unit(8e6, "feet")
  41831. },
  41832. {
  41833. name: "Continent Cracker",
  41834. height: math.unit(24e6, "feet")
  41835. },
  41836. {
  41837. name: "Earth-Eclipsing",
  41838. height: math.unit(2.4e8, "feet")
  41839. },
  41840. {
  41841. name: "Gas Giant Gulper",
  41842. height: math.unit(2.4e9, "feet")
  41843. },
  41844. {
  41845. name: "Sol-Swallowing",
  41846. height: math.unit(8e10, "feet")
  41847. },
  41848. {
  41849. name: "Galaxy Gulper",
  41850. height: math.unit(8, "galaxies")
  41851. },
  41852. {
  41853. name: "Cosmos Churner",
  41854. height: math.unit(8, "universes")
  41855. },
  41856. {
  41857. name: "Omnipotent Otter",
  41858. height: math.unit(80, "universes")
  41859. },
  41860. ]
  41861. ))
  41862. characterMakers.push(() => makeCharacter(
  41863. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41864. {
  41865. front: {
  41866. height: math.unit(2.6, "meters"),
  41867. weight: math.unit(900, "kg"),
  41868. name: "Front",
  41869. image: {
  41870. source: "./media/characters/neesha/front.svg",
  41871. extra: 1803/1653,
  41872. bottom: 128/1931
  41873. }
  41874. },
  41875. },
  41876. [
  41877. {
  41878. name: "Normal",
  41879. height: math.unit(2.6, "meters"),
  41880. default: true
  41881. },
  41882. {
  41883. name: "Macro",
  41884. height: math.unit(50, "meters")
  41885. },
  41886. ]
  41887. ))
  41888. characterMakers.push(() => makeCharacter(
  41889. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41890. {
  41891. front: {
  41892. height: math.unit(5, "feet"),
  41893. weight: math.unit(185, "lb"),
  41894. name: "Front",
  41895. image: {
  41896. source: "./media/characters/kyera/front.svg",
  41897. extra: 1875/1790,
  41898. bottom: 96/1971
  41899. }
  41900. },
  41901. },
  41902. [
  41903. {
  41904. name: "Normal",
  41905. height: math.unit(5, "feet"),
  41906. default: true
  41907. },
  41908. ]
  41909. ))
  41910. characterMakers.push(() => makeCharacter(
  41911. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41912. {
  41913. front: {
  41914. height: math.unit(7 + 6/12, "feet"),
  41915. weight: math.unit(540, "lb"),
  41916. name: "Front",
  41917. image: {
  41918. source: "./media/characters/yuko/front.svg",
  41919. extra: 1282/1222,
  41920. bottom: 101/1383
  41921. }
  41922. },
  41923. frontClothed: {
  41924. height: math.unit(7 + 6/12, "feet"),
  41925. weight: math.unit(540, "lb"),
  41926. name: "Front (Clothed)",
  41927. image: {
  41928. source: "./media/characters/yuko/front-clothed.svg",
  41929. extra: 1282/1222,
  41930. bottom: 101/1383
  41931. }
  41932. },
  41933. },
  41934. [
  41935. {
  41936. name: "Normal",
  41937. height: math.unit(7 + 6/12, "feet"),
  41938. default: true
  41939. },
  41940. {
  41941. name: "Macro",
  41942. height: math.unit(26 + 9/12, "feet")
  41943. },
  41944. {
  41945. name: "Megamacro",
  41946. height: math.unit(300, "feet")
  41947. },
  41948. {
  41949. name: "Gigamacro",
  41950. height: math.unit(5000, "feet")
  41951. },
  41952. {
  41953. name: "Planetary",
  41954. height: math.unit(10000, "miles")
  41955. },
  41956. ]
  41957. ))
  41958. characterMakers.push(() => makeCharacter(
  41959. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41960. {
  41961. front: {
  41962. height: math.unit(8 + 2/12, "feet"),
  41963. weight: math.unit(600, "lb"),
  41964. name: "Front",
  41965. image: {
  41966. source: "./media/characters/deam-nitrel/front.svg",
  41967. extra: 1308/1234,
  41968. bottom: 125/1433
  41969. }
  41970. },
  41971. },
  41972. [
  41973. {
  41974. name: "Normal",
  41975. height: math.unit(8 + 2/12, "feet"),
  41976. default: true
  41977. },
  41978. ]
  41979. ))
  41980. characterMakers.push(() => makeCharacter(
  41981. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41982. {
  41983. front: {
  41984. height: math.unit(6.1, "feet"),
  41985. weight: math.unit(180, "lb"),
  41986. name: "Front",
  41987. image: {
  41988. source: "./media/characters/skyress/front.svg",
  41989. extra: 1045/915,
  41990. bottom: 28/1073
  41991. }
  41992. },
  41993. maw: {
  41994. height: math.unit(1, "feet"),
  41995. name: "Maw",
  41996. image: {
  41997. source: "./media/characters/skyress/maw.svg"
  41998. }
  41999. },
  42000. },
  42001. [
  42002. {
  42003. name: "Normal",
  42004. height: math.unit(6.1, "feet"),
  42005. default: true
  42006. },
  42007. {
  42008. name: "Macro",
  42009. height: math.unit(200, "feet")
  42010. },
  42011. ]
  42012. ))
  42013. characterMakers.push(() => makeCharacter(
  42014. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42015. {
  42016. front: {
  42017. height: math.unit(4 + 2/12, "feet"),
  42018. weight: math.unit(40, "kg"),
  42019. name: "Front",
  42020. image: {
  42021. source: "./media/characters/amethyst-jones/front.svg",
  42022. extra: 1220/1150,
  42023. bottom: 101/1321
  42024. }
  42025. },
  42026. },
  42027. [
  42028. {
  42029. name: "Normal",
  42030. height: math.unit(4 + 2/12, "feet"),
  42031. default: true
  42032. },
  42033. ]
  42034. ))
  42035. characterMakers.push(() => makeCharacter(
  42036. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42037. {
  42038. front: {
  42039. height: math.unit(1.7, "m"),
  42040. weight: math.unit(135, "lb"),
  42041. name: "Front",
  42042. image: {
  42043. source: "./media/characters/jade/front.svg",
  42044. extra: 1818/1767,
  42045. bottom: 32/1850
  42046. }
  42047. },
  42048. back: {
  42049. height: math.unit(1.7, "m"),
  42050. weight: math.unit(135, "lb"),
  42051. name: "Back",
  42052. image: {
  42053. source: "./media/characters/jade/back.svg",
  42054. extra: 1869/1809,
  42055. bottom: 35/1904
  42056. }
  42057. },
  42058. hand: {
  42059. height: math.unit(0.24, "m"),
  42060. name: "Hand",
  42061. image: {
  42062. source: "./media/characters/jade/hand.svg"
  42063. }
  42064. },
  42065. foot: {
  42066. height: math.unit(0.263, "m"),
  42067. name: "Foot",
  42068. image: {
  42069. source: "./media/characters/jade/foot.svg"
  42070. }
  42071. },
  42072. dick: {
  42073. height: math.unit(0.47, "m"),
  42074. name: "Dick",
  42075. image: {
  42076. source: "./media/characters/jade/dick.svg"
  42077. }
  42078. },
  42079. },
  42080. [
  42081. {
  42082. name: "Micro",
  42083. height: math.unit(22, "cm")
  42084. },
  42085. {
  42086. name: "Normal",
  42087. height: math.unit(1.7, "m"),
  42088. default: true
  42089. },
  42090. {
  42091. name: "Macro",
  42092. height: math.unit(152, "m")
  42093. },
  42094. ]
  42095. ))
  42096. characterMakers.push(() => makeCharacter(
  42097. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42098. {
  42099. front: {
  42100. height: math.unit(100, "miles"),
  42101. weight: math.unit(20000, "tons"),
  42102. name: "Front",
  42103. image: {
  42104. source: "./media/characters/cookie/front.svg",
  42105. extra: 1125/1070,
  42106. bottom: 30/1155
  42107. }
  42108. },
  42109. },
  42110. [
  42111. {
  42112. name: "Big",
  42113. height: math.unit(50, "feet")
  42114. },
  42115. {
  42116. name: "Macro",
  42117. height: math.unit(100, "miles"),
  42118. default: true
  42119. },
  42120. {
  42121. name: "Megamacro",
  42122. height: math.unit(90000, "miles")
  42123. },
  42124. ]
  42125. ))
  42126. characterMakers.push(() => makeCharacter(
  42127. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42128. {
  42129. front: {
  42130. height: math.unit(6, "feet"),
  42131. weight: math.unit(145, "lb"),
  42132. name: "Front",
  42133. image: {
  42134. source: "./media/characters/farzian/front.svg",
  42135. extra: 1902/1693,
  42136. bottom: 108/2010
  42137. }
  42138. },
  42139. },
  42140. [
  42141. {
  42142. name: "Macro",
  42143. height: math.unit(500, "feet"),
  42144. default: true
  42145. },
  42146. ]
  42147. ))
  42148. characterMakers.push(() => makeCharacter(
  42149. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42150. {
  42151. front: {
  42152. height: math.unit(3 + 6/12, "feet"),
  42153. weight: math.unit(50, "lb"),
  42154. name: "Front",
  42155. image: {
  42156. source: "./media/characters/kimberly-tilson/front.svg",
  42157. extra: 1400/1322,
  42158. bottom: 36/1436
  42159. }
  42160. },
  42161. back: {
  42162. height: math.unit(3 + 6/12, "feet"),
  42163. weight: math.unit(50, "lb"),
  42164. name: "Back",
  42165. image: {
  42166. source: "./media/characters/kimberly-tilson/back.svg",
  42167. extra: 1370/1307,
  42168. bottom: 20/1390
  42169. }
  42170. },
  42171. },
  42172. [
  42173. {
  42174. name: "Normal",
  42175. height: math.unit(3 + 6/12, "feet"),
  42176. default: true
  42177. },
  42178. ]
  42179. ))
  42180. characterMakers.push(() => makeCharacter(
  42181. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42182. {
  42183. front: {
  42184. height: math.unit(1148, "feet"),
  42185. weight: math.unit(34057, "lb"),
  42186. name: "Front",
  42187. image: {
  42188. source: "./media/characters/harthos/front.svg",
  42189. extra: 1391/1339,
  42190. bottom: 13/1404
  42191. }
  42192. },
  42193. },
  42194. [
  42195. {
  42196. name: "Macro",
  42197. height: math.unit(1148, "feet"),
  42198. default: true
  42199. },
  42200. ]
  42201. ))
  42202. characterMakers.push(() => makeCharacter(
  42203. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42204. {
  42205. front: {
  42206. height: math.unit(15, "feet"),
  42207. name: "Front",
  42208. image: {
  42209. source: "./media/characters/hypatia/front.svg",
  42210. extra: 1653/1591,
  42211. bottom: 79/1732
  42212. }
  42213. },
  42214. },
  42215. [
  42216. {
  42217. name: "Normal",
  42218. height: math.unit(15, "feet")
  42219. },
  42220. {
  42221. name: "Small",
  42222. height: math.unit(300, "feet")
  42223. },
  42224. {
  42225. name: "Macro",
  42226. height: math.unit(2500, "feet"),
  42227. default: true
  42228. },
  42229. {
  42230. name: "Mega Macro",
  42231. height: math.unit(1500, "miles")
  42232. },
  42233. {
  42234. name: "Giga Macro",
  42235. height: math.unit(1.5e6, "miles")
  42236. },
  42237. ]
  42238. ))
  42239. characterMakers.push(() => makeCharacter(
  42240. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42241. {
  42242. front: {
  42243. height: math.unit(6, "feet"),
  42244. weight: math.unit(200, "lb"),
  42245. name: "Front",
  42246. image: {
  42247. source: "./media/characters/wulver/front.svg",
  42248. extra: 1724/1632,
  42249. bottom: 130/1854
  42250. }
  42251. },
  42252. frontNsfw: {
  42253. height: math.unit(6, "feet"),
  42254. weight: math.unit(200, "lb"),
  42255. name: "Front (NSFW)",
  42256. image: {
  42257. source: "./media/characters/wulver/front-nsfw.svg",
  42258. extra: 1724/1632,
  42259. bottom: 130/1854
  42260. }
  42261. },
  42262. },
  42263. [
  42264. {
  42265. name: "Human-Sized",
  42266. height: math.unit(6, "feet")
  42267. },
  42268. {
  42269. name: "Normal",
  42270. height: math.unit(4, "meters"),
  42271. default: true
  42272. },
  42273. {
  42274. name: "Large",
  42275. height: math.unit(6, "m")
  42276. },
  42277. ]
  42278. ))
  42279. characterMakers.push(() => makeCharacter(
  42280. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42281. {
  42282. front: {
  42283. height: math.unit(7, "feet"),
  42284. name: "Front",
  42285. image: {
  42286. source: "./media/characters/maru/front.svg",
  42287. extra: 1595/1570,
  42288. bottom: 0/1595
  42289. }
  42290. },
  42291. },
  42292. [
  42293. {
  42294. name: "Normal",
  42295. height: math.unit(7, "feet"),
  42296. default: true
  42297. },
  42298. {
  42299. name: "Macro",
  42300. height: math.unit(700, "feet")
  42301. },
  42302. {
  42303. name: "Mega Macro",
  42304. height: math.unit(25, "miles")
  42305. },
  42306. ]
  42307. ))
  42308. characterMakers.push(() => makeCharacter(
  42309. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42310. {
  42311. front: {
  42312. height: math.unit(6, "feet"),
  42313. weight: math.unit(170, "lb"),
  42314. name: "Front",
  42315. image: {
  42316. source: "./media/characters/xenon/front.svg",
  42317. extra: 1376/1305,
  42318. bottom: 56/1432
  42319. }
  42320. },
  42321. back: {
  42322. height: math.unit(6, "feet"),
  42323. weight: math.unit(170, "lb"),
  42324. name: "Back",
  42325. image: {
  42326. source: "./media/characters/xenon/back.svg",
  42327. extra: 1328/1259,
  42328. bottom: 95/1423
  42329. }
  42330. },
  42331. maw: {
  42332. height: math.unit(0.52, "feet"),
  42333. name: "Maw",
  42334. image: {
  42335. source: "./media/characters/xenon/maw.svg"
  42336. }
  42337. },
  42338. handLeft: {
  42339. height: math.unit(0.82 * 169 / 153, "feet"),
  42340. name: "Hand (Left)",
  42341. image: {
  42342. source: "./media/characters/xenon/hand-left.svg"
  42343. }
  42344. },
  42345. handRight: {
  42346. height: math.unit(0.82, "feet"),
  42347. name: "Hand (Right)",
  42348. image: {
  42349. source: "./media/characters/xenon/hand-right.svg"
  42350. }
  42351. },
  42352. footLeft: {
  42353. height: math.unit(1.13, "feet"),
  42354. name: "Foot (Left)",
  42355. image: {
  42356. source: "./media/characters/xenon/foot-left.svg"
  42357. }
  42358. },
  42359. footRight: {
  42360. height: math.unit(1.13 * 194 / 196, "feet"),
  42361. name: "Foot (Right)",
  42362. image: {
  42363. source: "./media/characters/xenon/foot-right.svg"
  42364. }
  42365. },
  42366. },
  42367. [
  42368. {
  42369. name: "Micro",
  42370. height: math.unit(0.8, "inches")
  42371. },
  42372. {
  42373. name: "Normal",
  42374. height: math.unit(6, "feet")
  42375. },
  42376. {
  42377. name: "Macro",
  42378. height: math.unit(50, "feet"),
  42379. default: true
  42380. },
  42381. {
  42382. name: "Macro+",
  42383. height: math.unit(250, "feet")
  42384. },
  42385. {
  42386. name: "Megamacro",
  42387. height: math.unit(1500, "feet")
  42388. },
  42389. ]
  42390. ))
  42391. characterMakers.push(() => makeCharacter(
  42392. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42393. {
  42394. front: {
  42395. height: math.unit(7 + 5/12, "feet"),
  42396. name: "Front",
  42397. image: {
  42398. source: "./media/characters/zane/front.svg",
  42399. extra: 1260/1203,
  42400. bottom: 94/1354
  42401. }
  42402. },
  42403. back: {
  42404. height: math.unit(5.05, "feet"),
  42405. name: "Back",
  42406. image: {
  42407. source: "./media/characters/zane/back.svg",
  42408. extra: 893/829,
  42409. bottom: 30/923
  42410. }
  42411. },
  42412. werewolf: {
  42413. height: math.unit(11, "feet"),
  42414. name: "Werewolf",
  42415. image: {
  42416. source: "./media/characters/zane/werewolf.svg",
  42417. extra: 1383/1323,
  42418. bottom: 89/1472
  42419. }
  42420. },
  42421. foot: {
  42422. height: math.unit(1.46, "feet"),
  42423. name: "Foot",
  42424. image: {
  42425. source: "./media/characters/zane/foot.svg"
  42426. }
  42427. },
  42428. footFront: {
  42429. height: math.unit(0.784, "feet"),
  42430. name: "Foot (Front)",
  42431. image: {
  42432. source: "./media/characters/zane/foot-front.svg"
  42433. }
  42434. },
  42435. dick: {
  42436. height: math.unit(1.95, "feet"),
  42437. name: "Dick",
  42438. image: {
  42439. source: "./media/characters/zane/dick.svg"
  42440. }
  42441. },
  42442. dickWerewolf: {
  42443. height: math.unit(3.77, "feet"),
  42444. name: "Dick (Werewolf)",
  42445. image: {
  42446. source: "./media/characters/zane/dick.svg"
  42447. }
  42448. },
  42449. },
  42450. [
  42451. {
  42452. name: "Normal",
  42453. height: math.unit(7 + 5/12, "feet"),
  42454. default: true
  42455. },
  42456. ]
  42457. ))
  42458. characterMakers.push(() => makeCharacter(
  42459. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42460. {
  42461. front: {
  42462. height: math.unit(6 + 2/12, "feet"),
  42463. weight: math.unit(284, "lb"),
  42464. name: "Front",
  42465. image: {
  42466. source: "./media/characters/benni-desparque/front.svg",
  42467. extra: 1353/1126,
  42468. bottom: 69/1422
  42469. }
  42470. },
  42471. },
  42472. [
  42473. {
  42474. name: "Civilian",
  42475. height: math.unit(6 + 2/12, "feet")
  42476. },
  42477. {
  42478. name: "Normal",
  42479. height: math.unit(98, "feet"),
  42480. default: true
  42481. },
  42482. {
  42483. name: "Kaiju Fighter",
  42484. height: math.unit(268, "feet")
  42485. },
  42486. ]
  42487. ))
  42488. characterMakers.push(() => makeCharacter(
  42489. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42490. {
  42491. front: {
  42492. height: math.unit(5, "feet"),
  42493. weight: math.unit(105, "lb"),
  42494. name: "Front",
  42495. image: {
  42496. source: "./media/characters/maxine/front.svg",
  42497. extra: 1386/1250,
  42498. bottom: 71/1457
  42499. }
  42500. },
  42501. },
  42502. [
  42503. {
  42504. name: "Normal",
  42505. height: math.unit(5, "feet"),
  42506. default: true
  42507. },
  42508. ]
  42509. ))
  42510. characterMakers.push(() => makeCharacter(
  42511. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42512. {
  42513. front: {
  42514. height: math.unit(11 + 7/12, "feet"),
  42515. weight: math.unit(9576, "lb"),
  42516. name: "Front",
  42517. image: {
  42518. source: "./media/characters/scaly/front.svg",
  42519. extra: 888/867,
  42520. bottom: 36/924
  42521. }
  42522. },
  42523. },
  42524. [
  42525. {
  42526. name: "Normal",
  42527. height: math.unit(11 + 7/12, "feet"),
  42528. default: true
  42529. },
  42530. ]
  42531. ))
  42532. characterMakers.push(() => makeCharacter(
  42533. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42534. {
  42535. front: {
  42536. height: math.unit(6 + 3/12, "feet"),
  42537. name: "Front",
  42538. image: {
  42539. source: "./media/characters/saelria/front.svg",
  42540. extra: 1243/1138,
  42541. bottom: 46/1289
  42542. }
  42543. },
  42544. },
  42545. [
  42546. {
  42547. name: "Micro",
  42548. height: math.unit(6, "inches"),
  42549. },
  42550. {
  42551. name: "Normal",
  42552. height: math.unit(6 + 3/12, "feet"),
  42553. default: true
  42554. },
  42555. {
  42556. name: "Macro",
  42557. height: math.unit(25, "feet")
  42558. },
  42559. ]
  42560. ))
  42561. characterMakers.push(() => makeCharacter(
  42562. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42563. {
  42564. front: {
  42565. height: math.unit(80, "meters"),
  42566. weight: math.unit(7000, "tonnes"),
  42567. name: "Front",
  42568. image: {
  42569. source: "./media/characters/tef/front.svg",
  42570. extra: 2036/1991,
  42571. bottom: 54/2090
  42572. }
  42573. },
  42574. back: {
  42575. height: math.unit(80, "meters"),
  42576. weight: math.unit(7000, "tonnes"),
  42577. name: "Back",
  42578. image: {
  42579. source: "./media/characters/tef/back.svg",
  42580. extra: 2036/1991,
  42581. bottom: 54/2090
  42582. }
  42583. },
  42584. },
  42585. [
  42586. {
  42587. name: "Macro",
  42588. height: math.unit(80, "meters"),
  42589. default: true
  42590. },
  42591. ]
  42592. ))
  42593. characterMakers.push(() => makeCharacter(
  42594. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42595. {
  42596. front: {
  42597. height: math.unit(13, "feet"),
  42598. weight: math.unit(6, "tons"),
  42599. name: "Front",
  42600. image: {
  42601. source: "./media/characters/rover/front.svg",
  42602. extra: 1233/1156,
  42603. bottom: 50/1283
  42604. }
  42605. },
  42606. back: {
  42607. height: math.unit(13, "feet"),
  42608. weight: math.unit(6, "tons"),
  42609. name: "Back",
  42610. image: {
  42611. source: "./media/characters/rover/back.svg",
  42612. extra: 1327/1258,
  42613. bottom: 39/1366
  42614. }
  42615. },
  42616. },
  42617. [
  42618. {
  42619. name: "Normal",
  42620. height: math.unit(13, "feet"),
  42621. default: true
  42622. },
  42623. {
  42624. name: "Macro",
  42625. height: math.unit(1300, "feet")
  42626. },
  42627. {
  42628. name: "Megamacro",
  42629. height: math.unit(1300, "miles")
  42630. },
  42631. {
  42632. name: "Gigamacro",
  42633. height: math.unit(1300000, "miles")
  42634. },
  42635. ]
  42636. ))
  42637. characterMakers.push(() => makeCharacter(
  42638. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42639. {
  42640. front: {
  42641. height: math.unit(6, "feet"),
  42642. weight: math.unit(150, "lb"),
  42643. name: "Front",
  42644. image: {
  42645. source: "./media/characters/ariz/front.svg",
  42646. extra: 1401/1346,
  42647. bottom: 5/1406
  42648. }
  42649. },
  42650. },
  42651. [
  42652. {
  42653. name: "Normal",
  42654. height: math.unit(10, "feet"),
  42655. default: true
  42656. },
  42657. ]
  42658. ))
  42659. characterMakers.push(() => makeCharacter(
  42660. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42661. {
  42662. front: {
  42663. height: math.unit(6, "feet"),
  42664. weight: math.unit(140, "lb"),
  42665. name: "Front",
  42666. image: {
  42667. source: "./media/characters/sigrun/front.svg",
  42668. extra: 1418/1359,
  42669. bottom: 27/1445
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Macro",
  42676. height: math.unit(35, "feet"),
  42677. default: true
  42678. },
  42679. ]
  42680. ))
  42681. characterMakers.push(() => makeCharacter(
  42682. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42683. {
  42684. front: {
  42685. height: math.unit(6, "feet"),
  42686. weight: math.unit(150, "lb"),
  42687. name: "Front",
  42688. image: {
  42689. source: "./media/characters/numin/front.svg",
  42690. extra: 1433/1388,
  42691. bottom: 12/1445
  42692. }
  42693. },
  42694. },
  42695. [
  42696. {
  42697. name: "Macro",
  42698. height: math.unit(21.5, "km"),
  42699. default: true
  42700. },
  42701. ]
  42702. ))
  42703. characterMakers.push(() => makeCharacter(
  42704. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42705. {
  42706. front: {
  42707. height: math.unit(6, "feet"),
  42708. weight: math.unit(463, "lb"),
  42709. name: "Front",
  42710. image: {
  42711. source: "./media/characters/melwa/front.svg",
  42712. extra: 1307/1248,
  42713. bottom: 93/1400
  42714. }
  42715. },
  42716. },
  42717. [
  42718. {
  42719. name: "Macro",
  42720. height: math.unit(50, "meters"),
  42721. default: true
  42722. },
  42723. ]
  42724. ))
  42725. characterMakers.push(() => makeCharacter(
  42726. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42727. {
  42728. front: {
  42729. height: math.unit(325, "feet"),
  42730. name: "Front",
  42731. image: {
  42732. source: "./media/characters/zorkaiju/front.svg",
  42733. extra: 1955/1814,
  42734. bottom: 40/1995
  42735. }
  42736. },
  42737. frontExtended: {
  42738. height: math.unit(325, "feet"),
  42739. name: "Front (Extended)",
  42740. image: {
  42741. source: "./media/characters/zorkaiju/front-extended.svg",
  42742. extra: 1955/1814,
  42743. bottom: 40/1995
  42744. }
  42745. },
  42746. side: {
  42747. height: math.unit(325, "feet"),
  42748. name: "Side",
  42749. image: {
  42750. source: "./media/characters/zorkaiju/side.svg",
  42751. extra: 1495/1396,
  42752. bottom: 17/1512
  42753. }
  42754. },
  42755. sideExtended: {
  42756. height: math.unit(325, "feet"),
  42757. name: "Side (Extended)",
  42758. image: {
  42759. source: "./media/characters/zorkaiju/side-extended.svg",
  42760. extra: 1495/1396,
  42761. bottom: 17/1512
  42762. }
  42763. },
  42764. back: {
  42765. height: math.unit(325, "feet"),
  42766. name: "Back",
  42767. image: {
  42768. source: "./media/characters/zorkaiju/back.svg",
  42769. extra: 1959/1821,
  42770. bottom: 31/1990
  42771. }
  42772. },
  42773. backExtended: {
  42774. height: math.unit(325, "feet"),
  42775. name: "Back (Extended)",
  42776. image: {
  42777. source: "./media/characters/zorkaiju/back-extended.svg",
  42778. extra: 1959/1821,
  42779. bottom: 31/1990
  42780. }
  42781. },
  42782. hand: {
  42783. height: math.unit(58.4, "feet"),
  42784. name: "Hand",
  42785. image: {
  42786. source: "./media/characters/zorkaiju/hand.svg"
  42787. }
  42788. },
  42789. handExtended: {
  42790. height: math.unit(61.4, "feet"),
  42791. name: "Hand (Extended)",
  42792. image: {
  42793. source: "./media/characters/zorkaiju/hand-extended.svg"
  42794. }
  42795. },
  42796. foot: {
  42797. height: math.unit(95, "feet"),
  42798. name: "Foot",
  42799. image: {
  42800. source: "./media/characters/zorkaiju/foot.svg"
  42801. }
  42802. },
  42803. leftArm: {
  42804. height: math.unit(59, "feet"),
  42805. name: "Left Arm",
  42806. image: {
  42807. source: "./media/characters/zorkaiju/left-arm.svg"
  42808. }
  42809. },
  42810. rightArm: {
  42811. height: math.unit(59, "feet"),
  42812. name: "Right Arm",
  42813. image: {
  42814. source: "./media/characters/zorkaiju/right-arm.svg"
  42815. }
  42816. },
  42817. leftArmExtended: {
  42818. height: math.unit(59 * 1.033546, "feet"),
  42819. name: "Left Arm (Extended)",
  42820. image: {
  42821. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42822. }
  42823. },
  42824. rightArmExtended: {
  42825. height: math.unit(59 * 1.0496, "feet"),
  42826. name: "Right Arm (Extended)",
  42827. image: {
  42828. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42829. }
  42830. },
  42831. tail: {
  42832. height: math.unit(104, "feet"),
  42833. name: "Tail",
  42834. image: {
  42835. source: "./media/characters/zorkaiju/tail.svg"
  42836. }
  42837. },
  42838. tailExtended: {
  42839. height: math.unit(104, "feet"),
  42840. name: "Tail (Extended)",
  42841. image: {
  42842. source: "./media/characters/zorkaiju/tail-extended.svg"
  42843. }
  42844. },
  42845. tailBottom: {
  42846. height: math.unit(104, "feet"),
  42847. name: "Tail Bottom",
  42848. image: {
  42849. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42850. }
  42851. },
  42852. crystal: {
  42853. height: math.unit(27.54, "feet"),
  42854. name: "Crystal",
  42855. image: {
  42856. source: "./media/characters/zorkaiju/crystal.svg"
  42857. }
  42858. },
  42859. },
  42860. [
  42861. {
  42862. name: "Kaiju",
  42863. height: math.unit(325, "feet"),
  42864. default: true
  42865. },
  42866. ]
  42867. ))
  42868. characterMakers.push(() => makeCharacter(
  42869. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42870. {
  42871. front: {
  42872. height: math.unit(6 + 1/12, "feet"),
  42873. weight: math.unit(115, "lb"),
  42874. name: "Front",
  42875. image: {
  42876. source: "./media/characters/bailey-belfry/front.svg",
  42877. extra: 1240/1121,
  42878. bottom: 101/1341
  42879. }
  42880. },
  42881. },
  42882. [
  42883. {
  42884. name: "Normal",
  42885. height: math.unit(6 + 1/12, "feet"),
  42886. default: true
  42887. },
  42888. ]
  42889. ))
  42890. characterMakers.push(() => makeCharacter(
  42891. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42892. {
  42893. side: {
  42894. height: math.unit(4, "meters"),
  42895. weight: math.unit(250, "kg"),
  42896. name: "Side",
  42897. image: {
  42898. source: "./media/characters/blacky/side.svg",
  42899. extra: 1027/919,
  42900. bottom: 43/1070
  42901. }
  42902. },
  42903. maw: {
  42904. height: math.unit(1, "meters"),
  42905. name: "Maw",
  42906. image: {
  42907. source: "./media/characters/blacky/maw.svg"
  42908. }
  42909. },
  42910. paw: {
  42911. height: math.unit(1, "meters"),
  42912. name: "Paw",
  42913. image: {
  42914. source: "./media/characters/blacky/paw.svg"
  42915. }
  42916. },
  42917. },
  42918. [
  42919. {
  42920. name: "Normal",
  42921. height: math.unit(4, "meters"),
  42922. default: true
  42923. },
  42924. ]
  42925. ))
  42926. characterMakers.push(() => makeCharacter(
  42927. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42928. {
  42929. front: {
  42930. height: math.unit(170, "cm"),
  42931. weight: math.unit(66, "kg"),
  42932. name: "Front",
  42933. image: {
  42934. source: "./media/characters/thux-ei/front.svg",
  42935. extra: 1109/1011,
  42936. bottom: 8/1117
  42937. }
  42938. },
  42939. },
  42940. [
  42941. {
  42942. name: "Normal",
  42943. height: math.unit(170, "cm"),
  42944. default: true
  42945. },
  42946. ]
  42947. ))
  42948. characterMakers.push(() => makeCharacter(
  42949. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42950. {
  42951. front: {
  42952. height: math.unit(5, "feet"),
  42953. weight: math.unit(120, "lb"),
  42954. name: "Front",
  42955. image: {
  42956. source: "./media/characters/roxanne-voltaire/front.svg",
  42957. extra: 1901/1779,
  42958. bottom: 53/1954
  42959. }
  42960. },
  42961. },
  42962. [
  42963. {
  42964. name: "Normal",
  42965. height: math.unit(5, "feet"),
  42966. default: true
  42967. },
  42968. {
  42969. name: "Giant",
  42970. height: math.unit(50, "feet")
  42971. },
  42972. {
  42973. name: "Titan",
  42974. height: math.unit(500, "feet")
  42975. },
  42976. {
  42977. name: "Macro",
  42978. height: math.unit(5000, "feet")
  42979. },
  42980. {
  42981. name: "Megamacro",
  42982. height: math.unit(50000, "feet")
  42983. },
  42984. {
  42985. name: "Gigamacro",
  42986. height: math.unit(500000, "feet")
  42987. },
  42988. {
  42989. name: "Teramacro",
  42990. height: math.unit(5e6, "feet")
  42991. },
  42992. ]
  42993. ))
  42994. characterMakers.push(() => makeCharacter(
  42995. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42996. {
  42997. front: {
  42998. height: math.unit(6 + 2/12, "feet"),
  42999. name: "Front",
  43000. image: {
  43001. source: "./media/characters/squeaks/front.svg",
  43002. extra: 1823/1768,
  43003. bottom: 138/1961
  43004. }
  43005. },
  43006. },
  43007. [
  43008. {
  43009. name: "Micro",
  43010. height: math.unit(0.5, "inches")
  43011. },
  43012. {
  43013. name: "Normal",
  43014. height: math.unit(6 + 2/12, "feet"),
  43015. default: true
  43016. },
  43017. {
  43018. name: "Macro",
  43019. height: math.unit(600, "feet")
  43020. },
  43021. ]
  43022. ))
  43023. characterMakers.push(() => makeCharacter(
  43024. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43025. {
  43026. front: {
  43027. height: math.unit(1.72, "meters"),
  43028. name: "Front",
  43029. image: {
  43030. source: "./media/characters/archinger/front.svg",
  43031. extra: 1861/1675,
  43032. bottom: 125/1986
  43033. }
  43034. },
  43035. back: {
  43036. height: math.unit(1.72, "meters"),
  43037. name: "Back",
  43038. image: {
  43039. source: "./media/characters/archinger/back.svg",
  43040. extra: 1844/1701,
  43041. bottom: 104/1948
  43042. }
  43043. },
  43044. cock: {
  43045. height: math.unit(0.59, "feet"),
  43046. name: "Cock",
  43047. image: {
  43048. source: "./media/characters/archinger/cock.svg"
  43049. }
  43050. },
  43051. },
  43052. [
  43053. {
  43054. name: "Normal",
  43055. height: math.unit(1.72, "meters"),
  43056. default: true
  43057. },
  43058. {
  43059. name: "Macro",
  43060. height: math.unit(84, "meters")
  43061. },
  43062. {
  43063. name: "Macro+",
  43064. height: math.unit(112, "meters")
  43065. },
  43066. {
  43067. name: "Macro++",
  43068. height: math.unit(960, "meters")
  43069. },
  43070. {
  43071. name: "Macro+++",
  43072. height: math.unit(4, "km")
  43073. },
  43074. {
  43075. name: "Macro++++",
  43076. height: math.unit(48, "km")
  43077. },
  43078. {
  43079. name: "Macro+++++",
  43080. height: math.unit(4500, "km")
  43081. },
  43082. ]
  43083. ))
  43084. characterMakers.push(() => makeCharacter(
  43085. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43086. {
  43087. front: {
  43088. height: math.unit(5 + 5/12, "feet"),
  43089. name: "Front",
  43090. image: {
  43091. source: "./media/characters/alsnapz/front.svg",
  43092. extra: 1157/1065,
  43093. bottom: 42/1199
  43094. }
  43095. },
  43096. },
  43097. [
  43098. {
  43099. name: "Normal",
  43100. height: math.unit(5 + 5/12, "feet"),
  43101. default: true
  43102. },
  43103. ]
  43104. ))
  43105. characterMakers.push(() => makeCharacter(
  43106. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43107. {
  43108. side: {
  43109. height: math.unit(3.2, "earths"),
  43110. name: "Side",
  43111. image: {
  43112. source: "./media/characters/mag/side.svg",
  43113. extra: 1331/1008,
  43114. bottom: 52/1383
  43115. }
  43116. },
  43117. wing: {
  43118. height: math.unit(1.94, "earths"),
  43119. name: "Wing",
  43120. image: {
  43121. source: "./media/characters/mag/wing.svg"
  43122. }
  43123. },
  43124. dick: {
  43125. height: math.unit(1.8, "earths"),
  43126. name: "Dick",
  43127. image: {
  43128. source: "./media/characters/mag/dick.svg"
  43129. }
  43130. },
  43131. ass: {
  43132. height: math.unit(1.33, "earths"),
  43133. name: "Ass",
  43134. image: {
  43135. source: "./media/characters/mag/ass.svg"
  43136. }
  43137. },
  43138. head: {
  43139. height: math.unit(1.1, "earths"),
  43140. name: "Head",
  43141. image: {
  43142. source: "./media/characters/mag/head.svg"
  43143. }
  43144. },
  43145. maw: {
  43146. height: math.unit(1.62, "earths"),
  43147. name: "Maw",
  43148. image: {
  43149. source: "./media/characters/mag/maw.svg"
  43150. }
  43151. },
  43152. },
  43153. [
  43154. {
  43155. name: "Small",
  43156. height: math.unit(162, "feet")
  43157. },
  43158. {
  43159. name: "Normal",
  43160. height: math.unit(3.2, "earths"),
  43161. default: true
  43162. },
  43163. ]
  43164. ))
  43165. characterMakers.push(() => makeCharacter(
  43166. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43167. {
  43168. front: {
  43169. height: math.unit(512, "feet"),
  43170. weight: math.unit(63509, "tonnes"),
  43171. name: "Front",
  43172. image: {
  43173. source: "./media/characters/vorrel-harroc/front.svg",
  43174. extra: 1075/1063,
  43175. bottom: 62/1137
  43176. }
  43177. },
  43178. },
  43179. [
  43180. {
  43181. name: "Normal",
  43182. height: math.unit(10, "feet")
  43183. },
  43184. {
  43185. name: "Macro",
  43186. height: math.unit(512, "feet"),
  43187. default: true
  43188. },
  43189. {
  43190. name: "Megamacro",
  43191. height: math.unit(256, "miles")
  43192. },
  43193. {
  43194. name: "Gigamacro",
  43195. height: math.unit(4096, "miles")
  43196. },
  43197. ]
  43198. ))
  43199. characterMakers.push(() => makeCharacter(
  43200. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43201. {
  43202. side: {
  43203. height: math.unit(50, "feet"),
  43204. name: "Side",
  43205. image: {
  43206. source: "./media/characters/froimar/side.svg",
  43207. extra: 855/638,
  43208. bottom: 99/954
  43209. }
  43210. },
  43211. },
  43212. [
  43213. {
  43214. name: "Macro",
  43215. height: math.unit(50, "feet"),
  43216. default: true
  43217. },
  43218. ]
  43219. ))
  43220. characterMakers.push(() => makeCharacter(
  43221. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43222. {
  43223. front: {
  43224. height: math.unit(210, "miles"),
  43225. name: "Front",
  43226. image: {
  43227. source: "./media/characters/timothy/front.svg",
  43228. extra: 1007/943,
  43229. bottom: 62/1069
  43230. }
  43231. },
  43232. frontSkirt: {
  43233. height: math.unit(210, "miles"),
  43234. name: "Front (Skirt)",
  43235. image: {
  43236. source: "./media/characters/timothy/front-skirt.svg",
  43237. extra: 1007/943,
  43238. bottom: 62/1069
  43239. }
  43240. },
  43241. frontCoat: {
  43242. height: math.unit(210, "miles"),
  43243. name: "Front (Coat)",
  43244. image: {
  43245. source: "./media/characters/timothy/front-coat.svg",
  43246. extra: 1007/943,
  43247. bottom: 62/1069
  43248. }
  43249. },
  43250. },
  43251. [
  43252. {
  43253. name: "Macro",
  43254. height: math.unit(210, "miles"),
  43255. default: true
  43256. },
  43257. {
  43258. name: "Megamacro",
  43259. height: math.unit(210000, "miles")
  43260. },
  43261. ]
  43262. ))
  43263. characterMakers.push(() => makeCharacter(
  43264. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43265. {
  43266. front: {
  43267. height: math.unit(188, "feet"),
  43268. name: "Front",
  43269. image: {
  43270. source: "./media/characters/pyotr/front.svg",
  43271. extra: 1912/1826,
  43272. bottom: 18/1930
  43273. }
  43274. },
  43275. },
  43276. [
  43277. {
  43278. name: "Macro",
  43279. height: math.unit(188, "feet"),
  43280. default: true
  43281. },
  43282. {
  43283. name: "Megamacro",
  43284. height: math.unit(8, "miles")
  43285. },
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43290. {
  43291. side: {
  43292. height: math.unit(10, "feet"),
  43293. weight: math.unit(4500, "lb"),
  43294. name: "Side",
  43295. image: {
  43296. source: "./media/characters/ackart/side.svg",
  43297. extra: 1776/1668,
  43298. bottom: 116/1892
  43299. }
  43300. },
  43301. },
  43302. [
  43303. {
  43304. name: "Normal",
  43305. height: math.unit(10, "feet"),
  43306. default: true
  43307. },
  43308. ]
  43309. ))
  43310. characterMakers.push(() => makeCharacter(
  43311. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43312. {
  43313. side: {
  43314. height: math.unit(21, "feet"),
  43315. name: "Side",
  43316. image: {
  43317. source: "./media/characters/nolow/side.svg",
  43318. extra: 1484/1434,
  43319. bottom: 85/1569
  43320. }
  43321. },
  43322. sideErect: {
  43323. height: math.unit(21, "feet"),
  43324. name: "Side-erect",
  43325. image: {
  43326. source: "./media/characters/nolow/side-erect.svg",
  43327. extra: 1484/1434,
  43328. bottom: 85/1569
  43329. }
  43330. },
  43331. },
  43332. [
  43333. {
  43334. name: "Regular",
  43335. height: math.unit(12, "feet")
  43336. },
  43337. {
  43338. name: "Big Chee",
  43339. height: math.unit(21, "feet"),
  43340. default: true
  43341. },
  43342. ]
  43343. ))
  43344. characterMakers.push(() => makeCharacter(
  43345. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43346. {
  43347. front: {
  43348. height: math.unit(7, "feet"),
  43349. weight: math.unit(250, "lb"),
  43350. name: "Front",
  43351. image: {
  43352. source: "./media/characters/nines/front.svg",
  43353. extra: 1741/1607,
  43354. bottom: 41/1782
  43355. }
  43356. },
  43357. side: {
  43358. height: math.unit(7, "feet"),
  43359. weight: math.unit(250, "lb"),
  43360. name: "Side",
  43361. image: {
  43362. source: "./media/characters/nines/side.svg",
  43363. extra: 1854/1735,
  43364. bottom: 93/1947
  43365. }
  43366. },
  43367. back: {
  43368. height: math.unit(7, "feet"),
  43369. weight: math.unit(250, "lb"),
  43370. name: "Back",
  43371. image: {
  43372. source: "./media/characters/nines/back.svg",
  43373. extra: 1748/1615,
  43374. bottom: 20/1768
  43375. }
  43376. },
  43377. },
  43378. [
  43379. {
  43380. name: "Megamacro",
  43381. height: math.unit(99, "km"),
  43382. default: true
  43383. },
  43384. ]
  43385. ))
  43386. characterMakers.push(() => makeCharacter(
  43387. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43388. {
  43389. front: {
  43390. height: math.unit(5 + 10/12, "feet"),
  43391. weight: math.unit(210, "lb"),
  43392. name: "Front",
  43393. image: {
  43394. source: "./media/characters/zenith/front.svg",
  43395. extra: 1531/1452,
  43396. bottom: 198/1729
  43397. }
  43398. },
  43399. back: {
  43400. height: math.unit(5 + 10/12, "feet"),
  43401. weight: math.unit(210, "lb"),
  43402. name: "Back",
  43403. image: {
  43404. source: "./media/characters/zenith/back.svg",
  43405. extra: 1571/1487,
  43406. bottom: 75/1646
  43407. }
  43408. },
  43409. },
  43410. [
  43411. {
  43412. name: "Normal",
  43413. height: math.unit(5 + 10/12, "feet"),
  43414. default: true
  43415. }
  43416. ]
  43417. ))
  43418. characterMakers.push(() => makeCharacter(
  43419. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43420. {
  43421. front: {
  43422. height: math.unit(4, "feet"),
  43423. weight: math.unit(60, "lb"),
  43424. name: "Front",
  43425. image: {
  43426. source: "./media/characters/jasper/front.svg",
  43427. extra: 1450/1379,
  43428. bottom: 19/1469
  43429. }
  43430. },
  43431. },
  43432. [
  43433. {
  43434. name: "Normal",
  43435. height: math.unit(4, "feet"),
  43436. default: true
  43437. },
  43438. ]
  43439. ))
  43440. characterMakers.push(() => makeCharacter(
  43441. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43442. {
  43443. front: {
  43444. height: math.unit(6 + 5/12, "feet"),
  43445. weight: math.unit(290, "lb"),
  43446. name: "Front",
  43447. image: {
  43448. source: "./media/characters/tiberius-thyben/front.svg",
  43449. extra: 757/739,
  43450. bottom: 39/796
  43451. }
  43452. },
  43453. },
  43454. [
  43455. {
  43456. name: "Micro",
  43457. height: math.unit(1.5, "inches")
  43458. },
  43459. {
  43460. name: "Normal",
  43461. height: math.unit(6 + 5/12, "feet"),
  43462. default: true
  43463. },
  43464. {
  43465. name: "Macro",
  43466. height: math.unit(300, "feet")
  43467. },
  43468. ]
  43469. ))
  43470. characterMakers.push(() => makeCharacter(
  43471. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43472. {
  43473. front: {
  43474. height: math.unit(5 + 6/12, "feet"),
  43475. weight: math.unit(60, "kg"),
  43476. name: "Front",
  43477. image: {
  43478. source: "./media/characters/sabre/front.svg",
  43479. extra: 738/671,
  43480. bottom: 27/765
  43481. }
  43482. },
  43483. },
  43484. [
  43485. {
  43486. name: "Teeny",
  43487. height: math.unit(2, "inches")
  43488. },
  43489. {
  43490. name: "Smol",
  43491. height: math.unit(8, "inches")
  43492. },
  43493. {
  43494. name: "Normal",
  43495. height: math.unit(5 + 6/12, "feet"),
  43496. default: true
  43497. },
  43498. {
  43499. name: "Mini-Macro",
  43500. height: math.unit(15, "feet")
  43501. },
  43502. {
  43503. name: "Macro",
  43504. height: math.unit(50, "feet")
  43505. },
  43506. ]
  43507. ))
  43508. characterMakers.push(() => makeCharacter(
  43509. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43510. {
  43511. front: {
  43512. height: math.unit(6 + 4/12, "feet"),
  43513. weight: math.unit(170, "lb"),
  43514. name: "Front",
  43515. image: {
  43516. source: "./media/characters/charlie/front.svg",
  43517. extra: 1348/1228,
  43518. bottom: 15/1363
  43519. }
  43520. },
  43521. },
  43522. [
  43523. {
  43524. name: "Macro",
  43525. height: math.unit(1700, "meters"),
  43526. default: true
  43527. },
  43528. {
  43529. name: "MegaMacro",
  43530. height: math.unit(20400, "meters")
  43531. },
  43532. ]
  43533. ))
  43534. characterMakers.push(() => makeCharacter(
  43535. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43536. {
  43537. front: {
  43538. height: math.unit(6 + 3/12, "feet"),
  43539. weight: math.unit(185, "lb"),
  43540. name: "Front",
  43541. image: {
  43542. source: "./media/characters/susan-grant/front.svg",
  43543. extra: 1351/1327,
  43544. bottom: 26/1377
  43545. }
  43546. },
  43547. },
  43548. [
  43549. {
  43550. name: "Normal",
  43551. height: math.unit(6 + 3/12, "feet"),
  43552. default: true
  43553. },
  43554. {
  43555. name: "Macro",
  43556. height: math.unit(225, "feet")
  43557. },
  43558. {
  43559. name: "Macro+",
  43560. height: math.unit(900, "feet")
  43561. },
  43562. {
  43563. name: "MegaMacro",
  43564. height: math.unit(14400, "feet")
  43565. },
  43566. ]
  43567. ))
  43568. characterMakers.push(() => makeCharacter(
  43569. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43570. {
  43571. front: {
  43572. height: math.unit(5 + 4/12, "feet"),
  43573. weight: math.unit(110, "lb"),
  43574. name: "Front",
  43575. image: {
  43576. source: "./media/characters/axel-isanov/front.svg",
  43577. extra: 1096/1065,
  43578. bottom: 13/1109
  43579. }
  43580. },
  43581. },
  43582. [
  43583. {
  43584. name: "Normal",
  43585. height: math.unit(5 + 4/12, "feet"),
  43586. default: true
  43587. },
  43588. ]
  43589. ))
  43590. characterMakers.push(() => makeCharacter(
  43591. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43592. {
  43593. front: {
  43594. height: math.unit(9, "feet"),
  43595. weight: math.unit(467, "lb"),
  43596. name: "Front",
  43597. image: {
  43598. source: "./media/characters/necahual/front.svg",
  43599. extra: 920/873,
  43600. bottom: 26/946
  43601. }
  43602. },
  43603. back: {
  43604. height: math.unit(9, "feet"),
  43605. weight: math.unit(467, "lb"),
  43606. name: "Back",
  43607. image: {
  43608. source: "./media/characters/necahual/back.svg",
  43609. extra: 930/884,
  43610. bottom: 16/946
  43611. }
  43612. },
  43613. frontUnderwear: {
  43614. height: math.unit(9, "feet"),
  43615. weight: math.unit(467, "lb"),
  43616. name: "Front (Underwear)",
  43617. image: {
  43618. source: "./media/characters/necahual/front-underwear.svg",
  43619. extra: 920/873,
  43620. bottom: 26/946
  43621. }
  43622. },
  43623. frontDressed: {
  43624. height: math.unit(9, "feet"),
  43625. weight: math.unit(467, "lb"),
  43626. name: "Front (Dressed)",
  43627. image: {
  43628. source: "./media/characters/necahual/front-dressed.svg",
  43629. extra: 920/873,
  43630. bottom: 26/946
  43631. }
  43632. },
  43633. },
  43634. [
  43635. {
  43636. name: "Comprsesed",
  43637. height: math.unit(9, "feet")
  43638. },
  43639. {
  43640. name: "Natural",
  43641. height: math.unit(15, "feet"),
  43642. default: true
  43643. },
  43644. {
  43645. name: "Boosted",
  43646. height: math.unit(50, "feet")
  43647. },
  43648. {
  43649. name: "Boosted+",
  43650. height: math.unit(150, "feet")
  43651. },
  43652. {
  43653. name: "Max",
  43654. height: math.unit(500, "feet")
  43655. },
  43656. ]
  43657. ))
  43658. characterMakers.push(() => makeCharacter(
  43659. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43660. {
  43661. front: {
  43662. height: math.unit(22 + 1/12, "feet"),
  43663. weight: math.unit(3200, "lb"),
  43664. name: "Front",
  43665. image: {
  43666. source: "./media/characters/theo-acacia/front.svg",
  43667. extra: 1796/1741,
  43668. bottom: 83/1879
  43669. }
  43670. },
  43671. frontUnderwear: {
  43672. height: math.unit(22 + 1/12, "feet"),
  43673. weight: math.unit(3200, "lb"),
  43674. name: "Front (Underwear)",
  43675. image: {
  43676. source: "./media/characters/theo-acacia/front-underwear.svg",
  43677. extra: 1796/1741,
  43678. bottom: 83/1879
  43679. }
  43680. },
  43681. frontNude: {
  43682. height: math.unit(22 + 1/12, "feet"),
  43683. weight: math.unit(3200, "lb"),
  43684. name: "Front (Nude)",
  43685. image: {
  43686. source: "./media/characters/theo-acacia/front-nude.svg",
  43687. extra: 1796/1741,
  43688. bottom: 83/1879
  43689. }
  43690. },
  43691. },
  43692. [
  43693. {
  43694. name: "Normal",
  43695. height: math.unit(22 + 1/12, "feet"),
  43696. default: true
  43697. },
  43698. ]
  43699. ))
  43700. characterMakers.push(() => makeCharacter(
  43701. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43702. {
  43703. front: {
  43704. height: math.unit(20, "feet"),
  43705. name: "Front",
  43706. image: {
  43707. source: "./media/characters/astra/front.svg",
  43708. extra: 1850/1714,
  43709. bottom: 106/1956
  43710. }
  43711. },
  43712. frontUndressed: {
  43713. height: math.unit(20, "feet"),
  43714. name: "Front (Undressed)",
  43715. image: {
  43716. source: "./media/characters/astra/front-undressed.svg",
  43717. extra: 1926/1749,
  43718. bottom: 0/1926
  43719. }
  43720. },
  43721. hand: {
  43722. height: math.unit(1.53, "feet"),
  43723. name: "Hand",
  43724. image: {
  43725. source: "./media/characters/astra/hand.svg"
  43726. }
  43727. },
  43728. paw: {
  43729. height: math.unit(1.53, "feet"),
  43730. name: "Paw",
  43731. image: {
  43732. source: "./media/characters/astra/paw.svg"
  43733. }
  43734. },
  43735. },
  43736. [
  43737. {
  43738. name: "Smallest",
  43739. height: math.unit(20, "feet")
  43740. },
  43741. {
  43742. name: "Normal",
  43743. height: math.unit(1e9, "miles"),
  43744. default: true
  43745. },
  43746. {
  43747. name: "Larger",
  43748. height: math.unit(5, "multiverses")
  43749. },
  43750. {
  43751. name: "Largest",
  43752. height: math.unit(1e9, "multiverses")
  43753. },
  43754. ]
  43755. ))
  43756. characterMakers.push(() => makeCharacter(
  43757. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43758. {
  43759. front: {
  43760. height: math.unit(8, "feet"),
  43761. name: "Front",
  43762. image: {
  43763. source: "./media/characters/breanna/front.svg",
  43764. extra: 1912/1632,
  43765. bottom: 33/1945
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Smallest",
  43772. height: math.unit(8, "feet")
  43773. },
  43774. {
  43775. name: "Normal",
  43776. height: math.unit(1, "mile"),
  43777. default: true
  43778. },
  43779. {
  43780. name: "Maximum",
  43781. height: math.unit(1500000000000, "lightyears")
  43782. },
  43783. ]
  43784. ))
  43785. characterMakers.push(() => makeCharacter(
  43786. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43787. {
  43788. front: {
  43789. height: math.unit(5 + 11/12, "feet"),
  43790. weight: math.unit(155, "lb"),
  43791. name: "Front",
  43792. image: {
  43793. source: "./media/characters/cai/front.svg",
  43794. extra: 1823/1702,
  43795. bottom: 32/1855
  43796. }
  43797. },
  43798. back: {
  43799. height: math.unit(5 + 11/12, "feet"),
  43800. weight: math.unit(155, "lb"),
  43801. name: "Back",
  43802. image: {
  43803. source: "./media/characters/cai/back.svg",
  43804. extra: 1809/1708,
  43805. bottom: 31/1840
  43806. }
  43807. },
  43808. },
  43809. [
  43810. {
  43811. name: "Normal",
  43812. height: math.unit(5 + 11/12, "feet"),
  43813. default: true
  43814. },
  43815. {
  43816. name: "Big",
  43817. height: math.unit(15, "feet")
  43818. },
  43819. {
  43820. name: "Macro",
  43821. height: math.unit(200, "feet")
  43822. },
  43823. ]
  43824. ))
  43825. characterMakers.push(() => makeCharacter(
  43826. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43827. {
  43828. front: {
  43829. height: math.unit(5 + 6/12, "feet"),
  43830. weight: math.unit(160, "lb"),
  43831. name: "Front",
  43832. image: {
  43833. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43834. extra: 1227/1174,
  43835. bottom: 37/1264
  43836. }
  43837. },
  43838. },
  43839. [
  43840. {
  43841. name: "Macro",
  43842. height: math.unit(444, "meters"),
  43843. default: true
  43844. },
  43845. ]
  43846. ))
  43847. characterMakers.push(() => makeCharacter(
  43848. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43849. {
  43850. front: {
  43851. height: math.unit(18 + 7/12, "feet"),
  43852. name: "Front",
  43853. image: {
  43854. source: "./media/characters/rex/front.svg",
  43855. extra: 1941/1807,
  43856. bottom: 66/2007
  43857. }
  43858. },
  43859. back: {
  43860. height: math.unit(18 + 7/12, "feet"),
  43861. name: "Back",
  43862. image: {
  43863. source: "./media/characters/rex/back.svg",
  43864. extra: 1937/1822,
  43865. bottom: 42/1979
  43866. }
  43867. },
  43868. boot: {
  43869. height: math.unit(3.45, "feet"),
  43870. name: "Boot",
  43871. image: {
  43872. source: "./media/characters/rex/boot.svg"
  43873. }
  43874. },
  43875. paw: {
  43876. height: math.unit(4.17, "feet"),
  43877. name: "Paw",
  43878. image: {
  43879. source: "./media/characters/rex/paw.svg"
  43880. }
  43881. },
  43882. head: {
  43883. height: math.unit(6.728, "feet"),
  43884. name: "Head",
  43885. image: {
  43886. source: "./media/characters/rex/head.svg"
  43887. }
  43888. },
  43889. },
  43890. [
  43891. {
  43892. name: "Nano",
  43893. height: math.unit(18 + 7/12, "feet")
  43894. },
  43895. {
  43896. name: "Micro",
  43897. height: math.unit(1.5, "megameters")
  43898. },
  43899. {
  43900. name: "Normal",
  43901. height: math.unit(440, "megameters"),
  43902. default: true
  43903. },
  43904. {
  43905. name: "Macro",
  43906. height: math.unit(2.5, "gigameters")
  43907. },
  43908. {
  43909. name: "Gigamacro",
  43910. height: math.unit(2, "galaxies")
  43911. },
  43912. ]
  43913. ))
  43914. characterMakers.push(() => makeCharacter(
  43915. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43916. {
  43917. side: {
  43918. height: math.unit(32, "feet"),
  43919. weight: math.unit(250000, "lb"),
  43920. name: "Side",
  43921. image: {
  43922. source: "./media/characters/silverwing/side.svg",
  43923. extra: 1100/1019,
  43924. bottom: 204/1304
  43925. }
  43926. },
  43927. },
  43928. [
  43929. {
  43930. name: "Normal",
  43931. height: math.unit(32, "feet"),
  43932. default: true
  43933. },
  43934. ]
  43935. ))
  43936. characterMakers.push(() => makeCharacter(
  43937. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43938. {
  43939. front: {
  43940. height: math.unit(6 + 6/12, "feet"),
  43941. weight: math.unit(350, "lb"),
  43942. name: "Front",
  43943. image: {
  43944. source: "./media/characters/tristan-hawthorne/front.svg",
  43945. extra: 1159/1124,
  43946. bottom: 37/1196
  43947. },
  43948. form: "labrador",
  43949. default: true
  43950. },
  43951. skunkFront: {
  43952. height: math.unit(4 + 6/12, "feet"),
  43953. weight: math.unit(120, "lb"),
  43954. name: "Front",
  43955. image: {
  43956. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43957. extra: 1609/1551,
  43958. bottom: 169/1778
  43959. },
  43960. form: "skunk",
  43961. default: true
  43962. },
  43963. },
  43964. [
  43965. {
  43966. name: "Normal",
  43967. height: math.unit(6 + 6/12, "feet"),
  43968. form: "labrador",
  43969. default: true
  43970. },
  43971. {
  43972. name: "Normal",
  43973. height: math.unit(4 + 6/12, "feet"),
  43974. form: "skunk",
  43975. default: true
  43976. },
  43977. ],
  43978. {
  43979. "labrador": {
  43980. name: "Labrador",
  43981. default: true
  43982. },
  43983. "skunk": {
  43984. name: "Skunk"
  43985. }
  43986. }
  43987. ))
  43988. characterMakers.push(() => makeCharacter(
  43989. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43990. {
  43991. front: {
  43992. height: math.unit(5 + 11/12, "feet"),
  43993. weight: math.unit(190, "lb"),
  43994. name: "Front",
  43995. image: {
  43996. source: "./media/characters/mizu/front.svg",
  43997. extra: 1988/1788,
  43998. bottom: 14/2002
  43999. }
  44000. },
  44001. },
  44002. [
  44003. {
  44004. name: "Normal",
  44005. height: math.unit(5 + 11/12, "feet"),
  44006. default: true
  44007. },
  44008. ]
  44009. ))
  44010. characterMakers.push(() => makeCharacter(
  44011. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44012. {
  44013. front: {
  44014. height: math.unit(1.7, "feet"),
  44015. weight: math.unit(50, "lb"),
  44016. name: "Front",
  44017. image: {
  44018. source: "./media/characters/dechroma/front.svg",
  44019. extra: 1095/859,
  44020. bottom: 64/1159
  44021. }
  44022. },
  44023. },
  44024. [
  44025. {
  44026. name: "Normal",
  44027. height: math.unit(1.7, "feet"),
  44028. default: true
  44029. },
  44030. ]
  44031. ))
  44032. characterMakers.push(() => makeCharacter(
  44033. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44034. {
  44035. side: {
  44036. height: math.unit(30, "feet"),
  44037. name: "Side",
  44038. image: {
  44039. source: "./media/characters/veluren-thanazel/side.svg",
  44040. extra: 1611/633,
  44041. bottom: 118/1729
  44042. }
  44043. },
  44044. front: {
  44045. height: math.unit(30, "feet"),
  44046. name: "Front",
  44047. image: {
  44048. source: "./media/characters/veluren-thanazel/front.svg",
  44049. extra: 1486/636,
  44050. bottom: 238/1724
  44051. }
  44052. },
  44053. head: {
  44054. height: math.unit(21.4, "feet"),
  44055. name: "Head",
  44056. image: {
  44057. source: "./media/characters/veluren-thanazel/head.svg"
  44058. }
  44059. },
  44060. genitals: {
  44061. height: math.unit(19.4, "feet"),
  44062. name: "Genitals",
  44063. image: {
  44064. source: "./media/characters/veluren-thanazel/genitals.svg"
  44065. }
  44066. },
  44067. },
  44068. [
  44069. {
  44070. name: "Social",
  44071. height: math.unit(6, "feet")
  44072. },
  44073. {
  44074. name: "Play",
  44075. height: math.unit(12, "feet")
  44076. },
  44077. {
  44078. name: "True",
  44079. height: math.unit(30, "feet"),
  44080. default: true
  44081. },
  44082. ]
  44083. ))
  44084. characterMakers.push(() => makeCharacter(
  44085. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44086. {
  44087. front: {
  44088. height: math.unit(7 + 6/12, "feet"),
  44089. weight: math.unit(500, "kg"),
  44090. name: "Front",
  44091. image: {
  44092. source: "./media/characters/arcturas/front.svg",
  44093. extra: 1700/1500,
  44094. bottom: 145/1845
  44095. }
  44096. },
  44097. },
  44098. [
  44099. {
  44100. name: "Normal",
  44101. height: math.unit(7 + 6/12, "feet"),
  44102. default: true
  44103. },
  44104. ]
  44105. ))
  44106. characterMakers.push(() => makeCharacter(
  44107. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44108. {
  44109. side: {
  44110. height: math.unit(6, "feet"),
  44111. weight: math.unit(2, "tons"),
  44112. name: "Side",
  44113. image: {
  44114. source: "./media/characters/vitaen/side.svg",
  44115. extra: 1157/617,
  44116. bottom: 122/1279
  44117. }
  44118. },
  44119. },
  44120. [
  44121. {
  44122. name: "Normal",
  44123. height: math.unit(6, "feet"),
  44124. default: true
  44125. },
  44126. ]
  44127. ))
  44128. characterMakers.push(() => makeCharacter(
  44129. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44130. {
  44131. front: {
  44132. height: math.unit(19, "feet"),
  44133. name: "Front",
  44134. image: {
  44135. source: "./media/characters/fia-dreamweaver/front.svg",
  44136. extra: 1630/1504,
  44137. bottom: 25/1655
  44138. }
  44139. },
  44140. },
  44141. [
  44142. {
  44143. name: "Normal",
  44144. height: math.unit(19, "feet"),
  44145. default: true
  44146. },
  44147. ]
  44148. ))
  44149. characterMakers.push(() => makeCharacter(
  44150. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44151. {
  44152. front: {
  44153. height: math.unit(5 + 4/12, "feet"),
  44154. name: "Front",
  44155. image: {
  44156. source: "./media/characters/artan/front.svg",
  44157. extra: 1618/1535,
  44158. bottom: 46/1664
  44159. }
  44160. },
  44161. back: {
  44162. height: math.unit(5 + 4/12, "feet"),
  44163. name: "Back",
  44164. image: {
  44165. source: "./media/characters/artan/back.svg",
  44166. extra: 1618/1543,
  44167. bottom: 31/1649
  44168. }
  44169. },
  44170. },
  44171. [
  44172. {
  44173. name: "Normal",
  44174. height: math.unit(5 + 4/12, "feet"),
  44175. default: true
  44176. },
  44177. ]
  44178. ))
  44179. characterMakers.push(() => makeCharacter(
  44180. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44181. {
  44182. side: {
  44183. height: math.unit(182, "cm"),
  44184. weight: math.unit(1000, "lb"),
  44185. name: "Side",
  44186. image: {
  44187. source: "./media/characters/silver-dragon/side.svg",
  44188. extra: 710/287,
  44189. bottom: 88/798
  44190. }
  44191. },
  44192. },
  44193. [
  44194. {
  44195. name: "Normal",
  44196. height: math.unit(182, "cm"),
  44197. default: true
  44198. },
  44199. ]
  44200. ))
  44201. characterMakers.push(() => makeCharacter(
  44202. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44203. {
  44204. side: {
  44205. height: math.unit(6 + 6/12, "feet"),
  44206. weight: math.unit(1.5, "tons"),
  44207. name: "Side",
  44208. image: {
  44209. source: "./media/characters/zephyr/side.svg",
  44210. extra: 1433/586,
  44211. bottom: 109/1542
  44212. }
  44213. },
  44214. },
  44215. [
  44216. {
  44217. name: "Normal",
  44218. height: math.unit(6 + 6/12, "feet"),
  44219. default: true
  44220. },
  44221. ]
  44222. ))
  44223. characterMakers.push(() => makeCharacter(
  44224. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44225. {
  44226. side: {
  44227. height: math.unit(1, "feet"),
  44228. name: "Side",
  44229. image: {
  44230. source: "./media/characters/vixye/side.svg",
  44231. extra: 632/541,
  44232. bottom: 0/632
  44233. }
  44234. },
  44235. },
  44236. [
  44237. {
  44238. name: "Normal",
  44239. height: math.unit(1, "feet"),
  44240. default: true
  44241. },
  44242. {
  44243. name: "True",
  44244. height: math.unit(1e15, "multiverses")
  44245. },
  44246. ]
  44247. ))
  44248. characterMakers.push(() => makeCharacter(
  44249. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44250. {
  44251. front: {
  44252. height: math.unit(8 + 2/12, "feet"),
  44253. weight: math.unit(650, "lb"),
  44254. name: "Front",
  44255. image: {
  44256. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44257. extra: 1174/1137,
  44258. bottom: 82/1256
  44259. }
  44260. },
  44261. back: {
  44262. height: math.unit(8 + 2/12, "feet"),
  44263. weight: math.unit(650, "lb"),
  44264. name: "Back",
  44265. image: {
  44266. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44267. extra: 1204/1157,
  44268. bottom: 46/1250
  44269. }
  44270. },
  44271. },
  44272. [
  44273. {
  44274. name: "Wildform",
  44275. height: math.unit(8 + 2/12, "feet"),
  44276. default: true
  44277. },
  44278. ]
  44279. ))
  44280. characterMakers.push(() => makeCharacter(
  44281. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44282. {
  44283. front: {
  44284. height: math.unit(18, "feet"),
  44285. name: "Front",
  44286. image: {
  44287. source: "./media/characters/cyphin/front.svg",
  44288. extra: 970/886,
  44289. bottom: 42/1012
  44290. }
  44291. },
  44292. back: {
  44293. height: math.unit(18, "feet"),
  44294. name: "Back",
  44295. image: {
  44296. source: "./media/characters/cyphin/back.svg",
  44297. extra: 1009/894,
  44298. bottom: 24/1033
  44299. }
  44300. },
  44301. head: {
  44302. height: math.unit(5.05, "feet"),
  44303. name: "Head",
  44304. image: {
  44305. source: "./media/characters/cyphin/head.svg"
  44306. }
  44307. },
  44308. tailbud: {
  44309. height: math.unit(5, "feet"),
  44310. name: "Tailbud",
  44311. image: {
  44312. source: "./media/characters/cyphin/tailbud.svg"
  44313. }
  44314. },
  44315. },
  44316. [
  44317. ]
  44318. ))
  44319. characterMakers.push(() => makeCharacter(
  44320. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44321. {
  44322. side: {
  44323. height: math.unit(10, "feet"),
  44324. weight: math.unit(6, "tons"),
  44325. name: "Side",
  44326. image: {
  44327. source: "./media/characters/raijin/side.svg",
  44328. extra: 1529/613,
  44329. bottom: 337/1866
  44330. }
  44331. },
  44332. },
  44333. [
  44334. {
  44335. name: "Normal",
  44336. height: math.unit(10, "feet"),
  44337. default: true
  44338. },
  44339. ]
  44340. ))
  44341. characterMakers.push(() => makeCharacter(
  44342. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44343. {
  44344. side: {
  44345. height: math.unit(9, "feet"),
  44346. name: "Side",
  44347. image: {
  44348. source: "./media/characters/nilghais/side.svg",
  44349. extra: 1047/744,
  44350. bottom: 91/1138
  44351. }
  44352. },
  44353. head: {
  44354. height: math.unit(3.14, "feet"),
  44355. name: "Head",
  44356. image: {
  44357. source: "./media/characters/nilghais/head.svg"
  44358. }
  44359. },
  44360. mouth: {
  44361. height: math.unit(4.6, "feet"),
  44362. name: "Mouth",
  44363. image: {
  44364. source: "./media/characters/nilghais/mouth.svg"
  44365. }
  44366. },
  44367. wings: {
  44368. height: math.unit(24, "feet"),
  44369. name: "Wings",
  44370. image: {
  44371. source: "./media/characters/nilghais/wings.svg"
  44372. }
  44373. },
  44374. ass: {
  44375. height: math.unit(6.12, "feet"),
  44376. name: "Ass",
  44377. image: {
  44378. source: "./media/characters/nilghais/ass.svg"
  44379. }
  44380. },
  44381. },
  44382. [
  44383. {
  44384. name: "Normal",
  44385. height: math.unit(9, "feet"),
  44386. default: true
  44387. },
  44388. ]
  44389. ))
  44390. characterMakers.push(() => makeCharacter(
  44391. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44392. {
  44393. regular: {
  44394. height: math.unit(16 + 2/12, "feet"),
  44395. weight: math.unit(2300, "lb"),
  44396. name: "Regular",
  44397. image: {
  44398. source: "./media/characters/zolgar/regular.svg",
  44399. extra: 1246/1004,
  44400. bottom: 124/1370
  44401. }
  44402. },
  44403. boxers: {
  44404. height: math.unit(16 + 2/12, "feet"),
  44405. weight: math.unit(2300, "lb"),
  44406. name: "Boxers",
  44407. image: {
  44408. source: "./media/characters/zolgar/boxers.svg",
  44409. extra: 1246/1004,
  44410. bottom: 124/1370
  44411. }
  44412. },
  44413. armored: {
  44414. height: math.unit(16 + 2/12, "feet"),
  44415. weight: math.unit(2300, "lb"),
  44416. name: "Armored",
  44417. image: {
  44418. source: "./media/characters/zolgar/armored.svg",
  44419. extra: 1246/1004,
  44420. bottom: 124/1370
  44421. }
  44422. },
  44423. goth: {
  44424. height: math.unit(16 + 2/12, "feet"),
  44425. weight: math.unit(2300, "lb"),
  44426. name: "Goth",
  44427. image: {
  44428. source: "./media/characters/zolgar/goth.svg",
  44429. extra: 1246/1004,
  44430. bottom: 124/1370
  44431. }
  44432. },
  44433. },
  44434. [
  44435. {
  44436. name: "Shrunken Down",
  44437. height: math.unit(9 + 2/12, "feet")
  44438. },
  44439. {
  44440. name: "Normal",
  44441. height: math.unit(16 + 2/12, "feet"),
  44442. default: true
  44443. },
  44444. ]
  44445. ))
  44446. characterMakers.push(() => makeCharacter(
  44447. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44448. {
  44449. front: {
  44450. height: math.unit(6, "feet"),
  44451. weight: math.unit(168, "lb"),
  44452. name: "Front",
  44453. image: {
  44454. source: "./media/characters/luca/front.svg",
  44455. extra: 841/667,
  44456. bottom: 102/943
  44457. }
  44458. },
  44459. },
  44460. [
  44461. {
  44462. name: "Normal",
  44463. height: math.unit(6, "feet"),
  44464. default: true
  44465. },
  44466. ]
  44467. ))
  44468. characterMakers.push(() => makeCharacter(
  44469. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44470. {
  44471. side: {
  44472. height: math.unit(7 + 3/12, "feet"),
  44473. weight: math.unit(312, "lb"),
  44474. name: "Side",
  44475. image: {
  44476. source: "./media/characters/zezo/side.svg",
  44477. extra: 1192/1067,
  44478. bottom: 63/1255
  44479. }
  44480. },
  44481. },
  44482. [
  44483. {
  44484. name: "Normal",
  44485. height: math.unit(7 + 3/12, "feet"),
  44486. default: true
  44487. },
  44488. ]
  44489. ))
  44490. characterMakers.push(() => makeCharacter(
  44491. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44492. {
  44493. front: {
  44494. height: math.unit(5 + 5/12, "feet"),
  44495. weight: math.unit(170, "lb"),
  44496. name: "Front",
  44497. image: {
  44498. source: "./media/characters/mayso/front.svg",
  44499. extra: 1215/1108,
  44500. bottom: 16/1231
  44501. }
  44502. },
  44503. },
  44504. [
  44505. {
  44506. name: "Normal",
  44507. height: math.unit(5 + 5/12, "feet"),
  44508. default: true
  44509. },
  44510. ]
  44511. ))
  44512. characterMakers.push(() => makeCharacter(
  44513. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44514. {
  44515. front: {
  44516. height: math.unit(4 + 3/12, "feet"),
  44517. weight: math.unit(80, "lb"),
  44518. name: "Front",
  44519. image: {
  44520. source: "./media/characters/hess/front.svg",
  44521. extra: 1200/1123,
  44522. bottom: 16/1216
  44523. }
  44524. },
  44525. },
  44526. [
  44527. {
  44528. name: "Normal",
  44529. height: math.unit(4 + 3/12, "feet"),
  44530. default: true
  44531. },
  44532. ]
  44533. ))
  44534. characterMakers.push(() => makeCharacter(
  44535. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44536. {
  44537. front: {
  44538. height: math.unit(1.9, "meters"),
  44539. name: "Front",
  44540. image: {
  44541. source: "./media/characters/ashgar/front.svg",
  44542. extra: 1177/1146,
  44543. bottom: 99/1276
  44544. }
  44545. },
  44546. back: {
  44547. height: math.unit(1.9, "meters"),
  44548. name: "Back",
  44549. image: {
  44550. source: "./media/characters/ashgar/back.svg",
  44551. extra: 1201/1183,
  44552. bottom: 53/1254
  44553. }
  44554. },
  44555. feral: {
  44556. height: math.unit(1.4, "meters"),
  44557. name: "Feral",
  44558. image: {
  44559. source: "./media/characters/ashgar/feral.svg",
  44560. extra: 370/345,
  44561. bottom: 45/415
  44562. }
  44563. },
  44564. },
  44565. [
  44566. {
  44567. name: "Normal",
  44568. height: math.unit(1.9, "meters"),
  44569. default: true
  44570. },
  44571. ]
  44572. ))
  44573. characterMakers.push(() => makeCharacter(
  44574. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44575. {
  44576. regular: {
  44577. height: math.unit(6, "feet"),
  44578. weight: math.unit(220, "lb"),
  44579. name: "Regular",
  44580. image: {
  44581. source: "./media/characters/phillip/regular.svg",
  44582. extra: 1373/1277,
  44583. bottom: 75/1448
  44584. }
  44585. },
  44586. dressed: {
  44587. height: math.unit(6, "feet"),
  44588. weight: math.unit(220, "lb"),
  44589. name: "Dressed",
  44590. image: {
  44591. source: "./media/characters/phillip/dressed.svg",
  44592. extra: 1373/1277,
  44593. bottom: 75/1448
  44594. }
  44595. },
  44596. paw: {
  44597. height: math.unit(1.44, "feet"),
  44598. name: "Paw",
  44599. image: {
  44600. source: "./media/characters/phillip/paw.svg"
  44601. }
  44602. },
  44603. },
  44604. [
  44605. {
  44606. name: "Normal",
  44607. height: math.unit(6, "feet"),
  44608. default: true
  44609. },
  44610. ]
  44611. ))
  44612. characterMakers.push(() => makeCharacter(
  44613. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44614. {
  44615. side: {
  44616. height: math.unit(42, "feet"),
  44617. name: "Side",
  44618. image: {
  44619. source: "./media/characters/uvula/side.svg",
  44620. extra: 683/586,
  44621. bottom: 60/743
  44622. }
  44623. },
  44624. front: {
  44625. height: math.unit(42, "feet"),
  44626. name: "Front",
  44627. image: {
  44628. source: "./media/characters/uvula/front.svg",
  44629. extra: 705/613,
  44630. bottom: 54/759
  44631. }
  44632. },
  44633. maw: {
  44634. height: math.unit(23.5, "feet"),
  44635. name: "Maw",
  44636. image: {
  44637. source: "./media/characters/uvula/maw.svg"
  44638. }
  44639. },
  44640. },
  44641. [
  44642. {
  44643. name: "Original Size",
  44644. height: math.unit(14, "inches")
  44645. },
  44646. {
  44647. name: "Human Size",
  44648. height: math.unit(6, "feet")
  44649. },
  44650. {
  44651. name: "Big",
  44652. height: math.unit(42, "feet"),
  44653. default: true
  44654. },
  44655. {
  44656. name: "Bigger",
  44657. height: math.unit(100, "feet")
  44658. },
  44659. ]
  44660. ))
  44661. characterMakers.push(() => makeCharacter(
  44662. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44663. {
  44664. front: {
  44665. height: math.unit(5 + 11/12, "feet"),
  44666. name: "Front",
  44667. image: {
  44668. source: "./media/characters/lannah/front.svg",
  44669. extra: 1208/1113,
  44670. bottom: 97/1305
  44671. }
  44672. },
  44673. },
  44674. [
  44675. {
  44676. name: "Normal",
  44677. height: math.unit(5 + 11/12, "feet"),
  44678. default: true
  44679. },
  44680. ]
  44681. ))
  44682. characterMakers.push(() => makeCharacter(
  44683. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44684. {
  44685. front: {
  44686. height: math.unit(6 + 3/12, "feet"),
  44687. weight: math.unit(3.5, "tons"),
  44688. name: "Front",
  44689. image: {
  44690. source: "./media/characters/emberflame/front.svg",
  44691. extra: 1198/672,
  44692. bottom: 82/1280
  44693. }
  44694. },
  44695. side: {
  44696. height: math.unit(6 + 3/12, "feet"),
  44697. weight: math.unit(3.5, "tons"),
  44698. name: "Side",
  44699. image: {
  44700. source: "./media/characters/emberflame/side.svg",
  44701. extra: 938/527,
  44702. bottom: 56/994
  44703. }
  44704. },
  44705. },
  44706. [
  44707. {
  44708. name: "Normal",
  44709. height: math.unit(6 + 3/12, "feet"),
  44710. default: true
  44711. },
  44712. ]
  44713. ))
  44714. characterMakers.push(() => makeCharacter(
  44715. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44716. {
  44717. side: {
  44718. height: math.unit(17.5, "feet"),
  44719. weight: math.unit(35, "tons"),
  44720. name: "Side",
  44721. image: {
  44722. source: "./media/characters/sophie-ambrose/side.svg",
  44723. extra: 1573/1242,
  44724. bottom: 71/1644
  44725. }
  44726. },
  44727. maw: {
  44728. height: math.unit(7.4, "feet"),
  44729. name: "Maw",
  44730. image: {
  44731. source: "./media/characters/sophie-ambrose/maw.svg"
  44732. }
  44733. },
  44734. },
  44735. [
  44736. {
  44737. name: "Normal",
  44738. height: math.unit(17.5, "feet"),
  44739. default: true
  44740. },
  44741. ]
  44742. ))
  44743. characterMakers.push(() => makeCharacter(
  44744. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44745. {
  44746. front: {
  44747. height: math.unit(280, "feet"),
  44748. weight: math.unit(550, "tons"),
  44749. name: "Front",
  44750. image: {
  44751. source: "./media/characters/king-mugi/front.svg",
  44752. extra: 1102/947,
  44753. bottom: 104/1206
  44754. }
  44755. },
  44756. },
  44757. [
  44758. {
  44759. name: "King Mugi",
  44760. height: math.unit(280, "feet"),
  44761. default: true
  44762. },
  44763. ]
  44764. ))
  44765. characterMakers.push(() => makeCharacter(
  44766. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44767. {
  44768. front: {
  44769. height: math.unit(64, "meters"),
  44770. name: "Front",
  44771. image: {
  44772. source: "./media/characters/nova-fox/front.svg",
  44773. extra: 1310/1246,
  44774. bottom: 65/1375
  44775. }
  44776. },
  44777. },
  44778. [
  44779. {
  44780. name: "Macro",
  44781. height: math.unit(64, "meters"),
  44782. default: true
  44783. },
  44784. ]
  44785. ))
  44786. characterMakers.push(() => makeCharacter(
  44787. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44788. {
  44789. front: {
  44790. height: math.unit(6 + 3/12, "feet"),
  44791. weight: math.unit(170, "lb"),
  44792. name: "Front",
  44793. image: {
  44794. source: "./media/characters/sam-bat/front.svg",
  44795. extra: 1601/1411,
  44796. bottom: 125/1726
  44797. }
  44798. },
  44799. back: {
  44800. height: math.unit(6 + 3/12, "feet"),
  44801. weight: math.unit(170, "lb"),
  44802. name: "Back",
  44803. image: {
  44804. source: "./media/characters/sam-bat/back.svg",
  44805. extra: 1577/1405,
  44806. bottom: 58/1635
  44807. }
  44808. },
  44809. },
  44810. [
  44811. {
  44812. name: "Normal",
  44813. height: math.unit(6 + 3/12, "feet"),
  44814. default: true
  44815. },
  44816. ]
  44817. ))
  44818. characterMakers.push(() => makeCharacter(
  44819. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44820. {
  44821. front: {
  44822. height: math.unit(59, "feet"),
  44823. weight: math.unit(40000, "lb"),
  44824. name: "Front",
  44825. image: {
  44826. source: "./media/characters/inari/front.svg",
  44827. extra: 1884/1350,
  44828. bottom: 95/1979
  44829. }
  44830. },
  44831. },
  44832. [
  44833. {
  44834. name: "Gigantamax",
  44835. height: math.unit(59, "feet"),
  44836. default: true
  44837. },
  44838. ]
  44839. ))
  44840. characterMakers.push(() => makeCharacter(
  44841. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44842. {
  44843. front: {
  44844. height: math.unit(5 + 8/12, "feet"),
  44845. name: "Front",
  44846. image: {
  44847. source: "./media/characters/elizabeth/front.svg",
  44848. extra: 1395/1298,
  44849. bottom: 54/1449
  44850. }
  44851. },
  44852. mouth: {
  44853. height: math.unit(1.97, "feet"),
  44854. name: "Mouth",
  44855. image: {
  44856. source: "./media/characters/elizabeth/mouth.svg"
  44857. }
  44858. },
  44859. foot: {
  44860. height: math.unit(1.17, "feet"),
  44861. name: "Foot",
  44862. image: {
  44863. source: "./media/characters/elizabeth/foot.svg"
  44864. }
  44865. },
  44866. },
  44867. [
  44868. {
  44869. name: "Normal",
  44870. height: math.unit(5 + 8/12, "feet"),
  44871. default: true
  44872. },
  44873. {
  44874. name: "Minimacro",
  44875. height: math.unit(18, "feet")
  44876. },
  44877. {
  44878. name: "Macro",
  44879. height: math.unit(180, "feet")
  44880. },
  44881. ]
  44882. ))
  44883. characterMakers.push(() => makeCharacter(
  44884. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44885. {
  44886. front: {
  44887. height: math.unit(5 + 2/12, "feet"),
  44888. name: "Front",
  44889. image: {
  44890. source: "./media/characters/october-gossamer/front.svg",
  44891. extra: 505/454,
  44892. bottom: 7/512
  44893. }
  44894. },
  44895. back: {
  44896. height: math.unit(5 + 2/12, "feet"),
  44897. name: "Back",
  44898. image: {
  44899. source: "./media/characters/october-gossamer/back.svg",
  44900. extra: 501/454,
  44901. bottom: 11/512
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Normal",
  44908. height: math.unit(5 + 2/12, "feet"),
  44909. default: true
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44915. {
  44916. front: {
  44917. height: math.unit(5, "feet"),
  44918. name: "Front",
  44919. image: {
  44920. source: "./media/characters/epiglottis/front.svg",
  44921. extra: 923/849,
  44922. bottom: 17/940
  44923. }
  44924. },
  44925. },
  44926. [
  44927. {
  44928. name: "Original Size",
  44929. height: math.unit(10, "inches")
  44930. },
  44931. {
  44932. name: "Human Size",
  44933. height: math.unit(5, "feet"),
  44934. default: true
  44935. },
  44936. {
  44937. name: "Big",
  44938. height: math.unit(25, "feet")
  44939. },
  44940. {
  44941. name: "Bigger",
  44942. height: math.unit(50, "feet")
  44943. },
  44944. {
  44945. name: "oh lawd",
  44946. height: math.unit(75, "feet")
  44947. },
  44948. ]
  44949. ))
  44950. characterMakers.push(() => makeCharacter(
  44951. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44952. {
  44953. front: {
  44954. height: math.unit(2 + 4/12, "feet"),
  44955. weight: math.unit(60, "lb"),
  44956. name: "Front",
  44957. image: {
  44958. source: "./media/characters/lerm/front.svg",
  44959. extra: 796/790,
  44960. bottom: 79/875
  44961. }
  44962. },
  44963. },
  44964. [
  44965. {
  44966. name: "Normal",
  44967. height: math.unit(2 + 4/12, "feet"),
  44968. default: true
  44969. },
  44970. ]
  44971. ))
  44972. characterMakers.push(() => makeCharacter(
  44973. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44974. {
  44975. front: {
  44976. height: math.unit(5.5, "feet"),
  44977. weight: math.unit(130, "lb"),
  44978. name: "Front",
  44979. image: {
  44980. source: "./media/characters/xena-nebadon/front.svg",
  44981. extra: 1828/1730,
  44982. bottom: 79/1907
  44983. }
  44984. },
  44985. },
  44986. [
  44987. {
  44988. name: "Tiny Puppy",
  44989. height: math.unit(3, "inches")
  44990. },
  44991. {
  44992. name: "Normal",
  44993. height: math.unit(5.5, "feet"),
  44994. default: true
  44995. },
  44996. {
  44997. name: "Lotta Lady",
  44998. height: math.unit(12, "feet")
  44999. },
  45000. {
  45001. name: "Pretty Big",
  45002. height: math.unit(100, "feet")
  45003. },
  45004. {
  45005. name: "Big",
  45006. height: math.unit(500, "feet")
  45007. },
  45008. {
  45009. name: "Skyscraper Toys",
  45010. height: math.unit(2500, "feet")
  45011. },
  45012. {
  45013. name: "Plane Catcher",
  45014. height: math.unit(8, "miles")
  45015. },
  45016. {
  45017. name: "Planet Toys",
  45018. height: math.unit(15, "earths")
  45019. },
  45020. {
  45021. name: "Stardust",
  45022. height: math.unit(0.25, "galaxies")
  45023. },
  45024. {
  45025. name: "Snacks",
  45026. height: math.unit(70, "universes")
  45027. },
  45028. ]
  45029. ))
  45030. characterMakers.push(() => makeCharacter(
  45031. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45032. {
  45033. front: {
  45034. height: math.unit(1.6, "meters"),
  45035. weight: math.unit(60, "kg"),
  45036. name: "Front",
  45037. image: {
  45038. source: "./media/characters/bounty/front.svg",
  45039. extra: 1426/1308,
  45040. bottom: 15/1441
  45041. }
  45042. },
  45043. back: {
  45044. height: math.unit(1.6, "meters"),
  45045. weight: math.unit(60, "kg"),
  45046. name: "Back",
  45047. image: {
  45048. source: "./media/characters/bounty/back.svg",
  45049. extra: 1417/1307,
  45050. bottom: 8/1425
  45051. }
  45052. },
  45053. },
  45054. [
  45055. {
  45056. name: "Normal",
  45057. height: math.unit(1.6, "meters"),
  45058. default: true
  45059. },
  45060. {
  45061. name: "Macro",
  45062. height: math.unit(300, "meters")
  45063. },
  45064. ]
  45065. ))
  45066. characterMakers.push(() => makeCharacter(
  45067. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45068. {
  45069. front: {
  45070. height: math.unit(2 + 8/12, "feet"),
  45071. weight: math.unit(15, "lb"),
  45072. name: "Front",
  45073. image: {
  45074. source: "./media/characters/mochi/front.svg",
  45075. extra: 1022/852,
  45076. bottom: 435/1457
  45077. }
  45078. },
  45079. back: {
  45080. height: math.unit(2 + 8/12, "feet"),
  45081. weight: math.unit(15, "lb"),
  45082. name: "Back",
  45083. image: {
  45084. source: "./media/characters/mochi/back.svg",
  45085. extra: 1335/1119,
  45086. bottom: 39/1374
  45087. }
  45088. },
  45089. bird: {
  45090. height: math.unit(2 + 8/12, "feet"),
  45091. weight: math.unit(15, "lb"),
  45092. name: "Bird",
  45093. image: {
  45094. source: "./media/characters/mochi/bird.svg",
  45095. extra: 1251/1113,
  45096. bottom: 178/1429
  45097. }
  45098. },
  45099. kaiju: {
  45100. height: math.unit(154, "feet"),
  45101. weight: math.unit(1e7, "lb"),
  45102. name: "Kaiju",
  45103. image: {
  45104. source: "./media/characters/mochi/kaiju.svg",
  45105. extra: 460/324,
  45106. bottom: 40/500
  45107. }
  45108. },
  45109. head: {
  45110. height: math.unit(1.21, "feet"),
  45111. name: "Head",
  45112. image: {
  45113. source: "./media/characters/mochi/head.svg"
  45114. }
  45115. },
  45116. alternateTail: {
  45117. height: math.unit(2 + 8/12, "feet"),
  45118. weight: math.unit(45, "lb"),
  45119. name: "Alternate Tail",
  45120. image: {
  45121. source: "./media/characters/mochi/alternate-tail.svg",
  45122. extra: 139/76,
  45123. bottom: 45/184
  45124. }
  45125. },
  45126. },
  45127. [
  45128. {
  45129. name: "Micro",
  45130. height: math.unit(2, "inches")
  45131. },
  45132. {
  45133. name: "Normal",
  45134. height: math.unit(2 + 8/12, "feet"),
  45135. default: true
  45136. },
  45137. {
  45138. name: "Macro",
  45139. height: math.unit(106, "feet")
  45140. },
  45141. ]
  45142. ))
  45143. characterMakers.push(() => makeCharacter(
  45144. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45145. {
  45146. front: {
  45147. height: math.unit(5.67, "feet"),
  45148. weight: math.unit(135, "lb"),
  45149. name: "Front",
  45150. image: {
  45151. source: "./media/characters/sarel/front.svg",
  45152. extra: 865/788,
  45153. bottom: 97/962
  45154. }
  45155. },
  45156. back: {
  45157. height: math.unit(5.67, "feet"),
  45158. weight: math.unit(135, "lb"),
  45159. name: "Back",
  45160. image: {
  45161. source: "./media/characters/sarel/back.svg",
  45162. extra: 857/777,
  45163. bottom: 32/889
  45164. }
  45165. },
  45166. chozoan: {
  45167. height: math.unit(5.67, "feet"),
  45168. weight: math.unit(135, "lb"),
  45169. name: "Chozoan",
  45170. image: {
  45171. source: "./media/characters/sarel/chozoan.svg",
  45172. extra: 865/788,
  45173. bottom: 97/962
  45174. }
  45175. },
  45176. current: {
  45177. height: math.unit(5.67, "feet"),
  45178. weight: math.unit(135, "lb"),
  45179. name: "Current",
  45180. image: {
  45181. source: "./media/characters/sarel/current.svg",
  45182. extra: 865/788,
  45183. bottom: 97/962
  45184. }
  45185. },
  45186. head: {
  45187. height: math.unit(1.77, "feet"),
  45188. name: "Head",
  45189. image: {
  45190. source: "./media/characters/sarel/head.svg"
  45191. }
  45192. },
  45193. claws: {
  45194. height: math.unit(1.8, "feet"),
  45195. name: "Claws",
  45196. image: {
  45197. source: "./media/characters/sarel/claws.svg"
  45198. }
  45199. },
  45200. clawsAlt: {
  45201. height: math.unit(1.8, "feet"),
  45202. name: "Claws-alt",
  45203. image: {
  45204. source: "./media/characters/sarel/claws-alt.svg"
  45205. }
  45206. },
  45207. },
  45208. [
  45209. {
  45210. name: "Normal",
  45211. height: math.unit(5.67, "feet"),
  45212. default: true
  45213. },
  45214. ]
  45215. ))
  45216. characterMakers.push(() => makeCharacter(
  45217. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45218. {
  45219. front: {
  45220. height: math.unit(5500, "feet"),
  45221. name: "Front",
  45222. image: {
  45223. source: "./media/characters/alyonia/front.svg",
  45224. extra: 1200/1135,
  45225. bottom: 29/1229
  45226. }
  45227. },
  45228. back: {
  45229. height: math.unit(5500, "feet"),
  45230. name: "Back",
  45231. image: {
  45232. source: "./media/characters/alyonia/back.svg",
  45233. extra: 1205/1138,
  45234. bottom: 10/1215
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Small",
  45241. height: math.unit(10, "feet")
  45242. },
  45243. {
  45244. name: "Macro",
  45245. height: math.unit(500, "feet")
  45246. },
  45247. {
  45248. name: "Mega Macro",
  45249. height: math.unit(5500, "feet"),
  45250. default: true
  45251. },
  45252. {
  45253. name: "Mega Macro+",
  45254. height: math.unit(500000, "feet")
  45255. },
  45256. {
  45257. name: "Giga Macro",
  45258. height: math.unit(3000, "miles")
  45259. },
  45260. {
  45261. name: "Tera Macro",
  45262. height: math.unit(2.8e6, "miles")
  45263. },
  45264. {
  45265. name: "Galactic",
  45266. height: math.unit(120000, "lightyears")
  45267. },
  45268. ]
  45269. ))
  45270. characterMakers.push(() => makeCharacter(
  45271. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45272. {
  45273. werewolf: {
  45274. height: math.unit(8, "feet"),
  45275. weight: math.unit(425, "lb"),
  45276. name: "Werewolf",
  45277. image: {
  45278. source: "./media/characters/autumn/werewolf.svg",
  45279. extra: 2154/2031,
  45280. bottom: 160/2314
  45281. }
  45282. },
  45283. human: {
  45284. height: math.unit(5 + 8/12, "feet"),
  45285. weight: math.unit(150, "lb"),
  45286. name: "Human",
  45287. image: {
  45288. source: "./media/characters/autumn/human.svg",
  45289. extra: 1200/1149,
  45290. bottom: 30/1230
  45291. }
  45292. },
  45293. },
  45294. [
  45295. {
  45296. name: "Normal",
  45297. height: math.unit(8, "feet"),
  45298. default: true
  45299. },
  45300. ]
  45301. ))
  45302. characterMakers.push(() => makeCharacter(
  45303. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45304. {
  45305. front: {
  45306. height: math.unit(8 + 5/12, "feet"),
  45307. weight: math.unit(825, "lb"),
  45308. name: "Front",
  45309. image: {
  45310. source: "./media/characters/cobalt-charizard/front.svg",
  45311. extra: 1268/1155,
  45312. bottom: 122/1390
  45313. }
  45314. },
  45315. side: {
  45316. height: math.unit(8 + 5/12, "feet"),
  45317. weight: math.unit(825, "lb"),
  45318. name: "Side",
  45319. image: {
  45320. source: "./media/characters/cobalt-charizard/side.svg",
  45321. extra: 1348/1257,
  45322. bottom: 58/1406
  45323. }
  45324. },
  45325. gMax: {
  45326. height: math.unit(134 + 11/12, "feet"),
  45327. name: "G-Max",
  45328. image: {
  45329. source: "./media/characters/cobalt-charizard/g-max.svg",
  45330. extra: 1835/1541,
  45331. bottom: 151/1986
  45332. }
  45333. },
  45334. },
  45335. [
  45336. {
  45337. name: "Normal",
  45338. height: math.unit(8 + 5/12, "feet"),
  45339. default: true
  45340. },
  45341. ]
  45342. ))
  45343. characterMakers.push(() => makeCharacter(
  45344. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45345. {
  45346. front: {
  45347. height: math.unit(6 + 3/12, "feet"),
  45348. weight: math.unit(210, "lb"),
  45349. name: "Front",
  45350. image: {
  45351. source: "./media/characters/stella/front.svg",
  45352. extra: 3549/3335,
  45353. bottom: 51/3600
  45354. }
  45355. },
  45356. },
  45357. [
  45358. {
  45359. name: "Normal",
  45360. height: math.unit(6 + 3/12, "feet"),
  45361. default: true
  45362. },
  45363. ]
  45364. ))
  45365. characterMakers.push(() => makeCharacter(
  45366. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45367. {
  45368. front: {
  45369. height: math.unit(5, "feet"),
  45370. weight: math.unit(90, "lb"),
  45371. name: "Front",
  45372. image: {
  45373. source: "./media/characters/riley-bishop/front.svg",
  45374. extra: 1450/1428,
  45375. bottom: 152/1602
  45376. }
  45377. },
  45378. },
  45379. [
  45380. {
  45381. name: "Normal",
  45382. height: math.unit(5, "feet"),
  45383. default: true
  45384. },
  45385. ]
  45386. ))
  45387. characterMakers.push(() => makeCharacter(
  45388. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45389. {
  45390. side: {
  45391. height: math.unit(8 + 2/12, "feet"),
  45392. weight: math.unit(500, "kg"),
  45393. name: "Side",
  45394. image: {
  45395. source: "./media/characters/theo-arcanine/side.svg",
  45396. extra: 1342/1074,
  45397. bottom: 111/1453
  45398. }
  45399. },
  45400. },
  45401. [
  45402. {
  45403. name: "Normal",
  45404. height: math.unit(8 + 2/12, "feet"),
  45405. default: true
  45406. },
  45407. ]
  45408. ))
  45409. characterMakers.push(() => makeCharacter(
  45410. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45411. {
  45412. front: {
  45413. height: math.unit(4, "feet"),
  45414. name: "Front",
  45415. image: {
  45416. source: "./media/characters/kali/front.svg",
  45417. extra: 1921/1357,
  45418. bottom: 70/1991
  45419. }
  45420. },
  45421. },
  45422. [
  45423. {
  45424. name: "Normal",
  45425. height: math.unit(4, "feet"),
  45426. default: true
  45427. },
  45428. {
  45429. name: "Macro",
  45430. height: math.unit(32, "meters")
  45431. },
  45432. {
  45433. name: "Macro+",
  45434. height: math.unit(150, "meters")
  45435. },
  45436. {
  45437. name: "Megamacro",
  45438. height: math.unit(7500, "meters")
  45439. },
  45440. {
  45441. name: "Megamacro+",
  45442. height: math.unit(80, "kilometers")
  45443. },
  45444. ]
  45445. ))
  45446. characterMakers.push(() => makeCharacter(
  45447. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45448. {
  45449. side: {
  45450. height: math.unit(5 + 11/12, "feet"),
  45451. weight: math.unit(236, "lb"),
  45452. name: "Side",
  45453. image: {
  45454. source: "./media/characters/gapp/side.svg",
  45455. extra: 775/340,
  45456. bottom: 58/833
  45457. }
  45458. },
  45459. mouth: {
  45460. height: math.unit(2.98, "feet"),
  45461. name: "Mouth",
  45462. image: {
  45463. source: "./media/characters/gapp/mouth.svg"
  45464. }
  45465. },
  45466. },
  45467. [
  45468. {
  45469. name: "Normal",
  45470. height: math.unit(5 + 1/12, "feet"),
  45471. default: true
  45472. },
  45473. ]
  45474. ))
  45475. characterMakers.push(() => makeCharacter(
  45476. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45477. {
  45478. front: {
  45479. height: math.unit(6, "feet"),
  45480. name: "Front",
  45481. image: {
  45482. source: "./media/characters/persephone/front.svg",
  45483. extra: 1895/1717,
  45484. bottom: 96/1991
  45485. }
  45486. },
  45487. back: {
  45488. height: math.unit(6, "feet"),
  45489. name: "Back",
  45490. image: {
  45491. source: "./media/characters/persephone/back.svg",
  45492. extra: 1868/1679,
  45493. bottom: 26/1894
  45494. }
  45495. },
  45496. casual: {
  45497. height: math.unit(6, "feet"),
  45498. name: "Casual",
  45499. image: {
  45500. source: "./media/characters/persephone/casual.svg",
  45501. extra: 1713/1541,
  45502. bottom: 76/1789
  45503. }
  45504. },
  45505. },
  45506. [
  45507. {
  45508. name: "Human Size",
  45509. height: math.unit(6, "feet")
  45510. },
  45511. {
  45512. name: "Big Steppy",
  45513. height: math.unit(600, "meters"),
  45514. default: true
  45515. },
  45516. {
  45517. name: "Galaxy Brain",
  45518. height: math.unit(1, "zettameter")
  45519. },
  45520. ]
  45521. ))
  45522. characterMakers.push(() => makeCharacter(
  45523. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45524. {
  45525. front: {
  45526. height: math.unit(1.85, "meters"),
  45527. name: "Front",
  45528. image: {
  45529. source: "./media/characters/riley-foxthing/front.svg",
  45530. extra: 1495/1354,
  45531. bottom: 122/1617
  45532. }
  45533. },
  45534. frontAlt: {
  45535. height: math.unit(1.85, "meters"),
  45536. name: "Front (Alt)",
  45537. image: {
  45538. source: "./media/characters/riley-foxthing/front-alt.svg",
  45539. extra: 1572/1389,
  45540. bottom: 116/1688
  45541. }
  45542. },
  45543. },
  45544. [
  45545. {
  45546. name: "Normal Sized",
  45547. height: math.unit(1.85, "meters"),
  45548. default: true
  45549. },
  45550. {
  45551. name: "Quite Sizable",
  45552. height: math.unit(5, "meters")
  45553. },
  45554. {
  45555. name: "Rather Large",
  45556. height: math.unit(20, "meters")
  45557. },
  45558. {
  45559. name: "Macro",
  45560. height: math.unit(450, "meters")
  45561. },
  45562. {
  45563. name: "Giga",
  45564. height: math.unit(5, "km")
  45565. },
  45566. ]
  45567. ))
  45568. characterMakers.push(() => makeCharacter(
  45569. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45570. {
  45571. front: {
  45572. height: math.unit(6, "feet"),
  45573. weight: math.unit(200, "lb"),
  45574. name: "Front",
  45575. image: {
  45576. source: "./media/characters/blizzard/front.svg",
  45577. extra: 1136/990,
  45578. bottom: 136/1272
  45579. }
  45580. },
  45581. back: {
  45582. height: math.unit(6, "feet"),
  45583. weight: math.unit(200, "lb"),
  45584. name: "Back",
  45585. image: {
  45586. source: "./media/characters/blizzard/back.svg",
  45587. extra: 1175/1034,
  45588. bottom: 97/1272
  45589. }
  45590. },
  45591. sitting: {
  45592. height: math.unit(3.725, "feet"),
  45593. weight: math.unit(200, "lb"),
  45594. name: "Sitting",
  45595. image: {
  45596. source: "./media/characters/blizzard/sitting.svg",
  45597. extra: 581/485,
  45598. bottom: 90/671
  45599. }
  45600. },
  45601. frontWizard: {
  45602. height: math.unit(7.9, "feet"),
  45603. weight: math.unit(200, "lb"),
  45604. name: "Front (Wizard)",
  45605. image: {
  45606. source: "./media/characters/blizzard/front-wizard.svg"
  45607. }
  45608. },
  45609. backWizard: {
  45610. height: math.unit(7.9, "feet"),
  45611. weight: math.unit(200, "lb"),
  45612. name: "Back (Wizard)",
  45613. image: {
  45614. source: "./media/characters/blizzard/back-wizard.svg"
  45615. }
  45616. },
  45617. frontNsfw: {
  45618. height: math.unit(6, "feet"),
  45619. weight: math.unit(200, "lb"),
  45620. name: "Front (NSFW)",
  45621. image: {
  45622. source: "./media/characters/blizzard/front-nsfw.svg",
  45623. extra: 1136/990,
  45624. bottom: 136/1272
  45625. }
  45626. },
  45627. backNsfw: {
  45628. height: math.unit(6, "feet"),
  45629. weight: math.unit(200, "lb"),
  45630. name: "Back (NSFW)",
  45631. image: {
  45632. source: "./media/characters/blizzard/back-nsfw.svg",
  45633. extra: 1175/1034,
  45634. bottom: 97/1272
  45635. }
  45636. },
  45637. sittingNsfw: {
  45638. height: math.unit(3.725, "feet"),
  45639. weight: math.unit(200, "lb"),
  45640. name: "Sitting (NSFW)",
  45641. image: {
  45642. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45643. extra: 581/485,
  45644. bottom: 90/671
  45645. }
  45646. },
  45647. wizardFrontNsfw: {
  45648. height: math.unit(7.9, "feet"),
  45649. weight: math.unit(200, "lb"),
  45650. name: "Wizard (Front, NSFW)",
  45651. image: {
  45652. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45653. }
  45654. },
  45655. },
  45656. [
  45657. {
  45658. name: "Normal",
  45659. height: math.unit(6, "feet"),
  45660. default: true
  45661. },
  45662. ]
  45663. ))
  45664. characterMakers.push(() => makeCharacter(
  45665. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45666. {
  45667. front: {
  45668. height: math.unit(5 + 2/12, "feet"),
  45669. name: "Front",
  45670. image: {
  45671. source: "./media/characters/lumi/front.svg",
  45672. extra: 1328/1268,
  45673. bottom: 103/1431
  45674. }
  45675. },
  45676. back: {
  45677. height: math.unit(5 + 2/12, "feet"),
  45678. name: "Back",
  45679. image: {
  45680. source: "./media/characters/lumi/back.svg",
  45681. extra: 1381/1327,
  45682. bottom: 43/1424
  45683. }
  45684. },
  45685. },
  45686. [
  45687. {
  45688. name: "Normal",
  45689. height: math.unit(5 + 2/12, "feet"),
  45690. default: true
  45691. },
  45692. ]
  45693. ))
  45694. characterMakers.push(() => makeCharacter(
  45695. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45696. {
  45697. front: {
  45698. height: math.unit(5 + 9/12, "feet"),
  45699. name: "Front",
  45700. image: {
  45701. source: "./media/characters/aliya-cotton/front.svg",
  45702. extra: 577/564,
  45703. bottom: 29/606
  45704. }
  45705. },
  45706. },
  45707. [
  45708. {
  45709. name: "Normal",
  45710. height: math.unit(5 + 9/12, "feet"),
  45711. default: true
  45712. },
  45713. ]
  45714. ))
  45715. characterMakers.push(() => makeCharacter(
  45716. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45717. {
  45718. front: {
  45719. height: math.unit(2.7, "meters"),
  45720. weight: math.unit(25000, "lb"),
  45721. name: "Front",
  45722. image: {
  45723. source: "./media/characters/noah-luxray/front.svg",
  45724. extra: 1644/825,
  45725. bottom: 339/1983
  45726. }
  45727. },
  45728. side: {
  45729. height: math.unit(2.97, "meters"),
  45730. weight: math.unit(25000, "lb"),
  45731. name: "Side",
  45732. image: {
  45733. source: "./media/characters/noah-luxray/side.svg",
  45734. extra: 1319/650,
  45735. bottom: 163/1482
  45736. }
  45737. },
  45738. dick: {
  45739. height: math.unit(7.4, "feet"),
  45740. weight: math.unit(2500, "lb"),
  45741. name: "Dick",
  45742. image: {
  45743. source: "./media/characters/noah-luxray/dick.svg"
  45744. }
  45745. },
  45746. dickAlt: {
  45747. height: math.unit(10.83, "feet"),
  45748. weight: math.unit(2500, "lb"),
  45749. name: "Dick-alt",
  45750. image: {
  45751. source: "./media/characters/noah-luxray/dick-alt.svg"
  45752. }
  45753. },
  45754. },
  45755. [
  45756. {
  45757. name: "BIG",
  45758. height: math.unit(2.7, "meters"),
  45759. default: true
  45760. },
  45761. ]
  45762. ))
  45763. characterMakers.push(() => makeCharacter(
  45764. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45765. {
  45766. standing: {
  45767. height: math.unit(183, "cm"),
  45768. weight: math.unit(68, "kg"),
  45769. name: "Standing",
  45770. image: {
  45771. source: "./media/characters/arion/standing.svg",
  45772. extra: 1869/1807,
  45773. bottom: 93/1962
  45774. }
  45775. },
  45776. reclining: {
  45777. height: math.unit(70.5, "cm"),
  45778. weight: math.unit(68, "lb"),
  45779. name: "Reclining",
  45780. image: {
  45781. source: "./media/characters/arion/reclining.svg",
  45782. extra: 937/870,
  45783. bottom: 63/1000
  45784. }
  45785. },
  45786. },
  45787. [
  45788. {
  45789. name: "Colossus Size, Low",
  45790. height: math.unit(33, "meters"),
  45791. default: true
  45792. },
  45793. {
  45794. name: "Colossus Size, Mid",
  45795. height: math.unit(52, "meters")
  45796. },
  45797. {
  45798. name: "Colossus Size, High",
  45799. height: math.unit(60, "meters")
  45800. },
  45801. {
  45802. name: "Titan Size, Low",
  45803. height: math.unit(91, "meters"),
  45804. },
  45805. {
  45806. name: "Titan Size, Mid",
  45807. height: math.unit(122, "meters")
  45808. },
  45809. {
  45810. name: "Titan Size, High",
  45811. height: math.unit(162, "meters")
  45812. },
  45813. ]
  45814. ))
  45815. characterMakers.push(() => makeCharacter(
  45816. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45817. {
  45818. front: {
  45819. height: math.unit(53, "meters"),
  45820. name: "Front",
  45821. image: {
  45822. source: "./media/characters/stellar-marbey/front.svg",
  45823. extra: 1913/1805,
  45824. bottom: 92/2005
  45825. }
  45826. },
  45827. back: {
  45828. height: math.unit(53, "meters"),
  45829. name: "Back",
  45830. image: {
  45831. source: "./media/characters/stellar-marbey/back.svg",
  45832. extra: 1960/1851,
  45833. bottom: 28/1988
  45834. }
  45835. },
  45836. mouth: {
  45837. height: math.unit(3.5, "meters"),
  45838. name: "Mouth",
  45839. image: {
  45840. source: "./media/characters/stellar-marbey/mouth.svg"
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Macro",
  45847. height: math.unit(53, "meters"),
  45848. default: true
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45854. {
  45855. front: {
  45856. height: math.unit(8 + 1/12, "feet"),
  45857. weight: math.unit(233, "lb"),
  45858. name: "Front",
  45859. image: {
  45860. source: "./media/characters/matsu/front.svg",
  45861. extra: 832/772,
  45862. bottom: 40/872
  45863. }
  45864. },
  45865. back: {
  45866. height: math.unit(8 + 1/12, "feet"),
  45867. weight: math.unit(233, "lb"),
  45868. name: "Back",
  45869. image: {
  45870. source: "./media/characters/matsu/back.svg",
  45871. extra: 839/780,
  45872. bottom: 47/886
  45873. }
  45874. },
  45875. },
  45876. [
  45877. {
  45878. name: "Normal",
  45879. height: math.unit(8 + 1/12, "feet"),
  45880. default: true
  45881. },
  45882. ]
  45883. ))
  45884. characterMakers.push(() => makeCharacter(
  45885. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45886. {
  45887. front: {
  45888. height: math.unit(4, "feet"),
  45889. weight: math.unit(148, "lb"),
  45890. name: "Front",
  45891. image: {
  45892. source: "./media/characters/thiz/front.svg",
  45893. extra: 1913/1748,
  45894. bottom: 62/1975
  45895. }
  45896. },
  45897. },
  45898. [
  45899. {
  45900. name: "Normal",
  45901. height: math.unit(4, "feet"),
  45902. default: true
  45903. },
  45904. ]
  45905. ))
  45906. characterMakers.push(() => makeCharacter(
  45907. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45908. {
  45909. front: {
  45910. height: math.unit(7 + 6/12, "feet"),
  45911. weight: math.unit(267, "lb"),
  45912. name: "Front",
  45913. image: {
  45914. source: "./media/characters/marcel/front.svg",
  45915. extra: 1221/1096,
  45916. bottom: 76/1297
  45917. }
  45918. },
  45919. },
  45920. [
  45921. {
  45922. name: "Normal",
  45923. height: math.unit(7 + 6/12, "feet"),
  45924. default: true
  45925. },
  45926. ]
  45927. ))
  45928. characterMakers.push(() => makeCharacter(
  45929. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45930. {
  45931. side: {
  45932. height: math.unit(42, "meters"),
  45933. name: "Side",
  45934. image: {
  45935. source: "./media/characters/flake/side.svg",
  45936. extra: 1525/1306,
  45937. bottom: 209/1734
  45938. }
  45939. },
  45940. },
  45941. [
  45942. {
  45943. name: "Normal",
  45944. height: math.unit(42, "meters"),
  45945. default: true
  45946. },
  45947. ]
  45948. ))
  45949. characterMakers.push(() => makeCharacter(
  45950. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45951. {
  45952. dressed: {
  45953. height: math.unit(6 + 4/12, "feet"),
  45954. weight: math.unit(520, "lb"),
  45955. name: "Dressed",
  45956. image: {
  45957. source: "./media/characters/someonne/dressed.svg",
  45958. extra: 1020/1010,
  45959. bottom: 178/1198
  45960. }
  45961. },
  45962. undressed: {
  45963. height: math.unit(6 + 4/12, "feet"),
  45964. weight: math.unit(520, "lb"),
  45965. name: "Undressed",
  45966. image: {
  45967. source: "./media/characters/someonne/undressed.svg",
  45968. extra: 1019/1014,
  45969. bottom: 169/1188
  45970. }
  45971. },
  45972. },
  45973. [
  45974. {
  45975. name: "Normal",
  45976. height: math.unit(6 + 4/12, "feet"),
  45977. default: true
  45978. },
  45979. ]
  45980. ))
  45981. characterMakers.push(() => makeCharacter(
  45982. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45983. {
  45984. front: {
  45985. height: math.unit(3, "feet"),
  45986. weight: math.unit(30, "lb"),
  45987. name: "Front",
  45988. image: {
  45989. source: "./media/characters/till/front.svg",
  45990. extra: 892/823,
  45991. bottom: 55/947
  45992. }
  45993. },
  45994. },
  45995. [
  45996. {
  45997. name: "Normal",
  45998. height: math.unit(3, "feet"),
  45999. default: true
  46000. },
  46001. ]
  46002. ))
  46003. characterMakers.push(() => makeCharacter(
  46004. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46005. {
  46006. front: {
  46007. height: math.unit(9 + 8/12, "feet"),
  46008. weight: math.unit(800, "lb"),
  46009. name: "Front",
  46010. image: {
  46011. source: "./media/characters/sydney-heki/front.svg",
  46012. extra: 1360/1300,
  46013. bottom: 22/1382
  46014. }
  46015. },
  46016. back: {
  46017. height: math.unit(9 + 8/12, "feet"),
  46018. weight: math.unit(800, "lb"),
  46019. name: "Back",
  46020. image: {
  46021. source: "./media/characters/sydney-heki/back.svg",
  46022. extra: 1356/1293,
  46023. bottom: 12/1368
  46024. }
  46025. },
  46026. frontDressed: {
  46027. height: math.unit(9 + 8/12, "feet"),
  46028. weight: math.unit(800, "lb"),
  46029. name: "Front-dressed",
  46030. image: {
  46031. source: "./media/characters/sydney-heki/front-dressed.svg",
  46032. extra: 1360/1300,
  46033. bottom: 22/1382
  46034. }
  46035. },
  46036. },
  46037. [
  46038. {
  46039. name: "Normal",
  46040. height: math.unit(9 + 8/12, "feet"),
  46041. default: true
  46042. },
  46043. {
  46044. name: "Macro",
  46045. height: math.unit(500, "feet")
  46046. },
  46047. {
  46048. name: "Megamacro",
  46049. height: math.unit(3.6, "miles")
  46050. },
  46051. ]
  46052. ))
  46053. characterMakers.push(() => makeCharacter(
  46054. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46055. {
  46056. front: {
  46057. height: math.unit(200, "cm"),
  46058. weight: math.unit(250, "lb"),
  46059. name: "Front",
  46060. image: {
  46061. source: "./media/characters/fowler-karlsson/front.svg",
  46062. extra: 897/845,
  46063. bottom: 123/1020
  46064. }
  46065. },
  46066. back: {
  46067. height: math.unit(200, "cm"),
  46068. weight: math.unit(250, "lb"),
  46069. name: "Back",
  46070. image: {
  46071. source: "./media/characters/fowler-karlsson/back.svg",
  46072. extra: 999/944,
  46073. bottom: 26/1025
  46074. }
  46075. },
  46076. dick: {
  46077. height: math.unit(1.92, "feet"),
  46078. weight: math.unit(150, "lb"),
  46079. name: "Dick",
  46080. image: {
  46081. source: "./media/characters/fowler-karlsson/dick.svg"
  46082. }
  46083. },
  46084. },
  46085. [
  46086. {
  46087. name: "Normal",
  46088. height: math.unit(200, "cm"),
  46089. default: true
  46090. },
  46091. {
  46092. name: "Smaller Macro",
  46093. height: math.unit(90, "m")
  46094. },
  46095. {
  46096. name: "Macro",
  46097. height: math.unit(150, "m")
  46098. },
  46099. {
  46100. name: "Bigger Macro",
  46101. height: math.unit(300, "m")
  46102. },
  46103. ]
  46104. ))
  46105. characterMakers.push(() => makeCharacter(
  46106. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46107. {
  46108. side: {
  46109. height: math.unit(8 + 2/12, "feet"),
  46110. weight: math.unit(1, "tonne"),
  46111. name: "Side",
  46112. image: {
  46113. source: "./media/characters/rylide/side.svg",
  46114. extra: 1318/1034,
  46115. bottom: 106/1424
  46116. }
  46117. },
  46118. sitting: {
  46119. height: math.unit(303, "cm"),
  46120. weight: math.unit(1, "tonne"),
  46121. name: "Sitting",
  46122. image: {
  46123. source: "./media/characters/rylide/sitting.svg",
  46124. extra: 1303/1103,
  46125. bottom: 36/1339
  46126. }
  46127. },
  46128. },
  46129. [
  46130. {
  46131. name: "Normal",
  46132. height: math.unit(8 + 2/12, "feet"),
  46133. default: true
  46134. },
  46135. ]
  46136. ))
  46137. characterMakers.push(() => makeCharacter(
  46138. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46139. {
  46140. front: {
  46141. height: math.unit(5 + 10/12, "feet"),
  46142. weight: math.unit(160, "lb"),
  46143. name: "Front",
  46144. image: {
  46145. source: "./media/characters/pudask/front.svg",
  46146. extra: 1616/1590,
  46147. bottom: 161/1777
  46148. }
  46149. },
  46150. },
  46151. [
  46152. {
  46153. name: "Ferret Height",
  46154. height: math.unit(2 + 5/12, "feet")
  46155. },
  46156. {
  46157. name: "Canon Height",
  46158. height: math.unit(5 + 10/12, "feet"),
  46159. default: true
  46160. },
  46161. ]
  46162. ))
  46163. characterMakers.push(() => makeCharacter(
  46164. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46165. {
  46166. front: {
  46167. height: math.unit(3 + 6/12, "feet"),
  46168. weight: math.unit(60, "lb"),
  46169. name: "Front",
  46170. image: {
  46171. source: "./media/characters/ramita/front.svg",
  46172. extra: 1402/1232,
  46173. bottom: 62/1464
  46174. }
  46175. },
  46176. dressed: {
  46177. height: math.unit(3 + 6/12, "feet"),
  46178. weight: math.unit(60, "lb"),
  46179. name: "Dressed",
  46180. image: {
  46181. source: "./media/characters/ramita/dressed.svg",
  46182. extra: 1534/1249,
  46183. bottom: 50/1584
  46184. }
  46185. },
  46186. },
  46187. [
  46188. {
  46189. name: "Normal",
  46190. height: math.unit(3 + 6/12, "feet"),
  46191. default: true
  46192. },
  46193. ]
  46194. ))
  46195. characterMakers.push(() => makeCharacter(
  46196. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46197. {
  46198. front: {
  46199. height: math.unit(8, "feet"),
  46200. name: "Front",
  46201. image: {
  46202. source: "./media/characters/ark/front.svg",
  46203. extra: 772/693,
  46204. bottom: 45/817
  46205. }
  46206. },
  46207. },
  46208. [
  46209. {
  46210. name: "Normal",
  46211. height: math.unit(8, "feet"),
  46212. default: true
  46213. },
  46214. ]
  46215. ))
  46216. characterMakers.push(() => makeCharacter(
  46217. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46218. {
  46219. front: {
  46220. height: math.unit(6, "feet"),
  46221. weight: math.unit(250, "lb"),
  46222. volume: math.unit(5/8, "gallons"),
  46223. name: "Front",
  46224. image: {
  46225. source: "./media/characters/ludwig-horn/front.svg",
  46226. extra: 1782/1635,
  46227. bottom: 96/1878
  46228. }
  46229. },
  46230. back: {
  46231. height: math.unit(6, "feet"),
  46232. weight: math.unit(250, "lb"),
  46233. volume: math.unit(5/8, "gallons"),
  46234. name: "Back",
  46235. image: {
  46236. source: "./media/characters/ludwig-horn/back.svg",
  46237. extra: 1874/1729,
  46238. bottom: 27/1901
  46239. }
  46240. },
  46241. dick: {
  46242. height: math.unit(1.05, "feet"),
  46243. weight: math.unit(15, "lb"),
  46244. volume: math.unit(5/8, "gallons"),
  46245. name: "Dick",
  46246. image: {
  46247. source: "./media/characters/ludwig-horn/dick.svg"
  46248. }
  46249. },
  46250. },
  46251. [
  46252. {
  46253. name: "Small",
  46254. height: math.unit(6, "feet")
  46255. },
  46256. {
  46257. name: "Typical",
  46258. height: math.unit(12, "feet"),
  46259. default: true
  46260. },
  46261. {
  46262. name: "Building",
  46263. height: math.unit(80, "feet")
  46264. },
  46265. {
  46266. name: "Town",
  46267. height: math.unit(800, "feet")
  46268. },
  46269. {
  46270. name: "Kingdom",
  46271. height: math.unit(80000, "feet")
  46272. },
  46273. {
  46274. name: "Planet",
  46275. height: math.unit(8000000, "feet")
  46276. },
  46277. {
  46278. name: "Universe",
  46279. height: math.unit(8000000000, "feet")
  46280. },
  46281. {
  46282. name: "Transcended",
  46283. height: math.unit(8e27, "feet")
  46284. },
  46285. ]
  46286. ))
  46287. characterMakers.push(() => makeCharacter(
  46288. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46289. {
  46290. front: {
  46291. height: math.unit(5, "feet"),
  46292. weight: math.unit(50, "kg"),
  46293. name: "Front",
  46294. image: {
  46295. source: "./media/characters/biot-avery/front.svg",
  46296. extra: 1295/1232,
  46297. bottom: 86/1381
  46298. }
  46299. },
  46300. },
  46301. [
  46302. {
  46303. name: "Normal",
  46304. height: math.unit(5, "feet"),
  46305. default: true
  46306. },
  46307. ]
  46308. ))
  46309. characterMakers.push(() => makeCharacter(
  46310. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46311. {
  46312. front: {
  46313. height: math.unit(6, "feet"),
  46314. name: "Front",
  46315. image: {
  46316. source: "./media/characters/kitsune-kiro/front.svg",
  46317. extra: 1270/1158,
  46318. bottom: 42/1312
  46319. }
  46320. },
  46321. frontAlt: {
  46322. height: math.unit(6, "feet"),
  46323. name: "Front-alt",
  46324. image: {
  46325. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46326. extra: 1130/1081,
  46327. bottom: 36/1166
  46328. }
  46329. },
  46330. },
  46331. [
  46332. {
  46333. name: "Smol",
  46334. height: math.unit(3, "feet")
  46335. },
  46336. {
  46337. name: "Normal",
  46338. height: math.unit(6, "feet"),
  46339. default: true
  46340. },
  46341. ]
  46342. ))
  46343. characterMakers.push(() => makeCharacter(
  46344. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46345. {
  46346. front: {
  46347. height: math.unit(6, "feet"),
  46348. weight: math.unit(125, "lb"),
  46349. name: "Front",
  46350. image: {
  46351. source: "./media/characters/jack-thatcher/front.svg",
  46352. extra: 1474/1370,
  46353. bottom: 26/1500
  46354. }
  46355. },
  46356. back: {
  46357. height: math.unit(6, "feet"),
  46358. weight: math.unit(125, "lb"),
  46359. name: "Back",
  46360. image: {
  46361. source: "./media/characters/jack-thatcher/back.svg",
  46362. extra: 1489/1384,
  46363. bottom: 18/1507
  46364. }
  46365. },
  46366. },
  46367. [
  46368. {
  46369. name: "Normal",
  46370. height: math.unit(6, "feet"),
  46371. default: true
  46372. },
  46373. {
  46374. name: "Macro",
  46375. height: math.unit(75, "feet")
  46376. },
  46377. {
  46378. name: "Macro-er",
  46379. height: math.unit(250, "feet")
  46380. },
  46381. ]
  46382. ))
  46383. characterMakers.push(() => makeCharacter(
  46384. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46385. {
  46386. front: {
  46387. height: math.unit(7, "feet"),
  46388. weight: math.unit(110, "kg"),
  46389. name: "Front",
  46390. image: {
  46391. source: "./media/characters/max-hyper/front.svg",
  46392. extra: 1969/1881,
  46393. bottom: 49/2018
  46394. }
  46395. },
  46396. },
  46397. [
  46398. {
  46399. name: "Normal",
  46400. height: math.unit(7, "feet"),
  46401. default: true
  46402. },
  46403. ]
  46404. ))
  46405. characterMakers.push(() => makeCharacter(
  46406. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46407. {
  46408. front: {
  46409. height: math.unit(5 + 5/12, "feet"),
  46410. weight: math.unit(160, "lb"),
  46411. name: "Front",
  46412. image: {
  46413. source: "./media/characters/spook/front.svg",
  46414. extra: 794/791,
  46415. bottom: 54/848
  46416. }
  46417. },
  46418. back: {
  46419. height: math.unit(5 + 5/12, "feet"),
  46420. weight: math.unit(160, "lb"),
  46421. name: "Back",
  46422. image: {
  46423. source: "./media/characters/spook/back.svg",
  46424. extra: 812/798,
  46425. bottom: 32/844
  46426. }
  46427. },
  46428. },
  46429. [
  46430. {
  46431. name: "Normal",
  46432. height: math.unit(5 + 5/12, "feet"),
  46433. default: true
  46434. },
  46435. ]
  46436. ))
  46437. characterMakers.push(() => makeCharacter(
  46438. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46439. {
  46440. front: {
  46441. height: math.unit(18, "feet"),
  46442. name: "Front",
  46443. image: {
  46444. source: "./media/characters/xeaduulix/front.svg",
  46445. extra: 1380/1166,
  46446. bottom: 110/1490
  46447. }
  46448. },
  46449. back: {
  46450. height: math.unit(18, "feet"),
  46451. name: "Back",
  46452. image: {
  46453. source: "./media/characters/xeaduulix/back.svg",
  46454. extra: 1592/1170,
  46455. bottom: 128/1720
  46456. }
  46457. },
  46458. frontNsfw: {
  46459. height: math.unit(18, "feet"),
  46460. name: "Front (NSFW)",
  46461. image: {
  46462. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46463. extra: 1380/1166,
  46464. bottom: 110/1490
  46465. }
  46466. },
  46467. backNsfw: {
  46468. height: math.unit(18, "feet"),
  46469. name: "Back (NSFW)",
  46470. image: {
  46471. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46472. extra: 1592/1170,
  46473. bottom: 128/1720
  46474. }
  46475. },
  46476. },
  46477. [
  46478. {
  46479. name: "Normal",
  46480. height: math.unit(18, "feet"),
  46481. default: true
  46482. },
  46483. ]
  46484. ))
  46485. characterMakers.push(() => makeCharacter(
  46486. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46487. {
  46488. spreadWings: {
  46489. height: math.unit(20, "feet"),
  46490. name: "Spread Wings",
  46491. image: {
  46492. source: "./media/characters/fledge/spread-wings.svg",
  46493. extra: 693/635,
  46494. bottom: 26/719
  46495. }
  46496. },
  46497. front: {
  46498. height: math.unit(20, "feet"),
  46499. name: "Front",
  46500. image: {
  46501. source: "./media/characters/fledge/front.svg",
  46502. extra: 684/637,
  46503. bottom: 18/702
  46504. }
  46505. },
  46506. frontAlt: {
  46507. height: math.unit(20, "feet"),
  46508. name: "Front (Alt)",
  46509. image: {
  46510. source: "./media/characters/fledge/front-alt.svg",
  46511. extra: 708/664,
  46512. bottom: 13/721
  46513. }
  46514. },
  46515. back: {
  46516. height: math.unit(20, "feet"),
  46517. name: "Back",
  46518. image: {
  46519. source: "./media/characters/fledge/back.svg",
  46520. extra: 718/634,
  46521. bottom: 22/740
  46522. }
  46523. },
  46524. head: {
  46525. height: math.unit(5.55, "feet"),
  46526. name: "Head",
  46527. image: {
  46528. source: "./media/characters/fledge/head.svg"
  46529. }
  46530. },
  46531. headAlt: {
  46532. height: math.unit(5.1, "feet"),
  46533. name: "Head (Alt)",
  46534. image: {
  46535. source: "./media/characters/fledge/head-alt.svg"
  46536. }
  46537. },
  46538. },
  46539. [
  46540. {
  46541. name: "Small",
  46542. height: math.unit(6 + 2/12, "feet")
  46543. },
  46544. {
  46545. name: "Big",
  46546. height: math.unit(20, "feet"),
  46547. default: true
  46548. },
  46549. {
  46550. name: "Giant",
  46551. height: math.unit(100, "feet")
  46552. },
  46553. {
  46554. name: "Macro",
  46555. height: math.unit(200, "feet")
  46556. },
  46557. ]
  46558. ))
  46559. characterMakers.push(() => makeCharacter(
  46560. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46561. {
  46562. front: {
  46563. height: math.unit(1, "meter"),
  46564. name: "Front",
  46565. image: {
  46566. source: "./media/characters/atlas-morenai/front.svg",
  46567. extra: 1275/1043,
  46568. bottom: 19/1294
  46569. }
  46570. },
  46571. back: {
  46572. height: math.unit(1, "meter"),
  46573. name: "Back",
  46574. image: {
  46575. source: "./media/characters/atlas-morenai/back.svg",
  46576. extra: 1141/1001,
  46577. bottom: 25/1166
  46578. }
  46579. },
  46580. },
  46581. [
  46582. {
  46583. name: "Normal",
  46584. height: math.unit(1, "meter"),
  46585. default: true
  46586. },
  46587. {
  46588. name: "Magic-Infused",
  46589. height: math.unit(5, "meters")
  46590. },
  46591. ]
  46592. ))
  46593. characterMakers.push(() => makeCharacter(
  46594. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46595. {
  46596. front: {
  46597. height: math.unit(5, "meters"),
  46598. name: "Front",
  46599. image: {
  46600. source: "./media/characters/cintia/front.svg",
  46601. extra: 1312/1228,
  46602. bottom: 38/1350
  46603. }
  46604. },
  46605. back: {
  46606. height: math.unit(5, "meters"),
  46607. name: "Back",
  46608. image: {
  46609. source: "./media/characters/cintia/back.svg",
  46610. extra: 1260/1166,
  46611. bottom: 98/1358
  46612. }
  46613. },
  46614. frontDick: {
  46615. height: math.unit(5, "meters"),
  46616. name: "Front (Dick)",
  46617. image: {
  46618. source: "./media/characters/cintia/front-dick.svg",
  46619. extra: 1312/1228,
  46620. bottom: 38/1350
  46621. }
  46622. },
  46623. backDick: {
  46624. height: math.unit(5, "meters"),
  46625. name: "Back (Dick)",
  46626. image: {
  46627. source: "./media/characters/cintia/back-dick.svg",
  46628. extra: 1260/1166,
  46629. bottom: 98/1358
  46630. }
  46631. },
  46632. bust: {
  46633. height: math.unit(1.97, "meters"),
  46634. name: "Bust",
  46635. image: {
  46636. source: "./media/characters/cintia/bust.svg",
  46637. extra: 617/565,
  46638. bottom: 0/617
  46639. }
  46640. },
  46641. },
  46642. [
  46643. {
  46644. name: "Normal",
  46645. height: math.unit(5, "meters"),
  46646. default: true
  46647. },
  46648. ]
  46649. ))
  46650. characterMakers.push(() => makeCharacter(
  46651. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46652. {
  46653. side: {
  46654. height: math.unit(100, "feet"),
  46655. name: "Side",
  46656. image: {
  46657. source: "./media/characters/denora/side.svg",
  46658. extra: 875/803,
  46659. bottom: 9/884
  46660. }
  46661. },
  46662. },
  46663. [
  46664. {
  46665. name: "Standard",
  46666. height: math.unit(100, "feet"),
  46667. default: true
  46668. },
  46669. {
  46670. name: "Grand",
  46671. height: math.unit(1000, "feet")
  46672. },
  46673. {
  46674. name: "Conquering",
  46675. height: math.unit(10000, "feet")
  46676. },
  46677. ]
  46678. ))
  46679. characterMakers.push(() => makeCharacter(
  46680. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46681. {
  46682. dressed: {
  46683. height: math.unit(8 + 5/12, "feet"),
  46684. weight: math.unit(700, "lb"),
  46685. name: "Dressed",
  46686. image: {
  46687. source: "./media/characters/kiva/dressed.svg",
  46688. extra: 1102/1055,
  46689. bottom: 60/1162
  46690. }
  46691. },
  46692. nude: {
  46693. height: math.unit(8 + 5/12, "feet"),
  46694. weight: math.unit(700, "lb"),
  46695. name: "Nude",
  46696. image: {
  46697. source: "./media/characters/kiva/nude.svg",
  46698. extra: 1102/1055,
  46699. bottom: 60/1162
  46700. }
  46701. },
  46702. },
  46703. [
  46704. {
  46705. name: "Base Height",
  46706. height: math.unit(8 + 5/12, "feet"),
  46707. default: true
  46708. },
  46709. {
  46710. name: "Macro",
  46711. height: math.unit(100, "feet")
  46712. },
  46713. {
  46714. name: "Max",
  46715. height: math.unit(3280, "feet")
  46716. },
  46717. ]
  46718. ))
  46719. characterMakers.push(() => makeCharacter(
  46720. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46721. {
  46722. front: {
  46723. height: math.unit(6 + 8/12, "feet"),
  46724. weight: math.unit(250, "lb"),
  46725. name: "Front",
  46726. image: {
  46727. source: "./media/characters/ztragon/front.svg",
  46728. extra: 1825/1684,
  46729. bottom: 98/1923
  46730. }
  46731. },
  46732. },
  46733. [
  46734. {
  46735. name: "Normal",
  46736. height: math.unit(6 + 8/12, "feet"),
  46737. default: true
  46738. },
  46739. {
  46740. name: "Macro",
  46741. height: math.unit(80, "feet")
  46742. },
  46743. ]
  46744. ))
  46745. characterMakers.push(() => makeCharacter(
  46746. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46747. {
  46748. front: {
  46749. height: math.unit(10.4, "feet"),
  46750. weight: math.unit(2, "tons"),
  46751. name: "Front",
  46752. image: {
  46753. source: "./media/characters/yesenia/front.svg",
  46754. extra: 1479/1474,
  46755. bottom: 233/1712
  46756. }
  46757. },
  46758. },
  46759. [
  46760. {
  46761. name: "Normal",
  46762. height: math.unit(10.4, "feet"),
  46763. default: true
  46764. },
  46765. ]
  46766. ))
  46767. characterMakers.push(() => makeCharacter(
  46768. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46769. {
  46770. normal: {
  46771. height: math.unit(6 + 1/12, "feet"),
  46772. weight: math.unit(180, "lb"),
  46773. name: "Normal",
  46774. image: {
  46775. source: "./media/characters/leanne-lycheborne/normal.svg",
  46776. extra: 1748/1660,
  46777. bottom: 98/1846
  46778. }
  46779. },
  46780. were: {
  46781. height: math.unit(12, "feet"),
  46782. weight: math.unit(1600, "lb"),
  46783. name: "Were",
  46784. image: {
  46785. source: "./media/characters/leanne-lycheborne/were.svg",
  46786. extra: 1485/1432,
  46787. bottom: 66/1551
  46788. }
  46789. },
  46790. },
  46791. [
  46792. {
  46793. name: "Normal",
  46794. height: math.unit(6 + 1/12, "feet"),
  46795. default: true
  46796. },
  46797. ]
  46798. ))
  46799. characterMakers.push(() => makeCharacter(
  46800. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46801. {
  46802. side: {
  46803. height: math.unit(13, "feet"),
  46804. name: "Side",
  46805. image: {
  46806. source: "./media/characters/kira-tyler/side.svg",
  46807. extra: 693/393,
  46808. bottom: 58/751
  46809. }
  46810. },
  46811. },
  46812. [
  46813. {
  46814. name: "Normal",
  46815. height: math.unit(13, "feet"),
  46816. default: true
  46817. },
  46818. ]
  46819. ))
  46820. characterMakers.push(() => makeCharacter(
  46821. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46822. {
  46823. front: {
  46824. height: math.unit(10.3, "feet"),
  46825. weight: math.unit(150, "lb"),
  46826. name: "Front",
  46827. image: {
  46828. source: "./media/characters/blaze/front.svg",
  46829. extra: 1378/1286,
  46830. bottom: 172/1550
  46831. }
  46832. },
  46833. },
  46834. [
  46835. {
  46836. name: "Normal",
  46837. height: math.unit(10.3, "feet"),
  46838. default: true
  46839. },
  46840. ]
  46841. ))
  46842. characterMakers.push(() => makeCharacter(
  46843. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46844. {
  46845. side: {
  46846. height: math.unit(2, "meters"),
  46847. weight: math.unit(400, "kg"),
  46848. name: "Side",
  46849. image: {
  46850. source: "./media/characters/anu/side.svg",
  46851. extra: 506/394,
  46852. bottom: 18/524
  46853. }
  46854. },
  46855. },
  46856. [
  46857. {
  46858. name: "Humanoid",
  46859. height: math.unit(2, "meters")
  46860. },
  46861. {
  46862. name: "Normal",
  46863. height: math.unit(5, "meters"),
  46864. default: true
  46865. },
  46866. ]
  46867. ))
  46868. characterMakers.push(() => makeCharacter(
  46869. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46870. {
  46871. front: {
  46872. height: math.unit(5 + 5/12, "feet"),
  46873. weight: math.unit(170, "lb"),
  46874. name: "Front",
  46875. image: {
  46876. source: "./media/characters/synx-the-lynx/front.svg",
  46877. extra: 1893/1745,
  46878. bottom: 17/1910
  46879. }
  46880. },
  46881. side: {
  46882. height: math.unit(5 + 5/12, "feet"),
  46883. weight: math.unit(170, "lb"),
  46884. name: "Side",
  46885. image: {
  46886. source: "./media/characters/synx-the-lynx/side.svg",
  46887. extra: 1884/1740,
  46888. bottom: 39/1923
  46889. }
  46890. },
  46891. back: {
  46892. height: math.unit(5 + 5/12, "feet"),
  46893. weight: math.unit(170, "lb"),
  46894. name: "Back",
  46895. image: {
  46896. source: "./media/characters/synx-the-lynx/back.svg",
  46897. extra: 1903/1755,
  46898. bottom: 14/1917
  46899. }
  46900. },
  46901. },
  46902. [
  46903. {
  46904. name: "Normal",
  46905. height: math.unit(5 + 5/12, "feet"),
  46906. default: true
  46907. },
  46908. ]
  46909. ))
  46910. characterMakers.push(() => makeCharacter(
  46911. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46912. {
  46913. back: {
  46914. height: math.unit(15, "feet"),
  46915. name: "Back",
  46916. image: {
  46917. source: "./media/characters/nadezda-fex/back.svg",
  46918. extra: 1695/1481,
  46919. bottom: 25/1720
  46920. }
  46921. },
  46922. },
  46923. [
  46924. {
  46925. name: "Normal",
  46926. height: math.unit(15, "feet"),
  46927. default: true
  46928. },
  46929. {
  46930. name: "Macro",
  46931. height: math.unit(2.5, "miles")
  46932. },
  46933. {
  46934. name: "Goddess",
  46935. height: math.unit(2, "multiverses")
  46936. },
  46937. ]
  46938. ))
  46939. characterMakers.push(() => makeCharacter(
  46940. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46941. {
  46942. front: {
  46943. height: math.unit(216, "cm"),
  46944. name: "Front",
  46945. image: {
  46946. source: "./media/characters/lev/front.svg",
  46947. extra: 1728/1670,
  46948. bottom: 82/1810
  46949. }
  46950. },
  46951. back: {
  46952. height: math.unit(216, "cm"),
  46953. name: "Back",
  46954. image: {
  46955. source: "./media/characters/lev/back.svg",
  46956. extra: 1738/1675,
  46957. bottom: 24/1762
  46958. }
  46959. },
  46960. dressed: {
  46961. height: math.unit(216, "cm"),
  46962. name: "Dressed",
  46963. image: {
  46964. source: "./media/characters/lev/dressed.svg",
  46965. extra: 1397/1351,
  46966. bottom: 73/1470
  46967. }
  46968. },
  46969. head: {
  46970. height: math.unit(0.51, "meter"),
  46971. name: "Head",
  46972. image: {
  46973. source: "./media/characters/lev/head.svg"
  46974. }
  46975. },
  46976. },
  46977. [
  46978. {
  46979. name: "Normal",
  46980. height: math.unit(216, "cm"),
  46981. default: true
  46982. },
  46983. {
  46984. name: "Relatively Macro",
  46985. height: math.unit(80, "meters")
  46986. },
  46987. {
  46988. name: "Megamacro",
  46989. height: math.unit(21600, "meters")
  46990. },
  46991. {
  46992. name: "Megamacro+",
  46993. height: math.unit(64800, "meters")
  46994. },
  46995. ]
  46996. ))
  46997. characterMakers.push(() => makeCharacter(
  46998. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46999. {
  47000. front: {
  47001. height: math.unit(2, "meters"),
  47002. weight: math.unit(80, "kg"),
  47003. name: "Front",
  47004. image: {
  47005. source: "./media/characters/moka/front.svg",
  47006. extra: 1337/1255,
  47007. bottom: 58/1395
  47008. }
  47009. },
  47010. },
  47011. [
  47012. {
  47013. name: "Micro",
  47014. height: math.unit(15, "cm")
  47015. },
  47016. {
  47017. name: "Normal",
  47018. height: math.unit(2, "meters"),
  47019. default: true
  47020. },
  47021. {
  47022. name: "Macro",
  47023. height: math.unit(20, "meters"),
  47024. },
  47025. ]
  47026. ))
  47027. characterMakers.push(() => makeCharacter(
  47028. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47029. {
  47030. front: {
  47031. height: math.unit(9, "feet"),
  47032. weight: math.unit(240, "lb"),
  47033. name: "Front",
  47034. image: {
  47035. source: "./media/characters/kuzco/front.svg",
  47036. extra: 1593/1487,
  47037. bottom: 32/1625
  47038. }
  47039. },
  47040. side: {
  47041. height: math.unit(9, "feet"),
  47042. weight: math.unit(240, "lb"),
  47043. name: "Side",
  47044. image: {
  47045. source: "./media/characters/kuzco/side.svg",
  47046. extra: 1575/1485,
  47047. bottom: 30/1605
  47048. }
  47049. },
  47050. back: {
  47051. height: math.unit(9, "feet"),
  47052. weight: math.unit(240, "lb"),
  47053. name: "Back",
  47054. image: {
  47055. source: "./media/characters/kuzco/back.svg",
  47056. extra: 1603/1514,
  47057. bottom: 14/1617
  47058. }
  47059. },
  47060. },
  47061. [
  47062. {
  47063. name: "Normal",
  47064. height: math.unit(9, "feet"),
  47065. default: true
  47066. },
  47067. ]
  47068. ))
  47069. characterMakers.push(() => makeCharacter(
  47070. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47071. {
  47072. side: {
  47073. height: math.unit(2, "meters"),
  47074. weight: math.unit(300, "kg"),
  47075. name: "Side",
  47076. image: {
  47077. source: "./media/characters/ceruleus/side.svg",
  47078. extra: 1068/974,
  47079. bottom: 126/1194
  47080. }
  47081. },
  47082. maw: {
  47083. height: math.unit(0.8125, "meter"),
  47084. name: "Maw",
  47085. image: {
  47086. source: "./media/characters/ceruleus/maw.svg"
  47087. }
  47088. },
  47089. },
  47090. [
  47091. {
  47092. name: "Normal",
  47093. height: math.unit(16, "meters"),
  47094. default: true
  47095. },
  47096. ]
  47097. ))
  47098. characterMakers.push(() => makeCharacter(
  47099. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47100. {
  47101. front: {
  47102. height: math.unit(9, "feet"),
  47103. weight: math.unit(500, "kg"),
  47104. name: "Front",
  47105. image: {
  47106. source: "./media/characters/acouya/front.svg",
  47107. extra: 1660/1473,
  47108. bottom: 28/1688
  47109. }
  47110. },
  47111. },
  47112. [
  47113. {
  47114. name: "Normal",
  47115. height: math.unit(9, "feet"),
  47116. default: true
  47117. },
  47118. ]
  47119. ))
  47120. characterMakers.push(() => makeCharacter(
  47121. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47122. {
  47123. front: {
  47124. height: math.unit(5 + 6/12, "feet"),
  47125. weight: math.unit(195, "lb"),
  47126. name: "Front",
  47127. image: {
  47128. source: "./media/characters/vant/front.svg",
  47129. extra: 1396/1320,
  47130. bottom: 20/1416
  47131. }
  47132. },
  47133. back: {
  47134. height: math.unit(5 + 6/12, "feet"),
  47135. weight: math.unit(195, "lb"),
  47136. name: "Back",
  47137. image: {
  47138. source: "./media/characters/vant/back.svg",
  47139. extra: 1396/1320,
  47140. bottom: 20/1416
  47141. }
  47142. },
  47143. maw: {
  47144. height: math.unit(0.75, "feet"),
  47145. name: "Maw",
  47146. image: {
  47147. source: "./media/characters/vant/maw.svg"
  47148. }
  47149. },
  47150. paw: {
  47151. height: math.unit(1.07, "feet"),
  47152. name: "Paw",
  47153. image: {
  47154. source: "./media/characters/vant/paw.svg"
  47155. }
  47156. },
  47157. },
  47158. [
  47159. {
  47160. name: "Micro",
  47161. height: math.unit(0.25, "inches")
  47162. },
  47163. {
  47164. name: "Normal",
  47165. height: math.unit(5 + 6/12, "feet"),
  47166. default: true
  47167. },
  47168. {
  47169. name: "Macro",
  47170. height: math.unit(75, "feet")
  47171. },
  47172. ]
  47173. ))
  47174. characterMakers.push(() => makeCharacter(
  47175. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47176. {
  47177. front: {
  47178. height: math.unit(30, "meters"),
  47179. weight: math.unit(363, "tons"),
  47180. name: "Front",
  47181. image: {
  47182. source: "./media/characters/ahra/front.svg",
  47183. extra: 1914/1814,
  47184. bottom: 46/1960
  47185. }
  47186. },
  47187. },
  47188. [
  47189. {
  47190. name: "Macro",
  47191. height: math.unit(30, "meters"),
  47192. default: true
  47193. },
  47194. ]
  47195. ))
  47196. characterMakers.push(() => makeCharacter(
  47197. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47198. {
  47199. undressed: {
  47200. height: math.unit(2, "m"),
  47201. weight: math.unit(250, "kg"),
  47202. name: "Undressed",
  47203. image: {
  47204. source: "./media/characters/coriander/undressed.svg",
  47205. extra: 1757/1606,
  47206. bottom: 107/1864
  47207. }
  47208. },
  47209. dressed: {
  47210. height: math.unit(2, "m"),
  47211. weight: math.unit(250, "kg"),
  47212. name: "Dressed",
  47213. image: {
  47214. source: "./media/characters/coriander/dressed.svg",
  47215. extra: 1757/1606,
  47216. bottom: 107/1864
  47217. }
  47218. },
  47219. },
  47220. [
  47221. {
  47222. name: "Normal",
  47223. height: math.unit(4, "meters"),
  47224. default: true
  47225. },
  47226. {
  47227. name: "XL",
  47228. height: math.unit(6, "meters")
  47229. },
  47230. {
  47231. name: "XXL",
  47232. height: math.unit(8, "meters")
  47233. },
  47234. ]
  47235. ))
  47236. characterMakers.push(() => makeCharacter(
  47237. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47238. {
  47239. front: {
  47240. height: math.unit(6, "feet"),
  47241. name: "Front",
  47242. image: {
  47243. source: "./media/characters/syrinx/front.svg",
  47244. extra: 1557/1259,
  47245. bottom: 171/1728
  47246. }
  47247. },
  47248. },
  47249. [
  47250. {
  47251. name: "Normal",
  47252. height: math.unit(6 + 3/12, "feet"),
  47253. default: true
  47254. },
  47255. ]
  47256. ))
  47257. characterMakers.push(() => makeCharacter(
  47258. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47259. {
  47260. front: {
  47261. height: math.unit(11 + 6/12, "feet"),
  47262. weight: math.unit(1.5, "tons"),
  47263. name: "Front",
  47264. image: {
  47265. source: "./media/characters/bor/front.svg",
  47266. extra: 1189/1109,
  47267. bottom: 170/1359
  47268. }
  47269. },
  47270. },
  47271. [
  47272. {
  47273. name: "Normal",
  47274. height: math.unit(11 + 6/12, "feet"),
  47275. default: true
  47276. },
  47277. {
  47278. name: "Macro",
  47279. height: math.unit(32 + 9/12, "feet")
  47280. },
  47281. ]
  47282. ))
  47283. characterMakers.push(() => makeCharacter(
  47284. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47285. {
  47286. anthro: {
  47287. height: math.unit(9, "feet"),
  47288. weight: math.unit(2076, "lb"),
  47289. name: "Anthro",
  47290. image: {
  47291. source: "./media/characters/abacus/anthro.svg",
  47292. extra: 1540/1494,
  47293. bottom: 233/1773
  47294. }
  47295. },
  47296. pigeon: {
  47297. height: math.unit(1, "feet"),
  47298. name: "Pigeon",
  47299. image: {
  47300. source: "./media/characters/abacus/pigeon.svg",
  47301. extra: 528/525,
  47302. bottom: 46/574
  47303. }
  47304. },
  47305. },
  47306. [
  47307. {
  47308. name: "Normal",
  47309. height: math.unit(9, "feet"),
  47310. default: true
  47311. },
  47312. ]
  47313. ))
  47314. characterMakers.push(() => makeCharacter(
  47315. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47316. {
  47317. side: {
  47318. height: math.unit(6, "feet"),
  47319. name: "Side",
  47320. image: {
  47321. source: "./media/characters/delkhan/side.svg",
  47322. extra: 1884/1786,
  47323. bottom: 308/2192
  47324. }
  47325. },
  47326. head: {
  47327. height: math.unit(3.38, "feet"),
  47328. name: "Head",
  47329. image: {
  47330. source: "./media/characters/delkhan/head.svg"
  47331. }
  47332. },
  47333. },
  47334. [
  47335. {
  47336. name: "Normal",
  47337. height: math.unit(72, "feet"),
  47338. default: true
  47339. },
  47340. {
  47341. name: "Giant",
  47342. height: math.unit(172, "feet")
  47343. },
  47344. ]
  47345. ))
  47346. characterMakers.push(() => makeCharacter(
  47347. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47348. {
  47349. standing: {
  47350. height: math.unit(6, "feet"),
  47351. name: "Standing",
  47352. image: {
  47353. source: "./media/characters/euchidat/standing.svg",
  47354. extra: 1612/1553,
  47355. bottom: 116/1728
  47356. }
  47357. },
  47358. leaning: {
  47359. height: math.unit(6, "feet"),
  47360. name: "Leaning",
  47361. image: {
  47362. source: "./media/characters/euchidat/leaning.svg",
  47363. extra: 1719/1674,
  47364. bottom: 27/1746
  47365. }
  47366. },
  47367. },
  47368. [
  47369. {
  47370. name: "Normal",
  47371. height: math.unit(175, "feet"),
  47372. default: true
  47373. },
  47374. {
  47375. name: "Megamacro",
  47376. height: math.unit(190, "miles")
  47377. },
  47378. {
  47379. name: "Gigamacro",
  47380. height: math.unit(190000, "miles")
  47381. },
  47382. ]
  47383. ))
  47384. characterMakers.push(() => makeCharacter(
  47385. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47386. {
  47387. front: {
  47388. height: math.unit(6, "feet"),
  47389. weight: math.unit(150, "lb"),
  47390. name: "Front",
  47391. image: {
  47392. source: "./media/characters/rebecca-stack/front.svg",
  47393. extra: 1256/1201,
  47394. bottom: 18/1274
  47395. }
  47396. },
  47397. },
  47398. [
  47399. {
  47400. name: "Normal",
  47401. height: math.unit(5 + 8/12, "feet"),
  47402. default: true
  47403. },
  47404. {
  47405. name: "Demolitionist",
  47406. height: math.unit(200, "feet")
  47407. },
  47408. {
  47409. name: "Out of Control",
  47410. height: math.unit(2, "miles")
  47411. },
  47412. {
  47413. name: "Giga",
  47414. height: math.unit(7200, "miles")
  47415. },
  47416. ]
  47417. ))
  47418. characterMakers.push(() => makeCharacter(
  47419. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47420. {
  47421. front: {
  47422. height: math.unit(6, "feet"),
  47423. weight: math.unit(150, "lb"),
  47424. name: "Front",
  47425. image: {
  47426. source: "./media/characters/jenny-cartwright/front.svg",
  47427. extra: 1384/1376,
  47428. bottom: 58/1442
  47429. }
  47430. },
  47431. },
  47432. [
  47433. {
  47434. name: "Normal",
  47435. height: math.unit(6 + 7/12, "feet"),
  47436. default: true
  47437. },
  47438. {
  47439. name: "Librarian",
  47440. height: math.unit(55, "feet")
  47441. },
  47442. {
  47443. name: "Sightseer",
  47444. height: math.unit(50, "miles")
  47445. },
  47446. {
  47447. name: "Giga",
  47448. height: math.unit(30000, "miles")
  47449. },
  47450. ]
  47451. ))
  47452. characterMakers.push(() => makeCharacter(
  47453. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47454. {
  47455. nude: {
  47456. height: math.unit(8, "feet"),
  47457. weight: math.unit(225, "lb"),
  47458. name: "Nude",
  47459. image: {
  47460. source: "./media/characters/marvy/nude.svg",
  47461. extra: 1900/1683,
  47462. bottom: 89/1989
  47463. }
  47464. },
  47465. dressed: {
  47466. height: math.unit(8, "feet"),
  47467. weight: math.unit(225, "lb"),
  47468. name: "Dressed",
  47469. image: {
  47470. source: "./media/characters/marvy/dressed.svg",
  47471. extra: 1900/1683,
  47472. bottom: 89/1989
  47473. }
  47474. },
  47475. head: {
  47476. height: math.unit(2.85, "feet"),
  47477. name: "Head",
  47478. image: {
  47479. source: "./media/characters/marvy/head.svg"
  47480. }
  47481. },
  47482. },
  47483. [
  47484. {
  47485. name: "Normal",
  47486. height: math.unit(8, "feet"),
  47487. default: true
  47488. },
  47489. ]
  47490. ))
  47491. characterMakers.push(() => makeCharacter(
  47492. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47493. {
  47494. front: {
  47495. height: math.unit(8, "feet"),
  47496. weight: math.unit(250, "lb"),
  47497. name: "Front",
  47498. image: {
  47499. source: "./media/characters/leah/front.svg",
  47500. extra: 1257/1149,
  47501. bottom: 109/1366
  47502. }
  47503. },
  47504. },
  47505. [
  47506. {
  47507. name: "Normal",
  47508. height: math.unit(8, "feet"),
  47509. default: true
  47510. },
  47511. {
  47512. name: "Minimacro",
  47513. height: math.unit(40, "feet")
  47514. },
  47515. {
  47516. name: "Macro",
  47517. height: math.unit(124, "feet")
  47518. },
  47519. {
  47520. name: "Megamacro",
  47521. height: math.unit(850, "feet")
  47522. },
  47523. ]
  47524. ))
  47525. characterMakers.push(() => makeCharacter(
  47526. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47527. {
  47528. side: {
  47529. height: math.unit(13 + 6/12, "feet"),
  47530. weight: math.unit(3200, "lb"),
  47531. name: "Side",
  47532. image: {
  47533. source: "./media/characters/alvir/side.svg",
  47534. extra: 896/589,
  47535. bottom: 26/922
  47536. }
  47537. },
  47538. },
  47539. [
  47540. {
  47541. name: "Normal",
  47542. height: math.unit(13 + 6/12, "feet"),
  47543. default: true
  47544. },
  47545. ]
  47546. ))
  47547. characterMakers.push(() => makeCharacter(
  47548. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47549. {
  47550. front: {
  47551. height: math.unit(5 + 4/12, "feet"),
  47552. weight: math.unit(236, "lb"),
  47553. name: "Front",
  47554. image: {
  47555. source: "./media/characters/zaina-khalil/front.svg",
  47556. extra: 1533/1485,
  47557. bottom: 94/1627
  47558. }
  47559. },
  47560. side: {
  47561. height: math.unit(5 + 4/12, "feet"),
  47562. weight: math.unit(236, "lb"),
  47563. name: "Side",
  47564. image: {
  47565. source: "./media/characters/zaina-khalil/side.svg",
  47566. extra: 1537/1498,
  47567. bottom: 66/1603
  47568. }
  47569. },
  47570. back: {
  47571. height: math.unit(5 + 4/12, "feet"),
  47572. weight: math.unit(236, "lb"),
  47573. name: "Back",
  47574. image: {
  47575. source: "./media/characters/zaina-khalil/back.svg",
  47576. extra: 1546/1494,
  47577. bottom: 89/1635
  47578. }
  47579. },
  47580. },
  47581. [
  47582. {
  47583. name: "Normal",
  47584. height: math.unit(5 + 4/12, "feet"),
  47585. default: true
  47586. },
  47587. ]
  47588. ))
  47589. characterMakers.push(() => makeCharacter(
  47590. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47591. {
  47592. side: {
  47593. height: math.unit(12, "feet"),
  47594. weight: math.unit(4000, "lb"),
  47595. name: "Side",
  47596. image: {
  47597. source: "./media/characters/terry/side.svg",
  47598. extra: 1518/1439,
  47599. bottom: 149/1667
  47600. }
  47601. },
  47602. },
  47603. [
  47604. {
  47605. name: "Normal",
  47606. height: math.unit(12, "feet"),
  47607. default: true
  47608. },
  47609. ]
  47610. ))
  47611. characterMakers.push(() => makeCharacter(
  47612. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47613. {
  47614. front: {
  47615. height: math.unit(12, "feet"),
  47616. weight: math.unit(1500, "lb"),
  47617. name: "Front",
  47618. image: {
  47619. source: "./media/characters/kahea/front.svg",
  47620. extra: 1722/1617,
  47621. bottom: 179/1901
  47622. }
  47623. },
  47624. },
  47625. [
  47626. {
  47627. name: "Normal",
  47628. height: math.unit(12, "feet"),
  47629. default: true
  47630. },
  47631. ]
  47632. ))
  47633. characterMakers.push(() => makeCharacter(
  47634. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47635. {
  47636. demonFront: {
  47637. height: math.unit(36, "feet"),
  47638. name: "Front",
  47639. image: {
  47640. source: "./media/characters/alex-xuria/demon-front.svg",
  47641. extra: 1705/1673,
  47642. bottom: 198/1903
  47643. },
  47644. form: "demon",
  47645. default: true
  47646. },
  47647. demonBack: {
  47648. height: math.unit(36, "feet"),
  47649. name: "Back",
  47650. image: {
  47651. source: "./media/characters/alex-xuria/demon-back.svg",
  47652. extra: 1725/1693,
  47653. bottom: 70/1795
  47654. },
  47655. form: "demon"
  47656. },
  47657. demonHead: {
  47658. height: math.unit(2.14, "meters"),
  47659. name: "Head",
  47660. image: {
  47661. source: "./media/characters/alex-xuria/demon-head.svg"
  47662. },
  47663. form: "demon"
  47664. },
  47665. demonHand: {
  47666. height: math.unit(1.61, "meters"),
  47667. name: "Hand",
  47668. image: {
  47669. source: "./media/characters/alex-xuria/demon-hand.svg"
  47670. },
  47671. form: "demon"
  47672. },
  47673. demonPaw: {
  47674. height: math.unit(1.35, "meters"),
  47675. name: "Paw",
  47676. image: {
  47677. source: "./media/characters/alex-xuria/demon-paw.svg"
  47678. },
  47679. form: "demon"
  47680. },
  47681. demonFoot: {
  47682. height: math.unit(2.2, "meters"),
  47683. name: "Foot",
  47684. image: {
  47685. source: "./media/characters/alex-xuria/demon-foot.svg"
  47686. },
  47687. form: "demon"
  47688. },
  47689. demonCock: {
  47690. height: math.unit(1.74, "meters"),
  47691. name: "Cock",
  47692. image: {
  47693. source: "./media/characters/alex-xuria/demon-cock.svg"
  47694. },
  47695. form: "demon"
  47696. },
  47697. demonTailClosed: {
  47698. height: math.unit(1.47, "meters"),
  47699. name: "Tail (Closed)",
  47700. image: {
  47701. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47702. },
  47703. form: "demon"
  47704. },
  47705. demonTailOpen: {
  47706. height: math.unit(2.85, "meters"),
  47707. name: "Tail (Open)",
  47708. image: {
  47709. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47710. },
  47711. form: "demon"
  47712. },
  47713. incubusFront: {
  47714. height: math.unit(12, "feet"),
  47715. name: "Front",
  47716. image: {
  47717. source: "./media/characters/alex-xuria/incubus-front.svg",
  47718. extra: 1754/1677,
  47719. bottom: 125/1879
  47720. },
  47721. form: "incubus",
  47722. default: true
  47723. },
  47724. incubusBack: {
  47725. height: math.unit(12, "feet"),
  47726. name: "Back",
  47727. image: {
  47728. source: "./media/characters/alex-xuria/incubus-back.svg",
  47729. extra: 1702/1647,
  47730. bottom: 30/1732
  47731. },
  47732. form: "incubus"
  47733. },
  47734. incubusHead: {
  47735. height: math.unit(3.45, "feet"),
  47736. name: "Head",
  47737. image: {
  47738. source: "./media/characters/alex-xuria/incubus-head.svg"
  47739. },
  47740. form: "incubus"
  47741. },
  47742. rabbitFront: {
  47743. height: math.unit(6, "feet"),
  47744. name: "Front",
  47745. image: {
  47746. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47747. extra: 1369/1349,
  47748. bottom: 45/1414
  47749. },
  47750. form: "rabbit",
  47751. default: true
  47752. },
  47753. rabbitSide: {
  47754. height: math.unit(6, "feet"),
  47755. name: "Side",
  47756. image: {
  47757. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47758. extra: 1370/1356,
  47759. bottom: 37/1407
  47760. },
  47761. form: "rabbit"
  47762. },
  47763. rabbitBack: {
  47764. height: math.unit(6, "feet"),
  47765. name: "Back",
  47766. image: {
  47767. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47768. extra: 1375/1358,
  47769. bottom: 43/1418
  47770. },
  47771. form: "rabbit"
  47772. },
  47773. },
  47774. [
  47775. {
  47776. name: "Normal",
  47777. height: math.unit(6, "feet"),
  47778. default: true,
  47779. form: "rabbit"
  47780. },
  47781. {
  47782. name: "Incubus",
  47783. height: math.unit(12, "feet"),
  47784. default: true,
  47785. form: "incubus"
  47786. },
  47787. {
  47788. name: "Demon",
  47789. height: math.unit(36, "feet"),
  47790. default: true,
  47791. form: "demon"
  47792. }
  47793. ],
  47794. {
  47795. "demon": {
  47796. name: "Demon",
  47797. default: true
  47798. },
  47799. "incubus": {
  47800. name: "Incubus",
  47801. },
  47802. "rabbit": {
  47803. name: "Rabbit"
  47804. }
  47805. }
  47806. ))
  47807. characterMakers.push(() => makeCharacter(
  47808. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47809. {
  47810. front: {
  47811. height: math.unit(7 + 5/12, "feet"),
  47812. weight: math.unit(510, "lb"),
  47813. name: "Front",
  47814. image: {
  47815. source: "./media/characters/syrup/front.svg",
  47816. extra: 932/916,
  47817. bottom: 26/958
  47818. }
  47819. },
  47820. },
  47821. [
  47822. {
  47823. name: "Normal",
  47824. height: math.unit(7 + 5/12, "feet"),
  47825. default: true
  47826. },
  47827. {
  47828. name: "Big",
  47829. height: math.unit(50, "feet")
  47830. },
  47831. {
  47832. name: "Macro",
  47833. height: math.unit(300, "feet")
  47834. },
  47835. {
  47836. name: "Megamacro",
  47837. height: math.unit(1, "mile")
  47838. },
  47839. ]
  47840. ))
  47841. characterMakers.push(() => makeCharacter(
  47842. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47843. {
  47844. front: {
  47845. height: math.unit(6 + 9/12, "feet"),
  47846. name: "Front",
  47847. image: {
  47848. source: "./media/characters/zeimne/front.svg",
  47849. extra: 1969/1806,
  47850. bottom: 53/2022
  47851. }
  47852. },
  47853. },
  47854. [
  47855. {
  47856. name: "Normal",
  47857. height: math.unit(6 + 9/12, "feet"),
  47858. default: true
  47859. },
  47860. {
  47861. name: "Giant",
  47862. height: math.unit(550, "feet")
  47863. },
  47864. {
  47865. name: "Mega",
  47866. height: math.unit(3, "miles")
  47867. },
  47868. {
  47869. name: "Giga",
  47870. height: math.unit(250, "miles")
  47871. },
  47872. {
  47873. name: "Tera",
  47874. height: math.unit(1, "AU")
  47875. },
  47876. ]
  47877. ))
  47878. characterMakers.push(() => makeCharacter(
  47879. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47880. {
  47881. front: {
  47882. height: math.unit(5 + 2/12, "feet"),
  47883. name: "Front",
  47884. image: {
  47885. source: "./media/characters/grar/front.svg",
  47886. extra: 1331/1119,
  47887. bottom: 60/1391
  47888. }
  47889. },
  47890. back: {
  47891. height: math.unit(5 + 2/12, "feet"),
  47892. name: "Back",
  47893. image: {
  47894. source: "./media/characters/grar/back.svg",
  47895. extra: 1385/1169,
  47896. bottom: 23/1408
  47897. }
  47898. },
  47899. },
  47900. [
  47901. {
  47902. name: "Normal",
  47903. height: math.unit(5 + 2/12, "feet"),
  47904. default: true
  47905. },
  47906. ]
  47907. ))
  47908. characterMakers.push(() => makeCharacter(
  47909. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47910. {
  47911. front: {
  47912. height: math.unit(13 + 7/12, "feet"),
  47913. weight: math.unit(2200, "lb"),
  47914. name: "Front",
  47915. image: {
  47916. source: "./media/characters/endraya/front.svg",
  47917. extra: 1289/1215,
  47918. bottom: 50/1339
  47919. }
  47920. },
  47921. nude: {
  47922. height: math.unit(13 + 7/12, "feet"),
  47923. weight: math.unit(2200, "lb"),
  47924. name: "Nude",
  47925. image: {
  47926. source: "./media/characters/endraya/nude.svg",
  47927. extra: 1247/1171,
  47928. bottom: 40/1287
  47929. }
  47930. },
  47931. head: {
  47932. height: math.unit(2.6, "feet"),
  47933. name: "Head",
  47934. image: {
  47935. source: "./media/characters/endraya/head.svg"
  47936. }
  47937. },
  47938. slit: {
  47939. height: math.unit(3.4, "feet"),
  47940. name: "Slit",
  47941. image: {
  47942. source: "./media/characters/endraya/slit.svg"
  47943. }
  47944. },
  47945. },
  47946. [
  47947. {
  47948. name: "Normal",
  47949. height: math.unit(13 + 7/12, "feet"),
  47950. default: true
  47951. },
  47952. {
  47953. name: "Macro",
  47954. height: math.unit(200, "feet")
  47955. },
  47956. ]
  47957. ))
  47958. characterMakers.push(() => makeCharacter(
  47959. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47960. {
  47961. front: {
  47962. height: math.unit(1.81, "meters"),
  47963. weight: math.unit(69, "kg"),
  47964. name: "Front",
  47965. image: {
  47966. source: "./media/characters/rodryana/front.svg",
  47967. extra: 2002/1921,
  47968. bottom: 53/2055
  47969. }
  47970. },
  47971. back: {
  47972. height: math.unit(1.81, "meters"),
  47973. weight: math.unit(69, "kg"),
  47974. name: "Back",
  47975. image: {
  47976. source: "./media/characters/rodryana/back.svg",
  47977. extra: 1993/1926,
  47978. bottom: 48/2041
  47979. }
  47980. },
  47981. maw: {
  47982. height: math.unit(0.19769417475, "meters"),
  47983. name: "Maw",
  47984. image: {
  47985. source: "./media/characters/rodryana/maw.svg"
  47986. }
  47987. },
  47988. slit: {
  47989. height: math.unit(0.31631067961, "meters"),
  47990. name: "Slit",
  47991. image: {
  47992. source: "./media/characters/rodryana/slit.svg"
  47993. }
  47994. },
  47995. },
  47996. [
  47997. {
  47998. name: "Normal",
  47999. height: math.unit(1.81, "meters")
  48000. },
  48001. {
  48002. name: "Mini Macro",
  48003. height: math.unit(181, "meters")
  48004. },
  48005. {
  48006. name: "Macro",
  48007. height: math.unit(452, "meters"),
  48008. default: true
  48009. },
  48010. {
  48011. name: "Mega Macro",
  48012. height: math.unit(1.375, "km")
  48013. },
  48014. {
  48015. name: "Giga Macro",
  48016. height: math.unit(13.575, "km")
  48017. },
  48018. ]
  48019. ))
  48020. characterMakers.push(() => makeCharacter(
  48021. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48022. {
  48023. front: {
  48024. height: math.unit(6, "feet"),
  48025. weight: math.unit(1000, "lb"),
  48026. name: "Front",
  48027. image: {
  48028. source: "./media/characters/asaya/front.svg",
  48029. extra: 1460/1200,
  48030. bottom: 71/1531
  48031. }
  48032. },
  48033. },
  48034. [
  48035. {
  48036. name: "Normal",
  48037. height: math.unit(8, "km"),
  48038. default: true
  48039. },
  48040. ]
  48041. ))
  48042. characterMakers.push(() => makeCharacter(
  48043. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48044. {
  48045. front: {
  48046. height: math.unit(3.5, "meters"),
  48047. name: "Front",
  48048. image: {
  48049. source: "./media/characters/sarzu-and-israz/front.svg",
  48050. extra: 1570/1558,
  48051. bottom: 150/1720
  48052. },
  48053. },
  48054. back: {
  48055. height: math.unit(3.5, "meters"),
  48056. name: "Back",
  48057. image: {
  48058. source: "./media/characters/sarzu-and-israz/back.svg",
  48059. extra: 1523/1509,
  48060. bottom: 132/1655
  48061. },
  48062. },
  48063. frontFemale: {
  48064. height: math.unit(3.5, "meters"),
  48065. name: "Front (Female)",
  48066. image: {
  48067. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48068. extra: 1570/1558,
  48069. bottom: 150/1720
  48070. },
  48071. },
  48072. frontHerm: {
  48073. height: math.unit(3.5, "meters"),
  48074. name: "Front (Herm)",
  48075. image: {
  48076. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48077. extra: 1570/1558,
  48078. bottom: 150/1720
  48079. },
  48080. },
  48081. },
  48082. [
  48083. {
  48084. name: "Normal",
  48085. height: math.unit(3.5, "meters"),
  48086. default: true,
  48087. },
  48088. {
  48089. name: "Macro",
  48090. height: math.unit(65.5, "meters"),
  48091. },
  48092. ],
  48093. ))
  48094. characterMakers.push(() => makeCharacter(
  48095. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48096. {
  48097. front: {
  48098. height: math.unit(6, "feet"),
  48099. weight: math.unit(250, "lb"),
  48100. name: "Front",
  48101. image: {
  48102. source: "./media/characters/zenimma/front.svg",
  48103. extra: 1346/1320,
  48104. bottom: 58/1404
  48105. }
  48106. },
  48107. back: {
  48108. height: math.unit(6, "feet"),
  48109. weight: math.unit(250, "lb"),
  48110. name: "Back",
  48111. image: {
  48112. source: "./media/characters/zenimma/back.svg",
  48113. extra: 1324/1308,
  48114. bottom: 44/1368
  48115. }
  48116. },
  48117. dick: {
  48118. height: math.unit(1.44, "feet"),
  48119. name: "Dick",
  48120. image: {
  48121. source: "./media/characters/zenimma/dick.svg"
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Canon Height",
  48128. height: math.unit(66, "miles"),
  48129. default: true
  48130. },
  48131. ]
  48132. ))
  48133. characterMakers.push(() => makeCharacter(
  48134. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48135. {
  48136. nude: {
  48137. height: math.unit(6, "feet"),
  48138. weight: math.unit(150, "lb"),
  48139. name: "Nude",
  48140. image: {
  48141. source: "./media/characters/shavon/nude.svg",
  48142. extra: 1242/1096,
  48143. bottom: 98/1340
  48144. }
  48145. },
  48146. dressed: {
  48147. height: math.unit(6, "feet"),
  48148. weight: math.unit(150, "lb"),
  48149. name: "Dressed",
  48150. image: {
  48151. source: "./media/characters/shavon/dressed.svg",
  48152. extra: 1242/1096,
  48153. bottom: 98/1340
  48154. }
  48155. },
  48156. },
  48157. [
  48158. {
  48159. name: "Macro",
  48160. height: math.unit(255, "feet"),
  48161. default: true
  48162. },
  48163. ]
  48164. ))
  48165. characterMakers.push(() => makeCharacter(
  48166. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48167. {
  48168. front: {
  48169. height: math.unit(6, "feet"),
  48170. name: "Front",
  48171. image: {
  48172. source: "./media/characters/steph/front.svg",
  48173. extra: 1430/1330,
  48174. bottom: 54/1484
  48175. }
  48176. },
  48177. },
  48178. [
  48179. {
  48180. name: "Normal",
  48181. height: math.unit(6, "feet"),
  48182. default: true
  48183. },
  48184. ]
  48185. ))
  48186. characterMakers.push(() => makeCharacter(
  48187. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48188. {
  48189. front: {
  48190. height: math.unit(9, "feet"),
  48191. weight: math.unit(400, "lb"),
  48192. name: "Front",
  48193. image: {
  48194. source: "./media/characters/kil'aman/front.svg",
  48195. extra: 1210/1159,
  48196. bottom: 109/1319
  48197. }
  48198. },
  48199. head: {
  48200. height: math.unit(2.14, "feet"),
  48201. name: "Head",
  48202. image: {
  48203. source: "./media/characters/kil'aman/head.svg"
  48204. }
  48205. },
  48206. maw: {
  48207. height: math.unit(1.21, "feet"),
  48208. name: "Maw",
  48209. image: {
  48210. source: "./media/characters/kil'aman/maw.svg"
  48211. }
  48212. },
  48213. foot: {
  48214. height: math.unit(1.7, "feet"),
  48215. name: "Foot",
  48216. image: {
  48217. source: "./media/characters/kil'aman/foot.svg"
  48218. }
  48219. },
  48220. dick: {
  48221. height: math.unit(2.1, "feet"),
  48222. name: "Dick",
  48223. image: {
  48224. source: "./media/characters/kil'aman/dick.svg"
  48225. }
  48226. },
  48227. },
  48228. [
  48229. {
  48230. name: "Normal",
  48231. height: math.unit(9, "feet")
  48232. },
  48233. {
  48234. name: "Canon Height",
  48235. height: math.unit(10, "miles"),
  48236. default: true
  48237. },
  48238. {
  48239. name: "Maximum",
  48240. height: math.unit(6e9, "miles")
  48241. },
  48242. ]
  48243. ))
  48244. characterMakers.push(() => makeCharacter(
  48245. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48246. {
  48247. front: {
  48248. height: math.unit(90, "feet"),
  48249. weight: math.unit(675000, "lb"),
  48250. name: "Front",
  48251. image: {
  48252. source: "./media/characters/qadan/front.svg",
  48253. extra: 1012/1004,
  48254. bottom: 78/1090
  48255. }
  48256. },
  48257. back: {
  48258. height: math.unit(90, "feet"),
  48259. weight: math.unit(675000, "lb"),
  48260. name: "Back",
  48261. image: {
  48262. source: "./media/characters/qadan/back.svg",
  48263. extra: 1042/1031,
  48264. bottom: 55/1097
  48265. }
  48266. },
  48267. armored: {
  48268. height: math.unit(90, "feet"),
  48269. weight: math.unit(675000, "lb"),
  48270. name: "Armored",
  48271. image: {
  48272. source: "./media/characters/qadan/armored.svg",
  48273. extra: 1047/1037,
  48274. bottom: 48/1095
  48275. }
  48276. },
  48277. },
  48278. [
  48279. {
  48280. name: "Normal",
  48281. height: math.unit(90, "feet"),
  48282. default: true
  48283. },
  48284. ]
  48285. ))
  48286. characterMakers.push(() => makeCharacter(
  48287. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48288. {
  48289. front: {
  48290. height: math.unit(6, "feet"),
  48291. weight: math.unit(225, "lb"),
  48292. name: "Front",
  48293. image: {
  48294. source: "./media/characters/brooke/front.svg",
  48295. extra: 1050/1010,
  48296. bottom: 66/1116
  48297. }
  48298. },
  48299. back: {
  48300. height: math.unit(6, "feet"),
  48301. weight: math.unit(225, "lb"),
  48302. name: "Back",
  48303. image: {
  48304. source: "./media/characters/brooke/back.svg",
  48305. extra: 1053/1013,
  48306. bottom: 41/1094
  48307. }
  48308. },
  48309. dressed: {
  48310. height: math.unit(6, "feet"),
  48311. weight: math.unit(225, "lb"),
  48312. name: "Dressed",
  48313. image: {
  48314. source: "./media/characters/brooke/dressed.svg",
  48315. extra: 1050/1010,
  48316. bottom: 66/1116
  48317. }
  48318. },
  48319. },
  48320. [
  48321. {
  48322. name: "Canon Height",
  48323. height: math.unit(500, "miles"),
  48324. default: true
  48325. },
  48326. ]
  48327. ))
  48328. characterMakers.push(() => makeCharacter(
  48329. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48330. {
  48331. front: {
  48332. height: math.unit(6 + 2/12, "feet"),
  48333. weight: math.unit(210, "lb"),
  48334. name: "Front",
  48335. image: {
  48336. source: "./media/characters/wubs/front.svg",
  48337. extra: 1345/1325,
  48338. bottom: 70/1415
  48339. }
  48340. },
  48341. back: {
  48342. height: math.unit(6 + 2/12, "feet"),
  48343. weight: math.unit(210, "lb"),
  48344. name: "Back",
  48345. image: {
  48346. source: "./media/characters/wubs/back.svg",
  48347. extra: 1296/1275,
  48348. bottom: 58/1354
  48349. }
  48350. },
  48351. },
  48352. [
  48353. {
  48354. name: "Normal",
  48355. height: math.unit(6 + 2/12, "feet"),
  48356. default: true
  48357. },
  48358. {
  48359. name: "Macro",
  48360. height: math.unit(1000, "feet")
  48361. },
  48362. {
  48363. name: "Megamacro",
  48364. height: math.unit(1, "mile")
  48365. },
  48366. ]
  48367. ))
  48368. characterMakers.push(() => makeCharacter(
  48369. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48370. {
  48371. front: {
  48372. height: math.unit(4, "feet"),
  48373. weight: math.unit(120, "lb"),
  48374. name: "Front",
  48375. image: {
  48376. source: "./media/characters/blue/front.svg",
  48377. extra: 1636/1525,
  48378. bottom: 43/1679
  48379. }
  48380. },
  48381. back: {
  48382. height: math.unit(4, "feet"),
  48383. weight: math.unit(120, "lb"),
  48384. name: "Back",
  48385. image: {
  48386. source: "./media/characters/blue/back.svg",
  48387. extra: 1660/1560,
  48388. bottom: 57/1717
  48389. }
  48390. },
  48391. paws: {
  48392. height: math.unit(0.826, "feet"),
  48393. name: "Paws",
  48394. image: {
  48395. source: "./media/characters/blue/paws.svg"
  48396. }
  48397. },
  48398. },
  48399. [
  48400. {
  48401. name: "Micro",
  48402. height: math.unit(3, "inches")
  48403. },
  48404. {
  48405. name: "Normal",
  48406. height: math.unit(4, "feet"),
  48407. default: true
  48408. },
  48409. {
  48410. name: "Femenine Form",
  48411. height: math.unit(14, "feet")
  48412. },
  48413. {
  48414. name: "Werebat Form",
  48415. height: math.unit(18, "feet")
  48416. },
  48417. ]
  48418. ))
  48419. characterMakers.push(() => makeCharacter(
  48420. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48421. {
  48422. female: {
  48423. height: math.unit(7 + 4/12, "feet"),
  48424. weight: math.unit(243, "lb"),
  48425. name: "Female",
  48426. image: {
  48427. source: "./media/characters/kaya/female.svg",
  48428. extra: 975/898,
  48429. bottom: 34/1009
  48430. }
  48431. },
  48432. herm: {
  48433. height: math.unit(7 + 4/12, "feet"),
  48434. weight: math.unit(243, "lb"),
  48435. name: "Herm",
  48436. image: {
  48437. source: "./media/characters/kaya/herm.svg",
  48438. extra: 975/898,
  48439. bottom: 34/1009
  48440. }
  48441. },
  48442. },
  48443. [
  48444. {
  48445. name: "Normal",
  48446. height: math.unit(7 + 4/12, "feet"),
  48447. default: true
  48448. },
  48449. ]
  48450. ))
  48451. characterMakers.push(() => makeCharacter(
  48452. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48453. {
  48454. female: {
  48455. height: math.unit(9 + 4/12, "feet"),
  48456. weight: math.unit(398, "lb"),
  48457. name: "Female",
  48458. image: {
  48459. source: "./media/characters/kassandra/female.svg",
  48460. extra: 908/839,
  48461. bottom: 61/969
  48462. }
  48463. },
  48464. intersex: {
  48465. height: math.unit(9 + 4/12, "feet"),
  48466. weight: math.unit(398, "lb"),
  48467. name: "Intersex",
  48468. image: {
  48469. source: "./media/characters/kassandra/intersex.svg",
  48470. extra: 908/839,
  48471. bottom: 61/969
  48472. }
  48473. },
  48474. },
  48475. [
  48476. {
  48477. name: "Normal",
  48478. height: math.unit(9 + 4/12, "feet"),
  48479. default: true
  48480. },
  48481. ]
  48482. ))
  48483. characterMakers.push(() => makeCharacter(
  48484. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48485. {
  48486. front: {
  48487. height: math.unit(3, "meters"),
  48488. name: "Front",
  48489. image: {
  48490. source: "./media/characters/amy/front.svg",
  48491. extra: 1380/1343,
  48492. bottom: 70/1450
  48493. }
  48494. },
  48495. back: {
  48496. height: math.unit(3, "meters"),
  48497. name: "Back",
  48498. image: {
  48499. source: "./media/characters/amy/back.svg",
  48500. extra: 1380/1347,
  48501. bottom: 66/1446
  48502. }
  48503. },
  48504. },
  48505. [
  48506. {
  48507. name: "Normal",
  48508. height: math.unit(3, "meters"),
  48509. default: true
  48510. },
  48511. ]
  48512. ))
  48513. characterMakers.push(() => makeCharacter(
  48514. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48515. {
  48516. side: {
  48517. height: math.unit(47, "cm"),
  48518. weight: math.unit(10.8, "kg"),
  48519. name: "Side",
  48520. image: {
  48521. source: "./media/characters/alphaschakal/side.svg",
  48522. extra: 1058/568,
  48523. bottom: 62/1120
  48524. }
  48525. },
  48526. back: {
  48527. height: math.unit(78, "cm"),
  48528. weight: math.unit(10.8, "kg"),
  48529. name: "Back",
  48530. image: {
  48531. source: "./media/characters/alphaschakal/back.svg",
  48532. extra: 1102/942,
  48533. bottom: 185/1287
  48534. }
  48535. },
  48536. head: {
  48537. height: math.unit(28, "cm"),
  48538. name: "Head",
  48539. image: {
  48540. source: "./media/characters/alphaschakal/head.svg",
  48541. extra: 696/508,
  48542. bottom: 0/696
  48543. }
  48544. },
  48545. paw: {
  48546. height: math.unit(16, "cm"),
  48547. name: "Paw",
  48548. image: {
  48549. source: "./media/characters/alphaschakal/paw.svg"
  48550. }
  48551. },
  48552. },
  48553. [
  48554. {
  48555. name: "Normal",
  48556. height: math.unit(47, "cm"),
  48557. default: true
  48558. },
  48559. {
  48560. name: "Macro",
  48561. height: math.unit(340, "cm")
  48562. },
  48563. ]
  48564. ))
  48565. characterMakers.push(() => makeCharacter(
  48566. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48567. {
  48568. front: {
  48569. height: math.unit(36, "earths"),
  48570. name: "Front",
  48571. image: {
  48572. source: "./media/characters/ecobyss/front.svg",
  48573. extra: 1282/1215,
  48574. bottom: 11/1293
  48575. }
  48576. },
  48577. back: {
  48578. height: math.unit(36, "earths"),
  48579. name: "Back",
  48580. image: {
  48581. source: "./media/characters/ecobyss/back.svg",
  48582. extra: 1291/1222,
  48583. bottom: 8/1299
  48584. }
  48585. },
  48586. },
  48587. [
  48588. {
  48589. name: "Normal",
  48590. height: math.unit(36, "earths"),
  48591. default: true
  48592. },
  48593. ]
  48594. ))
  48595. characterMakers.push(() => makeCharacter(
  48596. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48597. {
  48598. front: {
  48599. height: math.unit(12, "feet"),
  48600. name: "Front",
  48601. image: {
  48602. source: "./media/characters/vasuk/front.svg",
  48603. extra: 1326/1207,
  48604. bottom: 64/1390
  48605. }
  48606. },
  48607. },
  48608. [
  48609. {
  48610. name: "Normal",
  48611. height: math.unit(12, "feet"),
  48612. default: true
  48613. },
  48614. ]
  48615. ))
  48616. characterMakers.push(() => makeCharacter(
  48617. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48618. {
  48619. side: {
  48620. height: math.unit(100, "feet"),
  48621. name: "Side",
  48622. image: {
  48623. source: "./media/characters/linneaus/side.svg",
  48624. extra: 987/807,
  48625. bottom: 47/1034
  48626. }
  48627. },
  48628. },
  48629. [
  48630. {
  48631. name: "Macro",
  48632. height: math.unit(100, "feet"),
  48633. default: true
  48634. },
  48635. ]
  48636. ))
  48637. characterMakers.push(() => makeCharacter(
  48638. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48639. {
  48640. front: {
  48641. height: math.unit(8, "feet"),
  48642. weight: math.unit(1200, "lb"),
  48643. name: "Front",
  48644. image: {
  48645. source: "./media/characters/nyterious-daligdig/front.svg",
  48646. extra: 1284/1094,
  48647. bottom: 84/1368
  48648. }
  48649. },
  48650. back: {
  48651. height: math.unit(8, "feet"),
  48652. weight: math.unit(1200, "lb"),
  48653. name: "Back",
  48654. image: {
  48655. source: "./media/characters/nyterious-daligdig/back.svg",
  48656. extra: 1301/1121,
  48657. bottom: 129/1430
  48658. }
  48659. },
  48660. mouth: {
  48661. height: math.unit(1.464, "feet"),
  48662. name: "Mouth",
  48663. image: {
  48664. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48665. }
  48666. },
  48667. },
  48668. [
  48669. {
  48670. name: "Small",
  48671. height: math.unit(8, "feet"),
  48672. default: true
  48673. },
  48674. {
  48675. name: "Normal",
  48676. height: math.unit(15, "feet")
  48677. },
  48678. {
  48679. name: "Macro",
  48680. height: math.unit(90, "feet")
  48681. },
  48682. ]
  48683. ))
  48684. characterMakers.push(() => makeCharacter(
  48685. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48686. {
  48687. front: {
  48688. height: math.unit(7 + 4/12, "feet"),
  48689. weight: math.unit(252, "lb"),
  48690. name: "Front",
  48691. image: {
  48692. source: "./media/characters/bandel/front.svg",
  48693. extra: 1946/1775,
  48694. bottom: 26/1972
  48695. }
  48696. },
  48697. back: {
  48698. height: math.unit(7 + 4/12, "feet"),
  48699. weight: math.unit(252, "lb"),
  48700. name: "Back",
  48701. image: {
  48702. source: "./media/characters/bandel/back.svg",
  48703. extra: 1940/1770,
  48704. bottom: 25/1965
  48705. }
  48706. },
  48707. maw: {
  48708. height: math.unit(2.15, "feet"),
  48709. name: "Maw",
  48710. image: {
  48711. source: "./media/characters/bandel/maw.svg"
  48712. }
  48713. },
  48714. stomach: {
  48715. height: math.unit(1.95, "feet"),
  48716. name: "Stomach",
  48717. image: {
  48718. source: "./media/characters/bandel/stomach.svg"
  48719. }
  48720. },
  48721. },
  48722. [
  48723. {
  48724. name: "Normal",
  48725. height: math.unit(7 + 4/12, "feet"),
  48726. default: true
  48727. },
  48728. ]
  48729. ))
  48730. characterMakers.push(() => makeCharacter(
  48731. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48732. {
  48733. front: {
  48734. height: math.unit(10 + 5/12, "feet"),
  48735. weight: math.unit(773.5, "kg"),
  48736. name: "Front",
  48737. image: {
  48738. source: "./media/characters/zed/front.svg",
  48739. extra: 987/941,
  48740. bottom: 52/1039
  48741. }
  48742. },
  48743. },
  48744. [
  48745. {
  48746. name: "Short",
  48747. height: math.unit(5 + 4/12, "feet")
  48748. },
  48749. {
  48750. name: "Average",
  48751. height: math.unit(10 + 5/12, "feet"),
  48752. default: true
  48753. },
  48754. {
  48755. name: "Mini-Macro",
  48756. height: math.unit(24 + 9/12, "feet")
  48757. },
  48758. {
  48759. name: "Macro",
  48760. height: math.unit(249, "feet")
  48761. },
  48762. {
  48763. name: "Mega-Macro",
  48764. height: math.unit(12490, "feet")
  48765. },
  48766. {
  48767. name: "Giga-Macro",
  48768. height: math.unit(24.9, "miles")
  48769. },
  48770. {
  48771. name: "Tera-Macro",
  48772. height: math.unit(24900, "miles")
  48773. },
  48774. {
  48775. name: "Cosmic Scale",
  48776. height: math.unit(38.9, "lightyears")
  48777. },
  48778. {
  48779. name: "Universal Scale",
  48780. height: math.unit(138e12, "lightyears")
  48781. },
  48782. ]
  48783. ))
  48784. characterMakers.push(() => makeCharacter(
  48785. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48786. {
  48787. front: {
  48788. height: math.unit(1561, "inches"),
  48789. name: "Front",
  48790. image: {
  48791. source: "./media/characters/ivan/front.svg",
  48792. extra: 1126/1071,
  48793. bottom: 26/1152
  48794. }
  48795. },
  48796. back: {
  48797. height: math.unit(1561, "inches"),
  48798. name: "Back",
  48799. image: {
  48800. source: "./media/characters/ivan/back.svg",
  48801. extra: 1134/1079,
  48802. bottom: 30/1164
  48803. }
  48804. },
  48805. },
  48806. [
  48807. {
  48808. name: "Normal",
  48809. height: math.unit(1561, "inches"),
  48810. default: true
  48811. },
  48812. ]
  48813. ))
  48814. characterMakers.push(() => makeCharacter(
  48815. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48816. {
  48817. front: {
  48818. height: math.unit(5 + 7/12, "feet"),
  48819. weight: math.unit(150, "lb"),
  48820. name: "Front",
  48821. image: {
  48822. source: "./media/characters/robin-arctic-hare/front.svg",
  48823. extra: 1148/974,
  48824. bottom: 20/1168
  48825. }
  48826. },
  48827. },
  48828. [
  48829. {
  48830. name: "Normal",
  48831. height: math.unit(5 + 7/12, "feet"),
  48832. default: true
  48833. },
  48834. ]
  48835. ))
  48836. characterMakers.push(() => makeCharacter(
  48837. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48838. {
  48839. side: {
  48840. height: math.unit(5, "feet"),
  48841. name: "Side",
  48842. image: {
  48843. source: "./media/characters/birch/side.svg",
  48844. extra: 985/796,
  48845. bottom: 111/1096
  48846. }
  48847. },
  48848. },
  48849. [
  48850. {
  48851. name: "Normal",
  48852. height: math.unit(5, "feet"),
  48853. default: true
  48854. },
  48855. ]
  48856. ))
  48857. characterMakers.push(() => makeCharacter(
  48858. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48859. {
  48860. front: {
  48861. height: math.unit(4, "feet"),
  48862. name: "Front",
  48863. image: {
  48864. source: "./media/characters/rasp/front.svg",
  48865. extra: 561/478,
  48866. bottom: 74/635
  48867. }
  48868. },
  48869. },
  48870. [
  48871. {
  48872. name: "Normal",
  48873. height: math.unit(4, "feet"),
  48874. default: true
  48875. },
  48876. ]
  48877. ))
  48878. characterMakers.push(() => makeCharacter(
  48879. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48880. {
  48881. front: {
  48882. height: math.unit(4 + 6/12, "feet"),
  48883. name: "Front",
  48884. image: {
  48885. source: "./media/characters/agatha/front.svg",
  48886. extra: 947/933,
  48887. bottom: 42/989
  48888. }
  48889. },
  48890. back: {
  48891. height: math.unit(4 + 6/12, "feet"),
  48892. name: "Back",
  48893. image: {
  48894. source: "./media/characters/agatha/back.svg",
  48895. extra: 935/922,
  48896. bottom: 48/983
  48897. }
  48898. },
  48899. },
  48900. [
  48901. {
  48902. name: "Normal",
  48903. height: math.unit(4 + 6 /12, "feet"),
  48904. default: true
  48905. },
  48906. {
  48907. name: "Max Size",
  48908. height: math.unit(500, "feet")
  48909. },
  48910. ]
  48911. ))
  48912. characterMakers.push(() => makeCharacter(
  48913. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48914. {
  48915. side: {
  48916. height: math.unit(30, "feet"),
  48917. name: "Side",
  48918. image: {
  48919. source: "./media/characters/roggy/side.svg",
  48920. extra: 909/643,
  48921. bottom: 63/972
  48922. }
  48923. },
  48924. lounging: {
  48925. height: math.unit(20, "feet"),
  48926. name: "Lounging",
  48927. image: {
  48928. source: "./media/characters/roggy/lounging.svg",
  48929. extra: 643/479,
  48930. bottom: 145/788
  48931. }
  48932. },
  48933. handpaw: {
  48934. height: math.unit(13.1, "feet"),
  48935. name: "Handpaw",
  48936. image: {
  48937. source: "./media/characters/roggy/handpaw.svg"
  48938. }
  48939. },
  48940. footpaw: {
  48941. height: math.unit(15.8, "feet"),
  48942. name: "Footpaw",
  48943. image: {
  48944. source: "./media/characters/roggy/footpaw.svg"
  48945. }
  48946. },
  48947. },
  48948. [
  48949. {
  48950. name: "Menacing",
  48951. height: math.unit(30, "feet"),
  48952. default: true
  48953. },
  48954. ]
  48955. ))
  48956. characterMakers.push(() => makeCharacter(
  48957. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48958. {
  48959. front: {
  48960. height: math.unit(5 + 7/12, "feet"),
  48961. weight: math.unit(135, "lb"),
  48962. name: "Front",
  48963. image: {
  48964. source: "./media/characters/naomi/front.svg",
  48965. extra: 1209/1154,
  48966. bottom: 129/1338
  48967. }
  48968. },
  48969. back: {
  48970. height: math.unit(5 + 7/12, "feet"),
  48971. weight: math.unit(135, "lb"),
  48972. name: "Back",
  48973. image: {
  48974. source: "./media/characters/naomi/back.svg",
  48975. extra: 1252/1190,
  48976. bottom: 23/1275
  48977. }
  48978. },
  48979. },
  48980. [
  48981. {
  48982. name: "Normal",
  48983. height: math.unit(5 + 7 /12, "feet"),
  48984. default: true
  48985. },
  48986. ]
  48987. ))
  48988. characterMakers.push(() => makeCharacter(
  48989. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48990. {
  48991. side: {
  48992. height: math.unit(35, "meters"),
  48993. name: "Side",
  48994. image: {
  48995. source: "./media/characters/kimpi/side.svg",
  48996. extra: 419/382,
  48997. bottom: 63/482
  48998. }
  48999. },
  49000. hand: {
  49001. height: math.unit(8.96, "meters"),
  49002. name: "Hand",
  49003. image: {
  49004. source: "./media/characters/kimpi/hand.svg"
  49005. }
  49006. },
  49007. },
  49008. [
  49009. {
  49010. name: "Normal",
  49011. height: math.unit(35, "meters"),
  49012. default: true
  49013. },
  49014. ]
  49015. ))
  49016. characterMakers.push(() => makeCharacter(
  49017. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49018. {
  49019. front: {
  49020. height: math.unit(4 + 4/12, "feet"),
  49021. name: "Front",
  49022. image: {
  49023. source: "./media/characters/pepper-purrloin/front.svg",
  49024. extra: 1141/1024,
  49025. bottom: 21/1162
  49026. }
  49027. },
  49028. },
  49029. [
  49030. {
  49031. name: "Normal",
  49032. height: math.unit(4 + 4/12, "feet"),
  49033. default: true
  49034. },
  49035. ]
  49036. ))
  49037. characterMakers.push(() => makeCharacter(
  49038. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49039. {
  49040. front: {
  49041. height: math.unit(6 + 2/12, "feet"),
  49042. name: "Front",
  49043. image: {
  49044. source: "./media/characters/raphael/front.svg",
  49045. extra: 1101/962,
  49046. bottom: 59/1160
  49047. }
  49048. },
  49049. },
  49050. [
  49051. {
  49052. name: "Normal",
  49053. height: math.unit(6 + 2/12, "feet"),
  49054. default: true
  49055. },
  49056. ]
  49057. ))
  49058. characterMakers.push(() => makeCharacter(
  49059. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49060. {
  49061. front: {
  49062. height: math.unit(6, "feet"),
  49063. weight: math.unit(150, "lb"),
  49064. name: "Front",
  49065. image: {
  49066. source: "./media/characters/victor-williams/front.svg",
  49067. extra: 1894/1825,
  49068. bottom: 67/1961
  49069. }
  49070. },
  49071. },
  49072. [
  49073. {
  49074. name: "Normal",
  49075. height: math.unit(6, "feet"),
  49076. default: true
  49077. },
  49078. ]
  49079. ))
  49080. characterMakers.push(() => makeCharacter(
  49081. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49082. {
  49083. front: {
  49084. height: math.unit(5 + 8/12, "feet"),
  49085. weight: math.unit(150, "lb"),
  49086. name: "Front",
  49087. image: {
  49088. source: "./media/characters/rachel/front.svg",
  49089. extra: 1902/1787,
  49090. bottom: 46/1948
  49091. }
  49092. },
  49093. },
  49094. [
  49095. {
  49096. name: "Base Height",
  49097. height: math.unit(5 + 8/12, "feet"),
  49098. default: true
  49099. },
  49100. {
  49101. name: "Macro",
  49102. height: math.unit(200, "feet")
  49103. },
  49104. {
  49105. name: "Mega Macro",
  49106. height: math.unit(1, "mile")
  49107. },
  49108. {
  49109. name: "Giga Macro",
  49110. height: math.unit(1500, "miles")
  49111. },
  49112. {
  49113. name: "Tera Macro",
  49114. height: math.unit(8000, "miles")
  49115. },
  49116. {
  49117. name: "Tera Macro+",
  49118. height: math.unit(2e5, "miles")
  49119. },
  49120. ]
  49121. ))
  49122. characterMakers.push(() => makeCharacter(
  49123. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49124. {
  49125. front: {
  49126. height: math.unit(6.5, "feet"),
  49127. name: "Front",
  49128. image: {
  49129. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49130. extra: 860/819,
  49131. bottom: 307/1167
  49132. }
  49133. },
  49134. back: {
  49135. height: math.unit(6.5, "feet"),
  49136. name: "Back",
  49137. image: {
  49138. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49139. extra: 880/837,
  49140. bottom: 395/1275
  49141. }
  49142. },
  49143. sleeping: {
  49144. height: math.unit(2.79, "feet"),
  49145. name: "Sleeping",
  49146. image: {
  49147. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49148. extra: 465/383,
  49149. bottom: 263/728
  49150. }
  49151. },
  49152. maw: {
  49153. height: math.unit(2.52, "feet"),
  49154. name: "Maw",
  49155. image: {
  49156. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49157. }
  49158. },
  49159. },
  49160. [
  49161. {
  49162. name: "Normal",
  49163. height: math.unit(6.5, "feet"),
  49164. default: true
  49165. },
  49166. ]
  49167. ))
  49168. characterMakers.push(() => makeCharacter(
  49169. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49170. {
  49171. front: {
  49172. height: math.unit(5, "feet"),
  49173. name: "Front",
  49174. image: {
  49175. source: "./media/characters/nova-nerium/front.svg",
  49176. extra: 1548/1392,
  49177. bottom: 374/1922
  49178. }
  49179. },
  49180. back: {
  49181. height: math.unit(5, "feet"),
  49182. name: "Back",
  49183. image: {
  49184. source: "./media/characters/nova-nerium/back.svg",
  49185. extra: 1658/1468,
  49186. bottom: 257/1915
  49187. }
  49188. },
  49189. },
  49190. [
  49191. {
  49192. name: "Normal",
  49193. height: math.unit(5, "feet"),
  49194. default: true
  49195. },
  49196. ]
  49197. ))
  49198. characterMakers.push(() => makeCharacter(
  49199. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49200. {
  49201. front: {
  49202. height: math.unit(5 + 4/12, "feet"),
  49203. name: "Front",
  49204. image: {
  49205. source: "./media/characters/ashe-pyriph/front.svg",
  49206. extra: 1935/1747,
  49207. bottom: 60/1995
  49208. }
  49209. },
  49210. },
  49211. [
  49212. {
  49213. name: "Normal",
  49214. height: math.unit(5 + 4/12, "feet"),
  49215. default: true
  49216. },
  49217. ]
  49218. ))
  49219. characterMakers.push(() => makeCharacter(
  49220. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49221. {
  49222. front: {
  49223. height: math.unit(8.7, "feet"),
  49224. name: "Front",
  49225. image: {
  49226. source: "./media/characters/flicker-wisp/front.svg",
  49227. extra: 1835/1613,
  49228. bottom: 449/2284
  49229. }
  49230. },
  49231. side: {
  49232. height: math.unit(8.7, "feet"),
  49233. name: "Side",
  49234. image: {
  49235. source: "./media/characters/flicker-wisp/side.svg",
  49236. extra: 1841/1642,
  49237. bottom: 336/2177
  49238. },
  49239. default: true
  49240. },
  49241. maw: {
  49242. height: math.unit(3.35, "feet"),
  49243. name: "Maw",
  49244. image: {
  49245. source: "./media/characters/flicker-wisp/maw.svg",
  49246. extra: 2338/1506,
  49247. bottom: 0/2338
  49248. }
  49249. },
  49250. ovipositor: {
  49251. height: math.unit(4.95, "feet"),
  49252. name: "Ovipositor",
  49253. image: {
  49254. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49255. }
  49256. },
  49257. egg: {
  49258. height: math.unit(0.385, "feet"),
  49259. weight: math.unit(2, "lb"),
  49260. name: "Egg",
  49261. image: {
  49262. source: "./media/characters/flicker-wisp/egg.svg"
  49263. }
  49264. },
  49265. },
  49266. [
  49267. {
  49268. name: "Normal",
  49269. height: math.unit(8.7, "feet"),
  49270. default: true
  49271. },
  49272. ]
  49273. ))
  49274. characterMakers.push(() => makeCharacter(
  49275. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49276. {
  49277. side: {
  49278. height: math.unit(11, "feet"),
  49279. name: "Side",
  49280. image: {
  49281. source: "./media/characters/faefnul/side.svg",
  49282. extra: 1100/1007,
  49283. bottom: 0/1100
  49284. }
  49285. },
  49286. },
  49287. [
  49288. {
  49289. name: "Normal",
  49290. height: math.unit(11, "feet"),
  49291. default: true
  49292. },
  49293. ]
  49294. ))
  49295. characterMakers.push(() => makeCharacter(
  49296. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49297. {
  49298. front: {
  49299. height: math.unit(6 + 2/12, "feet"),
  49300. name: "Front",
  49301. image: {
  49302. source: "./media/characters/shady/front.svg",
  49303. extra: 502/461,
  49304. bottom: 9/511
  49305. }
  49306. },
  49307. kneeling: {
  49308. height: math.unit(4.6, "feet"),
  49309. name: "Kneeling",
  49310. image: {
  49311. source: "./media/characters/shady/kneeling.svg",
  49312. extra: 1328/1219,
  49313. bottom: 117/1445
  49314. }
  49315. },
  49316. maw: {
  49317. height: math.unit(2, "feet"),
  49318. name: "Maw",
  49319. image: {
  49320. source: "./media/characters/shady/maw.svg"
  49321. }
  49322. },
  49323. },
  49324. [
  49325. {
  49326. name: "Nano",
  49327. height: math.unit(1, "mm")
  49328. },
  49329. {
  49330. name: "Micro",
  49331. height: math.unit(12, "mm")
  49332. },
  49333. {
  49334. name: "Tiny",
  49335. height: math.unit(3, "inches")
  49336. },
  49337. {
  49338. name: "Normal",
  49339. height: math.unit(6 + 2/12, "feet"),
  49340. default: true
  49341. },
  49342. {
  49343. name: "Big",
  49344. height: math.unit(15, "feet")
  49345. },
  49346. {
  49347. name: "Macro",
  49348. height: math.unit(150, "feet")
  49349. },
  49350. {
  49351. name: "Titanic",
  49352. height: math.unit(500, "feet")
  49353. },
  49354. ]
  49355. ))
  49356. characterMakers.push(() => makeCharacter(
  49357. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49358. {
  49359. front: {
  49360. height: math.unit(12, "feet"),
  49361. name: "Front",
  49362. image: {
  49363. source: "./media/characters/fenrir/front.svg",
  49364. extra: 968/875,
  49365. bottom: 22/990
  49366. }
  49367. },
  49368. },
  49369. [
  49370. {
  49371. name: "Big",
  49372. height: math.unit(12, "feet"),
  49373. default: true
  49374. },
  49375. ]
  49376. ))
  49377. characterMakers.push(() => makeCharacter(
  49378. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49379. {
  49380. front: {
  49381. height: math.unit(5 + 4/12, "feet"),
  49382. name: "Front",
  49383. image: {
  49384. source: "./media/characters/makar/front.svg",
  49385. extra: 1181/1112,
  49386. bottom: 78/1259
  49387. }
  49388. },
  49389. },
  49390. [
  49391. {
  49392. name: "Normal",
  49393. height: math.unit(5 + 4/12, "feet"),
  49394. default: true
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49400. {
  49401. front: {
  49402. height: math.unit(5 + 7/12, "feet"),
  49403. name: "Front",
  49404. image: {
  49405. source: "./media/characters/callow/front.svg",
  49406. extra: 1482/1304,
  49407. bottom: 23/1505
  49408. }
  49409. },
  49410. back: {
  49411. height: math.unit(5 + 7/12, "feet"),
  49412. name: "Back",
  49413. image: {
  49414. source: "./media/characters/callow/back.svg",
  49415. extra: 1484/1296,
  49416. bottom: 25/1509
  49417. }
  49418. },
  49419. },
  49420. [
  49421. {
  49422. name: "Micro",
  49423. height: math.unit(3, "inches"),
  49424. default: true
  49425. },
  49426. {
  49427. name: "Normal",
  49428. height: math.unit(5 + 7/12, "feet")
  49429. },
  49430. ]
  49431. ))
  49432. characterMakers.push(() => makeCharacter(
  49433. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49434. {
  49435. front: {
  49436. height: math.unit(6 + 2/12, "feet"),
  49437. name: "Front",
  49438. image: {
  49439. source: "./media/characters/natel/front.svg",
  49440. extra: 1833/1692,
  49441. bottom: 166/1999
  49442. }
  49443. },
  49444. },
  49445. [
  49446. {
  49447. name: "Normal",
  49448. height: math.unit(6 + 2/12, "feet"),
  49449. default: true
  49450. },
  49451. ]
  49452. ))
  49453. characterMakers.push(() => makeCharacter(
  49454. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49455. {
  49456. front: {
  49457. height: math.unit(1.75, "meters"),
  49458. name: "Front",
  49459. image: {
  49460. source: "./media/characters/misu/front.svg",
  49461. extra: 1690/1558,
  49462. bottom: 234/1924
  49463. }
  49464. },
  49465. back: {
  49466. height: math.unit(1.75, "meters"),
  49467. name: "Back",
  49468. image: {
  49469. source: "./media/characters/misu/back.svg",
  49470. extra: 1762/1618,
  49471. bottom: 146/1908
  49472. }
  49473. },
  49474. frontNude: {
  49475. height: math.unit(1.75, "meters"),
  49476. name: "Front (Nude)",
  49477. image: {
  49478. source: "./media/characters/misu/front-nude.svg",
  49479. extra: 1690/1558,
  49480. bottom: 234/1924
  49481. }
  49482. },
  49483. backNude: {
  49484. height: math.unit(1.75, "meters"),
  49485. name: "Back (Nude)",
  49486. image: {
  49487. source: "./media/characters/misu/back-nude.svg",
  49488. extra: 1762/1618,
  49489. bottom: 146/1908
  49490. }
  49491. },
  49492. frontErect: {
  49493. height: math.unit(1.75, "meters"),
  49494. name: "Front (Erect)",
  49495. image: {
  49496. source: "./media/characters/misu/front-erect.svg",
  49497. extra: 1690/1558,
  49498. bottom: 234/1924
  49499. }
  49500. },
  49501. maw: {
  49502. height: math.unit(0.47, "meters"),
  49503. name: "Maw",
  49504. image: {
  49505. source: "./media/characters/misu/maw.svg"
  49506. }
  49507. },
  49508. head: {
  49509. height: math.unit(0.35, "meters"),
  49510. name: "Head",
  49511. image: {
  49512. source: "./media/characters/misu/head.svg"
  49513. }
  49514. },
  49515. rear: {
  49516. height: math.unit(0.47, "meters"),
  49517. name: "Rear",
  49518. image: {
  49519. source: "./media/characters/misu/rear.svg"
  49520. }
  49521. },
  49522. },
  49523. [
  49524. {
  49525. name: "Normal",
  49526. height: math.unit(1.75, "meters")
  49527. },
  49528. {
  49529. name: "Not good for the people",
  49530. height: math.unit(42, "meters")
  49531. },
  49532. {
  49533. name: "Not good for the neighborhood",
  49534. height: math.unit(135, "meters")
  49535. },
  49536. {
  49537. name: "Bit bigger problem",
  49538. height: math.unit(380, "meters"),
  49539. default: true
  49540. },
  49541. {
  49542. name: "Not good for the city",
  49543. height: math.unit(1.5, "km")
  49544. },
  49545. {
  49546. name: "Not good for the county",
  49547. height: math.unit(5.5, "km")
  49548. },
  49549. {
  49550. name: "Not good for the state",
  49551. height: math.unit(25, "km")
  49552. },
  49553. {
  49554. name: "Not good for the country",
  49555. height: math.unit(125, "km")
  49556. },
  49557. {
  49558. name: "Not good for the continent",
  49559. height: math.unit(2100, "km")
  49560. },
  49561. {
  49562. name: "Not good for the planet",
  49563. height: math.unit(35000, "km")
  49564. },
  49565. {
  49566. name: "Just no",
  49567. height: math.unit(8.5e18, "km")
  49568. },
  49569. ]
  49570. ))
  49571. characterMakers.push(() => makeCharacter(
  49572. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49573. {
  49574. front: {
  49575. height: math.unit(6.5, "feet"),
  49576. name: "Front",
  49577. image: {
  49578. source: "./media/characters/poppy/front.svg",
  49579. extra: 1878/1812,
  49580. bottom: 43/1921
  49581. }
  49582. },
  49583. feet: {
  49584. height: math.unit(1.06, "feet"),
  49585. name: "Feet",
  49586. image: {
  49587. source: "./media/characters/poppy/feet.svg",
  49588. extra: 1083/1083,
  49589. bottom: 87/1170
  49590. }
  49591. },
  49592. },
  49593. [
  49594. {
  49595. name: "Human",
  49596. height: math.unit(6.5, "feet")
  49597. },
  49598. {
  49599. name: "Default",
  49600. height: math.unit(300, "feet"),
  49601. default: true
  49602. },
  49603. {
  49604. name: "Huge",
  49605. height: math.unit(850, "feet")
  49606. },
  49607. {
  49608. name: "Mega",
  49609. height: math.unit(8000, "feet")
  49610. },
  49611. {
  49612. name: "Giga",
  49613. height: math.unit(300, "miles")
  49614. },
  49615. ]
  49616. ))
  49617. characterMakers.push(() => makeCharacter(
  49618. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49619. {
  49620. bipedal: {
  49621. height: math.unit(7, "feet"),
  49622. name: "Bipedal",
  49623. image: {
  49624. source: "./media/characters/zener/bipedal.svg",
  49625. extra: 874/805,
  49626. bottom: 109/983
  49627. }
  49628. },
  49629. quadrupedal: {
  49630. height: math.unit(4.64, "feet"),
  49631. name: "Quadrupedal",
  49632. image: {
  49633. source: "./media/characters/zener/quadrupedal.svg",
  49634. extra: 638/507,
  49635. bottom: 190/828
  49636. }
  49637. },
  49638. cock: {
  49639. height: math.unit(18, "inches"),
  49640. name: "Cock",
  49641. image: {
  49642. source: "./media/characters/zener/cock.svg"
  49643. }
  49644. },
  49645. },
  49646. [
  49647. {
  49648. name: "Normal",
  49649. height: math.unit(7, "feet"),
  49650. default: true
  49651. },
  49652. ]
  49653. ))
  49654. characterMakers.push(() => makeCharacter(
  49655. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49656. {
  49657. nude: {
  49658. height: math.unit(5 + 6/12, "feet"),
  49659. name: "Nude",
  49660. image: {
  49661. source: "./media/characters/charlie-dog/nude.svg",
  49662. extra: 768/734,
  49663. bottom: 26/794
  49664. }
  49665. },
  49666. dressed: {
  49667. height: math.unit(5 + 6/12, "feet"),
  49668. name: "Dressed",
  49669. image: {
  49670. source: "./media/characters/charlie-dog/dressed.svg",
  49671. extra: 768/734,
  49672. bottom: 26/794
  49673. }
  49674. },
  49675. },
  49676. [
  49677. {
  49678. name: "Normal",
  49679. height: math.unit(5 + 6/12, "feet"),
  49680. default: true
  49681. },
  49682. ]
  49683. ))
  49684. characterMakers.push(() => makeCharacter(
  49685. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49686. {
  49687. front: {
  49688. height: math.unit(6 + 4/12, "feet"),
  49689. name: "Front",
  49690. image: {
  49691. source: "./media/characters/ir'istrasz/front.svg",
  49692. extra: 1014/977,
  49693. bottom: 65/1079
  49694. }
  49695. },
  49696. back: {
  49697. height: math.unit(6 + 4/12, "feet"),
  49698. name: "Back",
  49699. image: {
  49700. source: "./media/characters/ir'istrasz/back.svg",
  49701. extra: 1024/992,
  49702. bottom: 34/1058
  49703. }
  49704. },
  49705. },
  49706. [
  49707. {
  49708. name: "Normal",
  49709. height: math.unit(6 + 4/12, "feet"),
  49710. default: true
  49711. },
  49712. ]
  49713. ))
  49714. characterMakers.push(() => makeCharacter(
  49715. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49716. {
  49717. front: {
  49718. height: math.unit(5 + 8/12, "feet"),
  49719. name: "Front",
  49720. image: {
  49721. source: "./media/characters/dee-ditto/front.svg",
  49722. extra: 1874/1785,
  49723. bottom: 68/1942
  49724. }
  49725. },
  49726. back: {
  49727. height: math.unit(5 + 8/12, "feet"),
  49728. name: "Back",
  49729. image: {
  49730. source: "./media/characters/dee-ditto/back.svg",
  49731. extra: 1870/1783,
  49732. bottom: 77/1947
  49733. }
  49734. },
  49735. },
  49736. [
  49737. {
  49738. name: "Normal",
  49739. height: math.unit(5 + 8/12, "feet"),
  49740. default: true
  49741. },
  49742. ]
  49743. ))
  49744. characterMakers.push(() => makeCharacter(
  49745. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49746. {
  49747. front: {
  49748. height: math.unit(7 + 6/12, "feet"),
  49749. name: "Front",
  49750. image: {
  49751. source: "./media/characters/fey/front.svg",
  49752. extra: 995/979,
  49753. bottom: 30/1025
  49754. }
  49755. },
  49756. back: {
  49757. height: math.unit(7 + 6/12, "feet"),
  49758. name: "Back",
  49759. image: {
  49760. source: "./media/characters/fey/back.svg",
  49761. extra: 1079/1008,
  49762. bottom: 5/1084
  49763. }
  49764. },
  49765. dressed: {
  49766. height: math.unit(7 + 6/12, "feet"),
  49767. name: "Dressed",
  49768. image: {
  49769. source: "./media/characters/fey/dressed.svg",
  49770. extra: 995/979,
  49771. bottom: 30/1025
  49772. }
  49773. },
  49774. },
  49775. [
  49776. {
  49777. name: "Normal",
  49778. height: math.unit(7 + 6/12, "feet"),
  49779. default: true
  49780. },
  49781. ]
  49782. ))
  49783. characterMakers.push(() => makeCharacter(
  49784. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49785. {
  49786. standing: {
  49787. height: math.unit(17, "feet"),
  49788. name: "Standing",
  49789. image: {
  49790. source: "./media/characters/aster/standing.svg",
  49791. extra: 1798/1598,
  49792. bottom: 117/1915
  49793. }
  49794. },
  49795. },
  49796. [
  49797. {
  49798. name: "Normal",
  49799. height: math.unit(17, "feet"),
  49800. default: true
  49801. },
  49802. {
  49803. name: "Homewrecker",
  49804. height: math.unit(95, "feet")
  49805. },
  49806. {
  49807. name: "Planet Devourer",
  49808. height: math.unit(1008000, "miles")
  49809. },
  49810. ]
  49811. ))
  49812. characterMakers.push(() => makeCharacter(
  49813. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49814. {
  49815. front: {
  49816. height: math.unit(6 + 5/12, "feet"),
  49817. weight: math.unit(265, "lb"),
  49818. name: "Front",
  49819. image: {
  49820. source: "./media/characters/devon-childs/front.svg",
  49821. extra: 1795/1721,
  49822. bottom: 41/1836
  49823. }
  49824. },
  49825. side: {
  49826. height: math.unit(6 + 5/12, "feet"),
  49827. weight: math.unit(265, "lb"),
  49828. name: "Side",
  49829. image: {
  49830. source: "./media/characters/devon-childs/side.svg",
  49831. extra: 1812/1738,
  49832. bottom: 30/1842
  49833. }
  49834. },
  49835. back: {
  49836. height: math.unit(6 + 5/12, "feet"),
  49837. weight: math.unit(265, "lb"),
  49838. name: "Back",
  49839. image: {
  49840. source: "./media/characters/devon-childs/back.svg",
  49841. extra: 1808/1735,
  49842. bottom: 23/1831
  49843. }
  49844. },
  49845. hand: {
  49846. height: math.unit(1.464, "feet"),
  49847. name: "Hand",
  49848. image: {
  49849. source: "./media/characters/devon-childs/hand.svg"
  49850. }
  49851. },
  49852. foot: {
  49853. height: math.unit(1.6, "feet"),
  49854. name: "Foot",
  49855. image: {
  49856. source: "./media/characters/devon-childs/foot.svg"
  49857. }
  49858. },
  49859. },
  49860. [
  49861. {
  49862. name: "Micro",
  49863. height: math.unit(7, "cm")
  49864. },
  49865. {
  49866. name: "Normal",
  49867. height: math.unit(6 + 5/12, "feet"),
  49868. default: true
  49869. },
  49870. {
  49871. name: "Macro",
  49872. height: math.unit(154, "feet")
  49873. },
  49874. ]
  49875. ))
  49876. characterMakers.push(() => makeCharacter(
  49877. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49878. {
  49879. front: {
  49880. height: math.unit(6, "feet"),
  49881. weight: math.unit(180, "lb"),
  49882. name: "Front",
  49883. image: {
  49884. source: "./media/characters/lydemox-vir/front.svg",
  49885. extra: 1632/1435,
  49886. bottom: 58/1690
  49887. }
  49888. },
  49889. frontSFW: {
  49890. height: math.unit(6, "feet"),
  49891. weight: math.unit(180, "lb"),
  49892. name: "Front (SFW)",
  49893. image: {
  49894. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49895. extra: 1632/1435,
  49896. bottom: 58/1690
  49897. }
  49898. },
  49899. back: {
  49900. height: math.unit(6, "feet"),
  49901. weight: math.unit(180, "lb"),
  49902. name: "Back",
  49903. image: {
  49904. source: "./media/characters/lydemox-vir/back.svg",
  49905. extra: 1593/1408,
  49906. bottom: 31/1624
  49907. }
  49908. },
  49909. paw: {
  49910. height: math.unit(1.85, "feet"),
  49911. name: "Paw",
  49912. image: {
  49913. source: "./media/characters/lydemox-vir/paw.svg"
  49914. }
  49915. },
  49916. dick: {
  49917. height: math.unit(1.8, "feet"),
  49918. name: "Dick",
  49919. image: {
  49920. source: "./media/characters/lydemox-vir/dick.svg"
  49921. }
  49922. },
  49923. },
  49924. [
  49925. {
  49926. name: "Macro",
  49927. height: math.unit(100, "feet"),
  49928. default: true
  49929. },
  49930. {
  49931. name: "Teramacro",
  49932. height: math.unit(1, "earth")
  49933. },
  49934. {
  49935. name: "Planetary",
  49936. height: math.unit(20, "earths")
  49937. },
  49938. ]
  49939. ))
  49940. characterMakers.push(() => makeCharacter(
  49941. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49942. {
  49943. front: {
  49944. height: math.unit(15 + 8/12, "feet"),
  49945. weight: math.unit(1237, "kg"),
  49946. name: "Front",
  49947. image: {
  49948. source: "./media/characters/mia/front.svg",
  49949. extra: 1573/1446,
  49950. bottom: 58/1631
  49951. }
  49952. },
  49953. },
  49954. [
  49955. {
  49956. name: "Small",
  49957. height: math.unit(9 + 5/12, "feet")
  49958. },
  49959. {
  49960. name: "Normal",
  49961. height: math.unit(15 + 8/12, "feet"),
  49962. default: true
  49963. },
  49964. ]
  49965. ))
  49966. characterMakers.push(() => makeCharacter(
  49967. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49968. {
  49969. front: {
  49970. height: math.unit(10 + 6/12, "feet"),
  49971. weight: math.unit(1.3, "tons"),
  49972. name: "Front",
  49973. image: {
  49974. source: "./media/characters/mr-graves/front.svg",
  49975. extra: 1779/1695,
  49976. bottom: 198/1977
  49977. }
  49978. },
  49979. },
  49980. [
  49981. {
  49982. name: "Normal",
  49983. height: math.unit(10 + 6 /12, "feet"),
  49984. default: true
  49985. },
  49986. ]
  49987. ))
  49988. characterMakers.push(() => makeCharacter(
  49989. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49990. {
  49991. dressedFront: {
  49992. height: math.unit(5 + 8/12, "feet"),
  49993. weight: math.unit(125, "lb"),
  49994. name: "Dressed (Front)",
  49995. image: {
  49996. source: "./media/characters/jess/dressed-front.svg",
  49997. extra: 1176/1152,
  49998. bottom: 42/1218
  49999. }
  50000. },
  50001. dressedSide: {
  50002. height: math.unit(5 + 8/12, "feet"),
  50003. weight: math.unit(125, "lb"),
  50004. name: "Dressed (Side)",
  50005. image: {
  50006. source: "./media/characters/jess/dressed-side.svg",
  50007. extra: 1204/1190,
  50008. bottom: 6/1210
  50009. }
  50010. },
  50011. nudeFront: {
  50012. height: math.unit(5 + 8/12, "feet"),
  50013. weight: math.unit(125, "lb"),
  50014. name: "Nude (Front)",
  50015. image: {
  50016. source: "./media/characters/jess/nude-front.svg",
  50017. extra: 1176/1152,
  50018. bottom: 42/1218
  50019. }
  50020. },
  50021. nudeSide: {
  50022. height: math.unit(5 + 8/12, "feet"),
  50023. weight: math.unit(125, "lb"),
  50024. name: "Nude (Side)",
  50025. image: {
  50026. source: "./media/characters/jess/nude-side.svg",
  50027. extra: 1204/1190,
  50028. bottom: 6/1210
  50029. }
  50030. },
  50031. organsFront: {
  50032. height: math.unit(2.83799342105, "feet"),
  50033. name: "Organs (Front)",
  50034. image: {
  50035. source: "./media/characters/jess/organs-front.svg"
  50036. }
  50037. },
  50038. organsSide: {
  50039. height: math.unit(2.64225290474, "feet"),
  50040. name: "Organs (Side)",
  50041. image: {
  50042. source: "./media/characters/jess/organs-side.svg"
  50043. }
  50044. },
  50045. digestiveTractFront: {
  50046. height: math.unit(2.8106580871, "feet"),
  50047. name: "Digestive Tract (Front)",
  50048. image: {
  50049. source: "./media/characters/jess/digestive-tract-front.svg"
  50050. }
  50051. },
  50052. digestiveTractSide: {
  50053. height: math.unit(2.54365045014, "feet"),
  50054. name: "Digestive Tract (Side)",
  50055. image: {
  50056. source: "./media/characters/jess/digestive-tract-side.svg"
  50057. }
  50058. },
  50059. respiratorySystemFront: {
  50060. height: math.unit(1.11196233456, "feet"),
  50061. name: "Respiratory System (Front)",
  50062. image: {
  50063. source: "./media/characters/jess/respiratory-system-front.svg"
  50064. }
  50065. },
  50066. respiratorySystemSide: {
  50067. height: math.unit(0.89327966297, "feet"),
  50068. name: "Respiratory System (Side)",
  50069. image: {
  50070. source: "./media/characters/jess/respiratory-system-side.svg"
  50071. }
  50072. },
  50073. urinaryTractFront: {
  50074. height: math.unit(1.16126356186, "feet"),
  50075. name: "Urinary Tract (Front)",
  50076. image: {
  50077. source: "./media/characters/jess/urinary-tract-front.svg"
  50078. }
  50079. },
  50080. urinaryTractSide: {
  50081. height: math.unit(1.20910039627, "feet"),
  50082. name: "Urinary Tract (Side)",
  50083. image: {
  50084. source: "./media/characters/jess/urinary-tract-side.svg"
  50085. }
  50086. },
  50087. reproductiveOrgansFront: {
  50088. height: math.unit(0.48422591566, "feet"),
  50089. name: "Reproductive Organs (Front)",
  50090. image: {
  50091. source: "./media/characters/jess/reproductive-organs-front.svg"
  50092. }
  50093. },
  50094. reproductiveOrgansSide: {
  50095. height: math.unit(0.61553314481, "feet"),
  50096. name: "Reproductive Organs (Side)",
  50097. image: {
  50098. source: "./media/characters/jess/reproductive-organs-side.svg"
  50099. }
  50100. },
  50101. breastsFront: {
  50102. height: math.unit(0.47690395121, "feet"),
  50103. name: "Breasts (Front)",
  50104. image: {
  50105. source: "./media/characters/jess/breasts-front.svg"
  50106. }
  50107. },
  50108. breastsSide: {
  50109. height: math.unit(0.30556998307, "feet"),
  50110. name: "Breasts (Side)",
  50111. image: {
  50112. source: "./media/characters/jess/breasts-side.svg"
  50113. }
  50114. },
  50115. heartFront: {
  50116. height: math.unit(0.53011022622, "feet"),
  50117. name: "Heart (Front)",
  50118. image: {
  50119. source: "./media/characters/jess/heart-front.svg"
  50120. }
  50121. },
  50122. heartSide: {
  50123. height: math.unit(0.51790695213, "feet"),
  50124. name: "Heart (Side)",
  50125. image: {
  50126. source: "./media/characters/jess/heart-side.svg"
  50127. }
  50128. },
  50129. earsAndNoseFront: {
  50130. height: math.unit(0.29385483995, "feet"),
  50131. name: "Ears and Nose (Front)",
  50132. image: {
  50133. source: "./media/characters/jess/ears-and-nose-front.svg"
  50134. }
  50135. },
  50136. earsAndNoseSide: {
  50137. height: math.unit(0.18109658741, "feet"),
  50138. name: "Ears and Nose (Side)",
  50139. image: {
  50140. source: "./media/characters/jess/ears-and-nose-side.svg"
  50141. }
  50142. },
  50143. },
  50144. [
  50145. {
  50146. name: "Normal",
  50147. height: math.unit(5 + 8/12, "feet"),
  50148. default: true
  50149. },
  50150. ]
  50151. ))
  50152. characterMakers.push(() => makeCharacter(
  50153. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50154. {
  50155. front: {
  50156. height: math.unit(6, "feet"),
  50157. weight: math.unit(6.64467e-7, "grams"),
  50158. name: "Front",
  50159. image: {
  50160. source: "./media/characters/wimpering/front.svg",
  50161. extra: 597/587,
  50162. bottom: 34/631
  50163. }
  50164. },
  50165. },
  50166. [
  50167. {
  50168. name: "Micro",
  50169. height: math.unit(0.4, "mm"),
  50170. default: true
  50171. },
  50172. ]
  50173. ))
  50174. characterMakers.push(() => makeCharacter(
  50175. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50176. {
  50177. front: {
  50178. height: math.unit(5 + 2/12, "feet"),
  50179. weight: math.unit(110, "lb"),
  50180. name: "Front",
  50181. image: {
  50182. source: "./media/characters/keltre/front.svg",
  50183. extra: 1099/1057,
  50184. bottom: 22/1121
  50185. }
  50186. },
  50187. back: {
  50188. height: math.unit(5 + 2/12, "feet"),
  50189. weight: math.unit(110, "lb"),
  50190. name: "Back",
  50191. image: {
  50192. source: "./media/characters/keltre/back.svg",
  50193. extra: 1095/1053,
  50194. bottom: 17/1112
  50195. }
  50196. },
  50197. dressed: {
  50198. height: math.unit(5 + 2/12, "feet"),
  50199. weight: math.unit(110, "lb"),
  50200. name: "Dressed",
  50201. image: {
  50202. source: "./media/characters/keltre/dressed.svg",
  50203. extra: 1099/1057,
  50204. bottom: 22/1121
  50205. }
  50206. },
  50207. winter: {
  50208. height: math.unit(5 + 2/12, "feet"),
  50209. weight: math.unit(110, "lb"),
  50210. name: "Winter",
  50211. image: {
  50212. source: "./media/characters/keltre/winter.svg",
  50213. extra: 1099/1057,
  50214. bottom: 22/1121
  50215. }
  50216. },
  50217. head: {
  50218. height: math.unit(1.61 * 0.86, "feet"),
  50219. name: "Head",
  50220. image: {
  50221. source: "./media/characters/keltre/head.svg",
  50222. extra: 534/421,
  50223. bottom: 0/534
  50224. }
  50225. },
  50226. hand: {
  50227. height: math.unit(1.3 * 0.86, "feet"),
  50228. name: "Hand",
  50229. image: {
  50230. source: "./media/characters/keltre/hand.svg"
  50231. }
  50232. },
  50233. foot: {
  50234. height: math.unit(1.8 * 0.86, "feet"),
  50235. name: "Foot",
  50236. image: {
  50237. source: "./media/characters/keltre/foot.svg"
  50238. }
  50239. },
  50240. },
  50241. [
  50242. {
  50243. name: "Fine",
  50244. height: math.unit(1, "inch")
  50245. },
  50246. {
  50247. name: "Dimnutive",
  50248. height: math.unit(4, "inches")
  50249. },
  50250. {
  50251. name: "Tiny",
  50252. height: math.unit(1, "foot")
  50253. },
  50254. {
  50255. name: "Small",
  50256. height: math.unit(3, "feet")
  50257. },
  50258. {
  50259. name: "Normal",
  50260. height: math.unit(5 + 2/12, "feet"),
  50261. default: true
  50262. },
  50263. ]
  50264. ))
  50265. characterMakers.push(() => makeCharacter(
  50266. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50267. {
  50268. front: {
  50269. height: math.unit(6 + 2/12, "feet"),
  50270. name: "Front",
  50271. image: {
  50272. source: "./media/characters/nox/front.svg",
  50273. extra: 1917/1830,
  50274. bottom: 74/1991
  50275. }
  50276. },
  50277. back: {
  50278. height: math.unit(6 + 2/12, "feet"),
  50279. name: "Back",
  50280. image: {
  50281. source: "./media/characters/nox/back.svg",
  50282. extra: 1896/1815,
  50283. bottom: 21/1917
  50284. }
  50285. },
  50286. head: {
  50287. height: math.unit(1.1, "feet"),
  50288. name: "Head",
  50289. image: {
  50290. source: "./media/characters/nox/head.svg",
  50291. extra: 874/704,
  50292. bottom: 0/874
  50293. }
  50294. },
  50295. tattoo: {
  50296. height: math.unit(0.729, "feet"),
  50297. name: "Tattoo",
  50298. image: {
  50299. source: "./media/characters/nox/tattoo.svg"
  50300. }
  50301. },
  50302. },
  50303. [
  50304. {
  50305. name: "Normal",
  50306. height: math.unit(6 + 2/12, "feet")
  50307. },
  50308. {
  50309. name: "Gigamacro",
  50310. height: math.unit(2, "earths"),
  50311. default: true
  50312. },
  50313. {
  50314. name: "Cosmic",
  50315. height: math.unit(867, "yottameters")
  50316. },
  50317. ]
  50318. ))
  50319. characterMakers.push(() => makeCharacter(
  50320. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50321. {
  50322. front: {
  50323. height: math.unit(6, "feet"),
  50324. weight: math.unit(150, "lb"),
  50325. name: "Front",
  50326. image: {
  50327. source: "./media/characters/caspian/front.svg",
  50328. extra: 1443/1359,
  50329. bottom: 0/1443
  50330. }
  50331. },
  50332. back: {
  50333. height: math.unit(6, "feet"),
  50334. weight: math.unit(150, "lb"),
  50335. name: "Back",
  50336. image: {
  50337. source: "./media/characters/caspian/back.svg",
  50338. extra: 1379/1309,
  50339. bottom: 0/1379
  50340. }
  50341. },
  50342. head: {
  50343. height: math.unit(0.9, "feet"),
  50344. name: "Head",
  50345. image: {
  50346. source: "./media/characters/caspian/head.svg",
  50347. extra: 692/492,
  50348. bottom: 0/692
  50349. }
  50350. },
  50351. headAlt: {
  50352. height: math.unit(0.95, "feet"),
  50353. name: "Head (Alt)",
  50354. image: {
  50355. source: "./media/characters/caspian/head-alt.svg",
  50356. extra: 668/508,
  50357. bottom: 0/668
  50358. }
  50359. },
  50360. hand: {
  50361. height: math.unit(0.8, "feet"),
  50362. name: "Hand",
  50363. image: {
  50364. source: "./media/characters/caspian/hand.svg"
  50365. }
  50366. },
  50367. paw: {
  50368. height: math.unit(0.95, "feet"),
  50369. name: "Paw",
  50370. image: {
  50371. source: "./media/characters/caspian/paw.svg"
  50372. }
  50373. },
  50374. },
  50375. [
  50376. {
  50377. name: "Normal",
  50378. height: math.unit(162, "feet"),
  50379. default: true
  50380. },
  50381. ]
  50382. ))
  50383. characterMakers.push(() => makeCharacter(
  50384. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50385. {
  50386. front: {
  50387. height: math.unit(6, "feet"),
  50388. name: "Front",
  50389. image: {
  50390. source: "./media/characters/myra-aisling/front.svg",
  50391. extra: 1268/1166,
  50392. bottom: 73/1341
  50393. }
  50394. },
  50395. back: {
  50396. height: math.unit(6, "feet"),
  50397. name: "Back",
  50398. image: {
  50399. source: "./media/characters/myra-aisling/back.svg",
  50400. extra: 1249/1149,
  50401. bottom: 79/1328
  50402. }
  50403. },
  50404. dressed: {
  50405. height: math.unit(6, "feet"),
  50406. name: "Dressed",
  50407. image: {
  50408. source: "./media/characters/myra-aisling/dressed.svg",
  50409. extra: 1290/1189,
  50410. bottom: 47/1337
  50411. }
  50412. },
  50413. hand: {
  50414. height: math.unit(1.1, "feet"),
  50415. name: "Hand",
  50416. image: {
  50417. source: "./media/characters/myra-aisling/hand.svg"
  50418. }
  50419. },
  50420. paw: {
  50421. height: math.unit(1.23, "feet"),
  50422. name: "Paw",
  50423. image: {
  50424. source: "./media/characters/myra-aisling/paw.svg"
  50425. }
  50426. },
  50427. },
  50428. [
  50429. {
  50430. name: "Normal",
  50431. height: math.unit(160, "feet"),
  50432. default: true
  50433. },
  50434. ]
  50435. ))
  50436. characterMakers.push(() => makeCharacter(
  50437. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50438. {
  50439. front: {
  50440. height: math.unit(6, "feet"),
  50441. name: "Front",
  50442. image: {
  50443. source: "./media/characters/tenley-sidero/front.svg",
  50444. extra: 1365/1276,
  50445. bottom: 47/1412
  50446. }
  50447. },
  50448. back: {
  50449. height: math.unit(6, "feet"),
  50450. name: "Back",
  50451. image: {
  50452. source: "./media/characters/tenley-sidero/back.svg",
  50453. extra: 1383/1283,
  50454. bottom: 35/1418
  50455. }
  50456. },
  50457. dressed: {
  50458. height: math.unit(6, "feet"),
  50459. name: "Dressed",
  50460. image: {
  50461. source: "./media/characters/tenley-sidero/dressed.svg",
  50462. extra: 1364/1275,
  50463. bottom: 42/1406
  50464. }
  50465. },
  50466. head: {
  50467. height: math.unit(1.47, "feet"),
  50468. name: "Head",
  50469. image: {
  50470. source: "./media/characters/tenley-sidero/head.svg",
  50471. extra: 610/490,
  50472. bottom: 0/610
  50473. }
  50474. },
  50475. },
  50476. [
  50477. {
  50478. name: "Normal",
  50479. height: math.unit(154, "feet"),
  50480. default: true
  50481. },
  50482. ]
  50483. ))
  50484. characterMakers.push(() => makeCharacter(
  50485. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50486. {
  50487. front: {
  50488. height: math.unit(5, "inches"),
  50489. name: "Front",
  50490. image: {
  50491. source: "./media/characters/mallory/front.svg",
  50492. extra: 1919/1678,
  50493. bottom: 29/1948
  50494. }
  50495. },
  50496. hand: {
  50497. height: math.unit(0.73, "inches"),
  50498. name: "Hand",
  50499. image: {
  50500. source: "./media/characters/mallory/hand.svg"
  50501. }
  50502. },
  50503. paw: {
  50504. height: math.unit(0.68, "inches"),
  50505. name: "Paw",
  50506. image: {
  50507. source: "./media/characters/mallory/paw.svg"
  50508. }
  50509. },
  50510. },
  50511. [
  50512. {
  50513. name: "Small",
  50514. height: math.unit(5, "inches"),
  50515. default: true
  50516. },
  50517. ]
  50518. ))
  50519. characterMakers.push(() => makeCharacter(
  50520. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50521. {
  50522. naked: {
  50523. height: math.unit(6, "feet"),
  50524. name: "Naked",
  50525. image: {
  50526. source: "./media/characters/mab/naked.svg",
  50527. extra: 1855/1757,
  50528. bottom: 208/2063
  50529. }
  50530. },
  50531. outside: {
  50532. height: math.unit(6, "feet"),
  50533. name: "Outside",
  50534. image: {
  50535. source: "./media/characters/mab/outside.svg",
  50536. extra: 1855/1757,
  50537. bottom: 208/2063
  50538. }
  50539. },
  50540. party: {
  50541. height: math.unit(6, "feet"),
  50542. name: "Party",
  50543. image: {
  50544. source: "./media/characters/mab/party.svg",
  50545. extra: 1855/1757,
  50546. bottom: 208/2063
  50547. }
  50548. },
  50549. },
  50550. [
  50551. {
  50552. name: "Normal",
  50553. height: math.unit(165, "feet"),
  50554. default: true
  50555. },
  50556. ]
  50557. ))
  50558. characterMakers.push(() => makeCharacter(
  50559. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50560. {
  50561. feral: {
  50562. height: math.unit(12, "feet"),
  50563. weight: math.unit(20000, "lb"),
  50564. name: "Side",
  50565. image: {
  50566. source: "./media/characters/winter/feral.svg",
  50567. extra: 1286/943,
  50568. bottom: 112/1398
  50569. },
  50570. form: "feral",
  50571. default: true
  50572. },
  50573. feralNsfw: {
  50574. height: math.unit(12, "feet"),
  50575. weight: math.unit(20000, "lb"),
  50576. name: "Side (NSFW)",
  50577. image: {
  50578. source: "./media/characters/winter/feral-nsfw.svg",
  50579. extra: 1286/943,
  50580. bottom: 112/1398
  50581. },
  50582. form: "feral"
  50583. },
  50584. dick: {
  50585. height: math.unit(3.79, "feet"),
  50586. name: "Dick",
  50587. image: {
  50588. source: "./media/characters/winter/dick.svg"
  50589. },
  50590. form: "feral"
  50591. },
  50592. anthro: {
  50593. height: math.unit(12, "feet"),
  50594. weight: math.unit(10, "tons"),
  50595. name: "Anthro",
  50596. image: {
  50597. source: "./media/characters/winter/anthro.svg",
  50598. extra: 1701/1553,
  50599. bottom: 64/1765
  50600. },
  50601. form: "anthro",
  50602. default: true
  50603. },
  50604. },
  50605. [
  50606. {
  50607. name: "Big",
  50608. height: math.unit(12, "feet"),
  50609. default: true,
  50610. form: "feral"
  50611. },
  50612. {
  50613. name: "Big",
  50614. height: math.unit(12, "feet"),
  50615. default: true,
  50616. form: "anthro"
  50617. },
  50618. ],
  50619. {
  50620. "feral": {
  50621. name: "Feral",
  50622. default: true
  50623. },
  50624. "anthro": {
  50625. name: "Anthro"
  50626. }
  50627. }
  50628. ))
  50629. characterMakers.push(() => makeCharacter(
  50630. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50631. {
  50632. front: {
  50633. height: math.unit(4.1, "inches"),
  50634. name: "Front",
  50635. image: {
  50636. source: "./media/characters/alto/front.svg",
  50637. extra: 736/627,
  50638. bottom: 90/826
  50639. }
  50640. },
  50641. },
  50642. [
  50643. {
  50644. name: "Normal",
  50645. height: math.unit(4.1, "inches"),
  50646. default: true
  50647. },
  50648. ]
  50649. ))
  50650. characterMakers.push(() => makeCharacter(
  50651. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50652. {
  50653. sitting: {
  50654. height: math.unit(3, "feet"),
  50655. name: "Sitting",
  50656. image: {
  50657. source: "./media/characters/ratstrid-v/sitting.svg",
  50658. extra: 355/310,
  50659. bottom: 136/491
  50660. }
  50661. },
  50662. },
  50663. [
  50664. {
  50665. name: "Normal",
  50666. height: math.unit(3, "feet"),
  50667. default: true
  50668. },
  50669. ]
  50670. ))
  50671. characterMakers.push(() => makeCharacter(
  50672. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50673. {
  50674. back: {
  50675. height: math.unit(6, "feet"),
  50676. weight: math.unit(450, "lb"),
  50677. name: "Back",
  50678. image: {
  50679. source: "./media/characters/siz/back.svg",
  50680. extra: 1449/1274,
  50681. bottom: 13/1462
  50682. }
  50683. },
  50684. },
  50685. [
  50686. {
  50687. name: "Smallest",
  50688. height: math.unit(18 + 3/12, "feet")
  50689. },
  50690. {
  50691. name: "Modest",
  50692. height: math.unit(56 + 8/12, "feet"),
  50693. default: true
  50694. },
  50695. {
  50696. name: "Largest",
  50697. height: math.unit(3590, "feet")
  50698. },
  50699. ]
  50700. ))
  50701. characterMakers.push(() => makeCharacter(
  50702. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50703. {
  50704. front: {
  50705. height: math.unit(5 + 9/12, "feet"),
  50706. weight: math.unit(150, "lb"),
  50707. name: "Front",
  50708. image: {
  50709. source: "./media/characters/ven/front.svg",
  50710. extra: 1372/1320,
  50711. bottom: 73/1445
  50712. }
  50713. },
  50714. side: {
  50715. height: math.unit(5 + 9/12, "feet"),
  50716. weight: math.unit(1150, "lb"),
  50717. name: "Side",
  50718. image: {
  50719. source: "./media/characters/ven/side.svg",
  50720. extra: 1119/1070,
  50721. bottom: 42/1161
  50722. },
  50723. default: true
  50724. },
  50725. },
  50726. [
  50727. {
  50728. name: "Normal",
  50729. height: math.unit(5 + 9/12, "feet"),
  50730. default: true
  50731. },
  50732. ]
  50733. ))
  50734. characterMakers.push(() => makeCharacter(
  50735. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50736. {
  50737. front: {
  50738. height: math.unit(12, "feet"),
  50739. weight: math.unit(1000, "kg"),
  50740. name: "Front",
  50741. image: {
  50742. source: "./media/characters/maple/front.svg",
  50743. extra: 1193/1081,
  50744. bottom: 22/1215
  50745. }
  50746. },
  50747. },
  50748. [
  50749. {
  50750. name: "Compressed",
  50751. height: math.unit(7, "feet")
  50752. },
  50753. {
  50754. name: "Normal",
  50755. height: math.unit(12, "feet"),
  50756. default: true
  50757. },
  50758. ]
  50759. ))
  50760. characterMakers.push(() => makeCharacter(
  50761. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50762. {
  50763. front: {
  50764. height: math.unit(9, "feet"),
  50765. weight: math.unit(1500, "lb"),
  50766. name: "Front",
  50767. image: {
  50768. source: "./media/characters/nora/front.svg",
  50769. extra: 1348/1286,
  50770. bottom: 218/1566
  50771. }
  50772. },
  50773. erect: {
  50774. height: math.unit(9, "feet"),
  50775. weight: math.unit(11500, "lb"),
  50776. name: "Erect",
  50777. image: {
  50778. source: "./media/characters/nora/erect.svg",
  50779. extra: 1488/1433,
  50780. bottom: 133/1621
  50781. }
  50782. },
  50783. },
  50784. [
  50785. {
  50786. name: "Normal",
  50787. height: math.unit(9, "feet"),
  50788. default: true
  50789. },
  50790. ]
  50791. ))
  50792. characterMakers.push(() => makeCharacter(
  50793. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50794. {
  50795. front: {
  50796. height: math.unit(25, "feet"),
  50797. weight: math.unit(27500, "lb"),
  50798. name: "Front",
  50799. image: {
  50800. source: "./media/characters/north-caudin/front.svg",
  50801. extra: 1184/1082,
  50802. bottom: 23/1207
  50803. }
  50804. },
  50805. },
  50806. [
  50807. {
  50808. name: "Compressed",
  50809. height: math.unit(10, "feet")
  50810. },
  50811. {
  50812. name: "Normal",
  50813. height: math.unit(25, "feet"),
  50814. default: true
  50815. },
  50816. ]
  50817. ))
  50818. characterMakers.push(() => makeCharacter(
  50819. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50820. {
  50821. front: {
  50822. height: math.unit(9, "feet"),
  50823. weight: math.unit(1250, "lb"),
  50824. name: "Front",
  50825. image: {
  50826. source: "./media/characters/merrian/front.svg",
  50827. extra: 2393/2304,
  50828. bottom: 40/2433
  50829. }
  50830. },
  50831. },
  50832. [
  50833. {
  50834. name: "Normal",
  50835. height: math.unit(9, "feet"),
  50836. default: true
  50837. },
  50838. ]
  50839. ))
  50840. characterMakers.push(() => makeCharacter(
  50841. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50842. {
  50843. front: {
  50844. height: math.unit(9, "feet"),
  50845. weight: math.unit(1000, "lb"),
  50846. name: "Front",
  50847. image: {
  50848. source: "./media/characters/hazel/front.svg",
  50849. extra: 2351/2298,
  50850. bottom: 38/2389
  50851. }
  50852. },
  50853. },
  50854. [
  50855. {
  50856. name: "Normal",
  50857. height: math.unit(9, "feet"),
  50858. default: true
  50859. },
  50860. ]
  50861. ))
  50862. characterMakers.push(() => makeCharacter(
  50863. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50864. {
  50865. front: {
  50866. height: math.unit(13, "feet"),
  50867. weight: math.unit(3200, "lb"),
  50868. name: "Front",
  50869. image: {
  50870. source: "./media/characters/emma/front.svg",
  50871. extra: 2263/2029,
  50872. bottom: 68/2331
  50873. }
  50874. },
  50875. },
  50876. [
  50877. {
  50878. name: "Normal",
  50879. height: math.unit(13, "feet"),
  50880. default: true
  50881. },
  50882. ]
  50883. ))
  50884. characterMakers.push(() => makeCharacter(
  50885. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50886. {
  50887. front: {
  50888. height: math.unit(11 + 9/12, "feet"),
  50889. weight: math.unit(2500, "lb"),
  50890. name: "Front",
  50891. image: {
  50892. source: "./media/characters/ilumina/front.svg",
  50893. extra: 2248/2209,
  50894. bottom: 164/2412
  50895. }
  50896. },
  50897. },
  50898. [
  50899. {
  50900. name: "Normal",
  50901. height: math.unit(11 + 9/12, "feet"),
  50902. default: true
  50903. },
  50904. ]
  50905. ))
  50906. characterMakers.push(() => makeCharacter(
  50907. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50908. {
  50909. front: {
  50910. height: math.unit(8 + 10/12, "feet"),
  50911. weight: math.unit(1350, "lb"),
  50912. name: "Front",
  50913. image: {
  50914. source: "./media/characters/moonshine/front.svg",
  50915. extra: 2395/2288,
  50916. bottom: 40/2435
  50917. }
  50918. },
  50919. },
  50920. [
  50921. {
  50922. name: "Normal",
  50923. height: math.unit(8 + 10/12, "feet"),
  50924. default: true
  50925. },
  50926. ]
  50927. ))
  50928. characterMakers.push(() => makeCharacter(
  50929. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50930. {
  50931. front: {
  50932. height: math.unit(14, "feet"),
  50933. weight: math.unit(3400, "lb"),
  50934. name: "Front",
  50935. image: {
  50936. source: "./media/characters/aletia/front.svg",
  50937. extra: 1185/1052,
  50938. bottom: 21/1206
  50939. }
  50940. },
  50941. },
  50942. [
  50943. {
  50944. name: "Compressed",
  50945. height: math.unit(8, "feet")
  50946. },
  50947. {
  50948. name: "Normal",
  50949. height: math.unit(14, "feet"),
  50950. default: true
  50951. },
  50952. ]
  50953. ))
  50954. characterMakers.push(() => makeCharacter(
  50955. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50956. {
  50957. front: {
  50958. height: math.unit(17, "feet"),
  50959. weight: math.unit(6500, "lb"),
  50960. name: "Front",
  50961. image: {
  50962. source: "./media/characters/deidra/front.svg",
  50963. extra: 1201/1081,
  50964. bottom: 16/1217
  50965. }
  50966. },
  50967. },
  50968. [
  50969. {
  50970. name: "Compressed",
  50971. height: math.unit(9 + 6/12, "feet")
  50972. },
  50973. {
  50974. name: "Normal",
  50975. height: math.unit(17, "feet"),
  50976. default: true
  50977. },
  50978. ]
  50979. ))
  50980. characterMakers.push(() => makeCharacter(
  50981. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50982. {
  50983. front: {
  50984. height: math.unit(7 + 4/12, "feet"),
  50985. weight: math.unit(280, "lb"),
  50986. name: "Front",
  50987. image: {
  50988. source: "./media/characters/freki-yrmori/front.svg",
  50989. extra: 1286/1182,
  50990. bottom: 29/1315
  50991. }
  50992. },
  50993. maw: {
  50994. height: math.unit(0.9, "feet"),
  50995. name: "Maw",
  50996. image: {
  50997. source: "./media/characters/freki-yrmori/maw.svg"
  50998. }
  50999. },
  51000. },
  51001. [
  51002. {
  51003. name: "Normal",
  51004. height: math.unit(7 + 4/12, "feet"),
  51005. default: true
  51006. },
  51007. {
  51008. name: "Macro",
  51009. height: math.unit(38.5, "meters")
  51010. },
  51011. ]
  51012. ))
  51013. characterMakers.push(() => makeCharacter(
  51014. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51015. {
  51016. side: {
  51017. height: math.unit(47.2, "meters"),
  51018. weight: math.unit(10000, "tons"),
  51019. name: "Side",
  51020. image: {
  51021. source: "./media/characters/aetherios/side.svg",
  51022. extra: 2363/642,
  51023. bottom: 221/2584
  51024. }
  51025. },
  51026. top: {
  51027. height: math.unit(240, "meters"),
  51028. weight: math.unit(10000, "tons"),
  51029. name: "Top",
  51030. image: {
  51031. source: "./media/characters/aetherios/top.svg"
  51032. }
  51033. },
  51034. bottom: {
  51035. height: math.unit(240, "meters"),
  51036. weight: math.unit(10000, "tons"),
  51037. name: "Bottom",
  51038. image: {
  51039. source: "./media/characters/aetherios/bottom.svg"
  51040. }
  51041. },
  51042. head: {
  51043. height: math.unit(38.6, "meters"),
  51044. name: "Head",
  51045. image: {
  51046. source: "./media/characters/aetherios/head.svg",
  51047. extra: 1335/1112,
  51048. bottom: 0/1335
  51049. }
  51050. },
  51051. front: {
  51052. height: math.unit(29, "meters"),
  51053. name: "Front",
  51054. image: {
  51055. source: "./media/characters/aetherios/front.svg",
  51056. extra: 1266/953,
  51057. bottom: 158/1424
  51058. }
  51059. },
  51060. maw: {
  51061. height: math.unit(16.37, "meters"),
  51062. name: "Maw",
  51063. image: {
  51064. source: "./media/characters/aetherios/maw.svg",
  51065. extra: 748/637,
  51066. bottom: 0/748
  51067. },
  51068. extraAttributes: {
  51069. preyCapacity: {
  51070. name: "Capacity",
  51071. power: 3,
  51072. type: "volume",
  51073. base: math.unit(1000, "people")
  51074. },
  51075. tongueSize: {
  51076. name: "Tongue Size",
  51077. power: 2,
  51078. type: "area",
  51079. base: math.unit(21, "m^2")
  51080. }
  51081. }
  51082. },
  51083. forepaw: {
  51084. height: math.unit(18, "meters"),
  51085. name: "Forepaw",
  51086. image: {
  51087. source: "./media/characters/aetherios/forepaw.svg"
  51088. }
  51089. },
  51090. hindpaw: {
  51091. height: math.unit(23, "meters"),
  51092. name: "Hindpaw",
  51093. image: {
  51094. source: "./media/characters/aetherios/hindpaw.svg"
  51095. }
  51096. },
  51097. genitals: {
  51098. height: math.unit(42, "meters"),
  51099. name: "Genitals",
  51100. image: {
  51101. source: "./media/characters/aetherios/genitals.svg"
  51102. }
  51103. },
  51104. },
  51105. [
  51106. {
  51107. name: "Normal",
  51108. height: math.unit(47.2, "meters"),
  51109. default: true
  51110. },
  51111. {
  51112. name: "Macro",
  51113. height: math.unit(160, "meters")
  51114. },
  51115. {
  51116. name: "Mega",
  51117. height: math.unit(1.87, "km")
  51118. },
  51119. {
  51120. name: "Giga",
  51121. height: math.unit(40000, "km")
  51122. },
  51123. {
  51124. name: "Stellar",
  51125. height: math.unit(158000000, "km")
  51126. },
  51127. {
  51128. name: "Cosmic",
  51129. height: math.unit(9.46e12, "km")
  51130. },
  51131. ]
  51132. ))
  51133. characterMakers.push(() => makeCharacter(
  51134. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51135. {
  51136. front: {
  51137. height: math.unit(5 + 4/12, "feet"),
  51138. weight: math.unit(80, "lb"),
  51139. name: "Front",
  51140. image: {
  51141. source: "./media/characters/mizu-gieeg/front.svg",
  51142. extra: 850/709,
  51143. bottom: 52/902
  51144. }
  51145. },
  51146. back: {
  51147. height: math.unit(5 + 4/12, "feet"),
  51148. weight: math.unit(80, "lb"),
  51149. name: "Back",
  51150. image: {
  51151. source: "./media/characters/mizu-gieeg/back.svg",
  51152. extra: 882/745,
  51153. bottom: 25/907
  51154. }
  51155. },
  51156. },
  51157. [
  51158. {
  51159. name: "Normal",
  51160. height: math.unit(5 + 4/12, "feet"),
  51161. default: true
  51162. },
  51163. ]
  51164. ))
  51165. characterMakers.push(() => makeCharacter(
  51166. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51167. {
  51168. front: {
  51169. height: math.unit(6, "feet"),
  51170. name: "Front",
  51171. image: {
  51172. source: "./media/characters/roselle-st-papier/front.svg",
  51173. extra: 1430/1280,
  51174. bottom: 37/1467
  51175. }
  51176. },
  51177. back: {
  51178. height: math.unit(6, "feet"),
  51179. name: "Back",
  51180. image: {
  51181. source: "./media/characters/roselle-st-papier/back.svg",
  51182. extra: 1491/1296,
  51183. bottom: 23/1514
  51184. }
  51185. },
  51186. ear: {
  51187. height: math.unit(1.26, "feet"),
  51188. name: "Ear",
  51189. image: {
  51190. source: "./media/characters/roselle-st-papier/ear.svg"
  51191. }
  51192. },
  51193. },
  51194. [
  51195. {
  51196. name: "Normal",
  51197. height: math.unit(150, "feet"),
  51198. default: true
  51199. },
  51200. ]
  51201. ))
  51202. characterMakers.push(() => makeCharacter(
  51203. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51204. {
  51205. front: {
  51206. height: math.unit(1, "inches"),
  51207. name: "Front",
  51208. image: {
  51209. source: "./media/characters/valargent/front.svg",
  51210. extra: 1825/1694,
  51211. bottom: 62/1887
  51212. }
  51213. },
  51214. back: {
  51215. height: math.unit(1, "inches"),
  51216. name: "Back",
  51217. image: {
  51218. source: "./media/characters/valargent/back.svg",
  51219. extra: 1775/1682,
  51220. bottom: 88/1863
  51221. }
  51222. },
  51223. },
  51224. [
  51225. {
  51226. name: "Micro",
  51227. height: math.unit(1, "inch"),
  51228. default: true
  51229. },
  51230. ]
  51231. ))
  51232. characterMakers.push(() => makeCharacter(
  51233. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51234. {
  51235. front: {
  51236. height: math.unit(3.4, "meters"),
  51237. name: "Front",
  51238. image: {
  51239. source: "./media/characters/zarina/front.svg",
  51240. extra: 1733/1425,
  51241. bottom: 93/1826
  51242. }
  51243. },
  51244. squatting: {
  51245. height: math.unit(2.14, "meters"),
  51246. name: "Squatting",
  51247. image: {
  51248. source: "./media/characters/zarina/squatting.svg",
  51249. extra: 1073/788,
  51250. bottom: 63/1136
  51251. }
  51252. },
  51253. back: {
  51254. height: math.unit(2.14, "meters"),
  51255. name: "Back",
  51256. image: {
  51257. source: "./media/characters/zarina/back.svg",
  51258. extra: 1128/885,
  51259. bottom: 0/1128
  51260. }
  51261. },
  51262. },
  51263. [
  51264. {
  51265. name: "Normal",
  51266. height: math.unit(3.4, "meters"),
  51267. default: true
  51268. },
  51269. {
  51270. name: "Big",
  51271. height: math.unit(5, "meters")
  51272. },
  51273. {
  51274. name: "Macro",
  51275. height: math.unit(110, "meters")
  51276. },
  51277. ]
  51278. ))
  51279. characterMakers.push(() => makeCharacter(
  51280. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51281. {
  51282. front: {
  51283. height: math.unit(7, "feet"),
  51284. name: "Front",
  51285. image: {
  51286. source: "./media/characters/ventus-astro-fox/front.svg",
  51287. extra: 1792/1623,
  51288. bottom: 28/1820
  51289. }
  51290. },
  51291. back: {
  51292. height: math.unit(7, "feet"),
  51293. name: "Back",
  51294. image: {
  51295. source: "./media/characters/ventus-astro-fox/back.svg",
  51296. extra: 1789/1620,
  51297. bottom: 31/1820
  51298. }
  51299. },
  51300. outfit: {
  51301. height: math.unit(7, "feet"),
  51302. name: "Outfit",
  51303. image: {
  51304. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51305. extra: 1054/925,
  51306. bottom: 15/1069
  51307. }
  51308. },
  51309. head: {
  51310. height: math.unit(1.12, "feet"),
  51311. name: "Head",
  51312. image: {
  51313. source: "./media/characters/ventus-astro-fox/head.svg",
  51314. extra: 866/504,
  51315. bottom: 0/866
  51316. }
  51317. },
  51318. hand: {
  51319. height: math.unit(1, "feet"),
  51320. name: "Hand",
  51321. image: {
  51322. source: "./media/characters/ventus-astro-fox/hand.svg"
  51323. }
  51324. },
  51325. paw: {
  51326. height: math.unit(1.5, "feet"),
  51327. name: "Paw",
  51328. image: {
  51329. source: "./media/characters/ventus-astro-fox/paw.svg"
  51330. }
  51331. },
  51332. },
  51333. [
  51334. {
  51335. name: "Normal",
  51336. height: math.unit(7, "feet"),
  51337. default: true
  51338. },
  51339. {
  51340. name: "Macro",
  51341. height: math.unit(200, "feet")
  51342. },
  51343. {
  51344. name: "Cosmic",
  51345. height: math.unit(3, "universes")
  51346. },
  51347. ]
  51348. ))
  51349. characterMakers.push(() => makeCharacter(
  51350. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51351. {
  51352. front: {
  51353. height: math.unit(3, "meters"),
  51354. weight: math.unit(7000, "lb"),
  51355. name: "Front",
  51356. image: {
  51357. source: "./media/characters/core-t/front.svg",
  51358. extra: 5729/4941,
  51359. bottom: 1129/6858
  51360. }
  51361. },
  51362. },
  51363. [
  51364. {
  51365. name: "Big",
  51366. height: math.unit(3, "meters"),
  51367. default: true
  51368. },
  51369. ]
  51370. ))
  51371. characterMakers.push(() => makeCharacter(
  51372. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51373. {
  51374. normal: {
  51375. height: math.unit(6 + 6/12, "feet"),
  51376. weight: math.unit(275, "lb"),
  51377. name: "Front",
  51378. image: {
  51379. source: "./media/characters/cadbunny/normal.svg",
  51380. extra: 1129/947,
  51381. bottom: 93/1222
  51382. },
  51383. default: true,
  51384. form: "normal"
  51385. },
  51386. gigantamax: {
  51387. height: math.unit(26, "feet"),
  51388. weight: math.unit(16000, "lb"),
  51389. name: "Front",
  51390. image: {
  51391. source: "./media/characters/cadbunny/gigantamax.svg",
  51392. extra: 1133/944,
  51393. bottom: 90/1223
  51394. },
  51395. default: true,
  51396. form: "gigantamax"
  51397. },
  51398. },
  51399. [
  51400. {
  51401. name: "Normal",
  51402. height: math.unit(6 + 6/12, "feet"),
  51403. default: true,
  51404. form: "normal"
  51405. },
  51406. {
  51407. name: "Small",
  51408. height: math.unit(26, "feet"),
  51409. default: true,
  51410. form: "gigantamax"
  51411. },
  51412. {
  51413. name: "Large",
  51414. height: math.unit(78, "feet"),
  51415. form: "gigantamax"
  51416. },
  51417. ],
  51418. {
  51419. "normal": {
  51420. name: "Normal",
  51421. default: true
  51422. },
  51423. "gigantamax": {
  51424. name: "Gigantamax"
  51425. }
  51426. }
  51427. ))
  51428. characterMakers.push(() => makeCharacter(
  51429. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51430. {
  51431. anthroFront: {
  51432. height: math.unit(8, "feet"),
  51433. weight: math.unit(300, "lb"),
  51434. name: "Front",
  51435. image: {
  51436. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51437. extra: 1272/1176,
  51438. bottom: 53/1325
  51439. },
  51440. form: "anthro",
  51441. default: true
  51442. },
  51443. feralSide: {
  51444. height: math.unit(4, "feet"),
  51445. weight: math.unit(250, "lb"),
  51446. name: "Side",
  51447. image: {
  51448. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51449. extra: 731/621,
  51450. bottom: 0/731
  51451. },
  51452. form: "feral",
  51453. default: true
  51454. },
  51455. },
  51456. [
  51457. {
  51458. name: "Regular",
  51459. height: math.unit(8, "feet"),
  51460. form: "anthro"
  51461. },
  51462. {
  51463. name: "Macro",
  51464. height: math.unit(250, "feet"),
  51465. form: "anthro",
  51466. default: true
  51467. },
  51468. {
  51469. name: "Regular",
  51470. height: math.unit(4, "feet"),
  51471. form: "feral"
  51472. },
  51473. {
  51474. name: "Macro",
  51475. height: math.unit(125, "feet"),
  51476. form: "feral",
  51477. default: true
  51478. },
  51479. ],
  51480. {
  51481. "anthro": {
  51482. name: "Anthro",
  51483. default: true
  51484. },
  51485. "feral": {
  51486. name: "Feral",
  51487. },
  51488. }
  51489. ))
  51490. characterMakers.push(() => makeCharacter(
  51491. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51492. {
  51493. front: {
  51494. height: math.unit(11 + 10/12, "feet"),
  51495. weight: math.unit(1587, "kg"),
  51496. name: "Front",
  51497. image: {
  51498. source: "./media/characters/maple-javira-dragon/front.svg",
  51499. extra: 1136/744,
  51500. bottom: 73/1209
  51501. }
  51502. },
  51503. side: {
  51504. height: math.unit(11 + 10/12, "feet"),
  51505. weight: math.unit(1587, "kg"),
  51506. name: "Side",
  51507. image: {
  51508. source: "./media/characters/maple-javira-dragon/side.svg",
  51509. extra: 712/505,
  51510. bottom: 17/729
  51511. }
  51512. },
  51513. head: {
  51514. height: math.unit(8.05, "feet"),
  51515. name: "Head",
  51516. image: {
  51517. source: "./media/characters/maple-javira-dragon/head.svg",
  51518. extra: 1420/1344,
  51519. bottom: 0/1420
  51520. }
  51521. },
  51522. },
  51523. [
  51524. {
  51525. name: "Normal",
  51526. height: math.unit(11 + 10/12, "feet"),
  51527. default: true
  51528. },
  51529. ]
  51530. ))
  51531. characterMakers.push(() => makeCharacter(
  51532. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51533. {
  51534. front: {
  51535. height: math.unit(117, "cm"),
  51536. weight: math.unit(50, "kg"),
  51537. name: "Front",
  51538. image: {
  51539. source: "./media/characters/sonia-wyverntail/front.svg",
  51540. extra: 708/592,
  51541. bottom: 25/733
  51542. }
  51543. },
  51544. },
  51545. [
  51546. {
  51547. name: "Normal",
  51548. height: math.unit(117, "cm"),
  51549. default: true
  51550. },
  51551. ]
  51552. ))
  51553. characterMakers.push(() => makeCharacter(
  51554. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51555. {
  51556. front: {
  51557. height: math.unit(6 + 5/12, "feet"),
  51558. name: "Front",
  51559. image: {
  51560. source: "./media/characters/micah/front.svg",
  51561. extra: 1758/1546,
  51562. bottom: 214/1972
  51563. }
  51564. },
  51565. },
  51566. [
  51567. {
  51568. name: "Normal",
  51569. height: math.unit(6 + 5/12, "feet"),
  51570. default: true
  51571. },
  51572. ]
  51573. ))
  51574. characterMakers.push(() => makeCharacter(
  51575. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51576. {
  51577. front: {
  51578. height: math.unit(1.75, "meters"),
  51579. weight: math.unit(100, "kg"),
  51580. name: "Front",
  51581. image: {
  51582. source: "./media/characters/zarya/front.svg",
  51583. extra: 741/735,
  51584. bottom: 44/785
  51585. },
  51586. extraAttributes: {
  51587. "tailLength": {
  51588. name: "Tail Length",
  51589. power: 1,
  51590. type: "length",
  51591. base: math.unit(180, "cm")
  51592. },
  51593. "pawLength": {
  51594. name: "Paw Length",
  51595. power: 1,
  51596. type: "length",
  51597. base: math.unit(31, "cm")
  51598. },
  51599. }
  51600. },
  51601. side: {
  51602. height: math.unit(1.75, "meters"),
  51603. weight: math.unit(100, "kg"),
  51604. name: "Side",
  51605. image: {
  51606. source: "./media/characters/zarya/side.svg",
  51607. extra: 776/770,
  51608. bottom: 17/793
  51609. },
  51610. extraAttributes: {
  51611. "tailLength": {
  51612. name: "Tail Length",
  51613. power: 1,
  51614. type: "length",
  51615. base: math.unit(180, "cm")
  51616. },
  51617. "pawLength": {
  51618. name: "Paw Length",
  51619. power: 1,
  51620. type: "length",
  51621. base: math.unit(31, "cm")
  51622. },
  51623. }
  51624. },
  51625. back: {
  51626. height: math.unit(1.75, "meters"),
  51627. weight: math.unit(100, "kg"),
  51628. name: "Back",
  51629. image: {
  51630. source: "./media/characters/zarya/back.svg",
  51631. extra: 741/735,
  51632. bottom: 44/785
  51633. },
  51634. extraAttributes: {
  51635. "tailLength": {
  51636. name: "Tail Length",
  51637. power: 1,
  51638. type: "length",
  51639. base: math.unit(180, "cm")
  51640. },
  51641. "pawLength": {
  51642. name: "Paw Length",
  51643. power: 1,
  51644. type: "length",
  51645. base: math.unit(31, "cm")
  51646. },
  51647. }
  51648. },
  51649. frontNoTail: {
  51650. height: math.unit(1.75, "meters"),
  51651. weight: math.unit(100, "kg"),
  51652. name: "Front (No Tail)",
  51653. image: {
  51654. source: "./media/characters/zarya/front-no-tail.svg",
  51655. extra: 741/735,
  51656. bottom: 44/785
  51657. },
  51658. extraAttributes: {
  51659. "tailLength": {
  51660. name: "Tail Length",
  51661. power: 1,
  51662. type: "length",
  51663. base: math.unit(180, "cm")
  51664. },
  51665. "pawLength": {
  51666. name: "Paw Length",
  51667. power: 1,
  51668. type: "length",
  51669. base: math.unit(31, "cm")
  51670. },
  51671. }
  51672. },
  51673. dressed: {
  51674. height: math.unit(1.75, "meters"),
  51675. weight: math.unit(100, "kg"),
  51676. name: "Dressed",
  51677. image: {
  51678. source: "./media/characters/zarya/dressed.svg",
  51679. extra: 683/672,
  51680. bottom: 79/762
  51681. },
  51682. extraAttributes: {
  51683. "tailLength": {
  51684. name: "Tail Length",
  51685. power: 1,
  51686. type: "length",
  51687. base: math.unit(180, "cm")
  51688. },
  51689. "pawLength": {
  51690. name: "Paw Length",
  51691. power: 1,
  51692. type: "length",
  51693. base: math.unit(31, "cm")
  51694. },
  51695. }
  51696. },
  51697. },
  51698. [
  51699. {
  51700. name: "Micro",
  51701. height: math.unit(5, "cm")
  51702. },
  51703. {
  51704. name: "Normal",
  51705. height: math.unit(1.75, "meters"),
  51706. default: true
  51707. },
  51708. {
  51709. name: "Macro",
  51710. height: math.unit(122, "meters")
  51711. },
  51712. ]
  51713. ))
  51714. characterMakers.push(() => makeCharacter(
  51715. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51716. {
  51717. front: {
  51718. height: math.unit(7.5, "feet"),
  51719. name: "Front",
  51720. image: {
  51721. source: "./media/characters/sven-hatisson/front.svg",
  51722. extra: 917/857,
  51723. bottom: 42/959
  51724. }
  51725. },
  51726. back: {
  51727. height: math.unit(7.5, "feet"),
  51728. name: "Back",
  51729. image: {
  51730. source: "./media/characters/sven-hatisson/back.svg",
  51731. extra: 903/856,
  51732. bottom: 15/918
  51733. }
  51734. },
  51735. },
  51736. [
  51737. {
  51738. name: "Base Height",
  51739. height: math.unit(7.5, "feet")
  51740. },
  51741. {
  51742. name: "Usual Height",
  51743. height: math.unit(13.5, "feet"),
  51744. default: true
  51745. },
  51746. {
  51747. name: "Smaller Macro",
  51748. height: math.unit(85, "feet")
  51749. },
  51750. {
  51751. name: "Moderate Macro",
  51752. height: math.unit(320, "feet")
  51753. },
  51754. {
  51755. name: "Large Macro",
  51756. height: math.unit(1000, "feet")
  51757. },
  51758. {
  51759. name: "Largest Size",
  51760. height: math.unit(2, "miles")
  51761. },
  51762. ]
  51763. ))
  51764. characterMakers.push(() => makeCharacter(
  51765. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51766. {
  51767. side: {
  51768. height: math.unit(1.8, "meters"),
  51769. weight: math.unit(275, "kg"),
  51770. name: "Side",
  51771. image: {
  51772. source: "./media/characters/terra/side.svg",
  51773. extra: 1273/1147,
  51774. bottom: 0/1273
  51775. }
  51776. },
  51777. },
  51778. [
  51779. {
  51780. name: "Normal",
  51781. height: math.unit(16.2, "meters"),
  51782. default: true
  51783. },
  51784. ]
  51785. ))
  51786. characterMakers.push(() => makeCharacter(
  51787. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51788. {
  51789. borzoiFront: {
  51790. height: math.unit(6 + 9/12, "feet"),
  51791. name: "Front",
  51792. image: {
  51793. source: "./media/characters/rae/borzoi-front.svg",
  51794. extra: 1161/1098,
  51795. bottom: 31/1192
  51796. },
  51797. form: "borzoi",
  51798. default: true
  51799. },
  51800. werewolfFront: {
  51801. height: math.unit(8 + 7/12, "feet"),
  51802. name: "Front",
  51803. image: {
  51804. source: "./media/characters/rae/werewolf-front.svg",
  51805. extra: 1411/1334,
  51806. bottom: 127/1538
  51807. },
  51808. form: "werewolf",
  51809. default: true
  51810. },
  51811. },
  51812. [
  51813. {
  51814. name: "Normal",
  51815. height: math.unit(6 + 9/12, "feet"),
  51816. default: true,
  51817. form: "borzoi"
  51818. },
  51819. {
  51820. name: "Normal",
  51821. height: math.unit(8 + 7/12, "feet"),
  51822. default: true,
  51823. form: "werewolf"
  51824. },
  51825. ],
  51826. {
  51827. "borzoi": {
  51828. name: "Borzoi",
  51829. default: true
  51830. },
  51831. "werewolf": {
  51832. name: "Werewolf",
  51833. },
  51834. }
  51835. ))
  51836. characterMakers.push(() => makeCharacter(
  51837. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51838. {
  51839. front: {
  51840. height: math.unit(8 + 7/12, "feet"),
  51841. weight: math.unit(482, "lb"),
  51842. name: "Front",
  51843. image: {
  51844. source: "./media/characters/kit/front.svg",
  51845. extra: 1247/1103,
  51846. bottom: 41/1288
  51847. }
  51848. },
  51849. back: {
  51850. height: math.unit(8 + 7/12, "feet"),
  51851. weight: math.unit(482, "lb"),
  51852. name: "Back",
  51853. image: {
  51854. source: "./media/characters/kit/back.svg",
  51855. extra: 1252/1123,
  51856. bottom: 21/1273
  51857. }
  51858. },
  51859. paw: {
  51860. height: math.unit(1.46, "feet"),
  51861. name: "Paw",
  51862. image: {
  51863. source: "./media/characters/kit/paw.svg"
  51864. }
  51865. },
  51866. },
  51867. [
  51868. {
  51869. name: "Normal",
  51870. height: math.unit(2.61, "meters"),
  51871. default: true
  51872. },
  51873. {
  51874. name: "\"Tall\"",
  51875. height: math.unit(8.21, "meters")
  51876. },
  51877. {
  51878. name: "Tall",
  51879. height: math.unit(19.6, "meters")
  51880. },
  51881. {
  51882. name: "Very Tall",
  51883. height: math.unit(57.91, "meters")
  51884. },
  51885. {
  51886. name: "Semi-Macro",
  51887. height: math.unit(138.64, "meters")
  51888. },
  51889. {
  51890. name: "Macro",
  51891. height: math.unit(831.99, "meters")
  51892. },
  51893. {
  51894. name: "EX-Macro",
  51895. height: math.unit(96451121, "meters")
  51896. },
  51897. {
  51898. name: "S1-Omnipotent",
  51899. height: math.unit(4.42074e+9, "meters")
  51900. },
  51901. {
  51902. name: "S2-Omnipotent",
  51903. height: math.unit(9.42074e+17, "meters")
  51904. },
  51905. {
  51906. name: "Omnipotent",
  51907. height: math.unit(4.23112e+24, "meters")
  51908. },
  51909. {
  51910. name: "Hypergod",
  51911. height: math.unit(5.05176e+27, "meters")
  51912. },
  51913. {
  51914. name: "Hypergod-EX",
  51915. height: math.unit(9.45532e+49, "meters")
  51916. },
  51917. {
  51918. name: "Hypergod-SP",
  51919. height: math.unit(9.45532e+195, "meters")
  51920. },
  51921. ]
  51922. ))
  51923. characterMakers.push(() => makeCharacter(
  51924. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51925. {
  51926. side: {
  51927. height: math.unit(0.6, "meters"),
  51928. weight: math.unit(24, "kg"),
  51929. name: "Side",
  51930. image: {
  51931. source: "./media/characters/celeste/side.svg",
  51932. extra: 810/517,
  51933. bottom: 53/863
  51934. }
  51935. },
  51936. },
  51937. [
  51938. {
  51939. name: "Velociraptor",
  51940. height: math.unit(0.6, "meters"),
  51941. default: true
  51942. },
  51943. {
  51944. name: "Utahraptor",
  51945. height: math.unit(1.8, "meters")
  51946. },
  51947. {
  51948. name: "Gallimimus",
  51949. height: math.unit(4.0, "meters")
  51950. },
  51951. {
  51952. name: "Large",
  51953. height: math.unit(20, "meters")
  51954. },
  51955. {
  51956. name: "Planetary",
  51957. height: math.unit(50, "megameters")
  51958. },
  51959. {
  51960. name: "Stellar",
  51961. height: math.unit(1.5, "gigameters")
  51962. },
  51963. {
  51964. name: "Galactic",
  51965. height: math.unit(100, "exameters")
  51966. },
  51967. ]
  51968. ))
  51969. characterMakers.push(() => makeCharacter(
  51970. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51971. {
  51972. front: {
  51973. height: math.unit(6, "feet"),
  51974. weight: math.unit(210, "lb"),
  51975. name: "Front",
  51976. image: {
  51977. source: "./media/characters/glacia/front.svg",
  51978. extra: 958/901,
  51979. bottom: 45/1003
  51980. }
  51981. },
  51982. },
  51983. [
  51984. {
  51985. name: "Macro",
  51986. height: math.unit(1000, "meters"),
  51987. default: true
  51988. },
  51989. ]
  51990. ))
  51991. characterMakers.push(() => makeCharacter(
  51992. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51993. {
  51994. front: {
  51995. height: math.unit(4, "meters"),
  51996. name: "Front",
  51997. image: {
  51998. source: "./media/characters/giri/front.svg",
  51999. extra: 966/894,
  52000. bottom: 21/987
  52001. }
  52002. },
  52003. },
  52004. [
  52005. {
  52006. name: "Normal",
  52007. height: math.unit(4, "meters"),
  52008. default: true
  52009. },
  52010. ]
  52011. ))
  52012. characterMakers.push(() => makeCharacter(
  52013. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52014. {
  52015. back: {
  52016. height: math.unit(4, "feet"),
  52017. weight: math.unit(37, "lb"),
  52018. name: "Back",
  52019. image: {
  52020. source: "./media/characters/tin/back.svg",
  52021. extra: 845/780,
  52022. bottom: 28/873
  52023. }
  52024. },
  52025. },
  52026. [
  52027. {
  52028. name: "Normal",
  52029. height: math.unit(4, "feet"),
  52030. default: true
  52031. },
  52032. ]
  52033. ))
  52034. characterMakers.push(() => makeCharacter(
  52035. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52036. {
  52037. front: {
  52038. height: math.unit(25, "feet"),
  52039. name: "Front",
  52040. image: {
  52041. source: "./media/characters/cadenza-vivace/front.svg",
  52042. extra: 1842/1578,
  52043. bottom: 30/1872
  52044. }
  52045. },
  52046. },
  52047. [
  52048. {
  52049. name: "Macro",
  52050. height: math.unit(25, "feet"),
  52051. default: true
  52052. },
  52053. ]
  52054. ))
  52055. characterMakers.push(() => makeCharacter(
  52056. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52057. {
  52058. front: {
  52059. height: math.unit(10, "feet"),
  52060. weight: math.unit(625, "kg"),
  52061. name: "Front",
  52062. image: {
  52063. source: "./media/characters/zain/front.svg",
  52064. extra: 1682/1498,
  52065. bottom: 223/1905
  52066. }
  52067. },
  52068. back: {
  52069. height: math.unit(10, "feet"),
  52070. weight: math.unit(625, "kg"),
  52071. name: "Back",
  52072. image: {
  52073. source: "./media/characters/zain/back.svg",
  52074. extra: 1814/1657,
  52075. bottom: 152/1966
  52076. }
  52077. },
  52078. head: {
  52079. height: math.unit(10, "feet"),
  52080. weight: math.unit(625, "kg"),
  52081. name: "Head",
  52082. image: {
  52083. source: "./media/characters/zain/head.svg",
  52084. extra: 1059/762,
  52085. bottom: 0/1059
  52086. }
  52087. },
  52088. },
  52089. [
  52090. {
  52091. name: "Normal",
  52092. height: math.unit(10, "feet"),
  52093. default: true
  52094. },
  52095. ]
  52096. ))
  52097. characterMakers.push(() => makeCharacter(
  52098. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52099. {
  52100. front: {
  52101. height: math.unit(6 + 5/12, "feet"),
  52102. weight: math.unit(750, "lb"),
  52103. name: "Front",
  52104. image: {
  52105. source: "./media/characters/ruchex/front.svg",
  52106. extra: 877/820,
  52107. bottom: 17/894
  52108. },
  52109. extraAttributes: {
  52110. "width": {
  52111. name: "Width",
  52112. power: 1,
  52113. type: "length",
  52114. base: math.unit(4.757, "feet")
  52115. },
  52116. }
  52117. },
  52118. },
  52119. [
  52120. {
  52121. name: "Normal",
  52122. height: math.unit(6 + 5/12, "feet"),
  52123. default: true
  52124. },
  52125. ]
  52126. ))
  52127. characterMakers.push(() => makeCharacter(
  52128. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52129. {
  52130. dressedFront: {
  52131. height: math.unit(191, "cm"),
  52132. weight: math.unit(80, "kg"),
  52133. name: "Front",
  52134. image: {
  52135. source: "./media/characters/buster/dressed-front.svg",
  52136. extra: 1022/973,
  52137. bottom: 69/1091
  52138. }
  52139. },
  52140. dressedBack: {
  52141. height: math.unit(191, "cm"),
  52142. weight: math.unit(80, "kg"),
  52143. name: "Back",
  52144. image: {
  52145. source: "./media/characters/buster/dressed-back.svg",
  52146. extra: 1018/970,
  52147. bottom: 55/1073
  52148. }
  52149. },
  52150. nudeFront: {
  52151. height: math.unit(191, "cm"),
  52152. weight: math.unit(80, "kg"),
  52153. name: "Front (Nude)",
  52154. image: {
  52155. source: "./media/characters/buster/nude-front.svg",
  52156. extra: 1022/973,
  52157. bottom: 69/1091
  52158. }
  52159. },
  52160. nudeBack: {
  52161. height: math.unit(191, "cm"),
  52162. weight: math.unit(80, "kg"),
  52163. name: "Back (Nude)",
  52164. image: {
  52165. source: "./media/characters/buster/nude-back.svg",
  52166. extra: 1018/970,
  52167. bottom: 55/1073
  52168. }
  52169. },
  52170. dick: {
  52171. height: math.unit(2.59, "feet"),
  52172. name: "Dick",
  52173. image: {
  52174. source: "./media/characters/buster/dick.svg"
  52175. }
  52176. },
  52177. ass: {
  52178. height: math.unit(1.2, "feet"),
  52179. name: "Ass",
  52180. image: {
  52181. source: "./media/characters/buster/ass.svg"
  52182. }
  52183. },
  52184. },
  52185. [
  52186. {
  52187. name: "Normal",
  52188. height: math.unit(191, "cm"),
  52189. default: true
  52190. },
  52191. ]
  52192. ))
  52193. characterMakers.push(() => makeCharacter(
  52194. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52195. {
  52196. side: {
  52197. height: math.unit(8.1, "feet"),
  52198. weight: math.unit(3500, "lb"),
  52199. name: "Side",
  52200. image: {
  52201. source: "./media/characters/sonya/side.svg",
  52202. extra: 1730/1317,
  52203. bottom: 86/1816
  52204. }
  52205. },
  52206. },
  52207. [
  52208. {
  52209. name: "Normal",
  52210. height: math.unit(8.1, "feet"),
  52211. default: true
  52212. },
  52213. ]
  52214. ))
  52215. characterMakers.push(() => makeCharacter(
  52216. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52217. {
  52218. front: {
  52219. height: math.unit(6, "feet"),
  52220. weight: math.unit(150, "lb"),
  52221. name: "Front",
  52222. image: {
  52223. source: "./media/characters/cadence-andrysiak/front.svg",
  52224. extra: 1164/1121,
  52225. bottom: 60/1224
  52226. }
  52227. },
  52228. back: {
  52229. height: math.unit(6, "feet"),
  52230. weight: math.unit(150, "lb"),
  52231. name: "Back",
  52232. image: {
  52233. source: "./media/characters/cadence-andrysiak/back.svg",
  52234. extra: 1200/1165,
  52235. bottom: 9/1209
  52236. }
  52237. },
  52238. dressed: {
  52239. height: math.unit(6, "feet"),
  52240. weight: math.unit(150, "lb"),
  52241. name: "Dressed",
  52242. image: {
  52243. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52244. extra: 1164/1121,
  52245. bottom: 60/1224
  52246. }
  52247. },
  52248. },
  52249. [
  52250. {
  52251. name: "Micro",
  52252. height: math.unit(1, "mm")
  52253. },
  52254. {
  52255. name: "Normal",
  52256. height: math.unit(6, "feet"),
  52257. default: true
  52258. },
  52259. ]
  52260. ))
  52261. characterMakers.push(() => makeCharacter(
  52262. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52263. {
  52264. front: {
  52265. height: math.unit(60, "inches"),
  52266. weight: math.unit(16, "lb"),
  52267. preyCapacity: math.unit(80, "liters"),
  52268. name: "Front",
  52269. image: {
  52270. source: "./media/characters/penny-lynx/front.svg",
  52271. extra: 1959/1769,
  52272. bottom: 49/2008
  52273. }
  52274. },
  52275. },
  52276. [
  52277. {
  52278. name: "Nokia",
  52279. height: math.unit(2, "inches")
  52280. },
  52281. {
  52282. name: "Desktop",
  52283. height: math.unit(24, "inches")
  52284. },
  52285. {
  52286. name: "TV",
  52287. height: math.unit(60, "inches")
  52288. },
  52289. {
  52290. name: "Jumbotron",
  52291. height: math.unit(12, "feet")
  52292. },
  52293. {
  52294. name: "Billboard",
  52295. height: math.unit(48, "feet"),
  52296. default: true
  52297. },
  52298. {
  52299. name: "IMAX",
  52300. height: math.unit(96, "feet")
  52301. },
  52302. {
  52303. name: "SINGULARITY",
  52304. height: math.unit(864938, "miles")
  52305. },
  52306. ]
  52307. ))
  52308. characterMakers.push(() => makeCharacter(
  52309. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52310. {
  52311. front: {
  52312. height: math.unit(5 + 4/12, "feet"),
  52313. weight: math.unit(230, "lb"),
  52314. name: "Front",
  52315. image: {
  52316. source: "./media/characters/sukebe/front.svg",
  52317. extra: 2130/2038,
  52318. bottom: 90/2220
  52319. }
  52320. },
  52321. back: {
  52322. height: math.unit(3.48, "feet"),
  52323. weight: math.unit(230, "lb"),
  52324. name: "Back",
  52325. image: {
  52326. source: "./media/characters/sukebe/back.svg",
  52327. extra: 1670/1604,
  52328. bottom: 0/1670
  52329. }
  52330. },
  52331. },
  52332. [
  52333. {
  52334. name: "Normal",
  52335. height: math.unit(5 + 4/12, "feet"),
  52336. default: true
  52337. },
  52338. ]
  52339. ))
  52340. characterMakers.push(() => makeCharacter(
  52341. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52342. {
  52343. front: {
  52344. height: math.unit(6, "feet"),
  52345. name: "Front",
  52346. image: {
  52347. source: "./media/characters/nylla/front.svg",
  52348. extra: 1868/1699,
  52349. bottom: 97/1965
  52350. }
  52351. },
  52352. back: {
  52353. height: math.unit(6, "feet"),
  52354. name: "Back",
  52355. image: {
  52356. source: "./media/characters/nylla/back.svg",
  52357. extra: 1889/1712,
  52358. bottom: 93/1982
  52359. }
  52360. },
  52361. frontNsfw: {
  52362. height: math.unit(6, "feet"),
  52363. name: "Front (NSFW)",
  52364. image: {
  52365. source: "./media/characters/nylla/front-nsfw.svg",
  52366. extra: 1868/1699,
  52367. bottom: 97/1965
  52368. },
  52369. extraAttributes: {
  52370. "dickLength": {
  52371. name: "Dick Length",
  52372. power: 1,
  52373. type: "length",
  52374. base: math.unit(1.4, "feet")
  52375. },
  52376. "cumVolume": {
  52377. name: "Cum Volume",
  52378. power: 3,
  52379. type: "volume",
  52380. base: math.unit(100, "mL")
  52381. },
  52382. }
  52383. },
  52384. backNsfw: {
  52385. height: math.unit(6, "feet"),
  52386. name: "Back (NSFW)",
  52387. image: {
  52388. source: "./media/characters/nylla/back-nsfw.svg",
  52389. extra: 1889/1712,
  52390. bottom: 93/1982
  52391. }
  52392. },
  52393. maw: {
  52394. height: math.unit(2.10, "feet"),
  52395. name: "Maw",
  52396. image: {
  52397. source: "./media/characters/nylla/maw.svg"
  52398. }
  52399. },
  52400. paws: {
  52401. height: math.unit(2.06, "feet"),
  52402. name: "Paws",
  52403. image: {
  52404. source: "./media/characters/nylla/paws.svg"
  52405. }
  52406. },
  52407. muzzle: {
  52408. height: math.unit(0.61, "feet"),
  52409. name: "Muzzle",
  52410. image: {
  52411. source: "./media/characters/nylla/muzzle.svg"
  52412. }
  52413. },
  52414. sheath: {
  52415. height: math.unit(1.305, "feet"),
  52416. name: "Sheath",
  52417. image: {
  52418. source: "./media/characters/nylla/sheath.svg"
  52419. }
  52420. },
  52421. },
  52422. [
  52423. {
  52424. name: "Micro",
  52425. height: math.unit(7.5, "inches")
  52426. },
  52427. {
  52428. name: "Normal",
  52429. height: math.unit(7, "feet"),
  52430. default: true
  52431. },
  52432. {
  52433. name: "Macro",
  52434. height: math.unit(60, "feet")
  52435. },
  52436. {
  52437. name: "Mega",
  52438. height: math.unit(200, "feet")
  52439. },
  52440. ]
  52441. ))
  52442. characterMakers.push(() => makeCharacter(
  52443. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52444. {
  52445. front: {
  52446. height: math.unit(10, "feet"),
  52447. weight: math.unit(2300, "lb"),
  52448. name: "Front",
  52449. image: {
  52450. source: "./media/characters/hunt3r/front.svg",
  52451. extra: 1909/1742,
  52452. bottom: 46/1955
  52453. }
  52454. },
  52455. },
  52456. [
  52457. {
  52458. name: "Normal",
  52459. height: math.unit(10, "feet"),
  52460. default: true
  52461. },
  52462. ]
  52463. ))
  52464. characterMakers.push(() => makeCharacter(
  52465. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52466. {
  52467. dressed: {
  52468. height: math.unit(11, "feet"),
  52469. weight: math.unit(18500, "lb"),
  52470. preyCapacity: math.unit(9, "people"),
  52471. name: "Dressed",
  52472. image: {
  52473. source: "./media/characters/cylphis/dressed.svg",
  52474. extra: 1028/1003,
  52475. bottom: 75/1103
  52476. },
  52477. },
  52478. undressed: {
  52479. height: math.unit(11, "feet"),
  52480. weight: math.unit(18500, "lb"),
  52481. preyCapacity: math.unit(9, "people"),
  52482. name: "Undressed",
  52483. image: {
  52484. source: "./media/characters/cylphis/undressed.svg",
  52485. extra: 1028/1003,
  52486. bottom: 75/1103
  52487. }
  52488. },
  52489. full: {
  52490. height: math.unit(11, "feet"),
  52491. weight: math.unit(18500 + 150*9, "lb"),
  52492. preyCapacity: math.unit(9, "people"),
  52493. name: "Full",
  52494. image: {
  52495. source: "./media/characters/cylphis/full.svg",
  52496. extra: 1028/1003,
  52497. bottom: 75/1103
  52498. }
  52499. },
  52500. },
  52501. [
  52502. {
  52503. name: "Small",
  52504. height: math.unit(8, "feet")
  52505. },
  52506. {
  52507. name: "Normal",
  52508. height: math.unit(11, "feet"),
  52509. default: true
  52510. },
  52511. ]
  52512. ))
  52513. characterMakers.push(() => makeCharacter(
  52514. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52515. {
  52516. front: {
  52517. height: math.unit(2 + 7/12, "feet"),
  52518. name: "Front",
  52519. image: {
  52520. source: "./media/characters/orishan/front.svg",
  52521. extra: 1058/1023,
  52522. bottom: 23/1081
  52523. }
  52524. },
  52525. back: {
  52526. height: math.unit(2 + 7/12, "feet"),
  52527. name: "Back",
  52528. image: {
  52529. source: "./media/characters/orishan/back.svg",
  52530. extra: 1058/1023,
  52531. bottom: 23/1081
  52532. }
  52533. },
  52534. },
  52535. [
  52536. {
  52537. name: "Micro",
  52538. height: math.unit(2, "cm")
  52539. },
  52540. {
  52541. name: "Normal",
  52542. height: math.unit(2 + 7/12, "feet"),
  52543. default: true
  52544. },
  52545. ]
  52546. ))
  52547. characterMakers.push(() => makeCharacter(
  52548. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52549. {
  52550. front: {
  52551. height: math.unit(3, "meters"),
  52552. weight: math.unit(508, "kg"),
  52553. name: "Front",
  52554. image: {
  52555. source: "./media/characters/seranis/front.svg",
  52556. extra: 1478/1454,
  52557. bottom: 41/1519
  52558. }
  52559. },
  52560. },
  52561. [
  52562. {
  52563. name: "Normal",
  52564. height: math.unit(3, "meters"),
  52565. default: true
  52566. },
  52567. {
  52568. name: "Macro",
  52569. height: math.unit(108, "meters")
  52570. },
  52571. {
  52572. name: "Megamacro",
  52573. height: math.unit(1250, "meters")
  52574. },
  52575. ]
  52576. ))
  52577. characterMakers.push(() => makeCharacter(
  52578. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52579. {
  52580. undressed: {
  52581. height: math.unit(5 + 3/12, "feet"),
  52582. name: "Undressed",
  52583. image: {
  52584. source: "./media/characters/ankou/undressed.svg",
  52585. extra: 1301/1213,
  52586. bottom: 87/1388
  52587. }
  52588. },
  52589. dressed: {
  52590. height: math.unit(5 + 3/12, "feet"),
  52591. name: "Dressed",
  52592. image: {
  52593. source: "./media/characters/ankou/dressed.svg",
  52594. extra: 1301/1213,
  52595. bottom: 87/1388
  52596. }
  52597. },
  52598. head: {
  52599. height: math.unit(1.61, "feet"),
  52600. name: "Head",
  52601. image: {
  52602. source: "./media/characters/ankou/head.svg"
  52603. }
  52604. },
  52605. },
  52606. [
  52607. {
  52608. name: "Normal",
  52609. height: math.unit(5 + 3/12, "feet"),
  52610. default: true
  52611. },
  52612. ]
  52613. ))
  52614. characterMakers.push(() => makeCharacter(
  52615. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52616. {
  52617. side: {
  52618. height: math.unit(6 + 3/12, "feet"),
  52619. weight: math.unit(200, "kg"),
  52620. name: "Side",
  52621. image: {
  52622. source: "./media/characters/juniper-skunktaur/side.svg",
  52623. extra: 1574/1229,
  52624. bottom: 38/1612
  52625. }
  52626. },
  52627. front: {
  52628. height: math.unit(6 + 3/12, "feet"),
  52629. weight: math.unit(200, "kg"),
  52630. name: "Front",
  52631. image: {
  52632. source: "./media/characters/juniper-skunktaur/front.svg",
  52633. extra: 1337/1278,
  52634. bottom: 22/1359
  52635. }
  52636. },
  52637. back: {
  52638. height: math.unit(6 + 3/12, "feet"),
  52639. weight: math.unit(200, "kg"),
  52640. name: "Back",
  52641. image: {
  52642. source: "./media/characters/juniper-skunktaur/back.svg",
  52643. extra: 1618/1273,
  52644. bottom: 13/1631
  52645. }
  52646. },
  52647. top: {
  52648. height: math.unit(2.62, "feet"),
  52649. weight: math.unit(200, "kg"),
  52650. name: "Top",
  52651. image: {
  52652. source: "./media/characters/juniper-skunktaur/top.svg"
  52653. }
  52654. },
  52655. },
  52656. [
  52657. {
  52658. name: "Normal",
  52659. height: math.unit(6 + 3/12, "feet"),
  52660. default: true
  52661. },
  52662. ]
  52663. ))
  52664. characterMakers.push(() => makeCharacter(
  52665. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52666. {
  52667. front: {
  52668. height: math.unit(20.5, "feet"),
  52669. name: "Front",
  52670. image: {
  52671. source: "./media/characters/rei/front.svg",
  52672. extra: 1349/1195,
  52673. bottom: 31/1380
  52674. }
  52675. },
  52676. back: {
  52677. height: math.unit(20.5, "feet"),
  52678. name: "Back",
  52679. image: {
  52680. source: "./media/characters/rei/back.svg",
  52681. extra: 1358/1204,
  52682. bottom: 22/1380
  52683. }
  52684. },
  52685. pawsDigi: {
  52686. height: math.unit(3.45, "feet"),
  52687. name: "Paws (Digi)",
  52688. image: {
  52689. source: "./media/characters/rei/paws-digi.svg"
  52690. }
  52691. },
  52692. pawsPlanti: {
  52693. height: math.unit(3.45, "feet"),
  52694. name: "Paws (Planti)",
  52695. image: {
  52696. source: "./media/characters/rei/paws-planti.svg"
  52697. }
  52698. },
  52699. },
  52700. [
  52701. {
  52702. name: "Normal",
  52703. height: math.unit(20.5, "feet"),
  52704. default: true
  52705. },
  52706. ]
  52707. ))
  52708. characterMakers.push(() => makeCharacter(
  52709. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52710. {
  52711. front: {
  52712. height: math.unit(5 + 11/12, "feet"),
  52713. name: "Front",
  52714. image: {
  52715. source: "./media/characters/carina/front.svg",
  52716. extra: 1720/1449,
  52717. bottom: 14/1734
  52718. }
  52719. },
  52720. back: {
  52721. height: math.unit(5 + 11/12, "feet"),
  52722. name: "Back",
  52723. image: {
  52724. source: "./media/characters/carina/back.svg",
  52725. extra: 1493/1445,
  52726. bottom: 17/1510
  52727. }
  52728. },
  52729. paw: {
  52730. height: math.unit(0.92, "feet"),
  52731. name: "Paw",
  52732. image: {
  52733. source: "./media/characters/carina/paw.svg"
  52734. }
  52735. },
  52736. },
  52737. [
  52738. {
  52739. name: "Normal",
  52740. height: math.unit(5 + 11/12, "feet"),
  52741. default: true
  52742. },
  52743. ]
  52744. ))
  52745. characterMakers.push(() => makeCharacter(
  52746. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52747. {
  52748. normal_front: {
  52749. height: math.unit(4.88, "meters"),
  52750. name: "Front",
  52751. image: {
  52752. source: "./media/characters/maya/normal-front.svg",
  52753. extra: 1222/1145,
  52754. bottom: 57/1279
  52755. },
  52756. form: "normal",
  52757. default: true
  52758. },
  52759. monstrous_front: {
  52760. height: math.unit(10, "meters"),
  52761. name: "Front",
  52762. image: {
  52763. source: "./media/characters/maya/monstrous-front.svg",
  52764. extra: 1523/1109,
  52765. bottom: 113/1636
  52766. },
  52767. form: "monstrous",
  52768. extraAttributes: {
  52769. "swallowSize": {
  52770. name: "Tailmaw Bite Size",
  52771. power: 3,
  52772. type: "volume",
  52773. base: math.unit(43000, "liters")
  52774. },
  52775. }
  52776. },
  52777. taur_front: {
  52778. height: math.unit(10, "meters"),
  52779. name: "Front",
  52780. image: {
  52781. source: "./media/characters/maya/taur-front.svg",
  52782. extra: 743/506,
  52783. bottom: 101/844
  52784. },
  52785. form: "taur",
  52786. },
  52787. },
  52788. [
  52789. {
  52790. name: "Normal",
  52791. height: math.unit(4.88, "meters"),
  52792. default: true,
  52793. form: "normal"
  52794. },
  52795. {
  52796. name: "Macro",
  52797. height: math.unit(38.1, "meters"),
  52798. form: "normal"
  52799. },
  52800. {
  52801. name: "Macro+",
  52802. height: math.unit(152.4, "meters"),
  52803. form: "normal"
  52804. },
  52805. {
  52806. name: "Macro++",
  52807. height: math.unit(16.09, "km"),
  52808. form: "normal"
  52809. },
  52810. {
  52811. name: "Mega-macro",
  52812. height: math.unit(700, "megameters"),
  52813. form: "normal"
  52814. },
  52815. {
  52816. name: "Satiated",
  52817. height: math.unit(10, "meters"),
  52818. default: true,
  52819. form: "monstrous"
  52820. },
  52821. {
  52822. name: "Hungry",
  52823. height: math.unit(75, "meters"),
  52824. form: "monstrous"
  52825. },
  52826. {
  52827. name: "Ravenous",
  52828. height: math.unit(500, "meters"),
  52829. form: "monstrous"
  52830. },
  52831. {
  52832. name: "\"Normal\"",
  52833. height: math.unit(10, "meters"),
  52834. form: "taur"
  52835. },
  52836. {
  52837. name: "Macro",
  52838. height: math.unit(50, "meters"),
  52839. form: "taur"
  52840. },
  52841. ],
  52842. {
  52843. "normal": {
  52844. name: "Normal",
  52845. default: true
  52846. },
  52847. "monstrous": {
  52848. name: "Monstrous",
  52849. },
  52850. "taur": {
  52851. name: "Taur",
  52852. },
  52853. }
  52854. ))
  52855. characterMakers.push(() => makeCharacter(
  52856. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52857. {
  52858. front: {
  52859. height: math.unit(6 + 2/12, "feet"),
  52860. weight: math.unit(500, "lb"),
  52861. preyCapacity: math.unit(4, "people"),
  52862. name: "Front",
  52863. image: {
  52864. source: "./media/characters/yepir/front.svg"
  52865. }
  52866. },
  52867. side: {
  52868. height: math.unit(6 + 2/12, "feet"),
  52869. weight: math.unit(500, "lb"),
  52870. preyCapacity: math.unit(4, "people"),
  52871. name: "Side",
  52872. image: {
  52873. source: "./media/characters/yepir/side.svg"
  52874. }
  52875. },
  52876. paw: {
  52877. height: math.unit(1.05, "feet"),
  52878. name: "Paw",
  52879. image: {
  52880. source: "./media/characters/yepir/paw.svg"
  52881. }
  52882. },
  52883. },
  52884. [
  52885. {
  52886. name: "Normal",
  52887. height: math.unit(6 + 2/12, "feet"),
  52888. default: true
  52889. },
  52890. ]
  52891. ))
  52892. characterMakers.push(() => makeCharacter(
  52893. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52894. {
  52895. front: {
  52896. height: math.unit(5 + 4/12, "feet"),
  52897. name: "Front",
  52898. image: {
  52899. source: "./media/characters/russec/front.svg",
  52900. extra: 1926/1626,
  52901. bottom: 72/1998
  52902. }
  52903. },
  52904. back: {
  52905. height: math.unit(5 + 4/12, "feet"),
  52906. name: "Back",
  52907. image: {
  52908. source: "./media/characters/russec/back.svg",
  52909. extra: 1910/1591,
  52910. bottom: 48/1958
  52911. }
  52912. },
  52913. },
  52914. [
  52915. {
  52916. name: "Small",
  52917. height: math.unit(5 + 4/12, "feet")
  52918. },
  52919. {
  52920. name: "Normal",
  52921. height: math.unit(72, "feet"),
  52922. default: true
  52923. },
  52924. ]
  52925. ))
  52926. characterMakers.push(() => makeCharacter(
  52927. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52928. {
  52929. side: {
  52930. height: math.unit(12, "feet"),
  52931. name: "Side",
  52932. image: {
  52933. source: "./media/characters/cianus/side.svg",
  52934. extra: 808/526,
  52935. bottom: 61/869
  52936. }
  52937. },
  52938. },
  52939. [
  52940. {
  52941. name: "Normal",
  52942. height: math.unit(12, "feet"),
  52943. default: true
  52944. },
  52945. ]
  52946. ))
  52947. characterMakers.push(() => makeCharacter(
  52948. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52949. {
  52950. front: {
  52951. height: math.unit(9 + 6/12, "feet"),
  52952. weight: math.unit(300, "lb"),
  52953. name: "Front",
  52954. image: {
  52955. source: "./media/characters/ahab/front.svg",
  52956. extra: 1897/1868,
  52957. bottom: 121/2018
  52958. }
  52959. },
  52960. frontNsfw: {
  52961. height: math.unit(9 + 6/12, "feet"),
  52962. weight: math.unit(300, "lb"),
  52963. name: "Front-nsfw",
  52964. image: {
  52965. source: "./media/characters/ahab/front-nsfw.svg",
  52966. extra: 1897/1868,
  52967. bottom: 121/2018
  52968. }
  52969. },
  52970. },
  52971. [
  52972. {
  52973. name: "Normal",
  52974. height: math.unit(9 + 6/12, "feet")
  52975. },
  52976. {
  52977. name: "Macro",
  52978. height: math.unit(657, "feet"),
  52979. default: true
  52980. },
  52981. ]
  52982. ))
  52983. characterMakers.push(() => makeCharacter(
  52984. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52985. {
  52986. front: {
  52987. height: math.unit(2.69, "meters"),
  52988. weight: math.unit(132, "kg"),
  52989. name: "Front",
  52990. image: {
  52991. source: "./media/characters/aarkus/front.svg",
  52992. extra: 1400/1231,
  52993. bottom: 34/1434
  52994. }
  52995. },
  52996. back: {
  52997. height: math.unit(2.69, "meters"),
  52998. weight: math.unit(132, "kg"),
  52999. name: "Back",
  53000. image: {
  53001. source: "./media/characters/aarkus/back.svg",
  53002. extra: 1381/1218,
  53003. bottom: 30/1411
  53004. }
  53005. },
  53006. frontNsfw: {
  53007. height: math.unit(2.69, "meters"),
  53008. weight: math.unit(132, "kg"),
  53009. name: "Front (NSFW)",
  53010. image: {
  53011. source: "./media/characters/aarkus/front-nsfw.svg",
  53012. extra: 1400/1231,
  53013. bottom: 34/1434
  53014. }
  53015. },
  53016. foot: {
  53017. height: math.unit(1.45, "feet"),
  53018. name: "Foot",
  53019. image: {
  53020. source: "./media/characters/aarkus/foot.svg"
  53021. }
  53022. },
  53023. head: {
  53024. height: math.unit(2.85, "feet"),
  53025. name: "Head",
  53026. image: {
  53027. source: "./media/characters/aarkus/head.svg"
  53028. }
  53029. },
  53030. headAlt: {
  53031. height: math.unit(3.07, "feet"),
  53032. name: "Head (Alt)",
  53033. image: {
  53034. source: "./media/characters/aarkus/head-alt.svg"
  53035. }
  53036. },
  53037. mouth: {
  53038. height: math.unit(1.25, "feet"),
  53039. name: "Mouth",
  53040. image: {
  53041. source: "./media/characters/aarkus/mouth.svg"
  53042. }
  53043. },
  53044. dick: {
  53045. height: math.unit(1.77, "feet"),
  53046. name: "Dick",
  53047. image: {
  53048. source: "./media/characters/aarkus/dick.svg"
  53049. }
  53050. },
  53051. },
  53052. [
  53053. {
  53054. name: "Normal",
  53055. height: math.unit(2.69, "meters"),
  53056. default: true
  53057. },
  53058. {
  53059. name: "Macro",
  53060. height: math.unit(269, "meters")
  53061. },
  53062. {
  53063. name: "Macro+",
  53064. height: math.unit(672.5, "meters")
  53065. },
  53066. {
  53067. name: "Megamacro",
  53068. height: math.unit(2.017, "km")
  53069. },
  53070. ]
  53071. ))
  53072. characterMakers.push(() => makeCharacter(
  53073. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53074. {
  53075. front: {
  53076. height: math.unit(23.47, "cm"),
  53077. weight: math.unit(600, "grams"),
  53078. name: "Front",
  53079. image: {
  53080. source: "./media/characters/diode/front.svg",
  53081. extra: 1778/1396,
  53082. bottom: 95/1873
  53083. }
  53084. },
  53085. side: {
  53086. height: math.unit(23.47, "cm"),
  53087. weight: math.unit(600, "grams"),
  53088. name: "Side",
  53089. image: {
  53090. source: "./media/characters/diode/side.svg",
  53091. extra: 1831/1404,
  53092. bottom: 86/1917
  53093. }
  53094. },
  53095. wings: {
  53096. height: math.unit(0.683, "feet"),
  53097. name: "Wings",
  53098. image: {
  53099. source: "./media/characters/diode/wings.svg"
  53100. }
  53101. },
  53102. },
  53103. [
  53104. {
  53105. name: "Normal",
  53106. height: math.unit(23.47, "cm"),
  53107. default: true
  53108. },
  53109. ]
  53110. ))
  53111. characterMakers.push(() => makeCharacter(
  53112. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53113. {
  53114. front: {
  53115. height: math.unit(6 + 3/12, "feet"),
  53116. weight: math.unit(250, "lb"),
  53117. name: "Front",
  53118. image: {
  53119. source: "./media/characters/reika/front.svg",
  53120. extra: 1120/1078,
  53121. bottom: 86/1206
  53122. }
  53123. },
  53124. },
  53125. [
  53126. {
  53127. name: "Normal",
  53128. height: math.unit(6 + 3/12, "feet"),
  53129. default: true
  53130. },
  53131. ]
  53132. ))
  53133. characterMakers.push(() => makeCharacter(
  53134. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53135. {
  53136. front: {
  53137. height: math.unit(16 + 8/12, "feet"),
  53138. weight: math.unit(9000, "lb"),
  53139. name: "Front",
  53140. image: {
  53141. source: "./media/characters/lokuto-takama/front.svg",
  53142. extra: 1774/1632,
  53143. bottom: 147/1921
  53144. },
  53145. extraAttributes: {
  53146. "bustWidth": {
  53147. name: "Bust Width",
  53148. power: 1,
  53149. type: "length",
  53150. base: math.unit(2.4, "meters")
  53151. },
  53152. "breastWeight": {
  53153. name: "Breast Weight",
  53154. power: 3,
  53155. type: "mass",
  53156. base: math.unit(1000, "kg")
  53157. },
  53158. }
  53159. },
  53160. },
  53161. [
  53162. {
  53163. name: "Normal",
  53164. height: math.unit(16 + 8/12, "feet"),
  53165. default: true
  53166. },
  53167. ]
  53168. ))
  53169. characterMakers.push(() => makeCharacter(
  53170. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53171. {
  53172. front: {
  53173. height: math.unit(10, "cm"),
  53174. weight: math.unit(850, "grams"),
  53175. name: "Front",
  53176. image: {
  53177. source: "./media/characters/owak-bone/front.svg",
  53178. extra: 1965/1801,
  53179. bottom: 31/1996
  53180. }
  53181. },
  53182. },
  53183. [
  53184. {
  53185. name: "Normal",
  53186. height: math.unit(10, "cm"),
  53187. default: true
  53188. },
  53189. ]
  53190. ))
  53191. characterMakers.push(() => makeCharacter(
  53192. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53193. {
  53194. front: {
  53195. height: math.unit(2 + 6/12, "feet"),
  53196. weight: math.unit(9, "lb"),
  53197. name: "Front",
  53198. image: {
  53199. source: "./media/characters/muffin/front.svg",
  53200. extra: 1220/1195,
  53201. bottom: 84/1304
  53202. }
  53203. },
  53204. },
  53205. [
  53206. {
  53207. name: "Normal",
  53208. height: math.unit(2 + 6/12, "feet"),
  53209. default: true
  53210. },
  53211. ]
  53212. ))
  53213. characterMakers.push(() => makeCharacter(
  53214. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53215. {
  53216. front: {
  53217. height: math.unit(7, "feet"),
  53218. name: "Front",
  53219. image: {
  53220. source: "./media/characters/chimera/front.svg",
  53221. extra: 1752/1614,
  53222. bottom: 68/1820
  53223. }
  53224. },
  53225. },
  53226. [
  53227. {
  53228. name: "Normal",
  53229. height: math.unit(7, "feet")
  53230. },
  53231. {
  53232. name: "Gigamacro",
  53233. height: math.unit(2.9, "gigameters"),
  53234. default: true
  53235. },
  53236. {
  53237. name: "Universal",
  53238. height: math.unit(1.56e26, "yottameters")
  53239. },
  53240. ]
  53241. ))
  53242. characterMakers.push(() => makeCharacter(
  53243. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53244. {
  53245. front: {
  53246. height: math.unit(3, "feet"),
  53247. weight: math.unit(20, "lb"),
  53248. name: "Front",
  53249. image: {
  53250. source: "./media/characters/kit-fennec-fox/front.svg",
  53251. extra: 1027/932,
  53252. bottom: 16/1043
  53253. }
  53254. },
  53255. back: {
  53256. height: math.unit(3, "feet"),
  53257. weight: math.unit(20, "lb"),
  53258. name: "Back",
  53259. image: {
  53260. source: "./media/characters/kit-fennec-fox/back.svg",
  53261. extra: 1027/932,
  53262. bottom: 16/1043
  53263. }
  53264. },
  53265. },
  53266. [
  53267. {
  53268. name: "Normal",
  53269. height: math.unit(3, "feet"),
  53270. default: true
  53271. },
  53272. ]
  53273. ))
  53274. characterMakers.push(() => makeCharacter(
  53275. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53276. {
  53277. front: {
  53278. height: math.unit(167, "cm"),
  53279. name: "Front",
  53280. image: {
  53281. source: "./media/characters/blue-otter/front.svg",
  53282. extra: 1951/1920,
  53283. bottom: 31/1982
  53284. }
  53285. },
  53286. },
  53287. [
  53288. {
  53289. name: "Otter-Sized",
  53290. height: math.unit(100, "cm")
  53291. },
  53292. {
  53293. name: "Normal",
  53294. height: math.unit(167, "cm"),
  53295. default: true
  53296. },
  53297. ]
  53298. ))
  53299. characterMakers.push(() => makeCharacter(
  53300. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53301. {
  53302. front: {
  53303. height: math.unit(4 + 4/12, "feet"),
  53304. name: "Front",
  53305. image: {
  53306. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53307. extra: 1072/1067,
  53308. bottom: 117/1189
  53309. }
  53310. },
  53311. back: {
  53312. height: math.unit(4 + 4/12, "feet"),
  53313. name: "Back",
  53314. image: {
  53315. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53316. extra: 1135/1129,
  53317. bottom: 57/1192
  53318. }
  53319. },
  53320. head: {
  53321. height: math.unit(1.77, "feet"),
  53322. name: "Head",
  53323. image: {
  53324. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53325. }
  53326. },
  53327. },
  53328. [
  53329. {
  53330. name: "Normal",
  53331. height: math.unit(4 + 4/12, "feet"),
  53332. default: true
  53333. },
  53334. ]
  53335. ))
  53336. characterMakers.push(() => makeCharacter(
  53337. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53338. {
  53339. front: {
  53340. height: math.unit(2, "inches"),
  53341. name: "Front",
  53342. image: {
  53343. source: "./media/characters/carley-hartford/front.svg",
  53344. extra: 1035/988,
  53345. bottom: 23/1058
  53346. }
  53347. },
  53348. back: {
  53349. height: math.unit(2, "inches"),
  53350. name: "Back",
  53351. image: {
  53352. source: "./media/characters/carley-hartford/back.svg",
  53353. extra: 1035/988,
  53354. bottom: 23/1058
  53355. }
  53356. },
  53357. dressed: {
  53358. height: math.unit(2, "inches"),
  53359. name: "Dressed",
  53360. image: {
  53361. source: "./media/characters/carley-hartford/dressed.svg",
  53362. extra: 651/620,
  53363. bottom: 0/651
  53364. }
  53365. },
  53366. },
  53367. [
  53368. {
  53369. name: "Micro",
  53370. height: math.unit(2, "inches"),
  53371. default: true
  53372. },
  53373. {
  53374. name: "Macro",
  53375. height: math.unit(6 + 3/12, "feet")
  53376. },
  53377. ]
  53378. ))
  53379. characterMakers.push(() => makeCharacter(
  53380. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53381. {
  53382. front: {
  53383. height: math.unit(2 + 3/12, "feet"),
  53384. weight: math.unit(15 + 7/16, "lb"),
  53385. name: "Front",
  53386. image: {
  53387. source: "./media/characters/duke/front.svg",
  53388. extra: 910/815,
  53389. bottom: 30/940
  53390. }
  53391. },
  53392. },
  53393. [
  53394. {
  53395. name: "Normal",
  53396. height: math.unit(2 + 3/12, "feet"),
  53397. default: true
  53398. },
  53399. ]
  53400. ))
  53401. characterMakers.push(() => makeCharacter(
  53402. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53403. {
  53404. front: {
  53405. height: math.unit(5 + 4/12, "feet"),
  53406. weight: math.unit(156, "lb"),
  53407. name: "Front",
  53408. image: {
  53409. source: "./media/characters/dein/front.svg",
  53410. extra: 855/815,
  53411. bottom: 48/903
  53412. }
  53413. },
  53414. side: {
  53415. height: math.unit(5 + 4/12, "feet"),
  53416. weight: math.unit(156, "lb"),
  53417. name: "side",
  53418. image: {
  53419. source: "./media/characters/dein/side.svg",
  53420. extra: 846/803,
  53421. bottom: 25/871
  53422. }
  53423. },
  53424. maw: {
  53425. height: math.unit(1.45, "feet"),
  53426. name: "Maw",
  53427. image: {
  53428. source: "./media/characters/dein/maw.svg"
  53429. }
  53430. },
  53431. },
  53432. [
  53433. {
  53434. name: "Ferret Sized",
  53435. height: math.unit(2 + 5/12, "feet")
  53436. },
  53437. {
  53438. name: "Normal",
  53439. height: math.unit(5 + 4/12, "feet"),
  53440. default: true
  53441. },
  53442. ]
  53443. ))
  53444. characterMakers.push(() => makeCharacter(
  53445. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53446. {
  53447. front: {
  53448. height: math.unit(84 + 8/12, "feet"),
  53449. weight: math.unit(942180, "lb"),
  53450. name: "Front",
  53451. image: {
  53452. source: "./media/characters/daurine-arima/front.svg",
  53453. extra: 1989/1782,
  53454. bottom: 37/2026
  53455. }
  53456. },
  53457. side: {
  53458. height: math.unit(84 + 8/12, "feet"),
  53459. weight: math.unit(942180, "lb"),
  53460. name: "Side",
  53461. image: {
  53462. source: "./media/characters/daurine-arima/side.svg",
  53463. extra: 1997/1790,
  53464. bottom: 21/2018
  53465. }
  53466. },
  53467. back: {
  53468. height: math.unit(84 + 8/12, "feet"),
  53469. weight: math.unit(942180, "lb"),
  53470. name: "Back",
  53471. image: {
  53472. source: "./media/characters/daurine-arima/back.svg",
  53473. extra: 1992/1800,
  53474. bottom: 12/2004
  53475. }
  53476. },
  53477. head: {
  53478. height: math.unit(15.5, "feet"),
  53479. name: "Head",
  53480. image: {
  53481. source: "./media/characters/daurine-arima/head.svg"
  53482. }
  53483. },
  53484. headAlt: {
  53485. height: math.unit(19.19, "feet"),
  53486. name: "Head (Alt)",
  53487. image: {
  53488. source: "./media/characters/daurine-arima/head-alt.svg"
  53489. }
  53490. },
  53491. },
  53492. [
  53493. {
  53494. name: "Minimum height",
  53495. height: math.unit(8 + 10/12, "feet")
  53496. },
  53497. {
  53498. name: "Comfort height",
  53499. height: math.unit(19 + 6 /12, "feet")
  53500. },
  53501. {
  53502. name: "\"Normal\" height",
  53503. height: math.unit(28 + 10/12, "feet")
  53504. },
  53505. {
  53506. name: "Base height",
  53507. height: math.unit(84 + 8/12, "feet"),
  53508. default: true
  53509. },
  53510. {
  53511. name: "Mini-macro",
  53512. height: math.unit(2360, "feet")
  53513. },
  53514. {
  53515. name: "Macro",
  53516. height: math.unit(10, "miles")
  53517. },
  53518. {
  53519. name: "Goddess",
  53520. height: math.unit(9.99e40, "yottameters")
  53521. },
  53522. ]
  53523. ))
  53524. characterMakers.push(() => makeCharacter(
  53525. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53526. {
  53527. front: {
  53528. height: math.unit(2.3, "meters"),
  53529. name: "Front",
  53530. image: {
  53531. source: "./media/characters/cilenomon/front.svg",
  53532. extra: 1963/1778,
  53533. bottom: 54/2017
  53534. }
  53535. },
  53536. },
  53537. [
  53538. {
  53539. name: "Normal",
  53540. height: math.unit(2.3, "meters"),
  53541. default: true
  53542. },
  53543. {
  53544. name: "Big",
  53545. height: math.unit(5, "meters")
  53546. },
  53547. {
  53548. name: "Macro",
  53549. height: math.unit(30, "meters")
  53550. },
  53551. {
  53552. name: "True",
  53553. height: math.unit(1, "universe")
  53554. },
  53555. ]
  53556. ))
  53557. characterMakers.push(() => makeCharacter(
  53558. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53559. {
  53560. front: {
  53561. height: math.unit(5, "feet"),
  53562. name: "Front",
  53563. image: {
  53564. source: "./media/characters/sen-mink/front.svg",
  53565. extra: 1727/1675,
  53566. bottom: 35/1762
  53567. }
  53568. },
  53569. },
  53570. [
  53571. {
  53572. name: "Normal",
  53573. height: math.unit(5, "feet"),
  53574. default: true
  53575. },
  53576. ]
  53577. ))
  53578. characterMakers.push(() => makeCharacter(
  53579. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53580. {
  53581. front: {
  53582. height: math.unit(5.42999, "feet"),
  53583. weight: math.unit(100, "lb"),
  53584. name: "Front",
  53585. image: {
  53586. source: "./media/characters/ophois/front.svg",
  53587. extra: 1429/1286,
  53588. bottom: 60/1489
  53589. }
  53590. },
  53591. },
  53592. [
  53593. {
  53594. name: "Normal",
  53595. height: math.unit(5.42999, "feet"),
  53596. default: true
  53597. },
  53598. ]
  53599. ))
  53600. characterMakers.push(() => makeCharacter(
  53601. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53602. {
  53603. front: {
  53604. height: math.unit(2, "meters"),
  53605. name: "Front",
  53606. image: {
  53607. source: "./media/characters/riley/front.svg",
  53608. extra: 1779/1754,
  53609. bottom: 139/1918
  53610. }
  53611. },
  53612. },
  53613. [
  53614. {
  53615. name: "Normal",
  53616. height: math.unit(2, "meters"),
  53617. default: true
  53618. },
  53619. ]
  53620. ))
  53621. characterMakers.push(() => makeCharacter(
  53622. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53623. {
  53624. front: {
  53625. height: math.unit(6 + 2/12, "feet"),
  53626. weight: math.unit(195, "lb"),
  53627. preyCapacity: math.unit(6, "people"),
  53628. name: "Front",
  53629. image: {
  53630. source: "./media/characters/shuken-flash/front.svg",
  53631. extra: 1905/1739,
  53632. bottom: 65/1970
  53633. }
  53634. },
  53635. back: {
  53636. height: math.unit(6 + 2/12, "feet"),
  53637. weight: math.unit(195, "lb"),
  53638. preyCapacity: math.unit(6, "people"),
  53639. name: "Back",
  53640. image: {
  53641. source: "./media/characters/shuken-flash/back.svg",
  53642. extra: 1912/1751,
  53643. bottom: 13/1925
  53644. }
  53645. },
  53646. },
  53647. [
  53648. {
  53649. name: "Normal",
  53650. height: math.unit(6 + 2/12, "feet"),
  53651. default: true
  53652. },
  53653. ]
  53654. ))
  53655. characterMakers.push(() => makeCharacter(
  53656. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53657. {
  53658. front: {
  53659. height: math.unit(5 + 9/12, "feet"),
  53660. weight: math.unit(150, "lb"),
  53661. name: "Front",
  53662. image: {
  53663. source: "./media/characters/plat/front.svg",
  53664. extra: 1816/1703,
  53665. bottom: 43/1859
  53666. }
  53667. },
  53668. side: {
  53669. height: math.unit(5 + 9/12, "feet"),
  53670. weight: math.unit(300, "lb"),
  53671. name: "Side",
  53672. image: {
  53673. source: "./media/characters/plat/side.svg",
  53674. extra: 1824/1699,
  53675. bottom: 18/1842
  53676. }
  53677. },
  53678. },
  53679. [
  53680. {
  53681. name: "Normal",
  53682. height: math.unit(5 + 9/12, "feet"),
  53683. default: true
  53684. },
  53685. ]
  53686. ))
  53687. characterMakers.push(() => makeCharacter(
  53688. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53689. {
  53690. front: {
  53691. height: math.unit(9, "feet"),
  53692. weight: math.unit(1800, "lb"),
  53693. name: "Front",
  53694. image: {
  53695. source: "./media/characters/elaine/front.svg",
  53696. extra: 1833/1354,
  53697. bottom: 25/1858
  53698. }
  53699. },
  53700. back: {
  53701. height: math.unit(8.8, "feet"),
  53702. weight: math.unit(1800, "lb"),
  53703. name: "Back",
  53704. image: {
  53705. source: "./media/characters/elaine/back.svg",
  53706. extra: 1641/1233,
  53707. bottom: 53/1694
  53708. }
  53709. },
  53710. },
  53711. [
  53712. {
  53713. name: "Normal",
  53714. height: math.unit(9, "feet"),
  53715. default: true
  53716. },
  53717. ]
  53718. ))
  53719. characterMakers.push(() => makeCharacter(
  53720. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53721. {
  53722. front: {
  53723. height: math.unit(17 + 9/12, "feet"),
  53724. weight: math.unit(8000, "lb"),
  53725. name: "Front",
  53726. image: {
  53727. source: "./media/characters/vera-raven/front.svg",
  53728. extra: 1457/1412,
  53729. bottom: 121/1578
  53730. }
  53731. },
  53732. side: {
  53733. height: math.unit(17 + 9/12, "feet"),
  53734. weight: math.unit(8000, "lb"),
  53735. name: "Side",
  53736. image: {
  53737. source: "./media/characters/vera-raven/side.svg",
  53738. extra: 1510/1464,
  53739. bottom: 54/1564
  53740. }
  53741. },
  53742. },
  53743. [
  53744. {
  53745. name: "Normal",
  53746. height: math.unit(17 + 9/12, "feet"),
  53747. default: true
  53748. },
  53749. ]
  53750. ))
  53751. characterMakers.push(() => makeCharacter(
  53752. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53753. {
  53754. dressed: {
  53755. height: math.unit(6 + 9/12, "feet"),
  53756. name: "Dressed",
  53757. image: {
  53758. source: "./media/characters/nakisha/dressed.svg",
  53759. extra: 1909/1757,
  53760. bottom: 48/1957
  53761. }
  53762. },
  53763. nude: {
  53764. height: math.unit(6 + 9/12, "feet"),
  53765. name: "Nude",
  53766. image: {
  53767. source: "./media/characters/nakisha/nude.svg",
  53768. extra: 1917/1765,
  53769. bottom: 34/1951
  53770. }
  53771. },
  53772. },
  53773. [
  53774. {
  53775. name: "Normal",
  53776. height: math.unit(6 + 9/12, "feet"),
  53777. default: true
  53778. },
  53779. ]
  53780. ))
  53781. characterMakers.push(() => makeCharacter(
  53782. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53783. {
  53784. front: {
  53785. height: math.unit(87, "meters"),
  53786. name: "Front",
  53787. image: {
  53788. source: "./media/characters/serafin/front.svg",
  53789. extra: 1919/1776,
  53790. bottom: 65/1984
  53791. }
  53792. },
  53793. },
  53794. [
  53795. {
  53796. name: "Normal",
  53797. height: math.unit(87, "meters"),
  53798. default: true
  53799. },
  53800. ]
  53801. ))
  53802. characterMakers.push(() => makeCharacter(
  53803. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53804. {
  53805. front: {
  53806. height: math.unit(6, "feet"),
  53807. weight: math.unit(200, "lb"),
  53808. name: "Front",
  53809. image: {
  53810. source: "./media/characters/poptart/front.svg",
  53811. extra: 615/583,
  53812. bottom: 23/638
  53813. }
  53814. },
  53815. back: {
  53816. height: math.unit(6, "feet"),
  53817. weight: math.unit(200, "lb"),
  53818. name: "Back",
  53819. image: {
  53820. source: "./media/characters/poptart/back.svg",
  53821. extra: 617/584,
  53822. bottom: 22/639
  53823. }
  53824. },
  53825. frontNsfw: {
  53826. height: math.unit(6, "feet"),
  53827. weight: math.unit(200, "lb"),
  53828. name: "Front (NSFW)",
  53829. image: {
  53830. source: "./media/characters/poptart/front-nsfw.svg",
  53831. extra: 615/583,
  53832. bottom: 23/638
  53833. }
  53834. },
  53835. backNsfw: {
  53836. height: math.unit(6, "feet"),
  53837. weight: math.unit(200, "lb"),
  53838. name: "Back (NSFW)",
  53839. image: {
  53840. source: "./media/characters/poptart/back-nsfw.svg",
  53841. extra: 617/584,
  53842. bottom: 22/639
  53843. }
  53844. },
  53845. hand: {
  53846. height: math.unit(1.14, "feet"),
  53847. name: "Hand",
  53848. image: {
  53849. source: "./media/characters/poptart/hand.svg"
  53850. }
  53851. },
  53852. foot: {
  53853. height: math.unit(1.5, "feet"),
  53854. name: "Foot",
  53855. image: {
  53856. source: "./media/characters/poptart/foot.svg"
  53857. }
  53858. },
  53859. },
  53860. [
  53861. {
  53862. name: "Normal",
  53863. height: math.unit(6, "feet"),
  53864. default: true
  53865. },
  53866. {
  53867. name: "Grande",
  53868. height: math.unit(350, "feet")
  53869. },
  53870. {
  53871. name: "Massif",
  53872. height: math.unit(967, "feet")
  53873. },
  53874. ]
  53875. ))
  53876. characterMakers.push(() => makeCharacter(
  53877. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53878. {
  53879. hyenaSide: {
  53880. height: math.unit(120, "cm"),
  53881. weight: math.unit(120, "lb"),
  53882. name: "Side",
  53883. image: {
  53884. source: "./media/characters/trance/hyena-side.svg",
  53885. extra: 998/904,
  53886. bottom: 76/1074
  53887. }
  53888. },
  53889. },
  53890. [
  53891. {
  53892. name: "Normal",
  53893. height: math.unit(120, "cm"),
  53894. default: true
  53895. },
  53896. {
  53897. name: "Dire",
  53898. height: math.unit(230, "cm")
  53899. },
  53900. {
  53901. name: "Macro",
  53902. height: math.unit(37, "feet")
  53903. },
  53904. ]
  53905. ))
  53906. characterMakers.push(() => makeCharacter(
  53907. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53908. {
  53909. front: {
  53910. height: math.unit(6 + 3/12, "feet"),
  53911. name: "Front",
  53912. image: {
  53913. source: "./media/characters/michael-berretta/front.svg",
  53914. extra: 515/494,
  53915. bottom: 20/535
  53916. }
  53917. },
  53918. back: {
  53919. height: math.unit(6 + 3/12, "feet"),
  53920. name: "Back",
  53921. image: {
  53922. source: "./media/characters/michael-berretta/back.svg",
  53923. extra: 520/497,
  53924. bottom: 21/541
  53925. }
  53926. },
  53927. frontNsfw: {
  53928. height: math.unit(6 + 3/12, "feet"),
  53929. name: "Front (NSFW)",
  53930. image: {
  53931. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53932. extra: 515/494,
  53933. bottom: 20/535
  53934. }
  53935. },
  53936. dick: {
  53937. height: math.unit(1, "feet"),
  53938. name: "Dick",
  53939. image: {
  53940. source: "./media/characters/michael-berretta/dick.svg"
  53941. }
  53942. },
  53943. },
  53944. [
  53945. {
  53946. name: "Normal",
  53947. height: math.unit(6 + 3/12, "feet"),
  53948. default: true
  53949. },
  53950. {
  53951. name: "Big",
  53952. height: math.unit(12, "feet")
  53953. },
  53954. {
  53955. name: "Macro",
  53956. height: math.unit(187.5, "feet")
  53957. },
  53958. ]
  53959. ))
  53960. characterMakers.push(() => makeCharacter(
  53961. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53962. {
  53963. front: {
  53964. height: math.unit(9 + 9/12, "feet"),
  53965. weight: math.unit(1244, "lb"),
  53966. name: "Front",
  53967. image: {
  53968. source: "./media/characters/stella-edgecomb/front.svg",
  53969. extra: 1835/1706,
  53970. bottom: 49/1884
  53971. }
  53972. },
  53973. pen: {
  53974. height: math.unit(0.95, "feet"),
  53975. name: "Pen",
  53976. image: {
  53977. source: "./media/characters/stella-edgecomb/pen.svg"
  53978. }
  53979. },
  53980. },
  53981. [
  53982. {
  53983. name: "Cozy Bear",
  53984. height: math.unit(0.5, "inches")
  53985. },
  53986. {
  53987. name: "Normal",
  53988. height: math.unit(9 + 9/12, "feet"),
  53989. default: true
  53990. },
  53991. {
  53992. name: "Giga Bear",
  53993. height: math.unit(1, "mile")
  53994. },
  53995. {
  53996. name: "Great Bear",
  53997. height: math.unit(53, "miles")
  53998. },
  53999. {
  54000. name: "Goddess Bear",
  54001. height: math.unit(40000, "miles")
  54002. },
  54003. {
  54004. name: "Sun Bear",
  54005. height: math.unit(900000, "miles")
  54006. },
  54007. ]
  54008. ))
  54009. characterMakers.push(() => makeCharacter(
  54010. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54011. {
  54012. anthroFront: {
  54013. height: math.unit(556, "cm"),
  54014. weight: math.unit(2650, "kg"),
  54015. preyCapacity: math.unit(3, "people"),
  54016. name: "Front",
  54017. image: {
  54018. source: "./media/characters/ash´iika/front.svg",
  54019. extra: 710/673,
  54020. bottom: 15/725
  54021. },
  54022. form: "anthro",
  54023. default: true
  54024. },
  54025. anthroSide: {
  54026. height: math.unit(556, "cm"),
  54027. weight: math.unit(2650, "kg"),
  54028. preyCapacity: math.unit(3, "people"),
  54029. name: "Side",
  54030. image: {
  54031. source: "./media/characters/ash´iika/side.svg",
  54032. extra: 696/676,
  54033. bottom: 13/709
  54034. },
  54035. form: "anthro"
  54036. },
  54037. anthroDressed: {
  54038. height: math.unit(556, "cm"),
  54039. weight: math.unit(2650, "kg"),
  54040. preyCapacity: math.unit(3, "people"),
  54041. name: "Dressed",
  54042. image: {
  54043. source: "./media/characters/ash´iika/dressed.svg",
  54044. extra: 710/673,
  54045. bottom: 15/725
  54046. },
  54047. form: "anthro"
  54048. },
  54049. anthroHead: {
  54050. height: math.unit(3.5, "feet"),
  54051. name: "Head",
  54052. image: {
  54053. source: "./media/characters/ash´iika/head.svg",
  54054. extra: 348/291,
  54055. bottom: 45/393
  54056. },
  54057. form: "anthro"
  54058. },
  54059. feralSide: {
  54060. height: math.unit(870, "cm"),
  54061. weight: math.unit(17500, "kg"),
  54062. preyCapacity: math.unit(15, "people"),
  54063. name: "Side",
  54064. image: {
  54065. source: "./media/characters/ash´iika/feral.svg",
  54066. extra: 595/199,
  54067. bottom: 7/602
  54068. },
  54069. form: "feral",
  54070. default: true,
  54071. },
  54072. },
  54073. [
  54074. {
  54075. name: "Normal",
  54076. height: math.unit(556, "cm"),
  54077. default: true,
  54078. form: "anthro"
  54079. },
  54080. {
  54081. name: "Macro",
  54082. height: math.unit(88, "meters"),
  54083. form: "anthro"
  54084. },
  54085. {
  54086. name: "Normal",
  54087. height: math.unit(870, "cm"),
  54088. default: true,
  54089. form: "feral"
  54090. },
  54091. {
  54092. name: "Large",
  54093. height: math.unit(25, "meters"),
  54094. form: "feral"
  54095. },
  54096. ],
  54097. {
  54098. "anthro": {
  54099. name: "Anthro",
  54100. default: true
  54101. },
  54102. "feral": {
  54103. name: "Feral",
  54104. },
  54105. }
  54106. ))
  54107. characterMakers.push(() => makeCharacter(
  54108. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54109. {
  54110. front: {
  54111. height: math.unit(10, "feet"),
  54112. weight: math.unit(800, "lb"),
  54113. name: "Front",
  54114. image: {
  54115. source: "./media/characters/yen/front.svg",
  54116. extra: 443/411,
  54117. bottom: 6/449
  54118. }
  54119. },
  54120. sleeping: {
  54121. height: math.unit(10, "feet"),
  54122. weight: math.unit(800, "lb"),
  54123. name: "Sleeping",
  54124. image: {
  54125. source: "./media/characters/yen/sleeping.svg",
  54126. extra: 470/422,
  54127. bottom: 0/470
  54128. }
  54129. },
  54130. head: {
  54131. height: math.unit(2.2, "feet"),
  54132. name: "Head",
  54133. image: {
  54134. source: "./media/characters/yen/head.svg"
  54135. }
  54136. },
  54137. headAlt: {
  54138. height: math.unit(2.1, "feet"),
  54139. name: "Head (Alt)",
  54140. image: {
  54141. source: "./media/characters/yen/head-alt.svg"
  54142. }
  54143. },
  54144. },
  54145. [
  54146. {
  54147. name: "Normal",
  54148. height: math.unit(10, "feet"),
  54149. default: true
  54150. },
  54151. ]
  54152. ))
  54153. characterMakers.push(() => makeCharacter(
  54154. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54155. {
  54156. front: {
  54157. height: math.unit(12, "feet"),
  54158. name: "Front",
  54159. image: {
  54160. source: "./media/characters/citra/front.svg",
  54161. extra: 1950/1710,
  54162. bottom: 47/1997
  54163. }
  54164. },
  54165. },
  54166. [
  54167. {
  54168. name: "Normal",
  54169. height: math.unit(12, "feet"),
  54170. default: true
  54171. },
  54172. ]
  54173. ))
  54174. characterMakers.push(() => makeCharacter(
  54175. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54176. {
  54177. side: {
  54178. height: math.unit(7 + 10/12, "feet"),
  54179. name: "Side",
  54180. image: {
  54181. source: "./media/characters/sholstim/side.svg",
  54182. extra: 786/682,
  54183. bottom: 40/826
  54184. }
  54185. },
  54186. },
  54187. [
  54188. {
  54189. name: "Normal",
  54190. height: math.unit(7 + 10/12, "feet"),
  54191. default: true
  54192. },
  54193. ]
  54194. ))
  54195. characterMakers.push(() => makeCharacter(
  54196. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54197. {
  54198. front: {
  54199. height: math.unit(3.10, "meters"),
  54200. name: "Front",
  54201. image: {
  54202. source: "./media/characters/aggyn/front.svg",
  54203. extra: 1188/963,
  54204. bottom: 24/1212
  54205. }
  54206. },
  54207. },
  54208. [
  54209. {
  54210. name: "Normal",
  54211. height: math.unit(3.10, "meters"),
  54212. default: true
  54213. },
  54214. ]
  54215. ))
  54216. characterMakers.push(() => makeCharacter(
  54217. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54218. {
  54219. front: {
  54220. height: math.unit(7 + 5/12, "feet"),
  54221. weight: math.unit(687, "lb"),
  54222. name: "Front",
  54223. image: {
  54224. source: "./media/characters/alsandair-hergenroether/front.svg",
  54225. extra: 1251/1186,
  54226. bottom: 75/1326
  54227. }
  54228. },
  54229. back: {
  54230. height: math.unit(7 + 5/12, "feet"),
  54231. weight: math.unit(687, "lb"),
  54232. name: "Back",
  54233. image: {
  54234. source: "./media/characters/alsandair-hergenroether/back.svg",
  54235. extra: 1290/1229,
  54236. bottom: 17/1307
  54237. }
  54238. },
  54239. },
  54240. [
  54241. {
  54242. name: "Max Compression",
  54243. height: math.unit(7 + 5/12, "feet"),
  54244. default: true
  54245. },
  54246. {
  54247. name: "\"Normal\"",
  54248. height: math.unit(2, "universes")
  54249. },
  54250. ]
  54251. ))
  54252. characterMakers.push(() => makeCharacter(
  54253. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54254. {
  54255. front: {
  54256. height: math.unit(4 + 1/12, "feet"),
  54257. weight: math.unit(92, "lb"),
  54258. name: "Front",
  54259. image: {
  54260. source: "./media/characters/ie/front.svg",
  54261. extra: 1585/1352,
  54262. bottom: 91/1676
  54263. }
  54264. },
  54265. },
  54266. [
  54267. {
  54268. name: "Normal",
  54269. height: math.unit(4 + 1/12, "feet"),
  54270. default: true
  54271. },
  54272. ]
  54273. ))
  54274. characterMakers.push(() => makeCharacter(
  54275. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54276. {
  54277. anthro: {
  54278. height: math.unit(6, "feet"),
  54279. weight: math.unit(150, "lb"),
  54280. name: "Front",
  54281. image: {
  54282. source: "./media/characters/willow/anthro.svg",
  54283. extra: 1073/986,
  54284. bottom: 34/1107
  54285. },
  54286. form: "anthro",
  54287. default: true
  54288. },
  54289. taur: {
  54290. height: math.unit(6, "feet"),
  54291. weight: math.unit(150, "lb"),
  54292. name: "Side",
  54293. image: {
  54294. source: "./media/characters/willow/taur.svg",
  54295. extra: 647/512,
  54296. bottom: 136/783
  54297. },
  54298. form: "taur",
  54299. default: true
  54300. },
  54301. },
  54302. [
  54303. {
  54304. name: "Humanoid",
  54305. height: math.unit(2.7, "meters"),
  54306. form: "anthro"
  54307. },
  54308. {
  54309. name: "Normal",
  54310. height: math.unit(9, "meters"),
  54311. form: "anthro",
  54312. default: true
  54313. },
  54314. {
  54315. name: "Humanoid",
  54316. height: math.unit(2.1, "meters"),
  54317. form: "taur"
  54318. },
  54319. {
  54320. name: "Normal",
  54321. height: math.unit(7, "meters"),
  54322. form: "taur",
  54323. default: true
  54324. },
  54325. ],
  54326. {
  54327. "anthro": {
  54328. name: "Anthro",
  54329. default: true
  54330. },
  54331. "taur": {
  54332. name: "Taur",
  54333. },
  54334. }
  54335. ))
  54336. characterMakers.push(() => makeCharacter(
  54337. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54338. {
  54339. front: {
  54340. height: math.unit(2 + 5/12, "feet"),
  54341. name: "Front",
  54342. image: {
  54343. source: "./media/characters/kyan/front.svg",
  54344. extra: 460/334,
  54345. bottom: 23/483
  54346. },
  54347. extraAttributes: {
  54348. "toeLength": {
  54349. name: "Toe Length",
  54350. power: 1,
  54351. type: "length",
  54352. base: math.unit(7, "cm")
  54353. },
  54354. "toeclawLength": {
  54355. name: "Toeclaw Length",
  54356. power: 1,
  54357. type: "length",
  54358. base: math.unit(4.7, "cm")
  54359. },
  54360. "earHeight": {
  54361. name: "Ear Height",
  54362. power: 1,
  54363. type: "length",
  54364. base: math.unit(14.1, "cm")
  54365. },
  54366. }
  54367. },
  54368. paws: {
  54369. height: math.unit(0.45, "feet"),
  54370. name: "Paws",
  54371. image: {
  54372. source: "./media/characters/kyan/paws.svg",
  54373. extra: 581/581,
  54374. bottom: 114/695
  54375. }
  54376. },
  54377. },
  54378. [
  54379. {
  54380. name: "Normal",
  54381. height: math.unit(2 + 5/12, "feet"),
  54382. default: true
  54383. },
  54384. ]
  54385. ))
  54386. characterMakers.push(() => makeCharacter(
  54387. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54388. {
  54389. front: {
  54390. height: math.unit(2 + 2/3, "feet"),
  54391. name: "Front",
  54392. image: {
  54393. source: "./media/characters/xazzon/front.svg",
  54394. extra: 1109/984,
  54395. bottom: 42/1151
  54396. }
  54397. },
  54398. back: {
  54399. height: math.unit(2 + 2/3, "feet"),
  54400. name: "Back",
  54401. image: {
  54402. source: "./media/characters/xazzon/back.svg",
  54403. extra: 1095/971,
  54404. bottom: 23/1118
  54405. }
  54406. },
  54407. },
  54408. [
  54409. {
  54410. name: "Normal",
  54411. height: math.unit(2 + 2/3, "feet"),
  54412. default: true
  54413. },
  54414. ]
  54415. ))
  54416. characterMakers.push(() => makeCharacter(
  54417. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54418. {
  54419. dressed: {
  54420. height: math.unit(5 + 7/12, "feet"),
  54421. weight: math.unit(173, "lb"),
  54422. name: "Dressed",
  54423. image: {
  54424. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54425. extra: 3262/2862,
  54426. bottom: 188/3450
  54427. }
  54428. },
  54429. undressed: {
  54430. height: math.unit(5 + 7/12, "feet"),
  54431. weight: math.unit(173, "lb"),
  54432. name: "Undressed",
  54433. image: {
  54434. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54435. extra: 3262/2862,
  54436. bottom: 188/3450
  54437. }
  54438. },
  54439. },
  54440. [
  54441. {
  54442. name: "The void",
  54443. height: math.unit(7.29193e-34, "angstroms")
  54444. },
  54445. {
  54446. name: "Uh-Oh.",
  54447. height: math.unit(5.734e-7, "angstroms")
  54448. },
  54449. {
  54450. name: "Pico",
  54451. height: math.unit(0.876, "angstroms")
  54452. },
  54453. {
  54454. name: "Nano",
  54455. height: math.unit(0.000134200, "mm")
  54456. },
  54457. {
  54458. name: "Micro",
  54459. height: math.unit(0.0673020, "mm")
  54460. },
  54461. {
  54462. name: "Tiny",
  54463. height: math.unit(2.4, "mm")
  54464. },
  54465. {
  54466. name: "Actual Normal",
  54467. height: math.unit(3, "inches"),
  54468. default: true
  54469. },
  54470. {
  54471. name: "Normal",
  54472. height: math.unit(5 + 8/12, "feet")
  54473. },
  54474. {
  54475. name: "Giant",
  54476. height: math.unit(12, "feet")
  54477. },
  54478. {
  54479. name: "City Ruler",
  54480. height: math.unit(270, "meters")
  54481. },
  54482. {
  54483. name: "Giga",
  54484. height: math.unit(1117.6, "km")
  54485. },
  54486. {
  54487. name: "All-Powerful Queen",
  54488. height: math.unit(70.8, "gigameters")
  54489. },
  54490. {
  54491. name: "'Goddess'",
  54492. height: math.unit(600, "yottameters")
  54493. },
  54494. {
  54495. name: "Biggest!",
  54496. height: math.unit(4.23e5, "yottameters")
  54497. },
  54498. ]
  54499. ))
  54500. characterMakers.push(() => makeCharacter(
  54501. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54502. {
  54503. front: {
  54504. height: math.unit(8, "feet"),
  54505. weight: math.unit(300, "lb"),
  54506. name: "Front",
  54507. image: {
  54508. source: "./media/characters/khyla-shadowsong/front.svg",
  54509. extra: 861/798,
  54510. bottom: 32/893
  54511. }
  54512. },
  54513. side: {
  54514. height: math.unit(8, "feet"),
  54515. weight: math.unit(300, "lb"),
  54516. name: "Side",
  54517. image: {
  54518. source: "./media/characters/khyla-shadowsong/side.svg",
  54519. extra: 790/750,
  54520. bottom: 87/877
  54521. }
  54522. },
  54523. back: {
  54524. height: math.unit(8, "feet"),
  54525. weight: math.unit(300, "lb"),
  54526. name: "Back",
  54527. image: {
  54528. source: "./media/characters/khyla-shadowsong/back.svg",
  54529. extra: 855/808,
  54530. bottom: 14/869
  54531. }
  54532. },
  54533. head: {
  54534. height: math.unit(2.7, "feet"),
  54535. name: "Head",
  54536. image: {
  54537. source: "./media/characters/khyla-shadowsong/head.svg"
  54538. }
  54539. },
  54540. },
  54541. [
  54542. {
  54543. name: "Micro",
  54544. height: math.unit(6, "inches")
  54545. },
  54546. {
  54547. name: "Normal",
  54548. height: math.unit(8, "feet"),
  54549. default: true
  54550. },
  54551. ]
  54552. ))
  54553. characterMakers.push(() => makeCharacter(
  54554. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54555. {
  54556. hyperFront: {
  54557. height: math.unit(9 + 4/12, "feet"),
  54558. weight: math.unit(2000, "lb"),
  54559. name: "Front",
  54560. image: {
  54561. source: "./media/characters/tiden/hyper-front.svg",
  54562. extra: 400/382,
  54563. bottom: 6/406
  54564. },
  54565. form: "hyper",
  54566. },
  54567. regularFront: {
  54568. height: math.unit(7 + 10/12, "feet"),
  54569. weight: math.unit(470, "lb"),
  54570. name: "Front",
  54571. image: {
  54572. source: "./media/characters/tiden/regular-front.svg",
  54573. extra: 468/442,
  54574. bottom: 6/474
  54575. },
  54576. form: "regular",
  54577. },
  54578. },
  54579. [
  54580. {
  54581. name: "Normal",
  54582. height: math.unit(9 + 4/12, "feet"),
  54583. default: true,
  54584. form: "hyper"
  54585. },
  54586. {
  54587. name: "Normal",
  54588. height: math.unit(7 + 10/12, "feet"),
  54589. default: true,
  54590. form: "regular"
  54591. },
  54592. ],
  54593. {
  54594. "hyper": {
  54595. name: "Hyper",
  54596. default: true
  54597. },
  54598. "regular": {
  54599. name: "Regular",
  54600. },
  54601. }
  54602. ))
  54603. characterMakers.push(() => makeCharacter(
  54604. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54605. {
  54606. side: {
  54607. height: math.unit(6, "feet"),
  54608. weight: math.unit(150, "lb"),
  54609. name: "Side",
  54610. image: {
  54611. source: "./media/characters/jason-crowe/side.svg",
  54612. extra: 1771/766,
  54613. bottom: 219/1990
  54614. }
  54615. },
  54616. },
  54617. [
  54618. {
  54619. name: "Pocket Gryphon",
  54620. height: math.unit(6, "cm")
  54621. },
  54622. {
  54623. name: "Raven",
  54624. height: math.unit(60, "cm")
  54625. },
  54626. {
  54627. name: "Normal",
  54628. height: math.unit(1, "meter"),
  54629. default: true
  54630. },
  54631. ]
  54632. ))
  54633. characterMakers.push(() => makeCharacter(
  54634. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54635. {
  54636. front: {
  54637. height: math.unit(9 + 6/12, "feet"),
  54638. weight: math.unit(1100, "lb"),
  54639. name: "Front",
  54640. image: {
  54641. source: "./media/characters/django/front.svg",
  54642. extra: 1231/1136,
  54643. bottom: 34/1265
  54644. }
  54645. },
  54646. side: {
  54647. height: math.unit(9 + 6/12, "feet"),
  54648. weight: math.unit(1100, "lb"),
  54649. name: "Side",
  54650. image: {
  54651. source: "./media/characters/django/side.svg",
  54652. extra: 1267/1174,
  54653. bottom: 9/1276
  54654. }
  54655. },
  54656. },
  54657. [
  54658. {
  54659. name: "Normal",
  54660. height: math.unit(9 + 6/12, "feet"),
  54661. default: true
  54662. },
  54663. {
  54664. name: "Macro 1",
  54665. height: math.unit(50, "feet")
  54666. },
  54667. {
  54668. name: "Macro 2",
  54669. height: math.unit(500, "feet")
  54670. },
  54671. {
  54672. name: "Mega Macro",
  54673. height: math.unit(5300, "feet")
  54674. },
  54675. ]
  54676. ))
  54677. characterMakers.push(() => makeCharacter(
  54678. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54679. {
  54680. frontSfw: {
  54681. height: math.unit(120, "cm"),
  54682. weight: math.unit(15, "kg"),
  54683. name: "Front (SFW)",
  54684. image: {
  54685. source: "./media/characters/eri/front-sfw.svg",
  54686. extra: 1014/939,
  54687. bottom: 37/1051
  54688. },
  54689. form: "moth",
  54690. },
  54691. frontNsfw: {
  54692. height: math.unit(120, "cm"),
  54693. weight: math.unit(15, "kg"),
  54694. name: "Front (NSFW)",
  54695. image: {
  54696. source: "./media/characters/eri/front-nsfw.svg",
  54697. extra: 1014/939,
  54698. bottom: 37/1051
  54699. },
  54700. form: "moth",
  54701. default: true
  54702. },
  54703. egg: {
  54704. height: math.unit(10, "cm"),
  54705. name: "Egg",
  54706. image: {
  54707. source: "./media/characters/eri/egg.svg"
  54708. },
  54709. form: "egg",
  54710. default: true
  54711. },
  54712. },
  54713. [
  54714. {
  54715. name: "Normal",
  54716. height: math.unit(120, "cm"),
  54717. default: true,
  54718. form: "moth"
  54719. },
  54720. {
  54721. name: "Normal",
  54722. height: math.unit(10, "cm"),
  54723. default: true,
  54724. form: "egg"
  54725. },
  54726. ],
  54727. {
  54728. "moth": {
  54729. name: "Moth",
  54730. default: true
  54731. },
  54732. "egg": {
  54733. name: "Egg",
  54734. },
  54735. }
  54736. ))
  54737. characterMakers.push(() => makeCharacter(
  54738. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54739. {
  54740. front: {
  54741. height: math.unit(200, "feet"),
  54742. name: "Front",
  54743. image: {
  54744. source: "./media/characters/bishop-dowser/front.svg",
  54745. extra: 933/868,
  54746. bottom: 106/1039
  54747. }
  54748. },
  54749. },
  54750. [
  54751. {
  54752. name: "Giant",
  54753. height: math.unit(200, "feet"),
  54754. default: true
  54755. },
  54756. ]
  54757. ))
  54758. characterMakers.push(() => makeCharacter(
  54759. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54760. {
  54761. front: {
  54762. height: math.unit(2, "meters"),
  54763. preyCapacity: math.unit(3, "people"),
  54764. name: "Front",
  54765. image: {
  54766. source: "./media/characters/fryra/front.svg",
  54767. extra: 1025/948,
  54768. bottom: 30/1055
  54769. },
  54770. extraAttributes: {
  54771. "breastVolume": {
  54772. name: "Breast Volume",
  54773. power: 3,
  54774. type: "volume",
  54775. base: math.unit(8, "liters")
  54776. },
  54777. }
  54778. },
  54779. back: {
  54780. height: math.unit(2, "meters"),
  54781. preyCapacity: math.unit(3, "people"),
  54782. name: "Back",
  54783. image: {
  54784. source: "./media/characters/fryra/back.svg",
  54785. extra: 993/938,
  54786. bottom: 38/1031
  54787. },
  54788. extraAttributes: {
  54789. "breastVolume": {
  54790. name: "Breast Volume",
  54791. power: 3,
  54792. type: "volume",
  54793. base: math.unit(8, "liters")
  54794. },
  54795. }
  54796. },
  54797. head: {
  54798. height: math.unit(1.33, "feet"),
  54799. name: "Head",
  54800. image: {
  54801. source: "./media/characters/fryra/head.svg"
  54802. }
  54803. },
  54804. maw: {
  54805. height: math.unit(0.56, "feet"),
  54806. name: "Maw",
  54807. image: {
  54808. source: "./media/characters/fryra/maw.svg"
  54809. }
  54810. },
  54811. },
  54812. [
  54813. {
  54814. name: "Micro",
  54815. height: math.unit(5, "cm")
  54816. },
  54817. {
  54818. name: "Normal",
  54819. height: math.unit(2, "meters"),
  54820. default: true
  54821. },
  54822. {
  54823. name: "Small Macro",
  54824. height: math.unit(8, "meters")
  54825. },
  54826. {
  54827. name: "Macro",
  54828. height: math.unit(50, "meters")
  54829. },
  54830. {
  54831. name: "Megamacro",
  54832. height: math.unit(1, "km")
  54833. },
  54834. {
  54835. name: "Planetary",
  54836. height: math.unit(300000, "km")
  54837. },
  54838. {
  54839. name: "Universal",
  54840. height: math.unit(250, "lightyears")
  54841. },
  54842. {
  54843. name: "Fabric of Reality",
  54844. height: math.unit(1000, "multiverses")
  54845. },
  54846. ]
  54847. ))
  54848. characterMakers.push(() => makeCharacter(
  54849. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54850. {
  54851. frontDressed: {
  54852. height: math.unit(6 + 2/12, "feet"),
  54853. name: "Front (Dressed)",
  54854. image: {
  54855. source: "./media/characters/fiera/front-dressed.svg",
  54856. extra: 1883/1793,
  54857. bottom: 70/1953
  54858. }
  54859. },
  54860. backDressed: {
  54861. height: math.unit(6 + 2/12, "feet"),
  54862. name: "Back (Dressed)",
  54863. image: {
  54864. source: "./media/characters/fiera/back-dressed.svg",
  54865. extra: 1847/1780,
  54866. bottom: 70/1917
  54867. }
  54868. },
  54869. frontNude: {
  54870. height: math.unit(6 + 2/12, "feet"),
  54871. name: "Front (Nude)",
  54872. image: {
  54873. source: "./media/characters/fiera/front-nude.svg",
  54874. extra: 1875/1785,
  54875. bottom: 66/1941
  54876. }
  54877. },
  54878. backNude: {
  54879. height: math.unit(6 + 2/12, "feet"),
  54880. name: "Back (Nude)",
  54881. image: {
  54882. source: "./media/characters/fiera/back-nude.svg",
  54883. extra: 1855/1788,
  54884. bottom: 44/1899
  54885. }
  54886. },
  54887. maw: {
  54888. height: math.unit(1.3, "feet"),
  54889. name: "Maw",
  54890. image: {
  54891. source: "./media/characters/fiera/maw.svg"
  54892. }
  54893. },
  54894. paw: {
  54895. height: math.unit(1, "feet"),
  54896. name: "Paw",
  54897. image: {
  54898. source: "./media/characters/fiera/paw.svg"
  54899. }
  54900. },
  54901. shoe: {
  54902. height: math.unit(1.05, "feet"),
  54903. name: "Shoe",
  54904. image: {
  54905. source: "./media/characters/fiera/shoe.svg"
  54906. }
  54907. },
  54908. },
  54909. [
  54910. {
  54911. name: "Normal",
  54912. height: math.unit(6 + 2/12, "feet"),
  54913. default: true
  54914. },
  54915. {
  54916. name: "Size Difference",
  54917. height: math.unit(13, "feet")
  54918. },
  54919. {
  54920. name: "Macro",
  54921. height: math.unit(60, "feet")
  54922. },
  54923. {
  54924. name: "Mega Macro",
  54925. height: math.unit(200, "feet")
  54926. },
  54927. ]
  54928. ))
  54929. characterMakers.push(() => makeCharacter(
  54930. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54931. {
  54932. back: {
  54933. height: math.unit(6, "feet"),
  54934. name: "Back",
  54935. image: {
  54936. source: "./media/characters/flare/back.svg",
  54937. extra: 1883/1765,
  54938. bottom: 32/1915
  54939. }
  54940. },
  54941. },
  54942. [
  54943. {
  54944. name: "Normal",
  54945. height: math.unit(6 + 2/12, "feet"),
  54946. default: true
  54947. },
  54948. {
  54949. name: "Size Difference",
  54950. height: math.unit(13, "feet")
  54951. },
  54952. {
  54953. name: "Macro",
  54954. height: math.unit(60, "feet")
  54955. },
  54956. {
  54957. name: "Macro 2",
  54958. height: math.unit(100, "feet")
  54959. },
  54960. {
  54961. name: "Mega Macro",
  54962. height: math.unit(200, "feet")
  54963. },
  54964. ]
  54965. ))
  54966. characterMakers.push(() => makeCharacter(
  54967. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54968. {
  54969. front: {
  54970. height: math.unit(2.2, "m"),
  54971. weight: math.unit(300, "kg"),
  54972. name: "Front",
  54973. image: {
  54974. source: "./media/characters/hanna/front.svg",
  54975. extra: 1696/1502,
  54976. bottom: 206/1902
  54977. }
  54978. },
  54979. },
  54980. [
  54981. {
  54982. name: "Humanoid",
  54983. height: math.unit(2.2, "meters")
  54984. },
  54985. {
  54986. name: "Normal",
  54987. height: math.unit(4.8, "meters"),
  54988. default: true
  54989. },
  54990. ]
  54991. ))
  54992. characterMakers.push(() => makeCharacter(
  54993. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54994. {
  54995. front: {
  54996. height: math.unit(2.8, "meters"),
  54997. name: "Front",
  54998. image: {
  54999. source: "./media/characters/argo/front.svg",
  55000. extra: 731/518,
  55001. bottom: 84/815
  55002. }
  55003. },
  55004. },
  55005. [
  55006. {
  55007. name: "Normal",
  55008. height: math.unit(3, "meters"),
  55009. default: true
  55010. },
  55011. ]
  55012. ))
  55013. characterMakers.push(() => makeCharacter(
  55014. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55015. {
  55016. side: {
  55017. height: math.unit(3.8, "meters"),
  55018. name: "Side",
  55019. image: {
  55020. source: "./media/characters/sybil/side.svg",
  55021. extra: 382/361,
  55022. bottom: 25/407
  55023. }
  55024. },
  55025. },
  55026. [
  55027. {
  55028. name: "Normal",
  55029. height: math.unit(3.8, "meters"),
  55030. default: true
  55031. },
  55032. ]
  55033. ))
  55034. characterMakers.push(() => makeCharacter(
  55035. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55036. {
  55037. side: {
  55038. height: math.unit(6, "meters"),
  55039. name: "Side",
  55040. image: {
  55041. source: "./media/characters/plum/side.svg",
  55042. extra: 858/755,
  55043. bottom: 45/903
  55044. },
  55045. form: "taur",
  55046. default: true
  55047. },
  55048. back: {
  55049. height: math.unit(6.3, "meters"),
  55050. name: "Back",
  55051. image: {
  55052. source: "./media/characters/plum/back.svg",
  55053. extra: 887/813,
  55054. bottom: 32/919
  55055. },
  55056. form: "taur",
  55057. },
  55058. feral: {
  55059. height: math.unit(5.5, "meter"),
  55060. name: "Front",
  55061. image: {
  55062. source: "./media/characters/plum/feral.svg",
  55063. extra: 568/403,
  55064. bottom: 51/619
  55065. },
  55066. form: "feral",
  55067. default: true
  55068. },
  55069. head: {
  55070. height: math.unit(1.46, "meter"),
  55071. name: "Head",
  55072. image: {
  55073. source: "./media/characters/plum/head.svg"
  55074. },
  55075. form: "taur"
  55076. },
  55077. tailTop: {
  55078. height: math.unit(5.6, "meter"),
  55079. name: "Tail (Top)",
  55080. image: {
  55081. source: "./media/characters/plum/tail-top.svg"
  55082. },
  55083. form: "taur",
  55084. },
  55085. tailBottom: {
  55086. height: math.unit(5.6, "meter"),
  55087. name: "Tail (Bottom)",
  55088. image: {
  55089. source: "./media/characters/plum/tail-bottom.svg"
  55090. },
  55091. form: "taur",
  55092. },
  55093. feralHead: {
  55094. height: math.unit(2.56549521, "meter"),
  55095. name: "Head",
  55096. image: {
  55097. source: "./media/characters/plum/head.svg"
  55098. },
  55099. form: "feral"
  55100. },
  55101. feralTailTop: {
  55102. height: math.unit(5.44728435, "meter"),
  55103. name: "Tail (Top)",
  55104. image: {
  55105. source: "./media/characters/plum/tail-top.svg"
  55106. },
  55107. form: "feral",
  55108. },
  55109. feralTailBottom: {
  55110. height: math.unit(5.44728435, "meter"),
  55111. name: "Tail (Bottom)",
  55112. image: {
  55113. source: "./media/characters/plum/tail-bottom.svg"
  55114. },
  55115. form: "feral",
  55116. },
  55117. },
  55118. [
  55119. {
  55120. name: "Normal",
  55121. height: math.unit(6, "meters"),
  55122. default: true,
  55123. form: "taur"
  55124. },
  55125. {
  55126. name: "Normal",
  55127. height: math.unit(5.5, "meters"),
  55128. default: true,
  55129. form: "feral"
  55130. },
  55131. ],
  55132. {
  55133. "taur": {
  55134. name: "Taur",
  55135. default: true
  55136. },
  55137. "feral": {
  55138. name: "Feral",
  55139. },
  55140. }
  55141. ))
  55142. characterMakers.push(() => makeCharacter(
  55143. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55144. {
  55145. front: {
  55146. height: math.unit(6, "feet"),
  55147. weight: math.unit(115, "lb"),
  55148. name: "Front",
  55149. image: {
  55150. source: "./media/characters/celeste-kitsune/front.svg",
  55151. extra: 393/366,
  55152. bottom: 7/400
  55153. }
  55154. },
  55155. side: {
  55156. height: math.unit(6, "feet"),
  55157. weight: math.unit(115, "lb"),
  55158. name: "Side",
  55159. image: {
  55160. source: "./media/characters/celeste-kitsune/side.svg",
  55161. extra: 818/765,
  55162. bottom: 40/858
  55163. }
  55164. },
  55165. },
  55166. [
  55167. {
  55168. name: "Megamacro",
  55169. height: math.unit(1500, "miles"),
  55170. default: true
  55171. },
  55172. ]
  55173. ))
  55174. characterMakers.push(() => makeCharacter(
  55175. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55176. {
  55177. front: {
  55178. height: math.unit(8, "meters"),
  55179. name: "Front",
  55180. image: {
  55181. source: "./media/characters/io/front.svg",
  55182. extra: 865/722,
  55183. bottom: 58/923
  55184. }
  55185. },
  55186. back: {
  55187. height: math.unit(8, "meters"),
  55188. name: "Back",
  55189. image: {
  55190. source: "./media/characters/io/back.svg",
  55191. extra: 920/776,
  55192. bottom: 42/962
  55193. }
  55194. },
  55195. head: {
  55196. height: math.unit(5.09, "meters"),
  55197. name: "Head",
  55198. image: {
  55199. source: "./media/characters/io/head.svg"
  55200. }
  55201. },
  55202. hand: {
  55203. height: math.unit(1.6, "meters"),
  55204. name: "Hand",
  55205. image: {
  55206. source: "./media/characters/io/hand.svg"
  55207. }
  55208. },
  55209. foot: {
  55210. height: math.unit(2.4, "meters"),
  55211. name: "Foot",
  55212. image: {
  55213. source: "./media/characters/io/foot.svg"
  55214. }
  55215. },
  55216. },
  55217. [
  55218. {
  55219. name: "Normal",
  55220. height: math.unit(8, "meters"),
  55221. default: true
  55222. },
  55223. ]
  55224. ))
  55225. characterMakers.push(() => makeCharacter(
  55226. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55227. {
  55228. side: {
  55229. height: math.unit(6 + 3/12, "feet"),
  55230. weight: math.unit(225, "lb"),
  55231. name: "Side",
  55232. image: {
  55233. source: "./media/characters/silas/side.svg",
  55234. extra: 703/653,
  55235. bottom: 23/726
  55236. },
  55237. extraAttributes: {
  55238. "pawLength": {
  55239. name: "Paw Length",
  55240. power: 1,
  55241. type: "length",
  55242. base: math.unit(12, "inches")
  55243. },
  55244. "pawWidth": {
  55245. name: "Paw Width",
  55246. power: 1,
  55247. type: "length",
  55248. base: math.unit(4.5, "inches")
  55249. },
  55250. "pawArea": {
  55251. name: "Paw Area",
  55252. power: 2,
  55253. type: "area",
  55254. base: math.unit(12 * 4.5, "inches^2")
  55255. },
  55256. }
  55257. },
  55258. },
  55259. [
  55260. {
  55261. name: "Normal",
  55262. height: math.unit(6 + 3/12, "feet"),
  55263. default: true
  55264. },
  55265. ]
  55266. ))
  55267. characterMakers.push(() => makeCharacter(
  55268. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55269. {
  55270. back: {
  55271. height: math.unit(1.6, "meters"),
  55272. weight: math.unit(150, "lb"),
  55273. name: "Back",
  55274. image: {
  55275. source: "./media/characters/zari/back.svg",
  55276. extra: 424/411,
  55277. bottom: 32/456
  55278. },
  55279. extraAttributes: {
  55280. "bladderCapacity": {
  55281. name: "Bladder Size",
  55282. power: 3,
  55283. type: "volume",
  55284. base: math.unit(500, "mL")
  55285. },
  55286. "bladderFlow": {
  55287. name: "Flow Rate",
  55288. power: 3,
  55289. type: "volume",
  55290. base: math.unit(25, "mL")
  55291. },
  55292. }
  55293. },
  55294. },
  55295. [
  55296. {
  55297. name: "Normal",
  55298. height: math.unit(1.6, "meters"),
  55299. default: true
  55300. },
  55301. ]
  55302. ))
  55303. characterMakers.push(() => makeCharacter(
  55304. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55305. {
  55306. front: {
  55307. height: math.unit(25, "feet"),
  55308. weight: math.unit(5, "tons"),
  55309. name: "Front",
  55310. image: {
  55311. source: "./media/characters/charlie-human/front.svg",
  55312. extra: 1870/1740,
  55313. bottom: 102/1972
  55314. },
  55315. extraAttributes: {
  55316. "dickLength": {
  55317. name: "Dick Length",
  55318. power: 1,
  55319. type: "length",
  55320. base: math.unit(9, "feet")
  55321. },
  55322. }
  55323. },
  55324. back: {
  55325. height: math.unit(25, "feet"),
  55326. weight: math.unit(5, "tons"),
  55327. name: "Back",
  55328. image: {
  55329. source: "./media/characters/charlie-human/back.svg",
  55330. extra: 1858/1733,
  55331. bottom: 105/1963
  55332. },
  55333. extraAttributes: {
  55334. "dickLength": {
  55335. name: "Dick Length",
  55336. power: 1,
  55337. type: "length",
  55338. base: math.unit(9, "feet")
  55339. },
  55340. }
  55341. },
  55342. },
  55343. [
  55344. {
  55345. name: "\"Normal\"",
  55346. height: math.unit(6 + 4/12, "feet")
  55347. },
  55348. {
  55349. name: "Big",
  55350. height: math.unit(25, "feet"),
  55351. default: true
  55352. },
  55353. ]
  55354. ))
  55355. characterMakers.push(() => makeCharacter(
  55356. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55357. {
  55358. front: {
  55359. height: math.unit(6 + 4/12, "feet"),
  55360. weight: math.unit(320, "lb"),
  55361. name: "Front",
  55362. image: {
  55363. source: "./media/characters/ookitsu/front.svg",
  55364. extra: 1160/976,
  55365. bottom: 38/1198
  55366. }
  55367. },
  55368. frontNsfw: {
  55369. height: math.unit(6 + 4/12, "feet"),
  55370. weight: math.unit(320, "lb"),
  55371. name: "Front (NSFW)",
  55372. image: {
  55373. source: "./media/characters/ookitsu/front-nsfw.svg",
  55374. extra: 1160/976,
  55375. bottom: 38/1198
  55376. }
  55377. },
  55378. back: {
  55379. height: math.unit(6 + 4/12, "feet"),
  55380. weight: math.unit(320, "lb"),
  55381. name: "Back",
  55382. image: {
  55383. source: "./media/characters/ookitsu/back.svg",
  55384. extra: 1030/975,
  55385. bottom: 70/1100
  55386. }
  55387. },
  55388. head: {
  55389. height: math.unit(1.79, "feet"),
  55390. name: "Head",
  55391. image: {
  55392. source: "./media/characters/ookitsu/head.svg"
  55393. }
  55394. },
  55395. hand: {
  55396. height: math.unit(0.92, "feet"),
  55397. name: "Hand",
  55398. image: {
  55399. source: "./media/characters/ookitsu/hand.svg"
  55400. }
  55401. },
  55402. tails: {
  55403. height: math.unit(3.3, "feet"),
  55404. name: "Tails",
  55405. image: {
  55406. source: "./media/characters/ookitsu/tails.svg"
  55407. }
  55408. },
  55409. dick: {
  55410. height: math.unit(1.10833, "feet"),
  55411. name: "Dick",
  55412. image: {
  55413. source: "./media/characters/ookitsu/dick.svg"
  55414. }
  55415. },
  55416. },
  55417. [
  55418. {
  55419. name: "Normal",
  55420. height: math.unit(6 + 4/12, "feet"),
  55421. default: true
  55422. },
  55423. {
  55424. name: "Macro",
  55425. height: math.unit(30, "feet")
  55426. },
  55427. ]
  55428. ))
  55429. characterMakers.push(() => makeCharacter(
  55430. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55431. {
  55432. anthroFront: {
  55433. height: math.unit(6, "feet"),
  55434. weight: math.unit(250, "lb"),
  55435. name: "Front",
  55436. image: {
  55437. source: "./media/characters/jhusky/anthro-front.svg",
  55438. extra: 474/439,
  55439. bottom: 7/481
  55440. },
  55441. form: "anthro",
  55442. default: true
  55443. },
  55444. taurSideSfw: {
  55445. height: math.unit(6 + 4/12, "feet"),
  55446. weight: math.unit(500, "lb"),
  55447. name: "Side (SFW)",
  55448. image: {
  55449. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55450. extra: 1741/1629,
  55451. bottom: 196/1937
  55452. },
  55453. form: "taur",
  55454. default: true
  55455. },
  55456. taurSideNsfw: {
  55457. height: math.unit(6 + 4/12, "feet"),
  55458. weight: math.unit(500, "lb"),
  55459. name: "Taur (NSFW)",
  55460. image: {
  55461. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55462. extra: 1741/1629,
  55463. bottom: 196/1937
  55464. },
  55465. form: "taur",
  55466. },
  55467. },
  55468. [
  55469. {
  55470. name: "Huge",
  55471. height: math.unit(500, "feet"),
  55472. form: "anthro"
  55473. },
  55474. {
  55475. name: "Macro",
  55476. height: math.unit(1000, "feet"),
  55477. default: true,
  55478. form: "anthro"
  55479. },
  55480. {
  55481. name: "Megamacro",
  55482. height: math.unit(10000, "feet"),
  55483. form: "anthro"
  55484. },
  55485. {
  55486. name: "Huge",
  55487. height: math.unit(528, "feet"),
  55488. form: "taur"
  55489. },
  55490. {
  55491. name: "Macro",
  55492. height: math.unit(1056, "feet"),
  55493. default: true,
  55494. form: "taur"
  55495. },
  55496. {
  55497. name: "Megamacro",
  55498. height: math.unit(10556, "feet"),
  55499. form: "taur"
  55500. },
  55501. ],
  55502. {
  55503. "anthro": {
  55504. name: "Anthro",
  55505. default: true
  55506. },
  55507. "taur": {
  55508. name: "Taur",
  55509. },
  55510. }
  55511. ))
  55512. characterMakers.push(() => makeCharacter(
  55513. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55514. {
  55515. front: {
  55516. height: math.unit(8, "feet"),
  55517. weight: math.unit(500, "lb"),
  55518. name: "Front",
  55519. image: {
  55520. source: "./media/characters/armail/front.svg",
  55521. extra: 1753/1669,
  55522. bottom: 155/1908
  55523. }
  55524. },
  55525. back: {
  55526. height: math.unit(8, "feet"),
  55527. weight: math.unit(500, "lb"),
  55528. name: "Back",
  55529. image: {
  55530. source: "./media/characters/armail/back.svg",
  55531. extra: 1872/1803,
  55532. bottom: 63/1935
  55533. }
  55534. },
  55535. },
  55536. [
  55537. {
  55538. name: "Micro",
  55539. height: math.unit(0.25, "feet")
  55540. },
  55541. {
  55542. name: "Normal",
  55543. height: math.unit(8, "feet"),
  55544. default: true
  55545. },
  55546. {
  55547. name: "Mini-macro",
  55548. height: math.unit(30, "feet")
  55549. },
  55550. {
  55551. name: "Macro",
  55552. height: math.unit(400, "feet")
  55553. },
  55554. {
  55555. name: "Mega-macro",
  55556. height: math.unit(6000, "feet")
  55557. },
  55558. ]
  55559. ))
  55560. characterMakers.push(() => makeCharacter(
  55561. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55562. {
  55563. front: {
  55564. height: math.unit(6 + 7/12, "feet"),
  55565. weight: math.unit(210, "lb"),
  55566. name: "Front",
  55567. image: {
  55568. source: "./media/characters/wilfred-t-buxton/front.svg",
  55569. extra: 1068/882,
  55570. bottom: 28/1096
  55571. }
  55572. },
  55573. },
  55574. [
  55575. {
  55576. name: "Normal",
  55577. height: math.unit(6 + 7/12, "feet"),
  55578. default: true
  55579. },
  55580. ]
  55581. ))
  55582. characterMakers.push(() => makeCharacter(
  55583. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55584. {
  55585. front: {
  55586. height: math.unit(5 + 2/12, "feet"),
  55587. weight: math.unit(120, "lb"),
  55588. name: "Front",
  55589. image: {
  55590. source: "./media/characters/leighton-marrow/front.svg",
  55591. extra: 441/409,
  55592. bottom: 37/478
  55593. }
  55594. },
  55595. },
  55596. [
  55597. {
  55598. name: "Normal",
  55599. height: math.unit(5 + 2/12, "feet"),
  55600. default: true
  55601. },
  55602. ]
  55603. ))
  55604. characterMakers.push(() => makeCharacter(
  55605. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55606. {
  55607. front: {
  55608. height: math.unit(4, "meters"),
  55609. weight: math.unit(1200, "kg"),
  55610. name: "Front",
  55611. image: {
  55612. source: "./media/characters/licos/front.svg",
  55613. extra: 1727/1604,
  55614. bottom: 101/1828
  55615. },
  55616. form: "anthro",
  55617. default: true
  55618. },
  55619. taur_side: {
  55620. height: math.unit(20, "meters"),
  55621. weight: math.unit(1100000, "kg"),
  55622. name: "Side",
  55623. image: {
  55624. source: "./media/characters/licos/taur.svg",
  55625. extra: 1158/1091,
  55626. bottom: 80/1238
  55627. },
  55628. form: "taur",
  55629. default: true
  55630. },
  55631. },
  55632. [
  55633. {
  55634. name: "Normal",
  55635. height: math.unit(4, "meters"),
  55636. default: true,
  55637. form: "anthro"
  55638. },
  55639. {
  55640. name: "Normal",
  55641. height: math.unit(20, "meters"),
  55642. default: true,
  55643. form: "taur"
  55644. },
  55645. ],
  55646. {
  55647. "anthro": {
  55648. name: "Anthro",
  55649. default: true
  55650. },
  55651. "taur": {
  55652. name: "Taur",
  55653. },
  55654. }
  55655. ))
  55656. characterMakers.push(() => makeCharacter(
  55657. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55658. {
  55659. front: {
  55660. height: math.unit(10 + 3/12, "feet"),
  55661. name: "Front",
  55662. image: {
  55663. source: "./media/characters/theo-monkey/front.svg",
  55664. extra: 1735/1658,
  55665. bottom: 73/1808
  55666. }
  55667. },
  55668. back: {
  55669. height: math.unit(10 + 3/12, "feet"),
  55670. name: "Back",
  55671. image: {
  55672. source: "./media/characters/theo-monkey/back.svg",
  55673. extra: 1742/1664,
  55674. bottom: 33/1775
  55675. }
  55676. },
  55677. head: {
  55678. height: math.unit(2.29, "feet"),
  55679. name: "Head",
  55680. image: {
  55681. source: "./media/characters/theo-monkey/head.svg"
  55682. }
  55683. },
  55684. handPalm: {
  55685. height: math.unit(1.73, "feet"),
  55686. name: "Hand (Palm)",
  55687. image: {
  55688. source: "./media/characters/theo-monkey/hand-palm.svg"
  55689. }
  55690. },
  55691. handBack: {
  55692. height: math.unit(1.63, "feet"),
  55693. name: "Hand (Back)",
  55694. image: {
  55695. source: "./media/characters/theo-monkey/hand-back.svg"
  55696. }
  55697. },
  55698. footSole: {
  55699. height: math.unit(2.15, "feet"),
  55700. name: "Foot (Sole)",
  55701. image: {
  55702. source: "./media/characters/theo-monkey/foot-sole.svg"
  55703. }
  55704. },
  55705. footSide: {
  55706. height: math.unit(1.6, "feet"),
  55707. name: "Foot (Side)",
  55708. image: {
  55709. source: "./media/characters/theo-monkey/foot-side.svg"
  55710. }
  55711. },
  55712. },
  55713. [
  55714. {
  55715. name: "Normal",
  55716. height: math.unit(10 + 3/12, "feet"),
  55717. default: true
  55718. },
  55719. ]
  55720. ))
  55721. characterMakers.push(() => makeCharacter(
  55722. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55723. {
  55724. front: {
  55725. height: math.unit(11, "feet"),
  55726. weight: math.unit(3000, "lb"),
  55727. preyCapacity: math.unit(10, "people"),
  55728. name: "Front",
  55729. image: {
  55730. source: "./media/characters/brook/front.svg",
  55731. extra: 909/835,
  55732. bottom: 108/1017
  55733. }
  55734. },
  55735. back: {
  55736. height: math.unit(11, "feet"),
  55737. weight: math.unit(3000, "lb"),
  55738. preyCapacity: math.unit(10, "people"),
  55739. name: "Back",
  55740. image: {
  55741. source: "./media/characters/brook/back.svg",
  55742. extra: 976/916,
  55743. bottom: 34/1010
  55744. }
  55745. },
  55746. backAlt: {
  55747. height: math.unit(11, "feet"),
  55748. weight: math.unit(3000, "lb"),
  55749. preyCapacity: math.unit(10, "people"),
  55750. name: "Back (Alt)",
  55751. image: {
  55752. source: "./media/characters/brook/back-alt.svg",
  55753. extra: 1283/1213,
  55754. bottom: 35/1318
  55755. }
  55756. },
  55757. bust: {
  55758. height: math.unit(9.0859030837, "feet"),
  55759. weight: math.unit(3000, "lb"),
  55760. preyCapacity: math.unit(10, "people"),
  55761. name: "Bust",
  55762. image: {
  55763. source: "./media/characters/brook/bust.svg",
  55764. extra: 2043/1923,
  55765. bottom: 0/2043
  55766. }
  55767. },
  55768. },
  55769. [
  55770. {
  55771. name: "Small",
  55772. height: math.unit(11, "feet"),
  55773. default: true
  55774. },
  55775. {
  55776. name: "Towering",
  55777. height: math.unit(5, "km")
  55778. },
  55779. {
  55780. name: "Enormous",
  55781. height: math.unit(25, "earths")
  55782. },
  55783. ]
  55784. ))
  55785. characterMakers.push(() => makeCharacter(
  55786. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55787. {
  55788. front: {
  55789. height: math.unit(4, "feet"),
  55790. weight: math.unit(150, "lb"),
  55791. name: "Front",
  55792. image: {
  55793. source: "./media/characters/squishi/front.svg",
  55794. extra: 1428/1271,
  55795. bottom: 30/1458
  55796. },
  55797. extraAttributes: {
  55798. "pawSize": {
  55799. name: "Paw Size",
  55800. power: 1,
  55801. type: "length",
  55802. base: math.unit(14, "ShoeSizeMensUS"),
  55803. defaultUnit: "ShoeSizeMensUS"
  55804. },
  55805. }
  55806. },
  55807. side: {
  55808. height: math.unit(4, "feet"),
  55809. weight: math.unit(150, "lb"),
  55810. name: "Side",
  55811. image: {
  55812. source: "./media/characters/squishi/side.svg",
  55813. extra: 1428/1271,
  55814. bottom: 30/1458
  55815. },
  55816. extraAttributes: {
  55817. "pawSize": {
  55818. name: "Paw Size",
  55819. power: 1,
  55820. type: "length",
  55821. base: math.unit(14, "ShoeSizeMensUS"),
  55822. defaultUnit: "ShoeSizeMensUS"
  55823. },
  55824. }
  55825. },
  55826. back: {
  55827. height: math.unit(4, "feet"),
  55828. weight: math.unit(150, "lb"),
  55829. name: "Back",
  55830. image: {
  55831. source: "./media/characters/squishi/back.svg",
  55832. extra: 1428/1271,
  55833. bottom: 30/1458
  55834. },
  55835. extraAttributes: {
  55836. "pawSize": {
  55837. name: "Paw Size",
  55838. power: 1,
  55839. type: "length",
  55840. base: math.unit(14, "ShoeSizeMensUS"),
  55841. defaultUnit: "ShoeSizeMensUS"
  55842. },
  55843. }
  55844. },
  55845. },
  55846. [
  55847. {
  55848. name: "Normal",
  55849. height: math.unit(4, "feet"),
  55850. default: true
  55851. },
  55852. ]
  55853. ))
  55854. characterMakers.push(() => makeCharacter(
  55855. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55856. {
  55857. front: {
  55858. height: math.unit(7 + 8/12, "feet"),
  55859. weight: math.unit(333, "lb"),
  55860. name: "Front",
  55861. image: {
  55862. source: "./media/characters/vincent-vasroc/front.svg",
  55863. extra: 1962/1860,
  55864. bottom: 41/2003
  55865. }
  55866. },
  55867. back: {
  55868. height: math.unit(7 + 8/12, "feet"),
  55869. weight: math.unit(333, "lb"),
  55870. name: "Back",
  55871. image: {
  55872. source: "./media/characters/vincent-vasroc/back.svg",
  55873. extra: 1952/1815,
  55874. bottom: 33/1985
  55875. }
  55876. },
  55877. paw: {
  55878. height: math.unit(1.24, "feet"),
  55879. name: "Paw",
  55880. image: {
  55881. source: "./media/characters/vincent-vasroc/paw.svg"
  55882. }
  55883. },
  55884. ear: {
  55885. height: math.unit(0.75, "feet"),
  55886. name: "Ear",
  55887. image: {
  55888. source: "./media/characters/vincent-vasroc/ear.svg"
  55889. }
  55890. },
  55891. },
  55892. [
  55893. {
  55894. name: "Nano",
  55895. height: math.unit(92, "micrometers")
  55896. },
  55897. {
  55898. name: "Normal",
  55899. height: math.unit(7 + 8/12, "feet"),
  55900. default: true
  55901. },
  55902. ]
  55903. ))
  55904. characterMakers.push(() => makeCharacter(
  55905. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55906. {
  55907. frontNsfw: {
  55908. height: math.unit(40, "feet"),
  55909. weight: math.unit(58, "tons"),
  55910. name: "Front (NSFW)",
  55911. image: {
  55912. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55913. extra: 1265/965,
  55914. bottom: 155/1420
  55915. }
  55916. },
  55917. frontSfw: {
  55918. height: math.unit(40, "feet"),
  55919. weight: math.unit(58, "tons"),
  55920. name: "Front (SFW)",
  55921. image: {
  55922. source: "./media/characters/ru-kahn/front-sfw.svg",
  55923. extra: 1265/965,
  55924. bottom: 80/1345
  55925. }
  55926. },
  55927. },
  55928. [
  55929. {
  55930. name: "Small",
  55931. height: math.unit(4, "feet")
  55932. },
  55933. {
  55934. name: "Normal",
  55935. height: math.unit(40, "feet"),
  55936. default: true
  55937. },
  55938. {
  55939. name: "Macro",
  55940. height: math.unit(400, "feet")
  55941. },
  55942. ]
  55943. ))
  55944. characterMakers.push(() => makeCharacter(
  55945. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55946. {
  55947. frontNude: {
  55948. height: math.unit(6 + 5/12, "feet"),
  55949. name: "Front (Nude)",
  55950. image: {
  55951. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55952. extra: 1369/1366,
  55953. bottom: 68/1437
  55954. }
  55955. },
  55956. frontDressed: {
  55957. height: math.unit(6 + 5/12, "feet"),
  55958. name: "Front (Dressed)",
  55959. image: {
  55960. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55961. extra: 1369/1366,
  55962. bottom: 68/1437
  55963. }
  55964. },
  55965. },
  55966. [
  55967. {
  55968. name: "Normal",
  55969. height: math.unit(6 + 5/12, "feet"),
  55970. default: true
  55971. },
  55972. {
  55973. name: "Maximum",
  55974. height: math.unit(1930, "feet")
  55975. },
  55976. ]
  55977. ))
  55978. characterMakers.push(() => makeCharacter(
  55979. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55980. {
  55981. front: {
  55982. height: math.unit(5 + 6/12, "feet"),
  55983. name: "Front",
  55984. image: {
  55985. source: "./media/characters/kaja/front.svg",
  55986. extra: 1874/1514,
  55987. bottom: 117/1991
  55988. }
  55989. },
  55990. },
  55991. [
  55992. {
  55993. name: "Normal",
  55994. height: math.unit(5 + 6/12, "feet"),
  55995. default: true
  55996. },
  55997. ]
  55998. ))
  55999. characterMakers.push(() => makeCharacter(
  56000. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56001. {
  56002. front: {
  56003. height: math.unit(5 + 9/12, "feet"),
  56004. weight: math.unit(200, "lb"),
  56005. name: "Front",
  56006. image: {
  56007. source: "./media/characters/mark-smith/front.svg",
  56008. extra: 1004/943,
  56009. bottom: 58/1062
  56010. }
  56011. },
  56012. back: {
  56013. height: math.unit(5 + 9/12, "feet"),
  56014. weight: math.unit(200, "lb"),
  56015. name: "Back",
  56016. image: {
  56017. source: "./media/characters/mark-smith/back.svg",
  56018. extra: 1023/953,
  56019. bottom: 24/1047
  56020. }
  56021. },
  56022. head: {
  56023. height: math.unit(1.82, "feet"),
  56024. name: "Head",
  56025. image: {
  56026. source: "./media/characters/mark-smith/head.svg"
  56027. }
  56028. },
  56029. hand: {
  56030. height: math.unit(1.4, "feet"),
  56031. name: "Hand",
  56032. image: {
  56033. source: "./media/characters/mark-smith/hand.svg"
  56034. }
  56035. },
  56036. paw: {
  56037. height: math.unit(1.69, "feet"),
  56038. name: "Paw",
  56039. image: {
  56040. source: "./media/characters/mark-smith/paw.svg"
  56041. }
  56042. },
  56043. },
  56044. [
  56045. {
  56046. name: "Micro",
  56047. height: math.unit(0.25, "inches")
  56048. },
  56049. {
  56050. name: "Normal",
  56051. height: math.unit(5 + 9/12, "feet"),
  56052. default: true
  56053. },
  56054. {
  56055. name: "Macro",
  56056. height: math.unit(500, "feet")
  56057. },
  56058. ]
  56059. ))
  56060. characterMakers.push(() => makeCharacter(
  56061. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56062. {
  56063. frontNude: {
  56064. height: math.unit(6, "feet"),
  56065. name: "Front (Nude)",
  56066. image: {
  56067. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56068. extra: 1384/1321,
  56069. bottom: 57/1441
  56070. }
  56071. },
  56072. frontDressed: {
  56073. height: math.unit(6, "feet"),
  56074. name: "Front (Dressed)",
  56075. image: {
  56076. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56077. extra: 1384/1321,
  56078. bottom: 57/1441
  56079. }
  56080. },
  56081. },
  56082. [
  56083. {
  56084. name: "Normal",
  56085. height: math.unit(6, "feet"),
  56086. default: true
  56087. },
  56088. {
  56089. name: "Maximum",
  56090. height: math.unit(1776, "feet")
  56091. },
  56092. ]
  56093. ))
  56094. characterMakers.push(() => makeCharacter(
  56095. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56096. {
  56097. front: {
  56098. height: math.unit(2 + 4/12, "feet"),
  56099. weight: math.unit(350, "lb"),
  56100. name: "Front",
  56101. image: {
  56102. source: "./media/characters/devos/front.svg",
  56103. extra: 958/852,
  56104. bottom: 143/1101
  56105. }
  56106. },
  56107. },
  56108. [
  56109. {
  56110. name: "Base",
  56111. height: math.unit(2 + 4/12, "feet"),
  56112. default: true
  56113. },
  56114. ]
  56115. ))
  56116. characterMakers.push(() => makeCharacter(
  56117. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56118. {
  56119. front: {
  56120. height: math.unit(9 + 2/12, "feet"),
  56121. name: "Front",
  56122. image: {
  56123. source: "./media/characters/hiveheart/front.svg",
  56124. extra: 394/364,
  56125. bottom: 65/459
  56126. }
  56127. },
  56128. back: {
  56129. height: math.unit(9 + 2/12, "feet"),
  56130. name: "Back",
  56131. image: {
  56132. source: "./media/characters/hiveheart/back.svg",
  56133. extra: 374/357,
  56134. bottom: 63/437
  56135. }
  56136. },
  56137. },
  56138. [
  56139. {
  56140. name: "Base",
  56141. height: math.unit(9 + 2/12, "feet"),
  56142. default: true
  56143. },
  56144. ]
  56145. ))
  56146. characterMakers.push(() => makeCharacter(
  56147. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56148. {
  56149. front: {
  56150. height: math.unit(2.5, "inches"),
  56151. weight: math.unit(0.6, "oz"),
  56152. name: "Front",
  56153. image: {
  56154. source: "./media/characters/bryn/front.svg",
  56155. extra: 1480/1205,
  56156. bottom: 27/1507
  56157. }
  56158. },
  56159. back: {
  56160. height: math.unit(2.5, "inches"),
  56161. weight: math.unit(0.6, "oz"),
  56162. name: "Back",
  56163. image: {
  56164. source: "./media/characters/bryn/back.svg",
  56165. extra: 1475/1201,
  56166. bottom: 39/1514
  56167. }
  56168. },
  56169. foot: {
  56170. height: math.unit(0.4, "inches"),
  56171. name: "Foot",
  56172. image: {
  56173. source: "./media/characters/bryn/foot.svg"
  56174. }
  56175. },
  56176. },
  56177. [
  56178. {
  56179. name: "Normal",
  56180. height: math.unit(2.5, "inches"),
  56181. default: true
  56182. },
  56183. ]
  56184. ))
  56185. characterMakers.push(() => makeCharacter(
  56186. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56187. {
  56188. side: {
  56189. height: math.unit(7, "feet"),
  56190. weight: math.unit(657, "kg"),
  56191. name: "Side",
  56192. image: {
  56193. source: "./media/characters/delta/side.svg",
  56194. extra: 781/212,
  56195. bottom: 7/788
  56196. },
  56197. extraAttributes: {
  56198. "wingspan": {
  56199. name: "Wingspan",
  56200. power: 1,
  56201. type: "length",
  56202. base: math.unit(48, "feet")
  56203. },
  56204. "length": {
  56205. name: "Length",
  56206. power: 1,
  56207. type: "length",
  56208. base: math.unit(21, "feet")
  56209. },
  56210. "pawSize": {
  56211. name: "Paw Size",
  56212. power: 2,
  56213. type: "area",
  56214. base: math.unit(1.5*1.4, "feet^2")
  56215. },
  56216. }
  56217. },
  56218. },
  56219. [
  56220. {
  56221. name: "Normal",
  56222. height: math.unit(6, "feet"),
  56223. default: true
  56224. },
  56225. ]
  56226. ))
  56227. characterMakers.push(() => makeCharacter(
  56228. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56229. {
  56230. front: {
  56231. height: math.unit(6, "feet"),
  56232. name: "Front",
  56233. image: {
  56234. source: "./media/characters/pyrow/front.svg",
  56235. extra: 513/486,
  56236. bottom: 14/527
  56237. }
  56238. },
  56239. frontWing: {
  56240. height: math.unit(6, "feet"),
  56241. name: "Front (Wing)",
  56242. image: {
  56243. source: "./media/characters/pyrow/front-wing.svg",
  56244. extra: 539/383,
  56245. bottom: 20/559
  56246. }
  56247. },
  56248. back: {
  56249. height: math.unit(6, "feet"),
  56250. name: "Back",
  56251. image: {
  56252. source: "./media/characters/pyrow/back.svg",
  56253. extra: 500/473,
  56254. bottom: 9/509
  56255. }
  56256. },
  56257. },
  56258. [
  56259. {
  56260. name: "Normal",
  56261. height: math.unit(6, "feet"),
  56262. default: true
  56263. },
  56264. ]
  56265. ))
  56266. characterMakers.push(() => makeCharacter(
  56267. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56268. {
  56269. front: {
  56270. height: math.unit(5, "meters"),
  56271. weight: math.unit(3, "tonnes"),
  56272. name: "Front",
  56273. image: {
  56274. source: "./media/characters/velikan/front.svg",
  56275. extra: 867/744,
  56276. bottom: 71/938
  56277. },
  56278. extraAttributes: {
  56279. "shoeSize": {
  56280. name: "Shoe Size",
  56281. power: 1,
  56282. type: "length",
  56283. base: math.unit(135, "ShoeSizeUK"),
  56284. defaultUnit: "ShoeSizeUK"
  56285. },
  56286. }
  56287. },
  56288. },
  56289. [
  56290. {
  56291. name: "Normal",
  56292. height: math.unit(5, "meters"),
  56293. default: true
  56294. },
  56295. {
  56296. name: "Macro",
  56297. height: math.unit(1, "km")
  56298. },
  56299. {
  56300. name: "Mega Macro",
  56301. height: math.unit(100, "km")
  56302. },
  56303. {
  56304. name: "Giga Macro",
  56305. height: math.unit(2, "megameters")
  56306. },
  56307. {
  56308. name: "Planetary",
  56309. height: math.unit(22, "megameters")
  56310. },
  56311. {
  56312. name: "Solar",
  56313. height: math.unit(8, "gigameters")
  56314. },
  56315. {
  56316. name: "Cosmic",
  56317. height: math.unit(10, "zettameters")
  56318. },
  56319. {
  56320. name: "Omni",
  56321. height: math.unit(9e260, "multiverses")
  56322. },
  56323. ]
  56324. ))
  56325. characterMakers.push(() => makeCharacter(
  56326. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56327. {
  56328. front: {
  56329. height: math.unit(4 + 3/12, "feet"),
  56330. weight: math.unit(90, "lb"),
  56331. name: "Front",
  56332. image: {
  56333. source: "./media/characters/sabiki/front.svg",
  56334. extra: 1662/1423,
  56335. bottom: 65/1727
  56336. }
  56337. },
  56338. },
  56339. [
  56340. {
  56341. name: "Normal",
  56342. height: math.unit(4 + 3/12, "feet"),
  56343. default: true
  56344. },
  56345. ]
  56346. ))
  56347. characterMakers.push(() => makeCharacter(
  56348. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56349. {
  56350. frontSfw: {
  56351. height: math.unit(2, "mm"),
  56352. name: "Front (SFW)",
  56353. image: {
  56354. source: "./media/characters/carmel/front-sfw.svg",
  56355. extra: 1131/1006,
  56356. bottom: 66/1197
  56357. }
  56358. },
  56359. frontNsfw: {
  56360. height: math.unit(2, "mm"),
  56361. name: "Front (NSFW)",
  56362. image: {
  56363. source: "./media/characters/carmel/front-nsfw.svg",
  56364. extra: 1131/1006,
  56365. bottom: 66/1197
  56366. }
  56367. },
  56368. foot: {
  56369. height: math.unit(0.3, "mm"),
  56370. name: "Foot",
  56371. image: {
  56372. source: "./media/characters/carmel/foot.svg"
  56373. }
  56374. },
  56375. tongue: {
  56376. height: math.unit(0.71, "mm"),
  56377. name: "Tongue",
  56378. image: {
  56379. source: "./media/characters/carmel/tongue.svg"
  56380. }
  56381. },
  56382. dick: {
  56383. height: math.unit(0.085, "mm"),
  56384. name: "Dick",
  56385. image: {
  56386. source: "./media/characters/carmel/dick.svg"
  56387. }
  56388. },
  56389. },
  56390. [
  56391. {
  56392. name: "Micro",
  56393. height: math.unit(2, "mm"),
  56394. default: true
  56395. },
  56396. {
  56397. name: "Normal",
  56398. height: math.unit(4 + 8/12, "feet")
  56399. },
  56400. {
  56401. name: "Mega Macro",
  56402. height: math.unit(250, "feet")
  56403. },
  56404. {
  56405. name: "BIGGER",
  56406. height: math.unit(1000, "feet")
  56407. },
  56408. {
  56409. name: "BIGGEST",
  56410. height: math.unit(2, "miles")
  56411. },
  56412. ]
  56413. ))
  56414. characterMakers.push(() => makeCharacter(
  56415. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56416. {
  56417. front: {
  56418. height: math.unit(6.5, "feet"),
  56419. weight: math.unit(198, "lb"),
  56420. name: "Front",
  56421. image: {
  56422. source: "./media/characters/tamani/anthro.svg",
  56423. extra: 930/890,
  56424. bottom: 34/964
  56425. },
  56426. form: "anthro",
  56427. default: true
  56428. },
  56429. side: {
  56430. height: math.unit(6, "feet"),
  56431. weight: math.unit(198*2, "lb"),
  56432. name: "Side",
  56433. image: {
  56434. source: "./media/characters/tamani/feral.svg",
  56435. extra: 559/519,
  56436. bottom: 43/602
  56437. },
  56438. form: "feral"
  56439. },
  56440. },
  56441. [
  56442. {
  56443. name: "Normal",
  56444. height: math.unit(6.5, "feet"),
  56445. default: true,
  56446. form: "anthro"
  56447. },
  56448. {
  56449. name: "Normal",
  56450. height: math.unit(6, "feet"),
  56451. default: true,
  56452. form: "feral"
  56453. },
  56454. ],
  56455. {
  56456. "anthro": {
  56457. name: "Anthro",
  56458. default: true
  56459. },
  56460. "feral": {
  56461. name: "Feral",
  56462. },
  56463. }
  56464. ))
  56465. characterMakers.push(() => makeCharacter(
  56466. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56467. {
  56468. front: {
  56469. height: math.unit(4 + 1/12, "feet"),
  56470. weight: math.unit(114, "lb"),
  56471. name: "Front",
  56472. image: {
  56473. source: "./media/characters/dex/front.svg",
  56474. extra: 787/680,
  56475. bottom: 18/805
  56476. }
  56477. },
  56478. side: {
  56479. height: math.unit(4 + 1/12, "feet"),
  56480. weight: math.unit(114, "lb"),
  56481. name: "Side",
  56482. image: {
  56483. source: "./media/characters/dex/side.svg",
  56484. extra: 785/680,
  56485. bottom: 12/797
  56486. }
  56487. },
  56488. back: {
  56489. height: math.unit(4 + 1/12, "feet"),
  56490. weight: math.unit(114, "lb"),
  56491. name: "Back",
  56492. image: {
  56493. source: "./media/characters/dex/back.svg",
  56494. extra: 785/681,
  56495. bottom: 17/802
  56496. }
  56497. },
  56498. loungewear: {
  56499. height: math.unit(4 + 1/12, "feet"),
  56500. weight: math.unit(114, "lb"),
  56501. name: "Loungewear",
  56502. image: {
  56503. source: "./media/characters/dex/loungewear.svg",
  56504. extra: 787/680,
  56505. bottom: 18/805
  56506. }
  56507. },
  56508. workout: {
  56509. height: math.unit(4 + 1/12, "feet"),
  56510. weight: math.unit(114, "lb"),
  56511. name: "Workout",
  56512. image: {
  56513. source: "./media/characters/dex/workout.svg",
  56514. extra: 787/680,
  56515. bottom: 18/805
  56516. }
  56517. },
  56518. schoolUniform: {
  56519. height: math.unit(4 + 1/12, "feet"),
  56520. weight: math.unit(114, "lb"),
  56521. name: "School-uniform",
  56522. image: {
  56523. source: "./media/characters/dex/school-uniform.svg",
  56524. extra: 787/680,
  56525. bottom: 18/805
  56526. }
  56527. },
  56528. maw: {
  56529. height: math.unit(0.55, "feet"),
  56530. name: "Maw",
  56531. image: {
  56532. source: "./media/characters/dex/maw.svg"
  56533. }
  56534. },
  56535. paw: {
  56536. height: math.unit(0.87, "feet"),
  56537. name: "Paw",
  56538. image: {
  56539. source: "./media/characters/dex/paw.svg"
  56540. }
  56541. },
  56542. bust: {
  56543. height: math.unit(1.67, "feet"),
  56544. name: "Bust",
  56545. image: {
  56546. source: "./media/characters/dex/bust.svg"
  56547. }
  56548. },
  56549. },
  56550. [
  56551. {
  56552. name: "Normal",
  56553. height: math.unit(4 + 1/12, "feet"),
  56554. default: true
  56555. },
  56556. ]
  56557. ))
  56558. characterMakers.push(() => makeCharacter(
  56559. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56560. {
  56561. front: {
  56562. height: math.unit(4 + 3/12, "feet"),
  56563. weight: math.unit(60, "lb"),
  56564. name: "Front",
  56565. image: {
  56566. source: "./media/characters/silke/front.svg",
  56567. extra: 1334/1122,
  56568. bottom: 21/1355
  56569. }
  56570. },
  56571. back: {
  56572. height: math.unit(4 + 3/12, "feet"),
  56573. weight: math.unit(60, "lb"),
  56574. name: "Back",
  56575. image: {
  56576. source: "./media/characters/silke/back.svg",
  56577. extra: 1328/1092,
  56578. bottom: 16/1344
  56579. }
  56580. },
  56581. dressed: {
  56582. height: math.unit(4 + 3/12, "feet"),
  56583. weight: math.unit(60, "lb"),
  56584. name: "Dressed",
  56585. image: {
  56586. source: "./media/characters/silke/dressed.svg",
  56587. extra: 1334/1122,
  56588. bottom: 43/1377
  56589. }
  56590. },
  56591. },
  56592. [
  56593. {
  56594. name: "Normal",
  56595. height: math.unit(4 + 3/12, "feet"),
  56596. default: true
  56597. },
  56598. ]
  56599. ))
  56600. characterMakers.push(() => makeCharacter(
  56601. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56602. {
  56603. front: {
  56604. height: math.unit(1.58, "meters"),
  56605. weight: math.unit(47, "kg"),
  56606. name: "Front",
  56607. image: {
  56608. source: "./media/characters/wireshark/front.svg",
  56609. extra: 883/838,
  56610. bottom: 66/949
  56611. }
  56612. },
  56613. },
  56614. [
  56615. {
  56616. name: "Normal",
  56617. height: math.unit(1.58, "meters"),
  56618. default: true
  56619. },
  56620. ]
  56621. ))
  56622. characterMakers.push(() => makeCharacter(
  56623. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56624. {
  56625. front: {
  56626. height: math.unit(6, "meters"),
  56627. weight: math.unit(15000, "kg"),
  56628. name: "Front",
  56629. image: {
  56630. source: "./media/characters/gallagher/front.svg",
  56631. extra: 532/493,
  56632. bottom: 0/532
  56633. }
  56634. },
  56635. },
  56636. [
  56637. {
  56638. name: "Normal",
  56639. height: math.unit(6, "meters"),
  56640. default: true
  56641. },
  56642. ]
  56643. ))
  56644. characterMakers.push(() => makeCharacter(
  56645. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56646. {
  56647. front: {
  56648. height: math.unit(2.4, "meters"),
  56649. weight: math.unit(270, "kg"),
  56650. name: "Front",
  56651. image: {
  56652. source: "./media/characters/alice/front.svg",
  56653. extra: 950/900,
  56654. bottom: 36/986
  56655. }
  56656. },
  56657. side: {
  56658. height: math.unit(2.4, "meters"),
  56659. weight: math.unit(270, "kg"),
  56660. name: "Side",
  56661. image: {
  56662. source: "./media/characters/alice/side.svg",
  56663. extra: 921/876,
  56664. bottom: 19/940
  56665. }
  56666. },
  56667. dressed: {
  56668. height: math.unit(2.4, "meters"),
  56669. weight: math.unit(270, "kg"),
  56670. name: "Dressed",
  56671. image: {
  56672. source: "./media/characters/alice/dressed.svg",
  56673. extra: 905/850,
  56674. bottom: 81/986
  56675. }
  56676. },
  56677. fishnet: {
  56678. height: math.unit(2.4, "meters"),
  56679. weight: math.unit(270, "kg"),
  56680. name: "Fishnet",
  56681. image: {
  56682. source: "./media/characters/alice/fishnet.svg",
  56683. extra: 905/850,
  56684. bottom: 81/986
  56685. }
  56686. },
  56687. },
  56688. [
  56689. {
  56690. name: "Normal",
  56691. height: math.unit(2.4, "meters"),
  56692. default: true
  56693. },
  56694. ]
  56695. ))
  56696. characterMakers.push(() => makeCharacter(
  56697. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56698. {
  56699. front: {
  56700. height: math.unit(175.25, "feet"),
  56701. name: "Front",
  56702. image: {
  56703. source: "./media/characters/fio/front.svg",
  56704. extra: 1883/1591,
  56705. bottom: 34/1917
  56706. }
  56707. },
  56708. },
  56709. [
  56710. {
  56711. name: "Normal",
  56712. height: math.unit(175.25, "cm"),
  56713. default: true
  56714. },
  56715. ]
  56716. ))
  56717. characterMakers.push(() => makeCharacter(
  56718. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56719. {
  56720. side: {
  56721. height: math.unit(6, "meters"),
  56722. weight: math.unit(3400, "kg"),
  56723. preyCapacity: math.unit(1700, "liters"),
  56724. name: "Side",
  56725. image: {
  56726. source: "./media/characters/hass/side.svg",
  56727. extra: 1058/997,
  56728. bottom: 177/1235
  56729. }
  56730. },
  56731. feeding: {
  56732. height: math.unit(6*0.63, "meters"),
  56733. weight: math.unit(3400, "kg"),
  56734. preyCapacity: math.unit(1700, "liters"),
  56735. name: "Feeding",
  56736. image: {
  56737. source: "./media/characters/hass/feeding.svg",
  56738. extra: 689/579,
  56739. bottom: 146/835
  56740. }
  56741. },
  56742. guts: {
  56743. height: math.unit(6, "meters"),
  56744. weight: math.unit(3400, "kg"),
  56745. name: "Guts",
  56746. image: {
  56747. source: "./media/characters/hass/guts.svg",
  56748. extra: 1223/1198,
  56749. bottom: 182/1405
  56750. }
  56751. },
  56752. dickFront: {
  56753. height: math.unit(1.4, "meters"),
  56754. name: "Dick (Front)",
  56755. image: {
  56756. source: "./media/characters/hass/dick-front.svg"
  56757. }
  56758. },
  56759. dickSide: {
  56760. height: math.unit(1.3, "meters"),
  56761. name: "Dick (Side)",
  56762. image: {
  56763. source: "./media/characters/hass/dick-side.svg"
  56764. }
  56765. },
  56766. dickBack: {
  56767. height: math.unit(1.4, "meters"),
  56768. name: "Dick (Back)",
  56769. image: {
  56770. source: "./media/characters/hass/dick-back.svg"
  56771. }
  56772. },
  56773. },
  56774. [
  56775. {
  56776. name: "Normal",
  56777. height: math.unit(6, "meters"),
  56778. default: true
  56779. },
  56780. ]
  56781. ))
  56782. characterMakers.push(() => makeCharacter(
  56783. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56784. {
  56785. front: {
  56786. height: math.unit(4, "feet"),
  56787. weight: math.unit(60, "lb"),
  56788. name: "Front",
  56789. image: {
  56790. source: "./media/characters/hickory-finnegan/front.svg",
  56791. extra: 444/411,
  56792. bottom: 10/454
  56793. }
  56794. },
  56795. side: {
  56796. height: math.unit(4, "feet"),
  56797. weight: math.unit(60, "lb"),
  56798. name: "Side",
  56799. image: {
  56800. source: "./media/characters/hickory-finnegan/side.svg",
  56801. extra: 444/411,
  56802. bottom: 10/454
  56803. }
  56804. },
  56805. back: {
  56806. height: math.unit(4, "feet"),
  56807. weight: math.unit(60, "lb"),
  56808. name: "Back",
  56809. image: {
  56810. source: "./media/characters/hickory-finnegan/back.svg",
  56811. extra: 444/411,
  56812. bottom: 10/454
  56813. }
  56814. },
  56815. },
  56816. [
  56817. {
  56818. name: "Normal",
  56819. height: math.unit(4, "feet"),
  56820. default: true
  56821. },
  56822. ]
  56823. ))
  56824. characterMakers.push(() => makeCharacter(
  56825. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56826. {
  56827. snivy_front: {
  56828. height: math.unit(2, "feet"),
  56829. weight: math.unit(17.9, "lb"),
  56830. name: "Front",
  56831. image: {
  56832. source: "./media/characters/robin-phox/snivy-front.svg",
  56833. extra: 569/504,
  56834. bottom: 33/602
  56835. },
  56836. form: "snivy",
  56837. default: true
  56838. },
  56839. snivy_frontNsfw: {
  56840. height: math.unit(2, "feet"),
  56841. weight: math.unit(17.9, "lb"),
  56842. name: "Front (NSFW)",
  56843. image: {
  56844. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56845. extra: 569/504,
  56846. bottom: 33/602
  56847. },
  56848. form: "snivy",
  56849. },
  56850. snivy_back: {
  56851. height: math.unit(2, "feet"),
  56852. weight: math.unit(17.9, "lb"),
  56853. name: "Back",
  56854. image: {
  56855. source: "./media/characters/robin-phox/snivy-back.svg",
  56856. extra: 577/508,
  56857. bottom: 21/598
  56858. },
  56859. form: "snivy",
  56860. },
  56861. snivy_foot: {
  56862. height: math.unit(0.68, "feet"),
  56863. name: "Foot",
  56864. image: {
  56865. source: "./media/characters/robin-phox/snivy-foot.svg"
  56866. },
  56867. form: "snivy",
  56868. },
  56869. snivy_sole: {
  56870. height: math.unit(0.68, "feet"),
  56871. name: "Sole",
  56872. image: {
  56873. source: "./media/characters/robin-phox/snivy-sole.svg"
  56874. },
  56875. form: "snivy",
  56876. },
  56877. yoshi_front: {
  56878. height: math.unit(6, "feet"),
  56879. weight: math.unit(150, "lb"),
  56880. name: "Front",
  56881. image: {
  56882. source: "./media/characters/robin-phox/yoshi-front.svg",
  56883. extra: 890/792,
  56884. bottom: 29/919
  56885. },
  56886. form: "yoshi",
  56887. default: true
  56888. },
  56889. yoshi_frontNsfw: {
  56890. height: math.unit(6, "feet"),
  56891. weight: math.unit(150, "lb"),
  56892. name: "Front (NSFW)",
  56893. image: {
  56894. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56895. extra: 890/792,
  56896. bottom: 29/919
  56897. },
  56898. form: "yoshi",
  56899. },
  56900. yoshi_back: {
  56901. height: math.unit(6, "feet"),
  56902. weight: math.unit(150, "lb"),
  56903. name: "Back",
  56904. image: {
  56905. source: "./media/characters/robin-phox/yoshi-back.svg",
  56906. extra: 890/792,
  56907. bottom: 29/919
  56908. },
  56909. form: "yoshi",
  56910. },
  56911. yoshi_foot: {
  56912. height: math.unit(1.5, "feet"),
  56913. name: "Foot",
  56914. image: {
  56915. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56916. },
  56917. form: "yoshi",
  56918. },
  56919. delphox_front: {
  56920. height: math.unit(4 + 11/12, "feet"),
  56921. weight: math.unit(86, "lb"),
  56922. name: "Front",
  56923. image: {
  56924. source: "./media/characters/robin-phox/delphox-front.svg",
  56925. extra: 1266/1069,
  56926. bottom: 32/1298
  56927. },
  56928. form: "delphox",
  56929. default: true
  56930. },
  56931. delphox_frontNsfw: {
  56932. height: math.unit(4 + 11/12, "feet"),
  56933. weight: math.unit(86, "lb"),
  56934. name: "Front (NSFW)",
  56935. image: {
  56936. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56937. extra: 1266/1069,
  56938. bottom: 32/1298
  56939. },
  56940. form: "delphox",
  56941. },
  56942. delphox_back: {
  56943. height: math.unit(4 + 11/12, "feet"),
  56944. weight: math.unit(86, "lb"),
  56945. name: "Back",
  56946. image: {
  56947. source: "./media/characters/robin-phox/delphox-back.svg",
  56948. extra: 1269/1083,
  56949. bottom: 15/1284
  56950. },
  56951. form: "delphox",
  56952. },
  56953. mienshao_front: {
  56954. height: math.unit(4 + 7/12, "feet"),
  56955. weight: math.unit(78.3, "lb"),
  56956. name: "Front",
  56957. image: {
  56958. source: "./media/characters/robin-phox/mienshao-front.svg",
  56959. extra: 1052/970,
  56960. bottom: 108/1160
  56961. },
  56962. form: "mienshao",
  56963. default: true
  56964. },
  56965. mienshao_frontNsfw: {
  56966. height: math.unit(4 + 7/12, "feet"),
  56967. weight: math.unit(78.3, "lb"),
  56968. name: "Front (NSFW)",
  56969. image: {
  56970. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56971. extra: 1052/970,
  56972. bottom: 108/1160
  56973. },
  56974. form: "mienshao",
  56975. },
  56976. mienshao_back: {
  56977. height: math.unit(4 + 7/12, "feet"),
  56978. weight: math.unit(78.3, "lb"),
  56979. name: "Back",
  56980. image: {
  56981. source: "./media/characters/robin-phox/mienshao-back.svg",
  56982. extra: 1102/982,
  56983. bottom: 32/1134
  56984. },
  56985. form: "mienshao",
  56986. },
  56987. inteleon_front: {
  56988. height: math.unit(6 + 3/12, "feet"),
  56989. weight: math.unit(99.6, "lb"),
  56990. name: "Front",
  56991. image: {
  56992. source: "./media/characters/robin-phox/inteleon-front.svg",
  56993. extra: 910/799,
  56994. bottom: 76/986
  56995. },
  56996. form: "inteleon",
  56997. default: true
  56998. },
  56999. inteleon_frontNsfw: {
  57000. height: math.unit(6 + 3/12, "feet"),
  57001. weight: math.unit(99.6, "lb"),
  57002. name: "Front (NSFW)",
  57003. image: {
  57004. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57005. extra: 910/799,
  57006. bottom: 76/986
  57007. },
  57008. form: "inteleon",
  57009. },
  57010. inteleon_back: {
  57011. height: math.unit(6 + 3/12, "feet"),
  57012. weight: math.unit(99.6, "lb"),
  57013. name: "Back",
  57014. image: {
  57015. source: "./media/characters/robin-phox/inteleon-back.svg",
  57016. extra: 907/796,
  57017. bottom: 25/932
  57018. },
  57019. form: "inteleon",
  57020. },
  57021. reshiram_front: {
  57022. height: math.unit(10 + 6/12, "feet"),
  57023. weight: math.unit(727.5, "lb"),
  57024. name: "Front",
  57025. image: {
  57026. source: "./media/characters/robin-phox/reshiram-front.svg",
  57027. extra: 1198/940,
  57028. bottom: 123/1321
  57029. },
  57030. form: "reshiram",
  57031. },
  57032. reshiram_frontNsfw: {
  57033. height: math.unit(10 + 6/12, "feet"),
  57034. weight: math.unit(727.5, "lb"),
  57035. name: "Front-nsfw",
  57036. image: {
  57037. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57038. extra: 1198/940,
  57039. bottom: 123/1321
  57040. },
  57041. form: "reshiram",
  57042. },
  57043. reshiram_back: {
  57044. height: math.unit(10 + 6/12, "feet"),
  57045. weight: math.unit(727.5, "lb"),
  57046. name: "Back",
  57047. image: {
  57048. source: "./media/characters/robin-phox/reshiram-back.svg",
  57049. extra: 1024/904,
  57050. bottom: 85/1109
  57051. },
  57052. form: "reshiram",
  57053. },
  57054. samurott_front: {
  57055. height: math.unit(8, "feet"),
  57056. weight: math.unit(208.6, "lb"),
  57057. name: "Front",
  57058. image: {
  57059. source: "./media/characters/robin-phox/samurott-front.svg",
  57060. extra: 1048/984,
  57061. bottom: 100/1148
  57062. },
  57063. form: "samurott",
  57064. },
  57065. samurott_frontNsfw: {
  57066. height: math.unit(8, "feet"),
  57067. weight: math.unit(208.6, "lb"),
  57068. name: "Front-nsfw",
  57069. image: {
  57070. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57071. extra: 1048/984,
  57072. bottom: 100/1148
  57073. },
  57074. form: "samurott",
  57075. },
  57076. samurott_back: {
  57077. height: math.unit(8, "feet"),
  57078. weight: math.unit(208.6, "lb"),
  57079. name: "Back",
  57080. image: {
  57081. source: "./media/characters/robin-phox/samurott-back.svg",
  57082. extra: 1110/1042,
  57083. bottom: 12/1122
  57084. },
  57085. form: "samurott",
  57086. },
  57087. samurott_feral: {
  57088. height: math.unit(4 + 11/12, "feet"),
  57089. weight: math.unit(208.6, "lb"),
  57090. name: "Feral",
  57091. image: {
  57092. source: "./media/characters/robin-phox/samurott-feral.svg",
  57093. extra: 766/681,
  57094. bottom: 108/874
  57095. },
  57096. form: "samurott",
  57097. },
  57098. },
  57099. [
  57100. {
  57101. name: "Normal",
  57102. height: math.unit(2, "feet"),
  57103. default: true,
  57104. form: "snivy"
  57105. },
  57106. {
  57107. name: "Normal",
  57108. height: math.unit(6, "feet"),
  57109. default: true,
  57110. form: "yoshi"
  57111. },
  57112. {
  57113. name: "Normal",
  57114. height: math.unit(4 + 11/12, "feet"),
  57115. default: true,
  57116. form: "delphox"
  57117. },
  57118. {
  57119. name: "Normal",
  57120. height: math.unit(4 + 7/12, "feet"),
  57121. default: true,
  57122. form: "mienshao"
  57123. },
  57124. {
  57125. name: "Normal",
  57126. height: math.unit(6 + 3/12, "feet"),
  57127. default: true,
  57128. form: "inteleon"
  57129. },
  57130. {
  57131. name: "Normal",
  57132. height: math.unit(10 + 6/12, "feet"),
  57133. default: true,
  57134. form: "reshiram"
  57135. },
  57136. {
  57137. name: "Normal",
  57138. height: math.unit(8, "feet"),
  57139. default: true,
  57140. form: "samurott"
  57141. },
  57142. {
  57143. name: "Macro",
  57144. height: math.unit(500, "feet"),
  57145. allForms: true
  57146. },
  57147. {
  57148. name: "Mega Macro",
  57149. height: math.unit(10, "earths"),
  57150. allForms: true
  57151. },
  57152. {
  57153. name: "Giga Macro",
  57154. height: math.unit(1, "galaxy"),
  57155. allForms: true
  57156. },
  57157. {
  57158. name: "Godly Macro",
  57159. height: math.unit(1e10, "multiverses"),
  57160. allForms: true
  57161. },
  57162. ],
  57163. {
  57164. "snivy": {
  57165. name: "Snivy",
  57166. default: true
  57167. },
  57168. "yoshi": {
  57169. name: "Yoshi",
  57170. },
  57171. "delphox": {
  57172. name: "Delphox",
  57173. },
  57174. "mienshao": {
  57175. name: "Mienshao",
  57176. },
  57177. "inteleon": {
  57178. name: "Inteleon",
  57179. },
  57180. "reshiram": {
  57181. name: "Reshiram",
  57182. },
  57183. "samurott": {
  57184. name: "Samurott",
  57185. },
  57186. }
  57187. ))
  57188. characterMakers.push(() => makeCharacter(
  57189. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57190. {
  57191. front: {
  57192. height: math.unit(4, "feet"),
  57193. name: "Front",
  57194. image: {
  57195. source: "./media/characters/ash-leung/front.svg",
  57196. extra: 1916/1792,
  57197. bottom: 50/1966
  57198. }
  57199. },
  57200. },
  57201. [
  57202. {
  57203. name: "Atomic",
  57204. height: math.unit(1, "angstrom")
  57205. },
  57206. {
  57207. name: "Microscopic",
  57208. height: math.unit(4000, "angstroms")
  57209. },
  57210. {
  57211. name: "Speck",
  57212. height: math.unit(1, "mm")
  57213. },
  57214. {
  57215. name: "Small",
  57216. height: math.unit(1, "inch")
  57217. },
  57218. {
  57219. name: "Normal",
  57220. height: math.unit(4, "feet"),
  57221. default: true
  57222. },
  57223. ]
  57224. ))
  57225. characterMakers.push(() => makeCharacter(
  57226. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57227. {
  57228. frontDressed: {
  57229. height: math.unit(2.08, "meters"),
  57230. weight: math.unit(175, "lb"),
  57231. name: "Front (Dressed)",
  57232. image: {
  57233. source: "./media/characters/carie/front-dressed.svg",
  57234. extra: 456/417,
  57235. bottom: 7/463
  57236. }
  57237. },
  57238. backDressed: {
  57239. height: math.unit(2.08, "meters"),
  57240. weight: math.unit(175, "lb"),
  57241. name: "Back (Dressed)",
  57242. image: {
  57243. source: "./media/characters/carie/back-dressed.svg",
  57244. extra: 455/414,
  57245. bottom: 11/466
  57246. }
  57247. },
  57248. front: {
  57249. height: math.unit(2, "meters"),
  57250. weight: math.unit(175, "lb"),
  57251. name: "Front",
  57252. image: {
  57253. source: "./media/characters/carie/front.svg",
  57254. extra: 438/399,
  57255. bottom: 12/450
  57256. }
  57257. },
  57258. back: {
  57259. height: math.unit(2, "meters"),
  57260. weight: math.unit(175, "lb"),
  57261. name: "Back",
  57262. image: {
  57263. source: "./media/characters/carie/back.svg",
  57264. extra: 438/397,
  57265. bottom: 7/445
  57266. }
  57267. },
  57268. },
  57269. [
  57270. {
  57271. name: "Normal",
  57272. height: math.unit(2.08, "meters"),
  57273. default: true
  57274. },
  57275. {
  57276. name: "Macro",
  57277. height: math.unit(2.08e3, "meters")
  57278. },
  57279. {
  57280. name: "Mega Macro",
  57281. height: math.unit(2.08e6, "meters")
  57282. },
  57283. {
  57284. name: "Giga Macro",
  57285. height: math.unit(2.08e9, "meters")
  57286. },
  57287. {
  57288. name: "Tera Macro",
  57289. height: math.unit(2.08e12, "meters")
  57290. },
  57291. {
  57292. name: "Peta Macro",
  57293. height: math.unit(2.08e15, "meters")
  57294. },
  57295. {
  57296. name: "Exa Macro",
  57297. height: math.unit(2.08e18, "meters")
  57298. },
  57299. {
  57300. name: "Zetta Macro",
  57301. height: math.unit(2.08e21, "meters")
  57302. },
  57303. {
  57304. name: "Yotta Macro",
  57305. height: math.unit(2.08e24, "meters")
  57306. },
  57307. ]
  57308. ))
  57309. characterMakers.push(() => makeCharacter(
  57310. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57311. {
  57312. front: {
  57313. height: math.unit(5 + 2/12, "feet"),
  57314. weight: math.unit(120, "lb"),
  57315. name: "Front",
  57316. image: {
  57317. source: "./media/characters/sai-bree/front.svg",
  57318. extra: 1843/1702,
  57319. bottom: 91/1934
  57320. }
  57321. },
  57322. back: {
  57323. height: math.unit(5 + 2/12, "feet"),
  57324. weight: math.unit(120, "lb"),
  57325. name: "Back",
  57326. image: {
  57327. source: "./media/characters/sai-bree/back.svg",
  57328. extra: 1809/1637,
  57329. bottom: 56/1865
  57330. }
  57331. },
  57332. },
  57333. [
  57334. {
  57335. name: "Normal",
  57336. height: math.unit(5 + 2/12, "feet"),
  57337. default: true
  57338. },
  57339. {
  57340. name: "Macro",
  57341. height: math.unit(500, "feet")
  57342. },
  57343. ]
  57344. ))
  57345. characterMakers.push(() => makeCharacter(
  57346. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57347. {
  57348. side: {
  57349. height: math.unit(0.77, "meters"),
  57350. weight: math.unit(120, "lb"),
  57351. name: "Side",
  57352. image: {
  57353. source: "./media/characters/davwyn/side.svg",
  57354. extra: 1557/1225,
  57355. bottom: 131/1688
  57356. }
  57357. },
  57358. front: {
  57359. height: math.unit(0.835410, "meters"),
  57360. weight: math.unit(120, "lb"),
  57361. name: "Front",
  57362. image: {
  57363. source: "./media/characters/davwyn/front.svg",
  57364. extra: 870/843,
  57365. bottom: 175/1045
  57366. }
  57367. },
  57368. },
  57369. [
  57370. {
  57371. name: "Minidrake",
  57372. height: math.unit(0.77/4, "meters")
  57373. },
  57374. {
  57375. name: "Normal",
  57376. height: math.unit(0.77, "meters"),
  57377. default: true
  57378. },
  57379. ]
  57380. ))
  57381. characterMakers.push(() => makeCharacter(
  57382. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57383. {
  57384. front: {
  57385. height: math.unit(10 + 3/12, "feet"),
  57386. weight: math.unit(2857, "lb"),
  57387. name: "Front",
  57388. image: {
  57389. source: "./media/characters/balans/front.svg",
  57390. extra: 427/402,
  57391. bottom: 26/453
  57392. }
  57393. },
  57394. side: {
  57395. height: math.unit(10 + 3/12, "feet"),
  57396. weight: math.unit(2857, "lb"),
  57397. name: "Side",
  57398. image: {
  57399. source: "./media/characters/balans/side.svg",
  57400. extra: 397/371,
  57401. bottom: 17/414
  57402. }
  57403. },
  57404. back: {
  57405. height: math.unit(10 + 3/12, "feet"),
  57406. weight: math.unit(2857, "lb"),
  57407. name: "Back",
  57408. image: {
  57409. source: "./media/characters/balans/back.svg",
  57410. extra: 408/381,
  57411. bottom: 14/422
  57412. }
  57413. },
  57414. hand: {
  57415. height: math.unit(1.15, "feet"),
  57416. name: "Hand",
  57417. image: {
  57418. source: "./media/characters/balans/hand.svg"
  57419. }
  57420. },
  57421. footRest: {
  57422. height: math.unit(3.1, "feet"),
  57423. name: "Foot (Rest)",
  57424. image: {
  57425. source: "./media/characters/balans/foot-rest.svg"
  57426. }
  57427. },
  57428. footActive: {
  57429. height: math.unit(3.5, "feet"),
  57430. name: "Foot (Active)",
  57431. image: {
  57432. source: "./media/characters/balans/foot-active.svg"
  57433. }
  57434. },
  57435. },
  57436. [
  57437. {
  57438. name: "Normal",
  57439. height: math.unit(10 + 3/12, "feet"),
  57440. default: true
  57441. },
  57442. ]
  57443. ))
  57444. characterMakers.push(() => makeCharacter(
  57445. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57446. {
  57447. side: {
  57448. height: math.unit(9, "meters"),
  57449. weight: math.unit(114, "tonnes"),
  57450. name: "Side",
  57451. image: {
  57452. source: "./media/characters/eldkveikir/side.svg",
  57453. extra: 1927/338,
  57454. bottom: 42/1969
  57455. }
  57456. },
  57457. sitting: {
  57458. height: math.unit(13.4, "meters"),
  57459. weight: math.unit(114, "tonnes"),
  57460. name: "Sitting",
  57461. image: {
  57462. source: "./media/characters/eldkveikir/sitting.svg",
  57463. extra: 1108/963,
  57464. bottom: 610/1718
  57465. }
  57466. },
  57467. maw: {
  57468. height: math.unit(8.36, "meters"),
  57469. name: "Maw",
  57470. image: {
  57471. source: "./media/characters/eldkveikir/maw.svg"
  57472. }
  57473. },
  57474. hand: {
  57475. height: math.unit(4.84, "meters"),
  57476. name: "Hand",
  57477. image: {
  57478. source: "./media/characters/eldkveikir/hand.svg"
  57479. }
  57480. },
  57481. foot: {
  57482. height: math.unit(6.9, "meters"),
  57483. name: "Foot",
  57484. image: {
  57485. source: "./media/characters/eldkveikir/foot.svg"
  57486. }
  57487. },
  57488. genitals: {
  57489. height: math.unit(9.6, "meters"),
  57490. name: "Genitals",
  57491. image: {
  57492. source: "./media/characters/eldkveikir/genitals.svg"
  57493. }
  57494. },
  57495. },
  57496. [
  57497. {
  57498. name: "Normal",
  57499. height: math.unit(9, "meters"),
  57500. default: true
  57501. },
  57502. ]
  57503. ))
  57504. characterMakers.push(() => makeCharacter(
  57505. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57506. {
  57507. front: {
  57508. height: math.unit(14, "feet"),
  57509. weight: math.unit(4100, "lb"),
  57510. name: "Front",
  57511. image: {
  57512. source: "./media/characters/arrow/front.svg",
  57513. extra: 330/318,
  57514. bottom: 56/386
  57515. }
  57516. },
  57517. },
  57518. [
  57519. {
  57520. name: "Normal",
  57521. height: math.unit(14, "feet"),
  57522. default: true
  57523. },
  57524. {
  57525. name: "Minimacro",
  57526. height: math.unit(63, "feet")
  57527. },
  57528. {
  57529. name: "Macro",
  57530. height: math.unit(630, "feet")
  57531. },
  57532. {
  57533. name: "Megamacro",
  57534. height: math.unit(12600, "feet")
  57535. },
  57536. {
  57537. name: "Gigamacro",
  57538. height: math.unit(18000, "miles")
  57539. },
  57540. ]
  57541. ))
  57542. characterMakers.push(() => makeCharacter(
  57543. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57544. {
  57545. front: {
  57546. height: math.unit(10, "feet"),
  57547. weight: math.unit(2.4, "tons"),
  57548. name: "Front",
  57549. image: {
  57550. source: "./media/characters/3yk-k0-unit/front.svg",
  57551. extra: 573/561,
  57552. bottom: 33/606
  57553. }
  57554. },
  57555. back: {
  57556. height: math.unit(10, "feet"),
  57557. weight: math.unit(2.4, "tons"),
  57558. name: "Back",
  57559. image: {
  57560. source: "./media/characters/3yk-k0-unit/back.svg",
  57561. extra: 614/573,
  57562. bottom: 32/646
  57563. }
  57564. },
  57565. maw: {
  57566. height: math.unit(2.15, "feet"),
  57567. name: "Maw",
  57568. image: {
  57569. source: "./media/characters/3yk-k0-unit/maw.svg"
  57570. }
  57571. },
  57572. },
  57573. [
  57574. {
  57575. name: "Normal",
  57576. height: math.unit(10, "feet"),
  57577. default: true
  57578. },
  57579. ]
  57580. ))
  57581. characterMakers.push(() => makeCharacter(
  57582. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57583. {
  57584. front: {
  57585. height: math.unit(8 + 8/12, "feet"),
  57586. name: "Front",
  57587. image: {
  57588. source: "./media/characters/nemo/front.svg",
  57589. extra: 1308/1217,
  57590. bottom: 57/1365
  57591. }
  57592. },
  57593. },
  57594. [
  57595. {
  57596. name: "Normal",
  57597. height: math.unit(8 + 8/12, "feet"),
  57598. default: true
  57599. },
  57600. ]
  57601. ))
  57602. characterMakers.push(() => makeCharacter(
  57603. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57604. {
  57605. front: {
  57606. height: math.unit(8, "feet"),
  57607. weight: math.unit(760, "lb"),
  57608. name: "Front",
  57609. image: {
  57610. source: "./media/characters/rexx/front.svg",
  57611. extra: 786/750,
  57612. bottom: 17/803
  57613. },
  57614. extraAttributes: {
  57615. "pawLength": {
  57616. name: "Paw Length",
  57617. power: 1,
  57618. type: "length",
  57619. base: math.unit(27, "inches")
  57620. },
  57621. }
  57622. },
  57623. },
  57624. [
  57625. {
  57626. name: "Micro",
  57627. height: math.unit(2, "inches")
  57628. },
  57629. {
  57630. name: "Normal",
  57631. height: math.unit(8, "feet"),
  57632. default: true
  57633. },
  57634. {
  57635. name: "Macro",
  57636. height: math.unit(150, "feet")
  57637. },
  57638. ]
  57639. ))
  57640. characterMakers.push(() => makeCharacter(
  57641. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57642. {
  57643. front: {
  57644. height: math.unit(18, "feet"),
  57645. weight: math.unit(1975, "lb"),
  57646. name: "Front",
  57647. image: {
  57648. source: "./media/characters/draco/front.svg",
  57649. extra: 1325/1241,
  57650. bottom: 83/1408
  57651. }
  57652. },
  57653. back: {
  57654. height: math.unit(18, "feet"),
  57655. weight: math.unit(1975, "lb"),
  57656. name: "Back",
  57657. image: {
  57658. source: "./media/characters/draco/back.svg",
  57659. extra: 1332/1250,
  57660. bottom: 43/1375
  57661. }
  57662. },
  57663. dick: {
  57664. height: math.unit(7.5, "feet"),
  57665. name: "Dick",
  57666. image: {
  57667. source: "./media/characters/draco/dick.svg"
  57668. }
  57669. },
  57670. },
  57671. [
  57672. {
  57673. name: "Normal",
  57674. height: math.unit(18, "feet"),
  57675. default: true
  57676. },
  57677. ]
  57678. ))
  57679. characterMakers.push(() => makeCharacter(
  57680. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57681. {
  57682. front: {
  57683. height: math.unit(3.2, "meters"),
  57684. name: "Front",
  57685. image: {
  57686. source: "./media/characters/harriett/front.svg",
  57687. extra: 1966/1915,
  57688. bottom: 9/1975
  57689. }
  57690. },
  57691. },
  57692. [
  57693. {
  57694. name: "Normal",
  57695. height: math.unit(3.2, "meters"),
  57696. default: true
  57697. },
  57698. ]
  57699. ))
  57700. characterMakers.push(() => makeCharacter(
  57701. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57702. {
  57703. sitting: {
  57704. height: math.unit(0.8, "meter"),
  57705. name: "Sitting",
  57706. image: {
  57707. source: "./media/characters/serpentus/sitting.svg",
  57708. extra: 293/290,
  57709. bottom: 140/433
  57710. }
  57711. },
  57712. },
  57713. [
  57714. {
  57715. name: "Normal",
  57716. height: math.unit(0.8, "meter"),
  57717. default: true
  57718. },
  57719. ]
  57720. ))
  57721. characterMakers.push(() => makeCharacter(
  57722. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57723. {
  57724. front: {
  57725. height: math.unit(5.7174385736, "feet"),
  57726. name: "Front",
  57727. image: {
  57728. source: "./media/characters/nova-polecat/front.svg",
  57729. extra: 1317/1216,
  57730. bottom: 92/1409
  57731. }
  57732. },
  57733. },
  57734. [
  57735. {
  57736. name: "Normal",
  57737. height: math.unit(5.7174385736, "feet"),
  57738. default: true
  57739. },
  57740. ]
  57741. ))
  57742. characterMakers.push(() => makeCharacter(
  57743. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57744. {
  57745. front: {
  57746. height: math.unit(5 + 4/12, "feet"),
  57747. weight: math.unit(250, "lb"),
  57748. name: "Front",
  57749. image: {
  57750. source: "./media/characters/mook/front.svg",
  57751. extra: 1088/1037,
  57752. bottom: 132/1220
  57753. }
  57754. },
  57755. back: {
  57756. height: math.unit(5 + 1/12, "feet"),
  57757. weight: math.unit(250, "lb"),
  57758. name: "Back",
  57759. image: {
  57760. source: "./media/characters/mook/back.svg",
  57761. extra: 1184/905,
  57762. bottom: 96/1280
  57763. }
  57764. },
  57765. head: {
  57766. height: math.unit(1.85, "feet"),
  57767. name: "Head",
  57768. image: {
  57769. source: "./media/characters/mook/head.svg"
  57770. }
  57771. },
  57772. hand: {
  57773. height: math.unit(1.9, "feet"),
  57774. name: "Hand",
  57775. image: {
  57776. source: "./media/characters/mook/hand.svg"
  57777. }
  57778. },
  57779. palm: {
  57780. height: math.unit(1.84, "feet"),
  57781. name: "Palm",
  57782. image: {
  57783. source: "./media/characters/mook/palm.svg"
  57784. }
  57785. },
  57786. foot: {
  57787. height: math.unit(1.44, "feet"),
  57788. name: "Foot",
  57789. image: {
  57790. source: "./media/characters/mook/foot.svg"
  57791. }
  57792. },
  57793. sole: {
  57794. height: math.unit(1.44, "feet"),
  57795. name: "Sole",
  57796. image: {
  57797. source: "./media/characters/mook/sole.svg"
  57798. }
  57799. },
  57800. },
  57801. [
  57802. {
  57803. name: "Normal",
  57804. height: math.unit(5 + 4/12, "feet"),
  57805. default: true
  57806. },
  57807. {
  57808. name: "Big",
  57809. height: math.unit(12, "feet")
  57810. },
  57811. ]
  57812. ))
  57813. characterMakers.push(() => makeCharacter(
  57814. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57815. {
  57816. front: {
  57817. height: math.unit(6 + 10/12, "feet"),
  57818. weight: math.unit(233, "lb"),
  57819. name: "Front",
  57820. image: {
  57821. source: "./media/characters/kayla/front.svg",
  57822. extra: 1850/1775,
  57823. bottom: 65/1915
  57824. }
  57825. },
  57826. },
  57827. [
  57828. {
  57829. name: "Normal",
  57830. height: math.unit(6 + 10/12, "feet"),
  57831. default: true
  57832. },
  57833. {
  57834. name: "Amazonian",
  57835. height: math.unit(12 + 5/12, "feet")
  57836. },
  57837. {
  57838. name: "Mini Giantess",
  57839. height: math.unit(26, "feet")
  57840. },
  57841. {
  57842. name: "Giantess",
  57843. height: math.unit(200, "feet")
  57844. },
  57845. {
  57846. name: "Mega Giantess",
  57847. height: math.unit(2500, "feet")
  57848. },
  57849. {
  57850. name: "City Sized",
  57851. height: math.unit(50, "miles")
  57852. },
  57853. {
  57854. name: "Country Sized",
  57855. height: math.unit(500, "miles")
  57856. },
  57857. {
  57858. name: "Continent Sized",
  57859. height: math.unit(2500, "miles")
  57860. },
  57861. {
  57862. name: "Planet Sized",
  57863. height: math.unit(10000, "miles")
  57864. },
  57865. {
  57866. name: "Star Sized",
  57867. height: math.unit(5e6, "miles")
  57868. },
  57869. {
  57870. name: "Solar System Sized",
  57871. height: math.unit(125, "AU")
  57872. },
  57873. {
  57874. name: "Galaxy Sized",
  57875. height: math.unit(300e3, "lightyears")
  57876. },
  57877. {
  57878. name: "Universe Sized",
  57879. height: math.unit(200e9, "lightyears")
  57880. },
  57881. {
  57882. name: "Multiverse Sized",
  57883. height: math.unit(20, "exauniverses")
  57884. },
  57885. {
  57886. name: "Mother of Existence",
  57887. height: math.unit(1e6, "yottauniverses")
  57888. },
  57889. ]
  57890. ))
  57891. characterMakers.push(() => makeCharacter(
  57892. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57893. {
  57894. side: {
  57895. height: math.unit(9.5, "meters"),
  57896. name: "Side",
  57897. image: {
  57898. source: "./media/characters/kulve-ragnarok/side.svg",
  57899. extra: 364/326,
  57900. bottom: 50/414
  57901. }
  57902. },
  57903. },
  57904. [
  57905. {
  57906. name: "Normal",
  57907. height: math.unit(9.5, "meters"),
  57908. default: true
  57909. },
  57910. ]
  57911. ))
  57912. characterMakers.push(() => makeCharacter(
  57913. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57914. {
  57915. front: {
  57916. height: math.unit(8 + 9/12, "feet"),
  57917. name: "Front",
  57918. image: {
  57919. source: "./media/characters/atlas-goat/front.svg",
  57920. extra: 1462/1323,
  57921. bottom: 12/1474
  57922. }
  57923. },
  57924. },
  57925. [
  57926. {
  57927. name: "Normal",
  57928. height: math.unit(8 + 9/12, "feet"),
  57929. default: true
  57930. },
  57931. {
  57932. name: "Skyline",
  57933. height: math.unit(845, "feet")
  57934. },
  57935. {
  57936. name: "Orbital",
  57937. height: math.unit(93000, "miles")
  57938. },
  57939. {
  57940. name: "Constellation",
  57941. height: math.unit(27000, "lightyears")
  57942. },
  57943. ]
  57944. ))
  57945. characterMakers.push(() => makeCharacter(
  57946. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57947. {
  57948. side: {
  57949. height: math.unit(1.8, "meters"),
  57950. weight: math.unit(120, "kg"),
  57951. name: "Side",
  57952. image: {
  57953. source: "./media/characters/xie-ling/side.svg",
  57954. extra: 646/574,
  57955. bottom: 44/690
  57956. }
  57957. },
  57958. },
  57959. [
  57960. {
  57961. name: "Tiny",
  57962. height: math.unit(1.80, "meters")
  57963. },
  57964. {
  57965. name: "Small",
  57966. height: math.unit(6, "meters")
  57967. },
  57968. {
  57969. name: "Medium",
  57970. height: math.unit(15, "meters")
  57971. },
  57972. {
  57973. name: "Normal",
  57974. height: math.unit(30, "meters"),
  57975. default: true
  57976. },
  57977. {
  57978. name: "Above Normal",
  57979. height: math.unit(60, "meters")
  57980. },
  57981. {
  57982. name: "Big",
  57983. height: math.unit(220, "meters")
  57984. },
  57985. {
  57986. name: "Giant",
  57987. height: math.unit(2.2, "km")
  57988. },
  57989. {
  57990. name: "Macro",
  57991. height: math.unit(25, "km")
  57992. },
  57993. {
  57994. name: "Mega Macro",
  57995. height: math.unit(350, "km")
  57996. },
  57997. {
  57998. name: "Mega Macro+",
  57999. height: math.unit(5000, "km")
  58000. },
  58001. {
  58002. name: "Goddess",
  58003. height: math.unit(3, "multiverses")
  58004. },
  58005. ]
  58006. ))
  58007. characterMakers.push(() => makeCharacter(
  58008. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58009. {
  58010. frontSfw: {
  58011. height: math.unit(5 + 11/12, "feet"),
  58012. weight: math.unit(210, "lb"),
  58013. name: "Front",
  58014. image: {
  58015. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58016. extra: 1928/1821,
  58017. bottom: 45/1973
  58018. }
  58019. },
  58020. backSfw: {
  58021. height: math.unit(5 + 11/12, "feet"),
  58022. weight: math.unit(210, "lb"),
  58023. name: "Back",
  58024. image: {
  58025. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58026. extra: 1920/1813,
  58027. bottom: 34/1954
  58028. }
  58029. },
  58030. frontNsfw: {
  58031. height: math.unit(5 + 11/12, "feet"),
  58032. weight: math.unit(210, "lb"),
  58033. name: "Front (NSFW)",
  58034. image: {
  58035. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58036. extra: 1928/1821,
  58037. bottom: 45/1973
  58038. }
  58039. },
  58040. backNsfw: {
  58041. height: math.unit(5 + 11/12, "feet"),
  58042. weight: math.unit(210, "lb"),
  58043. name: "Back (NSFW)",
  58044. image: {
  58045. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58046. extra: 1920/1813,
  58047. bottom: 34/1954
  58048. }
  58049. },
  58050. },
  58051. [
  58052. {
  58053. name: "Normal",
  58054. height: math.unit(5 + 11/12, "feet"),
  58055. default: true
  58056. },
  58057. {
  58058. name: "Goddess",
  58059. height: math.unit(20 + 3/12, "feet")
  58060. },
  58061. {
  58062. name: "Breaker of Man",
  58063. height: math.unit(329 + 9/12, "feet")
  58064. },
  58065. {
  58066. name: "Solar Justice",
  58067. height: math.unit(0.6, "solarradii")
  58068. },
  58069. {
  58070. name: "She Who Judges",
  58071. height: math.unit(1, "universe")
  58072. },
  58073. ]
  58074. ))
  58075. characterMakers.push(() => makeCharacter(
  58076. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58077. {
  58078. casual_front: {
  58079. height: math.unit(6 + 1/12, "feet"),
  58080. weight: math.unit(190, "lb"),
  58081. preyCapacity: math.unit(1, "people"),
  58082. name: "Front",
  58083. image: {
  58084. source: "./media/characters/managarmr/casual-front.svg",
  58085. extra: 411/381,
  58086. bottom: 15/426
  58087. },
  58088. extraAttributes: {
  58089. "pawSize": {
  58090. name: "Paw Size",
  58091. power: 1,
  58092. type: "length",
  58093. base: math.unit(0.2, "meters")
  58094. },
  58095. },
  58096. form: "casual",
  58097. },
  58098. casual_back: {
  58099. height: math.unit(6 + 1/12, "feet"),
  58100. weight: math.unit(190, "lb"),
  58101. preyCapacity: math.unit(1, "people"),
  58102. name: "Back",
  58103. image: {
  58104. source: "./media/characters/managarmr/casual-back.svg",
  58105. extra: 413/383,
  58106. bottom: 13/426
  58107. },
  58108. extraAttributes: {
  58109. "pawSize": {
  58110. name: "Paw Size",
  58111. power: 1,
  58112. type: "length",
  58113. base: math.unit(0.2, "meters")
  58114. },
  58115. },
  58116. form: "casual",
  58117. },
  58118. base_front: {
  58119. height: math.unit(7, "feet"),
  58120. weight: math.unit(210, "lb"),
  58121. preyCapacity: math.unit(2, "people"),
  58122. name: "Front",
  58123. image: {
  58124. source: "./media/characters/managarmr/base-front.svg",
  58125. extra: 580/485,
  58126. bottom: 32/612
  58127. },
  58128. extraAttributes: {
  58129. "wingspan": {
  58130. name: "Wingspan",
  58131. power: 1,
  58132. type: "length",
  58133. base: math.unit(4, "meters")
  58134. },
  58135. "pawSize": {
  58136. name: "Paw Size",
  58137. power: 1,
  58138. type: "length",
  58139. base: math.unit(0.2, "meters")
  58140. },
  58141. },
  58142. form: "base",
  58143. },
  58144. "true-divine_front": {
  58145. height: math.unit(40, "feet"),
  58146. weight: math.unit(39000, "lb"),
  58147. preyCapacity: math.unit(375, "people"),
  58148. name: "Front",
  58149. image: {
  58150. source: "./media/characters/managarmr/true-divine-front.svg",
  58151. extra: 725/573,
  58152. bottom: 120/845
  58153. },
  58154. extraAttributes: {
  58155. "wingspan": {
  58156. name: "Wingspan",
  58157. power: 1,
  58158. type: "length",
  58159. base: math.unit(20, "meters")
  58160. },
  58161. "pawSize": {
  58162. name: "Paw Size",
  58163. power: 1,
  58164. type: "length",
  58165. base: math.unit(1.5, "meters")
  58166. },
  58167. },
  58168. form: "true-divine",
  58169. },
  58170. },
  58171. [
  58172. {
  58173. name: "Normal",
  58174. height: math.unit(6 + 1/12, "feet"),
  58175. form: "casual",
  58176. default: true
  58177. },
  58178. {
  58179. name: "Normal",
  58180. height: math.unit(7, "feet"),
  58181. form: "base",
  58182. default: true
  58183. },
  58184. ],
  58185. {
  58186. "casual": {
  58187. name: "Casual",
  58188. default: true
  58189. },
  58190. "base": {
  58191. name: "Base",
  58192. },
  58193. "true-divine": {
  58194. name: "True Divine",
  58195. },
  58196. }
  58197. ))
  58198. characterMakers.push(() => makeCharacter(
  58199. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58200. {
  58201. front: {
  58202. height: math.unit(1.8, "meters"),
  58203. weight: math.unit(110, "kg"),
  58204. name: "Front",
  58205. image: {
  58206. source: "./media/characters/mystra/front.svg",
  58207. extra: 529/442,
  58208. bottom: 31/560
  58209. }
  58210. },
  58211. frontLewd: {
  58212. height: math.unit(1.8, "meters"),
  58213. weight: math.unit(110, "kg"),
  58214. name: "Front (Lewd)",
  58215. image: {
  58216. source: "./media/characters/mystra/front-lewd.svg",
  58217. extra: 529/442,
  58218. bottom: 31/560
  58219. }
  58220. },
  58221. head: {
  58222. height: math.unit(1.63, "feet"),
  58223. name: "Head",
  58224. image: {
  58225. source: "./media/characters/mystra/head.svg"
  58226. }
  58227. },
  58228. paw: {
  58229. height: math.unit(1.9, "feet"),
  58230. name: "Paw",
  58231. image: {
  58232. source: "./media/characters/mystra/paw.svg"
  58233. }
  58234. },
  58235. },
  58236. [
  58237. {
  58238. name: "Incognito",
  58239. height: math.unit(2.3, "meters")
  58240. },
  58241. {
  58242. name: "Small Macro",
  58243. height: math.unit(300, "meters")
  58244. },
  58245. {
  58246. name: "Small Mega",
  58247. height: math.unit(2, "km")
  58248. },
  58249. {
  58250. name: "Mega",
  58251. height: math.unit(30, "km")
  58252. },
  58253. {
  58254. name: "Small Giga",
  58255. height: math.unit(100, "km")
  58256. },
  58257. {
  58258. name: "Giga",
  58259. height: math.unit(1000, "km"),
  58260. default: true
  58261. },
  58262. {
  58263. name: "Continental",
  58264. height: math.unit(5000, "km")
  58265. },
  58266. {
  58267. name: "Terra",
  58268. height: math.unit(20000, "km")
  58269. },
  58270. {
  58271. name: "Solar",
  58272. height: math.unit(2e6, "km")
  58273. },
  58274. {
  58275. name: "Galactic",
  58276. height: math.unit(528502, "lightyears")
  58277. },
  58278. {
  58279. name: "Universal",
  58280. height: math.unit(20, "universes")
  58281. },
  58282. ]
  58283. ))
  58284. characterMakers.push(() => makeCharacter(
  58285. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58286. {
  58287. front: {
  58288. height: math.unit(2, "meters"),
  58289. weight: math.unit(140, "kg"),
  58290. name: "Front",
  58291. image: {
  58292. source: "./media/characters/caleb/front.svg",
  58293. extra: 873/817,
  58294. bottom: 47/920
  58295. }
  58296. },
  58297. back: {
  58298. height: math.unit(2, "meters"),
  58299. weight: math.unit(140, "kg"),
  58300. name: "Back",
  58301. image: {
  58302. source: "./media/characters/caleb/back.svg",
  58303. extra: 877/828,
  58304. bottom: 24/901
  58305. }
  58306. },
  58307. snakeTail: {
  58308. height: math.unit(1.44, "feet"),
  58309. name: "Snake Tail",
  58310. image: {
  58311. source: "./media/characters/caleb/snake-tail.svg"
  58312. }
  58313. },
  58314. dick: {
  58315. height: math.unit(2.6, "feet"),
  58316. name: "Dick",
  58317. image: {
  58318. source: "./media/characters/caleb/dick.svg"
  58319. }
  58320. },
  58321. },
  58322. [
  58323. {
  58324. name: "Incognito",
  58325. height: math.unit(3, "meters")
  58326. },
  58327. {
  58328. name: "Home Size",
  58329. height: math.unit(200, "meters"),
  58330. default: true
  58331. },
  58332. {
  58333. name: "Macro",
  58334. height: math.unit(500, "meters")
  58335. },
  58336. {
  58337. name: "Big Macro",
  58338. height: math.unit(5, "km")
  58339. },
  58340. {
  58341. name: "Giga",
  58342. height: math.unit(250, "km")
  58343. },
  58344. {
  58345. name: "Giga+",
  58346. height: math.unit(5000, "km")
  58347. },
  58348. {
  58349. name: "Small Terra",
  58350. height: math.unit(35e3, "km")
  58351. },
  58352. {
  58353. name: "Terra",
  58354. height: math.unit(2e6, "km")
  58355. },
  58356. {
  58357. name: "Terra+",
  58358. height: math.unit(1.5e6, "km")
  58359. },
  58360. ]
  58361. ))
  58362. characterMakers.push(() => makeCharacter(
  58363. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58364. {
  58365. front: {
  58366. height: math.unit(2, "meters"),
  58367. weight: math.unit(120, "kg"),
  58368. name: "Front",
  58369. image: {
  58370. source: "./media/characters/gilirian/front.svg",
  58371. extra: 805/737,
  58372. bottom: 13/818
  58373. }
  58374. },
  58375. side: {
  58376. height: math.unit(2, "meters"),
  58377. weight: math.unit(120, "kg"),
  58378. name: "Side",
  58379. image: {
  58380. source: "./media/characters/gilirian/side.svg",
  58381. extra: 810/746,
  58382. bottom: 6/816
  58383. }
  58384. },
  58385. back: {
  58386. height: math.unit(2, "meters"),
  58387. weight: math.unit(120, "kg"),
  58388. name: "Back",
  58389. image: {
  58390. source: "./media/characters/gilirian/back.svg",
  58391. extra: 815/745,
  58392. bottom: 15/830
  58393. }
  58394. },
  58395. frontNsfw: {
  58396. height: math.unit(2, "meters"),
  58397. weight: math.unit(120, "kg"),
  58398. name: "Front (NSFW)",
  58399. image: {
  58400. source: "./media/characters/gilirian/front-nsfw.svg",
  58401. extra: 805/737,
  58402. bottom: 13/818
  58403. }
  58404. },
  58405. sideNsfw: {
  58406. height: math.unit(2, "meters"),
  58407. weight: math.unit(120, "kg"),
  58408. name: "Side (NSFW)",
  58409. image: {
  58410. source: "./media/characters/gilirian/side-nsfw.svg",
  58411. extra: 810/746,
  58412. bottom: 6/816
  58413. }
  58414. },
  58415. },
  58416. [
  58417. {
  58418. name: "Incognito",
  58419. height: math.unit(2, "meters"),
  58420. default: true
  58421. },
  58422. {
  58423. name: "Macro",
  58424. height: math.unit(250, "meters")
  58425. },
  58426. {
  58427. name: "Big Macro",
  58428. height: math.unit(1500, "meters")
  58429. },
  58430. {
  58431. name: "Mega",
  58432. height: math.unit(40, "km")
  58433. },
  58434. {
  58435. name: "Giga",
  58436. height: math.unit(300, "km")
  58437. },
  58438. {
  58439. name: "Extra Giga",
  58440. height: math.unit(5000, "km")
  58441. },
  58442. {
  58443. name: "Small Terra",
  58444. height: math.unit(10e3, "km")
  58445. },
  58446. {
  58447. name: "Terra",
  58448. height: math.unit(3e5, "km")
  58449. },
  58450. {
  58451. name: "Galactic",
  58452. height: math.unit(369950, "lightyears")
  58453. },
  58454. ]
  58455. ))
  58456. characterMakers.push(() => makeCharacter(
  58457. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58458. {
  58459. front: {
  58460. height: math.unit(2.5, "meters"),
  58461. weight: math.unit(230, "lb"),
  58462. name: "Front",
  58463. image: {
  58464. source: "./media/characters/tarken/front.svg",
  58465. extra: 764/720,
  58466. bottom: 49/813
  58467. }
  58468. },
  58469. back: {
  58470. height: math.unit(2.5, "meters"),
  58471. weight: math.unit(230, "lb"),
  58472. name: "Back",
  58473. image: {
  58474. source: "./media/characters/tarken/back.svg",
  58475. extra: 756/720,
  58476. bottom: 35/791
  58477. }
  58478. },
  58479. frontNsfw: {
  58480. height: math.unit(2.5, "meters"),
  58481. weight: math.unit(230, "lb"),
  58482. name: "Front (NSFW)",
  58483. image: {
  58484. source: "./media/characters/tarken/front-nsfw.svg",
  58485. extra: 764/720,
  58486. bottom: 49/813
  58487. }
  58488. },
  58489. backNsfw: {
  58490. height: math.unit(2.5, "meters"),
  58491. weight: math.unit(230, "lb"),
  58492. name: "Back (NSFW)",
  58493. image: {
  58494. source: "./media/characters/tarken/back-nsfw.svg",
  58495. extra: 756/720,
  58496. bottom: 35/791
  58497. }
  58498. },
  58499. head: {
  58500. height: math.unit(2.22, "feet"),
  58501. name: "Head",
  58502. image: {
  58503. source: "./media/characters/tarken/head.svg"
  58504. }
  58505. },
  58506. tail: {
  58507. height: math.unit(5.25, "feet"),
  58508. name: "Tail",
  58509. image: {
  58510. source: "./media/characters/tarken/tail.svg"
  58511. }
  58512. },
  58513. dick: {
  58514. height: math.unit(1.95, "feet"),
  58515. name: "Dick",
  58516. image: {
  58517. source: "./media/characters/tarken/dick.svg"
  58518. }
  58519. },
  58520. hand: {
  58521. height: math.unit(1.78, "feet"),
  58522. name: "Hand",
  58523. image: {
  58524. source: "./media/characters/tarken/hand.svg"
  58525. }
  58526. },
  58527. beam: {
  58528. height: math.unit(1.5, "feet"),
  58529. name: "Beam",
  58530. image: {
  58531. source: "./media/characters/tarken/beam.svg"
  58532. }
  58533. },
  58534. },
  58535. [
  58536. {
  58537. name: "Original Size",
  58538. height: math.unit(2.5, "meters")
  58539. },
  58540. {
  58541. name: "Macro",
  58542. height: math.unit(150, "meters"),
  58543. default: true
  58544. },
  58545. {
  58546. name: "Macro+",
  58547. height: math.unit(300, "meters")
  58548. },
  58549. {
  58550. name: "Mega",
  58551. height: math.unit(2, "km")
  58552. },
  58553. {
  58554. name: "Mega+",
  58555. height: math.unit(35, "km")
  58556. },
  58557.  {
  58558. name: "Mega++",
  58559. height: math.unit(60, "km")
  58560. },
  58561. {
  58562. name: "Giga",
  58563. height: math.unit(200, "km")
  58564. },
  58565. {
  58566. name: "Giga+",
  58567. height: math.unit(2500, "km")
  58568. },
  58569. {
  58570. name: "Giga++",
  58571. height: math.unit(6600, "km")
  58572. },
  58573. {
  58574. name: "Terra",
  58575. height: math.unit(20000, "km")
  58576. },
  58577. {
  58578. name: "Terra+",
  58579. height: math.unit(300000, "km")
  58580. },
  58581. ]
  58582. ))
  58583. characterMakers.push(() => makeCharacter(
  58584. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58585. {
  58586. magpie_dressed: {
  58587. height: math.unit(1.7, "meters"),
  58588. weight: math.unit(70, "kg"),
  58589. name: "Dressed",
  58590. image: {
  58591. source: "./media/characters/otreus/magpie-dressed.svg",
  58592. extra: 691/672,
  58593. bottom: 116/807
  58594. },
  58595. form: "magpie",
  58596. default: true
  58597. },
  58598. magpie_nude: {
  58599. height: math.unit(1.7, "meters"),
  58600. weight: math.unit(70, "kg"),
  58601. name: "Nude",
  58602. image: {
  58603. source: "./media/characters/otreus/magpie-nude.svg",
  58604. extra: 691/672,
  58605. bottom: 116/807
  58606. },
  58607. form: "magpie",
  58608. },
  58609. magpie_dressedLewd: {
  58610. height: math.unit(1.7, "meters"),
  58611. weight: math.unit(70, "kg"),
  58612. name: "Dressed (Lewd)",
  58613. image: {
  58614. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58615. extra: 691/672,
  58616. bottom: 116/807
  58617. },
  58618. form: "magpie",
  58619. },
  58620. magpie_nudeLewd: {
  58621. height: math.unit(1.7, "meters"),
  58622. weight: math.unit(70, "kg"),
  58623. name: "Nude (Lewd)",
  58624. image: {
  58625. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58626. extra: 691/672,
  58627. bottom: 116/807
  58628. },
  58629. form: "magpie",
  58630. },
  58631. magpie_leftFoot: {
  58632. height: math.unit(1.58, "feet"),
  58633. name: "Left Foot",
  58634. image: {
  58635. source: "./media/characters/otreus/magpie-left-foot.svg"
  58636. },
  58637. form: "magpie",
  58638. },
  58639. magpie_rightFoot: {
  58640. height: math.unit(1.58, "feet"),
  58641. name: "Right Foot",
  58642. image: {
  58643. source: "./media/characters/otreus/magpie-right-foot.svg"
  58644. },
  58645. form: "magpie",
  58646. },
  58647. magpie_wingspan: {
  58648. height: math.unit(2, "meters"),
  58649. weight: math.unit(70, "kg"),
  58650. name: "Wingspan",
  58651. image: {
  58652. source: "./media/characters/otreus/magpie-wingspan.svg"
  58653. },
  58654. extraAttributes: {
  58655. "wingspan": {
  58656. name: "Wingspan",
  58657. power: 1,
  58658. type: "length",
  58659. base: math.unit(3.35, "meters")
  58660. },
  58661. },
  58662. form: "magpie",
  58663. },
  58664. hippogriff_dressed: {
  58665. height: math.unit(1.7, "meters"),
  58666. weight: math.unit(70, "kg"),
  58667. name: "Dressed",
  58668. image: {
  58669. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58670. extra: 710/689,
  58671. bottom: 67/777
  58672. },
  58673. form: "hippogriff",
  58674. default: true
  58675. },
  58676. hippogriff_nude: {
  58677. height: math.unit(1.7, "meters"),
  58678. weight: math.unit(70, "kg"),
  58679. name: "Nude",
  58680. image: {
  58681. source: "./media/characters/otreus/hippogriff-nude.svg",
  58682. extra: 710/689,
  58683. bottom: 67/777
  58684. },
  58685. form: "hippogriff",
  58686. },
  58687. hippogriff_dressedLewd: {
  58688. height: math.unit(1.7, "meters"),
  58689. weight: math.unit(70, "kg"),
  58690. name: "Dressed (Lewd)",
  58691. image: {
  58692. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58693. extra: 710/689,
  58694. bottom: 67/777
  58695. },
  58696. form: "hippogriff",
  58697. },
  58698. hippogriff_nudeLewd: {
  58699. height: math.unit(1.7, "meters"),
  58700. weight: math.unit(70, "kg"),
  58701. name: "Nude (Lewd)",
  58702. image: {
  58703. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58704. extra: 710/689,
  58705. bottom: 67/777
  58706. },
  58707. form: "hippogriff",
  58708. },
  58709. },
  58710. [
  58711. {
  58712. name: "Original Size",
  58713. height: math.unit(1.7, "meters"),
  58714. allForms: true
  58715. },
  58716. {
  58717. name: "Incognito Size",
  58718. height: math.unit(2, "meters"),
  58719. allForms: true
  58720. },
  58721. {
  58722. name: "Mega",
  58723. height: math.unit(2, "km"),
  58724. allForms: true
  58725. },
  58726. {
  58727. name: "Mega+",
  58728. height: math.unit(40, "km"),
  58729. allForms: true
  58730. },
  58731. {
  58732. name: "Giga",
  58733. height: math.unit(250, "km"),
  58734. allForms: true
  58735. },
  58736. {
  58737. name: "Giga+",
  58738. height: math.unit(3000, "km"),
  58739. allForms: true
  58740. },
  58741. {
  58742. name: "Terra",
  58743. height: math.unit(20000, "km"),
  58744. allForms: true
  58745. },
  58746. {
  58747. name: "Solar (Home Size)",
  58748. height: math.unit(3e6, "km"),
  58749. allForms: true,
  58750. default: true
  58751. },
  58752. ],
  58753. {
  58754. "magpie": {
  58755. name: "Magpie",
  58756. default: true
  58757. },
  58758. "hippogriff": {
  58759. name: "Hippogriff",
  58760. },
  58761. }
  58762. ))
  58763. characterMakers.push(() => makeCharacter(
  58764. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58765. {
  58766. frontDressed: {
  58767. height: math.unit(1.8, "meters"),
  58768. weight: math.unit(90, "kg"),
  58769. name: "Front (Dressed)",
  58770. image: {
  58771. source: "./media/characters/thalia/front-dressed.svg",
  58772. extra: 478/402,
  58773. bottom: 55/533
  58774. }
  58775. },
  58776. backDressed: {
  58777. height: math.unit(1.8, "meters"),
  58778. weight: math.unit(90, "kg"),
  58779. name: "Back (Dressed)",
  58780. image: {
  58781. source: "./media/characters/thalia/back-dressed.svg",
  58782. extra: 500/424,
  58783. bottom: 15/515
  58784. }
  58785. },
  58786. frontNude: {
  58787. height: math.unit(1.8, "meters"),
  58788. weight: math.unit(90, "kg"),
  58789. name: "Front (Nude)",
  58790. image: {
  58791. source: "./media/characters/thalia/front-nude.svg",
  58792. extra: 478/402,
  58793. bottom: 55/533
  58794. }
  58795. },
  58796. backNude: {
  58797. height: math.unit(1.8, "meters"),
  58798. weight: math.unit(90, "kg"),
  58799. name: "Back (Nude)",
  58800. image: {
  58801. source: "./media/characters/thalia/back-nude.svg",
  58802. extra: 500/424,
  58803. bottom: 15/515
  58804. }
  58805. },
  58806. },
  58807. [
  58808. {
  58809. name: "Incognito",
  58810. height: math.unit(3, "meters")
  58811. },
  58812. {
  58813. name: "Macro",
  58814. height: math.unit(500, "meters")
  58815. },
  58816. {
  58817. name: "Mega",
  58818. height: math.unit(5, "km")
  58819. },
  58820. {
  58821. name: "Mega+",
  58822. height: math.unit(30, "km")
  58823. },
  58824. {
  58825. name: "Giga",
  58826. height: math.unit(350, "km")
  58827. },
  58828. {
  58829. name: "Giga+",
  58830. height: math.unit(4000, "km")
  58831. },
  58832. {
  58833. name: "Terra",
  58834. height: math.unit(35000, "km")
  58835. },
  58836. {
  58837. name: "Original Size",
  58838. height: math.unit(130000, "km")
  58839. },
  58840. {
  58841. name: "Solar (Home Size)",
  58842. height: math.unit(4e6, "km"),
  58843. default: true
  58844. },
  58845. ]
  58846. ))
  58847. characterMakers.push(() => makeCharacter(
  58848. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58849. {
  58850. front: {
  58851. height: math.unit(1.8, "meters"),
  58852. weight: math.unit(95, "kg"),
  58853. name: "Front",
  58854. image: {
  58855. source: "./media/characters/shango/front.svg",
  58856. extra: 1925/1774,
  58857. bottom: 67/1992
  58858. }
  58859. },
  58860. back: {
  58861. height: math.unit(1.8, "meters"),
  58862. weight: math.unit(95, "kg"),
  58863. name: "Back",
  58864. image: {
  58865. source: "./media/characters/shango/back.svg",
  58866. extra: 1915/1766,
  58867. bottom: 52/1967
  58868. }
  58869. },
  58870. frontLewd: {
  58871. height: math.unit(1.8, "meters"),
  58872. weight: math.unit(95, "kg"),
  58873. name: "Front (Lewd)",
  58874. image: {
  58875. source: "./media/characters/shango/front-lewd.svg",
  58876. extra: 1925/1774,
  58877. bottom: 67/1992
  58878. }
  58879. },
  58880. backLewd: {
  58881. height: math.unit(1.8, "meters"),
  58882. weight: math.unit(95, "kg"),
  58883. name: "Back (Lewd)",
  58884. image: {
  58885. source: "./media/characters/shango/back-lewd.svg",
  58886. extra: 1915/1766,
  58887. bottom: 52/1967
  58888. }
  58889. },
  58890. maw: {
  58891. height: math.unit(1.64, "feet"),
  58892. name: "Maw",
  58893. image: {
  58894. source: "./media/characters/shango/maw.svg"
  58895. }
  58896. },
  58897. dick: {
  58898. height: math.unit(2.14, "feet"),
  58899. name: "Dick",
  58900. image: {
  58901. source: "./media/characters/shango/dick.svg"
  58902. }
  58903. },
  58904. },
  58905. [
  58906. {
  58907. name: "Incognito",
  58908. height: math.unit(1.8, "meters")
  58909. },
  58910. {
  58911. name: "Home Size",
  58912. height: math.unit(60, "meters"),
  58913. default: true
  58914. },
  58915. {
  58916. name: "Macro",
  58917. height: math.unit(450, "meters")
  58918. },
  58919. {
  58920. name: "Mega",
  58921. height: math.unit(6, "km")
  58922. },
  58923. {
  58924. name: "Mega+",
  58925. height: math.unit(35, "km")
  58926. },
  58927. {
  58928. name: "Giga",
  58929. height: math.unit(500, "km")
  58930. },
  58931. {
  58932. name: "Giga+",
  58933. height: math.unit(5000, "km")
  58934. },
  58935. {
  58936. name: "Terra",
  58937. height: math.unit(60000, "km")
  58938. },
  58939. {
  58940. name: "Terra+",
  58941. height: math.unit(400000, "km")
  58942. },
  58943. ]
  58944. ))
  58945. characterMakers.push(() => makeCharacter(
  58946. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58947. {
  58948. front: {
  58949. height: math.unit(2, "meters"),
  58950. weight: math.unit(95, "kg"),
  58951. name: "Front",
  58952. image: {
  58953. source: "./media/characters/osiris-gryphon/front.svg",
  58954. extra: 1508/1313,
  58955. bottom: 87/1595
  58956. }
  58957. },
  58958. back: {
  58959. height: math.unit(2, "meters"),
  58960. weight: math.unit(95, "kg"),
  58961. name: "Back",
  58962. image: {
  58963. source: "./media/characters/osiris-gryphon/back.svg",
  58964. extra: 1436/1309,
  58965. bottom: 64/1500
  58966. }
  58967. },
  58968. frontLewd: {
  58969. height: math.unit(2, "meters"),
  58970. weight: math.unit(95, "kg"),
  58971. name: "Front-lewd",
  58972. image: {
  58973. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58974. extra: 1508/1313,
  58975. bottom: 87/1595
  58976. }
  58977. },
  58978. wing: {
  58979. height: math.unit(6.3333, "feet"),
  58980. name: "Wing",
  58981. image: {
  58982. source: "./media/characters/osiris-gryphon/wing.svg"
  58983. }
  58984. },
  58985. },
  58986. [
  58987. {
  58988. name: "Incognito",
  58989. height: math.unit(2, "meters")
  58990. },
  58991. {
  58992. name: "Home Size",
  58993. height: math.unit(30, "meters"),
  58994. default: true
  58995. },
  58996. {
  58997. name: "Macro",
  58998. height: math.unit(100, "meters")
  58999. },
  59000. {
  59001. name: "Macro+",
  59002. height: math.unit(350, "meters")
  59003. },
  59004. {
  59005. name: "Mega",
  59006. height: math.unit(40, "km")
  59007. },
  59008. {
  59009. name: "Giga",
  59010. height: math.unit(300, "km")
  59011. },
  59012. {
  59013. name: "Giga+",
  59014. height: math.unit(2000, "km")
  59015. },
  59016. {
  59017. name: "Terra",
  59018. height: math.unit(30000, "km")
  59019. },
  59020. ]
  59021. ))
  59022. characterMakers.push(() => makeCharacter(
  59023. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59024. {
  59025. front: {
  59026. height: math.unit(2.5, "meters"),
  59027. weight: math.unit(200, "kg"),
  59028. name: "Front",
  59029. image: {
  59030. source: "./media/characters/atlas-dragon/front.svg",
  59031. extra: 745/462,
  59032. bottom: 36/781
  59033. }
  59034. },
  59035. back: {
  59036. height: math.unit(2.5, "meters"),
  59037. weight: math.unit(200, "kg"),
  59038. name: "Back",
  59039. image: {
  59040. source: "./media/characters/atlas-dragon/back.svg",
  59041. extra: 848/822,
  59042. bottom: 57/905
  59043. }
  59044. },
  59045. frontLewd: {
  59046. height: math.unit(2.5, "meters"),
  59047. weight: math.unit(200, "kg"),
  59048. name: "Front (Lewd)",
  59049. image: {
  59050. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59051. extra: 745/462,
  59052. bottom: 36/781
  59053. }
  59054. },
  59055. backLewd: {
  59056. height: math.unit(2.5, "meters"),
  59057. weight: math.unit(200, "kg"),
  59058. name: "Back (Lewd)",
  59059. image: {
  59060. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59061. extra: 848/822,
  59062. bottom: 57/905
  59063. }
  59064. },
  59065. },
  59066. [
  59067. {
  59068. name: "Incognito",
  59069. height: math.unit(2.5, "meters")
  59070. },
  59071. {
  59072. name: "Small Macro",
  59073. height: math.unit(50, "meters")
  59074. },
  59075. {
  59076. name: "Macro",
  59077. height: math.unit(350, "meters")
  59078. },
  59079. {
  59080. name: "Mega",
  59081. height: math.unit(5.5, "kilometers")
  59082. },
  59083. {
  59084. name: "Mega+",
  59085. height: math.unit(50, "km")
  59086. },
  59087. {
  59088. name: "Giga",
  59089. height: math.unit(350, "km")
  59090. },
  59091. {
  59092. name: "Giga+",
  59093. height: math.unit(2000, "km")
  59094. },
  59095. {
  59096. name: "Giga++",
  59097. height: math.unit(6500, "km")
  59098. },
  59099. {
  59100. name: "Terra",
  59101. height: math.unit(30000, "km")
  59102. },
  59103. {
  59104. name: "Terra+",
  59105. height: math.unit(250000, "km")
  59106. },
  59107. {
  59108. name: "True Size",
  59109. height: math.unit(100, "multiverses"),
  59110. default: true
  59111. },
  59112. ]
  59113. ))
  59114. characterMakers.push(() => makeCharacter(
  59115. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59116. {
  59117. front: {
  59118. height: math.unit(1.8, "m"),
  59119. weight: math.unit(120, "kg"),
  59120. name: "Front",
  59121. image: {
  59122. source: "./media/characters/chey/front.svg",
  59123. extra: 1359/1270,
  59124. bottom: 18/1377
  59125. }
  59126. },
  59127. arm: {
  59128. height: math.unit(2.05, "feet"),
  59129. name: "Arm",
  59130. image: {
  59131. source: "./media/characters/chey/arm.svg"
  59132. }
  59133. },
  59134. head: {
  59135. height: math.unit(1.89, "feet"),
  59136. name: "Head",
  59137. image: {
  59138. source: "./media/characters/chey/head.svg"
  59139. }
  59140. },
  59141. },
  59142. [
  59143. {
  59144. name: "Original Size",
  59145. height: math.unit(5, "cm")
  59146. },
  59147. {
  59148. name: "Incognito Size",
  59149. height: math.unit(2.4, "m")
  59150. },
  59151. {
  59152. name: "Home Size",
  59153. height: math.unit(200, "meters"),
  59154. default: true
  59155. },
  59156. {
  59157. name: "Mega",
  59158. height: math.unit(2, "km")
  59159. },
  59160. {
  59161. name: "Giga (Preferred Size)",
  59162. height: math.unit(2000, "km")
  59163. },
  59164. {
  59165. name: "Giga+",
  59166. height: math.unit(6000, "km")
  59167. },
  59168. {
  59169. name: "Terra",
  59170. height: math.unit(17000, "km")
  59171. },
  59172. {
  59173. name: "Terra+",
  59174. height: math.unit(75000, "km")
  59175. },
  59176. {
  59177. name: "Terra++",
  59178. height: math.unit(225000, "km")
  59179. },
  59180. ]
  59181. ))
  59182. characterMakers.push(() => makeCharacter(
  59183. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59184. {
  59185. side: {
  59186. height: math.unit(7.8, "meters"),
  59187. name: "Side",
  59188. image: {
  59189. source: "./media/characters/ragnarok/side.svg",
  59190. extra: 725/621,
  59191. bottom: 72/797
  59192. }
  59193. },
  59194. },
  59195. [
  59196. {
  59197. name: "Normal",
  59198. height: math.unit(7.8, "meters"),
  59199. default: true
  59200. },
  59201. ]
  59202. ))
  59203. characterMakers.push(() => makeCharacter(
  59204. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59205. {
  59206. hyena_front: {
  59207. height: math.unit(2.1, "meters"),
  59208. weight: math.unit(110, "kg"),
  59209. name: "Front",
  59210. image: {
  59211. source: "./media/characters/nima/hyena-front.svg",
  59212. extra: 1904/1796,
  59213. bottom: 67/1971
  59214. },
  59215. form: "hyena",
  59216. },
  59217. hyena_back: {
  59218. height: math.unit(2.1, "meters"),
  59219. weight: math.unit(110, "kg"),
  59220. name: "Back",
  59221. image: {
  59222. source: "./media/characters/nima/hyena-back.svg",
  59223. extra: 1964/1884,
  59224. bottom: 35/1999
  59225. },
  59226. form: "hyena",
  59227. },
  59228. shark_front: {
  59229. height: math.unit(1.95, "meters"),
  59230. weight: math.unit(110, "kg"),
  59231. name: "Front",
  59232. image: {
  59233. source: "./media/characters/nima/shark-front.svg",
  59234. extra: 2238/2013,
  59235. bottom: 0/223
  59236. },
  59237. form: "shark",
  59238. },
  59239. paw: {
  59240. height: math.unit(1, "feet"),
  59241. name: "Paw",
  59242. image: {
  59243. source: "./media/characters/nima/paw.svg"
  59244. }
  59245. },
  59246. circlet: {
  59247. height: math.unit(0.3, "feet"),
  59248. name: "Circlet",
  59249. image: {
  59250. source: "./media/characters/nima/circlet.svg"
  59251. }
  59252. },
  59253. necklace: {
  59254. height: math.unit(1.2, "feet"),
  59255. name: "Necklace",
  59256. image: {
  59257. source: "./media/characters/nima/necklace.svg"
  59258. }
  59259. },
  59260. bracelet: {
  59261. height: math.unit(0.51, "feet"),
  59262. name: "Bracelet",
  59263. image: {
  59264. source: "./media/characters/nima/bracelet.svg"
  59265. }
  59266. },
  59267. armband: {
  59268. height: math.unit(1.3, "feet"),
  59269. name: "Armband",
  59270. image: {
  59271. source: "./media/characters/nima/armband.svg"
  59272. }
  59273. },
  59274. },
  59275. [
  59276. {
  59277. name: "Incognito",
  59278. height: math.unit(2.1, "meters"),
  59279. allForms: true
  59280. },
  59281. {
  59282. name: "Small Macro",
  59283. height: math.unit(50, "meters"),
  59284. allForms: true
  59285. },
  59286. {
  59287. name: "Macro",
  59288. height: math.unit(200, "meters"),
  59289. allForms: true
  59290. },
  59291. {
  59292. name: "Mega",
  59293. height: math.unit(2.5, "km"),
  59294. allForms: true
  59295. },
  59296. {
  59297. name: "Mega+",
  59298. height: math.unit(30, "km"),
  59299. allForms: true
  59300. },
  59301. {
  59302. name: "Giga (Home Size)",
  59303. height: math.unit(400, "km"),
  59304. allForms: true,
  59305. default: true
  59306. },
  59307. {
  59308. name: "Giga+",
  59309. height: math.unit(2500, "km"),
  59310. allForms: true
  59311. },
  59312. {
  59313. name: "Giga++",
  59314. height: math.unit(8000, "km"),
  59315. allForms: true
  59316. },
  59317. {
  59318. name: "Terra",
  59319. height: math.unit(20000, "km"),
  59320. allForms: true
  59321. },
  59322. {
  59323. name: "Terra+",
  59324. height: math.unit(70000, "km"),
  59325. allForms: true
  59326. },
  59327. {
  59328. name: "Terra++",
  59329. height: math.unit(600000, "km"),
  59330. allForms: true
  59331. },
  59332. {
  59333. name: "Galactic",
  59334. height: math.unit(40, "galaxies"),
  59335. allForms: true
  59336. },
  59337. {
  59338. name: "Universal",
  59339. height: math.unit(40, "universes"),
  59340. allForms: true
  59341. },
  59342. ],
  59343. {
  59344. "hyena": {
  59345. name: "Hyena",
  59346. default: true
  59347. },
  59348. "shark": {
  59349. name: "Shark",
  59350. },
  59351. }
  59352. ))
  59353. characterMakers.push(() => makeCharacter(
  59354. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59355. {
  59356. anthro_front: {
  59357. height: math.unit(1.5, "meters"),
  59358. name: "Front",
  59359. image: {
  59360. source: "./media/characters/adelaide/anthro-front.svg",
  59361. extra: 860/783,
  59362. bottom: 60/920
  59363. },
  59364. form: "anthro",
  59365. default: true
  59366. },
  59367. hand: {
  59368. height: math.unit(0.65, "feet"),
  59369. name: "Hand",
  59370. image: {
  59371. source: "./media/characters/adelaide/hand.svg"
  59372. },
  59373. form: "anthro"
  59374. },
  59375. foot: {
  59376. height: math.unit(1.38 * 259 / 314, "feet"),
  59377. name: "Foot",
  59378. image: {
  59379. source: "./media/characters/adelaide/foot.svg",
  59380. extra: 259/259,
  59381. bottom: 55/314
  59382. },
  59383. form: "anthro"
  59384. },
  59385. feather: {
  59386. height: math.unit(0.85, "feet"),
  59387. name: "Feather",
  59388. image: {
  59389. source: "./media/characters/adelaide/feather.svg"
  59390. },
  59391. form: "anthro"
  59392. },
  59393. feral_side: {
  59394. height: math.unit(1, "meters"),
  59395. name: "Side",
  59396. image: {
  59397. source: "./media/characters/adelaide/feral-side.svg",
  59398. extra: 550/467,
  59399. bottom: 37/587
  59400. },
  59401. form: "feral",
  59402. default: true
  59403. },
  59404. feral_hand: {
  59405. height: math.unit(0.58, "feet"),
  59406. name: "Hand",
  59407. image: {
  59408. source: "./media/characters/adelaide/hand.svg"
  59409. },
  59410. form: "feral"
  59411. },
  59412. feral_foot: {
  59413. height: math.unit(1.2 * 259 / 314, "feet"),
  59414. name: "Foot",
  59415. image: {
  59416. source: "./media/characters/adelaide/foot.svg",
  59417. extra: 259/259,
  59418. bottom: 55/314
  59419. },
  59420. form: "feral"
  59421. },
  59422. feral_feather: {
  59423. height: math.unit(0.63, "feet"),
  59424. name: "Feather",
  59425. image: {
  59426. source: "./media/characters/adelaide/feather.svg"
  59427. },
  59428. form: "feral"
  59429. },
  59430. },
  59431. [
  59432. {
  59433. name: "Normal",
  59434. height: math.unit(1.5, "meters"),
  59435. form: "anthro",
  59436. default: true
  59437. },
  59438. {
  59439. name: "Normal",
  59440. height: math.unit(1, "meters"),
  59441. form: "feral",
  59442. default: true
  59443. },
  59444. ],
  59445. {
  59446. "anthro": {
  59447. name: "Anthro",
  59448. default: true
  59449. },
  59450. "feral": {
  59451. name: "Feral",
  59452. },
  59453. }
  59454. ))
  59455. characterMakers.push(() => makeCharacter(
  59456. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59457. {
  59458. front: {
  59459. height: math.unit(2.5, "meters"),
  59460. name: "Front",
  59461. image: {
  59462. source: "./media/characters/goa/front.svg",
  59463. extra: 1109/1013,
  59464. bottom: 150/1259
  59465. }
  59466. },
  59467. },
  59468. [
  59469. {
  59470. name: "Normal",
  59471. height: math.unit(2.5, "meters"),
  59472. default: true
  59473. },
  59474. ]
  59475. ))
  59476. characterMakers.push(() => makeCharacter(
  59477. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59478. {
  59479. front: {
  59480. height: math.unit(2, "meters"),
  59481. weight: math.unit(100, "kg"),
  59482. name: "Front",
  59483. image: {
  59484. source: "./media/characters/kiki-weavile/front.svg",
  59485. extra: 357/332,
  59486. bottom: 60/417
  59487. }
  59488. },
  59489. },
  59490. [
  59491. {
  59492. name: "Normal",
  59493. height: math.unit(2, "meters"),
  59494. default: true
  59495. },
  59496. ]
  59497. ))
  59498. characterMakers.push(() => makeCharacter(
  59499. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59500. {
  59501. side: {
  59502. height: math.unit(1.6, "meters"),
  59503. name: "Side",
  59504. image: {
  59505. source: "./media/characters/liza/side.svg",
  59506. extra: 943/915,
  59507. bottom: 72/1015
  59508. }
  59509. },
  59510. },
  59511. [
  59512. {
  59513. name: "Normal",
  59514. height: math.unit(1.6, "meters"),
  59515. default: true
  59516. },
  59517. ]
  59518. ))
  59519. characterMakers.push(() => makeCharacter(
  59520. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59521. {
  59522. side: {
  59523. height: math.unit(2.5, "meters"),
  59524. preyCapacity: math.unit(1, "people"),
  59525. name: "Side",
  59526. image: {
  59527. source: "./media/characters/persephone-sweetbreath/side.svg",
  59528. extra: 796/700,
  59529. bottom: 44/840
  59530. }
  59531. },
  59532. sideVore: {
  59533. height: math.unit(2.5, "meters"),
  59534. preyCapacity: math.unit(1, "people"),
  59535. name: "Side (Full)",
  59536. image: {
  59537. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59538. extra: 796/700,
  59539. bottom: 44/840
  59540. }
  59541. },
  59542. },
  59543. [
  59544. {
  59545. name: "Normal",
  59546. height: math.unit(2.5, "meters"),
  59547. default: true
  59548. },
  59549. ]
  59550. ))
  59551. characterMakers.push(() => makeCharacter(
  59552. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59553. {
  59554. front: {
  59555. height: math.unit(32, "meters"),
  59556. name: "Front",
  59557. image: {
  59558. source: "./media/characters/pierce/front.svg",
  59559. extra: 1695/1475,
  59560. bottom: 185/1880
  59561. }
  59562. },
  59563. side: {
  59564. height: math.unit(32, "meters"),
  59565. name: "Side",
  59566. image: {
  59567. source: "./media/characters/pierce/side.svg",
  59568. extra: 974/859,
  59569. bottom: 43/1017
  59570. }
  59571. },
  59572. frontWingless: {
  59573. height: math.unit(32, "meters"),
  59574. name: "Front (Wingless)",
  59575. image: {
  59576. source: "./media/characters/pierce/front-wingless.svg",
  59577. extra: 1695/1475,
  59578. bottom: 185/1880
  59579. }
  59580. },
  59581. sideWingless: {
  59582. height: math.unit(32, "meters"),
  59583. name: "Side (Wingless)",
  59584. image: {
  59585. source: "./media/characters/pierce/side-wingless.svg",
  59586. extra: 974/859,
  59587. bottom: 43/1017
  59588. }
  59589. },
  59590. maw: {
  59591. height: math.unit(19.3, "meters"),
  59592. name: "Maw",
  59593. image: {
  59594. source: "./media/characters/pierce/maw.svg"
  59595. }
  59596. },
  59597. },
  59598. [
  59599. {
  59600. name: "Small",
  59601. height: math.unit(8.5, "meters")
  59602. },
  59603. {
  59604. name: "Normal",
  59605. height: math.unit(32, "meters"),
  59606. default: true
  59607. },
  59608. ]
  59609. ))
  59610. characterMakers.push(() => makeCharacter(
  59611. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59612. {
  59613. front: {
  59614. height: math.unit(2.3, "meters"),
  59615. weight: math.unit(165, "kg"),
  59616. name: "Front",
  59617. image: {
  59618. source: "./media/characters/shira/front.svg",
  59619. extra: 924/919,
  59620. bottom: 17/941
  59621. },
  59622. form: "cobra",
  59623. default: true
  59624. },
  59625. back: {
  59626. height: math.unit(2.3, "meters"),
  59627. weight: math.unit(165, "kg"),
  59628. name: "Back",
  59629. image: {
  59630. source: "./media/characters/shira/back.svg",
  59631. extra: 928/922,
  59632. bottom: 18/946
  59633. },
  59634. form: "cobra"
  59635. },
  59636. frontLewd: {
  59637. height: math.unit(2.3, "meters"),
  59638. weight: math.unit(165, "kg"),
  59639. name: "Front (Lewd)",
  59640. image: {
  59641. source: "./media/characters/shira/front-lewd.svg",
  59642. extra: 924/919,
  59643. bottom: 17/941
  59644. },
  59645. form: "cobra"
  59646. },
  59647. backLewd: {
  59648. height: math.unit(2.3, "meters"),
  59649. weight: math.unit(165, "kg"),
  59650. name: "Back (Lewd)",
  59651. image: {
  59652. source: "./media/characters/shira/back-lewd.svg",
  59653. extra: 928/922,
  59654. bottom: 18/946
  59655. },
  59656. form: "cobra"
  59657. },
  59658. maw: {
  59659. height: math.unit(1.14, "feet"),
  59660. name: "Maw",
  59661. image: {
  59662. source: "./media/characters/shira/maw.svg"
  59663. },
  59664. form: "cobra"
  59665. },
  59666. magma_front: {
  59667. height: math.unit(2.3, "meters"),
  59668. weight: math.unit(165, "kg"),
  59669. name: "Front",
  59670. image: {
  59671. source: "./media/characters/shira/magma-front.svg",
  59672. extra: 1870/1693,
  59673. bottom: 24/1894
  59674. },
  59675. form: "magma",
  59676. },
  59677. magma_back: {
  59678. height: math.unit(2.3, "meters"),
  59679. weight: math.unit(165, "kg"),
  59680. name: "Back",
  59681. image: {
  59682. source: "./media/characters/shira/magma-back.svg",
  59683. extra: 1918/1756,
  59684. bottom: 46/1964
  59685. },
  59686. form: "magma",
  59687. },
  59688. },
  59689. [
  59690. {
  59691. name: "Incognito",
  59692. height: math.unit(2.3, "meters"),
  59693. allForms: true
  59694. },
  59695. {
  59696. name: "Home Size",
  59697. height: math.unit(150, "meters"),
  59698. default: true,
  59699. allForms: true
  59700. },
  59701. {
  59702. name: "Macro",
  59703. height: math.unit(2, "km"),
  59704. allForms: true
  59705. },
  59706. {
  59707. name: "Mega",
  59708. height: math.unit(30, "km"),
  59709. allForms: true
  59710. },
  59711. {
  59712. name: "Giga",
  59713. height: math.unit(450, "km"),
  59714. allForms: true
  59715. },
  59716. {
  59717. name: "Giga+",
  59718. height: math.unit(3000, "km"),
  59719. allForms: true
  59720. },
  59721. {
  59722. name: "Giga++",
  59723. height: math.unit(6000, "km"),
  59724. allForms: true
  59725. },
  59726. {
  59727. name: "Terra",
  59728. height: math.unit(80000, "km"),
  59729. allForms: true
  59730. },
  59731. {
  59732. name: "Terra+",
  59733. height: math.unit(350000, "km"),
  59734. allForms: true
  59735. },
  59736. {
  59737. name: "Solar",
  59738. height: math.unit(1e6, "km"),
  59739. allForms: true
  59740. },
  59741. ],
  59742. {
  59743. "cobra": {
  59744. name: "Cobra",
  59745. default: true
  59746. },
  59747. "magma": {
  59748. name: "Magma Dragon",
  59749. },
  59750. }
  59751. ))
  59752. characterMakers.push(() => makeCharacter(
  59753. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59754. {
  59755. front: {
  59756. height: math.unit(2, "meters"),
  59757. weight: math.unit(160, "kg"),
  59758. name: "Front",
  59759. image: {
  59760. source: "./media/characters/daxerios/front.svg",
  59761. extra: 1334/1277,
  59762. bottom: 45/1379
  59763. }
  59764. },
  59765. frontLewd: {
  59766. height: math.unit(2, "meters"),
  59767. weight: math.unit(160, "kg"),
  59768. name: "Front (Lewd)",
  59769. image: {
  59770. source: "./media/characters/daxerios/front-lewd.svg",
  59771. extra: 1334/1277,
  59772. bottom: 45/1379
  59773. }
  59774. },
  59775. dick: {
  59776. height: math.unit(2.35, "feet"),
  59777. name: "Dick",
  59778. image: {
  59779. source: "./media/characters/daxerios/dick.svg"
  59780. }
  59781. },
  59782. },
  59783. [
  59784. {
  59785. name: "\"Small\"",
  59786. height: math.unit(5, "meters")
  59787. },
  59788. {
  59789. name: "Original Size",
  59790. height: math.unit(500, "meters"),
  59791. default: true
  59792. },
  59793. {
  59794. name: "Mega",
  59795. height: math.unit(2, "km")
  59796. },
  59797. {
  59798. name: "Mega+",
  59799. height: math.unit(35, "km")
  59800. },
  59801. {
  59802. name: "Giga",
  59803. height: math.unit(250, "km")
  59804. },
  59805. {
  59806. name: "Giga+",
  59807. height: math.unit(3000, "km")
  59808. },
  59809. {
  59810. name: "Terra",
  59811. height: math.unit(25000, "km")
  59812. },
  59813. {
  59814. name: "Terra+",
  59815. height: math.unit(300000, "km")
  59816. },
  59817. {
  59818. name: "Solar",
  59819. height: math.unit(1e6, "km")
  59820. },
  59821. ]
  59822. ))
  59823. characterMakers.push(() => makeCharacter(
  59824. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59825. {
  59826. front: {
  59827. height: math.unit(8 + 4/12, "feet"),
  59828. weight: math.unit(464, "lb"),
  59829. name: "Front",
  59830. image: {
  59831. source: "./media/characters/caveat/front.svg",
  59832. extra: 1861/1678,
  59833. bottom: 40/1901
  59834. }
  59835. },
  59836. },
  59837. [
  59838. {
  59839. name: "Normal",
  59840. height: math.unit(8 + 4/12, "feet"),
  59841. default: true
  59842. },
  59843. ]
  59844. ))
  59845. characterMakers.push(() => makeCharacter(
  59846. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59847. {
  59848. front: {
  59849. height: math.unit(12, "feet"),
  59850. weight: math.unit(1800, "lb"),
  59851. name: "Front",
  59852. image: {
  59853. source: "./media/characters/centbair/front.svg",
  59854. extra: 781/663,
  59855. bottom: 25/806
  59856. }
  59857. },
  59858. frontNsfw: {
  59859. height: math.unit(12, "feet"),
  59860. weight: math.unit(1800, "lb"),
  59861. name: "Front (NSFW)",
  59862. image: {
  59863. source: "./media/characters/centbair/front-nsfw.svg",
  59864. extra: 781/663,
  59865. bottom: 25/806
  59866. }
  59867. },
  59868. back: {
  59869. height: math.unit(12, "feet"),
  59870. weight: math.unit(1800, "lb"),
  59871. name: "Back",
  59872. image: {
  59873. source: "./media/characters/centbair/back.svg",
  59874. extra: 808/761,
  59875. bottom: 19/827
  59876. }
  59877. },
  59878. dick: {
  59879. height: math.unit(6.5, "feet"),
  59880. name: "Dick",
  59881. image: {
  59882. source: "./media/characters/centbair/dick.svg"
  59883. }
  59884. },
  59885. slit: {
  59886. height: math.unit(3.25, "feet"),
  59887. name: "Slit",
  59888. image: {
  59889. source: "./media/characters/centbair/slit.svg"
  59890. }
  59891. },
  59892. },
  59893. [
  59894. {
  59895. name: "Normal",
  59896. height: math.unit(12, "feet"),
  59897. default: true
  59898. },
  59899. ]
  59900. ))
  59901. characterMakers.push(() => makeCharacter(
  59902. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59903. {
  59904. front: {
  59905. height: math.unit(5 + 7/12, "feet"),
  59906. name: "Front",
  59907. image: {
  59908. source: "./media/characters/andy/front.svg",
  59909. extra: 634/588,
  59910. bottom: 36/670
  59911. },
  59912. extraAttributes: {
  59913. "pawLength": {
  59914. name: "Paw Length",
  59915. power: 1,
  59916. type: "length",
  59917. base: math.unit(1, "feet")
  59918. },
  59919. }
  59920. },
  59921. side: {
  59922. height: math.unit(5 + 7/12, "feet"),
  59923. name: "Side",
  59924. image: {
  59925. source: "./media/characters/andy/side.svg",
  59926. extra: 641/596,
  59927. bottom: 34/675
  59928. },
  59929. extraAttributes: {
  59930. "pawLength": {
  59931. name: "Paw Length",
  59932. power: 1,
  59933. type: "length",
  59934. base: math.unit(1, "feet")
  59935. },
  59936. }
  59937. },
  59938. back: {
  59939. height: math.unit(5 + 7/12, "feet"),
  59940. name: "Back",
  59941. image: {
  59942. source: "./media/characters/andy/back.svg",
  59943. extra: 618/583,
  59944. bottom: 39/657
  59945. },
  59946. extraAttributes: {
  59947. "pawLength": {
  59948. name: "Paw Length",
  59949. power: 1,
  59950. type: "length",
  59951. base: math.unit(1, "feet")
  59952. },
  59953. }
  59954. },
  59955. paw: {
  59956. height: math.unit(1.13, "feet"),
  59957. name: "Paw",
  59958. image: {
  59959. source: "./media/characters/andy/paw.svg"
  59960. }
  59961. },
  59962. },
  59963. [
  59964. {
  59965. name: "Micro",
  59966. height: math.unit(4, "inches")
  59967. },
  59968. {
  59969. name: "Normal",
  59970. height: math.unit(5 + 7/12, "feet"),
  59971. default: true
  59972. },
  59973. {
  59974. name: "Macro",
  59975. height: math.unit(390.42, "feet")
  59976. },
  59977. ]
  59978. ))
  59979. characterMakers.push(() => makeCharacter(
  59980. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59981. {
  59982. front: {
  59983. height: math.unit(7, "feet"),
  59984. weight: math.unit(250, "lb"),
  59985. name: "Front",
  59986. image: {
  59987. source: "./media/characters/vix-titan/front.svg",
  59988. extra: 460/428,
  59989. bottom: 15/475
  59990. },
  59991. extraAttributes: {
  59992. "pawWidth": {
  59993. name: "Paw Width",
  59994. power: 1,
  59995. type: "length",
  59996. base: math.unit(0.75, "feet")
  59997. },
  59998. }
  59999. },
  60000. },
  60001. [
  60002. {
  60003. name: "Normal",
  60004. height: math.unit(7, "feet"),
  60005. default: true
  60006. },
  60007. {
  60008. name: "Giant",
  60009. height: math.unit(1500, "feet")
  60010. },
  60011. {
  60012. name: "Mega",
  60013. height: math.unit(10, "miles")
  60014. },
  60015. {
  60016. name: "Giga",
  60017. height: math.unit(150, "miles")
  60018. },
  60019. {
  60020. name: "Tera",
  60021. height: math.unit(144000, "miles")
  60022. },
  60023. ]
  60024. ))
  60025. characterMakers.push(() => makeCharacter(
  60026. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60027. {
  60028. front: {
  60029. height: math.unit(6 + 2/12, "feet"),
  60030. name: "Front",
  60031. image: {
  60032. source: "./media/characters/reiku/front.svg",
  60033. extra: 1910/1757,
  60034. bottom: 103/2013
  60035. },
  60036. extraAttributes: {
  60037. "thighThickness": {
  60038. name: "Thigh Thickness",
  60039. power: 1,
  60040. type: "length",
  60041. base: math.unit(1.12, "feet")
  60042. },
  60043. "assThickness": {
  60044. name: "Ass Thickness",
  60045. power: 1,
  60046. type: "length",
  60047. base: math.unit(1.12*2, "feet")
  60048. },
  60049. }
  60050. },
  60051. side: {
  60052. height: math.unit(6 + 2/12, "feet"),
  60053. name: "Side",
  60054. image: {
  60055. source: "./media/characters/reiku/side.svg",
  60056. extra: 1846/1748,
  60057. bottom: 99/1945
  60058. },
  60059. extraAttributes: {
  60060. "thighThickness": {
  60061. name: "Thigh Thickness",
  60062. power: 1,
  60063. type: "length",
  60064. base: math.unit(1.12, "feet")
  60065. },
  60066. "assThickness": {
  60067. name: "Ass Thickness",
  60068. power: 1,
  60069. type: "length",
  60070. base: math.unit(1.12*2, "feet")
  60071. },
  60072. }
  60073. },
  60074. back: {
  60075. height: math.unit(6 + 2/12, "feet"),
  60076. name: "Back",
  60077. image: {
  60078. source: "./media/characters/reiku/back.svg",
  60079. extra: 1941/1786,
  60080. bottom: 34/1975
  60081. },
  60082. extraAttributes: {
  60083. "thighThickness": {
  60084. name: "Thigh Thickness",
  60085. power: 1,
  60086. type: "length",
  60087. base: math.unit(1.12, "feet")
  60088. },
  60089. "assThickness": {
  60090. name: "Ass Thickness",
  60091. power: 1,
  60092. type: "length",
  60093. base: math.unit(1.12*2, "feet")
  60094. },
  60095. }
  60096. },
  60097. head: {
  60098. height: math.unit(1.8, "feet"),
  60099. name: "Head",
  60100. image: {
  60101. source: "./media/characters/reiku/head.svg"
  60102. }
  60103. },
  60104. tailTop: {
  60105. height: math.unit(8.4, "feet"),
  60106. name: "Tail (Top)",
  60107. image: {
  60108. source: "./media/characters/reiku/tail-top.svg"
  60109. }
  60110. },
  60111. tailBottom: {
  60112. height: math.unit(8.4, "feet"),
  60113. name: "Tail (Bottom)",
  60114. image: {
  60115. source: "./media/characters/reiku/tail-bottom.svg"
  60116. }
  60117. },
  60118. foot: {
  60119. height: math.unit(2.6, "feet"),
  60120. name: "Foot",
  60121. image: {
  60122. source: "./media/characters/reiku/foot.svg"
  60123. }
  60124. },
  60125. footCurled: {
  60126. height: math.unit(2.3, "feet"),
  60127. name: "Foot (Curled)",
  60128. image: {
  60129. source: "./media/characters/reiku/foot-curled.svg"
  60130. }
  60131. },
  60132. footSide: {
  60133. height: math.unit(1.26, "feet"),
  60134. name: "Foot (Side)",
  60135. image: {
  60136. source: "./media/characters/reiku/foot-side.svg"
  60137. }
  60138. },
  60139. },
  60140. [
  60141. {
  60142. name: "Normal",
  60143. height: math.unit(6 + 2/12, "feet"),
  60144. default: true
  60145. },
  60146. ]
  60147. ))
  60148. characterMakers.push(() => makeCharacter(
  60149. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60150. {
  60151. front: {
  60152. height: math.unit(7, "feet"),
  60153. weight: math.unit(500, "kg"),
  60154. name: "Front",
  60155. image: {
  60156. source: "./media/characters/cialda/front.svg",
  60157. extra: 912/745,
  60158. bottom: 55/967
  60159. }
  60160. },
  60161. },
  60162. [
  60163. {
  60164. name: "Normal",
  60165. height: math.unit(7, "feet"),
  60166. default: true
  60167. },
  60168. ]
  60169. ))
  60170. characterMakers.push(() => makeCharacter(
  60171. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60172. {
  60173. side: {
  60174. height: math.unit(6, "feet"),
  60175. weight: math.unit(600, "lb"),
  60176. preyCapacity: math.unit(25, "liters"),
  60177. name: "Side",
  60178. image: {
  60179. source: "./media/characters/darkkin/side.svg",
  60180. extra: 1597/1447,
  60181. bottom: 101/1698
  60182. }
  60183. },
  60184. },
  60185. [
  60186. {
  60187. name: "Canon Height",
  60188. height: math.unit(568, "feet"),
  60189. default: true
  60190. },
  60191. ]
  60192. ))
  60193. characterMakers.push(() => makeCharacter(
  60194. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60195. {
  60196. front: {
  60197. height: math.unit(6, "feet"),
  60198. weight: math.unit(1500, "lb"),
  60199. preyCapacity: math.unit(3, "people"),
  60200. name: "Front",
  60201. image: {
  60202. source: "./media/characters/livnia/front.svg",
  60203. extra: 934/932,
  60204. bottom: 83/1017
  60205. }
  60206. },
  60207. back: {
  60208. height: math.unit(6, "feet"),
  60209. weight: math.unit(1500, "lb"),
  60210. preyCapacity: math.unit(3, "people"),
  60211. name: "Back",
  60212. image: {
  60213. source: "./media/characters/livnia/back.svg",
  60214. extra: 916/915,
  60215. bottom: 58/974
  60216. }
  60217. },
  60218. head: {
  60219. height: math.unit(1.53, "feet"),
  60220. name: "Head",
  60221. image: {
  60222. source: "./media/characters/livnia/head.svg"
  60223. }
  60224. },
  60225. maw: {
  60226. height: math.unit(0.78, "feet"),
  60227. name: "Maw",
  60228. image: {
  60229. source: "./media/characters/livnia/maw.svg"
  60230. }
  60231. },
  60232. genitals: {
  60233. height: math.unit(0.35, "feet"),
  60234. name: "Genitals",
  60235. image: {
  60236. source: "./media/characters/livnia/genitals.svg"
  60237. }
  60238. },
  60239. },
  60240. [
  60241. {
  60242. name: "Normal",
  60243. height: math.unit(1000, "feet"),
  60244. default: true
  60245. },
  60246. ]
  60247. ))
  60248. characterMakers.push(() => makeCharacter(
  60249. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60250. {
  60251. front: {
  60252. height: math.unit(4, "feet"),
  60253. weight: math.unit(73, "lb"),
  60254. name: "Front",
  60255. image: {
  60256. source: "./media/characters/hayaku/front.svg",
  60257. extra: 1011/888,
  60258. bottom: 33/1044
  60259. }
  60260. },
  60261. back: {
  60262. height: math.unit(4, "feet"),
  60263. weight: math.unit(73, "lb"),
  60264. name: "Back",
  60265. image: {
  60266. source: "./media/characters/hayaku/back.svg",
  60267. extra: 1040/930,
  60268. bottom: 20/1060
  60269. }
  60270. },
  60271. },
  60272. [
  60273. {
  60274. name: "Normal",
  60275. height: math.unit(4, "feet"),
  60276. default: true
  60277. },
  60278. ]
  60279. ))
  60280. characterMakers.push(() => makeCharacter(
  60281. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60282. {
  60283. front: {
  60284. height: math.unit(6 + 7/12, "feet"),
  60285. weight: math.unit(300, "lb"),
  60286. name: "Front",
  60287. image: {
  60288. source: "./media/characters/athena-bryzant/front.svg",
  60289. extra: 870/835,
  60290. bottom: 33/903
  60291. }
  60292. },
  60293. back: {
  60294. height: math.unit(6 + 7/12, "feet"),
  60295. weight: math.unit(300, "lb"),
  60296. name: "Back",
  60297. image: {
  60298. source: "./media/characters/athena-bryzant/back.svg",
  60299. extra: 858/823,
  60300. bottom: 30/888
  60301. }
  60302. },
  60303. head: {
  60304. height: math.unit(2.38, "feet"),
  60305. name: "Head",
  60306. image: {
  60307. source: "./media/characters/athena-bryzant/head.svg"
  60308. }
  60309. },
  60310. wings: {
  60311. height: math.unit(2.85, "feet"),
  60312. name: "Wings",
  60313. image: {
  60314. source: "./media/characters/athena-bryzant/wings.svg"
  60315. }
  60316. },
  60317. },
  60318. [
  60319. {
  60320. name: "Normal",
  60321. height: math.unit(6 + 7/12, "feet"),
  60322. default: true
  60323. },
  60324. {
  60325. name: "Big",
  60326. height: math.unit(8, "feet")
  60327. },
  60328. {
  60329. name: "Very Big",
  60330. height: math.unit(11, "feet")
  60331. },
  60332. ]
  60333. ))
  60334. characterMakers.push(() => makeCharacter(
  60335. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60336. {
  60337. side: {
  60338. height: math.unit(3, "meters"),
  60339. weight: math.unit(7500, "kg"),
  60340. preyCapacity: math.unit(1e12, "people"),
  60341. name: "Side",
  60342. image: {
  60343. source: "./media/characters/zel-kesh/side.svg",
  60344. extra: 910/407,
  60345. bottom: 147/1057
  60346. }
  60347. },
  60348. },
  60349. [
  60350. {
  60351. name: "Normal",
  60352. height: math.unit(3, "meters"),
  60353. default: true
  60354. },
  60355. ]
  60356. ))
  60357. characterMakers.push(() => makeCharacter(
  60358. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60359. {
  60360. front: {
  60361. height: math.unit(2, "meters"),
  60362. weight: math.unit(95, "kg"),
  60363. name: "Front",
  60364. image: {
  60365. source: "./media/characters/kane-fox/front.svg",
  60366. extra: 945/888,
  60367. bottom: 27/972
  60368. }
  60369. },
  60370. back: {
  60371. height: math.unit(2, "meters"),
  60372. weight: math.unit(95, "kg"),
  60373. name: "Back",
  60374. image: {
  60375. source: "./media/characters/kane-fox/back.svg",
  60376. extra: 959/914,
  60377. bottom: 15/974
  60378. }
  60379. },
  60380. frontLewd: {
  60381. height: math.unit(2, "meters"),
  60382. weight: math.unit(95, "kg"),
  60383. name: "Front (Lewd)",
  60384. image: {
  60385. source: "./media/characters/kane-fox/front-lewd.svg",
  60386. extra: 945/888,
  60387. bottom: 27/972
  60388. }
  60389. },
  60390. },
  60391. [
  60392. {
  60393. name: "Home Size",
  60394. height: math.unit(2, "meters"),
  60395. default: true
  60396. },
  60397. {
  60398. name: "Macro",
  60399. height: math.unit(200, "meters")
  60400. },
  60401. {
  60402. name: "Small Mega",
  60403. height: math.unit(3, "km")
  60404. },
  60405. {
  60406. name: "Mega",
  60407. height: math.unit(50, "km")
  60408. },
  60409. {
  60410. name: "Giga",
  60411. height: math.unit(200, "km")
  60412. },
  60413. {
  60414. name: "Giga+",
  60415. height: math.unit(2500, "km")
  60416. },
  60417. {
  60418. name: "Terra",
  60419. height: math.unit(70000, "km")
  60420. },
  60421. {
  60422. name: "Terra+",
  60423. height: math.unit(150000, "km")
  60424. },
  60425. {
  60426. name: "Terra++",
  60427. height: math.unit(400000, "km")
  60428. },
  60429. ]
  60430. ))
  60431. characterMakers.push(() => makeCharacter(
  60432. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60433. {
  60434. otter_front: {
  60435. height: math.unit(1.8, "meters"),
  60436. weight: math.unit(90, "kg"),
  60437. name: "Front",
  60438. image: {
  60439. source: "./media/characters/ayranus/otter-front.svg",
  60440. extra: 468/452,
  60441. bottom: 43/511
  60442. },
  60443. form: "otter",
  60444. },
  60445. otter_frontLewd: {
  60446. height: math.unit(1.8, "meters"),
  60447. weight: math.unit(90, "kg"),
  60448. name: "Front (Lewd)",
  60449. image: {
  60450. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60451. extra: 468/452,
  60452. bottom: 43/511
  60453. },
  60454. form: "otter",
  60455. },
  60456. lionbat_front: {
  60457. height: math.unit(1.8, "meters"),
  60458. weight: math.unit(90, "kg"),
  60459. name: "Front (Lewd)",
  60460. image: {
  60461. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60462. extra: 797/740,
  60463. bottom: 78/875
  60464. },
  60465. form: "lionbat",
  60466. },
  60467. paw: {
  60468. height: math.unit(1.5, "feet"),
  60469. name: "Paw",
  60470. image: {
  60471. source: "./media/characters/ayranus/paw.svg"
  60472. },
  60473. },
  60474. },
  60475. [
  60476. {
  60477. name: "Incognito",
  60478. height: math.unit(1.8, "meters"),
  60479. allForms: true
  60480. },
  60481. {
  60482. name: "Macro",
  60483. height: math.unit(60, "meters"),
  60484. allForms: true
  60485. },
  60486. {
  60487. name: "Macro+",
  60488. height: math.unit(200, "meters"),
  60489. allForms: true
  60490. },
  60491. {
  60492. name: "Mega",
  60493. height: math.unit(35, "km"),
  60494. allForms: true
  60495. },
  60496. {
  60497. name: "Giga",
  60498. height: math.unit(220, "km"),
  60499. allForms: true
  60500. },
  60501. {
  60502. name: "Giga+",
  60503. height: math.unit(1500, "km"),
  60504. allForms: true
  60505. },
  60506. {
  60507. name: "Terra",
  60508. height: math.unit(13000, "km"),
  60509. allForms: true
  60510. },
  60511. {
  60512. name: "Terra+",
  60513. height: math.unit(500000, "km"),
  60514. allForms: true
  60515. },
  60516. {
  60517. name: "Galactic",
  60518. height: math.unit(486080, "parsecs"),
  60519. default: true,
  60520. allForms: true
  60521. },
  60522. ],
  60523. {
  60524. "otter": {
  60525. name: "Otter",
  60526. default: true
  60527. },
  60528. "lionbat": {
  60529. name: "Lionbat",
  60530. },
  60531. }
  60532. ))
  60533. characterMakers.push(() => makeCharacter(
  60534. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60535. {
  60536. front: {
  60537. height: math.unit(7 + 4/12, "feet"),
  60538. weight: math.unit(400, "lb"),
  60539. name: "Front",
  60540. image: {
  60541. source: "./media/characters/proxy/front.svg",
  60542. extra: 1605/1542,
  60543. bottom: 55/1660
  60544. }
  60545. },
  60546. side: {
  60547. height: math.unit(7 + 4/12, "feet"),
  60548. weight: math.unit(400, "lb"),
  60549. name: "Side",
  60550. image: {
  60551. source: "./media/characters/proxy/side.svg",
  60552. extra: 794/759,
  60553. bottom: 6/800
  60554. }
  60555. },
  60556. hand: {
  60557. height: math.unit(1.54, "feet"),
  60558. name: "Hand",
  60559. image: {
  60560. source: "./media/characters/proxy/hand.svg"
  60561. }
  60562. },
  60563. paw: {
  60564. height: math.unit(1.53, "feet"),
  60565. name: "Paw",
  60566. image: {
  60567. source: "./media/characters/proxy/paw.svg"
  60568. }
  60569. },
  60570. maw: {
  60571. height: math.unit(1.9, "feet"),
  60572. name: "Maw",
  60573. image: {
  60574. source: "./media/characters/proxy/maw.svg"
  60575. }
  60576. },
  60577. },
  60578. [
  60579. {
  60580. name: "Normal",
  60581. height: math.unit(7 + 4/12, "feet"),
  60582. default: true
  60583. },
  60584. ]
  60585. ))
  60586. characterMakers.push(() => makeCharacter(
  60587. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60588. {
  60589. front: {
  60590. height: math.unit(4, "meters"),
  60591. name: "Front",
  60592. image: {
  60593. source: "./media/characters/crocozilla/front.svg",
  60594. extra: 1790/1742,
  60595. bottom: 78/1868
  60596. }
  60597. },
  60598. },
  60599. [
  60600. {
  60601. name: "Normal",
  60602. height: math.unit(4, "meters"),
  60603. default: true
  60604. },
  60605. ]
  60606. ))
  60607. characterMakers.push(() => makeCharacter(
  60608. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60609. {
  60610. front: {
  60611. height: math.unit(1.8, "meters"),
  60612. weight: math.unit(120, "kg"),
  60613. name: "Front",
  60614. image: {
  60615. source: "./media/characters/kurz/front.svg",
  60616. extra: 1960/1824,
  60617. bottom: 41/2001
  60618. }
  60619. },
  60620. back: {
  60621. height: math.unit(1.8, "meters"),
  60622. weight: math.unit(120, "kg"),
  60623. name: "Back",
  60624. image: {
  60625. source: "./media/characters/kurz/back.svg",
  60626. extra: 1906/1787,
  60627. bottom: 60/1966
  60628. }
  60629. },
  60630. frontLewd: {
  60631. height: math.unit(1.8, "meters"),
  60632. weight: math.unit(120, "kg"),
  60633. name: "Front (Lewd)",
  60634. image: {
  60635. source: "./media/characters/kurz/front-lewd.svg",
  60636. extra: 1960/1824,
  60637. bottom: 41/2001
  60638. }
  60639. },
  60640. maw: {
  60641. height: math.unit(0.69, "meters"),
  60642. name: "Maw",
  60643. image: {
  60644. source: "./media/characters/kurz/maw.svg"
  60645. }
  60646. },
  60647. },
  60648. [
  60649. {
  60650. name: "Original Size",
  60651. height: math.unit(1.8, "meters")
  60652. },
  60653. {
  60654. name: "Incognito Size",
  60655. height: math.unit(2.4, "meters"),
  60656. default: true
  60657. },
  60658. {
  60659. name: "Macro",
  60660. height: math.unit(30, "meters")
  60661. },
  60662. {
  60663. name: "Macro+",
  60664. height: math.unit(250, "meters")
  60665. },
  60666. {
  60667. name: "Mega",
  60668. height: math.unit(2, "km")
  60669. },
  60670. {
  60671. name: "Mega+",
  60672. height: math.unit(35, "km")
  60673. },
  60674. {
  60675. name: "Mega++",
  60676. height: math.unit(75, "km")
  60677. },
  60678. {
  60679. name: "Giga",
  60680. height: math.unit(250, "km")
  60681. },
  60682. {
  60683. name: "Terra",
  60684. height: math.unit(15000, "km")
  60685. },
  60686. {
  60687. name: "Terra+",
  60688. height: math.unit(2250000, "km")
  60689. },
  60690. ]
  60691. ))
  60692. characterMakers.push(() => makeCharacter(
  60693. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60694. {
  60695. front: {
  60696. height: math.unit(16 + 3/12, "feet"),
  60697. weight: math.unit(3575, "lb"),
  60698. name: "Front",
  60699. image: {
  60700. source: "./media/characters/nikita/front.svg",
  60701. extra: 1064/955,
  60702. bottom: 47/1111
  60703. }
  60704. },
  60705. },
  60706. [
  60707. {
  60708. name: "Normal",
  60709. height: math.unit(16 + 3/12, "feet"),
  60710. default: true
  60711. },
  60712. {
  60713. name: "Big",
  60714. height: math.unit(21, "feet")
  60715. },
  60716. {
  60717. name: "Biggest",
  60718. height: math.unit(50, "feet")
  60719. },
  60720. ]
  60721. ))
  60722. characterMakers.push(() => makeCharacter(
  60723. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60724. {
  60725. front: {
  60726. height: math.unit(1.92, "m"),
  60727. weight: math.unit(76, "kg"),
  60728. name: "Front",
  60729. image: {
  60730. source: "./media/characters/kyara/front.svg",
  60731. extra: 1550/1438,
  60732. bottom: 139/1689
  60733. }
  60734. },
  60735. back: {
  60736. height: math.unit(1.92, "m"),
  60737. weight: math.unit(76, "kg"),
  60738. name: "Back",
  60739. image: {
  60740. source: "./media/characters/kyara/back.svg",
  60741. extra: 1523/1427,
  60742. bottom: 83/1606
  60743. }
  60744. },
  60745. head: {
  60746. height: math.unit(1.22, "feet"),
  60747. name: "Head",
  60748. image: {
  60749. source: "./media/characters/kyara/head.svg"
  60750. }
  60751. },
  60752. maw: {
  60753. height: math.unit(0.73, "feet"),
  60754. name: "Maw",
  60755. image: {
  60756. source: "./media/characters/kyara/maw.svg"
  60757. }
  60758. },
  60759. paws: {
  60760. height: math.unit(0.95, "feet"),
  60761. name: "Paws",
  60762. image: {
  60763. source: "./media/characters/kyara/paws.svg"
  60764. }
  60765. },
  60766. },
  60767. [
  60768. {
  60769. name: "Normal",
  60770. height: math.unit(1.92, "meters"),
  60771. default: true
  60772. },
  60773. {
  60774. name: "Mini Macro",
  60775. height: math.unit(192, "meters")
  60776. },
  60777. {
  60778. name: "Macro",
  60779. height: math.unit(480, "meters")
  60780. },
  60781. {
  60782. name: "Mega Macro",
  60783. height: math.unit(1440, "meters")
  60784. },
  60785. ]
  60786. ))
  60787. characterMakers.push(() => makeCharacter(
  60788. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60789. {
  60790. front: {
  60791. height: math.unit(6, "feet"),
  60792. weight: math.unit(160, "lbs"),
  60793. preyCapacity: math.unit(0.05, "people"),
  60794. name: "Front",
  60795. image: {
  60796. source: "./media/characters/layla-amari/front.svg",
  60797. extra: 1922/1723,
  60798. bottom: 90/2012
  60799. }
  60800. },
  60801. back: {
  60802. height: math.unit(6, "feet"),
  60803. weight: math.unit(160, "lbs"),
  60804. preyCapacity: math.unit(0.05, "people"),
  60805. name: "Back",
  60806. image: {
  60807. source: "./media/characters/layla-amari/back.svg",
  60808. extra: 1917/1718,
  60809. bottom: 50/1967
  60810. }
  60811. },
  60812. frontDressed: {
  60813. height: math.unit(6, "feet"),
  60814. weight: math.unit(160, "lbs"),
  60815. preyCapacity: math.unit(0.05, "people"),
  60816. name: "Front (Dressed)",
  60817. image: {
  60818. source: "./media/characters/layla-amari/front-dressed.svg",
  60819. extra: 1922/1723,
  60820. bottom: 90/2012
  60821. }
  60822. },
  60823. face: {
  60824. height: math.unit(0.93, "feet"),
  60825. name: "Face",
  60826. image: {
  60827. source: "./media/characters/layla-amari/face.svg"
  60828. }
  60829. },
  60830. hand: {
  60831. height: math.unit(0.66 , "feet"),
  60832. name: "Hand",
  60833. image: {
  60834. source: "./media/characters/layla-amari/hand.svg"
  60835. }
  60836. },
  60837. foot: {
  60838. height: math.unit(1, "feet"),
  60839. name: "Foot",
  60840. image: {
  60841. source: "./media/characters/layla-amari/foot.svg"
  60842. }
  60843. },
  60844. necklace: {
  60845. height: math.unit(0.32, "feet"),
  60846. name: "Necklace",
  60847. image: {
  60848. source: "./media/characters/layla-amari/necklace.svg"
  60849. }
  60850. },
  60851. nipple: {
  60852. height: math.unit(0.2, "feet"),
  60853. name: "Nipple",
  60854. image: {
  60855. source: "./media/characters/layla-amari/nipple.svg"
  60856. }
  60857. },
  60858. slit: {
  60859. height: math.unit(0.26, "feet"),
  60860. name: "Slit",
  60861. image: {
  60862. source: "./media/characters/layla-amari/slit.svg"
  60863. }
  60864. },
  60865. },
  60866. [
  60867. {
  60868. name: "Natural",
  60869. height: math.unit(825, "feet"),
  60870. default: true
  60871. },
  60872. {
  60873. name: "Enhanced",
  60874. height: math.unit(8250, "feet")
  60875. },
  60876. {
  60877. name: "Apparent Size",
  60878. height: math.unit(9.04363e+8, "meters")
  60879. },
  60880. ]
  60881. ))
  60882. characterMakers.push(() => makeCharacter(
  60883. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  60884. {
  60885. front: {
  60886. height: math.unit(1.3, "meters"),
  60887. name: "Front",
  60888. image: {
  60889. source: "./media/characters/percy/front.svg",
  60890. extra: 1444/1289,
  60891. bottom: 54/1498
  60892. }
  60893. },
  60894. },
  60895. [
  60896. {
  60897. name: "Normal",
  60898. height: math.unit(1.3, "meters"),
  60899. default: true
  60900. },
  60901. ]
  60902. ))
  60903. characterMakers.push(() => makeCharacter(
  60904. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  60905. {
  60906. side: {
  60907. height: math.unit(10, "meters"),
  60908. name: "Side",
  60909. image: {
  60910. source: "./media/characters/grev/side.svg",
  60911. extra: 653/266,
  60912. bottom: 77/730
  60913. }
  60914. },
  60915. head: {
  60916. height: math.unit(16.2, "m"),
  60917. name: "Head",
  60918. image: {
  60919. source: "./media/characters/grev/head.svg"
  60920. }
  60921. },
  60922. dick: {
  60923. height: math.unit(2.8135932034, "m"),
  60924. name: "Dick",
  60925. image: {
  60926. source: "./media/characters/grev/dick.svg"
  60927. }
  60928. },
  60929. },
  60930. [
  60931. {
  60932. name: "Friend-Sized",
  60933. height: math.unit(80, "cm")
  60934. },
  60935. {
  60936. name: "Normal",
  60937. height: math.unit(10, "meters"),
  60938. default: true
  60939. },
  60940. {
  60941. name: "Macro",
  60942. height: math.unit(200, "meters")
  60943. },
  60944. ]
  60945. ))
  60946. //characters
  60947. function makeCharacters() {
  60948. const results = [];
  60949. characterMakers.forEach(character => {
  60950. results.push(character());
  60951. });
  60952. return results;
  60953. }