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

65470 строки
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. }
  2407. //species
  2408. function getSpeciesInfo(speciesList) {
  2409. let result = new Set();
  2410. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2411. result.add(entry)
  2412. });
  2413. return Array.from(result);
  2414. };
  2415. function getSpeciesInfoHelper(species) {
  2416. if (!speciesData[species]) {
  2417. console.warn(species + " doesn't exist");
  2418. return [];
  2419. }
  2420. if (speciesData[species].parents) {
  2421. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2422. } else {
  2423. return [species];
  2424. }
  2425. }
  2426. characterMakers.push(() => makeCharacter(
  2427. {
  2428. name: "Fen",
  2429. species: ["crux"],
  2430. description: {
  2431. title: "Bio",
  2432. text: "Very furry. Sheds on everything."
  2433. },
  2434. tags: [
  2435. "anthro",
  2436. "goo"
  2437. ]
  2438. },
  2439. {
  2440. front: {
  2441. height: math.unit(12, "feet"),
  2442. weight: math.unit(2400, "lb"),
  2443. preyCapacity: math.unit(1, "people"),
  2444. name: "Front",
  2445. image: {
  2446. source: "./media/characters/fen/front.svg",
  2447. extra: 1804/1562,
  2448. bottom: 205/2009
  2449. },
  2450. extraAttributes: {
  2451. pawSize: {
  2452. name: "Paw Size",
  2453. power: 2,
  2454. type: "area",
  2455. base: math.unit(0.35, "m^2")
  2456. }
  2457. }
  2458. },
  2459. diving: {
  2460. height: math.unit(4.9, "meters"),
  2461. weight: math.unit(2400, "lb"),
  2462. name: "Diving",
  2463. image: {
  2464. source: "./media/characters/fen/diving.svg"
  2465. }
  2466. },
  2467. sleeby: {
  2468. height: math.unit(3.45, "meters"),
  2469. weight: math.unit(2400, "lb"),
  2470. name: "Sleeby",
  2471. image: {
  2472. source: "./media/characters/fen/sleeby.svg"
  2473. }
  2474. },
  2475. goo: {
  2476. height: math.unit(12, "feet"),
  2477. weight: math.unit(3600, "lb"),
  2478. volume: math.unit(1000, "liters"),
  2479. preyCapacity: math.unit(6, "people"),
  2480. name: "Goo",
  2481. image: {
  2482. source: "./media/characters/fen/goo.svg",
  2483. extra: 1307/1071,
  2484. bottom: 134/1441
  2485. }
  2486. },
  2487. horror: {
  2488. height: math.unit(13.6, "feet"),
  2489. weight: math.unit(2400, "lb"),
  2490. preyCapacity: math.unit(1, "people"),
  2491. name: "Horror",
  2492. image: {
  2493. source: "./media/characters/fen/horror.svg",
  2494. extra: 893/797,
  2495. bottom: 0/893
  2496. }
  2497. },
  2498. gooNsfw: {
  2499. height: math.unit(12, "feet"),
  2500. weight: math.unit(3750, "lb"),
  2501. volume: math.unit(1000, "liters"),
  2502. preyCapacity: math.unit(6, "people"),
  2503. name: "Goo (NSFW)",
  2504. image: {
  2505. source: "./media/characters/fen/goo-nsfw.svg",
  2506. extra: 1875/1734,
  2507. bottom: 122/1997
  2508. }
  2509. },
  2510. maw: {
  2511. height: math.unit(5.03, "feet"),
  2512. name: "Maw",
  2513. image: {
  2514. source: "./media/characters/fen/maw.svg"
  2515. }
  2516. },
  2517. gooCeiling: {
  2518. height: math.unit(6.6, "feet"),
  2519. weight: math.unit(3000, "lb"),
  2520. volume: math.unit(1000, "liters"),
  2521. preyCapacity: math.unit(6, "people"),
  2522. name: "Maw (Goo)",
  2523. image: {
  2524. source: "./media/characters/fen/goo-maw.svg"
  2525. }
  2526. },
  2527. paw: {
  2528. height: math.unit(3.77, "feet"),
  2529. name: "Paw",
  2530. image: {
  2531. source: "./media/characters/fen/paw.svg"
  2532. },
  2533. extraAttributes: {
  2534. "toeSize": {
  2535. name: "Toe Size",
  2536. power: 2,
  2537. type: "area",
  2538. base: math.unit(0.02875, "m^2")
  2539. },
  2540. "pawSize": {
  2541. name: "Paw Size",
  2542. power: 2,
  2543. type: "area",
  2544. base: math.unit(0.378, "m^2")
  2545. },
  2546. }
  2547. },
  2548. tail: {
  2549. height: math.unit(12.1, "feet"),
  2550. name: "Tail",
  2551. image: {
  2552. source: "./media/characters/fen/tail.svg"
  2553. }
  2554. },
  2555. tailFull: {
  2556. height: math.unit(12.1, "feet"),
  2557. name: "Full Tail",
  2558. image: {
  2559. source: "./media/characters/fen/tail-full.svg"
  2560. }
  2561. },
  2562. back: {
  2563. height: math.unit(12, "feet"),
  2564. weight: math.unit(2400, "lb"),
  2565. name: "Back",
  2566. image: {
  2567. source: "./media/characters/fen/back.svg",
  2568. },
  2569. info: {
  2570. description: {
  2571. mode: "append",
  2572. text: "\n\nHe is not currently looking at you."
  2573. }
  2574. }
  2575. },
  2576. full: {
  2577. height: math.unit(1.85, "meter"),
  2578. weight: math.unit(3200, "lb"),
  2579. preyCapacity: math.unit(3, "people"),
  2580. name: "Full",
  2581. image: {
  2582. source: "./media/characters/fen/full.svg",
  2583. extra: 1133/859,
  2584. bottom: 145/1278
  2585. },
  2586. info: {
  2587. description: {
  2588. mode: "append",
  2589. text: "\n\nMunch."
  2590. }
  2591. }
  2592. },
  2593. gooLounging: {
  2594. height: math.unit(4.53, "feet"),
  2595. weight: math.unit(3000, "lb"),
  2596. preyCapacity: math.unit(6, "people"),
  2597. name: "Goo (Lounging)",
  2598. image: {
  2599. source: "./media/characters/fen/goo-lounging.svg",
  2600. bottom: 116 / 613
  2601. }
  2602. },
  2603. lounging: {
  2604. height: math.unit(10.52, "feet"),
  2605. weight: math.unit(2400, "lb"),
  2606. name: "Lounging",
  2607. image: {
  2608. source: "./media/characters/fen/lounging.svg"
  2609. }
  2610. },
  2611. },
  2612. [
  2613. {
  2614. name: "Small",
  2615. height: math.unit(2.2428, "meter")
  2616. },
  2617. {
  2618. name: "Normal",
  2619. height: math.unit(12, "feet"),
  2620. default: true,
  2621. },
  2622. {
  2623. name: "Big",
  2624. height: math.unit(20, "feet")
  2625. },
  2626. {
  2627. name: "Minimacro",
  2628. height: math.unit(40, "feet"),
  2629. info: {
  2630. description: {
  2631. mode: "append",
  2632. text: "\n\nTOO DAMN BIG"
  2633. }
  2634. }
  2635. },
  2636. {
  2637. name: "Macro",
  2638. height: math.unit(100, "feet"),
  2639. info: {
  2640. description: {
  2641. mode: "append",
  2642. text: "\n\nTOO DAMN BIG"
  2643. }
  2644. }
  2645. },
  2646. {
  2647. name: "Megamacro",
  2648. height: math.unit(2, "miles")
  2649. },
  2650. {
  2651. name: "Gigamacro",
  2652. height: math.unit(10, "earths")
  2653. },
  2654. ]
  2655. ))
  2656. characterMakers.push(() => makeCharacter(
  2657. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2658. {
  2659. front: {
  2660. height: math.unit(183, "cm"),
  2661. weight: math.unit(80, "kg"),
  2662. name: "Front",
  2663. image: {
  2664. source: "./media/characters/sofia-fluttertail/front.svg",
  2665. bottom: 0.01,
  2666. extra: 2154 / 2081
  2667. }
  2668. },
  2669. frontAlt: {
  2670. height: math.unit(183, "cm"),
  2671. weight: math.unit(80, "kg"),
  2672. name: "Front (alt)",
  2673. image: {
  2674. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2675. }
  2676. },
  2677. back: {
  2678. height: math.unit(183, "cm"),
  2679. weight: math.unit(80, "kg"),
  2680. name: "Back",
  2681. image: {
  2682. source: "./media/characters/sofia-fluttertail/back.svg"
  2683. }
  2684. },
  2685. kneeling: {
  2686. height: math.unit(125, "cm"),
  2687. weight: math.unit(80, "kg"),
  2688. name: "Kneeling",
  2689. image: {
  2690. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2691. extra: 1033 / 977,
  2692. bottom: 23.7 / 1057
  2693. }
  2694. },
  2695. maw: {
  2696. height: math.unit(183 / 5, "cm"),
  2697. name: "Maw",
  2698. image: {
  2699. source: "./media/characters/sofia-fluttertail/maw.svg"
  2700. }
  2701. },
  2702. mawcloseup: {
  2703. height: math.unit(183 / 5 * 0.41, "cm"),
  2704. name: "Maw (Closeup)",
  2705. image: {
  2706. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2707. }
  2708. },
  2709. paws: {
  2710. height: math.unit(1.17, "feet"),
  2711. name: "Paws",
  2712. image: {
  2713. source: "./media/characters/sofia-fluttertail/paws.svg",
  2714. extra: 851 / 851,
  2715. bottom: 17 / 868
  2716. }
  2717. },
  2718. },
  2719. [
  2720. {
  2721. name: "Normal",
  2722. height: math.unit(1.83, "meter")
  2723. },
  2724. {
  2725. name: "Size Thief",
  2726. height: math.unit(18, "feet")
  2727. },
  2728. {
  2729. name: "50 Foot Collie",
  2730. height: math.unit(50, "feet")
  2731. },
  2732. {
  2733. name: "Macro",
  2734. height: math.unit(96, "feet"),
  2735. default: true
  2736. },
  2737. {
  2738. name: "Megamerger",
  2739. height: math.unit(650, "feet")
  2740. },
  2741. ]
  2742. ))
  2743. characterMakers.push(() => makeCharacter(
  2744. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2745. {
  2746. front: {
  2747. height: math.unit(7, "feet"),
  2748. weight: math.unit(100, "kg"),
  2749. name: "Front",
  2750. image: {
  2751. source: "./media/characters/march/front.svg",
  2752. extra: 1992/1851,
  2753. bottom: 39/2031
  2754. }
  2755. },
  2756. foot: {
  2757. height: math.unit(0.9, "feet"),
  2758. name: "Foot",
  2759. image: {
  2760. source: "./media/characters/march/foot.svg"
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Normal",
  2767. height: math.unit(7.9, "feet")
  2768. },
  2769. {
  2770. name: "Macro",
  2771. height: math.unit(220, "meters")
  2772. },
  2773. {
  2774. name: "Megamacro",
  2775. height: math.unit(2.98, "km"),
  2776. default: true
  2777. },
  2778. {
  2779. name: "Gigamacro",
  2780. height: math.unit(15963, "km")
  2781. },
  2782. {
  2783. name: "Teramacro",
  2784. height: math.unit(2980000000, "km")
  2785. },
  2786. {
  2787. name: "Examacro",
  2788. height: math.unit(250, "parsecs")
  2789. },
  2790. ]
  2791. ))
  2792. characterMakers.push(() => makeCharacter(
  2793. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2794. {
  2795. front: {
  2796. height: math.unit(6, "feet"),
  2797. weight: math.unit(60, "kg"),
  2798. name: "Front",
  2799. image: {
  2800. source: "./media/characters/noir/front.svg",
  2801. extra: 1,
  2802. bottom: 0.032
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "Normal",
  2809. height: math.unit(6.6, "feet")
  2810. },
  2811. {
  2812. name: "Macro",
  2813. height: math.unit(500, "feet")
  2814. },
  2815. {
  2816. name: "Megamacro",
  2817. height: math.unit(2.5, "km"),
  2818. default: true
  2819. },
  2820. {
  2821. name: "Gigamacro",
  2822. height: math.unit(22500, "km")
  2823. },
  2824. {
  2825. name: "Teramacro",
  2826. height: math.unit(2500000000, "km")
  2827. },
  2828. {
  2829. name: "Examacro",
  2830. height: math.unit(200, "parsecs")
  2831. },
  2832. ]
  2833. ))
  2834. characterMakers.push(() => makeCharacter(
  2835. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2836. {
  2837. front: {
  2838. height: math.unit(7, "feet"),
  2839. weight: math.unit(100, "kg"),
  2840. name: "Front",
  2841. image: {
  2842. source: "./media/characters/okuri/front.svg",
  2843. extra: 739/665,
  2844. bottom: 39/778
  2845. }
  2846. },
  2847. back: {
  2848. height: math.unit(7, "feet"),
  2849. weight: math.unit(100, "kg"),
  2850. name: "Back",
  2851. image: {
  2852. source: "./media/characters/okuri/back.svg",
  2853. extra: 734/653,
  2854. bottom: 13/747
  2855. }
  2856. },
  2857. sitting: {
  2858. height: math.unit(2.95, "feet"),
  2859. weight: math.unit(100, "kg"),
  2860. name: "Sitting",
  2861. image: {
  2862. source: "./media/characters/okuri/sitting.svg",
  2863. extra: 370/318,
  2864. bottom: 99/469
  2865. }
  2866. },
  2867. },
  2868. [
  2869. {
  2870. name: "Smallest",
  2871. height: math.unit(5 + 2/12, "feet")
  2872. },
  2873. {
  2874. name: "Smaller",
  2875. height: math.unit(300, "feet")
  2876. },
  2877. {
  2878. name: "Small",
  2879. height: math.unit(1000, "feet")
  2880. },
  2881. {
  2882. name: "Macro",
  2883. height: math.unit(1, "mile")
  2884. },
  2885. {
  2886. name: "Mega Macro (Small)",
  2887. height: math.unit(20, "km")
  2888. },
  2889. {
  2890. name: "Mega Macro (Large)",
  2891. height: math.unit(600, "km")
  2892. },
  2893. {
  2894. name: "Giga Macro",
  2895. height: math.unit(10000, "km")
  2896. },
  2897. {
  2898. name: "Normal",
  2899. height: math.unit(577560, "km"),
  2900. default: true
  2901. },
  2902. {
  2903. name: "Large",
  2904. height: math.unit(4, "galaxies")
  2905. },
  2906. {
  2907. name: "Largest",
  2908. height: math.unit(15, "multiverses")
  2909. },
  2910. ]
  2911. ))
  2912. characterMakers.push(() => makeCharacter(
  2913. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2914. {
  2915. front: {
  2916. height: math.unit(7, "feet"),
  2917. weight: math.unit(100, "kg"),
  2918. name: "Front",
  2919. image: {
  2920. source: "./media/characters/manny/front.svg",
  2921. extra: 1,
  2922. bottom: 0.06
  2923. }
  2924. },
  2925. back: {
  2926. height: math.unit(7, "feet"),
  2927. weight: math.unit(100, "kg"),
  2928. name: "Back",
  2929. image: {
  2930. source: "./media/characters/manny/back.svg",
  2931. extra: 1,
  2932. bottom: 0.014
  2933. }
  2934. },
  2935. },
  2936. [
  2937. {
  2938. name: "Normal",
  2939. height: math.unit(7, "feet"),
  2940. },
  2941. {
  2942. name: "Macro",
  2943. height: math.unit(78, "feet"),
  2944. default: true
  2945. },
  2946. {
  2947. name: "Macro+",
  2948. height: math.unit(300, "meters")
  2949. },
  2950. {
  2951. name: "Macro++",
  2952. height: math.unit(2400, "meters")
  2953. },
  2954. {
  2955. name: "Megamacro",
  2956. height: math.unit(5167, "meters")
  2957. },
  2958. {
  2959. name: "Gigamacro",
  2960. height: math.unit(41769, "miles")
  2961. },
  2962. ]
  2963. ))
  2964. characterMakers.push(() => makeCharacter(
  2965. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2966. {
  2967. front: {
  2968. height: math.unit(7, "feet"),
  2969. weight: math.unit(100, "kg"),
  2970. name: "Front",
  2971. image: {
  2972. source: "./media/characters/adake/front-1.svg"
  2973. }
  2974. },
  2975. frontAlt: {
  2976. height: math.unit(7, "feet"),
  2977. weight: math.unit(100, "kg"),
  2978. name: "Front (Alt)",
  2979. image: {
  2980. source: "./media/characters/adake/front-2.svg",
  2981. extra: 1,
  2982. bottom: 0.01
  2983. }
  2984. },
  2985. back: {
  2986. height: math.unit(7, "feet"),
  2987. weight: math.unit(100, "kg"),
  2988. name: "Back",
  2989. image: {
  2990. source: "./media/characters/adake/back.svg",
  2991. }
  2992. },
  2993. kneel: {
  2994. height: math.unit(5.385, "feet"),
  2995. weight: math.unit(100, "kg"),
  2996. name: "Kneeling",
  2997. image: {
  2998. source: "./media/characters/adake/kneel.svg",
  2999. bottom: 0.052
  3000. }
  3001. },
  3002. },
  3003. [
  3004. {
  3005. name: "Normal",
  3006. height: math.unit(7, "feet"),
  3007. },
  3008. {
  3009. name: "Macro",
  3010. height: math.unit(78, "feet"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Macro+",
  3015. height: math.unit(300, "meters")
  3016. },
  3017. {
  3018. name: "Macro++",
  3019. height: math.unit(2400, "meters")
  3020. },
  3021. {
  3022. name: "Megamacro",
  3023. height: math.unit(5167, "meters")
  3024. },
  3025. {
  3026. name: "Gigamacro",
  3027. height: math.unit(41769, "miles")
  3028. },
  3029. ]
  3030. ))
  3031. characterMakers.push(() => makeCharacter(
  3032. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3033. {
  3034. front: {
  3035. height: math.unit(1.65, "meters"),
  3036. weight: math.unit(50, "kg"),
  3037. name: "Front",
  3038. image: {
  3039. source: "./media/characters/elijah/front.svg",
  3040. extra: 858 / 830,
  3041. bottom: 95.5 / 953.8559
  3042. }
  3043. },
  3044. back: {
  3045. height: math.unit(1.65, "meters"),
  3046. weight: math.unit(50, "kg"),
  3047. name: "Back",
  3048. image: {
  3049. source: "./media/characters/elijah/back.svg",
  3050. extra: 895 / 850,
  3051. bottom: 5.3 / 897.956
  3052. }
  3053. },
  3054. frontNsfw: {
  3055. height: math.unit(1.65, "meters"),
  3056. weight: math.unit(50, "kg"),
  3057. name: "Front (NSFW)",
  3058. image: {
  3059. source: "./media/characters/elijah/front-nsfw.svg",
  3060. extra: 858 / 830,
  3061. bottom: 95.5 / 953.8559
  3062. }
  3063. },
  3064. backNsfw: {
  3065. height: math.unit(1.65, "meters"),
  3066. weight: math.unit(50, "kg"),
  3067. name: "Back (NSFW)",
  3068. image: {
  3069. source: "./media/characters/elijah/back-nsfw.svg",
  3070. extra: 895 / 850,
  3071. bottom: 5.3 / 897.956
  3072. }
  3073. },
  3074. dick: {
  3075. height: math.unit(1, "feet"),
  3076. name: "Dick",
  3077. image: {
  3078. source: "./media/characters/elijah/dick.svg"
  3079. }
  3080. },
  3081. beakOpen: {
  3082. height: math.unit(1.25, "feet"),
  3083. name: "Beak (Open)",
  3084. image: {
  3085. source: "./media/characters/elijah/beak-open.svg"
  3086. }
  3087. },
  3088. beakShut: {
  3089. height: math.unit(1.25, "feet"),
  3090. name: "Beak (Shut)",
  3091. image: {
  3092. source: "./media/characters/elijah/beak-shut.svg"
  3093. }
  3094. },
  3095. footFlexing: {
  3096. height: math.unit(1.61, "feet"),
  3097. name: "Foot (Flexing)",
  3098. image: {
  3099. source: "./media/characters/elijah/foot-flexing.svg"
  3100. }
  3101. },
  3102. footStepping: {
  3103. height: math.unit(1.44, "feet"),
  3104. name: "Foot (Stepping)",
  3105. image: {
  3106. source: "./media/characters/elijah/foot-stepping.svg"
  3107. }
  3108. },
  3109. plantigradeLeg: {
  3110. height: math.unit(2.34, "feet"),
  3111. name: "Plantigrade Leg",
  3112. image: {
  3113. source: "./media/characters/elijah/plantigrade-leg.svg"
  3114. }
  3115. },
  3116. plantigradeFootLeft: {
  3117. height: math.unit(0.9, "feet"),
  3118. name: "Plantigrade Foot (Left)",
  3119. image: {
  3120. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3121. }
  3122. },
  3123. plantigradeFootRight: {
  3124. height: math.unit(0.9, "feet"),
  3125. name: "Plantigrade Foot (Right)",
  3126. image: {
  3127. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3128. }
  3129. },
  3130. },
  3131. [
  3132. {
  3133. name: "Normal",
  3134. height: math.unit(1.65, "meters")
  3135. },
  3136. {
  3137. name: "Macro",
  3138. height: math.unit(55, "meters"),
  3139. default: true
  3140. },
  3141. {
  3142. name: "Macro+",
  3143. height: math.unit(105, "meters")
  3144. },
  3145. ]
  3146. ))
  3147. characterMakers.push(() => makeCharacter(
  3148. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3149. {
  3150. front: {
  3151. height: math.unit(7 + 2/12, "feet"),
  3152. weight: math.unit(320, "kg"),
  3153. preyCapacity: math.unit(0.276549935, "people"),
  3154. name: "Front",
  3155. image: {
  3156. source: "./media/characters/rai/front.svg",
  3157. extra: 1802/1696,
  3158. bottom: 68/1870
  3159. },
  3160. form: "anthro",
  3161. default: true
  3162. },
  3163. frontDressed: {
  3164. height: math.unit(7 + 2/12, "feet"),
  3165. weight: math.unit(320, "kg"),
  3166. preyCapacity: math.unit(0.276549935, "people"),
  3167. name: "Front (Dressed)",
  3168. image: {
  3169. source: "./media/characters/rai/front-dressed.svg",
  3170. extra: 1802/1696,
  3171. bottom: 68/1870
  3172. },
  3173. form: "anthro"
  3174. },
  3175. side: {
  3176. height: math.unit(7 + 2/12, "feet"),
  3177. weight: math.unit(320, "kg"),
  3178. preyCapacity: math.unit(0.276549935, "people"),
  3179. name: "Side",
  3180. image: {
  3181. source: "./media/characters/rai/side.svg",
  3182. extra: 1789/1710,
  3183. bottom: 115/1904
  3184. },
  3185. form: "anthro"
  3186. },
  3187. back: {
  3188. height: math.unit(7 + 2/12, "feet"),
  3189. weight: math.unit(320, "kg"),
  3190. preyCapacity: math.unit(0.276549935, "people"),
  3191. name: "Back",
  3192. image: {
  3193. source: "./media/characters/rai/back.svg",
  3194. extra: 1770/1707,
  3195. bottom: 28/1798
  3196. },
  3197. form: "anthro"
  3198. },
  3199. feral: {
  3200. height: math.unit(9.5, "feet"),
  3201. weight: math.unit(640, "kg"),
  3202. preyCapacity: math.unit(4, "people"),
  3203. name: "Feral",
  3204. image: {
  3205. source: "./media/characters/rai/feral.svg",
  3206. extra: 945/553,
  3207. bottom: 176/1121
  3208. },
  3209. form: "feral",
  3210. default: true
  3211. },
  3212. dragon: {
  3213. height: math.unit(23, "feet"),
  3214. weight: math.unit(50000, "lb"),
  3215. name: "Dragon",
  3216. image: {
  3217. source: "./media/characters/rai/dragon.svg",
  3218. extra: 2498 / 2030,
  3219. bottom: 85.2 / 2584
  3220. },
  3221. form: "dragon",
  3222. default: true
  3223. },
  3224. maw: {
  3225. height: math.unit(1.69, "feet"),
  3226. name: "Maw",
  3227. image: {
  3228. source: "./media/characters/rai/maw.svg"
  3229. },
  3230. form: "anthro"
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Normal",
  3236. height: math.unit(7 + 2/12, "feet"),
  3237. form: "anthro"
  3238. },
  3239. {
  3240. name: "Big",
  3241. height: math.unit(11, "feet"),
  3242. form: "anthro"
  3243. },
  3244. {
  3245. name: "Minimacro",
  3246. height: math.unit(77, "feet"),
  3247. form: "anthro"
  3248. },
  3249. {
  3250. name: "Macro",
  3251. height: math.unit(302, "feet"),
  3252. default: true,
  3253. form: "anthro"
  3254. },
  3255. {
  3256. name: "Normal",
  3257. height: math.unit(9.5, "feet"),
  3258. form: "feral",
  3259. default: true
  3260. },
  3261. {
  3262. name: "Normal",
  3263. height: math.unit(23, "feet"),
  3264. form: "dragon",
  3265. default: true
  3266. }
  3267. ],
  3268. {
  3269. "anthro": {
  3270. name: "Anthro",
  3271. default: true
  3272. },
  3273. "feral": {
  3274. name: "Feral",
  3275. },
  3276. "dragon": {
  3277. name: "Dragon",
  3278. },
  3279. }
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3283. {
  3284. frontDressed: {
  3285. height: math.unit(216, "feet"),
  3286. weight: math.unit(7000000, "lb"),
  3287. preyCapacity: math.unit(1321, "people"),
  3288. name: "Front (Dressed)",
  3289. image: {
  3290. source: "./media/characters/jazzy/front-dressed.svg",
  3291. extra: 2738 / 2651,
  3292. bottom: 41.8 / 2786
  3293. }
  3294. },
  3295. backDressed: {
  3296. height: math.unit(216, "feet"),
  3297. weight: math.unit(7000000, "lb"),
  3298. preyCapacity: math.unit(1321, "people"),
  3299. name: "Back (Dressed)",
  3300. image: {
  3301. source: "./media/characters/jazzy/back-dressed.svg",
  3302. extra: 2775 / 2673,
  3303. bottom: 36.8 / 2817
  3304. }
  3305. },
  3306. front: {
  3307. height: math.unit(216, "feet"),
  3308. weight: math.unit(7000000, "lb"),
  3309. preyCapacity: math.unit(1321, "people"),
  3310. name: "Front",
  3311. image: {
  3312. source: "./media/characters/jazzy/front.svg",
  3313. extra: 2738 / 2651,
  3314. bottom: 41.8 / 2786
  3315. }
  3316. },
  3317. back: {
  3318. height: math.unit(216, "feet"),
  3319. weight: math.unit(7000000, "lb"),
  3320. preyCapacity: math.unit(1321, "people"),
  3321. name: "Back",
  3322. image: {
  3323. source: "./media/characters/jazzy/back.svg",
  3324. extra: 2775 / 2673,
  3325. bottom: 36.8 / 2817
  3326. }
  3327. },
  3328. maw: {
  3329. height: math.unit(20, "feet"),
  3330. name: "Maw",
  3331. image: {
  3332. source: "./media/characters/jazzy/maw.svg"
  3333. }
  3334. },
  3335. paws: {
  3336. height: math.unit(27.5, "feet"),
  3337. name: "Paws",
  3338. image: {
  3339. source: "./media/characters/jazzy/paws.svg"
  3340. }
  3341. },
  3342. eye: {
  3343. height: math.unit(4.4, "feet"),
  3344. name: "Eye",
  3345. image: {
  3346. source: "./media/characters/jazzy/eye.svg"
  3347. }
  3348. },
  3349. droneOffense: {
  3350. height: math.unit(9.5, "inches"),
  3351. name: "Drone (Offense)",
  3352. image: {
  3353. source: "./media/characters/jazzy/drone-offense.svg"
  3354. }
  3355. },
  3356. droneRecon: {
  3357. height: math.unit(9.5, "inches"),
  3358. name: "Drone (Recon)",
  3359. image: {
  3360. source: "./media/characters/jazzy/drone-recon.svg"
  3361. }
  3362. },
  3363. droneDefense: {
  3364. height: math.unit(9.5, "inches"),
  3365. name: "Drone (Defense)",
  3366. image: {
  3367. source: "./media/characters/jazzy/drone-defense.svg"
  3368. }
  3369. },
  3370. },
  3371. [
  3372. {
  3373. name: "Macro",
  3374. height: math.unit(216, "feet"),
  3375. default: true
  3376. },
  3377. ]
  3378. ))
  3379. characterMakers.push(() => makeCharacter(
  3380. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3381. {
  3382. front: {
  3383. height: math.unit(9 + 6/12, "feet"),
  3384. weight: math.unit(700, "lb"),
  3385. name: "Front",
  3386. image: {
  3387. source: "./media/characters/flamm/front.svg",
  3388. extra: 1736/1596,
  3389. bottom: 93/1829
  3390. }
  3391. },
  3392. buff: {
  3393. height: math.unit(9 + 6/12, "feet"),
  3394. weight: math.unit(950, "lb"),
  3395. name: "Buff",
  3396. image: {
  3397. source: "./media/characters/flamm/buff.svg",
  3398. extra: 3018/2874,
  3399. bottom: 221/3239
  3400. }
  3401. },
  3402. },
  3403. [
  3404. {
  3405. name: "Normal",
  3406. height: math.unit(9.5, "feet")
  3407. },
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(200, "feet"),
  3411. default: true
  3412. },
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3417. {
  3418. front: {
  3419. height: math.unit(5 + 3/12, "feet"),
  3420. weight: math.unit(60, "kg"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/zephiro/front.svg",
  3424. extra: 1873/1761,
  3425. bottom: 147/2020
  3426. }
  3427. },
  3428. side: {
  3429. height: math.unit(5 + 3/12, "feet"),
  3430. weight: math.unit(60, "kg"),
  3431. name: "Side",
  3432. image: {
  3433. source: "./media/characters/zephiro/side.svg",
  3434. extra: 1929/1827,
  3435. bottom: 65/1994
  3436. }
  3437. },
  3438. back: {
  3439. height: math.unit(5 + 3/12, "feet"),
  3440. weight: math.unit(60, "kg"),
  3441. name: "Back",
  3442. image: {
  3443. source: "./media/characters/zephiro/back.svg",
  3444. extra: 1926/1816,
  3445. bottom: 41/1967
  3446. }
  3447. },
  3448. hand: {
  3449. height: math.unit(0.68, "feet"),
  3450. name: "Hand",
  3451. image: {
  3452. source: "./media/characters/zephiro/hand.svg"
  3453. }
  3454. },
  3455. paw: {
  3456. height: math.unit(1, "feet"),
  3457. name: "Paw",
  3458. image: {
  3459. source: "./media/characters/zephiro/paw.svg"
  3460. }
  3461. },
  3462. beans: {
  3463. height: math.unit(0.93, "feet"),
  3464. name: "Beans",
  3465. image: {
  3466. source: "./media/characters/zephiro/beans.svg"
  3467. }
  3468. },
  3469. },
  3470. [
  3471. {
  3472. name: "Micro",
  3473. height: math.unit(3, "inches")
  3474. },
  3475. {
  3476. name: "Normal",
  3477. height: math.unit(5 + 3 / 12, "feet"),
  3478. default: true
  3479. },
  3480. {
  3481. name: "Macro",
  3482. height: math.unit(118, "feet")
  3483. },
  3484. ]
  3485. ))
  3486. characterMakers.push(() => makeCharacter(
  3487. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3488. {
  3489. front: {
  3490. height: math.unit(5, "feet"),
  3491. weight: math.unit(90, "kg"),
  3492. preyCapacity: math.unit(14, "people"),
  3493. name: "Front",
  3494. image: {
  3495. source: "./media/characters/fory/front.svg",
  3496. extra: 2862 / 2674,
  3497. bottom: 180 / 3043.8
  3498. },
  3499. form: "weaselbun",
  3500. default: true,
  3501. extraAttributes: {
  3502. "pawSize": {
  3503. name: "Paw Size",
  3504. power: 2,
  3505. type: "area",
  3506. base: math.unit(0.1596, "m^2")
  3507. },
  3508. "pawLength": {
  3509. name: "Paw Length",
  3510. power: 1,
  3511. type: "length",
  3512. base: math.unit(0.7, "m")
  3513. }
  3514. }
  3515. },
  3516. back: {
  3517. height: math.unit(5, "feet"),
  3518. weight: math.unit(90, "kg"),
  3519. preyCapacity: math.unit(14, "people"),
  3520. name: "Back",
  3521. image: {
  3522. source: "./media/characters/fory/back.svg",
  3523. extra: 1790/1672,
  3524. bottom: 84/1874
  3525. },
  3526. form: "weaselbun",
  3527. extraAttributes: {
  3528. "pawSize": {
  3529. name: "Paw Size",
  3530. power: 2,
  3531. type: "area",
  3532. base: math.unit(0.1596, "m^2")
  3533. },
  3534. "pawLength": {
  3535. name: "Paw Length",
  3536. power: 1,
  3537. type: "length",
  3538. base: math.unit(0.7, "m")
  3539. }
  3540. }
  3541. },
  3542. paw: {
  3543. height: math.unit(2.14, "feet"),
  3544. name: "Paw",
  3545. image: {
  3546. source: "./media/characters/fory/paw.svg"
  3547. },
  3548. form: "weaselbun",
  3549. extraAttributes: {
  3550. "pawSize": {
  3551. name: "Paw Size",
  3552. power: 2,
  3553. type: "area",
  3554. base: math.unit(0.1596, "m^2")
  3555. },
  3556. "pawLength": {
  3557. name: "Paw Length",
  3558. power: 1,
  3559. type: "length",
  3560. base: math.unit(0.48, "m")
  3561. }
  3562. }
  3563. },
  3564. bunBack: {
  3565. height: math.unit(3, "feet"),
  3566. weight: math.unit(20, "kg"),
  3567. preyCapacity: math.unit(3, "people"),
  3568. name: "Back",
  3569. image: {
  3570. source: "./media/characters/fory/bun-back.svg",
  3571. extra: 1749/1564,
  3572. bottom: 246/1995
  3573. },
  3574. form: "bun",
  3575. default: true,
  3576. extraAttributes: {
  3577. "pawSize": {
  3578. name: "Paw Size",
  3579. power: 2,
  3580. type: "area",
  3581. base: math.unit(0.072, "m^2")
  3582. },
  3583. "pawLength": {
  3584. name: "Paw Length",
  3585. power: 1,
  3586. type: "length",
  3587. base: math.unit(0.45, "m")
  3588. }
  3589. }
  3590. },
  3591. },
  3592. [
  3593. {
  3594. name: "Normal",
  3595. height: math.unit(5, "feet"),
  3596. form: "weaselbun"
  3597. },
  3598. {
  3599. name: "Macro",
  3600. height: math.unit(50, "feet"),
  3601. default: true,
  3602. form: "weaselbun"
  3603. },
  3604. {
  3605. name: "Megamacro",
  3606. height: math.unit(10, "miles"),
  3607. form: "weaselbun"
  3608. },
  3609. {
  3610. name: "Gigamacro",
  3611. height: math.unit(5, "earths"),
  3612. form: "weaselbun"
  3613. },
  3614. {
  3615. name: "Normal",
  3616. height: math.unit(3, "feet"),
  3617. default: true,
  3618. form: "bun"
  3619. },
  3620. {
  3621. name: "Fun-Size",
  3622. height: math.unit(12, "feet"),
  3623. form: "bun"
  3624. },
  3625. {
  3626. name: "Macro",
  3627. height: math.unit(100, "feet"),
  3628. form: "bun"
  3629. },
  3630. {
  3631. name: "Planetary",
  3632. height: math.unit(3, "earths"),
  3633. form: "bun"
  3634. },
  3635. ],
  3636. {
  3637. "weaselbun": {
  3638. name: "Weaselbun",
  3639. default: true
  3640. },
  3641. "bun": {
  3642. name: "Bun",
  3643. },
  3644. }
  3645. ))
  3646. characterMakers.push(() => makeCharacter(
  3647. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3648. {
  3649. front: {
  3650. height: math.unit(7, "feet"),
  3651. weight: math.unit(90, "kg"),
  3652. name: "Front",
  3653. image: {
  3654. source: "./media/characters/kurrikage/front.svg",
  3655. extra: 1845/1733,
  3656. bottom: 119/1964
  3657. }
  3658. },
  3659. back: {
  3660. height: math.unit(7, "feet"),
  3661. weight: math.unit(90, "kg"),
  3662. name: "Back",
  3663. image: {
  3664. source: "./media/characters/kurrikage/back.svg",
  3665. extra: 1790/1677,
  3666. bottom: 61/1851
  3667. }
  3668. },
  3669. dressed: {
  3670. height: math.unit(7, "feet"),
  3671. weight: math.unit(90, "kg"),
  3672. name: "Dressed",
  3673. image: {
  3674. source: "./media/characters/kurrikage/dressed.svg",
  3675. extra: 1845/1733,
  3676. bottom: 119/1964
  3677. }
  3678. },
  3679. foot: {
  3680. height: math.unit(1.5, "feet"),
  3681. name: "Foot",
  3682. image: {
  3683. source: "./media/characters/kurrikage/foot.svg"
  3684. }
  3685. },
  3686. staff: {
  3687. height: math.unit(6.7, "feet"),
  3688. name: "Staff",
  3689. image: {
  3690. source: "./media/characters/kurrikage/staff.svg"
  3691. }
  3692. },
  3693. peek: {
  3694. height: math.unit(1.05, "feet"),
  3695. name: "Peeking",
  3696. image: {
  3697. source: "./media/characters/kurrikage/peek.svg",
  3698. bottom: 0.08
  3699. }
  3700. },
  3701. },
  3702. [
  3703. {
  3704. name: "Normal",
  3705. height: math.unit(12, "feet"),
  3706. default: true
  3707. },
  3708. {
  3709. name: "Big",
  3710. height: math.unit(20, "feet")
  3711. },
  3712. {
  3713. name: "Macro",
  3714. height: math.unit(500, "feet")
  3715. },
  3716. {
  3717. name: "Megamacro",
  3718. height: math.unit(20, "miles")
  3719. },
  3720. ]
  3721. ))
  3722. characterMakers.push(() => makeCharacter(
  3723. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3724. {
  3725. front: {
  3726. height: math.unit(6, "feet"),
  3727. weight: math.unit(75, "kg"),
  3728. name: "Front",
  3729. image: {
  3730. source: "./media/characters/shingo/front.svg",
  3731. extra: 1900/1825,
  3732. bottom: 82/1982
  3733. }
  3734. },
  3735. side: {
  3736. height: math.unit(6, "feet"),
  3737. weight: math.unit(75, "kg"),
  3738. name: "Side",
  3739. image: {
  3740. source: "./media/characters/shingo/side.svg",
  3741. extra: 1930/1865,
  3742. bottom: 16/1946
  3743. }
  3744. },
  3745. back: {
  3746. height: math.unit(6, "feet"),
  3747. weight: math.unit(75, "kg"),
  3748. name: "Back",
  3749. image: {
  3750. source: "./media/characters/shingo/back.svg",
  3751. extra: 1922/1852,
  3752. bottom: 16/1938
  3753. }
  3754. },
  3755. frontDressed: {
  3756. height: math.unit(6, "feet"),
  3757. weight: math.unit(150, "lb"),
  3758. name: "Front-dressed",
  3759. image: {
  3760. source: "./media/characters/shingo/front-dressed.svg",
  3761. extra: 1900/1825,
  3762. bottom: 82/1982
  3763. }
  3764. },
  3765. paw: {
  3766. height: math.unit(1.29, "feet"),
  3767. name: "Paw",
  3768. image: {
  3769. source: "./media/characters/shingo/paw.svg"
  3770. }
  3771. },
  3772. hand: {
  3773. height: math.unit(1.07, "feet"),
  3774. name: "Hand",
  3775. image: {
  3776. source: "./media/characters/shingo/hand.svg"
  3777. }
  3778. },
  3779. frontAlt: {
  3780. height: math.unit(6, "feet"),
  3781. weight: math.unit(75, "kg"),
  3782. name: "Front (Alt)",
  3783. image: {
  3784. source: "./media/characters/shingo/front-alt.svg",
  3785. extra: 3511 / 3338,
  3786. bottom: 0.005
  3787. }
  3788. },
  3789. frontAlt2: {
  3790. height: math.unit(6, "feet"),
  3791. weight: math.unit(75, "kg"),
  3792. name: "Front (Alt 2)",
  3793. image: {
  3794. source: "./media/characters/shingo/front-alt-2.svg",
  3795. extra: 706/681,
  3796. bottom: 11/717
  3797. }
  3798. },
  3799. pawAlt: {
  3800. height: math.unit(1, "feet"),
  3801. name: "Paw (Alt)",
  3802. image: {
  3803. source: "./media/characters/shingo/paw-alt.svg"
  3804. }
  3805. },
  3806. },
  3807. [
  3808. {
  3809. name: "Micro",
  3810. height: math.unit(4, "inches")
  3811. },
  3812. {
  3813. name: "Normal",
  3814. height: math.unit(6, "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro",
  3819. height: math.unit(108, "feet")
  3820. },
  3821. {
  3822. name: "Macro+",
  3823. height: math.unit(1500, "feet")
  3824. },
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3829. {
  3830. side: {
  3831. height: math.unit(6, "feet"),
  3832. weight: math.unit(75, "kg"),
  3833. name: "Side",
  3834. image: {
  3835. source: "./media/characters/aigey/side.svg"
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Macro",
  3842. height: math.unit(200, "feet"),
  3843. default: true
  3844. },
  3845. {
  3846. name: "Megamacro",
  3847. height: math.unit(100, "miles")
  3848. },
  3849. ]
  3850. )
  3851. )
  3852. characterMakers.push(() => makeCharacter(
  3853. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3854. {
  3855. front: {
  3856. height: math.unit(5 + 5 / 12, "feet"),
  3857. weight: math.unit(75, "kg"),
  3858. name: "Front",
  3859. image: {
  3860. source: "./media/characters/natasha/front.svg",
  3861. extra: 859 / 824,
  3862. bottom: 23 / 879.6
  3863. }
  3864. },
  3865. frontNsfw: {
  3866. height: math.unit(5 + 5 / 12, "feet"),
  3867. weight: math.unit(75, "kg"),
  3868. name: "Front (NSFW)",
  3869. image: {
  3870. source: "./media/characters/natasha/front-nsfw.svg",
  3871. extra: 859 / 824,
  3872. bottom: 23 / 879.6
  3873. }
  3874. },
  3875. frontErect: {
  3876. height: math.unit(5 + 5 / 12, "feet"),
  3877. weight: math.unit(75, "kg"),
  3878. name: "Front (Erect)",
  3879. image: {
  3880. source: "./media/characters/natasha/front-erect.svg",
  3881. extra: 859 / 824,
  3882. bottom: 23 / 879.6
  3883. }
  3884. },
  3885. back: {
  3886. height: math.unit(5 + 5 / 12, "feet"),
  3887. weight: math.unit(75, "kg"),
  3888. name: "Back",
  3889. image: {
  3890. source: "./media/characters/natasha/back.svg",
  3891. extra: 887.9 / 852.6,
  3892. bottom: 9.7 / 896.4
  3893. }
  3894. },
  3895. backAlt: {
  3896. height: math.unit(5 + 5 / 12, "feet"),
  3897. weight: math.unit(75, "kg"),
  3898. name: "Back (Alt)",
  3899. image: {
  3900. source: "./media/characters/natasha/back-alt.svg",
  3901. extra: 1236.7 / 1192,
  3902. bottom: 22.3 / 1258.2
  3903. }
  3904. },
  3905. dick: {
  3906. height: math.unit(1.772, "feet"),
  3907. name: "Dick",
  3908. image: {
  3909. source: "./media/characters/natasha/dick.svg"
  3910. }
  3911. },
  3912. paw: {
  3913. height: math.unit(0.250, "meters"),
  3914. name: "Paw",
  3915. image: {
  3916. source: "./media/characters/natasha/paw.svg"
  3917. },
  3918. extraAttributes: {
  3919. "toeSize": {
  3920. name: "Toe Size",
  3921. power: 2,
  3922. type: "area",
  3923. base: math.unit(0.0024, "m^2")
  3924. },
  3925. "padSize": {
  3926. name: "Pad Size",
  3927. power: 2,
  3928. type: "area",
  3929. base: math.unit(0.00889, "m^2")
  3930. },
  3931. "pawSize": {
  3932. name: "Paw Size",
  3933. power: 2,
  3934. type: "area",
  3935. base: math.unit(0.023667, "m^2")
  3936. },
  3937. }
  3938. },
  3939. },
  3940. [
  3941. {
  3942. name: "Shortstack",
  3943. height: math.unit(3, "feet"),
  3944. default: true
  3945. },
  3946. {
  3947. name: "Normal",
  3948. height: math.unit(5 + 5 / 12, "feet")
  3949. },
  3950. {
  3951. name: "Large",
  3952. height: math.unit(12, "feet")
  3953. },
  3954. {
  3955. name: "Macro",
  3956. height: math.unit(100, "feet")
  3957. },
  3958. {
  3959. name: "Macro+",
  3960. height: math.unit(260, "feet")
  3961. },
  3962. {
  3963. name: "Macro++",
  3964. height: math.unit(1, "mile")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3970. {
  3971. front: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(75, "kg"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/malik/front.svg",
  3977. extra: 1750/1561,
  3978. bottom: 80/1830
  3979. },
  3980. extraAttributes: {
  3981. "toeSize": {
  3982. name: "Toe Size",
  3983. power: 2,
  3984. type: "area",
  3985. base: math.unit(0.0159, "m^2")
  3986. },
  3987. "pawSize": {
  3988. name: "Paw Size",
  3989. power: 2,
  3990. type: "area",
  3991. base: math.unit(0.09834, "m^2")
  3992. },
  3993. }
  3994. },
  3995. side: {
  3996. height: math.unit(6, "feet"),
  3997. weight: math.unit(75, "kg"),
  3998. name: "Side",
  3999. image: {
  4000. source: "./media/characters/malik/side.svg",
  4001. extra: 1802/1685,
  4002. bottom: 42/1844
  4003. },
  4004. extraAttributes: {
  4005. "toeSize": {
  4006. name: "Toe Size",
  4007. power: 2,
  4008. type: "area",
  4009. base: math.unit(0.0159, "m^2")
  4010. },
  4011. "pawSize": {
  4012. name: "Paw Size",
  4013. power: 2,
  4014. type: "area",
  4015. base: math.unit(0.09834, "m^2")
  4016. },
  4017. }
  4018. },
  4019. back: {
  4020. height: math.unit(6, "feet"),
  4021. weight: math.unit(75, "kg"),
  4022. name: "Back",
  4023. image: {
  4024. source: "./media/characters/malik/back.svg",
  4025. extra: 1803/1607,
  4026. bottom: 33/1836
  4027. },
  4028. extraAttributes: {
  4029. "toeSize": {
  4030. name: "Toe Size",
  4031. power: 2,
  4032. type: "area",
  4033. base: math.unit(0.0159, "m^2")
  4034. },
  4035. "pawSize": {
  4036. name: "Paw Size",
  4037. power: 2,
  4038. type: "area",
  4039. base: math.unit(0.09834, "m^2")
  4040. },
  4041. }
  4042. },
  4043. },
  4044. [
  4045. {
  4046. name: "Macro",
  4047. height: math.unit(156, "feet"),
  4048. default: true
  4049. },
  4050. {
  4051. name: "Macro+",
  4052. height: math.unit(1188, "feet")
  4053. },
  4054. ]
  4055. ))
  4056. characterMakers.push(() => makeCharacter(
  4057. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4058. {
  4059. front: {
  4060. height: math.unit(6, "feet"),
  4061. weight: math.unit(75, "kg"),
  4062. name: "Front",
  4063. image: {
  4064. source: "./media/characters/sefer/front.svg",
  4065. extra: 848 / 659,
  4066. bottom: 28.3 / 876.442
  4067. }
  4068. },
  4069. back: {
  4070. height: math.unit(6, "feet"),
  4071. weight: math.unit(75, "kg"),
  4072. name: "Back",
  4073. image: {
  4074. source: "./media/characters/sefer/back.svg",
  4075. extra: 864 / 695,
  4076. bottom: 10 / 871
  4077. }
  4078. },
  4079. frontDressed: {
  4080. height: math.unit(6, "feet"),
  4081. weight: math.unit(75, "kg"),
  4082. name: "Dressed",
  4083. image: {
  4084. source: "./media/characters/sefer/dressed.svg",
  4085. extra: 839 / 653,
  4086. bottom: 37.6 / 878
  4087. }
  4088. },
  4089. },
  4090. [
  4091. {
  4092. name: "Normal",
  4093. height: math.unit(6, "feet"),
  4094. default: true
  4095. },
  4096. {
  4097. name: "Big",
  4098. height: math.unit(8, "meters")
  4099. },
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4104. {
  4105. body: {
  4106. height: math.unit(2.2428, "meter"),
  4107. weight: math.unit(124.738, "kg"),
  4108. name: "Body",
  4109. image: {
  4110. extra: 1225 / 1050,
  4111. source: "./media/characters/north/front.svg"
  4112. }
  4113. }
  4114. },
  4115. [
  4116. {
  4117. name: "Micro",
  4118. height: math.unit(4, "inches")
  4119. },
  4120. {
  4121. name: "Macro",
  4122. height: math.unit(63, "meters")
  4123. },
  4124. {
  4125. name: "Megamacro",
  4126. height: math.unit(101, "miles"),
  4127. default: true
  4128. }
  4129. ]
  4130. ))
  4131. characterMakers.push(() => makeCharacter(
  4132. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4133. {
  4134. angled: {
  4135. height: math.unit(4, "meter"),
  4136. weight: math.unit(150, "kg"),
  4137. name: "Angled",
  4138. image: {
  4139. source: "./media/characters/talan/angled-sfw.svg",
  4140. bottom: 29 / 3734
  4141. }
  4142. },
  4143. angledNsfw: {
  4144. height: math.unit(4, "meter"),
  4145. weight: math.unit(150, "kg"),
  4146. name: "Angled (NSFW)",
  4147. image: {
  4148. source: "./media/characters/talan/angled-nsfw.svg",
  4149. bottom: 29 / 3734
  4150. }
  4151. },
  4152. frontNsfw: {
  4153. height: math.unit(4, "meter"),
  4154. weight: math.unit(150, "kg"),
  4155. name: "Front (NSFW)",
  4156. image: {
  4157. source: "./media/characters/talan/front-nsfw.svg",
  4158. bottom: 29 / 3734
  4159. }
  4160. },
  4161. sideNsfw: {
  4162. height: math.unit(4, "meter"),
  4163. weight: math.unit(150, "kg"),
  4164. name: "Side (NSFW)",
  4165. image: {
  4166. source: "./media/characters/talan/side-nsfw.svg",
  4167. bottom: 29 / 3734
  4168. }
  4169. },
  4170. back: {
  4171. height: math.unit(4, "meter"),
  4172. weight: math.unit(150, "kg"),
  4173. name: "Back",
  4174. image: {
  4175. source: "./media/characters/talan/back.svg"
  4176. }
  4177. },
  4178. dickBottom: {
  4179. height: math.unit(0.621, "meter"),
  4180. name: "Dick (Bottom)",
  4181. image: {
  4182. source: "./media/characters/talan/dick-bottom.svg"
  4183. }
  4184. },
  4185. dickTop: {
  4186. height: math.unit(0.621, "meter"),
  4187. name: "Dick (Top)",
  4188. image: {
  4189. source: "./media/characters/talan/dick-top.svg"
  4190. }
  4191. },
  4192. dickSide: {
  4193. height: math.unit(0.305, "meter"),
  4194. name: "Dick (Side)",
  4195. image: {
  4196. source: "./media/characters/talan/dick-side.svg"
  4197. }
  4198. },
  4199. dickFront: {
  4200. height: math.unit(0.305, "meter"),
  4201. name: "Dick (Front)",
  4202. image: {
  4203. source: "./media/characters/talan/dick-front.svg"
  4204. }
  4205. },
  4206. },
  4207. [
  4208. {
  4209. name: "Normal",
  4210. height: math.unit(4, "meters")
  4211. },
  4212. {
  4213. name: "Macro",
  4214. height: math.unit(100, "meters")
  4215. },
  4216. {
  4217. name: "Megamacro",
  4218. height: math.unit(2, "miles"),
  4219. default: true
  4220. },
  4221. {
  4222. name: "Gigamacro",
  4223. height: math.unit(5000, "miles")
  4224. },
  4225. {
  4226. name: "Teramacro",
  4227. height: math.unit(100, "parsecs")
  4228. }
  4229. ]
  4230. ))
  4231. characterMakers.push(() => makeCharacter(
  4232. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4233. {
  4234. front: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(90, "kg"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/gael'rathus/front.svg"
  4240. }
  4241. },
  4242. frontAlt: {
  4243. height: math.unit(2, "meter"),
  4244. weight: math.unit(90, "kg"),
  4245. name: "Front (alt)",
  4246. image: {
  4247. source: "./media/characters/gael'rathus/front-alt.svg"
  4248. }
  4249. },
  4250. frontAlt2: {
  4251. height: math.unit(2, "meter"),
  4252. weight: math.unit(90, "kg"),
  4253. name: "Front (alt 2)",
  4254. image: {
  4255. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4256. }
  4257. }
  4258. },
  4259. [
  4260. {
  4261. name: "Normal",
  4262. height: math.unit(9, "feet"),
  4263. default: true
  4264. },
  4265. {
  4266. name: "Large",
  4267. height: math.unit(25, "feet")
  4268. },
  4269. {
  4270. name: "Macro",
  4271. height: math.unit(0.25, "miles")
  4272. },
  4273. {
  4274. name: "Megamacro",
  4275. height: math.unit(10, "miles")
  4276. }
  4277. ]
  4278. ))
  4279. characterMakers.push(() => makeCharacter(
  4280. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4281. {
  4282. side: {
  4283. height: math.unit(2, "meter"),
  4284. weight: math.unit(140, "kg"),
  4285. name: "Side",
  4286. image: {
  4287. source: "./media/characters/sosha/side.svg",
  4288. extra: 1170/1006,
  4289. bottom: 94/1264
  4290. }
  4291. },
  4292. maw: {
  4293. height: math.unit(2.87, "feet"),
  4294. name: "Maw",
  4295. image: {
  4296. source: "./media/characters/sosha/maw.svg",
  4297. extra: 966/865,
  4298. bottom: 0/966
  4299. }
  4300. },
  4301. cooch: {
  4302. height: math.unit(5.6, "feet"),
  4303. name: "Cooch",
  4304. image: {
  4305. source: "./media/characters/sosha/cooch.svg"
  4306. }
  4307. },
  4308. },
  4309. [
  4310. {
  4311. name: "Normal",
  4312. height: math.unit(12, "feet"),
  4313. default: true
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4319. {
  4320. side: {
  4321. height: math.unit(5 + 5 / 12, "feet"),
  4322. weight: math.unit(170, "kg"),
  4323. name: "Side",
  4324. image: {
  4325. source: "./media/characters/runnola/side.svg",
  4326. extra: 741 / 448,
  4327. bottom: 0.05
  4328. }
  4329. },
  4330. },
  4331. [
  4332. {
  4333. name: "Small",
  4334. height: math.unit(3, "feet")
  4335. },
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(5 + 5 / 12, "feet"),
  4339. default: true
  4340. },
  4341. {
  4342. name: "Big",
  4343. height: math.unit(10, "feet")
  4344. },
  4345. ]
  4346. ))
  4347. characterMakers.push(() => makeCharacter(
  4348. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4349. {
  4350. front: {
  4351. height: math.unit(2, "meter"),
  4352. weight: math.unit(50, "kg"),
  4353. name: "Front",
  4354. image: {
  4355. source: "./media/characters/kurribird/front.svg",
  4356. bottom: 0.015
  4357. }
  4358. },
  4359. frontAlt: {
  4360. height: math.unit(1.5, "meter"),
  4361. weight: math.unit(50, "kg"),
  4362. name: "Front (Alt)",
  4363. image: {
  4364. source: "./media/characters/kurribird/front-alt.svg",
  4365. extra: 1.45
  4366. }
  4367. },
  4368. },
  4369. [
  4370. {
  4371. name: "Normal",
  4372. height: math.unit(7, "feet")
  4373. },
  4374. {
  4375. name: "Big",
  4376. height: math.unit(12, "feet"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Macro",
  4381. height: math.unit(1500, "feet")
  4382. },
  4383. {
  4384. name: "Megamacro",
  4385. height: math.unit(2, "miles")
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4391. {
  4392. front: {
  4393. height: math.unit(2, "meter"),
  4394. weight: math.unit(80, "kg"),
  4395. name: "Front",
  4396. image: {
  4397. source: "./media/characters/elbial/front.svg",
  4398. extra: 1643 / 1556,
  4399. bottom: 60.2 / 1696
  4400. }
  4401. },
  4402. side: {
  4403. height: math.unit(2, "meter"),
  4404. weight: math.unit(80, "kg"),
  4405. name: "Side",
  4406. image: {
  4407. source: "./media/characters/elbial/side.svg",
  4408. extra: 1601/1528,
  4409. bottom: 97/1698
  4410. }
  4411. },
  4412. back: {
  4413. height: math.unit(2, "meter"),
  4414. weight: math.unit(80, "kg"),
  4415. name: "Back",
  4416. image: {
  4417. source: "./media/characters/elbial/back.svg",
  4418. extra: 1653/1569,
  4419. bottom: 20/1673
  4420. }
  4421. },
  4422. frontDressed: {
  4423. height: math.unit(2, "meter"),
  4424. weight: math.unit(80, "kg"),
  4425. name: "Front (Dressed)",
  4426. image: {
  4427. source: "./media/characters/elbial/front-dressed.svg",
  4428. extra: 1638/1569,
  4429. bottom: 70/1708
  4430. }
  4431. },
  4432. genitals: {
  4433. height: math.unit(2 / 3.367, "meter"),
  4434. name: "Genitals",
  4435. image: {
  4436. source: "./media/characters/elbial/genitals.svg"
  4437. }
  4438. },
  4439. },
  4440. [
  4441. {
  4442. name: "Large",
  4443. height: math.unit(100, "feet")
  4444. },
  4445. {
  4446. name: "Macro",
  4447. height: math.unit(500, "feet"),
  4448. default: true
  4449. },
  4450. {
  4451. name: "Megamacro",
  4452. height: math.unit(10, "miles")
  4453. },
  4454. {
  4455. name: "Gigamacro",
  4456. height: math.unit(25000, "miles")
  4457. },
  4458. {
  4459. name: "Full-Size",
  4460. height: math.unit(8000000, "gigaparsecs")
  4461. }
  4462. ]
  4463. ))
  4464. characterMakers.push(() => makeCharacter(
  4465. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4466. {
  4467. front: {
  4468. height: math.unit(2, "meter"),
  4469. weight: math.unit(60, "kg"),
  4470. name: "Front",
  4471. image: {
  4472. source: "./media/characters/noah/front.svg",
  4473. extra: 1383/1313,
  4474. bottom: 104/1487
  4475. }
  4476. },
  4477. hand: {
  4478. height: math.unit(0.6, "feet"),
  4479. name: "Hand",
  4480. image: {
  4481. source: "./media/characters/noah/hand.svg"
  4482. }
  4483. },
  4484. talons: {
  4485. height: math.unit(1.385, "feet"),
  4486. name: "Talons",
  4487. image: {
  4488. source: "./media/characters/noah/talons.svg"
  4489. }
  4490. },
  4491. beak: {
  4492. height: math.unit(0.43, "feet"),
  4493. name: "Beak",
  4494. image: {
  4495. source: "./media/characters/noah/beak.svg"
  4496. }
  4497. },
  4498. collar: {
  4499. height: math.unit(0.88, "feet"),
  4500. name: "Collar",
  4501. image: {
  4502. source: "./media/characters/noah/collar.svg"
  4503. }
  4504. },
  4505. eyeNarrow: {
  4506. height: math.unit(0.18, "feet"),
  4507. name: "Eye (Narrow)",
  4508. image: {
  4509. source: "./media/characters/noah/eye-narrow.svg"
  4510. }
  4511. },
  4512. eyeNormal: {
  4513. height: math.unit(0.18, "feet"),
  4514. name: "Eye (Normal)",
  4515. image: {
  4516. source: "./media/characters/noah/eye-normal.svg"
  4517. }
  4518. },
  4519. eyeWide: {
  4520. height: math.unit(0.18, "feet"),
  4521. name: "Eye (Wide)",
  4522. image: {
  4523. source: "./media/characters/noah/eye-wide.svg"
  4524. }
  4525. },
  4526. ear: {
  4527. height: math.unit(0.64, "feet"),
  4528. name: "Ear",
  4529. image: {
  4530. source: "./media/characters/noah/ear.svg"
  4531. }
  4532. },
  4533. },
  4534. [
  4535. {
  4536. name: "Large",
  4537. height: math.unit(50, "feet")
  4538. },
  4539. {
  4540. name: "Macro",
  4541. height: math.unit(750, "feet"),
  4542. default: true
  4543. },
  4544. {
  4545. name: "Megamacro",
  4546. height: math.unit(50, "miles")
  4547. },
  4548. {
  4549. name: "Gigamacro",
  4550. height: math.unit(100000, "miles")
  4551. },
  4552. {
  4553. name: "Full-Size",
  4554. height: math.unit(3000000000, "miles")
  4555. }
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4560. {
  4561. front: {
  4562. height: math.unit(2, "meter"),
  4563. weight: math.unit(80, "kg"),
  4564. name: "Front",
  4565. image: {
  4566. source: "./media/characters/natalya/front.svg"
  4567. }
  4568. },
  4569. back: {
  4570. height: math.unit(2, "meter"),
  4571. weight: math.unit(80, "kg"),
  4572. name: "Back",
  4573. image: {
  4574. source: "./media/characters/natalya/back.svg"
  4575. }
  4576. }
  4577. },
  4578. [
  4579. {
  4580. name: "Normal",
  4581. height: math.unit(150, "feet"),
  4582. default: true
  4583. },
  4584. {
  4585. name: "Megamacro",
  4586. height: math.unit(5, "miles")
  4587. },
  4588. {
  4589. name: "Full-Size",
  4590. height: math.unit(600, "kiloparsecs")
  4591. }
  4592. ]
  4593. ))
  4594. characterMakers.push(() => makeCharacter(
  4595. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4596. {
  4597. front: {
  4598. height: math.unit(2, "meter"),
  4599. weight: math.unit(50, "kg"),
  4600. name: "Front",
  4601. image: {
  4602. source: "./media/characters/erestrebah/front.svg",
  4603. extra: 1262/1162,
  4604. bottom: 96/1358
  4605. }
  4606. },
  4607. back: {
  4608. height: math.unit(2, "meter"),
  4609. weight: math.unit(50, "kg"),
  4610. name: "Back",
  4611. image: {
  4612. source: "./media/characters/erestrebah/back.svg",
  4613. extra: 1257/1139,
  4614. bottom: 13/1270
  4615. }
  4616. },
  4617. wing: {
  4618. height: math.unit(2, "meter"),
  4619. weight: math.unit(50, "kg"),
  4620. name: "Wing",
  4621. image: {
  4622. source: "./media/characters/erestrebah/wing.svg",
  4623. extra: 1262/1162,
  4624. bottom: 96/1358
  4625. }
  4626. },
  4627. mouth: {
  4628. height: math.unit(0.39, "feet"),
  4629. name: "Mouth",
  4630. image: {
  4631. source: "./media/characters/erestrebah/mouth.svg"
  4632. }
  4633. }
  4634. },
  4635. [
  4636. {
  4637. name: "Normal",
  4638. height: math.unit(10, "feet")
  4639. },
  4640. {
  4641. name: "Large",
  4642. height: math.unit(50, "feet"),
  4643. default: true
  4644. },
  4645. {
  4646. name: "Macro",
  4647. height: math.unit(300, "feet")
  4648. },
  4649. {
  4650. name: "Macro+",
  4651. height: math.unit(750, "feet")
  4652. },
  4653. {
  4654. name: "Megamacro",
  4655. height: math.unit(3, "miles")
  4656. }
  4657. ]
  4658. ))
  4659. characterMakers.push(() => makeCharacter(
  4660. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4661. {
  4662. front: {
  4663. height: math.unit(2, "meter"),
  4664. weight: math.unit(80, "kg"),
  4665. name: "Front",
  4666. image: {
  4667. source: "./media/characters/jennifer/front.svg",
  4668. bottom: 0.11,
  4669. extra: 1.16
  4670. }
  4671. },
  4672. frontAlt: {
  4673. height: math.unit(2, "meter"),
  4674. weight: math.unit(80, "kg"),
  4675. name: "Front (Alt)",
  4676. image: {
  4677. source: "./media/characters/jennifer/front-alt.svg"
  4678. }
  4679. }
  4680. },
  4681. [
  4682. {
  4683. name: "Canon Height",
  4684. height: math.unit(120, "feet"),
  4685. default: true
  4686. },
  4687. {
  4688. name: "Macro+",
  4689. height: math.unit(300, "feet")
  4690. },
  4691. {
  4692. name: "Megamacro",
  4693. height: math.unit(20000, "feet")
  4694. }
  4695. ]
  4696. ))
  4697. characterMakers.push(() => makeCharacter(
  4698. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4699. {
  4700. front: {
  4701. height: math.unit(2, "meter"),
  4702. weight: math.unit(50, "kg"),
  4703. name: "Front",
  4704. image: {
  4705. source: "./media/characters/kalista/front.svg",
  4706. extra: 1314/1145,
  4707. bottom: 101/1415
  4708. }
  4709. },
  4710. back: {
  4711. height: math.unit(2, "meter"),
  4712. weight: math.unit(50, "kg"),
  4713. name: "Back",
  4714. image: {
  4715. source: "./media/characters/kalista/back.svg",
  4716. extra: 1366 / 1156,
  4717. bottom: 33.9 / 1362.78
  4718. }
  4719. }
  4720. },
  4721. [
  4722. {
  4723. name: "Uncomfortably Small",
  4724. height: math.unit(10, "feet")
  4725. },
  4726. {
  4727. name: "Small",
  4728. height: math.unit(30, "feet")
  4729. },
  4730. {
  4731. name: "Macro",
  4732. height: math.unit(100, "feet"),
  4733. default: true
  4734. },
  4735. {
  4736. name: "Macro+",
  4737. height: math.unit(2000, "feet")
  4738. },
  4739. {
  4740. name: "True Form",
  4741. height: math.unit(8924, "miles")
  4742. }
  4743. ]
  4744. ))
  4745. characterMakers.push(() => makeCharacter(
  4746. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4747. {
  4748. front: {
  4749. height: math.unit(2, "meter"),
  4750. weight: math.unit(120, "kg"),
  4751. name: "Front",
  4752. image: {
  4753. source: "./media/characters/ggv/front.svg"
  4754. }
  4755. },
  4756. side: {
  4757. height: math.unit(2, "meter"),
  4758. weight: math.unit(120, "kg"),
  4759. name: "Side",
  4760. image: {
  4761. source: "./media/characters/ggv/side.svg"
  4762. }
  4763. }
  4764. },
  4765. [
  4766. {
  4767. name: "Extremely Puny",
  4768. height: math.unit(9 + 5 / 12, "feet")
  4769. },
  4770. {
  4771. name: "Horribly Small",
  4772. height: math.unit(47.7, "miles"),
  4773. default: true
  4774. },
  4775. {
  4776. name: "Reasonably Sized",
  4777. height: math.unit(25000, "parsecs")
  4778. },
  4779. {
  4780. name: "Slightly Uncompressed",
  4781. height: math.unit(7.77e31, "parsecs")
  4782. },
  4783. {
  4784. name: "Omniversal",
  4785. height: math.unit(1e300, "meters")
  4786. },
  4787. ]
  4788. ))
  4789. characterMakers.push(() => makeCharacter(
  4790. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4791. {
  4792. front: {
  4793. height: math.unit(2, "meter"),
  4794. weight: math.unit(75, "lb"),
  4795. name: "Front",
  4796. image: {
  4797. source: "./media/characters/napalm/front.svg"
  4798. }
  4799. },
  4800. back: {
  4801. height: math.unit(2, "meter"),
  4802. weight: math.unit(75, "lb"),
  4803. name: "Back",
  4804. image: {
  4805. source: "./media/characters/napalm/back.svg"
  4806. }
  4807. }
  4808. },
  4809. [
  4810. {
  4811. name: "Standard",
  4812. height: math.unit(55, "feet"),
  4813. default: true
  4814. }
  4815. ]
  4816. ))
  4817. characterMakers.push(() => makeCharacter(
  4818. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4819. {
  4820. front: {
  4821. height: math.unit(7 + 5 / 6, "feet"),
  4822. weight: math.unit(325, "lb"),
  4823. name: "Front",
  4824. image: {
  4825. source: "./media/characters/asana/front.svg",
  4826. extra: 1133 / 1060,
  4827. bottom: 15.2 / 1148.6
  4828. }
  4829. },
  4830. back: {
  4831. height: math.unit(7 + 5 / 6, "feet"),
  4832. weight: math.unit(325, "lb"),
  4833. name: "Back",
  4834. image: {
  4835. source: "./media/characters/asana/back.svg",
  4836. extra: 1114 / 1043,
  4837. bottom: 5 / 1120
  4838. }
  4839. },
  4840. dressedDark: {
  4841. height: math.unit(7 + 5 / 6, "feet"),
  4842. weight: math.unit(325, "lb"),
  4843. name: "Dressed (Dark)",
  4844. image: {
  4845. source: "./media/characters/asana/dressed-dark.svg",
  4846. extra: 1133 / 1060,
  4847. bottom: 15.2 / 1148.6
  4848. }
  4849. },
  4850. dressedLight: {
  4851. height: math.unit(7 + 5 / 6, "feet"),
  4852. weight: math.unit(325, "lb"),
  4853. name: "Dressed (Light)",
  4854. image: {
  4855. source: "./media/characters/asana/dressed-light.svg",
  4856. extra: 1133 / 1060,
  4857. bottom: 15.2 / 1148.6
  4858. }
  4859. },
  4860. },
  4861. [
  4862. {
  4863. name: "Standard",
  4864. height: math.unit(7 + 5 / 6, "feet"),
  4865. default: true
  4866. },
  4867. {
  4868. name: "Large",
  4869. height: math.unit(10, "meters")
  4870. },
  4871. {
  4872. name: "Macro",
  4873. height: math.unit(2500, "meters")
  4874. },
  4875. {
  4876. name: "Megamacro",
  4877. height: math.unit(5e6, "meters")
  4878. },
  4879. {
  4880. name: "Examacro",
  4881. height: math.unit(5e12, "lightyears")
  4882. },
  4883. {
  4884. name: "Max Size",
  4885. height: math.unit(1e31, "lightyears")
  4886. }
  4887. ]
  4888. ))
  4889. characterMakers.push(() => makeCharacter(
  4890. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4891. {
  4892. front: {
  4893. height: math.unit(2, "meter"),
  4894. weight: math.unit(60, "kg"),
  4895. name: "Front",
  4896. image: {
  4897. source: "./media/characters/ebony/front.svg",
  4898. bottom: 0.03,
  4899. extra: 1045 / 810 + 0.03
  4900. }
  4901. },
  4902. side: {
  4903. height: math.unit(2, "meter"),
  4904. weight: math.unit(60, "kg"),
  4905. name: "Side",
  4906. image: {
  4907. source: "./media/characters/ebony/side.svg",
  4908. bottom: 0.03,
  4909. extra: 1045 / 810 + 0.03
  4910. }
  4911. },
  4912. back: {
  4913. height: math.unit(2, "meter"),
  4914. weight: math.unit(60, "kg"),
  4915. name: "Back",
  4916. image: {
  4917. source: "./media/characters/ebony/back.svg",
  4918. bottom: 0.01,
  4919. extra: 1045 / 810 + 0.01
  4920. }
  4921. },
  4922. },
  4923. [
  4924. // TODO check why I did this lol
  4925. {
  4926. name: "Standard",
  4927. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4928. default: true
  4929. },
  4930. {
  4931. name: "Macro",
  4932. height: math.unit(200, "feet")
  4933. },
  4934. {
  4935. name: "Gigamacro",
  4936. height: math.unit(13000, "km")
  4937. }
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4942. {
  4943. front: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(175, "lb"),
  4946. name: "Front",
  4947. image: {
  4948. source: "./media/characters/mountain/front.svg",
  4949. extra: 972 / 955,
  4950. bottom: 64 / 1036.6
  4951. }
  4952. },
  4953. back: {
  4954. height: math.unit(6, "feet"),
  4955. weight: math.unit(175, "lb"),
  4956. name: "Back",
  4957. image: {
  4958. source: "./media/characters/mountain/back.svg",
  4959. extra: 970 / 950,
  4960. bottom: 28.25 / 999
  4961. }
  4962. },
  4963. },
  4964. [
  4965. {
  4966. name: "Large",
  4967. height: math.unit(20, "meters")
  4968. },
  4969. {
  4970. name: "Macro",
  4971. height: math.unit(300, "meters")
  4972. },
  4973. {
  4974. name: "Gigamacro",
  4975. height: math.unit(10000, "km"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Examacro",
  4980. height: math.unit(10e9, "lightyears")
  4981. }
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4986. {
  4987. front: {
  4988. height: math.unit(8, "feet"),
  4989. weight: math.unit(500, "lb"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/rick/front.svg"
  4993. }
  4994. }
  4995. },
  4996. [
  4997. {
  4998. name: "Normal",
  4999. height: math.unit(8, "feet"),
  5000. default: true
  5001. },
  5002. {
  5003. name: "Macro",
  5004. height: math.unit(5, "km")
  5005. }
  5006. ]
  5007. ))
  5008. characterMakers.push(() => makeCharacter(
  5009. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5010. {
  5011. front: {
  5012. height: math.unit(8, "feet"),
  5013. weight: math.unit(120, "lb"),
  5014. name: "Front",
  5015. image: {
  5016. source: "./media/characters/ona/front.svg"
  5017. }
  5018. },
  5019. frontAlt: {
  5020. height: math.unit(8, "feet"),
  5021. weight: math.unit(120, "lb"),
  5022. name: "Front (Alt)",
  5023. image: {
  5024. source: "./media/characters/ona/front-alt.svg"
  5025. }
  5026. },
  5027. back: {
  5028. height: math.unit(8, "feet"),
  5029. weight: math.unit(120, "lb"),
  5030. name: "Back",
  5031. image: {
  5032. source: "./media/characters/ona/back.svg"
  5033. }
  5034. },
  5035. foot: {
  5036. height: math.unit(1.1, "feet"),
  5037. name: "Foot",
  5038. image: {
  5039. source: "./media/characters/ona/foot.svg"
  5040. }
  5041. }
  5042. },
  5043. [
  5044. {
  5045. name: "Megamacro",
  5046. height: math.unit(70, "km"),
  5047. default: true
  5048. },
  5049. {
  5050. name: "Gigamacro",
  5051. height: math.unit(681818, "miles")
  5052. },
  5053. {
  5054. name: "Examacro",
  5055. height: math.unit(3800000, "lightyears")
  5056. },
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5061. {
  5062. front: {
  5063. height: math.unit(12, "feet"),
  5064. weight: math.unit(3000, "lb"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/mech/front.svg",
  5068. extra: 2900 / 2770,
  5069. bottom: 110 / 3010
  5070. }
  5071. },
  5072. back: {
  5073. height: math.unit(12, "feet"),
  5074. weight: math.unit(3000, "lb"),
  5075. name: "Back",
  5076. image: {
  5077. source: "./media/characters/mech/back.svg",
  5078. extra: 3011 / 2890,
  5079. bottom: 94 / 3105
  5080. }
  5081. },
  5082. maw: {
  5083. height: math.unit(3.07, "feet"),
  5084. name: "Maw",
  5085. image: {
  5086. source: "./media/characters/mech/maw.svg"
  5087. }
  5088. },
  5089. head: {
  5090. height: math.unit(3.07, "feet"),
  5091. name: "Head",
  5092. image: {
  5093. source: "./media/characters/mech/head.svg"
  5094. }
  5095. },
  5096. dick: {
  5097. height: math.unit(1.43, "feet"),
  5098. name: "Dick",
  5099. image: {
  5100. source: "./media/characters/mech/dick.svg"
  5101. }
  5102. },
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(12, "feet")
  5108. },
  5109. {
  5110. name: "Macro",
  5111. height: math.unit(300, "feet"),
  5112. default: true
  5113. },
  5114. {
  5115. name: "Macro+",
  5116. height: math.unit(1500, "feet")
  5117. },
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5122. {
  5123. front: {
  5124. height: math.unit(1.3, "meter"),
  5125. weight: math.unit(30, "kg"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/gregory/front.svg",
  5129. }
  5130. }
  5131. },
  5132. [
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(1.3, "meter"),
  5136. default: true
  5137. },
  5138. {
  5139. name: "Macro",
  5140. height: math.unit(20, "meter")
  5141. }
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5146. {
  5147. front: {
  5148. height: math.unit(2.8, "meter"),
  5149. weight: math.unit(200, "kg"),
  5150. name: "Front",
  5151. image: {
  5152. source: "./media/characters/elory/front.svg",
  5153. }
  5154. }
  5155. },
  5156. [
  5157. {
  5158. name: "Normal",
  5159. height: math.unit(2.8, "meter"),
  5160. default: true
  5161. },
  5162. {
  5163. name: "Macro",
  5164. height: math.unit(38, "meter")
  5165. }
  5166. ]
  5167. ))
  5168. characterMakers.push(() => makeCharacter(
  5169. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5170. {
  5171. front: {
  5172. height: math.unit(470, "feet"),
  5173. weight: math.unit(924, "tons"),
  5174. name: "Front",
  5175. image: {
  5176. source: "./media/characters/angelpatamon/front.svg",
  5177. }
  5178. }
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(470, "feet"),
  5184. default: true
  5185. },
  5186. {
  5187. name: "Deity Size I",
  5188. height: math.unit(28651.2, "km")
  5189. },
  5190. {
  5191. name: "Deity Size II",
  5192. height: math.unit(171907.2, "km")
  5193. }
  5194. ]
  5195. ))
  5196. characterMakers.push(() => makeCharacter(
  5197. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5198. {
  5199. side: {
  5200. height: math.unit(7.2, "meter"),
  5201. weight: math.unit(8.2, "tons"),
  5202. name: "Side",
  5203. image: {
  5204. source: "./media/characters/cryae/side.svg",
  5205. extra: 3500 / 1500
  5206. }
  5207. }
  5208. },
  5209. [
  5210. {
  5211. name: "Normal",
  5212. height: math.unit(7.2, "meter"),
  5213. default: true
  5214. }
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5219. {
  5220. front: {
  5221. height: math.unit(6, "feet"),
  5222. weight: math.unit(175, "lb"),
  5223. name: "Front",
  5224. image: {
  5225. source: "./media/characters/xera/front.svg",
  5226. extra: 2377 / 1972,
  5227. bottom: 75.5 / 2452
  5228. }
  5229. },
  5230. side: {
  5231. height: math.unit(6, "feet"),
  5232. weight: math.unit(175, "lb"),
  5233. name: "Side",
  5234. image: {
  5235. source: "./media/characters/xera/side.svg",
  5236. extra: 2345 / 2019,
  5237. bottom: 39.7 / 2384
  5238. }
  5239. },
  5240. back: {
  5241. height: math.unit(6, "feet"),
  5242. weight: math.unit(175, "lb"),
  5243. name: "Back",
  5244. image: {
  5245. source: "./media/characters/xera/back.svg",
  5246. extra: 2095 / 1984,
  5247. bottom: 67 / 2166
  5248. }
  5249. },
  5250. },
  5251. [
  5252. {
  5253. name: "Small",
  5254. height: math.unit(10, "feet")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(500, "meters"),
  5259. default: true
  5260. },
  5261. {
  5262. name: "Macro+",
  5263. height: math.unit(10, "km")
  5264. },
  5265. {
  5266. name: "Gigamacro",
  5267. height: math.unit(25000, "km")
  5268. },
  5269. {
  5270. name: "Teramacro",
  5271. height: math.unit(3e6, "km")
  5272. }
  5273. ]
  5274. ))
  5275. characterMakers.push(() => makeCharacter(
  5276. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5277. {
  5278. front: {
  5279. height: math.unit(6, "feet"),
  5280. weight: math.unit(175, "lb"),
  5281. name: "Front",
  5282. image: {
  5283. source: "./media/characters/nebula/front.svg",
  5284. extra: 2566 / 2362,
  5285. bottom: 81 / 2644
  5286. }
  5287. }
  5288. },
  5289. [
  5290. {
  5291. name: "Small",
  5292. height: math.unit(4.5, "meters")
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(1500, "meters"),
  5297. default: true
  5298. },
  5299. {
  5300. name: "Megamacro",
  5301. height: math.unit(150, "km")
  5302. },
  5303. {
  5304. name: "Gigamacro",
  5305. height: math.unit(27000, "km")
  5306. }
  5307. ]
  5308. ))
  5309. characterMakers.push(() => makeCharacter(
  5310. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5311. {
  5312. front: {
  5313. height: math.unit(6, "feet"),
  5314. weight: math.unit(225, "lb"),
  5315. name: "Front",
  5316. image: {
  5317. source: "./media/characters/abysgar/front.svg",
  5318. extra: 1739/1614,
  5319. bottom: 71/1810
  5320. }
  5321. },
  5322. frontNsfw: {
  5323. height: math.unit(6, "feet"),
  5324. weight: math.unit(225, "lb"),
  5325. name: "Front (NSFW)",
  5326. image: {
  5327. source: "./media/characters/abysgar/front-nsfw.svg",
  5328. extra: 1739/1614,
  5329. bottom: 71/1810
  5330. }
  5331. },
  5332. back: {
  5333. height: math.unit(4.6, "feet"),
  5334. weight: math.unit(225, "lb"),
  5335. name: "Back",
  5336. image: {
  5337. source: "./media/characters/abysgar/back.svg",
  5338. extra: 1384/1327,
  5339. bottom: 0/1384
  5340. }
  5341. },
  5342. head: {
  5343. height: math.unit(1.25, "feet"),
  5344. name: "Head",
  5345. image: {
  5346. source: "./media/characters/abysgar/head.svg",
  5347. extra: 669/569,
  5348. bottom: 0/669
  5349. }
  5350. },
  5351. },
  5352. [
  5353. {
  5354. name: "Small",
  5355. height: math.unit(4.5, "meters")
  5356. },
  5357. {
  5358. name: "Macro",
  5359. height: math.unit(1250, "meters"),
  5360. default: true
  5361. },
  5362. {
  5363. name: "Megamacro",
  5364. height: math.unit(125, "km")
  5365. },
  5366. {
  5367. name: "Gigamacro",
  5368. height: math.unit(26000, "km")
  5369. }
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5374. {
  5375. front: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(180, "lb"),
  5378. name: "Front",
  5379. image: {
  5380. source: "./media/characters/yakuz/front.svg"
  5381. }
  5382. }
  5383. },
  5384. [
  5385. {
  5386. name: "Small",
  5387. height: math.unit(5, "meters")
  5388. },
  5389. {
  5390. name: "Macro",
  5391. height: math.unit(1500, "meters"),
  5392. default: true
  5393. },
  5394. {
  5395. name: "Megamacro",
  5396. height: math.unit(200, "km")
  5397. },
  5398. {
  5399. name: "Gigamacro",
  5400. height: math.unit(100000, "km")
  5401. }
  5402. ]
  5403. ))
  5404. characterMakers.push(() => makeCharacter(
  5405. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5406. {
  5407. front: {
  5408. height: math.unit(6, "feet"),
  5409. weight: math.unit(175, "lb"),
  5410. name: "Front",
  5411. image: {
  5412. source: "./media/characters/mirova/front.svg",
  5413. extra: 3334 / 3071,
  5414. bottom: 42 / 3375.6
  5415. }
  5416. }
  5417. },
  5418. [
  5419. {
  5420. name: "Small",
  5421. height: math.unit(5, "meters")
  5422. },
  5423. {
  5424. name: "Macro",
  5425. height: math.unit(900, "meters"),
  5426. default: true
  5427. },
  5428. {
  5429. name: "Megamacro",
  5430. height: math.unit(135, "km")
  5431. },
  5432. {
  5433. name: "Gigamacro",
  5434. height: math.unit(20000, "km")
  5435. }
  5436. ]
  5437. ))
  5438. characterMakers.push(() => makeCharacter(
  5439. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5440. {
  5441. side: {
  5442. height: math.unit(28.35, "feet"),
  5443. weight: math.unit(99.75, "tons"),
  5444. name: "Side",
  5445. image: {
  5446. source: "./media/characters/asana-mech/side.svg",
  5447. extra: 923 / 699,
  5448. bottom: 50 / 975
  5449. }
  5450. },
  5451. chaingun: {
  5452. height: math.unit(7, "feet"),
  5453. weight: math.unit(2400, "lb"),
  5454. name: "Chaingun",
  5455. image: {
  5456. source: "./media/characters/asana-mech/chaingun.svg"
  5457. }
  5458. },
  5459. laser: {
  5460. height: math.unit(7.12, "feet"),
  5461. weight: math.unit(2000, "lb"),
  5462. name: "Laser",
  5463. image: {
  5464. source: "./media/characters/asana-mech/laser.svg"
  5465. }
  5466. },
  5467. },
  5468. [
  5469. {
  5470. name: "Normal",
  5471. height: math.unit(28.35, "feet"),
  5472. default: true
  5473. },
  5474. {
  5475. name: "Macro",
  5476. height: math.unit(2500, "feet")
  5477. },
  5478. {
  5479. name: "Megamacro",
  5480. height: math.unit(25, "miles")
  5481. },
  5482. {
  5483. name: "Examacro",
  5484. height: math.unit(6e8, "lightyears")
  5485. },
  5486. ]
  5487. ))
  5488. characterMakers.push(() => makeCharacter(
  5489. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5490. {
  5491. front: {
  5492. height: math.unit(5, "meters"),
  5493. weight: math.unit(1000, "kg"),
  5494. name: "Front",
  5495. image: {
  5496. source: "./media/characters/asche/front.svg",
  5497. extra: 1258 / 1190,
  5498. bottom: 47 / 1305
  5499. }
  5500. },
  5501. frontUnderwear: {
  5502. height: math.unit(5, "meters"),
  5503. weight: math.unit(1000, "kg"),
  5504. name: "Front (Underwear)",
  5505. image: {
  5506. source: "./media/characters/asche/front-underwear.svg",
  5507. extra: 1258 / 1190,
  5508. bottom: 47 / 1305
  5509. }
  5510. },
  5511. frontDressed: {
  5512. height: math.unit(5, "meters"),
  5513. weight: math.unit(1000, "kg"),
  5514. name: "Front (Dressed)",
  5515. image: {
  5516. source: "./media/characters/asche/front-dressed.svg",
  5517. extra: 1258 / 1190,
  5518. bottom: 47 / 1305
  5519. }
  5520. },
  5521. frontArmor: {
  5522. height: math.unit(5, "meters"),
  5523. weight: math.unit(1000, "kg"),
  5524. name: "Front (Armored)",
  5525. image: {
  5526. source: "./media/characters/asche/front-armored.svg",
  5527. extra: 1374 / 1308,
  5528. bottom: 23 / 1397
  5529. }
  5530. },
  5531. mp724: {
  5532. height: math.unit(0.96, "meters"),
  5533. weight: math.unit(38, "kg"),
  5534. name: "H&K MP724",
  5535. image: {
  5536. source: "./media/characters/asche/h&k-mp724.svg"
  5537. }
  5538. },
  5539. side: {
  5540. height: math.unit(5, "meters"),
  5541. weight: math.unit(1000, "kg"),
  5542. name: "Side",
  5543. image: {
  5544. source: "./media/characters/asche/side.svg",
  5545. extra: 1717 / 1609,
  5546. bottom: 0.005
  5547. }
  5548. },
  5549. back: {
  5550. height: math.unit(5, "meters"),
  5551. weight: math.unit(1000, "kg"),
  5552. name: "Back",
  5553. image: {
  5554. source: "./media/characters/asche/back.svg",
  5555. extra: 1570 / 1501
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "DEFCON 5",
  5562. height: math.unit(5, "meters")
  5563. },
  5564. {
  5565. name: "DEFCON 4",
  5566. height: math.unit(500, "meters"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "DEFCON 3",
  5571. height: math.unit(5, "km")
  5572. },
  5573. {
  5574. name: "DEFCON 2",
  5575. height: math.unit(500, "km")
  5576. },
  5577. {
  5578. name: "DEFCON 1",
  5579. height: math.unit(500000, "km")
  5580. },
  5581. {
  5582. name: "DEFCON 0",
  5583. height: math.unit(3, "gigaparsecs")
  5584. },
  5585. ]
  5586. ))
  5587. characterMakers.push(() => makeCharacter(
  5588. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5589. {
  5590. front: {
  5591. height: math.unit(7, "feet"),
  5592. weight: math.unit(92.7, "kg"),
  5593. name: "Front",
  5594. image: {
  5595. source: "./media/characters/gale/front.svg",
  5596. extra: 977/919,
  5597. bottom: 105/1082
  5598. }
  5599. },
  5600. side: {
  5601. height: math.unit(6.7, "feet"),
  5602. weight: math.unit(92.7, "kg"),
  5603. name: "Side",
  5604. image: {
  5605. source: "./media/characters/gale/side.svg",
  5606. extra: 978/922,
  5607. bottom: 140/1118
  5608. }
  5609. },
  5610. back: {
  5611. height: math.unit(7, "feet"),
  5612. weight: math.unit(92.7, "kg"),
  5613. name: "Back",
  5614. image: {
  5615. source: "./media/characters/gale/back.svg",
  5616. extra: 966/920,
  5617. bottom: 61/1027
  5618. }
  5619. },
  5620. maw: {
  5621. height: math.unit(2.23, "feet"),
  5622. name: "Maw",
  5623. image: {
  5624. source: "./media/characters/gale/maw.svg"
  5625. }
  5626. },
  5627. foot: {
  5628. height: math.unit(2.1, "feet"),
  5629. name: "Foot",
  5630. image: {
  5631. source: "./media/characters/gale/foot.svg"
  5632. }
  5633. },
  5634. },
  5635. [
  5636. {
  5637. name: "Normal",
  5638. height: math.unit(7, "feet")
  5639. },
  5640. {
  5641. name: "Macro",
  5642. height: math.unit(150, "feet"),
  5643. default: true
  5644. },
  5645. {
  5646. name: "Macro+",
  5647. height: math.unit(300, "feet")
  5648. },
  5649. ]
  5650. ))
  5651. characterMakers.push(() => makeCharacter(
  5652. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5653. {
  5654. front: {
  5655. height: math.unit(5 + 10/12, "feet"),
  5656. weight: math.unit(67, "kg"),
  5657. name: "Front",
  5658. image: {
  5659. source: "./media/characters/draylen/front.svg",
  5660. extra: 832/777,
  5661. bottom: 85/917
  5662. }
  5663. }
  5664. },
  5665. [
  5666. {
  5667. name: "Normal",
  5668. height: math.unit(5 + 10/12, "feet")
  5669. },
  5670. {
  5671. name: "Macro",
  5672. height: math.unit(150, "feet"),
  5673. default: true
  5674. }
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5679. {
  5680. front: {
  5681. height: math.unit(7 + 9 / 12, "feet"),
  5682. weight: math.unit(379, "lbs"),
  5683. name: "Front",
  5684. image: {
  5685. source: "./media/characters/chez/front.svg"
  5686. }
  5687. },
  5688. side: {
  5689. height: math.unit(7 + 9 / 12, "feet"),
  5690. weight: math.unit(379, "lbs"),
  5691. name: "Side",
  5692. image: {
  5693. source: "./media/characters/chez/side.svg"
  5694. }
  5695. }
  5696. },
  5697. [
  5698. {
  5699. name: "Normal",
  5700. height: math.unit(7 + 9 / 12, "feet"),
  5701. default: true
  5702. },
  5703. {
  5704. name: "God King",
  5705. height: math.unit(9750000, "meters")
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5711. {
  5712. front: {
  5713. height: math.unit(6, "feet"),
  5714. weight: math.unit(275, "lbs"),
  5715. name: "Front",
  5716. image: {
  5717. source: "./media/characters/kaylum/front.svg",
  5718. bottom: 0.01,
  5719. extra: 1166 / 1031
  5720. }
  5721. },
  5722. frontWingless: {
  5723. height: math.unit(6, "feet"),
  5724. weight: math.unit(275, "lbs"),
  5725. name: "Front (Wingless)",
  5726. image: {
  5727. source: "./media/characters/kaylum/front-wingless.svg",
  5728. bottom: 0.01,
  5729. extra: 1117 / 1031
  5730. }
  5731. }
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(3.05, "meters")
  5737. },
  5738. {
  5739. name: "Master",
  5740. height: math.unit(5.5, "meters")
  5741. },
  5742. {
  5743. name: "Rampage",
  5744. height: math.unit(19, "meters")
  5745. },
  5746. {
  5747. name: "Macro Lite",
  5748. height: math.unit(37, "meters")
  5749. },
  5750. {
  5751. name: "Hyper Predator",
  5752. height: math.unit(61, "meters")
  5753. },
  5754. {
  5755. name: "Macro",
  5756. height: math.unit(138, "meters"),
  5757. default: true
  5758. }
  5759. ]
  5760. ))
  5761. characterMakers.push(() => makeCharacter(
  5762. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5763. {
  5764. front: {
  5765. height: math.unit(5 + 5 / 12, "feet"),
  5766. weight: math.unit(120, "lbs"),
  5767. name: "Front",
  5768. image: {
  5769. source: "./media/characters/geta/front.svg",
  5770. extra: 1003/933,
  5771. bottom: 21/1024
  5772. }
  5773. },
  5774. paw: {
  5775. height: math.unit(0.35, "feet"),
  5776. name: "Paw",
  5777. image: {
  5778. source: "./media/characters/geta/paw.svg"
  5779. }
  5780. },
  5781. },
  5782. [
  5783. {
  5784. name: "Micro",
  5785. height: math.unit(3, "inches"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Normal",
  5790. height: math.unit(5 + 5 / 12, "feet")
  5791. }
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(300, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/tyrnn/front.svg"
  5803. }
  5804. }
  5805. },
  5806. [
  5807. {
  5808. name: "Main Height",
  5809. height: math.unit(355, "feet"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Fave. Height",
  5814. height: math.unit(2400, "feet")
  5815. }
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(300, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/appledectomy/front.svg"
  5827. }
  5828. }
  5829. },
  5830. [
  5831. {
  5832. name: "Macro",
  5833. height: math.unit(2500, "feet")
  5834. },
  5835. {
  5836. name: "Megamacro",
  5837. height: math.unit(50, "miles"),
  5838. default: true
  5839. },
  5840. {
  5841. name: "Gigamacro",
  5842. height: math.unit(5000, "miles")
  5843. },
  5844. {
  5845. name: "Teramacro",
  5846. height: math.unit(250000, "miles")
  5847. },
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5852. {
  5853. front: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(200, "lbs"),
  5856. name: "Front",
  5857. image: {
  5858. source: "./media/characters/vulpes/front.svg",
  5859. extra: 573 / 543,
  5860. bottom: 0.033
  5861. }
  5862. },
  5863. side: {
  5864. height: math.unit(6, "feet"),
  5865. weight: math.unit(200, "lbs"),
  5866. name: "Side",
  5867. image: {
  5868. source: "./media/characters/vulpes/side.svg",
  5869. extra: 577 / 549,
  5870. bottom: 11 / 588
  5871. }
  5872. },
  5873. back: {
  5874. height: math.unit(6, "feet"),
  5875. weight: math.unit(200, "lbs"),
  5876. name: "Back",
  5877. image: {
  5878. source: "./media/characters/vulpes/back.svg",
  5879. extra: 573 / 549,
  5880. bottom: 20 / 593
  5881. }
  5882. },
  5883. feet: {
  5884. height: math.unit(1.276, "feet"),
  5885. name: "Feet",
  5886. image: {
  5887. source: "./media/characters/vulpes/feet.svg"
  5888. }
  5889. },
  5890. maw: {
  5891. height: math.unit(1.18, "feet"),
  5892. name: "Maw",
  5893. image: {
  5894. source: "./media/characters/vulpes/maw.svg"
  5895. }
  5896. },
  5897. },
  5898. [
  5899. {
  5900. name: "Micro",
  5901. height: math.unit(2, "inches")
  5902. },
  5903. {
  5904. name: "Normal",
  5905. height: math.unit(6.3, "feet")
  5906. },
  5907. {
  5908. name: "Macro",
  5909. height: math.unit(850, "feet")
  5910. },
  5911. {
  5912. name: "Megamacro",
  5913. height: math.unit(7500, "feet"),
  5914. default: true
  5915. },
  5916. {
  5917. name: "Gigamacro",
  5918. height: math.unit(570000, "miles")
  5919. }
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5924. {
  5925. front: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(210, "lbs"),
  5928. name: "Front",
  5929. image: {
  5930. source: "./media/characters/rain-fallen/front.svg"
  5931. }
  5932. },
  5933. side: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(210, "lbs"),
  5936. name: "Side",
  5937. image: {
  5938. source: "./media/characters/rain-fallen/side.svg"
  5939. }
  5940. },
  5941. back: {
  5942. height: math.unit(6, "feet"),
  5943. weight: math.unit(210, "lbs"),
  5944. name: "Back",
  5945. image: {
  5946. source: "./media/characters/rain-fallen/back.svg"
  5947. }
  5948. },
  5949. feral: {
  5950. height: math.unit(9, "feet"),
  5951. weight: math.unit(700, "lbs"),
  5952. name: "Feral",
  5953. image: {
  5954. source: "./media/characters/rain-fallen/feral.svg"
  5955. }
  5956. },
  5957. },
  5958. [
  5959. {
  5960. name: "Meddling with Mortals",
  5961. height: math.unit(8 + 8/12, "feet")
  5962. },
  5963. {
  5964. name: "Normal",
  5965. height: math.unit(5, "meter")
  5966. },
  5967. {
  5968. name: "Macro",
  5969. height: math.unit(150, "meter"),
  5970. default: true
  5971. },
  5972. {
  5973. name: "Megamacro",
  5974. height: math.unit(278e6, "meter")
  5975. },
  5976. {
  5977. name: "Gigamacro",
  5978. height: math.unit(2e9, "meter")
  5979. },
  5980. {
  5981. name: "Teramacro",
  5982. height: math.unit(8e12, "meter")
  5983. },
  5984. {
  5985. name: "Devourer",
  5986. height: math.unit(14, "zettameters")
  5987. },
  5988. {
  5989. name: "Scarlet King",
  5990. height: math.unit(18, "yottameters")
  5991. },
  5992. {
  5993. name: "Void",
  5994. height: math.unit(1e88, "yottameters")
  5995. }
  5996. ]
  5997. ))
  5998. characterMakers.push(() => makeCharacter(
  5999. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6000. {
  6001. standing: {
  6002. height: math.unit(6, "feet"),
  6003. weight: math.unit(180, "lbs"),
  6004. name: "Standing",
  6005. image: {
  6006. source: "./media/characters/zaakira/standing.svg",
  6007. extra: 1599/1504,
  6008. bottom: 39/1638
  6009. }
  6010. },
  6011. laying: {
  6012. height: math.unit(3.3, "feet"),
  6013. weight: math.unit(180, "lbs"),
  6014. name: "Laying",
  6015. image: {
  6016. source: "./media/characters/zaakira/laying.svg"
  6017. }
  6018. },
  6019. },
  6020. [
  6021. {
  6022. name: "Normal",
  6023. height: math.unit(12, "feet")
  6024. },
  6025. {
  6026. name: "Macro",
  6027. height: math.unit(279, "feet"),
  6028. default: true
  6029. }
  6030. ]
  6031. ))
  6032. characterMakers.push(() => makeCharacter(
  6033. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6034. {
  6035. femSfw: {
  6036. height: math.unit(8, "feet"),
  6037. weight: math.unit(350, "lb"),
  6038. name: "Fem",
  6039. image: {
  6040. source: "./media/characters/sigvald/fem-sfw.svg",
  6041. extra: 182 / 164,
  6042. bottom: 8.7 / 190.5
  6043. }
  6044. },
  6045. femNsfw: {
  6046. height: math.unit(8, "feet"),
  6047. weight: math.unit(350, "lb"),
  6048. name: "Fem (NSFW)",
  6049. image: {
  6050. source: "./media/characters/sigvald/fem-nsfw.svg",
  6051. extra: 182 / 164,
  6052. bottom: 8.7 / 190.5
  6053. }
  6054. },
  6055. maleNsfw: {
  6056. height: math.unit(8, "feet"),
  6057. weight: math.unit(350, "lb"),
  6058. name: "Male (NSFW)",
  6059. image: {
  6060. source: "./media/characters/sigvald/male-nsfw.svg",
  6061. extra: 182 / 164,
  6062. bottom: 8.7 / 190.5
  6063. }
  6064. },
  6065. hermNsfw: {
  6066. height: math.unit(8, "feet"),
  6067. weight: math.unit(350, "lb"),
  6068. name: "Herm (NSFW)",
  6069. image: {
  6070. source: "./media/characters/sigvald/herm-nsfw.svg",
  6071. extra: 182 / 164,
  6072. bottom: 8.7 / 190.5
  6073. }
  6074. },
  6075. dick: {
  6076. height: math.unit(2.36, "feet"),
  6077. name: "Dick",
  6078. image: {
  6079. source: "./media/characters/sigvald/dick.svg"
  6080. }
  6081. },
  6082. eye: {
  6083. height: math.unit(0.31, "feet"),
  6084. name: "Eye",
  6085. image: {
  6086. source: "./media/characters/sigvald/eye.svg"
  6087. }
  6088. },
  6089. mouth: {
  6090. height: math.unit(0.92, "feet"),
  6091. name: "Mouth",
  6092. image: {
  6093. source: "./media/characters/sigvald/mouth.svg"
  6094. }
  6095. },
  6096. paws: {
  6097. height: math.unit(2.2, "feet"),
  6098. name: "Paws",
  6099. image: {
  6100. source: "./media/characters/sigvald/paws.svg"
  6101. }
  6102. }
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(8, "feet")
  6108. },
  6109. {
  6110. name: "Large",
  6111. height: math.unit(12, "feet")
  6112. },
  6113. {
  6114. name: "Larger",
  6115. height: math.unit(20, "feet")
  6116. },
  6117. {
  6118. name: "Macro",
  6119. height: math.unit(150, "feet")
  6120. },
  6121. {
  6122. name: "Macro+",
  6123. height: math.unit(200, "feet"),
  6124. default: true
  6125. },
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6130. {
  6131. side: {
  6132. height: math.unit(12, "feet"),
  6133. weight: math.unit(2000, "kg"),
  6134. name: "Side",
  6135. image: {
  6136. source: "./media/characters/scott/side.svg",
  6137. extra: 754 / 724,
  6138. bottom: 0.069
  6139. }
  6140. },
  6141. upright: {
  6142. height: math.unit(12, "feet"),
  6143. weight: math.unit(2000, "kg"),
  6144. name: "Upright",
  6145. image: {
  6146. source: "./media/characters/scott/upright.svg",
  6147. extra: 3881 / 3722,
  6148. bottom: 0.05
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(12, "feet"),
  6156. default: true
  6157. },
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6162. {
  6163. side: {
  6164. height: math.unit(8, "meters"),
  6165. weight: math.unit(84755, "lbs"),
  6166. name: "Side",
  6167. image: {
  6168. source: "./media/characters/tobias/side.svg",
  6169. extra: 1474 / 1096,
  6170. bottom: 38.9 / 1513.1235
  6171. }
  6172. },
  6173. maw: {
  6174. height: math.unit(2.3, "meters"),
  6175. name: "Maw",
  6176. image: {
  6177. source: "./media/characters/tobias/maw.svg"
  6178. }
  6179. },
  6180. burp: {
  6181. height: math.unit(2.85, "meters"),
  6182. name: "Burp",
  6183. image: {
  6184. source: "./media/characters/tobias/burp.svg"
  6185. }
  6186. },
  6187. },
  6188. [
  6189. {
  6190. name: "Normal",
  6191. height: math.unit(8, "meters"),
  6192. default: true
  6193. },
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6198. {
  6199. front: {
  6200. height: math.unit(5.5, "feet"),
  6201. weight: math.unit(400, "lbs"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/kieran/front.svg",
  6205. extra: 2694 / 2364,
  6206. bottom: 217 / 2908
  6207. }
  6208. },
  6209. side: {
  6210. height: math.unit(5.5, "feet"),
  6211. weight: math.unit(400, "lbs"),
  6212. name: "Side",
  6213. image: {
  6214. source: "./media/characters/kieran/side.svg",
  6215. extra: 875 / 777,
  6216. bottom: 84.6 / 959
  6217. }
  6218. },
  6219. },
  6220. [
  6221. {
  6222. name: "Normal",
  6223. height: math.unit(5.5, "feet"),
  6224. default: true
  6225. },
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6230. {
  6231. side: {
  6232. height: math.unit(2, "meters"),
  6233. weight: math.unit(70, "kg"),
  6234. name: "Side",
  6235. image: {
  6236. source: "./media/characters/sanya/side.svg",
  6237. bottom: 0.02,
  6238. extra: 1.02
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Small",
  6245. height: math.unit(2, "meters")
  6246. },
  6247. {
  6248. name: "Normal",
  6249. height: math.unit(3, "meters")
  6250. },
  6251. {
  6252. name: "Macro",
  6253. height: math.unit(16, "meters"),
  6254. default: true
  6255. },
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6260. {
  6261. front: {
  6262. height: math.unit(2, "meters"),
  6263. weight: math.unit(120, "kg"),
  6264. name: "Front",
  6265. image: {
  6266. source: "./media/characters/miranda/front.svg",
  6267. extra: 195 / 185,
  6268. bottom: 10.9 / 206.5
  6269. }
  6270. },
  6271. back: {
  6272. height: math.unit(2, "meters"),
  6273. weight: math.unit(120, "kg"),
  6274. name: "Back",
  6275. image: {
  6276. source: "./media/characters/miranda/back.svg",
  6277. extra: 201 / 193,
  6278. bottom: 2.3 / 203.7
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(10, "feet"),
  6286. default: true
  6287. }
  6288. ]
  6289. ))
  6290. characterMakers.push(() => makeCharacter(
  6291. { name: "James", species: ["deer"], tags: ["anthro"] },
  6292. {
  6293. side: {
  6294. height: math.unit(2, "meters"),
  6295. weight: math.unit(100, "kg"),
  6296. name: "Front",
  6297. image: {
  6298. source: "./media/characters/james/front.svg",
  6299. extra: 10 / 8.5
  6300. }
  6301. },
  6302. },
  6303. [
  6304. {
  6305. name: "Normal",
  6306. height: math.unit(8.5, "feet"),
  6307. default: true
  6308. }
  6309. ]
  6310. ))
  6311. characterMakers.push(() => makeCharacter(
  6312. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6313. {
  6314. side: {
  6315. height: math.unit(9.5, "feet"),
  6316. weight: math.unit(2500, "lbs"),
  6317. name: "Side",
  6318. image: {
  6319. source: "./media/characters/heather/side.svg"
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Normal",
  6326. height: math.unit(9.5, "feet"),
  6327. default: true
  6328. }
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6333. {
  6334. side: {
  6335. height: math.unit(6.5, "feet"),
  6336. weight: math.unit(400, "lbs"),
  6337. name: "Side",
  6338. image: {
  6339. source: "./media/characters/lukas/side.svg",
  6340. extra: 7.25 / 6.5
  6341. }
  6342. },
  6343. },
  6344. [
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(6.5, "feet"),
  6348. default: true
  6349. }
  6350. ]
  6351. ))
  6352. characterMakers.push(() => makeCharacter(
  6353. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6354. {
  6355. side: {
  6356. height: math.unit(5, "feet"),
  6357. weight: math.unit(3000, "lbs"),
  6358. name: "Side",
  6359. image: {
  6360. source: "./media/characters/louise/side.svg"
  6361. }
  6362. },
  6363. },
  6364. [
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(5, "feet"),
  6368. default: true
  6369. }
  6370. ]
  6371. ))
  6372. characterMakers.push(() => makeCharacter(
  6373. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6374. {
  6375. side: {
  6376. height: math.unit(6, "feet"),
  6377. weight: math.unit(150, "lbs"),
  6378. name: "Side",
  6379. image: {
  6380. source: "./media/characters/ramona/side.svg",
  6381. extra: 871/854,
  6382. bottom: 41/912
  6383. }
  6384. },
  6385. },
  6386. [
  6387. {
  6388. name: "Normal",
  6389. height: math.unit(6 + 4/12, "feet")
  6390. },
  6391. {
  6392. name: "Minimacro",
  6393. height: math.unit(5.3, "meters"),
  6394. default: true
  6395. },
  6396. {
  6397. name: "Macro",
  6398. height: math.unit(20, "stories")
  6399. },
  6400. {
  6401. name: "Macro+",
  6402. height: math.unit(50, "stories")
  6403. },
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6408. {
  6409. standing: {
  6410. height: math.unit(5.75, "feet"),
  6411. weight: math.unit(160, "lbs"),
  6412. name: "Standing",
  6413. image: {
  6414. source: "./media/characters/deerpuff/standing.svg",
  6415. extra: 682 / 624
  6416. }
  6417. },
  6418. sitting: {
  6419. height: math.unit(5.75 / 1.79, "feet"),
  6420. weight: math.unit(160, "lbs"),
  6421. name: "Sitting",
  6422. image: {
  6423. source: "./media/characters/deerpuff/sitting.svg",
  6424. bottom: 44 / 400,
  6425. extra: 1
  6426. }
  6427. },
  6428. taurLaying: {
  6429. height: math.unit(6, "feet"),
  6430. weight: math.unit(400, "lbs"),
  6431. name: "Taur (Laying)",
  6432. image: {
  6433. source: "./media/characters/deerpuff/taur-laying.svg"
  6434. }
  6435. },
  6436. },
  6437. [
  6438. {
  6439. name: "Puffball",
  6440. height: math.unit(6, "inches")
  6441. },
  6442. {
  6443. name: "Normalpuff",
  6444. height: math.unit(5.75, "feet")
  6445. },
  6446. {
  6447. name: "Macropuff",
  6448. height: math.unit(1500, "feet"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Megapuff",
  6453. height: math.unit(500, "miles")
  6454. },
  6455. {
  6456. name: "Gigapuff",
  6457. height: math.unit(250000, "miles")
  6458. },
  6459. {
  6460. name: "Omegapuff",
  6461. height: math.unit(1000, "lightyears")
  6462. },
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6467. {
  6468. stomping: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(170, "lbs"),
  6471. name: "Stomping",
  6472. image: {
  6473. source: "./media/characters/vivian/stomping.svg"
  6474. }
  6475. },
  6476. sitting: {
  6477. height: math.unit(6 / 1.75, "feet"),
  6478. weight: math.unit(170, "lbs"),
  6479. name: "Sitting",
  6480. image: {
  6481. source: "./media/characters/vivian/sitting.svg",
  6482. bottom: 1 / 6.4,
  6483. extra: 1,
  6484. }
  6485. },
  6486. },
  6487. [
  6488. {
  6489. name: "Normal",
  6490. height: math.unit(7, "feet"),
  6491. default: true
  6492. },
  6493. {
  6494. name: "Macro",
  6495. height: math.unit(10, "stories")
  6496. },
  6497. {
  6498. name: "Macro+",
  6499. height: math.unit(30, "stories")
  6500. },
  6501. {
  6502. name: "Megamacro",
  6503. height: math.unit(10, "miles")
  6504. },
  6505. {
  6506. name: "Megamacro+",
  6507. height: math.unit(2750000, "meters")
  6508. },
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6513. {
  6514. front: {
  6515. height: math.unit(6, "feet"),
  6516. weight: math.unit(160, "lbs"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/prince/front.svg",
  6520. extra: 1938/1682,
  6521. bottom: 45/1983
  6522. }
  6523. },
  6524. back: {
  6525. height: math.unit(6, "feet"),
  6526. weight: math.unit(160, "lbs"),
  6527. name: "Back",
  6528. image: {
  6529. source: "./media/characters/prince/back.svg",
  6530. extra: 1955/1726,
  6531. bottom: 6/1961
  6532. }
  6533. },
  6534. },
  6535. [
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(7.75, "feet"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Not cute",
  6543. height: math.unit(17, "feet")
  6544. },
  6545. {
  6546. name: "I said NOT",
  6547. height: math.unit(91, "feet")
  6548. },
  6549. {
  6550. name: "Please stop",
  6551. height: math.unit(560, "feet")
  6552. },
  6553. {
  6554. name: "What have you done",
  6555. height: math.unit(2200, "feet")
  6556. },
  6557. {
  6558. name: "Deer God",
  6559. height: math.unit(3.6, "miles")
  6560. },
  6561. ]
  6562. ))
  6563. characterMakers.push(() => makeCharacter(
  6564. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6565. {
  6566. standing: {
  6567. height: math.unit(6, "feet"),
  6568. weight: math.unit(300, "lbs"),
  6569. name: "Standing",
  6570. image: {
  6571. source: "./media/characters/psymon/standing.svg",
  6572. extra: 1888 / 1810,
  6573. bottom: 0.05
  6574. }
  6575. },
  6576. slithering: {
  6577. height: math.unit(6, "feet"),
  6578. weight: math.unit(300, "lbs"),
  6579. name: "Slithering",
  6580. image: {
  6581. source: "./media/characters/psymon/slithering.svg",
  6582. extra: 1330 / 1224
  6583. }
  6584. },
  6585. slitheringAlt: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(300, "lbs"),
  6588. name: "Slithering (Alt)",
  6589. image: {
  6590. source: "./media/characters/psymon/slithering-alt.svg",
  6591. extra: 1330 / 1224
  6592. }
  6593. },
  6594. },
  6595. [
  6596. {
  6597. name: "Normal",
  6598. height: math.unit(11.25, "feet"),
  6599. default: true
  6600. },
  6601. {
  6602. name: "Large",
  6603. height: math.unit(27, "feet")
  6604. },
  6605. {
  6606. name: "Giant",
  6607. height: math.unit(87, "feet")
  6608. },
  6609. {
  6610. name: "Macro",
  6611. height: math.unit(365, "feet")
  6612. },
  6613. {
  6614. name: "Megamacro",
  6615. height: math.unit(3, "miles")
  6616. },
  6617. {
  6618. name: "World Serpent",
  6619. height: math.unit(8000, "miles")
  6620. },
  6621. ]
  6622. ))
  6623. characterMakers.push(() => makeCharacter(
  6624. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6625. {
  6626. front: {
  6627. height: math.unit(6, "feet"),
  6628. weight: math.unit(180, "lbs"),
  6629. name: "Front",
  6630. image: {
  6631. source: "./media/characters/daimos/front.svg",
  6632. extra: 4160 / 3897,
  6633. bottom: 0.021
  6634. }
  6635. }
  6636. },
  6637. [
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(8, "feet"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Big Dog",
  6645. height: math.unit(22, "feet")
  6646. },
  6647. {
  6648. name: "Macro",
  6649. height: math.unit(127, "feet")
  6650. },
  6651. {
  6652. name: "Megamacro",
  6653. height: math.unit(3600, "feet")
  6654. },
  6655. ]
  6656. ))
  6657. characterMakers.push(() => makeCharacter(
  6658. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6659. {
  6660. side: {
  6661. height: math.unit(6, "feet"),
  6662. weight: math.unit(180, "lbs"),
  6663. name: "Side",
  6664. image: {
  6665. source: "./media/characters/blake/side.svg",
  6666. extra: 1212 / 1120,
  6667. bottom: 0.05
  6668. }
  6669. },
  6670. crouched: {
  6671. height: math.unit(6 * 0.57, "feet"),
  6672. weight: math.unit(180, "lbs"),
  6673. name: "Crouched",
  6674. image: {
  6675. source: "./media/characters/blake/crouched.svg",
  6676. extra: 840 / 587,
  6677. bottom: 0.04
  6678. }
  6679. },
  6680. bent: {
  6681. height: math.unit(6 * 0.75, "feet"),
  6682. weight: math.unit(180, "lbs"),
  6683. name: "Bent",
  6684. image: {
  6685. source: "./media/characters/blake/bent.svg",
  6686. extra: 592 / 544,
  6687. bottom: 0.035
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(8 + 1 / 6, "feet"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Big Backside",
  6699. height: math.unit(37, "feet")
  6700. },
  6701. {
  6702. name: "Subway Shredder",
  6703. height: math.unit(72, "feet")
  6704. },
  6705. {
  6706. name: "City Carver",
  6707. height: math.unit(1675, "feet")
  6708. },
  6709. {
  6710. name: "Tectonic Tweaker",
  6711. height: math.unit(2300, "miles")
  6712. },
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(180, "lbs"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/guisetto/front.svg",
  6724. extra: 856 / 817,
  6725. bottom: 0.06
  6726. }
  6727. },
  6728. airborne: {
  6729. height: math.unit(6, "feet"),
  6730. weight: math.unit(180, "lbs"),
  6731. name: "Airborne",
  6732. image: {
  6733. source: "./media/characters/guisetto/airborne.svg",
  6734. extra: 584 / 525
  6735. }
  6736. },
  6737. },
  6738. [
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(10 + 11 / 12, "feet"),
  6742. default: true
  6743. },
  6744. {
  6745. name: "Large",
  6746. height: math.unit(35, "feet")
  6747. },
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(475, "feet")
  6751. },
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6756. {
  6757. front: {
  6758. height: math.unit(6, "feet"),
  6759. weight: math.unit(180, "lbs"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/luxor/front.svg",
  6763. extra: 2940 / 2152
  6764. }
  6765. },
  6766. back: {
  6767. height: math.unit(6, "feet"),
  6768. weight: math.unit(180, "lbs"),
  6769. name: "Back",
  6770. image: {
  6771. source: "./media/characters/luxor/back.svg",
  6772. extra: 1083 / 960
  6773. }
  6774. },
  6775. },
  6776. [
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(5 + 5 / 6, "feet"),
  6780. default: true
  6781. },
  6782. {
  6783. name: "Lamp",
  6784. height: math.unit(50, "feet")
  6785. },
  6786. {
  6787. name: "Lämp",
  6788. height: math.unit(300, "feet")
  6789. },
  6790. {
  6791. name: "The sun is a lamp",
  6792. height: math.unit(250000, "miles")
  6793. },
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6798. {
  6799. front: {
  6800. height: math.unit(6, "feet"),
  6801. weight: math.unit(50, "lbs"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/huoyan/front.svg"
  6805. }
  6806. },
  6807. side: {
  6808. height: math.unit(6, "feet"),
  6809. weight: math.unit(180, "lbs"),
  6810. name: "Side",
  6811. image: {
  6812. source: "./media/characters/huoyan/side.svg"
  6813. }
  6814. },
  6815. },
  6816. [
  6817. {
  6818. name: "Chef",
  6819. height: math.unit(9, "feet")
  6820. },
  6821. {
  6822. name: "Normal",
  6823. height: math.unit(65, "feet"),
  6824. default: true
  6825. },
  6826. {
  6827. name: "Macro",
  6828. height: math.unit(780, "feet")
  6829. },
  6830. {
  6831. name: "Flaming Mountain",
  6832. height: math.unit(4.8, "miles")
  6833. },
  6834. {
  6835. name: "Celestial",
  6836. height: math.unit(765000, "miles")
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(5 + 3 / 4, "feet"),
  6845. weight: math.unit(120, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/tails/front.svg"
  6849. }
  6850. }
  6851. },
  6852. [
  6853. {
  6854. name: "Normal",
  6855. height: math.unit(5 + 3 / 4, "feet"),
  6856. default: true
  6857. }
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(4, "feet"),
  6865. weight: math.unit(50, "lbs"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/rainy/front.svg"
  6869. }
  6870. }
  6871. },
  6872. [
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(800, "feet"),
  6876. default: true
  6877. }
  6878. ]
  6879. ))
  6880. characterMakers.push(() => makeCharacter(
  6881. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6882. {
  6883. front: {
  6884. height: math.unit(6, "feet"),
  6885. weight: math.unit(150, "lbs"),
  6886. name: "Front",
  6887. image: {
  6888. source: "./media/characters/rainier/front.svg"
  6889. }
  6890. }
  6891. },
  6892. [
  6893. {
  6894. name: "Micro",
  6895. height: math.unit(2, "mm"),
  6896. default: true
  6897. }
  6898. ]
  6899. ))
  6900. characterMakers.push(() => makeCharacter(
  6901. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6902. {
  6903. front: {
  6904. height: math.unit(8 + 4/12, "feet"),
  6905. weight: math.unit(450, "kilograms"),
  6906. name: "Front",
  6907. image: {
  6908. source: "./media/characters/andy-renard/front.svg",
  6909. extra: 862/809,
  6910. bottom: 85/947
  6911. },
  6912. extraAttributes: {
  6913. "pawSize": {
  6914. name: "Paw Size",
  6915. power: 2,
  6916. type: "area",
  6917. base: math.unit(0.45*0.3, "meters^2")
  6918. },
  6919. "handSize": {
  6920. name: "Hand Size",
  6921. power: 2,
  6922. type: "area",
  6923. base: math.unit(0.4 * 0.3, "meters^2")
  6924. },
  6925. "cockSize": {
  6926. name: "Cock Length",
  6927. power: 1,
  6928. type: "length",
  6929. base: math.unit(0.75, "meters")
  6930. },
  6931. "ballDiameter": {
  6932. name: "Ball Diameter",
  6933. power: 1,
  6934. type: "length",
  6935. base: math.unit(0.3, "meters")
  6936. },
  6937. "ballVolume": {
  6938. name: "Ball Volume",
  6939. power: 3,
  6940. type: "volume",
  6941. base: math.unit(0.01413716694, "meters^3")
  6942. },
  6943. }
  6944. },
  6945. back: {
  6946. height: math.unit(8 + 4/12, "feet"),
  6947. weight: math.unit(450, "kilograms"),
  6948. name: "Back",
  6949. image: {
  6950. source: "./media/characters/andy-renard/back.svg",
  6951. extra: 1112/1033,
  6952. bottom: 64/1176
  6953. },
  6954. extraAttributes: {
  6955. "pawSize": {
  6956. name: "Paw Size",
  6957. power: 2,
  6958. type: "area",
  6959. base: math.unit(0.45*0.3, "meters^2")
  6960. },
  6961. "handSize": {
  6962. name: "Hand Size",
  6963. power: 2,
  6964. type: "area",
  6965. base: math.unit(0.4 * 0.3, "meters^2")
  6966. },
  6967. "cockSize": {
  6968. name: "Cock Length",
  6969. power: 1,
  6970. type: "length",
  6971. base: math.unit(0.75, "meters")
  6972. },
  6973. "ballDiameter": {
  6974. name: "Ball Diameter",
  6975. power: 1,
  6976. type: "length",
  6977. base: math.unit(0.3, "meters")
  6978. },
  6979. "ballVolume": {
  6980. name: "Ball Volume",
  6981. power: 3,
  6982. type: "volume",
  6983. base: math.unit(0.01413716694, "meters^3")
  6984. },
  6985. }
  6986. },
  6987. },
  6988. [
  6989. {
  6990. name: "Tall",
  6991. height: math.unit(6 + 8/12, "feet")
  6992. },
  6993. {
  6994. name: "Very Tall",
  6995. height: math.unit(8 + 4/12, "feet")
  6996. },
  6997. {
  6998. name: "Mini Macro",
  6999. height: math.unit(15, "feet"),
  7000. default: true
  7001. },
  7002. {
  7003. name: "Giant",
  7004. height: math.unit(50, "feet")
  7005. },
  7006. {
  7007. name: "Nice",
  7008. height: math.unit(69, "feet")
  7009. },
  7010. {
  7011. name: "Macro",
  7012. height: math.unit(100, "feet")
  7013. },
  7014. {
  7015. name: "Enormous",
  7016. height: math.unit(500, "feet")
  7017. },
  7018. {
  7019. name: "Gargantuan",
  7020. height: math.unit(1000, "feet")
  7021. },
  7022. {
  7023. name: "Mega",
  7024. height: math.unit(1, "mile")
  7025. },
  7026. {
  7027. name: "Giga",
  7028. height: math.unit(50, "miles")
  7029. },
  7030. {
  7031. name: "Tera",
  7032. height: math.unit(1000, "miles")
  7033. },
  7034. {
  7035. name: "Cosmic",
  7036. height: math.unit(1.5, "galaxies")
  7037. },
  7038. {
  7039. name: "God",
  7040. height: math.unit(1.5, "universes")
  7041. },
  7042. {
  7043. name: "Chief Execute God",
  7044. height: math.unit(1.5, "multiverses")
  7045. },
  7046. ]
  7047. ))
  7048. characterMakers.push(() => makeCharacter(
  7049. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7050. {
  7051. front: {
  7052. height: math.unit(6, "feet"),
  7053. weight: math.unit(210, "lbs"),
  7054. name: "Front",
  7055. image: {
  7056. source: "./media/characters/cimmaron/front-sfw.svg",
  7057. extra: 701 / 676,
  7058. bottom: 0.046
  7059. }
  7060. },
  7061. back: {
  7062. height: math.unit(6, "feet"),
  7063. weight: math.unit(210, "lbs"),
  7064. name: "Back",
  7065. image: {
  7066. source: "./media/characters/cimmaron/back-sfw.svg",
  7067. extra: 701 / 676,
  7068. bottom: 0.046
  7069. }
  7070. },
  7071. frontNsfw: {
  7072. height: math.unit(6, "feet"),
  7073. weight: math.unit(210, "lbs"),
  7074. name: "Front (NSFW)",
  7075. image: {
  7076. source: "./media/characters/cimmaron/front-nsfw.svg",
  7077. extra: 701 / 676,
  7078. bottom: 0.046
  7079. }
  7080. },
  7081. backNsfw: {
  7082. height: math.unit(6, "feet"),
  7083. weight: math.unit(210, "lbs"),
  7084. name: "Back (NSFW)",
  7085. image: {
  7086. source: "./media/characters/cimmaron/back-nsfw.svg",
  7087. extra: 701 / 676,
  7088. bottom: 0.046
  7089. }
  7090. },
  7091. dick: {
  7092. height: math.unit(1.714, "feet"),
  7093. name: "Dick",
  7094. image: {
  7095. source: "./media/characters/cimmaron/dick.svg"
  7096. }
  7097. },
  7098. },
  7099. [
  7100. {
  7101. name: "Normal",
  7102. height: math.unit(6, "feet"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Macro Mayor",
  7107. height: math.unit(350, "meters")
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(6, "feet"),
  7116. weight: math.unit(200, "lbs"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/akari/front.svg",
  7120. extra: 962 / 901,
  7121. bottom: 0.04
  7122. }
  7123. }
  7124. },
  7125. [
  7126. {
  7127. name: "Micro",
  7128. height: math.unit(5, "inches"),
  7129. default: true
  7130. },
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(7, "feet")
  7134. },
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(140, "lbs"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/cynosura/front.svg",
  7146. extra: 437/410,
  7147. bottom: 9/446
  7148. }
  7149. },
  7150. back: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(140, "lbs"),
  7153. name: "Back",
  7154. image: {
  7155. source: "./media/characters/cynosura/back.svg",
  7156. extra: 1304/1160,
  7157. bottom: 71/1375
  7158. }
  7159. },
  7160. },
  7161. [
  7162. {
  7163. name: "Micro",
  7164. height: math.unit(4, "inches")
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(5.75, "feet"),
  7169. default: true
  7170. },
  7171. {
  7172. name: "Tall",
  7173. height: math.unit(10, "feet")
  7174. },
  7175. {
  7176. name: "Big",
  7177. height: math.unit(20, "feet")
  7178. },
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(50, "feet")
  7182. },
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7187. {
  7188. front: {
  7189. height: math.unit(13 + 2/12, "feet"),
  7190. weight: math.unit(800, "kg"),
  7191. name: "Front",
  7192. image: {
  7193. source: "./media/characters/gin/front.svg",
  7194. extra: 1312/1191,
  7195. bottom: 45/1357
  7196. }
  7197. },
  7198. mouth: {
  7199. height: math.unit(2.39 * 1.8, "feet"),
  7200. name: "Mouth",
  7201. image: {
  7202. source: "./media/characters/gin/mouth.svg"
  7203. }
  7204. },
  7205. hand: {
  7206. height: math.unit(1.57 * 2.19, "feet"),
  7207. name: "Hand",
  7208. image: {
  7209. source: "./media/characters/gin/hand.svg"
  7210. }
  7211. },
  7212. foot: {
  7213. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7214. name: "Foot",
  7215. image: {
  7216. source: "./media/characters/gin/foot.svg"
  7217. }
  7218. },
  7219. sole: {
  7220. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7221. name: "Sole",
  7222. image: {
  7223. source: "./media/characters/gin/sole.svg"
  7224. }
  7225. },
  7226. },
  7227. [
  7228. {
  7229. name: "Very Small",
  7230. height: math.unit(13 + 2 / 12, "feet")
  7231. },
  7232. {
  7233. name: "Micro",
  7234. height: math.unit(600, "miles")
  7235. },
  7236. {
  7237. name: "Regular",
  7238. height: math.unit(20, "earths"),
  7239. default: true
  7240. },
  7241. {
  7242. name: "Macro",
  7243. height: math.unit(2.2, "solarradii")
  7244. },
  7245. {
  7246. name: "Teramacro",
  7247. height: math.unit(1.2, "galaxies")
  7248. },
  7249. {
  7250. name: "Omegamacro",
  7251. height: math.unit(200, "universes")
  7252. },
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(6 + 1 / 6, "feet"),
  7260. weight: math.unit(178, "lbs"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/guy/front.svg"
  7264. }
  7265. }
  7266. },
  7267. [
  7268. {
  7269. name: "Normal",
  7270. height: math.unit(6 + 1 / 6, "feet"),
  7271. default: true
  7272. },
  7273. {
  7274. name: "Large",
  7275. height: math.unit(25 + 7 / 12, "feet")
  7276. },
  7277. {
  7278. name: "Macro",
  7279. height: math.unit(60 + 9 / 12, "feet")
  7280. },
  7281. {
  7282. name: "Macro+",
  7283. height: math.unit(246, "feet")
  7284. },
  7285. {
  7286. name: "Macro++",
  7287. height: math.unit(878, "feet")
  7288. }
  7289. ]
  7290. ))
  7291. characterMakers.push(() => makeCharacter(
  7292. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7293. {
  7294. front: {
  7295. height: math.unit(9, "feet"),
  7296. weight: math.unit(800, "lbs"),
  7297. name: "Front",
  7298. image: {
  7299. source: "./media/characters/tiberius/front.svg",
  7300. extra: 2295 / 2071
  7301. }
  7302. },
  7303. back: {
  7304. height: math.unit(9, "feet"),
  7305. weight: math.unit(800, "lbs"),
  7306. name: "Back",
  7307. image: {
  7308. source: "./media/characters/tiberius/back.svg",
  7309. extra: 2373 / 2160
  7310. }
  7311. },
  7312. },
  7313. [
  7314. {
  7315. name: "Normal",
  7316. height: math.unit(9, "feet"),
  7317. default: true
  7318. }
  7319. ]
  7320. ))
  7321. characterMakers.push(() => makeCharacter(
  7322. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7323. {
  7324. front: {
  7325. height: math.unit(6, "feet"),
  7326. weight: math.unit(600, "lbs"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/surgo/front.svg",
  7330. extra: 3591 / 2227
  7331. }
  7332. },
  7333. back: {
  7334. height: math.unit(6, "feet"),
  7335. weight: math.unit(600, "lbs"),
  7336. name: "Back",
  7337. image: {
  7338. source: "./media/characters/surgo/back.svg",
  7339. extra: 3557 / 2228
  7340. }
  7341. },
  7342. laying: {
  7343. height: math.unit(6 * 0.85, "feet"),
  7344. weight: math.unit(600, "lbs"),
  7345. name: "Laying",
  7346. image: {
  7347. source: "./media/characters/surgo/laying.svg"
  7348. }
  7349. },
  7350. },
  7351. [
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(6, "feet"),
  7355. default: true
  7356. }
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7361. {
  7362. side: {
  7363. height: math.unit(6, "feet"),
  7364. weight: math.unit(150, "lbs"),
  7365. name: "Side",
  7366. image: {
  7367. source: "./media/characters/cibus/side.svg",
  7368. extra: 800 / 400
  7369. }
  7370. },
  7371. },
  7372. [
  7373. {
  7374. name: "Normal",
  7375. height: math.unit(6, "feet"),
  7376. default: true
  7377. }
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(240, "lbs"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/nibbles/front.svg"
  7389. }
  7390. },
  7391. side: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(240, "lbs"),
  7394. name: "Side",
  7395. image: {
  7396. source: "./media/characters/nibbles/side.svg"
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(9, "feet"),
  7404. default: true
  7405. }
  7406. ]
  7407. ))
  7408. characterMakers.push(() => makeCharacter(
  7409. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7410. {
  7411. side: {
  7412. height: math.unit(5 + 1 / 6, "feet"),
  7413. weight: math.unit(130, "lbs"),
  7414. name: "Side",
  7415. image: {
  7416. source: "./media/characters/rikky/side.svg",
  7417. extra: 851 / 801
  7418. }
  7419. },
  7420. },
  7421. [
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(5 + 1 / 6, "feet")
  7425. },
  7426. {
  7427. name: "Macro",
  7428. height: math.unit(152, "feet"),
  7429. default: true
  7430. },
  7431. {
  7432. name: "Megamacro",
  7433. height: math.unit(7, "miles")
  7434. }
  7435. ]
  7436. ))
  7437. characterMakers.push(() => makeCharacter(
  7438. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7439. {
  7440. side: {
  7441. height: math.unit(370, "cm"),
  7442. weight: math.unit(350, "lbs"),
  7443. name: "Side",
  7444. image: {
  7445. source: "./media/characters/malfressa/side.svg"
  7446. }
  7447. },
  7448. walking: {
  7449. height: math.unit(370, "cm"),
  7450. weight: math.unit(350, "lbs"),
  7451. name: "Walking",
  7452. image: {
  7453. source: "./media/characters/malfressa/walking.svg"
  7454. }
  7455. },
  7456. feral: {
  7457. height: math.unit(2500, "cm"),
  7458. weight: math.unit(100000, "lbs"),
  7459. name: "Feral",
  7460. image: {
  7461. source: "./media/characters/malfressa/feral.svg",
  7462. extra: 2108 / 837,
  7463. bottom: 0.02
  7464. }
  7465. },
  7466. },
  7467. [
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(370, "cm")
  7471. },
  7472. {
  7473. name: "Macro",
  7474. height: math.unit(300, "meters"),
  7475. default: true
  7476. }
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7481. {
  7482. front: {
  7483. height: math.unit(6, "feet"),
  7484. weight: math.unit(60, "kg"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/jaro/front.svg",
  7488. extra: 845/817,
  7489. bottom: 45/890
  7490. }
  7491. },
  7492. back: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(60, "kg"),
  7495. name: "Back",
  7496. image: {
  7497. source: "./media/characters/jaro/back.svg",
  7498. extra: 847/817,
  7499. bottom: 34/881
  7500. }
  7501. },
  7502. },
  7503. [
  7504. {
  7505. name: "Micro",
  7506. height: math.unit(7, "inches")
  7507. },
  7508. {
  7509. name: "Normal",
  7510. height: math.unit(5.5, "feet"),
  7511. default: true
  7512. },
  7513. {
  7514. name: "Minimacro",
  7515. height: math.unit(20, "feet")
  7516. },
  7517. {
  7518. name: "Macro",
  7519. height: math.unit(200, "meters")
  7520. }
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7525. {
  7526. front: {
  7527. height: math.unit(6, "feet"),
  7528. weight: math.unit(195, "lb"),
  7529. name: "Front",
  7530. image: {
  7531. source: "./media/characters/rogue/front.svg"
  7532. }
  7533. },
  7534. },
  7535. [
  7536. {
  7537. name: "Macro",
  7538. height: math.unit(90, "feet"),
  7539. default: true
  7540. },
  7541. ]
  7542. ))
  7543. characterMakers.push(() => makeCharacter(
  7544. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7545. {
  7546. standing: {
  7547. height: math.unit(5 + 8 / 12, "feet"),
  7548. weight: math.unit(140, "lb"),
  7549. name: "Standing",
  7550. image: {
  7551. source: "./media/characters/piper/standing.svg",
  7552. extra: 1440/1284,
  7553. bottom: 66/1506
  7554. }
  7555. },
  7556. running: {
  7557. height: math.unit(5 + 8 / 12, "feet"),
  7558. weight: math.unit(140, "lb"),
  7559. name: "Running",
  7560. image: {
  7561. source: "./media/characters/piper/running.svg",
  7562. extra: 3948/3655,
  7563. bottom: 0/3948
  7564. }
  7565. },
  7566. sole: {
  7567. height: math.unit(0.81, "feet"),
  7568. weight: math.unit(2, "kg"),
  7569. name: "Sole",
  7570. image: {
  7571. source: "./media/characters/piper/sole.svg"
  7572. }
  7573. },
  7574. nipple: {
  7575. height: math.unit(0.25, "feet"),
  7576. weight: math.unit(1.5, "lb"),
  7577. name: "Nipple",
  7578. image: {
  7579. source: "./media/characters/piper/nipple.svg"
  7580. }
  7581. },
  7582. head: {
  7583. height: math.unit(1.1, "feet"),
  7584. name: "Head",
  7585. image: {
  7586. source: "./media/characters/piper/head.svg"
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Micro",
  7593. height: math.unit(2, "inches")
  7594. },
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(5 + 8 / 12, "feet")
  7598. },
  7599. {
  7600. name: "Macro",
  7601. height: math.unit(250, "feet"),
  7602. default: true
  7603. },
  7604. {
  7605. name: "Megamacro",
  7606. height: math.unit(7, "miles")
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(220, "lb"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/gemini/front.svg"
  7619. }
  7620. },
  7621. back: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(220, "lb"),
  7624. name: "Back",
  7625. image: {
  7626. source: "./media/characters/gemini/back.svg"
  7627. }
  7628. },
  7629. kneeling: {
  7630. height: math.unit(6 / 1.5, "feet"),
  7631. weight: math.unit(220, "lb"),
  7632. name: "Kneeling",
  7633. image: {
  7634. source: "./media/characters/gemini/kneeling.svg",
  7635. bottom: 0.02
  7636. }
  7637. },
  7638. },
  7639. [
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(300, "meters"),
  7643. default: true
  7644. },
  7645. {
  7646. name: "Megamacro",
  7647. height: math.unit(6900, "meters")
  7648. },
  7649. ]
  7650. ))
  7651. characterMakers.push(() => makeCharacter(
  7652. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7653. {
  7654. anthro: {
  7655. height: math.unit(2.35, "meters"),
  7656. weight: math.unit(73, "kg"),
  7657. name: "Anthro",
  7658. image: {
  7659. source: "./media/characters/alicia/anthro.svg",
  7660. extra: 2571 / 2385,
  7661. bottom: 75 / 2648
  7662. }
  7663. },
  7664. paw: {
  7665. height: math.unit(1.32, "feet"),
  7666. name: "Paw",
  7667. image: {
  7668. source: "./media/characters/alicia/paw.svg"
  7669. }
  7670. },
  7671. feral: {
  7672. height: math.unit(1.69, "meters"),
  7673. weight: math.unit(73, "kg"),
  7674. name: "Feral",
  7675. image: {
  7676. source: "./media/characters/alicia/feral.svg",
  7677. extra: 2123 / 1715,
  7678. bottom: 222 / 2349
  7679. }
  7680. },
  7681. },
  7682. [
  7683. {
  7684. name: "Normal",
  7685. height: math.unit(2.35, "meters")
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(60, "meters"),
  7690. default: true
  7691. },
  7692. {
  7693. name: "Megamacro",
  7694. height: math.unit(10000, "kilometers")
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7700. {
  7701. front: {
  7702. height: math.unit(7, "feet"),
  7703. weight: math.unit(250, "lbs"),
  7704. name: "Front",
  7705. image: {
  7706. source: "./media/characters/archy/front.svg"
  7707. }
  7708. }
  7709. },
  7710. [
  7711. {
  7712. name: "Micro",
  7713. height: math.unit(1, "inch")
  7714. },
  7715. {
  7716. name: "Shorty",
  7717. height: math.unit(5, "feet")
  7718. },
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(7, "feet")
  7722. },
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(600, "meters"),
  7726. default: true
  7727. },
  7728. {
  7729. name: "Megamacro",
  7730. height: math.unit(1, "mile")
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(1.65, "meters"),
  7739. weight: math.unit(74, "kg"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/berri/front.svg",
  7743. extra: 857 / 837,
  7744. bottom: 18 / 877
  7745. }
  7746. },
  7747. bum: {
  7748. height: math.unit(1.46, "feet"),
  7749. name: "Bum",
  7750. image: {
  7751. source: "./media/characters/berri/bum.svg"
  7752. }
  7753. },
  7754. mouth: {
  7755. height: math.unit(0.44, "feet"),
  7756. name: "Mouth",
  7757. image: {
  7758. source: "./media/characters/berri/mouth.svg"
  7759. }
  7760. },
  7761. paw: {
  7762. height: math.unit(0.826, "feet"),
  7763. name: "Paw",
  7764. image: {
  7765. source: "./media/characters/berri/paw.svg"
  7766. }
  7767. },
  7768. },
  7769. [
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(1.65, "meters")
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(60, "m"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Megamacro",
  7781. height: math.unit(9.213, "km")
  7782. },
  7783. {
  7784. name: "Planet Eater",
  7785. height: math.unit(489, "megameters")
  7786. },
  7787. {
  7788. name: "Teramacro",
  7789. height: math.unit(2471635000000, "meters")
  7790. },
  7791. {
  7792. name: "Examacro",
  7793. height: math.unit(8.0624e+26, "meters")
  7794. }
  7795. ]
  7796. ))
  7797. characterMakers.push(() => makeCharacter(
  7798. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7799. {
  7800. front: {
  7801. height: math.unit(1.72, "meters"),
  7802. weight: math.unit(68, "kg"),
  7803. name: "Front",
  7804. image: {
  7805. source: "./media/characters/lexi/front.svg"
  7806. }
  7807. }
  7808. },
  7809. [
  7810. {
  7811. name: "Very Smol",
  7812. height: math.unit(10, "mm")
  7813. },
  7814. {
  7815. name: "Micro",
  7816. height: math.unit(6.8, "cm"),
  7817. default: true
  7818. },
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(1.72, "m")
  7822. }
  7823. ]
  7824. ))
  7825. characterMakers.push(() => makeCharacter(
  7826. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7827. {
  7828. front: {
  7829. height: math.unit(1.69, "meters"),
  7830. weight: math.unit(68, "kg"),
  7831. name: "Front",
  7832. image: {
  7833. source: "./media/characters/martin/front.svg",
  7834. extra: 596 / 581
  7835. }
  7836. }
  7837. },
  7838. [
  7839. {
  7840. name: "Micro",
  7841. height: math.unit(6.85, "cm"),
  7842. default: true
  7843. },
  7844. {
  7845. name: "Normal",
  7846. height: math.unit(1.69, "m")
  7847. }
  7848. ]
  7849. ))
  7850. characterMakers.push(() => makeCharacter(
  7851. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7852. {
  7853. front: {
  7854. height: math.unit(1.69, "meters"),
  7855. weight: math.unit(68, "kg"),
  7856. name: "Front",
  7857. image: {
  7858. source: "./media/characters/juno/front.svg"
  7859. }
  7860. }
  7861. },
  7862. [
  7863. {
  7864. name: "Micro",
  7865. height: math.unit(7, "cm")
  7866. },
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(1.89, "m")
  7870. },
  7871. {
  7872. name: "Macro",
  7873. height: math.unit(353, "meters"),
  7874. default: true
  7875. }
  7876. ]
  7877. ))
  7878. characterMakers.push(() => makeCharacter(
  7879. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7880. {
  7881. front: {
  7882. height: math.unit(1.93, "meters"),
  7883. weight: math.unit(83, "kg"),
  7884. name: "Front",
  7885. image: {
  7886. source: "./media/characters/samantha/front.svg"
  7887. }
  7888. },
  7889. frontClothed: {
  7890. height: math.unit(1.93, "meters"),
  7891. weight: math.unit(83, "kg"),
  7892. name: "Front (Clothed)",
  7893. image: {
  7894. source: "./media/characters/samantha/front-clothed.svg"
  7895. }
  7896. },
  7897. back: {
  7898. height: math.unit(1.93, "meters"),
  7899. weight: math.unit(83, "kg"),
  7900. name: "Back",
  7901. image: {
  7902. source: "./media/characters/samantha/back.svg"
  7903. }
  7904. },
  7905. },
  7906. [
  7907. {
  7908. name: "Normal",
  7909. height: math.unit(1.93, "m")
  7910. },
  7911. {
  7912. name: "Macro",
  7913. height: math.unit(74, "meters"),
  7914. default: true
  7915. },
  7916. {
  7917. name: "Macro+",
  7918. height: math.unit(223, "meters"),
  7919. },
  7920. {
  7921. name: "Megamacro",
  7922. height: math.unit(8381, "meters"),
  7923. },
  7924. {
  7925. name: "Megamacro+",
  7926. height: math.unit(12000, "kilometers")
  7927. },
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(1.92, "meters"),
  7935. weight: math.unit(80, "kg"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/dr-clay/front.svg"
  7939. }
  7940. },
  7941. frontClothed: {
  7942. height: math.unit(1.92, "meters"),
  7943. weight: math.unit(80, "kg"),
  7944. name: "Front (Clothed)",
  7945. image: {
  7946. source: "./media/characters/dr-clay/front-clothed.svg"
  7947. }
  7948. }
  7949. },
  7950. [
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(1.92, "m")
  7954. },
  7955. {
  7956. name: "Macro",
  7957. height: math.unit(214, "meters"),
  7958. default: true
  7959. },
  7960. {
  7961. name: "Macro+",
  7962. height: math.unit(12.237, "meters"),
  7963. },
  7964. {
  7965. name: "Megamacro",
  7966. height: math.unit(557, "megameters"),
  7967. },
  7968. {
  7969. name: "Unimaginable",
  7970. height: math.unit(120e9, "lightyears")
  7971. },
  7972. ]
  7973. ))
  7974. characterMakers.push(() => makeCharacter(
  7975. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7976. {
  7977. front: {
  7978. height: math.unit(2, "meters"),
  7979. weight: math.unit(80, "kg"),
  7980. name: "Front",
  7981. image: {
  7982. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7983. }
  7984. }
  7985. },
  7986. [
  7987. {
  7988. name: "Teramacro",
  7989. height: math.unit(500000, "lightyears"),
  7990. default: true
  7991. },
  7992. ]
  7993. ))
  7994. characterMakers.push(() => makeCharacter(
  7995. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7996. {
  7997. crux: {
  7998. height: math.unit(2, "meters"),
  7999. weight: math.unit(150, "kg"),
  8000. name: "Crux",
  8001. image: {
  8002. source: "./media/characters/vemus/crux.svg",
  8003. extra: 1074/936,
  8004. bottom: 23/1097
  8005. }
  8006. },
  8007. skunkTanuki: {
  8008. height: math.unit(2, "meters"),
  8009. weight: math.unit(150, "kg"),
  8010. name: "Skunk-Tanuki",
  8011. image: {
  8012. source: "./media/characters/vemus/skunk-tanuki.svg",
  8013. extra: 926/893,
  8014. bottom: 20/946
  8015. }
  8016. },
  8017. },
  8018. [
  8019. {
  8020. name: "Normal",
  8021. height: math.unit(4, "meters"),
  8022. default: true
  8023. },
  8024. {
  8025. name: "Big",
  8026. height: math.unit(8, "meters")
  8027. },
  8028. {
  8029. name: "Macro",
  8030. height: math.unit(100, "meters")
  8031. },
  8032. {
  8033. name: "Macro+",
  8034. height: math.unit(1500, "meters")
  8035. },
  8036. {
  8037. name: "Stellar",
  8038. height: math.unit(14e8, "meters")
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(2, "meters"),
  8047. weight: math.unit(70, "kg"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/beherit/front.svg",
  8051. extra: 1234/1109,
  8052. bottom: 55/1289
  8053. }
  8054. }
  8055. },
  8056. [
  8057. {
  8058. name: "Normal",
  8059. height: math.unit(6, "feet")
  8060. },
  8061. {
  8062. name: "Lorg",
  8063. height: math.unit(25, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Lorger",
  8068. height: math.unit(75, "feet")
  8069. },
  8070. {
  8071. name: "Macro",
  8072. height: math.unit(200, "meters")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(2, "meters"),
  8081. weight: math.unit(150, "kg"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/everett/front.svg",
  8085. extra: 1017/866,
  8086. bottom: 86/1103
  8087. }
  8088. },
  8089. paw: {
  8090. height: math.unit(2 / 3.6, "meters"),
  8091. name: "Paw",
  8092. image: {
  8093. source: "./media/characters/everett/paw.svg"
  8094. }
  8095. },
  8096. },
  8097. [
  8098. {
  8099. name: "Normal",
  8100. height: math.unit(15, "feet"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Lorg",
  8105. height: math.unit(70, "feet"),
  8106. default: true
  8107. },
  8108. {
  8109. name: "Lorger",
  8110. height: math.unit(250, "feet")
  8111. },
  8112. {
  8113. name: "Macro",
  8114. height: math.unit(500, "meters")
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(2, "meters"),
  8123. weight: math.unit(86, "kg"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/rose/front.svg",
  8127. extra: 1785/1636,
  8128. bottom: 30/1815
  8129. },
  8130. form: "liom",
  8131. default: true
  8132. },
  8133. frontSporty: {
  8134. height: math.unit(2, "meters"),
  8135. weight: math.unit(86, "kg"),
  8136. name: "Front (Sporty)",
  8137. image: {
  8138. source: "./media/characters/rose/front-sporty.svg",
  8139. extra: 350/335,
  8140. bottom: 10/360
  8141. },
  8142. form: "liom"
  8143. },
  8144. frontAlt: {
  8145. height: math.unit(1.6, "meters"),
  8146. weight: math.unit(86, "kg"),
  8147. name: "Front (Alt)",
  8148. image: {
  8149. source: "./media/characters/rose/front-alt.svg",
  8150. extra: 299/283,
  8151. bottom: 3/302
  8152. },
  8153. form: "liom"
  8154. },
  8155. plush: {
  8156. height: math.unit(2, "meters"),
  8157. weight: math.unit(86/3, "kg"),
  8158. name: "Plush",
  8159. image: {
  8160. source: "./media/characters/rose/plush.svg",
  8161. extra: 361/337,
  8162. bottom: 11/372
  8163. },
  8164. form: "plush",
  8165. default: true
  8166. },
  8167. faeStanding: {
  8168. height: math.unit(10, "cm"),
  8169. weight: math.unit(10, "grams"),
  8170. name: "Standing",
  8171. image: {
  8172. source: "./media/characters/rose/fae-standing.svg",
  8173. extra: 1189/1060,
  8174. bottom: 27/1216
  8175. },
  8176. form: "fae",
  8177. default: true
  8178. },
  8179. faeSitting: {
  8180. height: math.unit(5, "cm"),
  8181. weight: math.unit(10, "grams"),
  8182. name: "Sitting",
  8183. image: {
  8184. source: "./media/characters/rose/fae-sitting.svg",
  8185. extra: 737/577,
  8186. bottom: 356/1093
  8187. },
  8188. form: "fae"
  8189. },
  8190. faePaw: {
  8191. height: math.unit(1.35, "cm"),
  8192. name: "Paw",
  8193. image: {
  8194. source: "./media/characters/rose/fae-paw.svg"
  8195. },
  8196. form: "fae"
  8197. },
  8198. },
  8199. [
  8200. {
  8201. name: "True Micro",
  8202. height: math.unit(9, "cm"),
  8203. form: "liom"
  8204. },
  8205. {
  8206. name: "Micro",
  8207. height: math.unit(16, "cm"),
  8208. form: "liom"
  8209. },
  8210. {
  8211. name: "Normal",
  8212. height: math.unit(1.85, "meters"),
  8213. default: true,
  8214. form: "liom"
  8215. },
  8216. {
  8217. name: "Mini-Macro",
  8218. height: math.unit(5, "meters"),
  8219. form: "liom"
  8220. },
  8221. {
  8222. name: "Macro",
  8223. height: math.unit(15, "meters"),
  8224. form: "liom"
  8225. },
  8226. {
  8227. name: "True Macro",
  8228. height: math.unit(40, "meters"),
  8229. form: "liom"
  8230. },
  8231. {
  8232. name: "City Scale",
  8233. height: math.unit(1, "km"),
  8234. form: "liom"
  8235. },
  8236. {
  8237. name: "Plushie",
  8238. height: math.unit(9, "cm"),
  8239. form: "plush",
  8240. default: true
  8241. },
  8242. {
  8243. name: "Fae",
  8244. height: math.unit(10, "cm"),
  8245. form: "fae",
  8246. default: true
  8247. },
  8248. ],
  8249. {
  8250. "liom": {
  8251. name: "Liom"
  8252. },
  8253. "plush": {
  8254. name: "Plush"
  8255. },
  8256. "fae": {
  8257. name: "Fae Fox",
  8258. default: true
  8259. }
  8260. }
  8261. ))
  8262. characterMakers.push(() => makeCharacter(
  8263. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8264. {
  8265. front: {
  8266. height: math.unit(2, "meters"),
  8267. weight: math.unit(350, "lbs"),
  8268. name: "Front",
  8269. image: {
  8270. source: "./media/characters/regal/front.svg"
  8271. }
  8272. },
  8273. back: {
  8274. height: math.unit(2, "meters"),
  8275. weight: math.unit(350, "lbs"),
  8276. name: "Back",
  8277. image: {
  8278. source: "./media/characters/regal/back.svg"
  8279. }
  8280. },
  8281. },
  8282. [
  8283. {
  8284. name: "Macro",
  8285. height: math.unit(350, "feet"),
  8286. default: true
  8287. }
  8288. ]
  8289. ))
  8290. characterMakers.push(() => makeCharacter(
  8291. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8292. {
  8293. standing: {
  8294. height: math.unit(4 + 11/12, "feet"),
  8295. weight: math.unit(100, "lb"),
  8296. name: "Standing",
  8297. image: {
  8298. source: "./media/characters/opal/standing.svg",
  8299. extra: 1588/1513,
  8300. bottom: 23/1611
  8301. }
  8302. },
  8303. sitting: {
  8304. height: math.unit(2.3, "feet"),
  8305. weight: math.unit(100, "lb"),
  8306. name: "Sitting",
  8307. image: {
  8308. source: "./media/characters/opal/sitting.svg",
  8309. extra: 1031/892,
  8310. bottom: 142/1173
  8311. }
  8312. },
  8313. hand: {
  8314. height: math.unit(0.59, "feet"),
  8315. name: "Hand",
  8316. image: {
  8317. source: "./media/characters/opal/hand.svg"
  8318. }
  8319. },
  8320. foot: {
  8321. height: math.unit(0.61, "feet"),
  8322. name: "Foot",
  8323. image: {
  8324. source: "./media/characters/opal/foot.svg"
  8325. }
  8326. },
  8327. },
  8328. [
  8329. {
  8330. name: "Small",
  8331. height: math.unit(4 + 11 / 12, "feet")
  8332. },
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(20, "feet"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(120, "feet")
  8341. },
  8342. {
  8343. name: "Megamacro",
  8344. height: math.unit(80, "miles")
  8345. },
  8346. {
  8347. name: "True Size",
  8348. height: math.unit(100000, "lightyears")
  8349. },
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(6, "feet"),
  8357. weight: math.unit(200, "lbs"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/vector-wuff/front.svg"
  8361. }
  8362. }
  8363. },
  8364. [
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(2.8, "meters")
  8368. },
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(450, "meters"),
  8372. default: true
  8373. },
  8374. {
  8375. name: "Megamacro",
  8376. height: math.unit(15, "kilometers")
  8377. }
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8382. {
  8383. front: {
  8384. height: math.unit(6, "feet"),
  8385. weight: math.unit(256, "lbs"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/dannik/front.svg"
  8389. }
  8390. }
  8391. },
  8392. [
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(69.57, "meters"),
  8396. default: true
  8397. },
  8398. ]
  8399. ))
  8400. characterMakers.push(() => makeCharacter(
  8401. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8402. {
  8403. front: {
  8404. height: math.unit(6, "feet"),
  8405. weight: math.unit(120, "lbs"),
  8406. name: "Front",
  8407. image: {
  8408. source: "./media/characters/azura-saharah/front.svg"
  8409. }
  8410. },
  8411. back: {
  8412. height: math.unit(6, "feet"),
  8413. weight: math.unit(120, "lbs"),
  8414. name: "Back",
  8415. image: {
  8416. source: "./media/characters/azura-saharah/back.svg"
  8417. }
  8418. },
  8419. },
  8420. [
  8421. {
  8422. name: "Macro",
  8423. height: math.unit(100, "feet"),
  8424. default: true
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8430. {
  8431. side: {
  8432. height: math.unit(5 + 4 / 12, "feet"),
  8433. weight: math.unit(163, "lbs"),
  8434. name: "Side",
  8435. image: {
  8436. source: "./media/characters/kennedy/side.svg"
  8437. }
  8438. }
  8439. },
  8440. [
  8441. {
  8442. name: "Standard Doggo",
  8443. height: math.unit(5 + 4 / 12, "feet")
  8444. },
  8445. {
  8446. name: "Big Doggo",
  8447. height: math.unit(25 + 3 / 12, "feet"),
  8448. default: true
  8449. },
  8450. ]
  8451. ))
  8452. characterMakers.push(() => makeCharacter(
  8453. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8454. {
  8455. front: {
  8456. height: math.unit(5 + 5/12, "feet"),
  8457. weight: math.unit(100, "lbs"),
  8458. name: "Front",
  8459. image: {
  8460. source: "./media/characters/odios-de-lunar/front.svg",
  8461. extra: 1468/1323,
  8462. bottom: 22/1490
  8463. }
  8464. }
  8465. },
  8466. [
  8467. {
  8468. name: "Micro",
  8469. height: math.unit(3, "inches")
  8470. },
  8471. {
  8472. name: "Normal",
  8473. height: math.unit(5.5, "feet"),
  8474. default: true
  8475. },
  8476. {
  8477. name: "Macro",
  8478. height: math.unit(100, "feet")
  8479. },
  8480. ]
  8481. ))
  8482. characterMakers.push(() => makeCharacter(
  8483. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8484. {
  8485. back: {
  8486. height: math.unit(6, "feet"),
  8487. weight: math.unit(220, "lbs"),
  8488. name: "Back",
  8489. image: {
  8490. source: "./media/characters/mandake/back.svg"
  8491. }
  8492. }
  8493. },
  8494. [
  8495. {
  8496. name: "Normal",
  8497. height: math.unit(7, "feet"),
  8498. default: true
  8499. },
  8500. {
  8501. name: "Macro",
  8502. height: math.unit(78, "feet")
  8503. },
  8504. {
  8505. name: "Macro+",
  8506. height: math.unit(300, "meters")
  8507. },
  8508. {
  8509. name: "Macro++",
  8510. height: math.unit(2400, "feet")
  8511. },
  8512. {
  8513. name: "Megamacro",
  8514. height: math.unit(5167, "meters")
  8515. },
  8516. {
  8517. name: "Gigamacro",
  8518. height: math.unit(41769, "miles")
  8519. },
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(120, "lbs"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/yozey/front.svg"
  8531. }
  8532. },
  8533. frontAlt: {
  8534. height: math.unit(6, "feet"),
  8535. weight: math.unit(120, "lbs"),
  8536. name: "Front (Alt)",
  8537. image: {
  8538. source: "./media/characters/yozey/front-alt.svg"
  8539. }
  8540. },
  8541. side: {
  8542. height: math.unit(6, "feet"),
  8543. weight: math.unit(120, "lbs"),
  8544. name: "Side",
  8545. image: {
  8546. source: "./media/characters/yozey/side.svg"
  8547. }
  8548. },
  8549. },
  8550. [
  8551. {
  8552. name: "Micro",
  8553. height: math.unit(3, "inches"),
  8554. default: true
  8555. },
  8556. {
  8557. name: "Normal",
  8558. height: math.unit(6, "feet")
  8559. }
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(6, "feet"),
  8567. weight: math.unit(103, "lbs"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/valeska-voss/front.svg"
  8571. }
  8572. }
  8573. },
  8574. [
  8575. {
  8576. name: "Mini-Sized Sub",
  8577. height: math.unit(3.1, "inches")
  8578. },
  8579. {
  8580. name: "Mid-Sized Sub",
  8581. height: math.unit(6.2, "inches")
  8582. },
  8583. {
  8584. name: "Full-Sized Sub",
  8585. height: math.unit(9.3, "inches")
  8586. },
  8587. {
  8588. name: "Normal",
  8589. height: math.unit(5 + 2 / 12, "foot"),
  8590. default: true
  8591. },
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(6, "feet"),
  8599. weight: math.unit(160, "lbs"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/gene-zeta/front.svg",
  8603. extra: 3006 / 2826,
  8604. bottom: 182 / 3188
  8605. }
  8606. }
  8607. },
  8608. [
  8609. {
  8610. name: "Micro",
  8611. height: math.unit(6, "inches")
  8612. },
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(5 + 11 / 12, "foot"),
  8616. default: true
  8617. },
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(140, "feet")
  8621. },
  8622. {
  8623. name: "Supercharged",
  8624. height: math.unit(2500, "feet")
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8630. {
  8631. front: {
  8632. height: math.unit(6, "feet"),
  8633. weight: math.unit(350, "lbs"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/razinox/front.svg",
  8637. extra: 1686 / 1548,
  8638. bottom: 28.2 / 1868
  8639. }
  8640. },
  8641. back: {
  8642. height: math.unit(6, "feet"),
  8643. weight: math.unit(350, "lbs"),
  8644. name: "Back",
  8645. image: {
  8646. source: "./media/characters/razinox/back.svg",
  8647. extra: 1660 / 1590,
  8648. bottom: 15 / 1665
  8649. }
  8650. },
  8651. },
  8652. [
  8653. {
  8654. name: "Normal",
  8655. height: math.unit(10 + 8 / 12, "foot")
  8656. },
  8657. {
  8658. name: "Minimacro",
  8659. height: math.unit(15, "foot")
  8660. },
  8661. {
  8662. name: "Macro",
  8663. height: math.unit(60, "foot"),
  8664. default: true
  8665. },
  8666. {
  8667. name: "Megamacro",
  8668. height: math.unit(5, "miles")
  8669. },
  8670. {
  8671. name: "Gigamacro",
  8672. height: math.unit(6000, "miles")
  8673. },
  8674. ]
  8675. ))
  8676. characterMakers.push(() => makeCharacter(
  8677. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8678. {
  8679. front: {
  8680. height: math.unit(6, "feet"),
  8681. weight: math.unit(150, "lbs"),
  8682. name: "Front",
  8683. image: {
  8684. source: "./media/characters/cobalt/front.svg"
  8685. }
  8686. }
  8687. },
  8688. [
  8689. {
  8690. name: "Normal",
  8691. height: math.unit(8 + 1 / 12, "foot")
  8692. },
  8693. {
  8694. name: "Macro",
  8695. height: math.unit(111, "foot"),
  8696. default: true
  8697. },
  8698. {
  8699. name: "Supracosmic",
  8700. height: math.unit(1e42, "feet")
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8706. {
  8707. front: {
  8708. height: math.unit(5, "inches"),
  8709. name: "Front",
  8710. image: {
  8711. source: "./media/characters/amanda/front.svg",
  8712. extra: 926/791,
  8713. bottom: 38/964
  8714. }
  8715. },
  8716. back: {
  8717. height: math.unit(5, "inches"),
  8718. name: "Back",
  8719. image: {
  8720. source: "./media/characters/amanda/back.svg",
  8721. extra: 909/805,
  8722. bottom: 43/952
  8723. }
  8724. },
  8725. },
  8726. [
  8727. {
  8728. name: "Micro",
  8729. height: math.unit(5, "inches"),
  8730. default: true
  8731. },
  8732. ]
  8733. ))
  8734. characterMakers.push(() => makeCharacter(
  8735. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8736. {
  8737. front: {
  8738. height: math.unit(2.75, "meters"),
  8739. weight: math.unit(1200, "lb"),
  8740. name: "Front",
  8741. image: {
  8742. source: "./media/characters/teal/front.svg",
  8743. extra: 2463 / 2320,
  8744. bottom: 166 / 2629
  8745. }
  8746. },
  8747. back: {
  8748. height: math.unit(2.75, "meters"),
  8749. weight: math.unit(1200, "lb"),
  8750. name: "Back",
  8751. image: {
  8752. source: "./media/characters/teal/back.svg",
  8753. extra: 2580 / 2489,
  8754. bottom: 151 / 2731
  8755. }
  8756. },
  8757. sitting: {
  8758. height: math.unit(1.9, "meters"),
  8759. weight: math.unit(1200, "lb"),
  8760. name: "Sitting",
  8761. image: {
  8762. source: "./media/characters/teal/sitting.svg",
  8763. extra: 623 / 590,
  8764. bottom: 121 / 744
  8765. }
  8766. },
  8767. standing: {
  8768. height: math.unit(2.75, "meters"),
  8769. weight: math.unit(1200, "lb"),
  8770. name: "Standing",
  8771. image: {
  8772. source: "./media/characters/teal/standing.svg",
  8773. extra: 923 / 893,
  8774. bottom: 60 / 983
  8775. }
  8776. },
  8777. stretching: {
  8778. height: math.unit(3.65, "meters"),
  8779. weight: math.unit(1200, "lb"),
  8780. name: "Stretching",
  8781. image: {
  8782. source: "./media/characters/teal/stretching.svg",
  8783. extra: 1276 / 1244,
  8784. bottom: 0 / 1276
  8785. }
  8786. },
  8787. legged: {
  8788. height: math.unit(1.3, "meters"),
  8789. weight: math.unit(100, "lb"),
  8790. name: "Legged",
  8791. image: {
  8792. source: "./media/characters/teal/legged.svg",
  8793. extra: 462 / 437,
  8794. bottom: 24 / 486
  8795. }
  8796. },
  8797. naga: {
  8798. height: math.unit(5.4, "meters"),
  8799. weight: math.unit(4000, "lb"),
  8800. name: "Naga",
  8801. image: {
  8802. source: "./media/characters/teal/naga.svg",
  8803. extra: 1902 / 1858,
  8804. bottom: 0 / 1902
  8805. }
  8806. },
  8807. hand: {
  8808. height: math.unit(0.52, "meters"),
  8809. name: "Hand",
  8810. image: {
  8811. source: "./media/characters/teal/hand.svg"
  8812. }
  8813. },
  8814. maw: {
  8815. height: math.unit(0.43, "meters"),
  8816. name: "Maw",
  8817. image: {
  8818. source: "./media/characters/teal/maw.svg"
  8819. }
  8820. },
  8821. slit: {
  8822. height: math.unit(0.25, "meters"),
  8823. name: "Slit",
  8824. image: {
  8825. source: "./media/characters/teal/slit.svg"
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Normal",
  8832. height: math.unit(2.75, "meters"),
  8833. default: true
  8834. },
  8835. {
  8836. name: "Macro",
  8837. height: math.unit(300, "feet")
  8838. },
  8839. {
  8840. name: "Macro+",
  8841. height: math.unit(2000, "feet")
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8847. {
  8848. frontCat: {
  8849. height: math.unit(6, "feet"),
  8850. weight: math.unit(180, "lbs"),
  8851. name: "Front (Cat)",
  8852. image: {
  8853. source: "./media/characters/ravin-amulet/front-cat.svg"
  8854. }
  8855. },
  8856. frontCatAlt: {
  8857. height: math.unit(6, "feet"),
  8858. weight: math.unit(180, "lbs"),
  8859. name: "Front (Alt, Cat)",
  8860. image: {
  8861. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8862. }
  8863. },
  8864. frontWerewolf: {
  8865. height: math.unit(6 * 1.2, "feet"),
  8866. weight: math.unit(225, "lbs"),
  8867. name: "Front (Werewolf)",
  8868. image: {
  8869. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8870. }
  8871. },
  8872. backWerewolf: {
  8873. height: math.unit(6 * 1.2, "feet"),
  8874. weight: math.unit(225, "lbs"),
  8875. name: "Back (Werewolf)",
  8876. image: {
  8877. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Nano",
  8884. height: math.unit(1, "micrometer")
  8885. },
  8886. {
  8887. name: "Micro",
  8888. height: math.unit(1, "inch")
  8889. },
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(6, "feet"),
  8893. default: true
  8894. },
  8895. {
  8896. name: "Macro",
  8897. height: math.unit(60, "feet")
  8898. }
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8903. {
  8904. front: {
  8905. height: math.unit(6, "feet"),
  8906. weight: math.unit(165, "lbs"),
  8907. name: "Front",
  8908. image: {
  8909. source: "./media/characters/fluoresce/front.svg"
  8910. }
  8911. }
  8912. },
  8913. [
  8914. {
  8915. name: "Micro",
  8916. height: math.unit(6, "cm")
  8917. },
  8918. {
  8919. name: "Normal",
  8920. height: math.unit(5 + 7 / 12, "feet"),
  8921. default: true
  8922. },
  8923. {
  8924. name: "Macro",
  8925. height: math.unit(56, "feet")
  8926. },
  8927. {
  8928. name: "Megamacro",
  8929. height: math.unit(1.9, "miles")
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8935. {
  8936. front: {
  8937. height: math.unit(9 + 6 / 12, "feet"),
  8938. weight: math.unit(523, "lbs"),
  8939. name: "Side",
  8940. image: {
  8941. source: "./media/characters/aurora/side.svg",
  8942. extra: 474/393,
  8943. bottom: 5/479
  8944. }
  8945. }
  8946. },
  8947. [
  8948. {
  8949. name: "Normal",
  8950. height: math.unit(9 + 6 / 12, "feet")
  8951. },
  8952. {
  8953. name: "Macro",
  8954. height: math.unit(96, "feet"),
  8955. default: true
  8956. },
  8957. {
  8958. name: "Macro+",
  8959. height: math.unit(243, "feet")
  8960. },
  8961. ]
  8962. ))
  8963. characterMakers.push(() => makeCharacter(
  8964. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8965. {
  8966. front: {
  8967. height: math.unit(194, "cm"),
  8968. weight: math.unit(90, "kg"),
  8969. name: "Front",
  8970. image: {
  8971. source: "./media/characters/ranek/front.svg",
  8972. extra: 1862/1791,
  8973. bottom: 80/1942
  8974. }
  8975. },
  8976. back: {
  8977. height: math.unit(194, "cm"),
  8978. weight: math.unit(90, "kg"),
  8979. name: "Back",
  8980. image: {
  8981. source: "./media/characters/ranek/back.svg",
  8982. extra: 1853/1787,
  8983. bottom: 74/1927
  8984. }
  8985. },
  8986. feral: {
  8987. height: math.unit(30, "cm"),
  8988. weight: math.unit(1.6, "lbs"),
  8989. name: "Feral",
  8990. image: {
  8991. source: "./media/characters/ranek/feral.svg",
  8992. extra: 990/631,
  8993. bottom: 29/1019
  8994. }
  8995. },
  8996. },
  8997. [
  8998. {
  8999. name: "Normal",
  9000. height: math.unit(194, "cm"),
  9001. default: true
  9002. },
  9003. {
  9004. name: "Macro",
  9005. height: math.unit(100, "meters")
  9006. },
  9007. ]
  9008. ))
  9009. characterMakers.push(() => makeCharacter(
  9010. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9011. {
  9012. front: {
  9013. height: math.unit(5 + 6 / 12, "feet"),
  9014. weight: math.unit(153, "lbs"),
  9015. name: "Front",
  9016. image: {
  9017. source: "./media/characters/andrew-cooper/front.svg"
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Nano",
  9024. height: math.unit(1, "mm")
  9025. },
  9026. {
  9027. name: "Micro",
  9028. height: math.unit(2, "inches")
  9029. },
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(5 + 6 / 12, "feet"),
  9033. default: true
  9034. }
  9035. ]
  9036. ))
  9037. characterMakers.push(() => makeCharacter(
  9038. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9039. {
  9040. front: {
  9041. height: math.unit(6, "feet"),
  9042. weight: math.unit(180, "lbs"),
  9043. name: "Front",
  9044. image: {
  9045. source: "./media/characters/akane-sato/front.svg",
  9046. extra: 1219 / 1140
  9047. }
  9048. },
  9049. back: {
  9050. height: math.unit(6, "feet"),
  9051. weight: math.unit(180, "lbs"),
  9052. name: "Back",
  9053. image: {
  9054. source: "./media/characters/akane-sato/back.svg",
  9055. extra: 1219 / 1170
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Normal",
  9062. height: math.unit(2.5, "meters")
  9063. },
  9064. {
  9065. name: "Macro",
  9066. height: math.unit(250, "meters"),
  9067. default: true
  9068. },
  9069. {
  9070. name: "Megamacro",
  9071. height: math.unit(25, "km")
  9072. },
  9073. ]
  9074. ))
  9075. characterMakers.push(() => makeCharacter(
  9076. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9077. {
  9078. front: {
  9079. height: math.unit(6, "feet"),
  9080. weight: math.unit(65, "kg"),
  9081. name: "Front",
  9082. image: {
  9083. source: "./media/characters/rook/front.svg",
  9084. extra: 960 / 950
  9085. }
  9086. }
  9087. },
  9088. [
  9089. {
  9090. name: "Normal",
  9091. height: math.unit(8.8, "feet")
  9092. },
  9093. {
  9094. name: "Macro",
  9095. height: math.unit(88, "feet"),
  9096. default: true
  9097. },
  9098. {
  9099. name: "Megamacro",
  9100. height: math.unit(8, "miles")
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(12 + 2 / 12, "feet"),
  9109. weight: math.unit(808, "lbs"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/prodigy/front.svg"
  9113. }
  9114. }
  9115. },
  9116. [
  9117. {
  9118. name: "Normal",
  9119. height: math.unit(12 + 2 / 12, "feet"),
  9120. default: true
  9121. },
  9122. {
  9123. name: "Macro",
  9124. height: math.unit(143, "feet")
  9125. },
  9126. {
  9127. name: "Macro+",
  9128. height: math.unit(400, "feet")
  9129. },
  9130. ]
  9131. ))
  9132. characterMakers.push(() => makeCharacter(
  9133. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9134. {
  9135. front: {
  9136. height: math.unit(6, "feet"),
  9137. weight: math.unit(225, "lbs"),
  9138. name: "Front",
  9139. image: {
  9140. source: "./media/characters/daniel/front.svg"
  9141. }
  9142. },
  9143. leaning: {
  9144. height: math.unit(6, "feet"),
  9145. weight: math.unit(225, "lbs"),
  9146. name: "Leaning",
  9147. image: {
  9148. source: "./media/characters/daniel/leaning.svg"
  9149. }
  9150. },
  9151. },
  9152. [
  9153. {
  9154. name: "Macro",
  9155. height: math.unit(1000, "feet"),
  9156. default: true
  9157. },
  9158. ]
  9159. ))
  9160. characterMakers.push(() => makeCharacter(
  9161. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9162. {
  9163. front: {
  9164. height: math.unit(6, "feet"),
  9165. weight: math.unit(88, "lbs"),
  9166. name: "Front",
  9167. image: {
  9168. source: "./media/characters/chiros/front.svg",
  9169. extra: 306 / 226
  9170. }
  9171. },
  9172. side: {
  9173. height: math.unit(6, "feet"),
  9174. weight: math.unit(88, "lbs"),
  9175. name: "Side",
  9176. image: {
  9177. source: "./media/characters/chiros/side.svg",
  9178. extra: 306 / 226
  9179. }
  9180. },
  9181. },
  9182. [
  9183. {
  9184. name: "Normal",
  9185. height: math.unit(6, "cm"),
  9186. default: true
  9187. },
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9192. {
  9193. front: {
  9194. height: math.unit(6, "feet"),
  9195. weight: math.unit(100, "lbs"),
  9196. name: "Front",
  9197. image: {
  9198. source: "./media/characters/selka/front.svg",
  9199. extra: 947 / 887
  9200. }
  9201. }
  9202. },
  9203. [
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(5, "cm"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(8 + 3 / 12, "feet"),
  9216. weight: math.unit(424, "lbs"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/verin/front.svg",
  9220. extra: 1845 / 1550
  9221. }
  9222. },
  9223. frontArmored: {
  9224. height: math.unit(8 + 3 / 12, "feet"),
  9225. weight: math.unit(424, "lbs"),
  9226. name: "Front (Armored)",
  9227. image: {
  9228. source: "./media/characters/verin/front-armor.svg",
  9229. extra: 1845 / 1550,
  9230. bottom: 0.01
  9231. }
  9232. },
  9233. back: {
  9234. height: math.unit(8 + 3 / 12, "feet"),
  9235. weight: math.unit(424, "lbs"),
  9236. name: "Back",
  9237. image: {
  9238. source: "./media/characters/verin/back.svg",
  9239. bottom: 0.1,
  9240. extra: 1
  9241. }
  9242. },
  9243. foot: {
  9244. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9245. name: "Foot",
  9246. image: {
  9247. source: "./media/characters/verin/foot.svg"
  9248. }
  9249. },
  9250. },
  9251. [
  9252. {
  9253. name: "Normal",
  9254. height: math.unit(8 + 3 / 12, "feet")
  9255. },
  9256. {
  9257. name: "Minimacro",
  9258. height: math.unit(21, "feet"),
  9259. default: true
  9260. },
  9261. {
  9262. name: "Macro",
  9263. height: math.unit(626, "feet")
  9264. },
  9265. ]
  9266. ))
  9267. characterMakers.push(() => makeCharacter(
  9268. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9269. {
  9270. front: {
  9271. height: math.unit(2.718, "meters"),
  9272. weight: math.unit(150, "lbs"),
  9273. name: "Front",
  9274. image: {
  9275. source: "./media/characters/sovrim-terraquian/front.svg",
  9276. extra: 1752/1689,
  9277. bottom: 36/1788
  9278. }
  9279. },
  9280. back: {
  9281. height: math.unit(2.718, "meters"),
  9282. weight: math.unit(150, "lbs"),
  9283. name: "Back",
  9284. image: {
  9285. source: "./media/characters/sovrim-terraquian/back.svg",
  9286. extra: 1698/1657,
  9287. bottom: 58/1756
  9288. }
  9289. },
  9290. tongue: {
  9291. height: math.unit(2.865, "feet"),
  9292. name: "Tongue",
  9293. image: {
  9294. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9295. }
  9296. },
  9297. hand: {
  9298. height: math.unit(1.61, "feet"),
  9299. name: "Hand",
  9300. image: {
  9301. source: "./media/characters/sovrim-terraquian/hand.svg"
  9302. }
  9303. },
  9304. foot: {
  9305. height: math.unit(1.05, "feet"),
  9306. name: "Foot",
  9307. image: {
  9308. source: "./media/characters/sovrim-terraquian/foot.svg"
  9309. }
  9310. },
  9311. footAlt: {
  9312. height: math.unit(0.88, "feet"),
  9313. name: "Foot (Alt)",
  9314. image: {
  9315. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Micro",
  9322. height: math.unit(2, "inches")
  9323. },
  9324. {
  9325. name: "Small",
  9326. height: math.unit(1, "meter")
  9327. },
  9328. {
  9329. name: "Normal",
  9330. height: math.unit(Math.E, "meters"),
  9331. default: true
  9332. },
  9333. {
  9334. name: "Macro",
  9335. height: math.unit(20, "meters")
  9336. },
  9337. {
  9338. name: "Macro+",
  9339. height: math.unit(400, "meters")
  9340. },
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(7, "feet"),
  9348. weight: math.unit(489, "lbs"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/reece-silvermane/front.svg",
  9352. bottom: 0.02,
  9353. extra: 1
  9354. }
  9355. },
  9356. },
  9357. [
  9358. {
  9359. name: "Macro",
  9360. height: math.unit(1.5, "miles"),
  9361. default: true
  9362. },
  9363. ]
  9364. ))
  9365. characterMakers.push(() => makeCharacter(
  9366. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9367. {
  9368. front: {
  9369. height: math.unit(6, "feet"),
  9370. weight: math.unit(78, "kg"),
  9371. name: "Front",
  9372. image: {
  9373. source: "./media/characters/kane/front.svg",
  9374. extra: 978 / 899
  9375. }
  9376. },
  9377. back: {
  9378. height: math.unit(6, "feet"),
  9379. weight: math.unit(78, "kg"),
  9380. name: "Back",
  9381. image: {
  9382. source: "./media/characters/kane/back.svg",
  9383. extra: 1966/1800,
  9384. bottom: 0/1966
  9385. }
  9386. },
  9387. head: {
  9388. height: math.unit(1.4, "feet"),
  9389. name: "Head",
  9390. image: {
  9391. source: "./media/characters/kane/head.svg"
  9392. }
  9393. },
  9394. },
  9395. [
  9396. {
  9397. name: "Normal",
  9398. height: math.unit(2.1, "m"),
  9399. },
  9400. {
  9401. name: "Macro",
  9402. height: math.unit(1, "km"),
  9403. default: true
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9409. {
  9410. front: {
  9411. height: math.unit(6, "feet"),
  9412. weight: math.unit(200, "kg"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/tegon/front.svg",
  9416. bottom: 0.01,
  9417. extra: 1
  9418. }
  9419. },
  9420. },
  9421. [
  9422. {
  9423. name: "Micro",
  9424. height: math.unit(1, "inch")
  9425. },
  9426. {
  9427. name: "Normal",
  9428. height: math.unit(6 + 3 / 12, "feet"),
  9429. default: true
  9430. },
  9431. {
  9432. name: "Macro",
  9433. height: math.unit(300, "feet")
  9434. },
  9435. {
  9436. name: "Megamacro",
  9437. height: math.unit(69, "miles")
  9438. },
  9439. ]
  9440. ))
  9441. characterMakers.push(() => makeCharacter(
  9442. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9443. {
  9444. side: {
  9445. height: math.unit(6, "feet"),
  9446. weight: math.unit(2304, "lbs"),
  9447. name: "Side",
  9448. image: {
  9449. source: "./media/characters/arcturax/side.svg",
  9450. extra: 790 / 376,
  9451. bottom: 0.01
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Micro",
  9458. height: math.unit(2, "inch")
  9459. },
  9460. {
  9461. name: "Normal",
  9462. height: math.unit(6, "feet")
  9463. },
  9464. {
  9465. name: "Macro",
  9466. height: math.unit(39, "feet"),
  9467. default: true
  9468. },
  9469. {
  9470. name: "Megamacro",
  9471. height: math.unit(7, "miles")
  9472. },
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9477. {
  9478. front: {
  9479. height: math.unit(6, "feet"),
  9480. weight: math.unit(50, "lbs"),
  9481. name: "Front",
  9482. image: {
  9483. source: "./media/characters/sentri/front.svg",
  9484. extra: 1750 / 1570,
  9485. bottom: 0.025
  9486. }
  9487. },
  9488. frontAlt: {
  9489. height: math.unit(6, "feet"),
  9490. weight: math.unit(50, "lbs"),
  9491. name: "Front (Alt)",
  9492. image: {
  9493. source: "./media/characters/sentri/front-alt.svg",
  9494. extra: 1750 / 1570,
  9495. bottom: 0.025
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Normal",
  9502. height: math.unit(15, "feet"),
  9503. default: true
  9504. },
  9505. {
  9506. name: "Macro",
  9507. height: math.unit(2500, "feet")
  9508. }
  9509. ]
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9513. {
  9514. front: {
  9515. height: math.unit(5 + 8 / 12, "feet"),
  9516. weight: math.unit(130, "lbs"),
  9517. name: "Front",
  9518. image: {
  9519. source: "./media/characters/corvin/front.svg",
  9520. extra: 1803 / 1629
  9521. }
  9522. },
  9523. frontShirt: {
  9524. height: math.unit(5 + 8 / 12, "feet"),
  9525. weight: math.unit(130, "lbs"),
  9526. name: "Front (Shirt)",
  9527. image: {
  9528. source: "./media/characters/corvin/front-shirt.svg",
  9529. extra: 1803 / 1629
  9530. }
  9531. },
  9532. frontPoncho: {
  9533. height: math.unit(5 + 8 / 12, "feet"),
  9534. weight: math.unit(130, "lbs"),
  9535. name: "Front (Poncho)",
  9536. image: {
  9537. source: "./media/characters/corvin/front-poncho.svg",
  9538. extra: 1803 / 1629
  9539. }
  9540. },
  9541. side: {
  9542. height: math.unit(5 + 8 / 12, "feet"),
  9543. weight: math.unit(130, "lbs"),
  9544. name: "Side",
  9545. image: {
  9546. source: "./media/characters/corvin/side.svg",
  9547. extra: 1012 / 945
  9548. }
  9549. },
  9550. back: {
  9551. height: math.unit(5 + 8 / 12, "feet"),
  9552. weight: math.unit(130, "lbs"),
  9553. name: "Back",
  9554. image: {
  9555. source: "./media/characters/corvin/back.svg",
  9556. extra: 1803 / 1629
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Micro",
  9563. height: math.unit(3, "inches")
  9564. },
  9565. {
  9566. name: "Normal",
  9567. height: math.unit(5 + 8 / 12, "feet")
  9568. },
  9569. {
  9570. name: "Macro",
  9571. height: math.unit(300, "feet"),
  9572. default: true
  9573. },
  9574. {
  9575. name: "Megamacro",
  9576. height: math.unit(500, "miles")
  9577. }
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9582. {
  9583. front: {
  9584. height: math.unit(6, "feet"),
  9585. weight: math.unit(135, "lbs"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/q/front.svg",
  9589. extra: 854 / 752,
  9590. bottom: 0.005
  9591. }
  9592. },
  9593. back: {
  9594. height: math.unit(6, "feet"),
  9595. weight: math.unit(130, "lbs"),
  9596. name: "Back",
  9597. image: {
  9598. source: "./media/characters/q/back.svg",
  9599. extra: 854 / 752
  9600. }
  9601. },
  9602. },
  9603. [
  9604. {
  9605. name: "Macro",
  9606. height: math.unit(90, "feet"),
  9607. default: true
  9608. },
  9609. {
  9610. name: "Extra Macro",
  9611. height: math.unit(300, "feet"),
  9612. },
  9613. {
  9614. name: "BIG WALF",
  9615. height: math.unit(750, "feet"),
  9616. },
  9617. ]
  9618. ))
  9619. characterMakers.push(() => makeCharacter(
  9620. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9621. {
  9622. front: {
  9623. height: math.unit(3, "feet"),
  9624. weight: math.unit(28, "lbs"),
  9625. name: "Front",
  9626. image: {
  9627. source: "./media/characters/citrine/front.svg"
  9628. }
  9629. }
  9630. },
  9631. [
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(3, "feet"),
  9635. default: true
  9636. }
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9641. {
  9642. front: {
  9643. height: math.unit(14, "feet"),
  9644. weight: math.unit(1450, "kg"),
  9645. preyCapacity: math.unit(15, "people"),
  9646. name: "Front",
  9647. image: {
  9648. source: "./media/characters/aura-starwind/front.svg",
  9649. extra: 1440/1327,
  9650. bottom: 11/1451
  9651. }
  9652. },
  9653. side: {
  9654. height: math.unit(14, "feet"),
  9655. weight: math.unit(1450, "kg"),
  9656. preyCapacity: math.unit(15, "people"),
  9657. name: "Side",
  9658. image: {
  9659. source: "./media/characters/aura-starwind/side.svg",
  9660. extra: 1654 / 1497
  9661. }
  9662. },
  9663. taur: {
  9664. height: math.unit(18, "feet"),
  9665. weight: math.unit(5500, "kg"),
  9666. preyCapacity: math.unit(50, "people"),
  9667. name: "Taur",
  9668. image: {
  9669. source: "./media/characters/aura-starwind/taur.svg",
  9670. extra: 1760 / 1650
  9671. }
  9672. },
  9673. feral: {
  9674. height: math.unit(46, "feet"),
  9675. weight: math.unit(25000, "kg"),
  9676. preyCapacity: math.unit(120, "people"),
  9677. name: "Feral",
  9678. image: {
  9679. source: "./media/characters/aura-starwind/feral.svg"
  9680. }
  9681. },
  9682. },
  9683. [
  9684. {
  9685. name: "Normal",
  9686. height: math.unit(14, "feet"),
  9687. default: true
  9688. },
  9689. {
  9690. name: "Macro",
  9691. height: math.unit(50, "meters")
  9692. },
  9693. {
  9694. name: "Megamacro",
  9695. height: math.unit(5000, "meters")
  9696. },
  9697. {
  9698. name: "Gigamacro",
  9699. height: math.unit(100000, "kilometers")
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(2 + 7 / 12, "feet"),
  9708. weight: math.unit(32, "lbs"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/rivet/front.svg",
  9712. extra: 1716 / 1658,
  9713. bottom: 0.03
  9714. }
  9715. },
  9716. foot: {
  9717. height: math.unit(0.551, "feet"),
  9718. name: "Rivet's Foot",
  9719. image: {
  9720. source: "./media/characters/rivet/foot.svg"
  9721. },
  9722. rename: true
  9723. }
  9724. },
  9725. [
  9726. {
  9727. name: "Micro",
  9728. height: math.unit(1.5, "inches"),
  9729. },
  9730. {
  9731. name: "Normal",
  9732. height: math.unit(2 + 7 / 12, "feet"),
  9733. default: true
  9734. },
  9735. {
  9736. name: "Macro",
  9737. height: math.unit(85, "feet")
  9738. },
  9739. {
  9740. name: "Megamacro",
  9741. height: math.unit(2.2, "km")
  9742. }
  9743. ]
  9744. ))
  9745. characterMakers.push(() => makeCharacter(
  9746. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9747. {
  9748. front: {
  9749. height: math.unit(5 + 9 / 12, "feet"),
  9750. weight: math.unit(150, "lbs"),
  9751. name: "Front",
  9752. image: {
  9753. source: "./media/characters/coffee/front.svg",
  9754. extra: 946/880,
  9755. bottom: 66/1012
  9756. }
  9757. },
  9758. foot: {
  9759. height: math.unit(1.29, "feet"),
  9760. name: "Foot",
  9761. image: {
  9762. source: "./media/characters/coffee/foot.svg"
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Micro",
  9769. height: math.unit(2, "inches"),
  9770. },
  9771. {
  9772. name: "Normal",
  9773. height: math.unit(5 + 9 / 12, "feet"),
  9774. default: true
  9775. },
  9776. {
  9777. name: "Macro",
  9778. height: math.unit(800, "feet")
  9779. },
  9780. {
  9781. name: "Megamacro",
  9782. height: math.unit(25, "miles")
  9783. }
  9784. ]
  9785. ))
  9786. characterMakers.push(() => makeCharacter(
  9787. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9788. {
  9789. front: {
  9790. height: math.unit(6, "feet"),
  9791. weight: math.unit(200, "lbs"),
  9792. name: "Front",
  9793. image: {
  9794. source: "./media/characters/chari-gal/front.svg",
  9795. extra: 735/649,
  9796. bottom: 55/790
  9797. },
  9798. form: "normal",
  9799. default: true
  9800. },
  9801. back: {
  9802. height: math.unit(6, "feet"),
  9803. weight: math.unit(200, "lb"),
  9804. name: "Back",
  9805. image: {
  9806. source: "./media/characters/chari-gal/back.svg",
  9807. extra: 762/666,
  9808. bottom: 31/793
  9809. },
  9810. form: "normal"
  9811. },
  9812. mouth: {
  9813. height: math.unit(1.35, "feet"),
  9814. name: "Mouth",
  9815. image: {
  9816. source: "./media/characters/chari-gal/mouth.svg"
  9817. },
  9818. form: "normal"
  9819. },
  9820. gigantamax: {
  9821. height: math.unit(6 * 16, "feet"),
  9822. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9823. name: "Gigantamax",
  9824. image: {
  9825. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9826. extra: 1507/1149,
  9827. bottom: 254/1761
  9828. },
  9829. form: "gigantamax",
  9830. default: true
  9831. },
  9832. },
  9833. [
  9834. {
  9835. name: "Normal",
  9836. height: math.unit(5 + 7 / 12, "feet"),
  9837. form: "normal",
  9838. },
  9839. {
  9840. name: "Macro",
  9841. height: math.unit(200, "feet"),
  9842. default: true,
  9843. form: "normal"
  9844. },
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9848. form: "gigantamax",
  9849. },
  9850. {
  9851. name: "Macro",
  9852. height: math.unit(16 * 200, "feet"),
  9853. default: true,
  9854. form: "gigantamax"
  9855. },
  9856. ],
  9857. {
  9858. "normal": {
  9859. name: "Normal",
  9860. default: true
  9861. },
  9862. "gigantamax": {
  9863. name: "Gigantamax",
  9864. },
  9865. }
  9866. ))
  9867. characterMakers.push(() => makeCharacter(
  9868. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9869. {
  9870. front: {
  9871. height: math.unit(6, "feet"),
  9872. weight: math.unit(150, "lbs"),
  9873. name: "Front",
  9874. image: {
  9875. source: "./media/characters/nova/front.svg",
  9876. extra: 5000 / 4722,
  9877. bottom: 0.02
  9878. }
  9879. }
  9880. },
  9881. [
  9882. {
  9883. name: "Micro-",
  9884. height: math.unit(0.8, "inches")
  9885. },
  9886. {
  9887. name: "Micro",
  9888. height: math.unit(2, "inches"),
  9889. default: true
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9895. {
  9896. koboldFront: {
  9897. height: math.unit(3 + 1 / 12, "feet"),
  9898. weight: math.unit(21.7, "lbs"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/argent/kobold-front.svg",
  9902. extra: 1471 / 1331,
  9903. bottom: 100.8 / 1575.5
  9904. },
  9905. form: "kobold",
  9906. default: true
  9907. },
  9908. dragonFront: {
  9909. height: math.unit(75, "inches"),
  9910. name: "Front",
  9911. image: {
  9912. source: "./media/characters/argent/dragon-front.svg",
  9913. extra: 1389/1248,
  9914. bottom: 54/1443
  9915. },
  9916. form: "dragon",
  9917. },
  9918. dragonBack: {
  9919. height: math.unit(75, "inches"),
  9920. name: "Back",
  9921. image: {
  9922. source: "./media/characters/argent/dragon-back.svg",
  9923. extra: 1399/1271,
  9924. bottom: 23/1422
  9925. },
  9926. form: "dragon",
  9927. },
  9928. dragonDressed: {
  9929. height: math.unit(75, "inches"),
  9930. name: "Dressed",
  9931. image: {
  9932. source: "./media/characters/argent/dragon-dressed.svg",
  9933. extra: 1350/1215,
  9934. bottom: 26/1376
  9935. },
  9936. form: "dragon"
  9937. },
  9938. dragonHead: {
  9939. height: math.unit(23.5, "inches"),
  9940. name: "Head",
  9941. image: {
  9942. source: "./media/characters/argent/dragon-head.svg"
  9943. },
  9944. form: "dragon",
  9945. },
  9946. },
  9947. [
  9948. {
  9949. name: "Micro",
  9950. height: math.unit(2, "inches"),
  9951. form: "kobold",
  9952. },
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(3 + 1 / 12, "feet"),
  9956. form: "kobold",
  9957. default: true
  9958. },
  9959. {
  9960. name: "Macro",
  9961. height: math.unit(120, "feet"),
  9962. form: "kobold",
  9963. },
  9964. {
  9965. name: "Speck",
  9966. height: math.unit(1, "mm"),
  9967. form: "dragon",
  9968. },
  9969. {
  9970. name: "Tiny",
  9971. height: math.unit(1, "cm"),
  9972. form: "dragon",
  9973. },
  9974. {
  9975. name: "Micro",
  9976. height: math.unit(5, "cm"),
  9977. form: "dragon",
  9978. },
  9979. {
  9980. name: "Normal",
  9981. height: math.unit(75, "inches"),
  9982. form: "dragon",
  9983. default: true
  9984. },
  9985. {
  9986. name: "Extra Tall",
  9987. height: math.unit(9, "feet"),
  9988. form: "dragon",
  9989. },
  9990. {
  9991. name: "Inconvenient",
  9992. height: math.unit(5, "meters"),
  9993. form: "dragon",
  9994. },
  9995. {
  9996. name: "Macro",
  9997. height: math.unit(70, "meters"),
  9998. form: "dragon",
  9999. },
  10000. {
  10001. name: "Macro+",
  10002. height: math.unit(250, "meters"),
  10003. form: "dragon",
  10004. },
  10005. {
  10006. name: "Megamacro",
  10007. height: math.unit(20, "km"),
  10008. form: "dragon",
  10009. },
  10010. {
  10011. name: "Mountainous",
  10012. height: math.unit(100, "km"),
  10013. form: "dragon",
  10014. },
  10015. {
  10016. name: "Continental",
  10017. height: math.unit(2, "megameters"),
  10018. form: "dragon",
  10019. },
  10020. {
  10021. name: "Too Big",
  10022. height: math.unit(900, "megameters"),
  10023. form: "dragon",
  10024. },
  10025. ],
  10026. {
  10027. "kobold": {
  10028. name: "Kobold",
  10029. default: true
  10030. },
  10031. "dragon": {
  10032. name: "Dragon",
  10033. },
  10034. }
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10038. {
  10039. lamp: {
  10040. height: math.unit(7 * 1559 / 989, "feet"),
  10041. name: "Magic Lamp",
  10042. image: {
  10043. source: "./media/characters/mira-al-cul/lamp.svg",
  10044. extra: 1617 / 1559
  10045. }
  10046. },
  10047. front: {
  10048. height: math.unit(7, "feet"),
  10049. name: "Front",
  10050. image: {
  10051. source: "./media/characters/mira-al-cul/front.svg",
  10052. extra: 1044 / 990
  10053. }
  10054. },
  10055. },
  10056. [
  10057. {
  10058. name: "Heavily Restricted",
  10059. height: math.unit(7 * 1559 / 989, "feet")
  10060. },
  10061. {
  10062. name: "Freshly Freed",
  10063. height: math.unit(50 * 1559 / 989, "feet")
  10064. },
  10065. {
  10066. name: "World Encompassing",
  10067. height: math.unit(10000 * 1559 / 989, "miles")
  10068. },
  10069. {
  10070. name: "Galactic",
  10071. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10072. },
  10073. {
  10074. name: "Palmed Universe",
  10075. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10076. default: true
  10077. },
  10078. {
  10079. name: "Multiversal Matriarch",
  10080. height: math.unit(8.87e10, "yottameters")
  10081. },
  10082. {
  10083. name: "Void Mother",
  10084. height: math.unit(3.14e110, "yottaparsecs")
  10085. },
  10086. {
  10087. name: "Toying with Transcendence",
  10088. height: math.unit(1e307, "meters")
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10094. {
  10095. front: {
  10096. height: math.unit(17 + 1 / 12, "feet"),
  10097. weight: math.unit(476.2 * 5, "lbs"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/kuro-shi-uchū/front.svg",
  10101. extra: 2329 / 1835,
  10102. bottom: 0.02
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Micro",
  10109. height: math.unit(2, "inches")
  10110. },
  10111. {
  10112. name: "Normal",
  10113. height: math.unit(12, "meters")
  10114. },
  10115. {
  10116. name: "Planetary",
  10117. height: math.unit(0.00929, "AU"),
  10118. default: true
  10119. },
  10120. {
  10121. name: "Universal",
  10122. height: math.unit(20, "gigaparsecs")
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(5 + 2 / 12, "feet"),
  10131. weight: math.unit(120, "lbs"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/katherine/front.svg",
  10135. extra: 2075 / 1969
  10136. }
  10137. },
  10138. dress: {
  10139. height: math.unit(5 + 2 / 12, "feet"),
  10140. weight: math.unit(120, "lbs"),
  10141. name: "Dress",
  10142. image: {
  10143. source: "./media/characters/katherine/dress.svg",
  10144. extra: 2258 / 2064
  10145. }
  10146. },
  10147. },
  10148. [
  10149. {
  10150. name: "Micro",
  10151. height: math.unit(1, "inches"),
  10152. default: true
  10153. },
  10154. {
  10155. name: "Normal",
  10156. height: math.unit(5 + 2 / 12, "feet")
  10157. },
  10158. {
  10159. name: "Macro",
  10160. height: math.unit(100, "meters")
  10161. },
  10162. {
  10163. name: "Megamacro",
  10164. height: math.unit(80, "miles")
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(7 + 8 / 12, "feet"),
  10173. weight: math.unit(250, "lbs"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/yevis/front.svg",
  10177. extra: 1938 / 1755
  10178. }
  10179. }
  10180. },
  10181. [
  10182. {
  10183. name: "Mortal",
  10184. height: math.unit(7 + 8 / 12, "feet")
  10185. },
  10186. {
  10187. name: "Battle",
  10188. height: math.unit(25 + 11 / 12, "feet")
  10189. },
  10190. {
  10191. name: "Wrath",
  10192. height: math.unit(1654 + 11 / 12, "feet")
  10193. },
  10194. {
  10195. name: "Planet Destroyer",
  10196. height: math.unit(12000, "miles")
  10197. },
  10198. {
  10199. name: "Galaxy Conqueror",
  10200. height: math.unit(1.45, "zettameters"),
  10201. default: true
  10202. },
  10203. {
  10204. name: "Universal War",
  10205. height: math.unit(184, "gigaparsecs")
  10206. },
  10207. {
  10208. name: "Eternity War",
  10209. height: math.unit(1.98e55, "yottaparsecs")
  10210. },
  10211. ]
  10212. ))
  10213. characterMakers.push(() => makeCharacter(
  10214. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10215. {
  10216. front: {
  10217. height: math.unit(5 + 8 / 12, "feet"),
  10218. weight: math.unit(63, "kg"),
  10219. name: "Front",
  10220. image: {
  10221. source: "./media/characters/xavier/front.svg",
  10222. extra: 944 / 883
  10223. }
  10224. },
  10225. frontStretch: {
  10226. height: math.unit(5 + 8 / 12, "feet"),
  10227. weight: math.unit(63, "kg"),
  10228. name: "Stretching",
  10229. image: {
  10230. source: "./media/characters/xavier/front-stretch.svg",
  10231. extra: 962 / 820
  10232. }
  10233. },
  10234. },
  10235. [
  10236. {
  10237. name: "Normal",
  10238. height: math.unit(5 + 8 / 12, "feet")
  10239. },
  10240. {
  10241. name: "Macro",
  10242. height: math.unit(100, "meters"),
  10243. default: true
  10244. },
  10245. {
  10246. name: "McLargeHuge",
  10247. height: math.unit(10, "miles")
  10248. },
  10249. ]
  10250. ))
  10251. characterMakers.push(() => makeCharacter(
  10252. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10253. {
  10254. front: {
  10255. height: math.unit(5 + 5 / 12, "feet"),
  10256. weight: math.unit(150, "lb"),
  10257. name: "Front",
  10258. image: {
  10259. source: "./media/characters/joshii/front.svg",
  10260. extra: 765 / 653,
  10261. bottom: 51 / 816
  10262. }
  10263. },
  10264. foot: {
  10265. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10266. name: "Foot",
  10267. image: {
  10268. source: "./media/characters/joshii/foot.svg"
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Micro",
  10275. height: math.unit(2, "inches")
  10276. },
  10277. {
  10278. name: "Normal",
  10279. height: math.unit(5 + 5 / 12, "feet")
  10280. },
  10281. {
  10282. name: "Macro",
  10283. height: math.unit(785, "feet"),
  10284. default: true
  10285. },
  10286. {
  10287. name: "Megamacro",
  10288. height: math.unit(24.5, "miles")
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10294. {
  10295. front: {
  10296. height: math.unit(6, "feet"),
  10297. weight: math.unit(150, "lb"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/goddess-elizabeth/front.svg",
  10301. extra: 1800 / 1525,
  10302. bottom: 0.005
  10303. }
  10304. },
  10305. foot: {
  10306. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10307. name: "Foot",
  10308. image: {
  10309. source: "./media/characters/goddess-elizabeth/foot.svg"
  10310. }
  10311. },
  10312. mouth: {
  10313. height: math.unit(6, "feet"),
  10314. name: "Mouth",
  10315. image: {
  10316. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Micro",
  10323. height: math.unit(12, "feet")
  10324. },
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(80, "miles"),
  10328. default: true
  10329. },
  10330. {
  10331. name: "Macro",
  10332. height: math.unit(15000, "parsecs")
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(5 + 9 / 12, "feet"),
  10341. weight: math.unit(144, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/kara/front.svg"
  10345. }
  10346. },
  10347. feet: {
  10348. height: math.unit(6 / 6.765, "feet"),
  10349. name: "Kara's Feet",
  10350. rename: true,
  10351. image: {
  10352. source: "./media/characters/kara/feet.svg"
  10353. }
  10354. },
  10355. },
  10356. [
  10357. {
  10358. name: "Normal",
  10359. height: math.unit(5 + 9 / 12, "feet")
  10360. },
  10361. {
  10362. name: "Macro",
  10363. height: math.unit(174, "feet"),
  10364. default: true
  10365. },
  10366. ]
  10367. ))
  10368. characterMakers.push(() => makeCharacter(
  10369. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10370. {
  10371. front: {
  10372. height: math.unit(18, "feet"),
  10373. weight: math.unit(4050, "lb"),
  10374. name: "Front",
  10375. image: {
  10376. source: "./media/characters/tyrone/front.svg",
  10377. extra: 2405 / 2270,
  10378. bottom: 182 / 2587
  10379. }
  10380. },
  10381. },
  10382. [
  10383. {
  10384. name: "Normal",
  10385. height: math.unit(18, "feet"),
  10386. default: true
  10387. },
  10388. {
  10389. name: "Macro",
  10390. height: math.unit(300, "feet")
  10391. },
  10392. {
  10393. name: "Megamacro",
  10394. height: math.unit(15, "km")
  10395. },
  10396. {
  10397. name: "Gigamacro",
  10398. height: math.unit(500, "km")
  10399. },
  10400. {
  10401. name: "Teramacro",
  10402. height: math.unit(0.5, "gigameters")
  10403. },
  10404. {
  10405. name: "Omnimacro",
  10406. height: math.unit(1e252, "yottauniverse")
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10412. {
  10413. front: {
  10414. height: math.unit(7 + 8 / 12, "feet"),
  10415. weight: math.unit(120, "lb"),
  10416. name: "Front",
  10417. image: {
  10418. source: "./media/characters/danny/front.svg",
  10419. extra: 1490 / 1350
  10420. }
  10421. },
  10422. back: {
  10423. height: math.unit(7 + 8 / 12, "feet"),
  10424. weight: math.unit(120, "lb"),
  10425. name: "Back",
  10426. image: {
  10427. source: "./media/characters/danny/back.svg",
  10428. extra: 1490 / 1350
  10429. }
  10430. },
  10431. },
  10432. [
  10433. {
  10434. name: "Normal",
  10435. height: math.unit(7 + 8 / 12, "feet"),
  10436. default: true
  10437. },
  10438. ]
  10439. ))
  10440. characterMakers.push(() => makeCharacter(
  10441. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10442. {
  10443. front: {
  10444. height: math.unit(3.5, "inches"),
  10445. weight: math.unit(19, "grams"),
  10446. name: "Front",
  10447. image: {
  10448. source: "./media/characters/mallow/front.svg",
  10449. extra: 471 / 431
  10450. }
  10451. },
  10452. back: {
  10453. height: math.unit(3.5, "inches"),
  10454. weight: math.unit(19, "grams"),
  10455. name: "Back",
  10456. image: {
  10457. source: "./media/characters/mallow/back.svg",
  10458. extra: 471 / 431
  10459. }
  10460. },
  10461. },
  10462. [
  10463. {
  10464. name: "Normal",
  10465. height: math.unit(3.5, "inches"),
  10466. default: true
  10467. },
  10468. ]
  10469. ))
  10470. characterMakers.push(() => makeCharacter(
  10471. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10472. {
  10473. front: {
  10474. height: math.unit(9, "feet"),
  10475. weight: math.unit(230, "kg"),
  10476. name: "Front",
  10477. image: {
  10478. source: "./media/characters/starry-aqua/front.svg"
  10479. }
  10480. },
  10481. back: {
  10482. height: math.unit(9, "feet"),
  10483. weight: math.unit(230, "kg"),
  10484. name: "Back",
  10485. image: {
  10486. source: "./media/characters/starry-aqua/back.svg"
  10487. }
  10488. },
  10489. hand: {
  10490. height: math.unit(9 * 0.1168, "feet"),
  10491. name: "Hand",
  10492. image: {
  10493. source: "./media/characters/starry-aqua/hand.svg"
  10494. }
  10495. },
  10496. foot: {
  10497. height: math.unit(9 * 0.18, "feet"),
  10498. name: "Foot",
  10499. image: {
  10500. source: "./media/characters/starry-aqua/foot.svg"
  10501. }
  10502. }
  10503. },
  10504. [
  10505. {
  10506. name: "Micro",
  10507. height: math.unit(3, "inches")
  10508. },
  10509. {
  10510. name: "Normal",
  10511. height: math.unit(9, "feet")
  10512. },
  10513. {
  10514. name: "Macro",
  10515. height: math.unit(300, "feet"),
  10516. default: true
  10517. },
  10518. {
  10519. name: "Megamacro",
  10520. height: math.unit(3200, "feet")
  10521. }
  10522. ]
  10523. ))
  10524. characterMakers.push(() => makeCharacter(
  10525. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10526. {
  10527. front: {
  10528. height: math.unit(15, "feet"),
  10529. weight: math.unit(5026, "lb"),
  10530. name: "Front",
  10531. image: {
  10532. source: "./media/characters/luka-towers/front.svg",
  10533. extra: 1269/1133,
  10534. bottom: 51/1320
  10535. }
  10536. },
  10537. },
  10538. [
  10539. {
  10540. name: "Normal",
  10541. height: math.unit(15, "feet"),
  10542. default: true
  10543. },
  10544. {
  10545. name: "Minimacro",
  10546. height: math.unit(25, "feet")
  10547. },
  10548. {
  10549. name: "Macro",
  10550. height: math.unit(320, "feet")
  10551. },
  10552. {
  10553. name: "Megamacro",
  10554. height: math.unit(35000, "feet")
  10555. },
  10556. {
  10557. name: "Gigamacro",
  10558. height: math.unit(4000, "miles")
  10559. },
  10560. {
  10561. name: "Teramacro",
  10562. height: math.unit(15000, "miles")
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(150, "lb"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/natalie-nightring/front.svg",
  10575. extra: 1,
  10576. bottom: 0.06
  10577. }
  10578. },
  10579. },
  10580. [
  10581. {
  10582. name: "Uh Oh",
  10583. height: math.unit(0.1, "mm")
  10584. },
  10585. {
  10586. name: "Small",
  10587. height: math.unit(3, "inches")
  10588. },
  10589. {
  10590. name: "Human Scale",
  10591. height: math.unit(6, "feet")
  10592. },
  10593. {
  10594. name: "Librarian",
  10595. height: math.unit(50, "feet"),
  10596. default: true
  10597. },
  10598. {
  10599. name: "Immense",
  10600. height: math.unit(200, "miles")
  10601. },
  10602. ]
  10603. ))
  10604. characterMakers.push(() => makeCharacter(
  10605. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10606. {
  10607. front: {
  10608. height: math.unit(6, "feet"),
  10609. weight: math.unit(180, "lbs"),
  10610. name: "Front",
  10611. image: {
  10612. source: "./media/characters/danni-rosie/front.svg",
  10613. extra: 1260 / 1128,
  10614. bottom: 0.022
  10615. }
  10616. },
  10617. },
  10618. [
  10619. {
  10620. name: "Micro",
  10621. height: math.unit(2, "inches"),
  10622. default: true
  10623. },
  10624. ]
  10625. ))
  10626. characterMakers.push(() => makeCharacter(
  10627. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10628. {
  10629. front: {
  10630. height: math.unit(5 + 9 / 12, "feet"),
  10631. weight: math.unit(220, "lb"),
  10632. name: "Front",
  10633. image: {
  10634. source: "./media/characters/samantha-kruse/front.svg",
  10635. extra: (985 / 935),
  10636. bottom: 0.03
  10637. }
  10638. },
  10639. frontUndressed: {
  10640. height: math.unit(5 + 9 / 12, "feet"),
  10641. weight: math.unit(220, "lb"),
  10642. name: "Front (Undressed)",
  10643. image: {
  10644. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10645. extra: (973 / 923),
  10646. bottom: 0.025
  10647. }
  10648. },
  10649. fat: {
  10650. height: math.unit(5 + 9 / 12, "feet"),
  10651. weight: math.unit(900, "lb"),
  10652. name: "Front (Fat)",
  10653. image: {
  10654. source: "./media/characters/samantha-kruse/fat.svg",
  10655. extra: 2688 / 2561
  10656. }
  10657. },
  10658. },
  10659. [
  10660. {
  10661. name: "Normal",
  10662. height: math.unit(5 + 9 / 12, "feet"),
  10663. default: true
  10664. }
  10665. ]
  10666. ))
  10667. characterMakers.push(() => makeCharacter(
  10668. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10669. {
  10670. back: {
  10671. height: math.unit(5 + 4 / 12, "feet"),
  10672. weight: math.unit(4963, "lb"),
  10673. name: "Back",
  10674. image: {
  10675. source: "./media/characters/amelia-rosie/back.svg",
  10676. extra: 1113 / 963,
  10677. bottom: 0.01
  10678. }
  10679. },
  10680. },
  10681. [
  10682. {
  10683. name: "Level 0",
  10684. height: math.unit(5 + 4 / 12, "feet")
  10685. },
  10686. {
  10687. name: "Level 1",
  10688. height: math.unit(164597, "feet"),
  10689. default: true
  10690. },
  10691. {
  10692. name: "Level 2",
  10693. height: math.unit(956243, "miles")
  10694. },
  10695. {
  10696. name: "Level 3",
  10697. height: math.unit(29421709423, "miles")
  10698. },
  10699. {
  10700. name: "Level 4",
  10701. height: math.unit(154, "lightyears")
  10702. },
  10703. {
  10704. name: "Level 5",
  10705. height: math.unit(4738272, "lightyears")
  10706. },
  10707. {
  10708. name: "Level 6",
  10709. height: math.unit(145787152896, "lightyears")
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10715. {
  10716. front: {
  10717. height: math.unit(5 + 11 / 12, "feet"),
  10718. weight: math.unit(65, "kg"),
  10719. name: "Front",
  10720. image: {
  10721. source: "./media/characters/rook-kitara/front.svg",
  10722. extra: 1347 / 1274,
  10723. bottom: 0.005
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Totally Unfair",
  10730. height: math.unit(1.8, "mm")
  10731. },
  10732. {
  10733. name: "Lap Rookie",
  10734. height: math.unit(1.4, "feet")
  10735. },
  10736. {
  10737. name: "Normal",
  10738. height: math.unit(5 + 11 / 12, "feet"),
  10739. default: true
  10740. },
  10741. {
  10742. name: "How Did This Happen",
  10743. height: math.unit(80, "miles")
  10744. }
  10745. ]
  10746. ))
  10747. characterMakers.push(() => makeCharacter(
  10748. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10749. {
  10750. front: {
  10751. height: math.unit(7, "feet"),
  10752. weight: math.unit(300, "lb"),
  10753. name: "Front",
  10754. image: {
  10755. source: "./media/characters/pisces/front.svg",
  10756. extra: 2255 / 2115,
  10757. bottom: 0.03
  10758. }
  10759. },
  10760. back: {
  10761. height: math.unit(7, "feet"),
  10762. weight: math.unit(300, "lb"),
  10763. name: "Back",
  10764. image: {
  10765. source: "./media/characters/pisces/back.svg",
  10766. extra: 2146 / 2055,
  10767. bottom: 0.04
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Normal",
  10774. height: math.unit(7, "feet"),
  10775. default: true
  10776. },
  10777. {
  10778. name: "Swimming Pool",
  10779. height: math.unit(12.2, "meters")
  10780. },
  10781. {
  10782. name: "Olympic Swimming Pool",
  10783. height: math.unit(56.3, "meters")
  10784. },
  10785. {
  10786. name: "Lake Superior",
  10787. height: math.unit(93900, "meters")
  10788. },
  10789. {
  10790. name: "Mediterranean Sea",
  10791. height: math.unit(644457, "meters")
  10792. },
  10793. {
  10794. name: "World's Oceans",
  10795. height: math.unit(4567491, "meters")
  10796. },
  10797. ]
  10798. ))
  10799. characterMakers.push(() => makeCharacter(
  10800. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10801. {
  10802. front: {
  10803. height: math.unit(2.3, "meters"),
  10804. weight: math.unit(120, "kg"),
  10805. name: "Front",
  10806. image: {
  10807. source: "./media/characters/zelas/front.svg"
  10808. }
  10809. },
  10810. side: {
  10811. height: math.unit(2.3, "meters"),
  10812. weight: math.unit(120, "kg"),
  10813. name: "Side",
  10814. image: {
  10815. source: "./media/characters/zelas/side.svg"
  10816. }
  10817. },
  10818. back: {
  10819. height: math.unit(2.3, "meters"),
  10820. weight: math.unit(120, "kg"),
  10821. name: "Back",
  10822. image: {
  10823. source: "./media/characters/zelas/back.svg"
  10824. }
  10825. },
  10826. foot: {
  10827. height: math.unit(1.116, "feet"),
  10828. name: "Foot",
  10829. image: {
  10830. source: "./media/characters/zelas/foot.svg"
  10831. }
  10832. },
  10833. },
  10834. [
  10835. {
  10836. name: "Normal",
  10837. height: math.unit(2.3, "meters")
  10838. },
  10839. {
  10840. name: "Macro",
  10841. height: math.unit(30, "meters"),
  10842. default: true
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(1, "inch"),
  10851. weight: math.unit(0.21, "grams"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/talbot/front.svg",
  10855. extra: 594 / 544
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Micro",
  10862. height: math.unit(1, "inch"),
  10863. default: true
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10869. {
  10870. front: {
  10871. height: math.unit(3 + 3 / 12, "feet"),
  10872. weight: math.unit(51.8, "lb"),
  10873. name: "Front",
  10874. image: {
  10875. source: "./media/characters/fliss/front.svg",
  10876. extra: 840 / 640
  10877. }
  10878. },
  10879. },
  10880. [
  10881. {
  10882. name: "Teeny Tiny",
  10883. height: math.unit(1, "mm")
  10884. },
  10885. {
  10886. name: "Small",
  10887. height: math.unit(1, "inch"),
  10888. default: true
  10889. },
  10890. {
  10891. name: "Standard Sylveon",
  10892. height: math.unit(3 + 3 / 12, "feet")
  10893. },
  10894. {
  10895. name: "Large Nuisance",
  10896. height: math.unit(33, "feet")
  10897. },
  10898. {
  10899. name: "City Filler",
  10900. height: math.unit(3000, "feet")
  10901. },
  10902. {
  10903. name: "New Horizon",
  10904. height: math.unit(6000, "miles")
  10905. },
  10906. ]
  10907. ))
  10908. characterMakers.push(() => makeCharacter(
  10909. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10910. {
  10911. front: {
  10912. height: math.unit(5, "cm"),
  10913. weight: math.unit(1.94, "g"),
  10914. name: "Front",
  10915. image: {
  10916. source: "./media/characters/fleta/front.svg",
  10917. extra: 835 / 803
  10918. }
  10919. },
  10920. back: {
  10921. height: math.unit(5, "cm"),
  10922. weight: math.unit(1.94, "g"),
  10923. name: "Back",
  10924. image: {
  10925. source: "./media/characters/fleta/back.svg",
  10926. extra: 835 / 803
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(5, "cm"),
  10934. default: true
  10935. },
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(6, "feet"),
  10943. weight: math.unit(225, "lb"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/dominic/front.svg",
  10947. extra: 1770 / 1620,
  10948. bottom: 0.025
  10949. }
  10950. },
  10951. back: {
  10952. height: math.unit(6, "feet"),
  10953. weight: math.unit(225, "lb"),
  10954. name: "Back",
  10955. image: {
  10956. source: "./media/characters/dominic/back.svg",
  10957. extra: 1745 / 1620,
  10958. bottom: 0.065
  10959. }
  10960. },
  10961. },
  10962. [
  10963. {
  10964. name: "Nano",
  10965. height: math.unit(0.1, "mm")
  10966. },
  10967. {
  10968. name: "Micro-",
  10969. height: math.unit(1, "mm")
  10970. },
  10971. {
  10972. name: "Micro",
  10973. height: math.unit(4, "inches")
  10974. },
  10975. {
  10976. name: "Normal",
  10977. height: math.unit(6 + 4 / 12, "feet"),
  10978. default: true
  10979. },
  10980. {
  10981. name: "Macro",
  10982. height: math.unit(115, "feet")
  10983. },
  10984. {
  10985. name: "Macro+",
  10986. height: math.unit(955, "feet")
  10987. },
  10988. {
  10989. name: "Megamacro",
  10990. height: math.unit(8990, "feet")
  10991. },
  10992. {
  10993. name: "Gigmacro",
  10994. height: math.unit(9310, "miles")
  10995. },
  10996. {
  10997. name: "Teramacro",
  10998. height: math.unit(1567005010, "miles")
  10999. },
  11000. {
  11001. name: "Examacro",
  11002. height: math.unit(1425, "parsecs")
  11003. },
  11004. ]
  11005. ))
  11006. characterMakers.push(() => makeCharacter(
  11007. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11008. {
  11009. front: {
  11010. height: math.unit(400, "feet"),
  11011. weight: math.unit(44444444, "lb"),
  11012. name: "Front",
  11013. image: {
  11014. source: "./media/characters/major-colonel/front.svg"
  11015. }
  11016. },
  11017. back: {
  11018. height: math.unit(400, "feet"),
  11019. weight: math.unit(44444444, "lb"),
  11020. name: "Back",
  11021. image: {
  11022. source: "./media/characters/major-colonel/back.svg"
  11023. }
  11024. },
  11025. },
  11026. [
  11027. {
  11028. name: "Macro",
  11029. height: math.unit(400, "feet"),
  11030. default: true
  11031. },
  11032. ]
  11033. ))
  11034. characterMakers.push(() => makeCharacter(
  11035. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11036. {
  11037. catFront: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(120, "lb"),
  11040. name: "Front (Cat Side)",
  11041. image: {
  11042. source: "./media/characters/axel-lycan/cat-front.svg",
  11043. extra: 430 / 402,
  11044. bottom: 43 / 472.35
  11045. }
  11046. },
  11047. catBack: {
  11048. height: math.unit(6, "feet"),
  11049. weight: math.unit(120, "lb"),
  11050. name: "Back (Cat Side)",
  11051. image: {
  11052. source: "./media/characters/axel-lycan/cat-back.svg",
  11053. extra: 447 / 419,
  11054. bottom: 23.3 / 469
  11055. }
  11056. },
  11057. wolfFront: {
  11058. height: math.unit(6, "feet"),
  11059. weight: math.unit(120, "lb"),
  11060. name: "Front (Wolf Side)",
  11061. image: {
  11062. source: "./media/characters/axel-lycan/wolf-front.svg",
  11063. extra: 485 / 456,
  11064. bottom: 19 / 504
  11065. }
  11066. },
  11067. wolfBack: {
  11068. height: math.unit(6, "feet"),
  11069. weight: math.unit(120, "lb"),
  11070. name: "Back (Wolf Side)",
  11071. image: {
  11072. source: "./media/characters/axel-lycan/wolf-back.svg",
  11073. extra: 475 / 438,
  11074. bottom: 39.2 / 514
  11075. }
  11076. },
  11077. },
  11078. [
  11079. {
  11080. name: "Macro",
  11081. height: math.unit(1, "km"),
  11082. default: true
  11083. },
  11084. ]
  11085. ))
  11086. characterMakers.push(() => makeCharacter(
  11087. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11088. {
  11089. front: {
  11090. height: math.unit(5 + 9 / 12, "feet"),
  11091. weight: math.unit(175, "lb"),
  11092. name: "Front",
  11093. image: {
  11094. source: "./media/characters/vanrel-hyena/front.svg",
  11095. extra: 1086 / 1010,
  11096. bottom: 0.04
  11097. }
  11098. },
  11099. },
  11100. [
  11101. {
  11102. name: "Normal",
  11103. height: math.unit(5 + 9 / 12, "feet"),
  11104. default: true
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(103, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/abbott-absol/front.svg",
  11117. extra: 765/694,
  11118. bottom: 47/812
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Megamicro",
  11125. height: math.unit(0.1, "mm")
  11126. },
  11127. {
  11128. name: "Micro",
  11129. height: math.unit(1, "inch")
  11130. },
  11131. {
  11132. name: "Normal",
  11133. height: math.unit(6, "feet"),
  11134. default: true
  11135. },
  11136. ]
  11137. ))
  11138. characterMakers.push(() => makeCharacter(
  11139. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11140. {
  11141. front: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(264, "lb"),
  11144. name: "Front",
  11145. image: {
  11146. source: "./media/characters/hector/front.svg",
  11147. extra: 2280 / 2130,
  11148. bottom: 0.07
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Normal",
  11155. height: math.unit(12.25, "foot"),
  11156. default: true
  11157. },
  11158. {
  11159. name: "Macro",
  11160. height: math.unit(160, "feet")
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11166. {
  11167. front: {
  11168. height: math.unit(6, "feet"),
  11169. weight: math.unit(150, "lb"),
  11170. name: "Front",
  11171. image: {
  11172. source: "./media/characters/sal/front.svg",
  11173. extra: 1846 / 1699,
  11174. bottom: 0.04
  11175. }
  11176. },
  11177. },
  11178. [
  11179. {
  11180. name: "Megamacro",
  11181. height: math.unit(10, "miles"),
  11182. default: true
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11188. {
  11189. front: {
  11190. height: math.unit(3, "meters"),
  11191. weight: math.unit(450, "kg"),
  11192. name: "front",
  11193. image: {
  11194. source: "./media/characters/ranger/front.svg",
  11195. extra: 2401 / 2243,
  11196. bottom: 0.05
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Normal",
  11203. height: math.unit(3, "meters"),
  11204. default: true
  11205. },
  11206. ]
  11207. ))
  11208. characterMakers.push(() => makeCharacter(
  11209. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11210. {
  11211. front: {
  11212. height: math.unit(14, "feet"),
  11213. weight: math.unit(800, "kg"),
  11214. name: "Front",
  11215. image: {
  11216. source: "./media/characters/theresa/front.svg",
  11217. extra: 3575 / 3346,
  11218. bottom: 0.03
  11219. }
  11220. },
  11221. },
  11222. [
  11223. {
  11224. name: "Normal",
  11225. height: math.unit(14, "feet"),
  11226. default: true
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11232. {
  11233. front: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(3, "kg"),
  11236. name: "Front",
  11237. image: {
  11238. source: "./media/characters/ine/front.svg",
  11239. extra: 678 / 539,
  11240. bottom: 0.023
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Normal",
  11247. height: math.unit(2.265, "feet"),
  11248. default: true
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(5, "feet"),
  11257. weight: math.unit(30, "kg"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/vial/front.svg",
  11261. extra: 1365 / 1277,
  11262. bottom: 0.04
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(5, "feet"),
  11270. default: true
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11276. {
  11277. side: {
  11278. height: math.unit(3.4, "meters"),
  11279. weight: math.unit(1000, "lb"),
  11280. name: "Side",
  11281. image: {
  11282. source: "./media/characters/rovoska/side.svg",
  11283. extra: 4403 / 1515
  11284. }
  11285. },
  11286. },
  11287. [
  11288. {
  11289. name: "Normal",
  11290. height: math.unit(3.4, "meters"),
  11291. default: true
  11292. },
  11293. ]
  11294. ))
  11295. characterMakers.push(() => makeCharacter(
  11296. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11297. {
  11298. front: {
  11299. height: math.unit(8, "feet"),
  11300. weight: math.unit(315, "lb"),
  11301. name: "Front",
  11302. image: {
  11303. source: "./media/characters/gunner-rotthbauer/front.svg"
  11304. }
  11305. },
  11306. back: {
  11307. height: math.unit(8, "feet"),
  11308. weight: math.unit(315, "lb"),
  11309. name: "Back",
  11310. image: {
  11311. source: "./media/characters/gunner-rotthbauer/back.svg"
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Micro",
  11318. height: math.unit(3.5, "inches")
  11319. },
  11320. {
  11321. name: "Normal",
  11322. height: math.unit(8, "feet"),
  11323. default: true
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(250, "feet")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(1, "AU")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(5 + 5 / 12, "feet"),
  11340. weight: math.unit(140, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/allatia/front.svg",
  11344. extra: 1227 / 1180,
  11345. bottom: 0.027
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Normal",
  11352. height: math.unit(5 + 5 / 12, "feet")
  11353. },
  11354. {
  11355. name: "Macro",
  11356. height: math.unit(250, "feet"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Megamacro",
  11361. height: math.unit(8, "miles")
  11362. }
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(6, "feet"),
  11370. weight: math.unit(120, "lb"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/tene/front.svg",
  11374. extra: 814/750,
  11375. bottom: 36/850
  11376. }
  11377. },
  11378. stomping: {
  11379. height: math.unit(2.025, "meters"),
  11380. weight: math.unit(120, "lb"),
  11381. name: "Stomping",
  11382. image: {
  11383. source: "./media/characters/tene/stomping.svg",
  11384. extra: 885/821,
  11385. bottom: 15/900
  11386. }
  11387. },
  11388. sitting: {
  11389. height: math.unit(1, "meter"),
  11390. weight: math.unit(120, "lb"),
  11391. name: "Sitting",
  11392. image: {
  11393. source: "./media/characters/tene/sitting.svg",
  11394. extra: 396/366,
  11395. bottom: 79/475
  11396. }
  11397. },
  11398. smiling: {
  11399. height: math.unit(1.2, "feet"),
  11400. name: "Smiling",
  11401. image: {
  11402. source: "./media/characters/tene/smiling.svg",
  11403. extra: 1364/1071,
  11404. bottom: 0/1364
  11405. }
  11406. },
  11407. smug: {
  11408. height: math.unit(1.3, "feet"),
  11409. name: "Smug",
  11410. image: {
  11411. source: "./media/characters/tene/smug.svg",
  11412. extra: 1323/1082,
  11413. bottom: 0/1323
  11414. }
  11415. },
  11416. feral: {
  11417. height: math.unit(3.9, "feet"),
  11418. weight: math.unit(250, "lb"),
  11419. name: "Feral",
  11420. image: {
  11421. source: "./media/characters/tene/feral.svg",
  11422. extra: 717 / 458,
  11423. bottom: 0.179
  11424. }
  11425. },
  11426. },
  11427. [
  11428. {
  11429. name: "Normal",
  11430. height: math.unit(6, "feet")
  11431. },
  11432. {
  11433. name: "Macro",
  11434. height: math.unit(300, "feet"),
  11435. default: true
  11436. },
  11437. {
  11438. name: "Megamacro",
  11439. height: math.unit(5, "miles")
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11445. {
  11446. side: {
  11447. height: math.unit(6, "feet"),
  11448. name: "Side",
  11449. image: {
  11450. source: "./media/characters/evander/side.svg",
  11451. extra: 877 / 477
  11452. }
  11453. },
  11454. },
  11455. [
  11456. {
  11457. name: "Normal",
  11458. height: math.unit(0.83, "meters"),
  11459. default: true
  11460. },
  11461. ]
  11462. ))
  11463. characterMakers.push(() => makeCharacter(
  11464. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11465. {
  11466. front: {
  11467. height: math.unit(12, "feet"),
  11468. weight: math.unit(1000, "lb"),
  11469. name: "Front",
  11470. image: {
  11471. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11472. extra: 1762 / 1611
  11473. }
  11474. },
  11475. back: {
  11476. height: math.unit(12, "feet"),
  11477. weight: math.unit(1000, "lb"),
  11478. name: "Back",
  11479. image: {
  11480. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11481. extra: 1762 / 1611
  11482. }
  11483. },
  11484. },
  11485. [
  11486. {
  11487. name: "Normal",
  11488. height: math.unit(12, "feet"),
  11489. default: true
  11490. },
  11491. {
  11492. name: "Kaiju",
  11493. height: math.unit(150, "feet")
  11494. },
  11495. ]
  11496. ))
  11497. characterMakers.push(() => makeCharacter(
  11498. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11499. {
  11500. front: {
  11501. height: math.unit(6, "feet"),
  11502. weight: math.unit(150, "lb"),
  11503. name: "Front",
  11504. image: {
  11505. source: "./media/characters/zero-alurus/front.svg"
  11506. }
  11507. },
  11508. back: {
  11509. height: math.unit(6, "feet"),
  11510. weight: math.unit(150, "lb"),
  11511. name: "Back",
  11512. image: {
  11513. source: "./media/characters/zero-alurus/back.svg"
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Normal",
  11520. height: math.unit(5 + 10 / 12, "feet")
  11521. },
  11522. {
  11523. name: "Macro",
  11524. height: math.unit(60, "feet"),
  11525. default: true
  11526. },
  11527. {
  11528. name: "Macro+",
  11529. height: math.unit(450, "feet")
  11530. },
  11531. ]
  11532. ))
  11533. characterMakers.push(() => makeCharacter(
  11534. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11535. {
  11536. front: {
  11537. height: math.unit(6, "feet"),
  11538. weight: math.unit(200, "lb"),
  11539. name: "Front",
  11540. image: {
  11541. source: "./media/characters/mega-shi/front.svg",
  11542. extra: 1279 / 1250,
  11543. bottom: 0.02
  11544. }
  11545. },
  11546. back: {
  11547. height: math.unit(6, "feet"),
  11548. weight: math.unit(200, "lb"),
  11549. name: "Back",
  11550. image: {
  11551. source: "./media/characters/mega-shi/back.svg",
  11552. extra: 1279 / 1250,
  11553. bottom: 0.02
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Micro",
  11560. height: math.unit(16 + 6 / 12, "feet")
  11561. },
  11562. {
  11563. name: "Third Dimension",
  11564. height: math.unit(40, "meters")
  11565. },
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(660, "feet"),
  11569. default: true
  11570. },
  11571. {
  11572. name: "Megamacro",
  11573. height: math.unit(10, "miles")
  11574. },
  11575. {
  11576. name: "Planetary Launch",
  11577. height: math.unit(500, "miles")
  11578. },
  11579. {
  11580. name: "Interstellar",
  11581. height: math.unit(1e9, "miles")
  11582. },
  11583. {
  11584. name: "Leaving the Universe",
  11585. height: math.unit(1, "gigaparsec")
  11586. },
  11587. {
  11588. name: "Travelling Universes",
  11589. height: math.unit(30e15, "parsecs")
  11590. },
  11591. ]
  11592. ))
  11593. characterMakers.push(() => makeCharacter(
  11594. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11595. {
  11596. front: {
  11597. height: math.unit(5 + 4/12, "feet"),
  11598. weight: math.unit(120, "lb"),
  11599. name: "Front",
  11600. image: {
  11601. source: "./media/characters/odyssey/front.svg",
  11602. extra: 1747/1571,
  11603. bottom: 47/1794
  11604. }
  11605. },
  11606. side: {
  11607. height: math.unit(5.1, "feet"),
  11608. weight: math.unit(120, "lb"),
  11609. name: "Side",
  11610. image: {
  11611. source: "./media/characters/odyssey/side.svg",
  11612. extra: 1847/1619,
  11613. bottom: 47/1894
  11614. }
  11615. },
  11616. lounging: {
  11617. height: math.unit(1.464, "feet"),
  11618. weight: math.unit(120, "lb"),
  11619. name: "Lounging",
  11620. image: {
  11621. source: "./media/characters/odyssey/lounging.svg",
  11622. extra: 1235/837,
  11623. bottom: 551/1786
  11624. }
  11625. },
  11626. },
  11627. [
  11628. {
  11629. name: "Normal",
  11630. height: math.unit(5 + 4 / 12, "feet")
  11631. },
  11632. {
  11633. name: "Macro",
  11634. height: math.unit(1, "km")
  11635. },
  11636. {
  11637. name: "Megamacro",
  11638. height: math.unit(3000, "km")
  11639. },
  11640. {
  11641. name: "Gigamacro",
  11642. height: math.unit(1, "AU"),
  11643. default: true
  11644. },
  11645. {
  11646. name: "Omniversal",
  11647. height: math.unit(100e14, "lightyears")
  11648. },
  11649. ]
  11650. ))
  11651. characterMakers.push(() => makeCharacter(
  11652. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11653. {
  11654. front: {
  11655. height: math.unit(5 + 10/12, "feet"),
  11656. name: "Front",
  11657. image: {
  11658. source: "./media/characters/mekuto/front.svg",
  11659. extra: 875/835,
  11660. bottom: 46/921
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Minimicro",
  11667. height: math.unit(0.2, "inches")
  11668. },
  11669. {
  11670. name: "Micro",
  11671. height: math.unit(1.5, "inches")
  11672. },
  11673. {
  11674. name: "Normal",
  11675. height: math.unit(5 + 10 / 12, "feet"),
  11676. default: true
  11677. },
  11678. {
  11679. name: "Minimacro",
  11680. height: math.unit(17 + 9 / 12, "feet")
  11681. },
  11682. {
  11683. name: "Macro",
  11684. height: math.unit(177.5, "feet")
  11685. },
  11686. {
  11687. name: "Megamacro",
  11688. height: math.unit(152, "miles")
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(6.5, "inches"),
  11697. weight: math.unit(13, "oz"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/dafydd-tomos/front.svg",
  11701. extra: 2990 / 2603,
  11702. bottom: 0.03
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Micro",
  11709. height: math.unit(6.5, "inches"),
  11710. default: true
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(6, "feet"),
  11719. weight: math.unit(150, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/splinter/front.svg",
  11723. extra: 2990 / 2882,
  11724. bottom: 0.04
  11725. }
  11726. },
  11727. back: {
  11728. height: math.unit(6, "feet"),
  11729. weight: math.unit(150, "lb"),
  11730. name: "Back",
  11731. image: {
  11732. source: "./media/characters/splinter/back.svg",
  11733. extra: 2990 / 2882,
  11734. bottom: 0.04
  11735. }
  11736. },
  11737. },
  11738. [
  11739. {
  11740. name: "Normal",
  11741. height: math.unit(6, "feet")
  11742. },
  11743. {
  11744. name: "Macro",
  11745. height: math.unit(230, "meters"),
  11746. default: true
  11747. },
  11748. ]
  11749. ))
  11750. characterMakers.push(() => makeCharacter(
  11751. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11752. {
  11753. front: {
  11754. height: math.unit(4 + 10 / 12, "feet"),
  11755. weight: math.unit(480, "lb"),
  11756. name: "Front",
  11757. image: {
  11758. source: "./media/characters/snow-gabumon/front.svg",
  11759. extra: 1140 / 963,
  11760. bottom: 0.058
  11761. }
  11762. },
  11763. back: {
  11764. height: math.unit(4 + 10 / 12, "feet"),
  11765. weight: math.unit(480, "lb"),
  11766. name: "Back",
  11767. image: {
  11768. source: "./media/characters/snow-gabumon/back.svg",
  11769. extra: 1115 / 962,
  11770. bottom: 0.041
  11771. }
  11772. },
  11773. frontUndresed: {
  11774. height: math.unit(4 + 10 / 12, "feet"),
  11775. weight: math.unit(480, "lb"),
  11776. name: "Front (Undressed)",
  11777. image: {
  11778. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11779. extra: 1061 / 960,
  11780. bottom: 0.045
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Micro",
  11787. height: math.unit(1, "inch")
  11788. },
  11789. {
  11790. name: "Normal",
  11791. height: math.unit(4 + 10 / 12, "feet"),
  11792. default: true
  11793. },
  11794. {
  11795. name: "Macro",
  11796. height: math.unit(200, "feet")
  11797. },
  11798. {
  11799. name: "Megamacro",
  11800. height: math.unit(120, "miles")
  11801. },
  11802. {
  11803. name: "Gigamacro",
  11804. height: math.unit(9800, "miles")
  11805. },
  11806. ]
  11807. ))
  11808. characterMakers.push(() => makeCharacter(
  11809. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11810. {
  11811. front: {
  11812. height: math.unit(1.7, "meters"),
  11813. weight: math.unit(140, "lb"),
  11814. name: "Front",
  11815. image: {
  11816. source: "./media/characters/moody/front.svg",
  11817. extra: 3226 / 3007,
  11818. bottom: 0.087
  11819. }
  11820. },
  11821. },
  11822. [
  11823. {
  11824. name: "Micro",
  11825. height: math.unit(1, "mm")
  11826. },
  11827. {
  11828. name: "Normal",
  11829. height: math.unit(1.7, "meters"),
  11830. default: true
  11831. },
  11832. {
  11833. name: "Macro",
  11834. height: math.unit(80, "meters")
  11835. },
  11836. {
  11837. name: "Macro+",
  11838. height: math.unit(500, "meters")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11844. {
  11845. front: {
  11846. height: math.unit(6, "feet"),
  11847. weight: math.unit(150, "lb"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/zyas/front.svg",
  11851. extra: 1180 / 1120,
  11852. bottom: 0.045
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Normal",
  11859. height: math.unit(10, "feet"),
  11860. default: true
  11861. },
  11862. {
  11863. name: "Macro",
  11864. height: math.unit(500, "feet")
  11865. },
  11866. {
  11867. name: "Megamacro",
  11868. height: math.unit(5, "miles")
  11869. },
  11870. {
  11871. name: "Teramacro",
  11872. height: math.unit(150000, "miles")
  11873. },
  11874. ]
  11875. ))
  11876. characterMakers.push(() => makeCharacter(
  11877. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11878. {
  11879. front: {
  11880. height: math.unit(6, "feet"),
  11881. weight: math.unit(150, "lb"),
  11882. name: "Front",
  11883. image: {
  11884. source: "./media/characters/cuon/front.svg",
  11885. extra: 1390 / 1320,
  11886. bottom: 0.008
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Micro",
  11893. height: math.unit(3, "inches")
  11894. },
  11895. {
  11896. name: "Normal",
  11897. height: math.unit(18 + 9 / 12, "feet"),
  11898. default: true
  11899. },
  11900. {
  11901. name: "Macro",
  11902. height: math.unit(360, "feet")
  11903. },
  11904. {
  11905. name: "Megamacro",
  11906. height: math.unit(360, "miles")
  11907. },
  11908. ]
  11909. ))
  11910. characterMakers.push(() => makeCharacter(
  11911. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11912. {
  11913. front: {
  11914. height: math.unit(2.4, "meters"),
  11915. weight: math.unit(70, "kg"),
  11916. name: "Front",
  11917. image: {
  11918. source: "./media/characters/nyanuxk/front.svg",
  11919. extra: 1172 / 1084,
  11920. bottom: 0.065
  11921. }
  11922. },
  11923. side: {
  11924. height: math.unit(2.4, "meters"),
  11925. weight: math.unit(70, "kg"),
  11926. name: "Side",
  11927. image: {
  11928. source: "./media/characters/nyanuxk/side.svg",
  11929. extra: 1190 / 1132,
  11930. bottom: 0.007
  11931. }
  11932. },
  11933. back: {
  11934. height: math.unit(2.4, "meters"),
  11935. weight: math.unit(70, "kg"),
  11936. name: "Back",
  11937. image: {
  11938. source: "./media/characters/nyanuxk/back.svg",
  11939. extra: 1200 / 1141,
  11940. bottom: 0.015
  11941. }
  11942. },
  11943. foot: {
  11944. height: math.unit(0.52, "meters"),
  11945. name: "Foot",
  11946. image: {
  11947. source: "./media/characters/nyanuxk/foot.svg"
  11948. }
  11949. },
  11950. },
  11951. [
  11952. {
  11953. name: "Micro",
  11954. height: math.unit(2, "cm")
  11955. },
  11956. {
  11957. name: "Normal",
  11958. height: math.unit(2.4, "meters"),
  11959. default: true
  11960. },
  11961. {
  11962. name: "Smaller Macro",
  11963. height: math.unit(120, "meters")
  11964. },
  11965. {
  11966. name: "Bigger Macro",
  11967. height: math.unit(1.2, "km")
  11968. },
  11969. {
  11970. name: "Megamacro",
  11971. height: math.unit(15, "kilometers")
  11972. },
  11973. {
  11974. name: "Gigamacro",
  11975. height: math.unit(2000, "km")
  11976. },
  11977. {
  11978. name: "Teramacro",
  11979. height: math.unit(500000, "km")
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11985. {
  11986. side: {
  11987. height: math.unit(6, "feet"),
  11988. name: "Side",
  11989. image: {
  11990. source: "./media/characters/ailbhe/side.svg",
  11991. extra: 757 / 464,
  11992. bottom: 0.041
  11993. }
  11994. },
  11995. },
  11996. [
  11997. {
  11998. name: "Normal",
  11999. height: math.unit(1.07, "meters"),
  12000. default: true
  12001. },
  12002. ]
  12003. ))
  12004. characterMakers.push(() => makeCharacter(
  12005. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12006. {
  12007. front: {
  12008. height: math.unit(6, "feet"),
  12009. weight: math.unit(120, "kg"),
  12010. name: "Front",
  12011. image: {
  12012. source: "./media/characters/zevulfius/front.svg",
  12013. extra: 965 / 903
  12014. }
  12015. },
  12016. side: {
  12017. height: math.unit(6, "feet"),
  12018. weight: math.unit(120, "kg"),
  12019. name: "Side",
  12020. image: {
  12021. source: "./media/characters/zevulfius/side.svg",
  12022. extra: 939 / 900
  12023. }
  12024. },
  12025. back: {
  12026. height: math.unit(6, "feet"),
  12027. weight: math.unit(120, "kg"),
  12028. name: "Back",
  12029. image: {
  12030. source: "./media/characters/zevulfius/back.svg",
  12031. extra: 918 / 854,
  12032. bottom: 0.005
  12033. }
  12034. },
  12035. foot: {
  12036. height: math.unit(6 / 3.72, "feet"),
  12037. name: "Foot",
  12038. image: {
  12039. source: "./media/characters/zevulfius/foot.svg"
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(750, "meters")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(20, "km"),
  12051. default: true
  12052. },
  12053. {
  12054. name: "Gigamacro",
  12055. height: math.unit(2000, "km")
  12056. },
  12057. {
  12058. name: "Teramacro",
  12059. height: math.unit(250000, "km")
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12065. {
  12066. front: {
  12067. height: math.unit(100, "feet"),
  12068. weight: math.unit(350, "kg"),
  12069. name: "Front",
  12070. image: {
  12071. source: "./media/characters/rikes/front.svg",
  12072. extra: 1565 / 1483,
  12073. bottom: 0.017
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Macro",
  12080. height: math.unit(100, "feet"),
  12081. default: true
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(8, "feet"),
  12090. weight: math.unit(356, "lb"),
  12091. name: "Front",
  12092. image: {
  12093. source: "./media/characters/adam-silver-mane/front.svg",
  12094. extra: 1036/937,
  12095. bottom: 63/1099
  12096. }
  12097. },
  12098. side: {
  12099. height: math.unit(8, "feet"),
  12100. weight: math.unit(356, "lb"),
  12101. name: "Side",
  12102. image: {
  12103. source: "./media/characters/adam-silver-mane/side.svg",
  12104. extra: 997/901,
  12105. bottom: 59/1056
  12106. }
  12107. },
  12108. frontNsfw: {
  12109. height: math.unit(8, "feet"),
  12110. weight: math.unit(356, "lb"),
  12111. name: "Front (NSFW)",
  12112. image: {
  12113. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12114. extra: 1036/937,
  12115. bottom: 63/1099
  12116. }
  12117. },
  12118. sideNsfw: {
  12119. height: math.unit(8, "feet"),
  12120. weight: math.unit(356, "lb"),
  12121. name: "Side (NSFW)",
  12122. image: {
  12123. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12124. extra: 997/901,
  12125. bottom: 59/1056
  12126. }
  12127. },
  12128. dick: {
  12129. height: math.unit(2.1, "feet"),
  12130. name: "Dick",
  12131. image: {
  12132. source: "./media/characters/adam-silver-mane/dick.svg"
  12133. }
  12134. },
  12135. taur: {
  12136. height: math.unit(16, "feet"),
  12137. weight: math.unit(1500, "kg"),
  12138. name: "Taur",
  12139. image: {
  12140. source: "./media/characters/adam-silver-mane/taur.svg",
  12141. extra: 1713 / 1571,
  12142. bottom: 0.01
  12143. }
  12144. },
  12145. },
  12146. [
  12147. {
  12148. name: "Normal",
  12149. height: math.unit(8, "feet")
  12150. },
  12151. {
  12152. name: "Minimacro",
  12153. height: math.unit(80, "feet")
  12154. },
  12155. {
  12156. name: "MDA",
  12157. height: math.unit(80, "meters")
  12158. },
  12159. {
  12160. name: "Macro",
  12161. height: math.unit(800, "feet"),
  12162. default: true
  12163. },
  12164. {
  12165. name: "Megamacro",
  12166. height: math.unit(8000, "feet")
  12167. },
  12168. {
  12169. name: "Gigamacro",
  12170. height: math.unit(800, "miles")
  12171. },
  12172. {
  12173. name: "Teramacro",
  12174. height: math.unit(80000, "miles")
  12175. },
  12176. {
  12177. name: "Celestial",
  12178. height: math.unit(8e6, "miles")
  12179. },
  12180. {
  12181. name: "Star Dragon",
  12182. height: math.unit(800000, "parsecs")
  12183. },
  12184. {
  12185. name: "Godly",
  12186. height: math.unit(800, "teraparsecs")
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12192. {
  12193. front: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(150, "lb"),
  12196. name: "Front",
  12197. image: {
  12198. source: "./media/characters/ky'owin/front.svg",
  12199. extra: 3862/3053,
  12200. bottom: 74/3936
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Normal",
  12207. height: math.unit(6 + 8 / 12, "feet")
  12208. },
  12209. {
  12210. name: "Large",
  12211. height: math.unit(68, "feet")
  12212. },
  12213. {
  12214. name: "Macro",
  12215. height: math.unit(132, "feet")
  12216. },
  12217. {
  12218. name: "Macro+",
  12219. height: math.unit(340, "feet")
  12220. },
  12221. {
  12222. name: "Macro++",
  12223. height: math.unit(680, "feet"),
  12224. default: true
  12225. },
  12226. {
  12227. name: "Megamacro",
  12228. height: math.unit(1, "mile")
  12229. },
  12230. {
  12231. name: "Megamacro+",
  12232. height: math.unit(10, "miles")
  12233. },
  12234. ]
  12235. ))
  12236. characterMakers.push(() => makeCharacter(
  12237. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12238. {
  12239. front: {
  12240. height: math.unit(4, "feet"),
  12241. weight: math.unit(50, "lb"),
  12242. name: "Front",
  12243. image: {
  12244. source: "./media/characters/mal/front.svg",
  12245. extra: 785 / 724,
  12246. bottom: 0.07
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Micro",
  12253. height: math.unit(4, "inches")
  12254. },
  12255. {
  12256. name: "Normal",
  12257. height: math.unit(4, "feet"),
  12258. default: true
  12259. },
  12260. {
  12261. name: "Macro",
  12262. height: math.unit(200, "feet")
  12263. },
  12264. ]
  12265. ))
  12266. characterMakers.push(() => makeCharacter(
  12267. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12268. {
  12269. front: {
  12270. height: math.unit(6, "feet"),
  12271. weight: math.unit(150, "lb"),
  12272. name: "Front",
  12273. image: {
  12274. source: "./media/characters/jordan-deware/front.svg",
  12275. extra: 1191 / 1012
  12276. }
  12277. },
  12278. },
  12279. [
  12280. {
  12281. name: "Nano",
  12282. height: math.unit(0.01, "mm")
  12283. },
  12284. {
  12285. name: "Minimicro",
  12286. height: math.unit(1, "mm")
  12287. },
  12288. {
  12289. name: "Micro",
  12290. height: math.unit(0.5, "inches")
  12291. },
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(4, "feet"),
  12295. default: true
  12296. },
  12297. {
  12298. name: "Minimacro",
  12299. height: math.unit(40, "meters")
  12300. },
  12301. {
  12302. name: "Small Macro",
  12303. height: math.unit(400, "meters")
  12304. },
  12305. {
  12306. name: "Macro",
  12307. height: math.unit(4, "miles")
  12308. },
  12309. {
  12310. name: "Megamacro",
  12311. height: math.unit(40, "miles")
  12312. },
  12313. {
  12314. name: "Megamacro+",
  12315. height: math.unit(400, "miles")
  12316. },
  12317. {
  12318. name: "Gigamacro",
  12319. height: math.unit(400000, "miles")
  12320. },
  12321. ]
  12322. ))
  12323. characterMakers.push(() => makeCharacter(
  12324. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12325. {
  12326. side: {
  12327. height: math.unit(6, "feet"),
  12328. weight: math.unit(150, "lb"),
  12329. name: "Side",
  12330. image: {
  12331. source: "./media/characters/kimiko/side.svg",
  12332. extra: 600 / 358
  12333. }
  12334. },
  12335. },
  12336. [
  12337. {
  12338. name: "Normal",
  12339. height: math.unit(15, "feet"),
  12340. default: true
  12341. },
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(220, "feet")
  12345. },
  12346. {
  12347. name: "Macro+",
  12348. height: math.unit(1450, "feet")
  12349. },
  12350. {
  12351. name: "Megamacro",
  12352. height: math.unit(11500, "feet")
  12353. },
  12354. {
  12355. name: "Gigamacro",
  12356. height: math.unit(9500, "miles")
  12357. },
  12358. {
  12359. name: "Teramacro",
  12360. height: math.unit(2208005005, "miles")
  12361. },
  12362. {
  12363. name: "Examacro",
  12364. height: math.unit(2750, "parsecs")
  12365. },
  12366. {
  12367. name: "Zettamacro",
  12368. height: math.unit(101500, "parsecs")
  12369. },
  12370. ]
  12371. ))
  12372. characterMakers.push(() => makeCharacter(
  12373. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12374. {
  12375. front: {
  12376. height: math.unit(6, "feet"),
  12377. weight: math.unit(70, "kg"),
  12378. name: "Front",
  12379. image: {
  12380. source: "./media/characters/andrew-sleepy/front.svg"
  12381. }
  12382. },
  12383. side: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(70, "kg"),
  12386. name: "Side",
  12387. image: {
  12388. source: "./media/characters/andrew-sleepy/side.svg"
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Micro",
  12395. height: math.unit(1, "mm"),
  12396. default: true
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12402. {
  12403. front: {
  12404. height: math.unit(6, "feet"),
  12405. weight: math.unit(150, "lb"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/judio/front.svg",
  12409. extra: 1258 / 1110
  12410. }
  12411. },
  12412. },
  12413. [
  12414. {
  12415. name: "Normal",
  12416. height: math.unit(5 + 6 / 12, "feet")
  12417. },
  12418. {
  12419. name: "Macro",
  12420. height: math.unit(1000, "feet"),
  12421. default: true
  12422. },
  12423. {
  12424. name: "Megamacro",
  12425. height: math.unit(10, "miles")
  12426. },
  12427. ]
  12428. ))
  12429. characterMakers.push(() => makeCharacter(
  12430. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12431. {
  12432. frontDressed: {
  12433. height: math.unit(6, "feet"),
  12434. weight: math.unit(68, "kg"),
  12435. name: "Front (Dressed)",
  12436. image: {
  12437. source: "./media/characters/nomaxice/front-dressed.svg",
  12438. extra: 1137/824,
  12439. bottom: 74/1211
  12440. }
  12441. },
  12442. frontShorts: {
  12443. height: math.unit(6, "feet"),
  12444. weight: math.unit(68, "kg"),
  12445. name: "Front (Shorts)",
  12446. image: {
  12447. source: "./media/characters/nomaxice/front-shorts.svg",
  12448. extra: 1137/824,
  12449. bottom: 74/1211
  12450. }
  12451. },
  12452. back: {
  12453. height: math.unit(6, "feet"),
  12454. weight: math.unit(68, "kg"),
  12455. name: "Back",
  12456. image: {
  12457. source: "./media/characters/nomaxice/back.svg",
  12458. extra: 822/786,
  12459. bottom: 39/861
  12460. }
  12461. },
  12462. hand: {
  12463. height: math.unit(0.565, "feet"),
  12464. name: "Hand",
  12465. image: {
  12466. source: "./media/characters/nomaxice/hand.svg"
  12467. }
  12468. },
  12469. foot: {
  12470. height: math.unit(1, "feet"),
  12471. name: "Foot",
  12472. image: {
  12473. source: "./media/characters/nomaxice/foot.svg"
  12474. }
  12475. },
  12476. },
  12477. [
  12478. {
  12479. name: "Micro",
  12480. height: math.unit(8, "cm")
  12481. },
  12482. {
  12483. name: "Norm",
  12484. height: math.unit(1.82, "m")
  12485. },
  12486. {
  12487. name: "Norm+",
  12488. height: math.unit(8.8, "feet"),
  12489. default: true
  12490. },
  12491. {
  12492. name: "Big",
  12493. height: math.unit(8, "meters")
  12494. },
  12495. {
  12496. name: "Macro",
  12497. height: math.unit(18, "meters")
  12498. },
  12499. {
  12500. name: "Macro+",
  12501. height: math.unit(88, "meters")
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(12, "feet"),
  12510. weight: math.unit(1.5, "tons"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/dydros/front.svg",
  12514. extra: 863 / 800,
  12515. bottom: 0.015
  12516. }
  12517. },
  12518. back: {
  12519. height: math.unit(12, "feet"),
  12520. weight: math.unit(1.5, "tons"),
  12521. name: "Back",
  12522. image: {
  12523. source: "./media/characters/dydros/back.svg",
  12524. extra: 900 / 843,
  12525. bottom: 0.005
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Normal",
  12532. height: math.unit(12, "feet"),
  12533. default: true
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(100, "kg"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/riggi/front.svg",
  12546. extra: 5787 / 5303
  12547. }
  12548. },
  12549. hyper: {
  12550. height: math.unit(6 * 5 / 3, "feet"),
  12551. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12552. name: "Hyper",
  12553. image: {
  12554. source: "./media/characters/riggi/hyper.svg",
  12555. extra: 3595 / 3485
  12556. }
  12557. },
  12558. },
  12559. [
  12560. {
  12561. name: "Small Macro",
  12562. height: math.unit(50, "feet")
  12563. },
  12564. {
  12565. name: "Default",
  12566. height: math.unit(200, "feet"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Loom",
  12571. height: math.unit(10000, "feet")
  12572. },
  12573. {
  12574. name: "Cruising Altitude",
  12575. height: math.unit(30000, "feet")
  12576. },
  12577. {
  12578. name: "Megamacro",
  12579. height: math.unit(100, "miles")
  12580. },
  12581. {
  12582. name: "Continent Sized",
  12583. height: math.unit(2800, "miles")
  12584. },
  12585. {
  12586. name: "Earth Sized",
  12587. height: math.unit(8000, "miles")
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12593. {
  12594. front: {
  12595. height: math.unit(6, "feet"),
  12596. weight: math.unit(250, "lb"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/alexi/front.svg",
  12600. extra: 3483 / 3291,
  12601. bottom: 0.04
  12602. }
  12603. },
  12604. back: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(250, "lb"),
  12607. name: "Back",
  12608. image: {
  12609. source: "./media/characters/alexi/back.svg",
  12610. extra: 3533 / 3356,
  12611. bottom: 0.021
  12612. }
  12613. },
  12614. frontTransforming: {
  12615. height: math.unit(8.58, "feet"),
  12616. weight: math.unit(1300, "lb"),
  12617. name: "Transforming",
  12618. image: {
  12619. source: "./media/characters/alexi/front-transforming.svg",
  12620. extra: 437 / 409,
  12621. bottom: 19 / 458.66
  12622. }
  12623. },
  12624. frontTransformed: {
  12625. height: math.unit(12.5, "feet"),
  12626. weight: math.unit(4000, "lb"),
  12627. name: "Transformed",
  12628. image: {
  12629. source: "./media/characters/alexi/front-transformed.svg",
  12630. extra: 639 / 614,
  12631. bottom: 30.55 / 671
  12632. }
  12633. },
  12634. },
  12635. [
  12636. {
  12637. name: "Normal",
  12638. height: math.unit(14, "feet"),
  12639. default: true
  12640. },
  12641. {
  12642. name: "Minimacro",
  12643. height: math.unit(30, "meters")
  12644. },
  12645. {
  12646. name: "Macro",
  12647. height: math.unit(500, "meters")
  12648. },
  12649. {
  12650. name: "Megamacro",
  12651. height: math.unit(9000, "km")
  12652. },
  12653. {
  12654. name: "Teramacro",
  12655. height: math.unit(384000, "km")
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(6, "feet"),
  12664. weight: math.unit(150, "lb"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/kayroo/front.svg",
  12668. extra: 1153 / 1038,
  12669. bottom: 0.06
  12670. }
  12671. },
  12672. foot: {
  12673. height: math.unit(6, "feet"),
  12674. weight: math.unit(150, "lb"),
  12675. name: "Foot",
  12676. image: {
  12677. source: "./media/characters/kayroo/foot.svg"
  12678. }
  12679. },
  12680. },
  12681. [
  12682. {
  12683. name: "Normal",
  12684. height: math.unit(8, "feet"),
  12685. default: true
  12686. },
  12687. {
  12688. name: "Minimacro",
  12689. height: math.unit(250, "feet")
  12690. },
  12691. {
  12692. name: "Macro",
  12693. height: math.unit(2800, "feet")
  12694. },
  12695. {
  12696. name: "Megamacro",
  12697. height: math.unit(5200, "feet")
  12698. },
  12699. {
  12700. name: "Gigamacro",
  12701. height: math.unit(27000, "feet")
  12702. },
  12703. {
  12704. name: "Omega",
  12705. height: math.unit(45000, "feet")
  12706. },
  12707. ]
  12708. ))
  12709. characterMakers.push(() => makeCharacter(
  12710. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12711. {
  12712. front: {
  12713. height: math.unit(18, "feet"),
  12714. weight: math.unit(5800, "lb"),
  12715. name: "Front",
  12716. image: {
  12717. source: "./media/characters/rhys/front.svg",
  12718. extra: 3386 / 3090,
  12719. bottom: 0.07
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Normal",
  12726. height: math.unit(18, "feet"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Working Size",
  12731. height: math.unit(200, "feet")
  12732. },
  12733. {
  12734. name: "Demolition Size",
  12735. height: math.unit(2000, "feet")
  12736. },
  12737. {
  12738. name: "Maximum Licensed Size",
  12739. height: math.unit(5, "miles")
  12740. },
  12741. {
  12742. name: "Maximum Observed Size",
  12743. height: math.unit(10, "yottameters")
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12749. {
  12750. front: {
  12751. height: math.unit(6, "feet"),
  12752. weight: math.unit(250, "lb"),
  12753. name: "Front",
  12754. image: {
  12755. source: "./media/characters/toto/front.svg",
  12756. extra: 527 / 479,
  12757. bottom: 0.05
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Micro",
  12764. height: math.unit(3, "feet")
  12765. },
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(10, "feet")
  12769. },
  12770. {
  12771. name: "Macro",
  12772. height: math.unit(150, "feet"),
  12773. default: true
  12774. },
  12775. {
  12776. name: "Megamacro",
  12777. height: math.unit(1200, "feet")
  12778. },
  12779. ]
  12780. ))
  12781. characterMakers.push(() => makeCharacter(
  12782. { name: "King", species: ["lion"], tags: ["anthro"] },
  12783. {
  12784. back: {
  12785. height: math.unit(6, "feet"),
  12786. weight: math.unit(150, "lb"),
  12787. name: "Back",
  12788. image: {
  12789. source: "./media/characters/king/back.svg"
  12790. }
  12791. },
  12792. },
  12793. [
  12794. {
  12795. name: "Micro",
  12796. height: math.unit(2, "inches")
  12797. },
  12798. {
  12799. name: "Normal",
  12800. height: math.unit(8, "feet")
  12801. },
  12802. {
  12803. name: "Macro",
  12804. height: math.unit(200, "feet"),
  12805. default: true
  12806. },
  12807. {
  12808. name: "Megamacro",
  12809. height: math.unit(50, "miles")
  12810. },
  12811. ]
  12812. ))
  12813. characterMakers.push(() => makeCharacter(
  12814. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12815. {
  12816. front: {
  12817. height: math.unit(11, "feet"),
  12818. weight: math.unit(1400, "lb"),
  12819. name: "Front",
  12820. image: {
  12821. source: "./media/characters/cordite/front.svg",
  12822. extra: 1919/1827,
  12823. bottom: 40/1959
  12824. }
  12825. },
  12826. side: {
  12827. height: math.unit(11, "feet"),
  12828. weight: math.unit(1400, "lb"),
  12829. name: "Side",
  12830. image: {
  12831. source: "./media/characters/cordite/side.svg",
  12832. extra: 1908/1793,
  12833. bottom: 38/1946
  12834. }
  12835. },
  12836. back: {
  12837. height: math.unit(11, "feet"),
  12838. weight: math.unit(1400, "lb"),
  12839. name: "Back",
  12840. image: {
  12841. source: "./media/characters/cordite/back.svg",
  12842. extra: 1938/1837,
  12843. bottom: 10/1948
  12844. }
  12845. },
  12846. feral: {
  12847. height: math.unit(2, "feet"),
  12848. weight: math.unit(90, "lb"),
  12849. name: "Feral",
  12850. image: {
  12851. source: "./media/characters/cordite/feral.svg",
  12852. extra: 1260 / 755,
  12853. bottom: 0.05
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(11, "feet"),
  12861. default: true
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12867. {
  12868. front: {
  12869. height: math.unit(6, "feet"),
  12870. weight: math.unit(150, "lb"),
  12871. name: "Front",
  12872. image: {
  12873. source: "./media/characters/pianostrong/front.svg",
  12874. extra: 6577 / 6254,
  12875. bottom: 0.02
  12876. }
  12877. },
  12878. side: {
  12879. height: math.unit(6, "feet"),
  12880. weight: math.unit(150, "lb"),
  12881. name: "Side",
  12882. image: {
  12883. source: "./media/characters/pianostrong/side.svg",
  12884. extra: 6106 / 5730
  12885. }
  12886. },
  12887. back: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Back",
  12891. image: {
  12892. source: "./media/characters/pianostrong/back.svg",
  12893. extra: 6085 / 5733,
  12894. bottom: 0.01
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Macro",
  12901. height: math.unit(100, "feet")
  12902. },
  12903. {
  12904. name: "Macro+",
  12905. height: math.unit(300, "feet"),
  12906. default: true
  12907. },
  12908. {
  12909. name: "Macro++",
  12910. height: math.unit(1000, "feet")
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12916. {
  12917. front: {
  12918. height: math.unit(6, "feet"),
  12919. weight: math.unit(150, "lb"),
  12920. name: "Front",
  12921. image: {
  12922. source: "./media/characters/kona/front.svg",
  12923. extra: 2960 / 2629,
  12924. bottom: 0.005
  12925. }
  12926. },
  12927. },
  12928. [
  12929. {
  12930. name: "Normal",
  12931. height: math.unit(11 + 8 / 12, "feet")
  12932. },
  12933. {
  12934. name: "Macro",
  12935. height: math.unit(850, "feet"),
  12936. default: true
  12937. },
  12938. {
  12939. name: "Macro+",
  12940. height: math.unit(1.5, "km"),
  12941. default: true
  12942. },
  12943. {
  12944. name: "Megamacro",
  12945. height: math.unit(80, "miles")
  12946. },
  12947. {
  12948. name: "Gigamacro",
  12949. height: math.unit(3500, "miles")
  12950. },
  12951. ]
  12952. ))
  12953. characterMakers.push(() => makeCharacter(
  12954. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12955. {
  12956. side: {
  12957. height: math.unit(1.9, "meters"),
  12958. weight: math.unit(326, "kg"),
  12959. name: "Side",
  12960. image: {
  12961. source: "./media/characters/levi/side.svg",
  12962. extra: 1704 / 1334,
  12963. bottom: 0.02
  12964. }
  12965. },
  12966. },
  12967. [
  12968. {
  12969. name: "Normal",
  12970. height: math.unit(1.9, "meters"),
  12971. default: true
  12972. },
  12973. {
  12974. name: "Macro",
  12975. height: math.unit(20, "meters")
  12976. },
  12977. {
  12978. name: "Macro+",
  12979. height: math.unit(200, "meters")
  12980. },
  12981. {
  12982. name: "Megamacro",
  12983. height: math.unit(2, "km")
  12984. },
  12985. {
  12986. name: "Megamacro+",
  12987. height: math.unit(20, "km")
  12988. },
  12989. {
  12990. name: "Gigamacro",
  12991. height: math.unit(2500, "km")
  12992. },
  12993. {
  12994. name: "Gigamacro+",
  12995. height: math.unit(120000, "km")
  12996. },
  12997. {
  12998. name: "Teramacro",
  12999. height: math.unit(7.77e6, "km")
  13000. },
  13001. ]
  13002. ))
  13003. characterMakers.push(() => makeCharacter(
  13004. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13005. {
  13006. front: {
  13007. height: math.unit(6 + 4/12, "feet"),
  13008. weight: math.unit(190, "lb"),
  13009. name: "Front",
  13010. image: {
  13011. source: "./media/characters/bmc/front.svg",
  13012. extra: 1626/1472,
  13013. bottom: 79/1705
  13014. }
  13015. },
  13016. back: {
  13017. height: math.unit(6 + 4/12, "feet"),
  13018. weight: math.unit(190, "lb"),
  13019. name: "Back",
  13020. image: {
  13021. source: "./media/characters/bmc/back.svg",
  13022. extra: 1640/1479,
  13023. bottom: 45/1685
  13024. }
  13025. },
  13026. frontArmor: {
  13027. height: math.unit(6 + 4/12, "feet"),
  13028. weight: math.unit(190, "lb"),
  13029. name: "Front-armor",
  13030. image: {
  13031. source: "./media/characters/bmc/front-armor.svg",
  13032. extra: 1538/1468,
  13033. bottom: 79/1617
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Human-sized",
  13040. height: math.unit(6 + 4 / 12, "feet")
  13041. },
  13042. {
  13043. name: "Interactive Size",
  13044. height: math.unit(25, "feet")
  13045. },
  13046. {
  13047. name: "Small",
  13048. height: math.unit(250, "feet")
  13049. },
  13050. {
  13051. name: "Normal",
  13052. height: math.unit(1250, "feet"),
  13053. default: true
  13054. },
  13055. {
  13056. name: "Good Day",
  13057. height: math.unit(88, "miles")
  13058. },
  13059. {
  13060. name: "Largest Measured Size",
  13061. height: math.unit(105.960, "galaxies")
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13067. {
  13068. front: {
  13069. height: math.unit(20, "feet"),
  13070. weight: math.unit(2016, "kg"),
  13071. name: "Front",
  13072. image: {
  13073. source: "./media/characters/sven-the-kaiju/front.svg",
  13074. extra: 1277/1250,
  13075. bottom: 35/1312
  13076. }
  13077. },
  13078. mouth: {
  13079. height: math.unit(1.85, "feet"),
  13080. name: "Mouth",
  13081. image: {
  13082. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13083. }
  13084. },
  13085. },
  13086. [
  13087. {
  13088. name: "Fairy",
  13089. height: math.unit(6, "inches")
  13090. },
  13091. {
  13092. name: "Normal",
  13093. height: math.unit(20, "feet"),
  13094. default: true
  13095. },
  13096. {
  13097. name: "Rampage",
  13098. height: math.unit(200, "feet")
  13099. },
  13100. {
  13101. name: "Archfey Forest Guardian",
  13102. height: math.unit(1, "mile")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13108. {
  13109. front: {
  13110. height: math.unit(4, "meters"),
  13111. weight: math.unit(2, "tons"),
  13112. name: "Front",
  13113. image: {
  13114. source: "./media/characters/marik/front.svg",
  13115. extra: 1057 / 1003,
  13116. bottom: 0.08
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Normal",
  13123. height: math.unit(4, "meters"),
  13124. default: true
  13125. },
  13126. {
  13127. name: "Macro",
  13128. height: math.unit(20, "meters")
  13129. },
  13130. {
  13131. name: "Megamacro",
  13132. height: math.unit(50, "km")
  13133. },
  13134. {
  13135. name: "Gigamacro",
  13136. height: math.unit(100, "km")
  13137. },
  13138. {
  13139. name: "Alpha Macro",
  13140. height: math.unit(7.88e7, "yottameters")
  13141. },
  13142. ]
  13143. ))
  13144. characterMakers.push(() => makeCharacter(
  13145. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13146. {
  13147. front: {
  13148. height: math.unit(6, "feet"),
  13149. weight: math.unit(110, "lb"),
  13150. name: "Front",
  13151. image: {
  13152. source: "./media/characters/mel/front.svg",
  13153. extra: 736 / 617,
  13154. bottom: 0.017
  13155. }
  13156. },
  13157. },
  13158. [
  13159. {
  13160. name: "Pico",
  13161. height: math.unit(3, "pm")
  13162. },
  13163. {
  13164. name: "Nano",
  13165. height: math.unit(3, "nm")
  13166. },
  13167. {
  13168. name: "Micro",
  13169. height: math.unit(0.3, "mm"),
  13170. default: true
  13171. },
  13172. {
  13173. name: "Micro+",
  13174. height: math.unit(3, "mm")
  13175. },
  13176. {
  13177. name: "Normal",
  13178. height: math.unit(5 + 10.5 / 12, "feet")
  13179. },
  13180. ]
  13181. ))
  13182. characterMakers.push(() => makeCharacter(
  13183. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13184. {
  13185. kaiju: {
  13186. height: math.unit(1.75, "meters"),
  13187. weight: math.unit(55, "kg"),
  13188. name: "Kaiju",
  13189. image: {
  13190. source: "./media/characters/lykonous/kaiju.svg",
  13191. extra: 1055 / 946,
  13192. bottom: 0.135
  13193. }
  13194. },
  13195. },
  13196. [
  13197. {
  13198. name: "Normal",
  13199. height: math.unit(2.5, "meters"),
  13200. default: true
  13201. },
  13202. {
  13203. name: "Kaiju Dragon",
  13204. height: math.unit(60, "meters")
  13205. },
  13206. {
  13207. name: "Mega Kaiju",
  13208. height: math.unit(120, "km")
  13209. },
  13210. {
  13211. name: "Giga Kaiju",
  13212. height: math.unit(200, "megameters")
  13213. },
  13214. {
  13215. name: "Terra Kaiju",
  13216. height: math.unit(400, "gigameters")
  13217. },
  13218. {
  13219. name: "Kaiju Dragon God",
  13220. height: math.unit(13000, "exaparsecs")
  13221. },
  13222. ]
  13223. ))
  13224. characterMakers.push(() => makeCharacter(
  13225. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13226. {
  13227. front: {
  13228. height: math.unit(6, "feet"),
  13229. weight: math.unit(150, "lb"),
  13230. name: "Front",
  13231. image: {
  13232. source: "./media/characters/blü/front.svg",
  13233. extra: 1883 / 1564,
  13234. bottom: 0.031
  13235. }
  13236. },
  13237. },
  13238. [
  13239. {
  13240. name: "Normal",
  13241. height: math.unit(13, "feet"),
  13242. default: true
  13243. },
  13244. {
  13245. name: "Big Boi",
  13246. height: math.unit(150, "meters")
  13247. },
  13248. {
  13249. name: "Mini Stomper",
  13250. height: math.unit(300, "meters")
  13251. },
  13252. {
  13253. name: "Macro",
  13254. height: math.unit(1000, "meters")
  13255. },
  13256. {
  13257. name: "Megamacro",
  13258. height: math.unit(11000, "meters")
  13259. },
  13260. {
  13261. name: "Gigamacro",
  13262. height: math.unit(11000, "km")
  13263. },
  13264. {
  13265. name: "Teramacro",
  13266. height: math.unit(420000, "km")
  13267. },
  13268. {
  13269. name: "Examacro",
  13270. height: math.unit(120, "parsecs")
  13271. },
  13272. {
  13273. name: "God Tho",
  13274. height: math.unit(98000000000, "parsecs")
  13275. },
  13276. ]
  13277. ))
  13278. characterMakers.push(() => makeCharacter(
  13279. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13280. {
  13281. taurFront: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(200, "lb"),
  13284. name: "Taur (Front)",
  13285. image: {
  13286. source: "./media/characters/scales/taur-front.svg",
  13287. extra: 1,
  13288. bottom: 0.05
  13289. }
  13290. },
  13291. taurBack: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(200, "lb"),
  13294. name: "Taur (Back)",
  13295. image: {
  13296. source: "./media/characters/scales/taur-back.svg",
  13297. extra: 1,
  13298. bottom: 0.08
  13299. }
  13300. },
  13301. anthro: {
  13302. height: math.unit(6 * 7 / 12, "feet"),
  13303. weight: math.unit(100, "lb"),
  13304. name: "Anthro",
  13305. image: {
  13306. source: "./media/characters/scales/anthro.svg",
  13307. extra: 1,
  13308. bottom: 0.06
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Normal",
  13315. height: math.unit(12, "feet"),
  13316. default: true
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(6, "feet"),
  13325. weight: math.unit(150, "lb"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/koragos/front.svg",
  13329. extra: 841 / 794,
  13330. bottom: 0.035
  13331. }
  13332. },
  13333. back: {
  13334. height: math.unit(6, "feet"),
  13335. weight: math.unit(150, "lb"),
  13336. name: "Back",
  13337. image: {
  13338. source: "./media/characters/koragos/back.svg",
  13339. extra: 841 / 810,
  13340. bottom: 0.022
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(6 + 11 / 12, "feet"),
  13348. default: true
  13349. },
  13350. {
  13351. name: "Macro",
  13352. height: math.unit(490, "feet")
  13353. },
  13354. {
  13355. name: "Megamacro",
  13356. height: math.unit(10, "miles")
  13357. },
  13358. {
  13359. name: "Gigamacro",
  13360. height: math.unit(50, "miles")
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13366. {
  13367. front: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(250, "lb"),
  13370. name: "Front",
  13371. image: {
  13372. source: "./media/characters/xylrem/front.svg",
  13373. extra: 3323 / 3050,
  13374. bottom: 0.065
  13375. }
  13376. },
  13377. },
  13378. [
  13379. {
  13380. name: "Micro",
  13381. height: math.unit(4, "feet")
  13382. },
  13383. {
  13384. name: "Normal",
  13385. height: math.unit(16, "feet"),
  13386. default: true
  13387. },
  13388. {
  13389. name: "Macro",
  13390. height: math.unit(2720, "feet")
  13391. },
  13392. {
  13393. name: "Megamacro",
  13394. height: math.unit(25000, "miles")
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(8, "feet"),
  13403. weight: math.unit(250, "kg"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/ikideru/front.svg",
  13407. extra: 930 / 870,
  13408. bottom: 0.087
  13409. }
  13410. },
  13411. back: {
  13412. height: math.unit(8, "feet"),
  13413. weight: math.unit(250, "kg"),
  13414. name: "Back",
  13415. image: {
  13416. source: "./media/characters/ikideru/back.svg",
  13417. extra: 919 / 852,
  13418. bottom: 0.055
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Rare",
  13425. height: math.unit(8, "feet"),
  13426. default: true
  13427. },
  13428. {
  13429. name: "Playful Loom",
  13430. height: math.unit(80, "feet")
  13431. },
  13432. {
  13433. name: "City Leaner",
  13434. height: math.unit(230, "feet")
  13435. },
  13436. {
  13437. name: "Megamacro",
  13438. height: math.unit(2500, "feet")
  13439. },
  13440. {
  13441. name: "Gigamacro",
  13442. height: math.unit(26400, "feet")
  13443. },
  13444. {
  13445. name: "Tectonic Shifter",
  13446. height: math.unit(1.7, "megameters")
  13447. },
  13448. {
  13449. name: "Planet Carer",
  13450. height: math.unit(21, "megameters")
  13451. },
  13452. {
  13453. name: "God",
  13454. height: math.unit(11157.22, "parsecs")
  13455. },
  13456. ]
  13457. ))
  13458. characterMakers.push(() => makeCharacter(
  13459. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13460. {
  13461. front: {
  13462. height: math.unit(6, "feet"),
  13463. weight: math.unit(120, "lb"),
  13464. name: "Front",
  13465. image: {
  13466. source: "./media/characters/neo/front.svg"
  13467. }
  13468. },
  13469. },
  13470. [
  13471. {
  13472. name: "Micro",
  13473. height: math.unit(2, "inches"),
  13474. default: true
  13475. },
  13476. {
  13477. name: "Human Size",
  13478. height: math.unit(5 + 8 / 12, "feet")
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13484. {
  13485. front: {
  13486. height: math.unit(13 + 10 / 12, "feet"),
  13487. weight: math.unit(5320, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/chauncey-chantz/front.svg",
  13491. extra: 1587 / 1435,
  13492. bottom: 0.02
  13493. }
  13494. },
  13495. },
  13496. [
  13497. {
  13498. name: "Normal",
  13499. height: math.unit(13 + 10 / 12, "feet"),
  13500. default: true
  13501. },
  13502. {
  13503. name: "Macro",
  13504. height: math.unit(45, "feet")
  13505. },
  13506. {
  13507. name: "Megamacro",
  13508. height: math.unit(250, "miles")
  13509. },
  13510. {
  13511. name: "Planetary",
  13512. height: math.unit(10000, "miles")
  13513. },
  13514. {
  13515. name: "Galactic",
  13516. height: math.unit(40000, "parsecs")
  13517. },
  13518. {
  13519. name: "Universal",
  13520. height: math.unit(1, "yottameter")
  13521. },
  13522. ]
  13523. ))
  13524. characterMakers.push(() => makeCharacter(
  13525. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13526. {
  13527. front: {
  13528. height: math.unit(6, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Front",
  13531. image: {
  13532. source: "./media/characters/epifox/front.svg",
  13533. extra: 1,
  13534. bottom: 0.075
  13535. }
  13536. },
  13537. },
  13538. [
  13539. {
  13540. name: "Micro",
  13541. height: math.unit(6, "inches")
  13542. },
  13543. {
  13544. name: "Normal",
  13545. height: math.unit(12, "feet"),
  13546. default: true
  13547. },
  13548. {
  13549. name: "Macro",
  13550. height: math.unit(3810, "feet")
  13551. },
  13552. {
  13553. name: "Megamacro",
  13554. height: math.unit(500, "miles")
  13555. },
  13556. ]
  13557. ))
  13558. characterMakers.push(() => makeCharacter(
  13559. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13560. {
  13561. front: {
  13562. height: math.unit(1.8796, "m"),
  13563. weight: math.unit(230, "lb"),
  13564. name: "Front",
  13565. image: {
  13566. source: "./media/characters/colin-t/front.svg",
  13567. extra: 1272 / 1193,
  13568. bottom: 0.07
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Micro",
  13575. height: math.unit(0.571, "meters")
  13576. },
  13577. {
  13578. name: "Normal",
  13579. height: math.unit(1.8796, "meters"),
  13580. default: true
  13581. },
  13582. {
  13583. name: "Tall",
  13584. height: math.unit(4, "meters")
  13585. },
  13586. {
  13587. name: "Macro",
  13588. height: math.unit(67.241, "meters")
  13589. },
  13590. {
  13591. name: "Megamacro",
  13592. height: math.unit(371.856, "meters")
  13593. },
  13594. {
  13595. name: "Planetary",
  13596. height: math.unit(12631.5689, "km")
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(1.85, "meters"),
  13605. weight: math.unit(80, "kg"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/matvei/front.svg",
  13609. extra: 456/447,
  13610. bottom: 8/464
  13611. }
  13612. },
  13613. back: {
  13614. height: math.unit(1.85, "meters"),
  13615. weight: math.unit(80, "kg"),
  13616. name: "Back",
  13617. image: {
  13618. source: "./media/characters/matvei/back.svg",
  13619. extra: 434/427,
  13620. bottom: 11/445
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Normal",
  13627. height: math.unit(1.85, "meters"),
  13628. default: true
  13629. },
  13630. ]
  13631. ))
  13632. characterMakers.push(() => makeCharacter(
  13633. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13634. {
  13635. front: {
  13636. height: math.unit(5 + 9 / 12, "feet"),
  13637. weight: math.unit(70, "lb"),
  13638. name: "Front",
  13639. image: {
  13640. source: "./media/characters/quincy/front.svg",
  13641. extra: 3041 / 2751
  13642. }
  13643. },
  13644. back: {
  13645. height: math.unit(5 + 9 / 12, "feet"),
  13646. weight: math.unit(70, "lb"),
  13647. name: "Back",
  13648. image: {
  13649. source: "./media/characters/quincy/back.svg",
  13650. extra: 3041 / 2751
  13651. }
  13652. },
  13653. flying: {
  13654. height: math.unit(5 + 4 / 12, "feet"),
  13655. weight: math.unit(70, "lb"),
  13656. name: "Flying",
  13657. image: {
  13658. source: "./media/characters/quincy/flying.svg",
  13659. extra: 1044 / 930
  13660. }
  13661. },
  13662. },
  13663. [
  13664. {
  13665. name: "Micro",
  13666. height: math.unit(3, "cm")
  13667. },
  13668. {
  13669. name: "Normal",
  13670. height: math.unit(5 + 9 / 12, "feet")
  13671. },
  13672. {
  13673. name: "Macro",
  13674. height: math.unit(200, "meters"),
  13675. default: true
  13676. },
  13677. {
  13678. name: "Megamacro",
  13679. height: math.unit(1000, "meters")
  13680. },
  13681. ]
  13682. ))
  13683. characterMakers.push(() => makeCharacter(
  13684. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13685. {
  13686. front: {
  13687. height: math.unit(3 + 11/12, "feet"),
  13688. weight: math.unit(50, "lb"),
  13689. name: "Front",
  13690. image: {
  13691. source: "./media/characters/vanrel/front.svg",
  13692. extra: 1104/949,
  13693. bottom: 52/1156
  13694. }
  13695. },
  13696. back: {
  13697. height: math.unit(3 + 11/12, "feet"),
  13698. weight: math.unit(50, "lb"),
  13699. name: "Back",
  13700. image: {
  13701. source: "./media/characters/vanrel/back.svg",
  13702. extra: 1119/976,
  13703. bottom: 37/1156
  13704. }
  13705. },
  13706. tome: {
  13707. height: math.unit(1.35, "feet"),
  13708. weight: math.unit(10, "lb"),
  13709. name: "Vanrel's Tome",
  13710. rename: true,
  13711. image: {
  13712. source: "./media/characters/vanrel/tome.svg"
  13713. }
  13714. },
  13715. beans: {
  13716. height: math.unit(0.89, "feet"),
  13717. name: "Beans",
  13718. image: {
  13719. source: "./media/characters/vanrel/beans.svg"
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Normal",
  13726. height: math.unit(3 + 11/12, "feet"),
  13727. default: true
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13733. {
  13734. front: {
  13735. height: math.unit(7 + 5 / 12, "feet"),
  13736. name: "Front",
  13737. image: {
  13738. source: "./media/characters/kuiper-vanrel/front.svg",
  13739. extra: 1219/1169,
  13740. bottom: 69/1288
  13741. }
  13742. },
  13743. back: {
  13744. height: math.unit(7 + 5 / 12, "feet"),
  13745. name: "Back",
  13746. image: {
  13747. source: "./media/characters/kuiper-vanrel/back.svg",
  13748. extra: 1236/1193,
  13749. bottom: 27/1263
  13750. }
  13751. },
  13752. foot: {
  13753. height: math.unit(0.55, "meters"),
  13754. name: "Foot",
  13755. image: {
  13756. source: "./media/characters/kuiper-vanrel/foot.svg",
  13757. }
  13758. },
  13759. battle: {
  13760. height: math.unit(6.824, "feet"),
  13761. name: "Battle",
  13762. image: {
  13763. source: "./media/characters/kuiper-vanrel/battle.svg",
  13764. extra: 1466 / 1327,
  13765. bottom: 29 / 1492.5
  13766. }
  13767. },
  13768. meerkui: {
  13769. height: math.unit(18, "inches"),
  13770. name: "Meerkui",
  13771. image: {
  13772. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13773. extra: 1354/1289,
  13774. bottom: 69/1423
  13775. }
  13776. },
  13777. },
  13778. [
  13779. {
  13780. name: "Normal",
  13781. height: math.unit(7 + 5 / 12, "feet"),
  13782. default: true
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13788. {
  13789. front: {
  13790. height: math.unit(8 + 5 / 12, "feet"),
  13791. name: "Front",
  13792. image: {
  13793. source: "./media/characters/keset-vanrel/front.svg",
  13794. extra: 1231/1148,
  13795. bottom: 82/1313
  13796. }
  13797. },
  13798. back: {
  13799. height: math.unit(8 + 5 / 12, "feet"),
  13800. name: "Back",
  13801. image: {
  13802. source: "./media/characters/keset-vanrel/back.svg",
  13803. extra: 1240/1174,
  13804. bottom: 33/1273
  13805. }
  13806. },
  13807. hand: {
  13808. height: math.unit(0.6, "meters"),
  13809. name: "Hand",
  13810. image: {
  13811. source: "./media/characters/keset-vanrel/hand.svg"
  13812. }
  13813. },
  13814. foot: {
  13815. height: math.unit(0.94978, "meters"),
  13816. name: "Foot",
  13817. image: {
  13818. source: "./media/characters/keset-vanrel/foot.svg"
  13819. }
  13820. },
  13821. battle: {
  13822. height: math.unit(7.408, "feet"),
  13823. name: "Battle",
  13824. image: {
  13825. source: "./media/characters/keset-vanrel/battle.svg",
  13826. extra: 1890 / 1386,
  13827. bottom: 73.28 / 1970
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Normal",
  13834. height: math.unit(8 + 5 / 12, "feet"),
  13835. default: true
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/neos/front.svg",
  13848. extra: 1696 / 992,
  13849. bottom: 0.14
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Normal",
  13856. height: math.unit(54, "cm"),
  13857. default: true
  13858. },
  13859. {
  13860. name: "Macro",
  13861. height: math.unit(100, "m")
  13862. },
  13863. {
  13864. name: "Megamacro",
  13865. height: math.unit(10, "km")
  13866. },
  13867. {
  13868. name: "Megamacro+",
  13869. height: math.unit(100, "km")
  13870. },
  13871. {
  13872. name: "Gigamacro",
  13873. height: math.unit(100, "Mm")
  13874. },
  13875. {
  13876. name: "Teramacro",
  13877. height: math.unit(100, "Gm")
  13878. },
  13879. {
  13880. name: "Examacro",
  13881. height: math.unit(100, "Em")
  13882. },
  13883. {
  13884. name: "Godly",
  13885. height: math.unit(10000, "Ym")
  13886. },
  13887. {
  13888. name: "Beyond Godly",
  13889. height: math.unit(25, "multiverses")
  13890. },
  13891. ]
  13892. ))
  13893. characterMakers.push(() => makeCharacter(
  13894. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13895. {
  13896. fluide_tame: {
  13897. height: math.unit(5, "feet"),
  13898. name: "Tame",
  13899. image: {
  13900. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13901. extra: 1655/1574,
  13902. bottom: 231/1886
  13903. },
  13904. form: "fluide",
  13905. default: true
  13906. },
  13907. fluide_nude: {
  13908. height: math.unit(5, "feet"),
  13909. name: "Nude",
  13910. image: {
  13911. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13912. extra: 1655/1574,
  13913. bottom: 231/1886
  13914. },
  13915. form: "fluide",
  13916. },
  13917. male_tame: {
  13918. height: math.unit(5, "feet"),
  13919. name: "Tame",
  13920. image: {
  13921. source: "./media/characters/sammy-mouse/male-tame.svg",
  13922. extra: 1655/1574,
  13923. bottom: 231/1886
  13924. },
  13925. form: "male",
  13926. default: true
  13927. },
  13928. male_nude: {
  13929. height: math.unit(5, "feet"),
  13930. name: "Nude",
  13931. image: {
  13932. source: "./media/characters/sammy-mouse/male-nude.svg",
  13933. extra: 1655/1574,
  13934. bottom: 231/1886
  13935. },
  13936. form: "male",
  13937. },
  13938. female_nude: {
  13939. height: math.unit(5, "feet"),
  13940. name: "Nude",
  13941. image: {
  13942. source: "./media/characters/sammy-mouse/female-nude.svg",
  13943. extra: 1655/1574,
  13944. bottom: 231/1886
  13945. },
  13946. form: "female",
  13947. default: true
  13948. },
  13949. mouth: {
  13950. height: math.unit(0.32, "feet"),
  13951. name: "Mouth",
  13952. image: {
  13953. source: "./media/characters/sammy-mouse/mouth.svg"
  13954. },
  13955. allForms: true
  13956. },
  13957. paw: {
  13958. height: math.unit(0.42, "feet"),
  13959. name: "Paw",
  13960. image: {
  13961. source: "./media/characters/sammy-mouse/paw.svg"
  13962. },
  13963. allForms: true
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Micro",
  13969. height: math.unit(5, "inches"),
  13970. allForms: true
  13971. },
  13972. {
  13973. name: "Normal",
  13974. height: math.unit(5, "feet"),
  13975. default: true,
  13976. allForms: true
  13977. },
  13978. {
  13979. name: "Macro",
  13980. height: math.unit(60, "feet"),
  13981. allForms: true
  13982. },
  13983. ],
  13984. {
  13985. "fluide": {
  13986. name: "Fluide",
  13987. default: true
  13988. },
  13989. "male": {
  13990. name: "Male",
  13991. },
  13992. "female": {
  13993. name: "Female",
  13994. },
  13995. }
  13996. ))
  13997. characterMakers.push(() => makeCharacter(
  13998. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13999. {
  14000. front: {
  14001. height: math.unit(4, "feet"),
  14002. weight: math.unit(50, "lb"),
  14003. name: "Front",
  14004. image: {
  14005. source: "./media/characters/kole/front.svg",
  14006. extra: 1423 / 1303,
  14007. bottom: 0.025
  14008. }
  14009. },
  14010. back: {
  14011. height: math.unit(4, "feet"),
  14012. weight: math.unit(50, "lb"),
  14013. name: "Back",
  14014. image: {
  14015. source: "./media/characters/kole/back.svg",
  14016. extra: 1426 / 1280,
  14017. bottom: 0.02
  14018. }
  14019. },
  14020. },
  14021. [
  14022. {
  14023. name: "Normal",
  14024. height: math.unit(4, "feet"),
  14025. default: true
  14026. },
  14027. ]
  14028. ))
  14029. characterMakers.push(() => makeCharacter(
  14030. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14031. {
  14032. front: {
  14033. height: math.unit(2.5, "feet"),
  14034. weight: math.unit(32, "lb"),
  14035. name: "Front",
  14036. image: {
  14037. source: "./media/characters/rufran/front.svg",
  14038. extra: 1313/885,
  14039. bottom: 94/1407
  14040. }
  14041. },
  14042. side: {
  14043. height: math.unit(2.5, "feet"),
  14044. weight: math.unit(32, "lb"),
  14045. name: "Side",
  14046. image: {
  14047. source: "./media/characters/rufran/side.svg",
  14048. extra: 1109/852,
  14049. bottom: 118/1227
  14050. }
  14051. },
  14052. back: {
  14053. height: math.unit(2.5, "feet"),
  14054. weight: math.unit(32, "lb"),
  14055. name: "Back",
  14056. image: {
  14057. source: "./media/characters/rufran/back.svg",
  14058. extra: 1280/878,
  14059. bottom: 131/1411
  14060. }
  14061. },
  14062. mouth: {
  14063. height: math.unit(1.13, "feet"),
  14064. name: "Mouth",
  14065. image: {
  14066. source: "./media/characters/rufran/mouth.svg"
  14067. }
  14068. },
  14069. foot: {
  14070. height: math.unit(1.33, "feet"),
  14071. name: "Foot",
  14072. image: {
  14073. source: "./media/characters/rufran/foot.svg"
  14074. }
  14075. },
  14076. koboldFront: {
  14077. height: math.unit(2 + 6 / 12, "feet"),
  14078. weight: math.unit(20, "lb"),
  14079. name: "Front (Kobold)",
  14080. image: {
  14081. source: "./media/characters/rufran/kobold-front.svg",
  14082. extra: 2041 / 1839,
  14083. bottom: 0.055
  14084. }
  14085. },
  14086. koboldBack: {
  14087. height: math.unit(2 + 6 / 12, "feet"),
  14088. weight: math.unit(20, "lb"),
  14089. name: "Back (Kobold)",
  14090. image: {
  14091. source: "./media/characters/rufran/kobold-back.svg",
  14092. extra: 2054 / 1839,
  14093. bottom: 0.01
  14094. }
  14095. },
  14096. koboldHand: {
  14097. height: math.unit(0.2166, "meters"),
  14098. name: "Hand (Kobold)",
  14099. image: {
  14100. source: "./media/characters/rufran/kobold-hand.svg"
  14101. }
  14102. },
  14103. koboldFoot: {
  14104. height: math.unit(0.185, "meters"),
  14105. name: "Foot (Kobold)",
  14106. image: {
  14107. source: "./media/characters/rufran/kobold-foot.svg"
  14108. }
  14109. },
  14110. },
  14111. [
  14112. {
  14113. name: "Micro",
  14114. height: math.unit(1, "inch")
  14115. },
  14116. {
  14117. name: "Normal",
  14118. height: math.unit(2 + 6 / 12, "feet"),
  14119. default: true
  14120. },
  14121. {
  14122. name: "Big",
  14123. height: math.unit(60, "feet")
  14124. },
  14125. {
  14126. name: "Macro",
  14127. height: math.unit(325, "feet")
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14133. {
  14134. front: {
  14135. height: math.unit(0.3, "meters"),
  14136. weight: math.unit(3.5, "kg"),
  14137. name: "Front",
  14138. image: {
  14139. source: "./media/characters/chip/front.svg",
  14140. extra: 748 / 674
  14141. }
  14142. },
  14143. },
  14144. [
  14145. {
  14146. name: "Micro",
  14147. height: math.unit(1, "inch"),
  14148. default: true
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14154. {
  14155. side: {
  14156. height: math.unit(2.3, "meters"),
  14157. weight: math.unit(3500, "lb"),
  14158. name: "Side",
  14159. image: {
  14160. source: "./media/characters/torvid/side.svg",
  14161. extra: 1972 / 722,
  14162. bottom: 0.035
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "Normal",
  14169. height: math.unit(2.3, "meters"),
  14170. default: true
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(2, "meters"),
  14179. weight: math.unit(150.5, "kg"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/susan/front.svg",
  14183. extra: 693 / 635,
  14184. bottom: 0.05
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Megamacro",
  14191. height: math.unit(505, "miles"),
  14192. default: true
  14193. },
  14194. ]
  14195. ))
  14196. characterMakers.push(() => makeCharacter(
  14197. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14198. {
  14199. front: {
  14200. height: math.unit(6, "feet"),
  14201. weight: math.unit(150, "lb"),
  14202. name: "Front",
  14203. image: {
  14204. source: "./media/characters/raindrops/front.svg",
  14205. extra: 2655 / 2461,
  14206. bottom: 49 / 2705
  14207. }
  14208. },
  14209. back: {
  14210. height: math.unit(6, "feet"),
  14211. weight: math.unit(150, "lb"),
  14212. name: "Back",
  14213. image: {
  14214. source: "./media/characters/raindrops/back.svg",
  14215. extra: 2574 / 2400,
  14216. bottom: 65 / 2634
  14217. }
  14218. },
  14219. },
  14220. [
  14221. {
  14222. name: "Micro",
  14223. height: math.unit(6, "inches")
  14224. },
  14225. {
  14226. name: "Normal",
  14227. height: math.unit(6 + 2 / 12, "feet")
  14228. },
  14229. {
  14230. name: "Macro",
  14231. height: math.unit(131, "feet"),
  14232. default: true
  14233. },
  14234. {
  14235. name: "Megamacro",
  14236. height: math.unit(15, "miles")
  14237. },
  14238. {
  14239. name: "Gigamacro",
  14240. height: math.unit(4000, "miles")
  14241. },
  14242. {
  14243. name: "Teramacro",
  14244. height: math.unit(315000, "miles")
  14245. },
  14246. ]
  14247. ))
  14248. characterMakers.push(() => makeCharacter(
  14249. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14250. {
  14251. front: {
  14252. height: math.unit(2.794, "meters"),
  14253. weight: math.unit(325, "kg"),
  14254. name: "Front",
  14255. image: {
  14256. source: "./media/characters/tezwa/front.svg",
  14257. extra: 2083 / 1906,
  14258. bottom: 0.031
  14259. }
  14260. },
  14261. foot: {
  14262. height: math.unit(0.687, "meters"),
  14263. name: "Foot",
  14264. image: {
  14265. source: "./media/characters/tezwa/foot.svg"
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Normal",
  14272. height: math.unit(9 + 2 / 12, "feet"),
  14273. default: true
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14279. {
  14280. front: {
  14281. height: math.unit(58, "feet"),
  14282. weight: math.unit(89000, "lb"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/typhus/front.svg",
  14286. extra: 816 / 800,
  14287. bottom: 0.065
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Macro",
  14294. height: math.unit(58, "feet"),
  14295. default: true
  14296. },
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14301. {
  14302. front: {
  14303. height: math.unit(12, "feet"),
  14304. weight: math.unit(6, "tonnes"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/lyra-von-wulf/front.svg",
  14308. extra: 1,
  14309. bottom: 0.10
  14310. }
  14311. },
  14312. frontMecha: {
  14313. height: math.unit(12, "feet"),
  14314. weight: math.unit(12, "tonnes"),
  14315. name: "Front (Mecha)",
  14316. image: {
  14317. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14318. extra: 1,
  14319. bottom: 0.042
  14320. }
  14321. },
  14322. maw: {
  14323. height: math.unit(2.2, "feet"),
  14324. name: "Maw",
  14325. image: {
  14326. source: "./media/characters/lyra-von-wulf/maw.svg"
  14327. }
  14328. },
  14329. },
  14330. [
  14331. {
  14332. name: "Normal",
  14333. height: math.unit(12, "feet"),
  14334. default: true
  14335. },
  14336. {
  14337. name: "Classic",
  14338. height: math.unit(50, "feet")
  14339. },
  14340. {
  14341. name: "Macro",
  14342. height: math.unit(500, "feet")
  14343. },
  14344. {
  14345. name: "Megamacro",
  14346. height: math.unit(1, "mile")
  14347. },
  14348. {
  14349. name: "Gigamacro",
  14350. height: math.unit(400, "miles")
  14351. },
  14352. {
  14353. name: "Teramacro",
  14354. height: math.unit(22000, "miles")
  14355. },
  14356. {
  14357. name: "Solarmacro",
  14358. height: math.unit(8600000, "miles")
  14359. },
  14360. {
  14361. name: "Galactic",
  14362. height: math.unit(1057000, "lightyears")
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14368. {
  14369. front: {
  14370. height: math.unit(6 + 10 / 12, "feet"),
  14371. weight: math.unit(150, "lb"),
  14372. name: "Front",
  14373. image: {
  14374. source: "./media/characters/dixon/front.svg",
  14375. extra: 3361 / 3209,
  14376. bottom: 0.01
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Normal",
  14383. height: math.unit(6 + 10 / 12, "feet"),
  14384. default: true
  14385. },
  14386. {
  14387. name: "Big",
  14388. height: math.unit(12, "meters")
  14389. },
  14390. {
  14391. name: "Macro",
  14392. height: math.unit(500, "meters")
  14393. },
  14394. {
  14395. name: "Megamacro",
  14396. height: math.unit(2, "km")
  14397. },
  14398. ]
  14399. ))
  14400. characterMakers.push(() => makeCharacter(
  14401. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14402. {
  14403. front: {
  14404. height: math.unit(185, "cm"),
  14405. weight: math.unit(68, "kg"),
  14406. name: "Front",
  14407. image: {
  14408. source: "./media/characters/kauko/front.svg",
  14409. extra: 1455 / 1421,
  14410. bottom: 0.03
  14411. }
  14412. },
  14413. back: {
  14414. height: math.unit(185, "cm"),
  14415. weight: math.unit(68, "kg"),
  14416. name: "Back",
  14417. image: {
  14418. source: "./media/characters/kauko/back.svg",
  14419. extra: 1455 / 1421,
  14420. bottom: 0.004
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Normal",
  14427. height: math.unit(185, "cm"),
  14428. default: true
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14434. {
  14435. frontSfw: {
  14436. height: math.unit(5, "meters"),
  14437. weight: math.unit(4250, "lb"),
  14438. name: "Front",
  14439. image: {
  14440. source: "./media/characters/varg/front-sfw.svg",
  14441. extra: 1103/1010,
  14442. bottom: 50/1153
  14443. },
  14444. form: "anthro",
  14445. default: true
  14446. },
  14447. backSfw: {
  14448. height: math.unit(5, "meters"),
  14449. weight: math.unit(4250, "lb"),
  14450. name: "Back",
  14451. image: {
  14452. source: "./media/characters/varg/back-sfw.svg",
  14453. extra: 1038/1022,
  14454. bottom: 36/1074
  14455. },
  14456. form: "anthro"
  14457. },
  14458. frontNsfw: {
  14459. height: math.unit(5, "meters"),
  14460. weight: math.unit(4250, "lb"),
  14461. name: "Front (NSFW)",
  14462. image: {
  14463. source: "./media/characters/varg/front-nsfw.svg",
  14464. extra: 1103/1010,
  14465. bottom: 50/1153
  14466. },
  14467. form: "anthro"
  14468. },
  14469. sheath: {
  14470. height: math.unit(3.8, "feet"),
  14471. weight: math.unit(90, "kilograms"),
  14472. name: "Sheath",
  14473. image: {
  14474. source: "./media/characters/varg/sheath.svg"
  14475. },
  14476. form: "anthro"
  14477. },
  14478. dick: {
  14479. height: math.unit(4.6, "feet"),
  14480. weight: math.unit(451, "kilograms"),
  14481. name: "Dick",
  14482. image: {
  14483. source: "./media/characters/varg/dick.svg"
  14484. },
  14485. form: "anthro"
  14486. },
  14487. feralSfw: {
  14488. height: math.unit(5, "meters"),
  14489. weight: math.unit(100000, "lb"),
  14490. name: "Side",
  14491. image: {
  14492. source: "./media/characters/varg/feral-sfw.svg",
  14493. extra: 1065/511,
  14494. bottom: 211/1276
  14495. },
  14496. form: "feral",
  14497. default: true
  14498. },
  14499. feralNsfw: {
  14500. height: math.unit(5, "meters"),
  14501. weight: math.unit(100000, "lb"),
  14502. name: "Side (NSFW)",
  14503. image: {
  14504. source: "./media/characters/varg/feral-nsfw.svg",
  14505. extra: 1065/511,
  14506. bottom: 211/1276
  14507. },
  14508. form: "feral",
  14509. },
  14510. feralSheath: {
  14511. height: math.unit(9.8, "feet"),
  14512. weight: math.unit(2000, "kilograms"),
  14513. name: "Sheath",
  14514. image: {
  14515. source: "./media/characters/varg/sheath.svg"
  14516. },
  14517. form: "feral"
  14518. },
  14519. feralDick: {
  14520. height: math.unit(13.11, "feet"),
  14521. weight: math.unit(10440, "kilograms"),
  14522. name: "Dick",
  14523. image: {
  14524. source: "./media/characters/varg/dick.svg"
  14525. },
  14526. form: "feral"
  14527. },
  14528. },
  14529. [
  14530. {
  14531. name: "Normal",
  14532. height: math.unit(5, "meters"),
  14533. form: "anthro"
  14534. },
  14535. {
  14536. name: "Macro",
  14537. height: math.unit(200, "meters"),
  14538. form: "anthro"
  14539. },
  14540. {
  14541. name: "Megamacro",
  14542. height: math.unit(20, "kilometers"),
  14543. form: "anthro"
  14544. },
  14545. {
  14546. name: "True Size",
  14547. height: math.unit(211, "km"),
  14548. form: "anthro",
  14549. default: true
  14550. },
  14551. {
  14552. name: "Gigamacro",
  14553. height: math.unit(1000, "km"),
  14554. form: "anthro"
  14555. },
  14556. {
  14557. name: "Gigamacro+",
  14558. height: math.unit(8000, "km"),
  14559. form: "anthro"
  14560. },
  14561. {
  14562. name: "Teramacro",
  14563. height: math.unit(1000000, "km"),
  14564. form: "anthro"
  14565. },
  14566. {
  14567. name: "Normal",
  14568. height: math.unit(5, "meters"),
  14569. form: "feral"
  14570. },
  14571. {
  14572. name: "Macro",
  14573. height: math.unit(200, "meters"),
  14574. form: "feral"
  14575. },
  14576. {
  14577. name: "Megamacro",
  14578. height: math.unit(20, "kilometers"),
  14579. form: "feral"
  14580. },
  14581. {
  14582. name: "True Size",
  14583. height: math.unit(211, "km"),
  14584. form: "feral",
  14585. default: true
  14586. },
  14587. {
  14588. name: "Gigamacro",
  14589. height: math.unit(1000, "km"),
  14590. form: "feral"
  14591. },
  14592. {
  14593. name: "Gigamacro+",
  14594. height: math.unit(8000, "km"),
  14595. form: "feral"
  14596. },
  14597. {
  14598. name: "Teramacro",
  14599. height: math.unit(1000000, "km"),
  14600. form: "feral"
  14601. },
  14602. ],
  14603. {
  14604. "anthro": {
  14605. name: "Anthro",
  14606. default: true
  14607. },
  14608. "feral": {
  14609. name: "Feral",
  14610. },
  14611. }
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14615. {
  14616. front: {
  14617. height: math.unit(7 + 7 / 12, "feet"),
  14618. weight: math.unit(267, "lb"),
  14619. name: "Front",
  14620. image: {
  14621. source: "./media/characters/dayza/front.svg",
  14622. extra: 1262 / 1200,
  14623. bottom: 0.035
  14624. }
  14625. },
  14626. side: {
  14627. height: math.unit(7 + 7 / 12, "feet"),
  14628. weight: math.unit(267, "lb"),
  14629. name: "Side",
  14630. image: {
  14631. source: "./media/characters/dayza/side.svg",
  14632. extra: 1295 / 1245,
  14633. bottom: 0.05
  14634. }
  14635. },
  14636. back: {
  14637. height: math.unit(7 + 7 / 12, "feet"),
  14638. weight: math.unit(267, "lb"),
  14639. name: "Back",
  14640. image: {
  14641. source: "./media/characters/dayza/back.svg",
  14642. extra: 1241 / 1170
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(7 + 7 / 12, "feet"),
  14650. default: true
  14651. },
  14652. {
  14653. name: "Macro",
  14654. height: math.unit(155, "feet")
  14655. },
  14656. ]
  14657. ))
  14658. characterMakers.push(() => makeCharacter(
  14659. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14660. {
  14661. front: {
  14662. height: math.unit(6 + 5 / 12, "feet"),
  14663. weight: math.unit(160, "lb"),
  14664. name: "Front",
  14665. image: {
  14666. source: "./media/characters/xanthos/front.svg",
  14667. extra: 1,
  14668. bottom: 0.04
  14669. }
  14670. },
  14671. back: {
  14672. height: math.unit(6 + 5 / 12, "feet"),
  14673. weight: math.unit(160, "lb"),
  14674. name: "Back",
  14675. image: {
  14676. source: "./media/characters/xanthos/back.svg",
  14677. extra: 1,
  14678. bottom: 0.03
  14679. }
  14680. },
  14681. hand: {
  14682. height: math.unit(0.928, "feet"),
  14683. name: "Hand",
  14684. image: {
  14685. source: "./media/characters/xanthos/hand.svg"
  14686. }
  14687. },
  14688. foot: {
  14689. height: math.unit(1.286, "feet"),
  14690. name: "Foot",
  14691. image: {
  14692. source: "./media/characters/xanthos/foot.svg"
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Normal",
  14699. height: math.unit(6 + 5 / 12, "feet"),
  14700. default: true
  14701. },
  14702. {
  14703. name: "Normal+",
  14704. height: math.unit(6, "meters")
  14705. },
  14706. {
  14707. name: "Macro",
  14708. height: math.unit(40, "feet")
  14709. },
  14710. {
  14711. name: "Macro+",
  14712. height: math.unit(200, "meters")
  14713. },
  14714. {
  14715. name: "Megamacro",
  14716. height: math.unit(20, "km")
  14717. },
  14718. {
  14719. name: "Megamacro+",
  14720. height: math.unit(100, "km")
  14721. },
  14722. {
  14723. name: "Gigamacro",
  14724. height: math.unit(200, "megameters")
  14725. },
  14726. {
  14727. name: "Gigamacro+",
  14728. height: math.unit(1.5, "gigameters")
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(6 + 3 / 12, "feet"),
  14737. weight: math.unit(215, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/grynn/front.svg",
  14741. extra: 4627 / 4209,
  14742. bottom: 0.047
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Micro",
  14749. height: math.unit(6, "inches")
  14750. },
  14751. {
  14752. name: "Normal",
  14753. height: math.unit(6 + 3 / 12, "feet"),
  14754. default: true
  14755. },
  14756. {
  14757. name: "Big",
  14758. height: math.unit(104, "feet")
  14759. },
  14760. {
  14761. name: "Macro",
  14762. height: math.unit(944, "feet")
  14763. },
  14764. {
  14765. name: "Macro+",
  14766. height: math.unit(9480, "feet")
  14767. },
  14768. {
  14769. name: "Megamacro",
  14770. height: math.unit(78752, "feet")
  14771. },
  14772. {
  14773. name: "Megamacro+",
  14774. height: math.unit(630128, "feet")
  14775. },
  14776. {
  14777. name: "Megamacro++",
  14778. height: math.unit(3150695, "feet")
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14784. {
  14785. front: {
  14786. height: math.unit(7 + 5 / 12, "feet"),
  14787. weight: math.unit(450, "lb"),
  14788. name: "Front",
  14789. image: {
  14790. source: "./media/characters/mocha-aura/front.svg",
  14791. extra: 1907 / 1817,
  14792. bottom: 0.04
  14793. }
  14794. },
  14795. back: {
  14796. height: math.unit(7 + 5 / 12, "feet"),
  14797. weight: math.unit(450, "lb"),
  14798. name: "Back",
  14799. image: {
  14800. source: "./media/characters/mocha-aura/back.svg",
  14801. extra: 1900 / 1825,
  14802. bottom: 0.045
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Nano",
  14809. height: math.unit(1, "nm")
  14810. },
  14811. {
  14812. name: "Megamicro",
  14813. height: math.unit(1, "mm")
  14814. },
  14815. {
  14816. name: "Micro",
  14817. height: math.unit(3, "inches")
  14818. },
  14819. {
  14820. name: "Normal",
  14821. height: math.unit(7 + 5 / 12, "feet"),
  14822. default: true
  14823. },
  14824. {
  14825. name: "Macro",
  14826. height: math.unit(30, "feet")
  14827. },
  14828. {
  14829. name: "Megamacro",
  14830. height: math.unit(3500, "feet")
  14831. },
  14832. {
  14833. name: "Teramacro",
  14834. height: math.unit(500000, "miles")
  14835. },
  14836. {
  14837. name: "Petamacro",
  14838. height: math.unit(50000000000000000, "parsecs")
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14844. {
  14845. front: {
  14846. height: math.unit(6, "feet"),
  14847. weight: math.unit(150, "lb"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/ilisha-devya/front.svg",
  14851. extra: 1053/1049,
  14852. bottom: 270/1323
  14853. }
  14854. },
  14855. back: {
  14856. height: math.unit(6, "feet"),
  14857. weight: math.unit(150, "lb"),
  14858. name: "Back",
  14859. image: {
  14860. source: "./media/characters/ilisha-devya/back.svg",
  14861. extra: 1131/1128,
  14862. bottom: 39/1170
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Macro",
  14869. height: math.unit(500, "feet"),
  14870. default: true
  14871. },
  14872. {
  14873. name: "Megamacro",
  14874. height: math.unit(10, "miles")
  14875. },
  14876. {
  14877. name: "Gigamacro",
  14878. height: math.unit(100000, "miles")
  14879. },
  14880. {
  14881. name: "Examacro",
  14882. height: math.unit(1e9, "lightyears")
  14883. },
  14884. {
  14885. name: "Omniversal",
  14886. height: math.unit(1e33, "lightyears")
  14887. },
  14888. {
  14889. name: "Beyond Infinite",
  14890. height: math.unit(1e100, "lightyears")
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14896. {
  14897. Side: {
  14898. height: math.unit(6, "feet"),
  14899. weight: math.unit(150, "lb"),
  14900. name: "Side",
  14901. image: {
  14902. source: "./media/characters/mira/side.svg",
  14903. extra: 900 / 799,
  14904. bottom: 0.02
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "Human Size",
  14911. height: math.unit(6, "feet")
  14912. },
  14913. {
  14914. name: "Macro",
  14915. height: math.unit(100, "feet"),
  14916. default: true
  14917. },
  14918. {
  14919. name: "Megamacro",
  14920. height: math.unit(10, "miles")
  14921. },
  14922. {
  14923. name: "Gigamacro",
  14924. height: math.unit(25000, "miles")
  14925. },
  14926. {
  14927. name: "Teramacro",
  14928. height: math.unit(300, "AU")
  14929. },
  14930. {
  14931. name: "Full Size",
  14932. height: math.unit(4.5e10, "lightyears")
  14933. },
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14938. {
  14939. front: {
  14940. height: math.unit(6, "feet"),
  14941. weight: math.unit(150, "lb"),
  14942. name: "Front",
  14943. image: {
  14944. source: "./media/characters/holly/front.svg",
  14945. extra: 639 / 606
  14946. }
  14947. },
  14948. back: {
  14949. height: math.unit(6, "feet"),
  14950. weight: math.unit(150, "lb"),
  14951. name: "Back",
  14952. image: {
  14953. source: "./media/characters/holly/back.svg",
  14954. extra: 623 / 598
  14955. }
  14956. },
  14957. frontWorking: {
  14958. height: math.unit(6, "feet"),
  14959. weight: math.unit(150, "lb"),
  14960. name: "Front (Working)",
  14961. image: {
  14962. source: "./media/characters/holly/front-working.svg",
  14963. extra: 607 / 577,
  14964. bottom: 0.048
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(12 + 3 / 12, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14978. {
  14979. front: {
  14980. height: math.unit(6, "feet"),
  14981. weight: math.unit(150, "lb"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/porter/front.svg",
  14985. extra: 1,
  14986. bottom: 0.01
  14987. }
  14988. },
  14989. frontRobes: {
  14990. height: math.unit(6, "feet"),
  14991. weight: math.unit(150, "lb"),
  14992. name: "Front (Robes)",
  14993. image: {
  14994. source: "./media/characters/porter/front-robes.svg",
  14995. extra: 1.01,
  14996. bottom: 0.01
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Normal",
  15003. height: math.unit(11 + 9 / 12, "feet"),
  15004. default: true
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15010. {
  15011. legendary: {
  15012. height: math.unit(6, "feet"),
  15013. weight: math.unit(150, "lb"),
  15014. name: "Legendary",
  15015. image: {
  15016. source: "./media/characters/lucy/legendary.svg",
  15017. extra: 1355 / 1100,
  15018. bottom: 0.045
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Legendary",
  15025. height: math.unit(86882 * 2, "miles"),
  15026. default: true
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15032. {
  15033. front: {
  15034. height: math.unit(6, "feet"),
  15035. weight: math.unit(150, "lb"),
  15036. name: "Front",
  15037. image: {
  15038. source: "./media/characters/drusilla/front.svg",
  15039. extra: 678 / 635,
  15040. bottom: 0.03
  15041. }
  15042. },
  15043. back: {
  15044. height: math.unit(6, "feet"),
  15045. weight: math.unit(150, "lb"),
  15046. name: "Back",
  15047. image: {
  15048. source: "./media/characters/drusilla/back.svg",
  15049. extra: 678 / 635,
  15050. bottom: 0.005
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Macro",
  15057. height: math.unit(100, "feet")
  15058. },
  15059. {
  15060. name: "Canon Height",
  15061. height: math.unit(2000, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15068. {
  15069. front: {
  15070. height: math.unit(6, "feet"),
  15071. weight: math.unit(180, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/renard-thatch/front.svg",
  15075. extra: 2411 / 2275,
  15076. bottom: 0.01
  15077. }
  15078. },
  15079. frontPosing: {
  15080. height: math.unit(6, "feet"),
  15081. weight: math.unit(180, "lb"),
  15082. name: "Front (Posing)",
  15083. image: {
  15084. source: "./media/characters/renard-thatch/front-posing.svg",
  15085. extra: 2381 / 2261,
  15086. bottom: 0.01
  15087. }
  15088. },
  15089. back: {
  15090. height: math.unit(6, "feet"),
  15091. weight: math.unit(180, "lb"),
  15092. name: "Back",
  15093. image: {
  15094. source: "./media/characters/renard-thatch/back.svg",
  15095. extra: 2428 / 2288
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Micro",
  15102. height: math.unit(3, "inches")
  15103. },
  15104. {
  15105. name: "Default",
  15106. height: math.unit(6, "feet"),
  15107. default: true
  15108. },
  15109. {
  15110. name: "Macro",
  15111. height: math.unit(75, "feet")
  15112. },
  15113. ]
  15114. ))
  15115. characterMakers.push(() => makeCharacter(
  15116. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15117. {
  15118. front: {
  15119. height: math.unit(1450, "feet"),
  15120. weight: math.unit(1.21e6, "tons"),
  15121. name: "Front",
  15122. image: {
  15123. source: "./media/characters/sekvra/front.svg",
  15124. extra: 1193/1190,
  15125. bottom: 78/1271
  15126. }
  15127. },
  15128. side: {
  15129. height: math.unit(1450, "feet"),
  15130. weight: math.unit(1.21e6, "tons"),
  15131. name: "Side",
  15132. image: {
  15133. source: "./media/characters/sekvra/side.svg",
  15134. extra: 1193/1190,
  15135. bottom: 52/1245
  15136. }
  15137. },
  15138. back: {
  15139. height: math.unit(1450, "feet"),
  15140. weight: math.unit(1.21e6, "tons"),
  15141. name: "Back",
  15142. image: {
  15143. source: "./media/characters/sekvra/back.svg",
  15144. extra: 1219/1216,
  15145. bottom: 21/1240
  15146. }
  15147. },
  15148. frontClothed: {
  15149. height: math.unit(1450, "feet"),
  15150. weight: math.unit(1.21e6, "tons"),
  15151. name: "Front (Clothed)",
  15152. image: {
  15153. source: "./media/characters/sekvra/front-clothed.svg",
  15154. extra: 1192/1189,
  15155. bottom: 79/1271
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Macro",
  15162. height: math.unit(1450, "feet"),
  15163. default: true
  15164. },
  15165. {
  15166. name: "Megamacro",
  15167. height: math.unit(15000, "feet")
  15168. },
  15169. ]
  15170. ))
  15171. characterMakers.push(() => makeCharacter(
  15172. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15173. {
  15174. front: {
  15175. height: math.unit(6, "feet"),
  15176. weight: math.unit(150, "lb"),
  15177. name: "Front",
  15178. image: {
  15179. source: "./media/characters/carmine/front.svg",
  15180. extra: 1557/1538,
  15181. bottom: 68/1625
  15182. }
  15183. },
  15184. frontArmor: {
  15185. height: math.unit(6, "feet"),
  15186. weight: math.unit(150, "lb"),
  15187. name: "Front (Armor)",
  15188. image: {
  15189. source: "./media/characters/carmine/front-armor.svg",
  15190. extra: 1549/1530,
  15191. bottom: 82/1631
  15192. }
  15193. },
  15194. mouth: {
  15195. height: math.unit(0.55, "feet"),
  15196. name: "Mouth",
  15197. image: {
  15198. source: "./media/characters/carmine/mouth.svg"
  15199. }
  15200. },
  15201. hand: {
  15202. height: math.unit(1.05, "feet"),
  15203. name: "Hand",
  15204. image: {
  15205. source: "./media/characters/carmine/hand.svg"
  15206. }
  15207. },
  15208. foot: {
  15209. height: math.unit(0.6, "feet"),
  15210. name: "Foot",
  15211. image: {
  15212. source: "./media/characters/carmine/foot.svg"
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Large",
  15219. height: math.unit(1, "mile")
  15220. },
  15221. {
  15222. name: "Huge",
  15223. height: math.unit(40, "miles"),
  15224. default: true
  15225. },
  15226. {
  15227. name: "Colossal",
  15228. height: math.unit(2500, "miles")
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15234. {
  15235. front: {
  15236. height: math.unit(6, "feet"),
  15237. weight: math.unit(150, "lb"),
  15238. name: "Front",
  15239. image: {
  15240. source: "./media/characters/elyssia/front.svg",
  15241. extra: 2201 / 2035,
  15242. bottom: 0.05
  15243. }
  15244. },
  15245. frontClothed: {
  15246. height: math.unit(6, "feet"),
  15247. weight: math.unit(150, "lb"),
  15248. name: "Front (Clothed)",
  15249. image: {
  15250. source: "./media/characters/elyssia/front-clothed.svg",
  15251. extra: 2201 / 2035,
  15252. bottom: 0.05
  15253. }
  15254. },
  15255. back: {
  15256. height: math.unit(6, "feet"),
  15257. weight: math.unit(150, "lb"),
  15258. name: "Back",
  15259. image: {
  15260. source: "./media/characters/elyssia/back.svg",
  15261. extra: 2201 / 2035,
  15262. bottom: 0.013
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Smaller",
  15269. height: math.unit(150, "feet")
  15270. },
  15271. {
  15272. name: "Standard",
  15273. height: math.unit(1400, "feet"),
  15274. default: true
  15275. },
  15276. {
  15277. name: "Distracted",
  15278. height: math.unit(15000, "feet")
  15279. },
  15280. ]
  15281. ))
  15282. characterMakers.push(() => makeCharacter(
  15283. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15284. {
  15285. front: {
  15286. height: math.unit(7 + 4/12, "feet"),
  15287. weight: math.unit(690, "lb"),
  15288. name: "Front",
  15289. image: {
  15290. source: "./media/characters/geno-maxwell/front.svg",
  15291. extra: 984/856,
  15292. bottom: 87/1071
  15293. }
  15294. },
  15295. back: {
  15296. height: math.unit(7 + 4/12, "feet"),
  15297. weight: math.unit(690, "lb"),
  15298. name: "Back",
  15299. image: {
  15300. source: "./media/characters/geno-maxwell/back.svg",
  15301. extra: 981/854,
  15302. bottom: 57/1038
  15303. }
  15304. },
  15305. frontCostume: {
  15306. height: math.unit(7 + 4/12, "feet"),
  15307. weight: math.unit(690, "lb"),
  15308. name: "Front (Costume)",
  15309. image: {
  15310. source: "./media/characters/geno-maxwell/front-costume.svg",
  15311. extra: 984/856,
  15312. bottom: 87/1071
  15313. }
  15314. },
  15315. backcostume: {
  15316. height: math.unit(7 + 4/12, "feet"),
  15317. weight: math.unit(690, "lb"),
  15318. name: "Back (Costume)",
  15319. image: {
  15320. source: "./media/characters/geno-maxwell/back-costume.svg",
  15321. extra: 981/854,
  15322. bottom: 57/1038
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Micro",
  15329. height: math.unit(3, "inches")
  15330. },
  15331. {
  15332. name: "Normal",
  15333. height: math.unit(7 + 4 / 12, "feet"),
  15334. default: true
  15335. },
  15336. {
  15337. name: "Macro",
  15338. height: math.unit(220, "feet")
  15339. },
  15340. {
  15341. name: "Megamacro",
  15342. height: math.unit(11, "miles")
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15348. {
  15349. front: {
  15350. height: math.unit(7 + 4/12, "feet"),
  15351. weight: math.unit(750, "lb"),
  15352. name: "Front",
  15353. image: {
  15354. source: "./media/characters/regena-maxwell/front.svg",
  15355. extra: 984/856,
  15356. bottom: 87/1071
  15357. }
  15358. },
  15359. back: {
  15360. height: math.unit(7 + 4/12, "feet"),
  15361. weight: math.unit(750, "lb"),
  15362. name: "Back",
  15363. image: {
  15364. source: "./media/characters/regena-maxwell/back.svg",
  15365. extra: 981/854,
  15366. bottom: 57/1038
  15367. }
  15368. },
  15369. frontCostume: {
  15370. height: math.unit(7 + 4/12, "feet"),
  15371. weight: math.unit(750, "lb"),
  15372. name: "Front (Costume)",
  15373. image: {
  15374. source: "./media/characters/regena-maxwell/front-costume.svg",
  15375. extra: 984/856,
  15376. bottom: 87/1071
  15377. }
  15378. },
  15379. backcostume: {
  15380. height: math.unit(7 + 4/12, "feet"),
  15381. weight: math.unit(750, "lb"),
  15382. name: "Back (Costume)",
  15383. image: {
  15384. source: "./media/characters/regena-maxwell/back-costume.svg",
  15385. extra: 981/854,
  15386. bottom: 57/1038
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(7 + 4 / 12, "feet"),
  15394. default: true
  15395. },
  15396. {
  15397. name: "Macro",
  15398. height: math.unit(220, "feet")
  15399. },
  15400. {
  15401. name: "Megamacro",
  15402. height: math.unit(11, "miles")
  15403. },
  15404. ]
  15405. ))
  15406. characterMakers.push(() => makeCharacter(
  15407. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15408. {
  15409. front: {
  15410. height: math.unit(6, "feet"),
  15411. weight: math.unit(150, "lb"),
  15412. name: "Front",
  15413. image: {
  15414. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15415. extra: 860 / 690,
  15416. bottom: 0.03
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Normal",
  15423. height: math.unit(1.7, "meters"),
  15424. default: true
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15430. {
  15431. front: {
  15432. height: math.unit(6, "feet"),
  15433. weight: math.unit(150, "lb"),
  15434. name: "Front",
  15435. image: {
  15436. source: "./media/characters/quilly/front.svg",
  15437. extra: 890 / 776
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Gigamacro",
  15444. height: math.unit(404090, "miles"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15451. {
  15452. front: {
  15453. height: math.unit(7 + 8 / 12, "feet"),
  15454. weight: math.unit(350, "lb"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/tempest/front.svg",
  15458. extra: 1175 / 1086,
  15459. bottom: 0.02
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Normal",
  15466. height: math.unit(7 + 8 / 12, "feet"),
  15467. default: true
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15473. {
  15474. side: {
  15475. height: math.unit(4 + 5 / 12, "feet"),
  15476. weight: math.unit(80, "lb"),
  15477. name: "Side",
  15478. image: {
  15479. source: "./media/characters/rodger/side.svg",
  15480. extra: 1235 / 1118
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Micro",
  15487. height: math.unit(1, "inch")
  15488. },
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(4 + 5 / 12, "feet"),
  15492. default: true
  15493. },
  15494. {
  15495. name: "Macro",
  15496. height: math.unit(120, "feet")
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(6, "feet"),
  15505. weight: math.unit(150, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/danyel/front.svg",
  15509. extra: 1185 / 1123,
  15510. bottom: 0.05
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Shrunken",
  15517. height: math.unit(0.5, "mm")
  15518. },
  15519. {
  15520. name: "Micro",
  15521. height: math.unit(1, "mm"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Upsized",
  15526. height: math.unit(5 + 5 / 12, "feet")
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(5 + 6 / 12, "feet"),
  15535. weight: math.unit(200, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/vivian-bijoux/front.svg",
  15539. extra: 1217/1209,
  15540. bottom: 76/1293
  15541. }
  15542. },
  15543. back: {
  15544. height: math.unit(5 + 6 / 12, "feet"),
  15545. weight: math.unit(200, "lb"),
  15546. name: "Back",
  15547. image: {
  15548. source: "./media/characters/vivian-bijoux/back.svg",
  15549. extra: 1214/1208,
  15550. bottom: 51/1265
  15551. }
  15552. },
  15553. dressed: {
  15554. height: math.unit(5 + 6 / 12, "feet"),
  15555. weight: math.unit(200, "lb"),
  15556. name: "Dressed",
  15557. image: {
  15558. source: "./media/characters/vivian-bijoux/dressed.svg",
  15559. extra: 1217/1209,
  15560. bottom: 76/1293
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Normal",
  15567. height: math.unit(5 + 6 / 12, "feet"),
  15568. default: true
  15569. },
  15570. {
  15571. name: "Bad Dream",
  15572. height: math.unit(500, "feet")
  15573. },
  15574. {
  15575. name: "Nightmare",
  15576. height: math.unit(500, "miles")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(6 + 1 / 12, "feet"),
  15585. weight: math.unit(260, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/zeta/front.svg",
  15589. extra: 1968 / 1889,
  15590. bottom: 0.06
  15591. }
  15592. },
  15593. back: {
  15594. height: math.unit(6 + 1 / 12, "feet"),
  15595. weight: math.unit(260, "lb"),
  15596. name: "Back",
  15597. image: {
  15598. source: "./media/characters/zeta/back.svg",
  15599. extra: 1944 / 1858,
  15600. bottom: 0.03
  15601. }
  15602. },
  15603. hand: {
  15604. height: math.unit(1.112, "feet"),
  15605. name: "Hand",
  15606. image: {
  15607. source: "./media/characters/zeta/hand.svg"
  15608. }
  15609. },
  15610. foot: {
  15611. height: math.unit(1.48, "feet"),
  15612. name: "Foot",
  15613. image: {
  15614. source: "./media/characters/zeta/foot.svg"
  15615. }
  15616. },
  15617. },
  15618. [
  15619. {
  15620. name: "Micro",
  15621. height: math.unit(6, "inches")
  15622. },
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(6 + 1 / 12, "feet"),
  15626. default: true
  15627. },
  15628. {
  15629. name: "Macro",
  15630. height: math.unit(20, "feet")
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15636. {
  15637. front: {
  15638. height: math.unit(6, "feet"),
  15639. weight: math.unit(150, "lb"),
  15640. name: "Front",
  15641. image: {
  15642. source: "./media/characters/jamie-larsen/front.svg",
  15643. extra: 962 / 933,
  15644. bottom: 0.02
  15645. }
  15646. },
  15647. back: {
  15648. height: math.unit(6, "feet"),
  15649. weight: math.unit(150, "lb"),
  15650. name: "Back",
  15651. image: {
  15652. source: "./media/characters/jamie-larsen/back.svg",
  15653. extra: 997 / 946
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Macro",
  15660. height: math.unit(28 + 7 / 12, "feet"),
  15661. default: true
  15662. },
  15663. {
  15664. name: "Macro+",
  15665. height: math.unit(180, "feet")
  15666. },
  15667. {
  15668. name: "Megamacro",
  15669. height: math.unit(10, "miles")
  15670. },
  15671. {
  15672. name: "Gigamacro",
  15673. height: math.unit(200000, "miles")
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15679. {
  15680. front: {
  15681. height: math.unit(6, "feet"),
  15682. weight: math.unit(120, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/vance/front.svg",
  15686. extra: 1980 / 1890,
  15687. bottom: 0.09
  15688. }
  15689. },
  15690. back: {
  15691. height: math.unit(6, "feet"),
  15692. weight: math.unit(120, "lb"),
  15693. name: "Back",
  15694. image: {
  15695. source: "./media/characters/vance/back.svg",
  15696. extra: 2081 / 1994,
  15697. bottom: 0.014
  15698. }
  15699. },
  15700. hand: {
  15701. height: math.unit(0.88, "feet"),
  15702. name: "Hand",
  15703. image: {
  15704. source: "./media/characters/vance/hand.svg"
  15705. }
  15706. },
  15707. foot: {
  15708. height: math.unit(0.64, "feet"),
  15709. name: "Foot",
  15710. image: {
  15711. source: "./media/characters/vance/foot.svg"
  15712. }
  15713. },
  15714. },
  15715. [
  15716. {
  15717. name: "Small",
  15718. height: math.unit(90, "feet"),
  15719. default: true
  15720. },
  15721. {
  15722. name: "Macro",
  15723. height: math.unit(100, "meters")
  15724. },
  15725. {
  15726. name: "Megamacro",
  15727. height: math.unit(15, "miles")
  15728. },
  15729. ]
  15730. ))
  15731. characterMakers.push(() => makeCharacter(
  15732. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15733. {
  15734. front: {
  15735. height: math.unit(6, "feet"),
  15736. weight: math.unit(180, "lb"),
  15737. name: "Front",
  15738. image: {
  15739. source: "./media/characters/xochitl/front.svg",
  15740. extra: 2297 / 2261,
  15741. bottom: 0.065
  15742. }
  15743. },
  15744. back: {
  15745. height: math.unit(6, "feet"),
  15746. weight: math.unit(180, "lb"),
  15747. name: "Back",
  15748. image: {
  15749. source: "./media/characters/xochitl/back.svg",
  15750. extra: 2386 / 2354,
  15751. bottom: 0.01
  15752. }
  15753. },
  15754. foot: {
  15755. height: math.unit(6 / 5 * 1.15, "feet"),
  15756. weight: math.unit(150, "lb"),
  15757. name: "Foot",
  15758. image: {
  15759. source: "./media/characters/xochitl/foot.svg"
  15760. }
  15761. },
  15762. },
  15763. [
  15764. {
  15765. name: "Macro",
  15766. height: math.unit(80, "feet")
  15767. },
  15768. {
  15769. name: "Macro+",
  15770. height: math.unit(400, "feet"),
  15771. default: true
  15772. },
  15773. {
  15774. name: "Gigamacro",
  15775. height: math.unit(80000, "miles")
  15776. },
  15777. {
  15778. name: "Gigamacro+",
  15779. height: math.unit(400000, "miles")
  15780. },
  15781. {
  15782. name: "Teramacro",
  15783. height: math.unit(300, "AU")
  15784. },
  15785. ]
  15786. ))
  15787. characterMakers.push(() => makeCharacter(
  15788. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15789. {
  15790. front: {
  15791. height: math.unit(6, "feet"),
  15792. weight: math.unit(150, "lb"),
  15793. name: "Front",
  15794. image: {
  15795. source: "./media/characters/vincent/front.svg",
  15796. extra: 1130 / 1080,
  15797. bottom: 0.055
  15798. }
  15799. },
  15800. beak: {
  15801. height: math.unit(6 * 0.1, "feet"),
  15802. name: "Beak",
  15803. image: {
  15804. source: "./media/characters/vincent/beak.svg"
  15805. }
  15806. },
  15807. hand: {
  15808. height: math.unit(6 * 0.85, "feet"),
  15809. weight: math.unit(150, "lb"),
  15810. name: "Hand",
  15811. image: {
  15812. source: "./media/characters/vincent/hand.svg"
  15813. }
  15814. },
  15815. foot: {
  15816. height: math.unit(6 * 0.19, "feet"),
  15817. weight: math.unit(150, "lb"),
  15818. name: "Foot",
  15819. image: {
  15820. source: "./media/characters/vincent/foot.svg"
  15821. }
  15822. },
  15823. },
  15824. [
  15825. {
  15826. name: "Base",
  15827. height: math.unit(6 + 5 / 12, "feet"),
  15828. default: true
  15829. },
  15830. {
  15831. name: "Macro",
  15832. height: math.unit(300, "feet")
  15833. },
  15834. {
  15835. name: "Megamacro",
  15836. height: math.unit(2, "miles")
  15837. },
  15838. {
  15839. name: "Gigamacro",
  15840. height: math.unit(1000, "miles")
  15841. },
  15842. ]
  15843. ))
  15844. characterMakers.push(() => makeCharacter(
  15845. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15846. {
  15847. front: {
  15848. height: math.unit(2, "meters"),
  15849. weight: math.unit(500, "kg"),
  15850. name: "Front",
  15851. image: {
  15852. source: "./media/characters/coatl/front.svg",
  15853. extra: 3948 / 3500,
  15854. bottom: 0.082
  15855. }
  15856. },
  15857. },
  15858. [
  15859. {
  15860. name: "Normal",
  15861. height: math.unit(4, "meters")
  15862. },
  15863. {
  15864. name: "Macro",
  15865. height: math.unit(100, "meters"),
  15866. default: true
  15867. },
  15868. {
  15869. name: "Macro+",
  15870. height: math.unit(300, "meters")
  15871. },
  15872. {
  15873. name: "Megamacro",
  15874. height: math.unit(3, "gigameters")
  15875. },
  15876. {
  15877. name: "Megamacro+",
  15878. height: math.unit(300, "terameters")
  15879. },
  15880. {
  15881. name: "Megamacro++",
  15882. height: math.unit(3, "lightyears")
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(6, "feet"),
  15891. weight: math.unit(50, "kg"),
  15892. name: "front",
  15893. image: {
  15894. source: "./media/characters/shiroryu/front.svg",
  15895. extra: 1990 / 1935
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Mortal Mingling",
  15902. height: math.unit(3, "meters")
  15903. },
  15904. {
  15905. name: "Kaiju-ish",
  15906. height: math.unit(250, "meters")
  15907. },
  15908. {
  15909. name: "Somewhat Godly",
  15910. height: math.unit(400, "km"),
  15911. default: true
  15912. },
  15913. {
  15914. name: "Planetary",
  15915. height: math.unit(300, "megameters")
  15916. },
  15917. {
  15918. name: "Galaxy-dwarfing",
  15919. height: math.unit(450, "kiloparsecs")
  15920. },
  15921. {
  15922. name: "Universe Eater",
  15923. height: math.unit(150, "gigaparsecs")
  15924. },
  15925. {
  15926. name: "Almost Immeasurable",
  15927. height: math.unit(1.3e266, "yottaparsecs")
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15933. {
  15934. front: {
  15935. height: math.unit(6, "feet"),
  15936. weight: math.unit(150, "lb"),
  15937. name: "Front",
  15938. image: {
  15939. source: "./media/characters/umeko/front.svg",
  15940. extra: 1,
  15941. bottom: 0.019
  15942. }
  15943. },
  15944. frontArmored: {
  15945. height: math.unit(6, "feet"),
  15946. weight: math.unit(150, "lb"),
  15947. name: "Front (Armored)",
  15948. image: {
  15949. source: "./media/characters/umeko/front-armored.svg",
  15950. extra: 1,
  15951. bottom: 0.021
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Macro",
  15958. height: math.unit(220, "feet"),
  15959. default: true
  15960. },
  15961. {
  15962. name: "Guardian Dragon",
  15963. height: math.unit(50, "miles")
  15964. },
  15965. {
  15966. name: "Cosmic",
  15967. height: math.unit(800000, "miles")
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15973. {
  15974. front: {
  15975. height: math.unit(6, "feet"),
  15976. weight: math.unit(150, "lb"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/cassidy/front.svg",
  15980. extra: 810/808,
  15981. bottom: 41/851
  15982. }
  15983. },
  15984. },
  15985. [
  15986. {
  15987. name: "Canon Height",
  15988. height: math.unit(120, "feet"),
  15989. default: true
  15990. },
  15991. {
  15992. name: "Macro+",
  15993. height: math.unit(400, "feet")
  15994. },
  15995. {
  15996. name: "Macro++",
  15997. height: math.unit(4000, "feet")
  15998. },
  15999. {
  16000. name: "Megamacro",
  16001. height: math.unit(3, "miles")
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16007. {
  16008. front: {
  16009. height: math.unit(6, "feet"),
  16010. weight: math.unit(150, "lb"),
  16011. name: "Front",
  16012. image: {
  16013. source: "./media/characters/isaac/front.svg",
  16014. extra: 896 / 815,
  16015. bottom: 0.11
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Human Size",
  16022. height: math.unit(8, "feet"),
  16023. default: true
  16024. },
  16025. {
  16026. name: "Macro",
  16027. height: math.unit(400, "feet")
  16028. },
  16029. {
  16030. name: "Megamacro",
  16031. height: math.unit(50, "miles")
  16032. },
  16033. {
  16034. name: "Canon Height",
  16035. height: math.unit(200, "AU")
  16036. },
  16037. ]
  16038. ))
  16039. characterMakers.push(() => makeCharacter(
  16040. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16041. {
  16042. front: {
  16043. height: math.unit(6, "feet"),
  16044. weight: math.unit(72, "kg"),
  16045. name: "Front",
  16046. image: {
  16047. source: "./media/characters/sleekit/front.svg",
  16048. extra: 4693 / 4487,
  16049. bottom: 0.012
  16050. }
  16051. },
  16052. },
  16053. [
  16054. {
  16055. name: "Minimum Height",
  16056. height: math.unit(10, "meters")
  16057. },
  16058. {
  16059. name: "Smaller",
  16060. height: math.unit(25, "meters")
  16061. },
  16062. {
  16063. name: "Larger",
  16064. height: math.unit(38, "meters"),
  16065. default: true
  16066. },
  16067. {
  16068. name: "Maximum height",
  16069. height: math.unit(100, "meters")
  16070. },
  16071. ]
  16072. ))
  16073. characterMakers.push(() => makeCharacter(
  16074. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16075. {
  16076. front: {
  16077. height: math.unit(6, "feet"),
  16078. weight: math.unit(150, "lb"),
  16079. name: "Front",
  16080. image: {
  16081. source: "./media/characters/nillia/front.svg",
  16082. extra: 719/665,
  16083. bottom: 6/725
  16084. }
  16085. },
  16086. back: {
  16087. height: math.unit(6, "feet"),
  16088. weight: math.unit(150, "lb"),
  16089. name: "Back",
  16090. image: {
  16091. source: "./media/characters/nillia/back.svg",
  16092. extra: 705/651,
  16093. bottom: 5/710
  16094. }
  16095. },
  16096. },
  16097. [
  16098. {
  16099. name: "Canon Height",
  16100. height: math.unit(489, "feet"),
  16101. default: true
  16102. }
  16103. ]
  16104. ))
  16105. characterMakers.push(() => makeCharacter(
  16106. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16107. {
  16108. front: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(150, "lb"),
  16111. name: "Front",
  16112. image: {
  16113. source: "./media/characters/mesmyriza/front.svg",
  16114. extra: 1541/1291,
  16115. bottom: 87/1628
  16116. }
  16117. },
  16118. foot: {
  16119. height: math.unit(6 / (250 / 35), "feet"),
  16120. name: "Foot",
  16121. image: {
  16122. source: "./media/characters/mesmyriza/foot.svg"
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Macro",
  16129. height: math.unit(457, "meters"),
  16130. default: true
  16131. },
  16132. {
  16133. name: "Megamacro",
  16134. height: math.unit(8, "megameters")
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(6, "feet"),
  16143. weight: math.unit(250, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/saudade/front.svg",
  16147. extra: 1172 / 1139,
  16148. bottom: 0.035
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Micro",
  16155. height: math.unit(3, "inches")
  16156. },
  16157. {
  16158. name: "Normal",
  16159. height: math.unit(6, "feet"),
  16160. default: true
  16161. },
  16162. {
  16163. name: "Macro",
  16164. height: math.unit(50, "feet")
  16165. },
  16166. {
  16167. name: "Megamacro",
  16168. height: math.unit(2800, "feet")
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16174. {
  16175. front: {
  16176. height: math.unit(5 + 4 / 12, "feet"),
  16177. weight: math.unit(100, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/keireer/front.svg",
  16181. extra: 716 / 666,
  16182. bottom: 0.05
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(5 + 4 / 12, "feet"),
  16190. default: true
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(5.5, "feet"),
  16199. weight: math.unit(90, "kg"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/mirja/front.svg",
  16203. extra: 1452/1262,
  16204. bottom: 67/1519
  16205. }
  16206. },
  16207. frontDressed: {
  16208. height: math.unit(5.5, "feet"),
  16209. weight: math.unit(90, "lb"),
  16210. name: "Front (Dressed)",
  16211. image: {
  16212. source: "./media/characters/mirja/dressed.svg",
  16213. extra: 1452/1262,
  16214. bottom: 67/1519
  16215. }
  16216. },
  16217. back: {
  16218. height: math.unit(6, "feet"),
  16219. weight: math.unit(90, "lb"),
  16220. name: "Back",
  16221. image: {
  16222. source: "./media/characters/mirja/back.svg",
  16223. extra: 1892/1795,
  16224. bottom: 48/1940
  16225. }
  16226. },
  16227. maw: {
  16228. height: math.unit(1.312, "feet"),
  16229. name: "Maw",
  16230. image: {
  16231. source: "./media/characters/mirja/maw.svg"
  16232. }
  16233. },
  16234. paw: {
  16235. height: math.unit(1.15, "feet"),
  16236. name: "Paw",
  16237. image: {
  16238. source: "./media/characters/mirja/paw.svg"
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "\"Incognito\"",
  16245. height: math.unit(3, "meters")
  16246. },
  16247. {
  16248. name: "Strolling Size",
  16249. height: math.unit(15, "km")
  16250. },
  16251. {
  16252. name: "Larger Strolling Size",
  16253. height: math.unit(400, "km")
  16254. },
  16255. {
  16256. name: "Preferred Size",
  16257. height: math.unit(5000, "km"),
  16258. default: true
  16259. },
  16260. {
  16261. name: "True Size",
  16262. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(15, "feet"),
  16271. weight: math.unit(880, "kg"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/nightraver/front.svg",
  16275. extra: 2444 / 2160,
  16276. bottom: 0.027
  16277. }
  16278. },
  16279. back: {
  16280. height: math.unit(15, "feet"),
  16281. weight: math.unit(880, "kg"),
  16282. name: "Back",
  16283. image: {
  16284. source: "./media/characters/nightraver/back.svg",
  16285. extra: 2309 / 2180,
  16286. bottom: 0.005
  16287. }
  16288. },
  16289. sole: {
  16290. height: math.unit(2.878, "feet"),
  16291. name: "Sole",
  16292. image: {
  16293. source: "./media/characters/nightraver/sole.svg"
  16294. }
  16295. },
  16296. foot: {
  16297. height: math.unit(2.285, "feet"),
  16298. name: "Foot",
  16299. image: {
  16300. source: "./media/characters/nightraver/foot.svg"
  16301. }
  16302. },
  16303. maw: {
  16304. height: math.unit(2.67, "feet"),
  16305. name: "Maw",
  16306. image: {
  16307. source: "./media/characters/nightraver/maw.svg"
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Micro",
  16314. height: math.unit(1, "cm")
  16315. },
  16316. {
  16317. name: "Normal",
  16318. height: math.unit(15, "feet"),
  16319. default: true
  16320. },
  16321. {
  16322. name: "Macro",
  16323. height: math.unit(300, "feet")
  16324. },
  16325. {
  16326. name: "Megamacro",
  16327. height: math.unit(300, "miles")
  16328. },
  16329. {
  16330. name: "Gigamacro",
  16331. height: math.unit(10000, "miles")
  16332. },
  16333. ]
  16334. ))
  16335. characterMakers.push(() => makeCharacter(
  16336. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16337. {
  16338. side: {
  16339. height: math.unit(2, "inches"),
  16340. weight: math.unit(5, "grams"),
  16341. name: "Side",
  16342. image: {
  16343. source: "./media/characters/arc/side.svg"
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Micro",
  16350. height: math.unit(2, "inches"),
  16351. default: true
  16352. },
  16353. ]
  16354. ))
  16355. characterMakers.push(() => makeCharacter(
  16356. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16357. {
  16358. front: {
  16359. height: math.unit(1.1938, "meters"),
  16360. weight: math.unit(54, "kg"),
  16361. name: "Front",
  16362. image: {
  16363. source: "./media/characters/nebula-shahar/front.svg",
  16364. extra: 1642 / 1436,
  16365. bottom: 0.06
  16366. }
  16367. },
  16368. },
  16369. [
  16370. {
  16371. name: "Megamicro",
  16372. height: math.unit(0.3, "mm")
  16373. },
  16374. {
  16375. name: "Micro",
  16376. height: math.unit(3, "cm")
  16377. },
  16378. {
  16379. name: "Normal",
  16380. height: math.unit(138, "cm"),
  16381. default: true
  16382. },
  16383. {
  16384. name: "Macro",
  16385. height: math.unit(30, "m")
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16391. {
  16392. front: {
  16393. height: math.unit(5.24, "feet"),
  16394. weight: math.unit(150, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/shayla/front.svg",
  16398. extra: 1512 / 1414,
  16399. bottom: 0.01
  16400. }
  16401. },
  16402. back: {
  16403. height: math.unit(5.24, "feet"),
  16404. weight: math.unit(150, "lb"),
  16405. name: "Back",
  16406. image: {
  16407. source: "./media/characters/shayla/back.svg",
  16408. extra: 1512 / 1414
  16409. }
  16410. },
  16411. hand: {
  16412. height: math.unit(0.7781496062992126, "feet"),
  16413. name: "Hand",
  16414. image: {
  16415. source: "./media/characters/shayla/hand.svg"
  16416. }
  16417. },
  16418. foot: {
  16419. height: math.unit(1.4206036745406823, "feet"),
  16420. name: "Foot",
  16421. image: {
  16422. source: "./media/characters/shayla/foot.svg"
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Micro",
  16429. height: math.unit(0.32, "feet")
  16430. },
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(5.24, "feet"),
  16434. default: true
  16435. },
  16436. {
  16437. name: "Macro",
  16438. height: math.unit(492.12, "feet")
  16439. },
  16440. {
  16441. name: "Megamacro",
  16442. height: math.unit(186.41, "miles")
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16448. {
  16449. front: {
  16450. height: math.unit(2.2, "m"),
  16451. weight: math.unit(120, "kg"),
  16452. name: "Front",
  16453. image: {
  16454. source: "./media/characters/pia-jr/front.svg",
  16455. extra: 1000 / 970,
  16456. bottom: 0.035
  16457. }
  16458. },
  16459. hand: {
  16460. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16461. name: "Hand",
  16462. image: {
  16463. source: "./media/characters/pia-jr/hand.svg"
  16464. }
  16465. },
  16466. paw: {
  16467. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16468. name: "Paw",
  16469. image: {
  16470. source: "./media/characters/pia-jr/paw.svg"
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Micro",
  16477. height: math.unit(1.2, "cm")
  16478. },
  16479. {
  16480. name: "Normal",
  16481. height: math.unit(2.2, "m"),
  16482. default: true
  16483. },
  16484. {
  16485. name: "Macro",
  16486. height: math.unit(180, "m")
  16487. },
  16488. {
  16489. name: "Megamacro",
  16490. height: math.unit(420, "km")
  16491. },
  16492. ]
  16493. ))
  16494. characterMakers.push(() => makeCharacter(
  16495. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16496. {
  16497. front: {
  16498. height: math.unit(2, "m"),
  16499. weight: math.unit(115, "kg"),
  16500. name: "Front",
  16501. image: {
  16502. source: "./media/characters/pia-sr/front.svg",
  16503. extra: 760 / 730,
  16504. bottom: 0.015
  16505. }
  16506. },
  16507. back: {
  16508. height: math.unit(2, "m"),
  16509. weight: math.unit(115, "kg"),
  16510. name: "Back",
  16511. image: {
  16512. source: "./media/characters/pia-sr/back.svg",
  16513. extra: 760 / 730,
  16514. bottom: 0.01
  16515. }
  16516. },
  16517. hand: {
  16518. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16519. name: "Hand",
  16520. image: {
  16521. source: "./media/characters/pia-sr/hand.svg"
  16522. }
  16523. },
  16524. foot: {
  16525. height: math.unit(1.83, "feet"),
  16526. name: "Foot",
  16527. image: {
  16528. source: "./media/characters/pia-sr/foot.svg"
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Micro",
  16535. height: math.unit(88, "mm")
  16536. },
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(2, "m"),
  16540. default: true
  16541. },
  16542. {
  16543. name: "Macro",
  16544. height: math.unit(200, "m")
  16545. },
  16546. {
  16547. name: "Megamacro",
  16548. height: math.unit(420, "km")
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16554. {
  16555. front: {
  16556. height: math.unit(8 + 2 / 12, "feet"),
  16557. weight: math.unit(300, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/kibibyte/front.svg",
  16561. extra: 2221 / 2098,
  16562. bottom: 0.04
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(8 + 2 / 12, "feet"),
  16570. default: true
  16571. },
  16572. {
  16573. name: "Socialable Macro",
  16574. height: math.unit(50, "feet")
  16575. },
  16576. {
  16577. name: "Macro",
  16578. height: math.unit(300, "feet")
  16579. },
  16580. {
  16581. name: "Megamacro",
  16582. height: math.unit(500, "miles")
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(6, "feet"),
  16591. weight: math.unit(150, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/felix/front.svg",
  16595. extra: 762 / 722,
  16596. bottom: 0.02
  16597. }
  16598. },
  16599. frontClothed: {
  16600. height: math.unit(6, "feet"),
  16601. weight: math.unit(150, "lb"),
  16602. name: "Front (Clothed)",
  16603. image: {
  16604. source: "./media/characters/felix/front-clothed.svg",
  16605. extra: 762 / 722,
  16606. bottom: 0.02
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Normal",
  16613. height: math.unit(6 + 8 / 12, "feet"),
  16614. default: true
  16615. },
  16616. {
  16617. name: "Macro",
  16618. height: math.unit(2600, "feet")
  16619. },
  16620. {
  16621. name: "Megamacro",
  16622. height: math.unit(450, "miles")
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16628. {
  16629. front: {
  16630. height: math.unit(6 + 1 / 12, "feet"),
  16631. weight: math.unit(250, "lb"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/tobo/front.svg",
  16635. extra: 608 / 586,
  16636. bottom: 0.023
  16637. }
  16638. },
  16639. back: {
  16640. height: math.unit(6 + 1 / 12, "feet"),
  16641. weight: math.unit(250, "lb"),
  16642. name: "Back",
  16643. image: {
  16644. source: "./media/characters/tobo/back.svg",
  16645. extra: 608 / 586
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Nano",
  16652. height: math.unit(2, "nm")
  16653. },
  16654. {
  16655. name: "Megamicro",
  16656. height: math.unit(0.1, "mm")
  16657. },
  16658. {
  16659. name: "Micro",
  16660. height: math.unit(1, "inch"),
  16661. default: true
  16662. },
  16663. {
  16664. name: "Human-sized",
  16665. height: math.unit(6 + 1 / 12, "feet")
  16666. },
  16667. {
  16668. name: "Macro",
  16669. height: math.unit(250, "feet")
  16670. },
  16671. {
  16672. name: "Megamacro",
  16673. height: math.unit(75, "miles")
  16674. },
  16675. {
  16676. name: "Texas-sized",
  16677. height: math.unit(750, "miles")
  16678. },
  16679. {
  16680. name: "Teramacro",
  16681. height: math.unit(50000, "miles")
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(6, "feet"),
  16690. weight: math.unit(269, "lb"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/danny-kapowsky/front.svg",
  16694. extra: 766 / 736,
  16695. bottom: 0.044
  16696. }
  16697. },
  16698. back: {
  16699. height: math.unit(6, "feet"),
  16700. weight: math.unit(269, "lb"),
  16701. name: "Back",
  16702. image: {
  16703. source: "./media/characters/danny-kapowsky/back.svg",
  16704. extra: 797 / 760,
  16705. bottom: 0.025
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Macro",
  16712. height: math.unit(150, "feet"),
  16713. default: true
  16714. },
  16715. {
  16716. name: "Macro+",
  16717. height: math.unit(200, "feet")
  16718. },
  16719. {
  16720. name: "Macro++",
  16721. height: math.unit(300, "feet")
  16722. },
  16723. {
  16724. name: "Macro+++",
  16725. height: math.unit(400, "feet")
  16726. },
  16727. ]
  16728. ))
  16729. characterMakers.push(() => makeCharacter(
  16730. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16731. {
  16732. side: {
  16733. height: math.unit(6, "feet"),
  16734. weight: math.unit(170, "lb"),
  16735. name: "Side",
  16736. image: {
  16737. source: "./media/characters/finn/side.svg",
  16738. extra: 1953 / 1807,
  16739. bottom: 0.057
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Megamacro",
  16746. height: math.unit(14445, "feet"),
  16747. default: true
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(5 + 6 / 12, "feet"),
  16756. weight: math.unit(125, "lb"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/roy/front.svg",
  16760. extra: 1,
  16761. bottom: 0.11
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Micro",
  16768. height: math.unit(3, "inches"),
  16769. default: true
  16770. },
  16771. {
  16772. name: "Normal",
  16773. height: math.unit(5 + 6 / 12, "feet")
  16774. },
  16775. {
  16776. name: "Lesser Macro",
  16777. height: math.unit(60, "feet")
  16778. },
  16779. {
  16780. name: "Greater Macro",
  16781. height: math.unit(120, "feet")
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16787. {
  16788. front: {
  16789. height: math.unit(6, "feet"),
  16790. weight: math.unit(100, "lb"),
  16791. name: "Front",
  16792. image: {
  16793. source: "./media/characters/aevsivs/front.svg",
  16794. extra: 1,
  16795. bottom: 0.03
  16796. }
  16797. },
  16798. back: {
  16799. height: math.unit(6, "feet"),
  16800. weight: math.unit(100, "lb"),
  16801. name: "Back",
  16802. image: {
  16803. source: "./media/characters/aevsivs/back.svg"
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Micro",
  16810. height: math.unit(2, "inches"),
  16811. default: true
  16812. },
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(5, "feet")
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(5 + 7 / 12, "feet"),
  16824. weight: math.unit(159, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/hildegard/front.svg",
  16828. extra: 289 / 269,
  16829. bottom: 7.63 / 297.8
  16830. }
  16831. },
  16832. back: {
  16833. height: math.unit(5 + 7 / 12, "feet"),
  16834. weight: math.unit(159, "lb"),
  16835. name: "Back",
  16836. image: {
  16837. source: "./media/characters/hildegard/back.svg",
  16838. extra: 280 / 260,
  16839. bottom: 2.3 / 282
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(5 + 7 / 12, "feet"),
  16847. default: true
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16853. {
  16854. bernard: {
  16855. height: math.unit(2 + 7 / 12, "feet"),
  16856. weight: math.unit(66, "lb"),
  16857. name: "Bernard",
  16858. rename: true,
  16859. image: {
  16860. source: "./media/characters/bernard-wilder/bernard.svg",
  16861. extra: 192 / 128,
  16862. bottom: 0.05
  16863. }
  16864. },
  16865. wilder: {
  16866. height: math.unit(5 + 8 / 12, "feet"),
  16867. weight: math.unit(143, "lb"),
  16868. name: "Wilder",
  16869. rename: true,
  16870. image: {
  16871. source: "./media/characters/bernard-wilder/wilder.svg",
  16872. extra: 361 / 312,
  16873. bottom: 0.02
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(2 + 7 / 12, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16887. {
  16888. anthro: {
  16889. height: math.unit(6 + 1 / 12, "feet"),
  16890. weight: math.unit(155, "lb"),
  16891. name: "Anthro",
  16892. image: {
  16893. source: "./media/characters/hearth/anthro.svg",
  16894. extra: 1178/1136,
  16895. bottom: 28/1206
  16896. }
  16897. },
  16898. feral: {
  16899. height: math.unit(3.78, "feet"),
  16900. weight: math.unit(35, "kg"),
  16901. name: "Feral",
  16902. image: {
  16903. source: "./media/characters/hearth/feral.svg",
  16904. extra: 153 / 135,
  16905. bottom: 0.03
  16906. }
  16907. },
  16908. },
  16909. [
  16910. {
  16911. name: "Normal",
  16912. height: math.unit(6 + 1 / 12, "feet"),
  16913. default: true
  16914. },
  16915. ]
  16916. ))
  16917. characterMakers.push(() => makeCharacter(
  16918. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16919. {
  16920. front: {
  16921. height: math.unit(6, "feet"),
  16922. weight: math.unit(182, "lb"),
  16923. name: "Front",
  16924. image: {
  16925. source: "./media/characters/ingrid/front.svg",
  16926. extra: 294 / 268,
  16927. bottom: 0.027
  16928. }
  16929. },
  16930. },
  16931. [
  16932. {
  16933. name: "Normal",
  16934. height: math.unit(6, "feet"),
  16935. default: true
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16941. {
  16942. eevee: {
  16943. height: math.unit(2 + 10 / 12, "feet"),
  16944. weight: math.unit(86, "lb"),
  16945. name: "Malgam",
  16946. image: {
  16947. source: "./media/characters/malgam/eevee.svg",
  16948. extra: 952/784,
  16949. bottom: 38/990
  16950. }
  16951. },
  16952. sylveon: {
  16953. height: math.unit(4, "feet"),
  16954. weight: math.unit(101, "lb"),
  16955. name: "Future Malgam",
  16956. rename: true,
  16957. image: {
  16958. source: "./media/characters/malgam/sylveon.svg",
  16959. extra: 371 / 325,
  16960. bottom: 0.015
  16961. }
  16962. },
  16963. gigantamax: {
  16964. height: math.unit(50, "feet"),
  16965. name: "Gigantamax Malgam",
  16966. rename: true,
  16967. image: {
  16968. source: "./media/characters/malgam/gigantamax.svg"
  16969. }
  16970. },
  16971. },
  16972. [
  16973. {
  16974. name: "Normal",
  16975. height: math.unit(2 + 10 / 12, "feet"),
  16976. default: true
  16977. },
  16978. ]
  16979. ))
  16980. characterMakers.push(() => makeCharacter(
  16981. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16982. {
  16983. front: {
  16984. height: math.unit(5 + 11 / 12, "feet"),
  16985. weight: math.unit(188, "lb"),
  16986. name: "Front",
  16987. image: {
  16988. source: "./media/characters/fleur/front.svg",
  16989. extra: 309 / 283,
  16990. bottom: 0.007
  16991. }
  16992. },
  16993. },
  16994. [
  16995. {
  16996. name: "Normal",
  16997. height: math.unit(5 + 11 / 12, "feet"),
  16998. default: true
  16999. },
  17000. ]
  17001. ))
  17002. characterMakers.push(() => makeCharacter(
  17003. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17004. {
  17005. front: {
  17006. height: math.unit(5 + 4 / 12, "feet"),
  17007. weight: math.unit(122, "lb"),
  17008. name: "Front",
  17009. image: {
  17010. source: "./media/characters/jude/front.svg",
  17011. extra: 288 / 273,
  17012. bottom: 0.03
  17013. }
  17014. },
  17015. },
  17016. [
  17017. {
  17018. name: "Normal",
  17019. height: math.unit(5 + 4 / 12, "feet"),
  17020. default: true
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(5 + 11 / 12, "feet"),
  17029. weight: math.unit(190, "lb"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/seara/front.svg",
  17033. extra: 1,
  17034. bottom: 0.05
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(5 + 11 / 12, "feet"),
  17042. default: true
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17048. {
  17049. front: {
  17050. height: math.unit(16 + 5 / 12, "feet"),
  17051. weight: math.unit(524, "lb"),
  17052. name: "Front",
  17053. image: {
  17054. source: "./media/characters/caspian-lugia/front.svg",
  17055. extra: 1,
  17056. bottom: 0.04
  17057. }
  17058. },
  17059. },
  17060. [
  17061. {
  17062. name: "Normal",
  17063. height: math.unit(16 + 5 / 12, "feet"),
  17064. default: true
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(5 + 7 / 12, "feet"),
  17073. weight: math.unit(170, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/mika/front.svg",
  17077. extra: 1,
  17078. bottom: 0.016
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(5 + 7 / 12, "feet"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(6 + 2 / 12, "feet"),
  17095. weight: math.unit(268, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/sol/front.svg",
  17099. extra: 247 / 231,
  17100. bottom: 0.05
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(6 + 2 / 12, "feet"),
  17108. default: true
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17114. {
  17115. buizel: {
  17116. height: math.unit(2 + 5 / 12, "feet"),
  17117. weight: math.unit(87, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/umiko/buizel.svg",
  17121. extra: 172 / 157,
  17122. bottom: 0.01
  17123. },
  17124. form: "buizel",
  17125. default: true
  17126. },
  17127. floatzel: {
  17128. height: math.unit(5 + 9 / 12, "feet"),
  17129. weight: math.unit(250, "lb"),
  17130. name: "Front",
  17131. image: {
  17132. source: "./media/characters/umiko/floatzel.svg",
  17133. extra: 1076/1006,
  17134. bottom: 15/1091
  17135. },
  17136. form: "floatzel",
  17137. default: true
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(2 + 5 / 12, "feet"),
  17144. form: "buizel",
  17145. default: true
  17146. },
  17147. {
  17148. name: "Normal",
  17149. height: math.unit(5 + 9 / 12, "feet"),
  17150. form: "floatzel",
  17151. default: true
  17152. },
  17153. ],
  17154. {
  17155. "buizel": {
  17156. name: "Buizel"
  17157. },
  17158. "floatzel": {
  17159. name: "Floatzel",
  17160. default: true
  17161. }
  17162. }
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(6 + 2 / 12, "feet"),
  17169. weight: math.unit(146, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/iliac/front.svg",
  17173. extra: 389 / 365,
  17174. bottom: 0.035
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(6 + 2 / 12, "feet"),
  17182. default: true
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17188. {
  17189. front: {
  17190. height: math.unit(6, "feet"),
  17191. weight: math.unit(170, "lb"),
  17192. name: "Front",
  17193. image: {
  17194. source: "./media/characters/topaz/front.svg",
  17195. extra: 317 / 303,
  17196. bottom: 0.055
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(6, "feet"),
  17204. default: true
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17210. {
  17211. front: {
  17212. height: math.unit(5 + 11 / 12, "feet"),
  17213. weight: math.unit(144, "lb"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/gabriel/front.svg",
  17217. extra: 285 / 262,
  17218. bottom: 0.004
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(5 + 11 / 12, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17232. {
  17233. side: {
  17234. height: math.unit(6 + 5 / 12, "feet"),
  17235. weight: math.unit(300, "lb"),
  17236. name: "Side",
  17237. image: {
  17238. source: "./media/characters/tempest-suicune/side.svg",
  17239. extra: 195 / 154,
  17240. bottom: 0.04
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(6 + 5 / 12, "feet"),
  17248. default: true
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17254. {
  17255. front: {
  17256. height: math.unit(7 + 2 / 12, "feet"),
  17257. weight: math.unit(322, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/vulcan/front.svg",
  17261. extra: 154 / 147,
  17262. bottom: 0.04
  17263. }
  17264. },
  17265. },
  17266. [
  17267. {
  17268. name: "Normal",
  17269. height: math.unit(7 + 2 / 12, "feet"),
  17270. default: true
  17271. },
  17272. ]
  17273. ))
  17274. characterMakers.push(() => makeCharacter(
  17275. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17276. {
  17277. front: {
  17278. height: math.unit(5 + 10 / 12, "feet"),
  17279. weight: math.unit(264, "lb"),
  17280. name: "Front",
  17281. image: {
  17282. source: "./media/characters/gault/front.svg",
  17283. extra: 161 / 140,
  17284. bottom: 0.028
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(5 + 10 / 12, "feet"),
  17292. default: true
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17298. {
  17299. front: {
  17300. height: math.unit(6, "feet"),
  17301. weight: math.unit(150, "lb"),
  17302. name: "Front",
  17303. image: {
  17304. source: "./media/characters/shard/front.svg",
  17305. extra: 273 / 238,
  17306. bottom: 0.02
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(3 + 6 / 12, "feet"),
  17314. default: true
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(5 + 11 / 12, "feet"),
  17323. weight: math.unit(146, "lb"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/ashe/front.svg",
  17327. extra: 400 / 373,
  17328. bottom: 0.01
  17329. }
  17330. },
  17331. },
  17332. [
  17333. {
  17334. name: "Normal",
  17335. height: math.unit(5 + 11 / 12, "feet"),
  17336. default: true
  17337. },
  17338. ]
  17339. ))
  17340. characterMakers.push(() => makeCharacter(
  17341. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17342. {
  17343. front: {
  17344. height: math.unit(5 + 5 / 12, "feet"),
  17345. weight: math.unit(135, "lb"),
  17346. name: "Front",
  17347. image: {
  17348. source: "./media/characters/beatrix/front.svg",
  17349. extra: 392 / 379,
  17350. bottom: 0.01
  17351. }
  17352. },
  17353. },
  17354. [
  17355. {
  17356. name: "Normal",
  17357. height: math.unit(6, "feet"),
  17358. default: true
  17359. },
  17360. ]
  17361. ))
  17362. characterMakers.push(() => makeCharacter(
  17363. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17364. {
  17365. front: {
  17366. height: math.unit(6 + 2/12, "feet"),
  17367. weight: math.unit(135, "lb"),
  17368. name: "Front",
  17369. image: {
  17370. source: "./media/characters/ignatius/front.svg",
  17371. extra: 1380/1259,
  17372. bottom: 27/1407
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Normal",
  17379. height: math.unit(6 + 2/12, "feet"),
  17380. default: true
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17386. {
  17387. front: {
  17388. height: math.unit(6 + 2 / 12, "feet"),
  17389. weight: math.unit(138, "lb"),
  17390. name: "Front",
  17391. image: {
  17392. source: "./media/characters/mei-li/front.svg",
  17393. extra: 237 / 229,
  17394. bottom: 0.03
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Normal",
  17401. height: math.unit(6 + 2 / 12, "feet"),
  17402. default: true
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17408. {
  17409. front: {
  17410. height: math.unit(2 + 4 / 12, "feet"),
  17411. weight: math.unit(62, "lb"),
  17412. name: "Front",
  17413. image: {
  17414. source: "./media/characters/puru/front.svg",
  17415. extra: 206 / 149,
  17416. bottom: 0.06
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(2 + 4 / 12, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17430. {
  17431. anthro: {
  17432. height: math.unit(5 + 8/12, "feet"),
  17433. weight: math.unit(200, "lb"),
  17434. energyNeed: math.unit(2000, "kcal"),
  17435. name: "Anthro",
  17436. image: {
  17437. source: "./media/characters/kee/anthro.svg",
  17438. extra: 3251/3184,
  17439. bottom: 250/3501
  17440. }
  17441. },
  17442. taur: {
  17443. height: math.unit(11, "feet"),
  17444. weight: math.unit(500, "lb"),
  17445. energyNeed: math.unit(5000, "kcal"),
  17446. name: "Taur",
  17447. image: {
  17448. source: "./media/characters/kee/taur.svg",
  17449. extra: 1362/1320,
  17450. bottom: 83/1445
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(5 + 8/12, "feet"),
  17458. default: true
  17459. },
  17460. {
  17461. name: "Macro",
  17462. height: math.unit(35, "feet")
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17468. {
  17469. anthro: {
  17470. height: math.unit(7, "feet"),
  17471. weight: math.unit(190, "lb"),
  17472. name: "Anthro",
  17473. image: {
  17474. source: "./media/characters/cobalt-dracha/anthro.svg",
  17475. extra: 231 / 225,
  17476. bottom: 0.04
  17477. }
  17478. },
  17479. feral: {
  17480. height: math.unit(9 + 7 / 12, "feet"),
  17481. weight: math.unit(294, "lb"),
  17482. name: "Feral",
  17483. image: {
  17484. source: "./media/characters/cobalt-dracha/feral.svg",
  17485. extra: 692 / 633,
  17486. bottom: 0.05
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(7, "feet"),
  17494. default: true
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17500. {
  17501. fallen: {
  17502. height: math.unit(11 + 8 / 12, "feet"),
  17503. weight: math.unit(485, "lb"),
  17504. name: "Java (Fallen)",
  17505. rename: true,
  17506. image: {
  17507. source: "./media/characters/java/fallen.svg",
  17508. extra: 226 / 208,
  17509. bottom: 0.005
  17510. }
  17511. },
  17512. godkin: {
  17513. height: math.unit(10 + 6 / 12, "feet"),
  17514. weight: math.unit(328, "lb"),
  17515. name: "Java (Godkin)",
  17516. rename: true,
  17517. image: {
  17518. source: "./media/characters/java/godkin.svg",
  17519. extra: 1104/1068,
  17520. bottom: 36/1140
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(11 + 8 / 12, "feet"),
  17528. default: true
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17534. {
  17535. front: {
  17536. height: math.unit(5 + 9 / 12, "feet"),
  17537. weight: math.unit(170, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/purna/front.svg",
  17541. extra: 239 / 229,
  17542. bottom: 0.01
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(5 + 9 / 12, "feet"),
  17550. default: true
  17551. },
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17556. {
  17557. front: {
  17558. height: math.unit(5 + 9 / 12, "feet"),
  17559. weight: math.unit(142, "lb"),
  17560. name: "Front",
  17561. image: {
  17562. source: "./media/characters/kuva/front.svg",
  17563. extra: 281 / 271,
  17564. bottom: 0.006
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(5 + 9 / 12, "feet"),
  17572. default: true
  17573. },
  17574. ]
  17575. ))
  17576. characterMakers.push(() => makeCharacter(
  17577. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17578. {
  17579. anthro: {
  17580. height: math.unit(9 + 2 / 12, "feet"),
  17581. weight: math.unit(270, "lb"),
  17582. name: "Anthro",
  17583. image: {
  17584. source: "./media/characters/embra/anthro.svg",
  17585. extra: 200 / 187,
  17586. bottom: 0.02
  17587. }
  17588. },
  17589. feral: {
  17590. height: math.unit(18 + 8 / 12, "feet"),
  17591. weight: math.unit(576, "lb"),
  17592. name: "Feral",
  17593. image: {
  17594. source: "./media/characters/embra/feral.svg",
  17595. extra: 152 / 137,
  17596. bottom: 0.037
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Normal",
  17603. height: math.unit(9 + 2 / 12, "feet"),
  17604. default: true
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17610. {
  17611. anthro: {
  17612. height: math.unit(10 + 9 / 12, "feet"),
  17613. weight: math.unit(224, "lb"),
  17614. name: "Anthro",
  17615. image: {
  17616. source: "./media/characters/grottos/anthro.svg",
  17617. extra: 350 / 332,
  17618. bottom: 0.045
  17619. }
  17620. },
  17621. feral: {
  17622. height: math.unit(20 + 7 / 12, "feet"),
  17623. weight: math.unit(629, "lb"),
  17624. name: "Feral",
  17625. image: {
  17626. source: "./media/characters/grottos/feral.svg",
  17627. extra: 207 / 190,
  17628. bottom: 0.05
  17629. }
  17630. },
  17631. },
  17632. [
  17633. {
  17634. name: "Normal",
  17635. height: math.unit(10 + 9 / 12, "feet"),
  17636. default: true
  17637. },
  17638. ]
  17639. ))
  17640. characterMakers.push(() => makeCharacter(
  17641. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17642. {
  17643. anthro: {
  17644. height: math.unit(9 + 6 / 12, "feet"),
  17645. weight: math.unit(298, "lb"),
  17646. name: "Anthro",
  17647. image: {
  17648. source: "./media/characters/frifna/anthro.svg",
  17649. extra: 282 / 269,
  17650. bottom: 0.015
  17651. }
  17652. },
  17653. feral: {
  17654. height: math.unit(16 + 2 / 12, "feet"),
  17655. weight: math.unit(624, "lb"),
  17656. name: "Feral",
  17657. image: {
  17658. source: "./media/characters/frifna/feral.svg"
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(9 + 6 / 12, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17672. {
  17673. front: {
  17674. height: math.unit(6 + 2 / 12, "feet"),
  17675. weight: math.unit(168, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/elise/front.svg",
  17679. extra: 276 / 271
  17680. }
  17681. },
  17682. },
  17683. [
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(6 + 2 / 12, "feet"),
  17687. default: true
  17688. },
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17693. {
  17694. front: {
  17695. height: math.unit(5 + 10 / 12, "feet"),
  17696. weight: math.unit(210, "lb"),
  17697. name: "Front",
  17698. image: {
  17699. source: "./media/characters/glade/front.svg",
  17700. extra: 258 / 247,
  17701. bottom: 0.008
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(5 + 10 / 12, "feet"),
  17709. default: true
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17715. {
  17716. front: {
  17717. height: math.unit(5 + 10 / 12, "feet"),
  17718. weight: math.unit(129, "lb"),
  17719. name: "Front",
  17720. image: {
  17721. source: "./media/characters/rina/front.svg",
  17722. extra: 266 / 255,
  17723. bottom: 0.005
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(5 + 10 / 12, "feet"),
  17731. default: true
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17737. {
  17738. front: {
  17739. height: math.unit(6 + 1 / 12, "feet"),
  17740. weight: math.unit(192, "lb"),
  17741. name: "Front",
  17742. image: {
  17743. source: "./media/characters/veronica/front.svg",
  17744. extra: 319 / 309,
  17745. bottom: 0.005
  17746. }
  17747. },
  17748. },
  17749. [
  17750. {
  17751. name: "Normal",
  17752. height: math.unit(6 + 1 / 12, "feet"),
  17753. default: true
  17754. },
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17759. {
  17760. front: {
  17761. height: math.unit(9 + 3 / 12, "feet"),
  17762. weight: math.unit(1100, "lb"),
  17763. name: "Front",
  17764. image: {
  17765. source: "./media/characters/braxton/front.svg",
  17766. extra: 1057 / 984,
  17767. bottom: 0.05
  17768. }
  17769. },
  17770. },
  17771. [
  17772. {
  17773. name: "Normal",
  17774. height: math.unit(9 + 3 / 12, "feet")
  17775. },
  17776. {
  17777. name: "Giant",
  17778. height: math.unit(300, "feet"),
  17779. default: true
  17780. },
  17781. {
  17782. name: "Macro",
  17783. height: math.unit(700, "feet")
  17784. },
  17785. {
  17786. name: "Megamacro",
  17787. height: math.unit(6000, "feet")
  17788. },
  17789. ]
  17790. ))
  17791. characterMakers.push(() => makeCharacter(
  17792. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17793. {
  17794. front: {
  17795. height: math.unit(6 + 7 / 12, "feet"),
  17796. weight: math.unit(150, "lb"),
  17797. name: "Front",
  17798. image: {
  17799. source: "./media/characters/blue-feyonics/front.svg",
  17800. extra: 1403 / 1306,
  17801. bottom: 0.047
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(6 + 7 / 12, "feet"),
  17809. default: true
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17815. {
  17816. front: {
  17817. height: math.unit(1.8, "meters"),
  17818. weight: math.unit(60, "kg"),
  17819. name: "Front",
  17820. image: {
  17821. source: "./media/characters/maxwell/front.svg",
  17822. extra: 2060 / 1873
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Micro",
  17829. height: math.unit(1, "mm")
  17830. },
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(1.8, "meter"),
  17834. default: true
  17835. },
  17836. {
  17837. name: "Macro",
  17838. height: math.unit(30, "meters")
  17839. },
  17840. {
  17841. name: "Megamacro",
  17842. height: math.unit(10, "km")
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(6, "feet"),
  17851. weight: math.unit(150, "lb"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/jack/front.svg",
  17855. extra: 1754 / 1640,
  17856. bottom: 0.01
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(80000, "feet"),
  17864. default: true
  17865. },
  17866. {
  17867. name: "Max size",
  17868. height: math.unit(10, "lightyears")
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17874. {
  17875. urban: {
  17876. height: math.unit(5, "feet"),
  17877. weight: math.unit(240, "lb"),
  17878. name: "Urban",
  17879. image: {
  17880. source: "./media/characters/cafat/urban.svg",
  17881. extra: 1223/1126,
  17882. bottom: 205/1428
  17883. }
  17884. },
  17885. summer: {
  17886. height: math.unit(5, "feet"),
  17887. weight: math.unit(240, "lb"),
  17888. name: "Summer",
  17889. image: {
  17890. source: "./media/characters/cafat/summer.svg",
  17891. extra: 1223/1126,
  17892. bottom: 205/1428
  17893. }
  17894. },
  17895. winter: {
  17896. height: math.unit(5, "feet"),
  17897. weight: math.unit(240, "lb"),
  17898. name: "Winter",
  17899. image: {
  17900. source: "./media/characters/cafat/winter.svg",
  17901. extra: 1223/1126,
  17902. bottom: 205/1428
  17903. }
  17904. },
  17905. lingerie: {
  17906. height: math.unit(5, "feet"),
  17907. weight: math.unit(240, "lb"),
  17908. name: "Lingerie",
  17909. image: {
  17910. source: "./media/characters/cafat/lingerie.svg",
  17911. extra: 1223/1126,
  17912. bottom: 205/1428
  17913. }
  17914. },
  17915. upright: {
  17916. height: math.unit(6.3, "feet"),
  17917. weight: math.unit(240, "lb"),
  17918. name: "Upright",
  17919. image: {
  17920. source: "./media/characters/cafat/upright.svg",
  17921. bottom: 0.01
  17922. }
  17923. },
  17924. uprightFull: {
  17925. height: math.unit(6.3, "feet"),
  17926. weight: math.unit(240, "lb"),
  17927. name: "Upright (Full)",
  17928. image: {
  17929. source: "./media/characters/cafat/upright-full.svg",
  17930. bottom: 0.01
  17931. }
  17932. },
  17933. },
  17934. [
  17935. {
  17936. name: "Small",
  17937. height: math.unit(5, "feet"),
  17938. default: true
  17939. },
  17940. {
  17941. name: "Large",
  17942. height: math.unit(13, "feet")
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17948. {
  17949. front: {
  17950. height: math.unit(6, "feet"),
  17951. weight: math.unit(150, "lb"),
  17952. name: "Front",
  17953. image: {
  17954. source: "./media/characters/verin-raharra/front.svg",
  17955. extra: 5019 / 4835,
  17956. bottom: 0.023
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(7 + 5 / 12, "feet"),
  17964. default: true
  17965. },
  17966. {
  17967. name: "Upsized",
  17968. height: math.unit(20, "feet")
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(7, "feet"),
  17977. weight: math.unit(230, "lb"),
  17978. name: "Front",
  17979. image: {
  17980. source: "./media/characters/nakata/front.svg",
  17981. extra: 1.005,
  17982. bottom: 0.01
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Normal",
  17989. height: math.unit(7, "feet"),
  17990. default: true
  17991. },
  17992. {
  17993. name: "Big",
  17994. height: math.unit(14, "feet")
  17995. },
  17996. {
  17997. name: "Macro",
  17998. height: math.unit(400, "feet")
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18004. {
  18005. front: {
  18006. height: math.unit(4.91, "feet"),
  18007. weight: math.unit(100, "lb"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/lily/front.svg",
  18011. extra: 1585 / 1415,
  18012. bottom: 0.02
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Normal",
  18019. height: math.unit(4.91, "feet"),
  18020. default: true
  18021. },
  18022. ]
  18023. ))
  18024. characterMakers.push(() => makeCharacter(
  18025. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18026. {
  18027. laying: {
  18028. height: math.unit(4 + 4 / 12, "feet"),
  18029. weight: math.unit(600, "lb"),
  18030. name: "Laying",
  18031. image: {
  18032. source: "./media/characters/sheila/laying.svg",
  18033. extra: 1333 / 1265,
  18034. bottom: 0.16
  18035. }
  18036. },
  18037. },
  18038. [
  18039. {
  18040. name: "Normal",
  18041. height: math.unit(4 + 4 / 12, "feet"),
  18042. default: true
  18043. },
  18044. ]
  18045. ))
  18046. characterMakers.push(() => makeCharacter(
  18047. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18048. {
  18049. front: {
  18050. height: math.unit(6, "feet"),
  18051. weight: math.unit(190, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/sax/front.svg",
  18055. extra: 1187 / 973,
  18056. bottom: 0.042
  18057. }
  18058. },
  18059. },
  18060. [
  18061. {
  18062. name: "Micro",
  18063. height: math.unit(4, "inches"),
  18064. default: true
  18065. },
  18066. ]
  18067. ))
  18068. characterMakers.push(() => makeCharacter(
  18069. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18070. {
  18071. front: {
  18072. height: math.unit(6, "feet"),
  18073. weight: math.unit(150, "lb"),
  18074. name: "Front",
  18075. image: {
  18076. source: "./media/characters/pandora/front.svg",
  18077. extra: 2720 / 2556,
  18078. bottom: 0.015
  18079. }
  18080. },
  18081. back: {
  18082. height: math.unit(6, "feet"),
  18083. weight: math.unit(150, "lb"),
  18084. name: "Back",
  18085. image: {
  18086. source: "./media/characters/pandora/back.svg",
  18087. extra: 2720 / 2556,
  18088. bottom: 0.01
  18089. }
  18090. },
  18091. beans: {
  18092. height: math.unit(6 / 8, "feet"),
  18093. name: "Beans",
  18094. image: {
  18095. source: "./media/characters/pandora/beans.svg"
  18096. }
  18097. },
  18098. collar: {
  18099. height: math.unit(0.31, "feet"),
  18100. name: "Collar",
  18101. image: {
  18102. source: "./media/characters/pandora/collar.svg"
  18103. }
  18104. },
  18105. skirt: {
  18106. height: math.unit(6, "feet"),
  18107. weight: math.unit(150, "lb"),
  18108. name: "Skirt",
  18109. image: {
  18110. source: "./media/characters/pandora/skirt.svg",
  18111. extra: 1622 / 1525,
  18112. bottom: 0.015
  18113. }
  18114. },
  18115. hoodie: {
  18116. height: math.unit(6, "feet"),
  18117. weight: math.unit(150, "lb"),
  18118. name: "Hoodie",
  18119. image: {
  18120. source: "./media/characters/pandora/hoodie.svg",
  18121. extra: 1622 / 1525,
  18122. bottom: 0.015
  18123. }
  18124. },
  18125. casual: {
  18126. height: math.unit(6, "feet"),
  18127. weight: math.unit(150, "lb"),
  18128. name: "Casual",
  18129. image: {
  18130. source: "./media/characters/pandora/casual.svg",
  18131. extra: 1622 / 1525,
  18132. bottom: 0.015
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(6, "feet")
  18140. },
  18141. {
  18142. name: "Big Steppy",
  18143. height: math.unit(1, "km"),
  18144. default: true
  18145. },
  18146. {
  18147. name: "Galactic Steppy",
  18148. height: math.unit(2, "gigameters")
  18149. },
  18150. ]
  18151. ))
  18152. characterMakers.push(() => makeCharacter(
  18153. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18154. {
  18155. side: {
  18156. height: math.unit(10, "feet"),
  18157. weight: math.unit(800, "kg"),
  18158. name: "Side",
  18159. image: {
  18160. source: "./media/characters/venio-darcony/side.svg",
  18161. extra: 1373 / 1003,
  18162. bottom: 0.037
  18163. }
  18164. },
  18165. front: {
  18166. height: math.unit(19, "feet"),
  18167. weight: math.unit(800, "kg"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/venio-darcony/front.svg"
  18171. }
  18172. },
  18173. back: {
  18174. height: math.unit(19, "feet"),
  18175. weight: math.unit(800, "kg"),
  18176. name: "Back",
  18177. image: {
  18178. source: "./media/characters/venio-darcony/back.svg"
  18179. }
  18180. },
  18181. sideNsfw: {
  18182. height: math.unit(10, "feet"),
  18183. weight: math.unit(800, "kg"),
  18184. name: "Side (NSFW)",
  18185. image: {
  18186. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18187. extra: 1373 / 1003,
  18188. bottom: 0.037
  18189. }
  18190. },
  18191. frontNsfw: {
  18192. height: math.unit(19, "feet"),
  18193. weight: math.unit(800, "kg"),
  18194. name: "Front (NSFW)",
  18195. image: {
  18196. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18197. }
  18198. },
  18199. backNsfw: {
  18200. height: math.unit(19, "feet"),
  18201. weight: math.unit(800, "kg"),
  18202. name: "Back (NSFW)",
  18203. image: {
  18204. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18205. }
  18206. },
  18207. sideArmored: {
  18208. height: math.unit(10, "feet"),
  18209. weight: math.unit(800, "kg"),
  18210. name: "Side (Armored)",
  18211. image: {
  18212. source: "./media/characters/venio-darcony/side-armored.svg",
  18213. extra: 1373 / 1003,
  18214. bottom: 0.037
  18215. }
  18216. },
  18217. frontArmored: {
  18218. height: math.unit(19, "feet"),
  18219. weight: math.unit(900, "kg"),
  18220. name: "Front (Armored)",
  18221. image: {
  18222. source: "./media/characters/venio-darcony/front-armored.svg"
  18223. }
  18224. },
  18225. backArmored: {
  18226. height: math.unit(19, "feet"),
  18227. weight: math.unit(900, "kg"),
  18228. name: "Back (Armored)",
  18229. image: {
  18230. source: "./media/characters/venio-darcony/back-armored.svg"
  18231. }
  18232. },
  18233. sword: {
  18234. height: math.unit(10, "feet"),
  18235. weight: math.unit(50, "lb"),
  18236. name: "Sword",
  18237. image: {
  18238. source: "./media/characters/venio-darcony/sword.svg"
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(10, "feet")
  18246. },
  18247. {
  18248. name: "Macro",
  18249. height: math.unit(130, "feet"),
  18250. default: true
  18251. },
  18252. {
  18253. name: "Macro+",
  18254. height: math.unit(240, "feet")
  18255. },
  18256. ]
  18257. ))
  18258. characterMakers.push(() => makeCharacter(
  18259. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18260. {
  18261. front: {
  18262. height: math.unit(6, "feet"),
  18263. weight: math.unit(150, "lb"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/veski/front.svg",
  18267. extra: 1299 / 1225,
  18268. bottom: 0.04
  18269. }
  18270. },
  18271. back: {
  18272. height: math.unit(6, "feet"),
  18273. weight: math.unit(150, "lb"),
  18274. name: "Back",
  18275. image: {
  18276. source: "./media/characters/veski/back.svg",
  18277. extra: 1299 / 1225,
  18278. bottom: 0.008
  18279. }
  18280. },
  18281. maw: {
  18282. height: math.unit(1.5 * 1.21, "feet"),
  18283. name: "Maw",
  18284. image: {
  18285. source: "./media/characters/veski/maw.svg"
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Macro",
  18292. height: math.unit(2, "km"),
  18293. default: true
  18294. },
  18295. ]
  18296. ))
  18297. characterMakers.push(() => makeCharacter(
  18298. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18299. {
  18300. front: {
  18301. height: math.unit(5 + 7 / 12, "feet"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/isabelle/front.svg",
  18305. extra: 2130 / 1976,
  18306. bottom: 0.05
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Supermicro",
  18313. height: math.unit(10, "micrometers")
  18314. },
  18315. {
  18316. name: "Micro",
  18317. height: math.unit(1, "inch")
  18318. },
  18319. {
  18320. name: "Tiny",
  18321. height: math.unit(5, "inches")
  18322. },
  18323. {
  18324. name: "Standard",
  18325. height: math.unit(5 + 7 / 12, "inches")
  18326. },
  18327. {
  18328. name: "Macro",
  18329. height: math.unit(80, "meters"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Megamacro",
  18334. height: math.unit(250, "meters")
  18335. },
  18336. {
  18337. name: "Gigamacro",
  18338. height: math.unit(5, "km")
  18339. },
  18340. {
  18341. name: "Cosmic",
  18342. height: math.unit(2.5e6, "miles")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(6, "feet"),
  18351. weight: math.unit(150, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/hanzo/front.svg",
  18355. extra: 374 / 344,
  18356. bottom: 0.02
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "Normal",
  18363. height: math.unit(8, "feet"),
  18364. default: true
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18370. {
  18371. front: {
  18372. height: math.unit(7, "feet"),
  18373. weight: math.unit(130, "lb"),
  18374. name: "Front",
  18375. image: {
  18376. source: "./media/characters/anna/front.svg",
  18377. extra: 169 / 145,
  18378. bottom: 0.06
  18379. }
  18380. },
  18381. full: {
  18382. height: math.unit(4.96, "feet"),
  18383. weight: math.unit(220, "lb"),
  18384. name: "Full",
  18385. image: {
  18386. source: "./media/characters/anna/full.svg",
  18387. extra: 138 / 114,
  18388. bottom: 0.15
  18389. }
  18390. },
  18391. tongue: {
  18392. height: math.unit(2.53, "feet"),
  18393. name: "Tongue",
  18394. image: {
  18395. source: "./media/characters/anna/tongue.svg"
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Normal",
  18402. height: math.unit(7, "feet"),
  18403. default: true
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(7, "feet"),
  18412. weight: math.unit(150, "lb"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/ian-corvid/front.svg",
  18416. extra: 150 / 142,
  18417. bottom: 0.02
  18418. }
  18419. },
  18420. back: {
  18421. height: math.unit(7, "feet"),
  18422. weight: math.unit(150, "lb"),
  18423. name: "Back",
  18424. image: {
  18425. source: "./media/characters/ian-corvid/back.svg",
  18426. extra: 150 / 143,
  18427. bottom: 0.01
  18428. }
  18429. },
  18430. stomping: {
  18431. height: math.unit(7, "feet"),
  18432. weight: math.unit(150, "lb"),
  18433. name: "Stomping",
  18434. image: {
  18435. source: "./media/characters/ian-corvid/stomping.svg",
  18436. extra: 76 / 72
  18437. }
  18438. },
  18439. sitting: {
  18440. height: math.unit(7 / 1.8, "feet"),
  18441. weight: math.unit(150, "lb"),
  18442. name: "Sitting",
  18443. image: {
  18444. source: "./media/characters/ian-corvid/sitting.svg",
  18445. extra: 1400 / 1269,
  18446. bottom: 0.15
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Tiny Microw",
  18453. height: math.unit(1, "inch")
  18454. },
  18455. {
  18456. name: "Microw",
  18457. height: math.unit(6, "inches")
  18458. },
  18459. {
  18460. name: "Crow",
  18461. height: math.unit(7 + 1 / 12, "feet"),
  18462. default: true
  18463. },
  18464. {
  18465. name: "Macrow",
  18466. height: math.unit(176, "feet")
  18467. },
  18468. ]
  18469. ))
  18470. characterMakers.push(() => makeCharacter(
  18471. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18472. {
  18473. front: {
  18474. height: math.unit(5 + 7 / 12, "feet"),
  18475. weight: math.unit(147, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/natalie-kellon/front.svg",
  18479. extra: 1214 / 1141,
  18480. bottom: 0.02
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Micro",
  18487. height: math.unit(1 / 16, "inch")
  18488. },
  18489. {
  18490. name: "Tiny",
  18491. height: math.unit(4, "inches")
  18492. },
  18493. {
  18494. name: "Normal",
  18495. height: math.unit(5 + 7 / 12, "feet"),
  18496. default: true
  18497. },
  18498. {
  18499. name: "Amazon",
  18500. height: math.unit(12, "feet")
  18501. },
  18502. {
  18503. name: "Giantess",
  18504. height: math.unit(160, "meters")
  18505. },
  18506. {
  18507. name: "Titaness",
  18508. height: math.unit(800, "meters")
  18509. },
  18510. ]
  18511. ))
  18512. characterMakers.push(() => makeCharacter(
  18513. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18514. {
  18515. front: {
  18516. height: math.unit(6, "feet"),
  18517. weight: math.unit(150, "lb"),
  18518. name: "Front",
  18519. image: {
  18520. source: "./media/characters/alluria/front.svg",
  18521. extra: 806 / 738,
  18522. bottom: 0.01
  18523. }
  18524. },
  18525. side: {
  18526. height: math.unit(6, "feet"),
  18527. weight: math.unit(150, "lb"),
  18528. name: "Side",
  18529. image: {
  18530. source: "./media/characters/alluria/side.svg",
  18531. extra: 800 / 750,
  18532. }
  18533. },
  18534. back: {
  18535. height: math.unit(6, "feet"),
  18536. weight: math.unit(150, "lb"),
  18537. name: "Back",
  18538. image: {
  18539. source: "./media/characters/alluria/back.svg",
  18540. extra: 806 / 738,
  18541. }
  18542. },
  18543. frontMaid: {
  18544. height: math.unit(6, "feet"),
  18545. weight: math.unit(150, "lb"),
  18546. name: "Front (Maid)",
  18547. image: {
  18548. source: "./media/characters/alluria/front-maid.svg",
  18549. extra: 806 / 738,
  18550. bottom: 0.01
  18551. }
  18552. },
  18553. sideMaid: {
  18554. height: math.unit(6, "feet"),
  18555. weight: math.unit(150, "lb"),
  18556. name: "Side (Maid)",
  18557. image: {
  18558. source: "./media/characters/alluria/side-maid.svg",
  18559. extra: 800 / 750,
  18560. bottom: 0.005
  18561. }
  18562. },
  18563. backMaid: {
  18564. height: math.unit(6, "feet"),
  18565. weight: math.unit(150, "lb"),
  18566. name: "Back (Maid)",
  18567. image: {
  18568. source: "./media/characters/alluria/back-maid.svg",
  18569. extra: 806 / 738,
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Micro",
  18576. height: math.unit(6, "inches"),
  18577. default: true
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(6, "feet"),
  18586. weight: math.unit(150, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/kyle/front.svg",
  18590. extra: 1069 / 962,
  18591. bottom: 77.228 / 1727.45
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Macro",
  18598. height: math.unit(150, "feet"),
  18599. default: true
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(6, "feet"),
  18608. weight: math.unit(300, "lb"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/duncan/front.svg",
  18612. extra: 1650 / 1482,
  18613. bottom: 0.05
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Macro",
  18620. height: math.unit(100, "feet"),
  18621. default: true
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18627. {
  18628. front: {
  18629. height: math.unit(5 + 4 / 12, "feet"),
  18630. weight: math.unit(220, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/memory/front.svg",
  18634. extra: 3641 / 3545,
  18635. bottom: 0.03
  18636. }
  18637. },
  18638. back: {
  18639. height: math.unit(5 + 4 / 12, "feet"),
  18640. weight: math.unit(220, "lb"),
  18641. name: "Back",
  18642. image: {
  18643. source: "./media/characters/memory/back.svg",
  18644. extra: 3641 / 3545,
  18645. bottom: 0.025
  18646. }
  18647. },
  18648. frontSkirt: {
  18649. height: math.unit(5 + 4 / 12, "feet"),
  18650. weight: math.unit(220, "lb"),
  18651. name: "Front (Skirt)",
  18652. image: {
  18653. source: "./media/characters/memory/front-skirt.svg",
  18654. extra: 3641 / 3545,
  18655. bottom: 0.03
  18656. }
  18657. },
  18658. frontDress: {
  18659. height: math.unit(5 + 4 / 12, "feet"),
  18660. weight: math.unit(220, "lb"),
  18661. name: "Front (Dress)",
  18662. image: {
  18663. source: "./media/characters/memory/front-dress.svg",
  18664. extra: 3641 / 3545,
  18665. bottom: 0.03
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Micro",
  18672. height: math.unit(6, "inches"),
  18673. default: true
  18674. },
  18675. {
  18676. name: "Normal",
  18677. height: math.unit(5 + 4 / 12, "feet")
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18683. {
  18684. front: {
  18685. height: math.unit(4 + 11 / 12, "feet"),
  18686. weight: math.unit(100, "lb"),
  18687. name: "Front",
  18688. image: {
  18689. source: "./media/characters/luno/front.svg",
  18690. extra: 1535 / 1487,
  18691. bottom: 0.03
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Micro",
  18698. height: math.unit(3, "inches")
  18699. },
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(4 + 11 / 12, "feet"),
  18703. default: true
  18704. },
  18705. {
  18706. name: "Macro",
  18707. height: math.unit(300, "feet")
  18708. },
  18709. {
  18710. name: "Megamacro",
  18711. height: math.unit(700, "miles")
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18717. {
  18718. front: {
  18719. height: math.unit(6 + 2 / 12, "feet"),
  18720. weight: math.unit(170, "lb"),
  18721. name: "Front",
  18722. image: {
  18723. source: "./media/characters/jamesy/front.svg",
  18724. extra: 440 / 382,
  18725. bottom: 0.005
  18726. }
  18727. },
  18728. },
  18729. [
  18730. {
  18731. name: "Micro",
  18732. height: math.unit(3, "inches")
  18733. },
  18734. {
  18735. name: "Normal",
  18736. height: math.unit(6 + 2 / 12, "feet"),
  18737. default: true
  18738. },
  18739. {
  18740. name: "Macro",
  18741. height: math.unit(300, "feet")
  18742. },
  18743. {
  18744. name: "Megamacro",
  18745. height: math.unit(700, "miles")
  18746. },
  18747. ]
  18748. ))
  18749. characterMakers.push(() => makeCharacter(
  18750. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18751. {
  18752. front: {
  18753. height: math.unit(6, "feet"),
  18754. weight: math.unit(160, "lb"),
  18755. name: "Front",
  18756. image: {
  18757. source: "./media/characters/mark/front.svg",
  18758. extra: 3300 / 3100,
  18759. bottom: 136.42 / 3440.47
  18760. }
  18761. },
  18762. },
  18763. [
  18764. {
  18765. name: "Macro",
  18766. height: math.unit(120, "meters")
  18767. },
  18768. {
  18769. name: "Bigger Macro",
  18770. height: math.unit(350, "meters")
  18771. },
  18772. {
  18773. name: "Megamacro",
  18774. height: math.unit(8, "km"),
  18775. default: true
  18776. },
  18777. {
  18778. name: "Continental",
  18779. height: math.unit(4550, "km")
  18780. },
  18781. {
  18782. name: "Planetary",
  18783. height: math.unit(65000, "km")
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(6, "feet"),
  18792. weight: math.unit(400, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/mac/front.svg",
  18796. extra: 1048 / 987.7,
  18797. bottom: 60 / 1107.6,
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Macro",
  18804. height: math.unit(500, "feet"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18811. {
  18812. front: {
  18813. height: math.unit(5 + 2 / 12, "feet"),
  18814. weight: math.unit(190, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/bari/front.svg",
  18818. extra: 3156 / 2880,
  18819. bottom: 0.03
  18820. }
  18821. },
  18822. back: {
  18823. height: math.unit(5 + 2 / 12, "feet"),
  18824. weight: math.unit(190, "lb"),
  18825. name: "Back",
  18826. image: {
  18827. source: "./media/characters/bari/back.svg",
  18828. extra: 3260 / 2834,
  18829. bottom: 0.025
  18830. }
  18831. },
  18832. frontPlush: {
  18833. height: math.unit(5 + 2 / 12, "feet"),
  18834. weight: math.unit(190, "lb"),
  18835. name: "Front (Plush)",
  18836. image: {
  18837. source: "./media/characters/bari/front-plush.svg",
  18838. extra: 1112 / 1061,
  18839. bottom: 0.002
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Micro",
  18846. height: math.unit(3, "inches")
  18847. },
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(5 + 2 / 12, "feet"),
  18851. default: true
  18852. },
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(20, "feet")
  18856. },
  18857. ]
  18858. ))
  18859. characterMakers.push(() => makeCharacter(
  18860. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18861. {
  18862. front: {
  18863. height: math.unit(6 + 1 / 12, "feet"),
  18864. weight: math.unit(275, "lb"),
  18865. name: "Front",
  18866. image: {
  18867. source: "./media/characters/hunter-misha-raven/front.svg"
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Mortal",
  18874. height: math.unit(6 + 1 / 12, "feet")
  18875. },
  18876. {
  18877. name: "Divine",
  18878. height: math.unit(1.12134e34, "parsecs"),
  18879. default: true
  18880. },
  18881. ]
  18882. ))
  18883. characterMakers.push(() => makeCharacter(
  18884. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18885. {
  18886. front: {
  18887. height: math.unit(6 + 3 / 12, "feet"),
  18888. weight: math.unit(220, "lb"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/max-calore/front.svg",
  18892. extra: 1700 / 1648,
  18893. bottom: 0.01
  18894. }
  18895. },
  18896. back: {
  18897. height: math.unit(6 + 3 / 12, "feet"),
  18898. weight: math.unit(220, "lb"),
  18899. name: "Back",
  18900. image: {
  18901. source: "./media/characters/max-calore/back.svg",
  18902. extra: 1700 / 1648,
  18903. bottom: 0.01
  18904. }
  18905. },
  18906. },
  18907. [
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(6 + 3 / 12, "feet"),
  18911. default: true
  18912. },
  18913. ]
  18914. ))
  18915. characterMakers.push(() => makeCharacter(
  18916. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18917. {
  18918. side: {
  18919. height: math.unit(2 + 8 / 12, "feet"),
  18920. weight: math.unit(99, "lb"),
  18921. name: "Side",
  18922. image: {
  18923. source: "./media/characters/aspen/side.svg",
  18924. extra: 152 / 138,
  18925. bottom: 0.032
  18926. }
  18927. },
  18928. },
  18929. [
  18930. {
  18931. name: "Normal",
  18932. height: math.unit(2 + 8 / 12, "feet"),
  18933. default: true
  18934. },
  18935. ]
  18936. ))
  18937. characterMakers.push(() => makeCharacter(
  18938. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18939. {
  18940. side: {
  18941. height: math.unit(3 + 2 / 12, "feet"),
  18942. weight: math.unit(224, "lb"),
  18943. name: "Side",
  18944. image: {
  18945. source: "./media/characters/sheila-feral-wolf/side.svg",
  18946. extra: 179 / 166,
  18947. bottom: 0.03
  18948. }
  18949. },
  18950. },
  18951. [
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(3 + 2 / 12, "feet"),
  18955. default: true
  18956. },
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18961. {
  18962. side: {
  18963. height: math.unit(1 + 9 / 12, "feet"),
  18964. weight: math.unit(38, "lb"),
  18965. name: "Side",
  18966. image: {
  18967. source: "./media/characters/michelle/side.svg",
  18968. extra: 147 / 136.7,
  18969. bottom: 0.03
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(1 + 9 / 12, "feet"),
  18977. default: true
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18983. {
  18984. front: {
  18985. height: math.unit(1.54, "feet"),
  18986. weight: math.unit(50, "lb"),
  18987. name: "Front",
  18988. image: {
  18989. source: "./media/characters/nino/front.svg"
  18990. }
  18991. },
  18992. },
  18993. [
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(1.54, "feet"),
  18997. default: true
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19003. {
  19004. front: {
  19005. height: math.unit(1.49, "feet"),
  19006. weight: math.unit(45, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/viola/front.svg"
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Normal",
  19016. height: math.unit(1.49, "feet"),
  19017. default: true
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19023. {
  19024. front: {
  19025. height: math.unit(6 + 5 / 12, "feet"),
  19026. weight: math.unit(580, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/atlas/front.svg",
  19030. extra: 298.5 / 290,
  19031. bottom: 0.015
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Normal",
  19038. height: math.unit(6 + 5 / 12, "feet"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19045. {
  19046. side: {
  19047. height: math.unit(15.6, "inches"),
  19048. weight: math.unit(10, "lb"),
  19049. name: "Side",
  19050. image: {
  19051. source: "./media/characters/davy/side.svg",
  19052. extra: 200 / 170,
  19053. bottom: 0.01
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(15.6, "inches"),
  19061. default: true
  19062. },
  19063. ]
  19064. ))
  19065. characterMakers.push(() => makeCharacter(
  19066. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19067. {
  19068. side: {
  19069. height: math.unit(4 + 8 / 12, "feet"),
  19070. weight: math.unit(166, "lb"),
  19071. name: "Side",
  19072. image: {
  19073. source: "./media/characters/fiona/side.svg",
  19074. extra: 232 / 220,
  19075. bottom: 0.03
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Normal",
  19082. height: math.unit(4 + 8 / 12, "feet"),
  19083. default: true
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19089. {
  19090. front: {
  19091. height: math.unit(26, "inches"),
  19092. weight: math.unit(35, "lb"),
  19093. name: "Front",
  19094. image: {
  19095. source: "./media/characters/lyla/front.svg",
  19096. bottom: 0.1
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(3, "feet"),
  19104. default: true
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19110. {
  19111. side: {
  19112. height: math.unit(1.8, "feet"),
  19113. weight: math.unit(44, "lb"),
  19114. name: "Side",
  19115. image: {
  19116. source: "./media/characters/perseus/side.svg",
  19117. bottom: 0.21
  19118. }
  19119. },
  19120. },
  19121. [
  19122. {
  19123. name: "Normal",
  19124. height: math.unit(1.8, "feet"),
  19125. default: true
  19126. },
  19127. ]
  19128. ))
  19129. characterMakers.push(() => makeCharacter(
  19130. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19131. {
  19132. side: {
  19133. height: math.unit(4 + 2 / 12, "feet"),
  19134. weight: math.unit(20, "lb"),
  19135. name: "Side",
  19136. image: {
  19137. source: "./media/characters/remus/side.svg"
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Normal",
  19144. height: math.unit(4 + 2 / 12, "feet"),
  19145. default: true
  19146. },
  19147. ]
  19148. ))
  19149. characterMakers.push(() => makeCharacter(
  19150. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19151. {
  19152. front: {
  19153. height: math.unit(4 + 11 / 12, "feet"),
  19154. weight: math.unit(114, "lb"),
  19155. name: "Front",
  19156. image: {
  19157. source: "./media/characters/raf/front.svg",
  19158. extra: 1504/1339,
  19159. bottom: 26/1530
  19160. }
  19161. },
  19162. side: {
  19163. height: math.unit(4 + 11 / 12, "feet"),
  19164. weight: math.unit(114, "lb"),
  19165. name: "Side",
  19166. image: {
  19167. source: "./media/characters/raf/side.svg",
  19168. extra: 1466/1316,
  19169. bottom: 29/1495
  19170. }
  19171. },
  19172. paw: {
  19173. height: math.unit(1.45, "feet"),
  19174. name: "Paw",
  19175. image: {
  19176. source: "./media/characters/raf/paw.svg"
  19177. },
  19178. extraAttributes: {
  19179. "toeSize": {
  19180. name: "Toe Size",
  19181. power: 2,
  19182. type: "area",
  19183. base: math.unit(0.004, "m^2")
  19184. },
  19185. "padSize": {
  19186. name: "Pad Size",
  19187. power: 2,
  19188. type: "area",
  19189. base: math.unit(0.04, "m^2")
  19190. },
  19191. "footSize": {
  19192. name: "Foot Size",
  19193. power: 2,
  19194. type: "area",
  19195. base: math.unit(0.08, "m^2")
  19196. },
  19197. }
  19198. },
  19199. },
  19200. [
  19201. {
  19202. name: "Micro",
  19203. height: math.unit(2, "inches")
  19204. },
  19205. {
  19206. name: "Normal",
  19207. height: math.unit(4 + 11 / 12, "feet"),
  19208. default: true
  19209. },
  19210. {
  19211. name: "Macro",
  19212. height: math.unit(70, "feet")
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19218. {
  19219. front: {
  19220. height: math.unit(1.5, "meters"),
  19221. weight: math.unit(68, "kg"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/liam-einarr/front.svg",
  19225. extra: 2822 / 2666
  19226. }
  19227. },
  19228. back: {
  19229. height: math.unit(1.5, "meters"),
  19230. weight: math.unit(68, "kg"),
  19231. name: "Back",
  19232. image: {
  19233. source: "./media/characters/liam-einarr/back.svg",
  19234. extra: 2822 / 2666,
  19235. bottom: 0.015
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(1.5, "meters"),
  19243. default: true
  19244. },
  19245. {
  19246. name: "Macro",
  19247. height: math.unit(150, "meters")
  19248. },
  19249. {
  19250. name: "Megamacro",
  19251. height: math.unit(35, "km")
  19252. },
  19253. ]
  19254. ))
  19255. characterMakers.push(() => makeCharacter(
  19256. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19257. {
  19258. front: {
  19259. height: math.unit(6, "feet"),
  19260. weight: math.unit(75, "kg"),
  19261. name: "Front",
  19262. image: {
  19263. source: "./media/characters/linda/front.svg",
  19264. extra: 930 / 874,
  19265. bottom: 0.004
  19266. }
  19267. },
  19268. },
  19269. [
  19270. {
  19271. name: "Normal",
  19272. height: math.unit(6, "feet"),
  19273. default: true
  19274. },
  19275. ]
  19276. ))
  19277. characterMakers.push(() => makeCharacter(
  19278. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19279. {
  19280. front: {
  19281. height: math.unit(6 + 8 / 12, "feet"),
  19282. weight: math.unit(220, "lb"),
  19283. name: "Front",
  19284. image: {
  19285. source: "./media/characters/caylex/front.svg",
  19286. extra: 821 / 772,
  19287. bottom: 0.07
  19288. }
  19289. },
  19290. back: {
  19291. height: math.unit(6 + 8 / 12, "feet"),
  19292. weight: math.unit(220, "lb"),
  19293. name: "Back",
  19294. image: {
  19295. source: "./media/characters/caylex/back.svg",
  19296. extra: 821 / 772,
  19297. bottom: 0.022
  19298. }
  19299. },
  19300. hand: {
  19301. height: math.unit(1.25, "feet"),
  19302. name: "Hand",
  19303. image: {
  19304. source: "./media/characters/caylex/hand.svg"
  19305. }
  19306. },
  19307. foot: {
  19308. height: math.unit(1.6, "feet"),
  19309. name: "Foot",
  19310. image: {
  19311. source: "./media/characters/caylex/foot.svg"
  19312. }
  19313. },
  19314. armored: {
  19315. height: math.unit(6 + 8 / 12, "feet"),
  19316. weight: math.unit(250, "lb"),
  19317. name: "Armored",
  19318. image: {
  19319. source: "./media/characters/caylex/armored.svg",
  19320. extra: 1420 / 1310,
  19321. bottom: 0.045
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(6 + 8 / 12, "feet"),
  19329. default: true
  19330. },
  19331. {
  19332. name: "Normal+",
  19333. height: math.unit(12, "feet")
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19339. {
  19340. front: {
  19341. height: math.unit(7 + 6 / 12, "feet"),
  19342. weight: math.unit(288, "lb"),
  19343. name: "Front",
  19344. image: {
  19345. source: "./media/characters/alana/front.svg",
  19346. extra: 679 / 653,
  19347. bottom: 22.5 / 701
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(7 + 6 / 12, "feet")
  19355. },
  19356. {
  19357. name: "Large",
  19358. height: math.unit(50, "feet")
  19359. },
  19360. {
  19361. name: "Macro",
  19362. height: math.unit(100, "feet"),
  19363. default: true
  19364. },
  19365. {
  19366. name: "Macro+",
  19367. height: math.unit(200, "feet")
  19368. },
  19369. ]
  19370. ))
  19371. characterMakers.push(() => makeCharacter(
  19372. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19373. {
  19374. front: {
  19375. height: math.unit(6 + 1 / 12, "feet"),
  19376. weight: math.unit(210, "lb"),
  19377. name: "Front",
  19378. image: {
  19379. source: "./media/characters/hasani/front.svg",
  19380. extra: 244 / 232,
  19381. bottom: 0.01
  19382. }
  19383. },
  19384. back: {
  19385. height: math.unit(6 + 1 / 12, "feet"),
  19386. weight: math.unit(210, "lb"),
  19387. name: "Back",
  19388. image: {
  19389. source: "./media/characters/hasani/back.svg",
  19390. extra: 244 / 232,
  19391. bottom: 0.01
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(6 + 1 / 12, "feet")
  19399. },
  19400. {
  19401. name: "Macro",
  19402. height: math.unit(175, "feet"),
  19403. default: true
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19409. {
  19410. front: {
  19411. height: math.unit(1.82, "meters"),
  19412. weight: math.unit(140, "lb"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/nita/front.svg",
  19416. extra: 2473 / 2363,
  19417. bottom: 0.01
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(1.82, "m")
  19425. },
  19426. {
  19427. name: "Macro",
  19428. height: math.unit(300, "m")
  19429. },
  19430. {
  19431. name: "Mistake Canon",
  19432. height: math.unit(0.5, "miles"),
  19433. default: true
  19434. },
  19435. {
  19436. name: "Big Mistake",
  19437. height: math.unit(13, "miles")
  19438. },
  19439. {
  19440. name: "Playing God",
  19441. height: math.unit(2450, "miles")
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19447. {
  19448. front: {
  19449. height: math.unit(4, "feet"),
  19450. weight: math.unit(120, "lb"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/shiriko/front.svg",
  19454. extra: 970/934,
  19455. bottom: 5/975
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Normal",
  19462. height: math.unit(4, "feet"),
  19463. default: true
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(6, "feet"),
  19472. name: "front",
  19473. image: {
  19474. source: "./media/characters/deja/front.svg",
  19475. extra: 926 / 840,
  19476. bottom: 0.07
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Planck Length",
  19483. height: math.unit(1.6e-35, "meters")
  19484. },
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(30.48, "meters"),
  19488. default: true
  19489. },
  19490. {
  19491. name: "Universal",
  19492. height: math.unit(8.8e26, "meters")
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19498. {
  19499. side: {
  19500. height: math.unit(8, "feet"),
  19501. weight: math.unit(6300, "lb"),
  19502. name: "Side",
  19503. image: {
  19504. source: "./media/characters/anima/side.svg",
  19505. bottom: 0.035
  19506. }
  19507. },
  19508. },
  19509. [
  19510. {
  19511. name: "Normal",
  19512. height: math.unit(8, "feet"),
  19513. default: true
  19514. },
  19515. ]
  19516. ))
  19517. characterMakers.push(() => makeCharacter(
  19518. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19519. {
  19520. front: {
  19521. height: math.unit(8, "feet"),
  19522. weight: math.unit(350, "lb"),
  19523. name: "Front",
  19524. image: {
  19525. source: "./media/characters/bianca/front.svg",
  19526. extra: 234 / 225,
  19527. bottom: 0.03
  19528. }
  19529. },
  19530. },
  19531. [
  19532. {
  19533. name: "Normal",
  19534. height: math.unit(8, "feet"),
  19535. default: true
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19541. {
  19542. front: {
  19543. height: math.unit(11 + 5/12, "feet"),
  19544. weight: math.unit(1200, "lb"),
  19545. name: "Front",
  19546. image: {
  19547. source: "./media/characters/adinia/front.svg",
  19548. extra: 1767/1641,
  19549. bottom: 44/1811
  19550. },
  19551. extraAttributes: {
  19552. "energyIntake": {
  19553. name: "Energy Intake",
  19554. power: 3,
  19555. type: "energy",
  19556. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19557. },
  19558. }
  19559. },
  19560. back: {
  19561. height: math.unit(11 + 5/12, "feet"),
  19562. weight: math.unit(1200, "lb"),
  19563. name: "Back",
  19564. image: {
  19565. source: "./media/characters/adinia/back.svg",
  19566. extra: 1834/1684,
  19567. bottom: 14/1848
  19568. },
  19569. extraAttributes: {
  19570. "energyIntake": {
  19571. name: "Energy Intake",
  19572. power: 3,
  19573. type: "energy",
  19574. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19575. },
  19576. }
  19577. },
  19578. maw: {
  19579. height: math.unit(3.79, "feet"),
  19580. name: "Maw",
  19581. image: {
  19582. source: "./media/characters/adinia/maw.svg"
  19583. }
  19584. },
  19585. rump: {
  19586. height: math.unit(4.6, "feet"),
  19587. name: "Rump",
  19588. image: {
  19589. source: "./media/characters/adinia/rump.svg"
  19590. }
  19591. },
  19592. },
  19593. [
  19594. {
  19595. name: "Normal",
  19596. height: math.unit(11 + 5 / 12, "feet"),
  19597. default: true
  19598. },
  19599. ]
  19600. ))
  19601. characterMakers.push(() => makeCharacter(
  19602. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19603. {
  19604. front: {
  19605. height: math.unit(3, "meters"),
  19606. weight: math.unit(200, "kg"),
  19607. name: "Front",
  19608. image: {
  19609. source: "./media/characters/lykasa/front.svg",
  19610. extra: 1076 / 976,
  19611. bottom: 0.06
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Normal",
  19618. height: math.unit(3, "meters")
  19619. },
  19620. {
  19621. name: "Kaiju",
  19622. height: math.unit(120, "meters"),
  19623. default: true
  19624. },
  19625. {
  19626. name: "Mega Kaiju",
  19627. height: math.unit(240, "km")
  19628. },
  19629. {
  19630. name: "Giga Kaiju",
  19631. height: math.unit(400, "megameters")
  19632. },
  19633. {
  19634. name: "Tera Kaiju",
  19635. height: math.unit(800, "gigameters")
  19636. },
  19637. {
  19638. name: "Kaiju Dragon Goddess",
  19639. height: math.unit(26, "zettaparsecs")
  19640. },
  19641. ]
  19642. ))
  19643. characterMakers.push(() => makeCharacter(
  19644. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19645. {
  19646. side: {
  19647. height: math.unit(283 / 124 * 6, "feet"),
  19648. weight: math.unit(35000, "lb"),
  19649. name: "Side",
  19650. image: {
  19651. source: "./media/characters/malfaren/side.svg",
  19652. extra: 1310/529,
  19653. bottom: 24/1334
  19654. }
  19655. },
  19656. front: {
  19657. height: math.unit(22.36, "feet"),
  19658. weight: math.unit(35000, "lb"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/malfaren/front.svg",
  19662. extra: 1237/1115,
  19663. bottom: 32/1269
  19664. }
  19665. },
  19666. maw: {
  19667. height: math.unit(6.9, "feet"),
  19668. name: "Maw",
  19669. image: {
  19670. source: "./media/characters/malfaren/maw.svg"
  19671. }
  19672. },
  19673. dick: {
  19674. height: math.unit(6.19, "feet"),
  19675. name: "Dick",
  19676. image: {
  19677. source: "./media/characters/malfaren/dick.svg"
  19678. }
  19679. },
  19680. eye: {
  19681. height: math.unit(0.69, "feet"),
  19682. name: "Eye",
  19683. image: {
  19684. source: "./media/characters/malfaren/eye.svg"
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Big",
  19691. height: math.unit(283 / 162 * 6, "feet"),
  19692. },
  19693. {
  19694. name: "Bigger",
  19695. height: math.unit(283 / 124 * 6, "feet")
  19696. },
  19697. {
  19698. name: "Massive",
  19699. height: math.unit(283 / 92 * 6, "feet"),
  19700. default: true
  19701. },
  19702. {
  19703. name: "👀💦",
  19704. height: math.unit(283 / 73 * 6, "feet"),
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(1.7, "m"),
  19713. weight: math.unit(70, "kg"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/kernel/front.svg",
  19717. extra: 222 / 210,
  19718. bottom: 0.007
  19719. }
  19720. },
  19721. },
  19722. [
  19723. {
  19724. name: "Nano",
  19725. height: math.unit(17, "micrometers")
  19726. },
  19727. {
  19728. name: "Micro",
  19729. height: math.unit(1.7, "mm")
  19730. },
  19731. {
  19732. name: "Small",
  19733. height: math.unit(1.7, "cm")
  19734. },
  19735. {
  19736. name: "Normal",
  19737. height: math.unit(1.7, "m"),
  19738. default: true
  19739. },
  19740. ]
  19741. ))
  19742. characterMakers.push(() => makeCharacter(
  19743. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19744. {
  19745. front: {
  19746. height: math.unit(1.75, "meters"),
  19747. weight: math.unit(65, "kg"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/jayne-folest/front.svg",
  19751. extra: 2115 / 2007,
  19752. bottom: 0.02
  19753. }
  19754. },
  19755. back: {
  19756. height: math.unit(1.75, "meters"),
  19757. weight: math.unit(65, "kg"),
  19758. name: "Back",
  19759. image: {
  19760. source: "./media/characters/jayne-folest/back.svg",
  19761. extra: 2115 / 2007,
  19762. bottom: 0.005
  19763. }
  19764. },
  19765. frontClothed: {
  19766. height: math.unit(1.75, "meters"),
  19767. weight: math.unit(65, "kg"),
  19768. name: "Front (Clothed)",
  19769. image: {
  19770. source: "./media/characters/jayne-folest/front-clothed.svg",
  19771. extra: 2115 / 2007,
  19772. bottom: 0.035
  19773. }
  19774. },
  19775. hand: {
  19776. height: math.unit(1 / 1.260, "feet"),
  19777. name: "Hand",
  19778. image: {
  19779. source: "./media/characters/jayne-folest/hand.svg"
  19780. }
  19781. },
  19782. foot: {
  19783. height: math.unit(1 / 0.918, "feet"),
  19784. name: "Foot",
  19785. image: {
  19786. source: "./media/characters/jayne-folest/foot.svg"
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Micro",
  19793. height: math.unit(4, "cm")
  19794. },
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(1.75, "meters")
  19798. },
  19799. {
  19800. name: "Macro",
  19801. height: math.unit(47.5, "meters"),
  19802. default: true
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19808. {
  19809. front: {
  19810. height: math.unit(180, "cm"),
  19811. weight: math.unit(70, "kg"),
  19812. name: "Front",
  19813. image: {
  19814. source: "./media/characters/algier/front.svg",
  19815. extra: 596 / 572,
  19816. bottom: 0.04
  19817. }
  19818. },
  19819. back: {
  19820. height: math.unit(180, "cm"),
  19821. weight: math.unit(70, "kg"),
  19822. name: "Back",
  19823. image: {
  19824. source: "./media/characters/algier/back.svg",
  19825. extra: 596 / 572,
  19826. bottom: 0.025
  19827. }
  19828. },
  19829. frontdressed: {
  19830. height: math.unit(180, "cm"),
  19831. weight: math.unit(150, "kg"),
  19832. name: "Front-dressed",
  19833. image: {
  19834. source: "./media/characters/algier/front-dressed.svg",
  19835. extra: 596 / 572,
  19836. bottom: 0.038
  19837. }
  19838. },
  19839. },
  19840. [
  19841. {
  19842. name: "Micro",
  19843. height: math.unit(5, "cm")
  19844. },
  19845. {
  19846. name: "Normal",
  19847. height: math.unit(180, "cm"),
  19848. default: true
  19849. },
  19850. {
  19851. name: "Macro",
  19852. height: math.unit(64, "m")
  19853. },
  19854. ]
  19855. ))
  19856. characterMakers.push(() => makeCharacter(
  19857. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19858. {
  19859. upright: {
  19860. height: math.unit(7, "feet"),
  19861. weight: math.unit(300, "lb"),
  19862. name: "Upright",
  19863. image: {
  19864. source: "./media/characters/pretzel/upright.svg",
  19865. extra: 534 / 522,
  19866. bottom: 0.065
  19867. }
  19868. },
  19869. sprawling: {
  19870. height: math.unit(3.75, "feet"),
  19871. weight: math.unit(300, "lb"),
  19872. name: "Sprawling",
  19873. image: {
  19874. source: "./media/characters/pretzel/sprawling.svg",
  19875. extra: 314 / 281,
  19876. bottom: 0.1
  19877. }
  19878. },
  19879. tongue: {
  19880. height: math.unit(2, "feet"),
  19881. name: "Tongue",
  19882. image: {
  19883. source: "./media/characters/pretzel/tongue.svg"
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(7, "feet"),
  19891. default: true
  19892. },
  19893. {
  19894. name: "Oversized",
  19895. height: math.unit(15, "feet")
  19896. },
  19897. {
  19898. name: "Huge",
  19899. height: math.unit(30, "feet")
  19900. },
  19901. {
  19902. name: "Macro",
  19903. height: math.unit(250, "feet")
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19909. {
  19910. sideFront: {
  19911. height: math.unit(5 + 2 / 12, "feet"),
  19912. weight: math.unit(120, "lb"),
  19913. name: "Front Side",
  19914. image: {
  19915. source: "./media/characters/roxi/side-front.svg",
  19916. extra: 2924 / 2717,
  19917. bottom: 0.08
  19918. }
  19919. },
  19920. sideBack: {
  19921. height: math.unit(5 + 2 / 12, "feet"),
  19922. weight: math.unit(120, "lb"),
  19923. name: "Back Side",
  19924. image: {
  19925. source: "./media/characters/roxi/side-back.svg",
  19926. extra: 2904 / 2693,
  19927. bottom: 0.06
  19928. }
  19929. },
  19930. front: {
  19931. height: math.unit(5 + 2 / 12, "feet"),
  19932. weight: math.unit(120, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/roxi/front.svg",
  19936. extra: 2028 / 1907,
  19937. bottom: 0.01
  19938. }
  19939. },
  19940. frontAlt: {
  19941. height: math.unit(5 + 2 / 12, "feet"),
  19942. weight: math.unit(120, "lb"),
  19943. name: "Front (Alt)",
  19944. image: {
  19945. source: "./media/characters/roxi/front-alt.svg",
  19946. extra: 1828 / 1798,
  19947. bottom: 0.01
  19948. }
  19949. },
  19950. sitting: {
  19951. height: math.unit(2.8, "feet"),
  19952. weight: math.unit(120, "lb"),
  19953. name: "Sitting",
  19954. image: {
  19955. source: "./media/characters/roxi/sitting.svg",
  19956. extra: 2660 / 2462,
  19957. bottom: 0.1
  19958. }
  19959. },
  19960. },
  19961. [
  19962. {
  19963. name: "Normal",
  19964. height: math.unit(5 + 2 / 12, "feet"),
  19965. default: true
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19971. {
  19972. side: {
  19973. height: math.unit(55, "feet"),
  19974. weight: math.unit(153, "tons"),
  19975. name: "Side",
  19976. image: {
  19977. source: "./media/characters/shadow/side.svg",
  19978. extra: 701 / 628,
  19979. bottom: 0.02
  19980. }
  19981. },
  19982. flying: {
  19983. height: math.unit(145, "feet"),
  19984. weight: math.unit(153, "tons"),
  19985. name: "Flying",
  19986. image: {
  19987. source: "./media/characters/shadow/flying.svg"
  19988. }
  19989. },
  19990. },
  19991. [
  19992. {
  19993. name: "Normal",
  19994. height: math.unit(55, "feet"),
  19995. default: true
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(6, "feet"),
  20004. weight: math.unit(200, "lb"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/marcie/front.svg",
  20008. extra: 960 / 876,
  20009. bottom: 58 / 1017.87
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Macro",
  20016. height: math.unit(1, "mile"),
  20017. default: true
  20018. },
  20019. ]
  20020. ))
  20021. characterMakers.push(() => makeCharacter(
  20022. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20023. {
  20024. front: {
  20025. height: math.unit(7, "feet"),
  20026. weight: math.unit(200, "lb"),
  20027. name: "Front",
  20028. image: {
  20029. source: "./media/characters/kachina/front.svg",
  20030. extra: 1290.68 / 1119,
  20031. bottom: 36.5 / 1327.18
  20032. }
  20033. },
  20034. },
  20035. [
  20036. {
  20037. name: "Normal",
  20038. height: math.unit(7, "feet"),
  20039. default: true
  20040. },
  20041. ]
  20042. ))
  20043. characterMakers.push(() => makeCharacter(
  20044. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20045. {
  20046. looking: {
  20047. height: math.unit(2, "meters"),
  20048. weight: math.unit(300, "kg"),
  20049. name: "Looking",
  20050. image: {
  20051. source: "./media/characters/kash/looking.svg",
  20052. extra: 474 / 344,
  20053. bottom: 0.03
  20054. }
  20055. },
  20056. side: {
  20057. height: math.unit(2, "meters"),
  20058. weight: math.unit(300, "kg"),
  20059. name: "Side",
  20060. image: {
  20061. source: "./media/characters/kash/side.svg",
  20062. extra: 302 / 251,
  20063. bottom: 0.03
  20064. }
  20065. },
  20066. front: {
  20067. height: math.unit(2, "meters"),
  20068. weight: math.unit(300, "kg"),
  20069. name: "Front",
  20070. image: {
  20071. source: "./media/characters/kash/front.svg",
  20072. extra: 495 / 360,
  20073. bottom: 0.015
  20074. }
  20075. },
  20076. },
  20077. [
  20078. {
  20079. name: "Normal",
  20080. height: math.unit(2, "meters"),
  20081. default: true
  20082. },
  20083. {
  20084. name: "Big",
  20085. height: math.unit(3, "meters")
  20086. },
  20087. {
  20088. name: "Large",
  20089. height: math.unit(5, "meters")
  20090. },
  20091. ]
  20092. ))
  20093. characterMakers.push(() => makeCharacter(
  20094. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20095. {
  20096. feeding: {
  20097. height: math.unit(6.7, "feet"),
  20098. weight: math.unit(350, "lb"),
  20099. name: "Feeding",
  20100. image: {
  20101. source: "./media/characters/lalim/feeding.svg",
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(6.7, "feet"),
  20109. default: true
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20115. {
  20116. front: {
  20117. height: math.unit(9.5, "feet"),
  20118. weight: math.unit(600, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/de'vout/front.svg",
  20122. extra: 1443 / 1328,
  20123. bottom: 0.025
  20124. }
  20125. },
  20126. back: {
  20127. height: math.unit(9.5, "feet"),
  20128. weight: math.unit(600, "lb"),
  20129. name: "Back",
  20130. image: {
  20131. source: "./media/characters/de'vout/back.svg",
  20132. extra: 1443 / 1328
  20133. }
  20134. },
  20135. frontDressed: {
  20136. height: math.unit(9.5, "feet"),
  20137. weight: math.unit(600, "lb"),
  20138. name: "Front (Dressed",
  20139. image: {
  20140. source: "./media/characters/de'vout/front-dressed.svg",
  20141. extra: 1443 / 1328,
  20142. bottom: 0.025
  20143. }
  20144. },
  20145. backDressed: {
  20146. height: math.unit(9.5, "feet"),
  20147. weight: math.unit(600, "lb"),
  20148. name: "Back (Dressed",
  20149. image: {
  20150. source: "./media/characters/de'vout/back-dressed.svg",
  20151. extra: 1443 / 1328
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(9.5, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20165. {
  20166. front: {
  20167. height: math.unit(8, "feet"),
  20168. weight: math.unit(225, "lb"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/talana/front.svg",
  20172. extra: 1410 / 1300,
  20173. bottom: 0.015
  20174. }
  20175. },
  20176. frontDressed: {
  20177. height: math.unit(8, "feet"),
  20178. weight: math.unit(225, "lb"),
  20179. name: "Front (Dressed",
  20180. image: {
  20181. source: "./media/characters/talana/front-dressed.svg",
  20182. extra: 1410 / 1300,
  20183. bottom: 0.015
  20184. }
  20185. },
  20186. },
  20187. [
  20188. {
  20189. name: "Normal",
  20190. height: math.unit(8, "feet"),
  20191. default: true
  20192. },
  20193. ]
  20194. ))
  20195. characterMakers.push(() => makeCharacter(
  20196. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20197. {
  20198. side: {
  20199. height: math.unit(7.2, "feet"),
  20200. weight: math.unit(150, "lb"),
  20201. name: "Side",
  20202. image: {
  20203. source: "./media/characters/xeauvok/side.svg",
  20204. extra: 1975 / 1523,
  20205. bottom: 0.07
  20206. }
  20207. },
  20208. },
  20209. [
  20210. {
  20211. name: "Normal",
  20212. height: math.unit(7.2, "feet"),
  20213. default: true
  20214. },
  20215. ]
  20216. ))
  20217. characterMakers.push(() => makeCharacter(
  20218. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20219. {
  20220. side: {
  20221. height: math.unit(4, "meters"),
  20222. weight: math.unit(2200, "kg"),
  20223. name: "Side",
  20224. image: {
  20225. source: "./media/characters/zara/side.svg",
  20226. extra: 765/744,
  20227. bottom: 156/921
  20228. }
  20229. },
  20230. },
  20231. [
  20232. {
  20233. name: "Normal",
  20234. height: math.unit(4, "meters"),
  20235. default: true
  20236. },
  20237. ]
  20238. ))
  20239. characterMakers.push(() => makeCharacter(
  20240. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20241. {
  20242. side: {
  20243. height: math.unit(6, "feet"),
  20244. weight: math.unit(150, "lb"),
  20245. name: "Side",
  20246. image: {
  20247. source: "./media/characters/richard-dragon/side.svg",
  20248. extra: 845 / 340,
  20249. bottom: 0.017
  20250. }
  20251. },
  20252. maw: {
  20253. height: math.unit(2.97, "feet"),
  20254. name: "Maw",
  20255. image: {
  20256. source: "./media/characters/richard-dragon/maw.svg"
  20257. }
  20258. },
  20259. },
  20260. [
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20265. {
  20266. front: {
  20267. height: math.unit(4, "feet"),
  20268. weight: math.unit(100, "lb"),
  20269. name: "Front",
  20270. image: {
  20271. source: "./media/characters/richard-smeargle/front.svg",
  20272. extra: 2952 / 2820,
  20273. bottom: 0.028
  20274. }
  20275. },
  20276. },
  20277. [
  20278. {
  20279. name: "Normal",
  20280. height: math.unit(4, "feet"),
  20281. default: true
  20282. },
  20283. {
  20284. name: "Dynamax",
  20285. height: math.unit(20, "meters")
  20286. },
  20287. ]
  20288. ))
  20289. characterMakers.push(() => makeCharacter(
  20290. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20291. {
  20292. front: {
  20293. height: math.unit(6, "feet"),
  20294. weight: math.unit(110, "lb"),
  20295. name: "Front",
  20296. image: {
  20297. source: "./media/characters/klay/front.svg",
  20298. extra: 962 / 883,
  20299. bottom: 0.04
  20300. }
  20301. },
  20302. back: {
  20303. height: math.unit(6, "feet"),
  20304. weight: math.unit(110, "lb"),
  20305. name: "Back",
  20306. image: {
  20307. source: "./media/characters/klay/back.svg",
  20308. extra: 962 / 883
  20309. }
  20310. },
  20311. beans: {
  20312. height: math.unit(1.15, "feet"),
  20313. name: "Beans",
  20314. image: {
  20315. source: "./media/characters/klay/beans.svg"
  20316. }
  20317. },
  20318. },
  20319. [
  20320. {
  20321. name: "Micro",
  20322. height: math.unit(6, "inches")
  20323. },
  20324. {
  20325. name: "Mini",
  20326. height: math.unit(3, "feet")
  20327. },
  20328. {
  20329. name: "Normal",
  20330. height: math.unit(6, "feet"),
  20331. default: true
  20332. },
  20333. {
  20334. name: "Big",
  20335. height: math.unit(25, "feet")
  20336. },
  20337. {
  20338. name: "Macro",
  20339. height: math.unit(100, "feet")
  20340. },
  20341. {
  20342. name: "Megamacro",
  20343. height: math.unit(400, "feet")
  20344. },
  20345. ]
  20346. ))
  20347. characterMakers.push(() => makeCharacter(
  20348. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20349. {
  20350. front: {
  20351. height: math.unit(6, "feet"),
  20352. weight: math.unit(160, "lb"),
  20353. name: "Front",
  20354. image: {
  20355. source: "./media/characters/marcus/front.svg",
  20356. extra: 734 / 676,
  20357. bottom: 0.03
  20358. }
  20359. },
  20360. },
  20361. [
  20362. {
  20363. name: "Little",
  20364. height: math.unit(6, "feet")
  20365. },
  20366. {
  20367. name: "Normal",
  20368. height: math.unit(110, "feet"),
  20369. default: true
  20370. },
  20371. {
  20372. name: "Macro",
  20373. height: math.unit(250, "feet")
  20374. },
  20375. {
  20376. name: "Megamacro",
  20377. height: math.unit(1000, "feet")
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20383. {
  20384. front: {
  20385. height: math.unit(7, "feet"),
  20386. weight: math.unit(275, "lb"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/claude-delroute/front.svg",
  20390. extra: 902/827,
  20391. bottom: 26/928
  20392. }
  20393. },
  20394. side: {
  20395. height: math.unit(7, "feet"),
  20396. weight: math.unit(275, "lb"),
  20397. name: "Side",
  20398. image: {
  20399. source: "./media/characters/claude-delroute/side.svg",
  20400. extra: 908/853,
  20401. bottom: 16/924
  20402. }
  20403. },
  20404. back: {
  20405. height: math.unit(7, "feet"),
  20406. weight: math.unit(275, "lb"),
  20407. name: "Back",
  20408. image: {
  20409. source: "./media/characters/claude-delroute/back.svg",
  20410. extra: 911/829,
  20411. bottom: 18/929
  20412. }
  20413. },
  20414. maw: {
  20415. height: math.unit(0.6407, "meters"),
  20416. name: "Maw",
  20417. image: {
  20418. source: "./media/characters/claude-delroute/maw.svg"
  20419. }
  20420. },
  20421. },
  20422. [
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(7, "feet"),
  20426. default: true
  20427. },
  20428. {
  20429. name: "Lorge",
  20430. height: math.unit(20, "feet")
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20436. {
  20437. front: {
  20438. height: math.unit(8 + 4 / 12, "feet"),
  20439. weight: math.unit(600, "lb"),
  20440. name: "Front",
  20441. image: {
  20442. source: "./media/characters/dragonien/front.svg",
  20443. extra: 100 / 94,
  20444. bottom: 3.3 / 103.3445
  20445. }
  20446. },
  20447. back: {
  20448. height: math.unit(8 + 4 / 12, "feet"),
  20449. weight: math.unit(600, "lb"),
  20450. name: "Back",
  20451. image: {
  20452. source: "./media/characters/dragonien/back.svg",
  20453. extra: 776 / 746,
  20454. bottom: 6.4 / 782.0616
  20455. }
  20456. },
  20457. foot: {
  20458. height: math.unit(1.54, "feet"),
  20459. name: "Foot",
  20460. image: {
  20461. source: "./media/characters/dragonien/foot.svg",
  20462. }
  20463. },
  20464. },
  20465. [
  20466. {
  20467. name: "Normal",
  20468. height: math.unit(8 + 4 / 12, "feet"),
  20469. default: true
  20470. },
  20471. {
  20472. name: "Macro",
  20473. height: math.unit(200, "feet")
  20474. },
  20475. {
  20476. name: "Megamacro",
  20477. height: math.unit(1, "mile")
  20478. },
  20479. {
  20480. name: "Gigamacro",
  20481. height: math.unit(1000, "miles")
  20482. },
  20483. ]
  20484. ))
  20485. characterMakers.push(() => makeCharacter(
  20486. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20487. {
  20488. front: {
  20489. height: math.unit(5 + 2 / 12, "feet"),
  20490. weight: math.unit(110, "lb"),
  20491. name: "Front",
  20492. image: {
  20493. source: "./media/characters/desta/front.svg",
  20494. extra: 767 / 726,
  20495. bottom: 11.7 / 779
  20496. }
  20497. },
  20498. back: {
  20499. height: math.unit(5 + 2 / 12, "feet"),
  20500. weight: math.unit(110, "lb"),
  20501. name: "Back",
  20502. image: {
  20503. source: "./media/characters/desta/back.svg",
  20504. extra: 777 / 728,
  20505. bottom: 6 / 784
  20506. }
  20507. },
  20508. frontAlt: {
  20509. height: math.unit(5 + 2 / 12, "feet"),
  20510. weight: math.unit(110, "lb"),
  20511. name: "Front",
  20512. image: {
  20513. source: "./media/characters/desta/front-alt.svg",
  20514. extra: 1482 / 1417
  20515. }
  20516. },
  20517. side: {
  20518. height: math.unit(5 + 2 / 12, "feet"),
  20519. weight: math.unit(110, "lb"),
  20520. name: "Side",
  20521. image: {
  20522. source: "./media/characters/desta/side.svg",
  20523. extra: 2579 / 2491,
  20524. bottom: 0.053
  20525. }
  20526. },
  20527. },
  20528. [
  20529. {
  20530. name: "Micro",
  20531. height: math.unit(6, "inches")
  20532. },
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(5 + 2 / 12, "feet"),
  20536. default: true
  20537. },
  20538. {
  20539. name: "Macro",
  20540. height: math.unit(62, "feet")
  20541. },
  20542. {
  20543. name: "Megamacro",
  20544. height: math.unit(1800, "feet")
  20545. },
  20546. ]
  20547. ))
  20548. characterMakers.push(() => makeCharacter(
  20549. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20550. {
  20551. front: {
  20552. height: math.unit(10, "feet"),
  20553. weight: math.unit(700, "lb"),
  20554. name: "Front",
  20555. image: {
  20556. source: "./media/characters/storm-alystar/front.svg",
  20557. extra: 2112 / 1898,
  20558. bottom: 0.034
  20559. }
  20560. },
  20561. },
  20562. [
  20563. {
  20564. name: "Micro",
  20565. height: math.unit(3.5, "inches")
  20566. },
  20567. {
  20568. name: "Normal",
  20569. height: math.unit(10, "feet"),
  20570. default: true
  20571. },
  20572. {
  20573. name: "Macro",
  20574. height: math.unit(400, "feet")
  20575. },
  20576. {
  20577. name: "Deific",
  20578. height: math.unit(60, "miles")
  20579. },
  20580. ]
  20581. ))
  20582. characterMakers.push(() => makeCharacter(
  20583. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20584. {
  20585. front: {
  20586. height: math.unit(2.35, "meters"),
  20587. weight: math.unit(119, "kg"),
  20588. name: "Front",
  20589. image: {
  20590. source: "./media/characters/ilia/front.svg",
  20591. extra: 1285 / 1255,
  20592. bottom: 0.06
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(2.35, "meters")
  20600. },
  20601. {
  20602. name: "Macro",
  20603. height: math.unit(140, "meters"),
  20604. default: true
  20605. },
  20606. {
  20607. name: "Megamacro",
  20608. height: math.unit(100, "miles")
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20614. {
  20615. front: {
  20616. height: math.unit(6 + 5 / 12, "feet"),
  20617. weight: math.unit(190, "lb"),
  20618. name: "Front",
  20619. image: {
  20620. source: "./media/characters/kingdead/front.svg",
  20621. extra: 1228 / 1177
  20622. }
  20623. },
  20624. },
  20625. [
  20626. {
  20627. name: "Micro",
  20628. height: math.unit(7, "inches")
  20629. },
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(6 + 5 / 12, "feet")
  20633. },
  20634. {
  20635. name: "Macro",
  20636. height: math.unit(150, "feet"),
  20637. default: true
  20638. },
  20639. {
  20640. name: "Megamacro",
  20641. height: math.unit(200, "miles")
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20647. {
  20648. front: {
  20649. height: math.unit(8, "feet"),
  20650. weight: math.unit(600, "lb"),
  20651. name: "Front",
  20652. image: {
  20653. source: "./media/characters/kyrehx/front.svg",
  20654. extra: 1195 / 1095,
  20655. bottom: 0.034
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Micro",
  20662. height: math.unit(2, "inches")
  20663. },
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(8, "feet"),
  20667. default: true
  20668. },
  20669. {
  20670. name: "Macro",
  20671. height: math.unit(255, "feet")
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20677. {
  20678. front: {
  20679. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20680. weight: math.unit(184, "lb"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/xang/front.svg",
  20684. extra: 845 / 755
  20685. }
  20686. },
  20687. },
  20688. [
  20689. {
  20690. name: "Normal",
  20691. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20692. default: true
  20693. },
  20694. {
  20695. name: "Macro",
  20696. height: math.unit(0.935 * 146, "feet")
  20697. },
  20698. {
  20699. name: "Megamacro",
  20700. height: math.unit(0.935 * 3, "miles")
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20706. {
  20707. frontDressed: {
  20708. height: math.unit(5 + 7 / 12, "feet"),
  20709. weight: math.unit(140, "lb"),
  20710. name: "Front (Dressed)",
  20711. image: {
  20712. source: "./media/characters/doc-weardno/front-dressed.svg",
  20713. extra: 263 / 234
  20714. }
  20715. },
  20716. backDressed: {
  20717. height: math.unit(5 + 7 / 12, "feet"),
  20718. weight: math.unit(140, "lb"),
  20719. name: "Back (Dressed)",
  20720. image: {
  20721. source: "./media/characters/doc-weardno/back-dressed.svg",
  20722. extra: 266 / 238
  20723. }
  20724. },
  20725. front: {
  20726. height: math.unit(5 + 7 / 12, "feet"),
  20727. weight: math.unit(140, "lb"),
  20728. name: "Front",
  20729. image: {
  20730. source: "./media/characters/doc-weardno/front.svg",
  20731. extra: 254 / 233
  20732. }
  20733. },
  20734. },
  20735. [
  20736. {
  20737. name: "Micro",
  20738. height: math.unit(3, "inches")
  20739. },
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(5 + 7 / 12, "feet"),
  20743. default: true
  20744. },
  20745. {
  20746. name: "Macro",
  20747. height: math.unit(25, "feet")
  20748. },
  20749. {
  20750. name: "Megamacro",
  20751. height: math.unit(2, "miles")
  20752. },
  20753. ]
  20754. ))
  20755. characterMakers.push(() => makeCharacter(
  20756. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20757. {
  20758. front: {
  20759. height: math.unit(6 + 2 / 12, "feet"),
  20760. weight: math.unit(153, "lb"),
  20761. name: "Front",
  20762. image: {
  20763. source: "./media/characters/seth-whilst/front.svg",
  20764. bottom: 0.07
  20765. }
  20766. },
  20767. },
  20768. [
  20769. {
  20770. name: "Micro",
  20771. height: math.unit(5, "inches")
  20772. },
  20773. {
  20774. name: "Normal",
  20775. height: math.unit(6 + 2 / 12, "feet"),
  20776. default: true
  20777. },
  20778. ]
  20779. ))
  20780. characterMakers.push(() => makeCharacter(
  20781. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20782. {
  20783. front: {
  20784. height: math.unit(3, "inches"),
  20785. weight: math.unit(8, "grams"),
  20786. name: "Front",
  20787. image: {
  20788. source: "./media/characters/pocket-jabari/front.svg",
  20789. extra: 1024 / 974,
  20790. bottom: 0.039
  20791. }
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Minimicro",
  20797. height: math.unit(8, "mm")
  20798. },
  20799. {
  20800. name: "Micro",
  20801. height: math.unit(3, "inches"),
  20802. default: true
  20803. },
  20804. {
  20805. name: "Normal",
  20806. height: math.unit(3, "feet")
  20807. },
  20808. ]
  20809. ))
  20810. characterMakers.push(() => makeCharacter(
  20811. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20812. {
  20813. frontDressed: {
  20814. height: math.unit(15, "feet"),
  20815. weight: math.unit(3280, "lb"),
  20816. name: "Front (Dressed)",
  20817. image: {
  20818. source: "./media/characters/sapphy/front-dressed.svg",
  20819. extra: 1951/1654,
  20820. bottom: 194/2145
  20821. },
  20822. form: "anthro",
  20823. default: true
  20824. },
  20825. backDressed: {
  20826. height: math.unit(15, "feet"),
  20827. weight: math.unit(3280, "lb"),
  20828. name: "Back (Dressed)",
  20829. image: {
  20830. source: "./media/characters/sapphy/back-dressed.svg",
  20831. extra: 2058/1918,
  20832. bottom: 125/2183
  20833. },
  20834. form: "anthro"
  20835. },
  20836. frontNude: {
  20837. height: math.unit(15, "feet"),
  20838. weight: math.unit(3280, "lb"),
  20839. name: "Front (Nude)",
  20840. image: {
  20841. source: "./media/characters/sapphy/front-nude.svg",
  20842. extra: 1951/1654,
  20843. bottom: 194/2145
  20844. },
  20845. form: "anthro"
  20846. },
  20847. backNude: {
  20848. height: math.unit(15, "feet"),
  20849. weight: math.unit(3280, "lb"),
  20850. name: "Back (Nude)",
  20851. image: {
  20852. source: "./media/characters/sapphy/back-nude.svg",
  20853. extra: 2058/1918,
  20854. bottom: 125/2183
  20855. },
  20856. form: "anthro"
  20857. },
  20858. full: {
  20859. height: math.unit(15, "feet"),
  20860. weight: math.unit(3280, "lb"),
  20861. name: "Full",
  20862. image: {
  20863. source: "./media/characters/sapphy/full.svg",
  20864. extra: 1396/1317,
  20865. bottom: 44/1440
  20866. },
  20867. form: "anthro"
  20868. },
  20869. dick: {
  20870. height: math.unit(3.8, "feet"),
  20871. name: "Dick",
  20872. image: {
  20873. source: "./media/characters/sapphy/dick.svg"
  20874. },
  20875. form: "anthro"
  20876. },
  20877. feral: {
  20878. height: math.unit(35, "feet"),
  20879. weight: math.unit(160, "tons"),
  20880. name: "Feral",
  20881. image: {
  20882. source: "./media/characters/sapphy/feral.svg",
  20883. extra: 1050/573,
  20884. bottom: 60/1110
  20885. },
  20886. form: "feral",
  20887. default: true
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Normal",
  20893. height: math.unit(15, "feet"),
  20894. form: "anthro"
  20895. },
  20896. {
  20897. name: "Casual Macro",
  20898. height: math.unit(120, "feet"),
  20899. form: "anthro"
  20900. },
  20901. {
  20902. name: "Macro",
  20903. height: math.unit(2150, "feet"),
  20904. default: true,
  20905. form: "anthro"
  20906. },
  20907. {
  20908. name: "Megamacro",
  20909. height: math.unit(8, "miles"),
  20910. form: "anthro"
  20911. },
  20912. {
  20913. name: "Galaxy Mom",
  20914. height: math.unit(6, "megalightyears"),
  20915. form: "anthro"
  20916. },
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(35, "feet"),
  20920. form: "feral",
  20921. default: true
  20922. },
  20923. {
  20924. name: "Macro",
  20925. height: math.unit(300, "feet"),
  20926. form: "feral"
  20927. },
  20928. {
  20929. name: "Galaxy Mom",
  20930. height: math.unit(10, "megalightyears"),
  20931. form: "feral"
  20932. },
  20933. ],
  20934. {
  20935. "anthro": {
  20936. name: "Anthro",
  20937. default: true
  20938. },
  20939. "feral": {
  20940. name: "Feral"
  20941. }
  20942. }
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20946. {
  20947. hyenaFront: {
  20948. height: math.unit(6, "feet"),
  20949. weight: math.unit(190, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/kiro/hyena-front.svg",
  20953. extra: 927/839,
  20954. bottom: 91/1018
  20955. },
  20956. form: "hyena",
  20957. default: true
  20958. },
  20959. front: {
  20960. height: math.unit(6, "feet"),
  20961. weight: math.unit(170, "lb"),
  20962. name: "Front",
  20963. image: {
  20964. source: "./media/characters/kiro/front.svg",
  20965. extra: 1064 / 1012,
  20966. bottom: 0.052
  20967. },
  20968. form: "folf",
  20969. default: true
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Micro",
  20975. height: math.unit(6, "inches"),
  20976. form: "folf"
  20977. },
  20978. {
  20979. name: "Normal",
  20980. height: math.unit(6, "feet"),
  20981. form: "folf",
  20982. default: true
  20983. },
  20984. {
  20985. name: "Macro",
  20986. height: math.unit(72, "feet"),
  20987. form: "folf"
  20988. },
  20989. {
  20990. name: "Micro",
  20991. height: math.unit(6, "inches"),
  20992. form: "hyena"
  20993. },
  20994. {
  20995. name: "Normal",
  20996. height: math.unit(6, "feet"),
  20997. form: "hyena",
  20998. default: true
  20999. },
  21000. {
  21001. name: "Macro",
  21002. height: math.unit(72, "feet"),
  21003. form: "hyena"
  21004. },
  21005. ],
  21006. {
  21007. "hyena": {
  21008. name: "Hyena",
  21009. default: true
  21010. },
  21011. "folf": {
  21012. name: "Folf",
  21013. },
  21014. }
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21018. {
  21019. front: {
  21020. height: math.unit(5 + 9 / 12, "feet"),
  21021. weight: math.unit(175, "lb"),
  21022. name: "Front",
  21023. image: {
  21024. source: "./media/characters/irishfox/front.svg",
  21025. extra: 1912 / 1680,
  21026. bottom: 0.02
  21027. }
  21028. },
  21029. },
  21030. [
  21031. {
  21032. name: "Nano",
  21033. height: math.unit(1, "mm")
  21034. },
  21035. {
  21036. name: "Micro",
  21037. height: math.unit(2, "inches")
  21038. },
  21039. {
  21040. name: "Normal",
  21041. height: math.unit(5 + 9 / 12, "feet"),
  21042. default: true
  21043. },
  21044. {
  21045. name: "Macro",
  21046. height: math.unit(45, "feet")
  21047. },
  21048. ]
  21049. ))
  21050. characterMakers.push(() => makeCharacter(
  21051. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21052. {
  21053. front: {
  21054. height: math.unit(6 + 1 / 12, "feet"),
  21055. weight: math.unit(75, "lb"),
  21056. name: "Front",
  21057. image: {
  21058. source: "./media/characters/aronai-sieyes/front.svg",
  21059. extra: 1532/1450,
  21060. bottom: 42/1574
  21061. }
  21062. },
  21063. side: {
  21064. height: math.unit(6 + 1 / 12, "feet"),
  21065. weight: math.unit(75, "lb"),
  21066. name: "Side",
  21067. image: {
  21068. source: "./media/characters/aronai-sieyes/side.svg",
  21069. extra: 1422/1365,
  21070. bottom: 148/1570
  21071. }
  21072. },
  21073. back: {
  21074. height: math.unit(6 + 1 / 12, "feet"),
  21075. weight: math.unit(75, "lb"),
  21076. name: "Back",
  21077. image: {
  21078. source: "./media/characters/aronai-sieyes/back.svg",
  21079. extra: 1526/1464,
  21080. bottom: 51/1577
  21081. }
  21082. },
  21083. dressed: {
  21084. height: math.unit(6 + 1 / 12, "feet"),
  21085. weight: math.unit(75, "lb"),
  21086. name: "Dressed",
  21087. image: {
  21088. source: "./media/characters/aronai-sieyes/dressed.svg",
  21089. extra: 1559/1483,
  21090. bottom: 39/1598
  21091. }
  21092. },
  21093. slit: {
  21094. height: math.unit(1.3, "feet"),
  21095. name: "Slit",
  21096. image: {
  21097. source: "./media/characters/aronai-sieyes/slit.svg"
  21098. }
  21099. },
  21100. slitSpread: {
  21101. height: math.unit(0.9, "feet"),
  21102. name: "Slit (Spread)",
  21103. image: {
  21104. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21105. }
  21106. },
  21107. rump: {
  21108. height: math.unit(1.3, "feet"),
  21109. name: "Rump",
  21110. image: {
  21111. source: "./media/characters/aronai-sieyes/rump.svg"
  21112. }
  21113. },
  21114. maw: {
  21115. height: math.unit(1.25, "feet"),
  21116. name: "Maw",
  21117. image: {
  21118. source: "./media/characters/aronai-sieyes/maw.svg"
  21119. }
  21120. },
  21121. feral: {
  21122. height: math.unit(18, "feet"),
  21123. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21124. name: "Feral",
  21125. image: {
  21126. source: "./media/characters/aronai-sieyes/feral.svg",
  21127. extra: 1530 / 1240,
  21128. bottom: 0.035
  21129. }
  21130. },
  21131. },
  21132. [
  21133. {
  21134. name: "Micro",
  21135. height: math.unit(2, "inches")
  21136. },
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(6 + 1 / 12, "feet"),
  21140. default: true
  21141. }
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(12, "feet"),
  21149. weight: math.unit(410, "kg"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/xuna/front.svg",
  21153. extra: 2184 / 1980
  21154. }
  21155. },
  21156. side: {
  21157. height: math.unit(12, "feet"),
  21158. weight: math.unit(410, "kg"),
  21159. name: "Side",
  21160. image: {
  21161. source: "./media/characters/xuna/side.svg",
  21162. extra: 2184 / 1980
  21163. }
  21164. },
  21165. back: {
  21166. height: math.unit(12, "feet"),
  21167. weight: math.unit(410, "kg"),
  21168. name: "Back",
  21169. image: {
  21170. source: "./media/characters/xuna/back.svg",
  21171. extra: 2184 / 1980
  21172. }
  21173. },
  21174. },
  21175. [
  21176. {
  21177. name: "Nano glow",
  21178. height: math.unit(10, "nm")
  21179. },
  21180. {
  21181. name: "Micro floof",
  21182. height: math.unit(0.3, "m")
  21183. },
  21184. {
  21185. name: "Huggable softy boi",
  21186. height: math.unit(3.6576, "m"),
  21187. default: true
  21188. },
  21189. {
  21190. name: "Admirable floof",
  21191. height: math.unit(80, "meters")
  21192. },
  21193. {
  21194. name: "Gentle macro",
  21195. height: math.unit(300, "meters")
  21196. },
  21197. {
  21198. name: "Very careful floof",
  21199. height: math.unit(3200, "meters")
  21200. },
  21201. {
  21202. name: "The mega floof",
  21203. height: math.unit(36000, "meters")
  21204. },
  21205. {
  21206. name: "Giga-fur-Wicker",
  21207. height: math.unit(4800000, "meters")
  21208. },
  21209. {
  21210. name: "Licky world",
  21211. height: math.unit(20000000, "meters")
  21212. },
  21213. {
  21214. name: "Floofy cyan sun",
  21215. height: math.unit(1500000000, "meters")
  21216. },
  21217. {
  21218. name: "Milky Wicker",
  21219. height: math.unit(1000000000000000000000, "meters")
  21220. },
  21221. {
  21222. name: "The observing Wicker",
  21223. height: math.unit(999999999999999999999999999, "meters")
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21229. {
  21230. front: {
  21231. height: math.unit(5 + 9 / 12, "feet"),
  21232. weight: math.unit(150, "lb"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/arokha-sieyes/front.svg",
  21236. extra: 1425 / 1284,
  21237. bottom: 0.05
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(5 + 9 / 12, "feet")
  21245. },
  21246. {
  21247. name: "Macro",
  21248. height: math.unit(30, "meters"),
  21249. default: true
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21255. {
  21256. front: {
  21257. height: math.unit(6, "feet"),
  21258. weight: math.unit(180, "lb"),
  21259. name: "Front",
  21260. image: {
  21261. source: "./media/characters/arokh-sieyes/front.svg",
  21262. extra: 1830 / 1769,
  21263. bottom: 0.01
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(6, "feet")
  21271. },
  21272. {
  21273. name: "Macro",
  21274. height: math.unit(30, "meters"),
  21275. default: true
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21281. {
  21282. side: {
  21283. height: math.unit(13 + 1 / 12, "feet"),
  21284. weight: math.unit(8.5, "tonnes"),
  21285. preyCapacity: math.unit(36, "people"),
  21286. name: "Side",
  21287. image: {
  21288. source: "./media/characters/goldeneye/side.svg",
  21289. extra: 1139/741,
  21290. bottom: 98/1237
  21291. }
  21292. },
  21293. front: {
  21294. height: math.unit(5.1, "feet"),
  21295. weight: math.unit(8.5, "tonnes"),
  21296. preyCapacity: math.unit(36, "people"),
  21297. name: "Front",
  21298. image: {
  21299. source: "./media/characters/goldeneye/front.svg",
  21300. extra: 635/365,
  21301. bottom: 598/1233
  21302. }
  21303. },
  21304. maw: {
  21305. height: math.unit(6.6, "feet"),
  21306. name: "Maw",
  21307. image: {
  21308. source: "./media/characters/goldeneye/maw.svg"
  21309. }
  21310. },
  21311. headFront: {
  21312. height: math.unit(8, "feet"),
  21313. name: "Head (Front)",
  21314. image: {
  21315. source: "./media/characters/goldeneye/head-front.svg"
  21316. }
  21317. },
  21318. headSide: {
  21319. height: math.unit(6, "feet"),
  21320. name: "Head (Side)",
  21321. image: {
  21322. source: "./media/characters/goldeneye/head-side.svg"
  21323. }
  21324. },
  21325. headBack: {
  21326. height: math.unit(8, "feet"),
  21327. name: "Head (Back)",
  21328. image: {
  21329. source: "./media/characters/goldeneye/head-back.svg"
  21330. }
  21331. },
  21332. paw: {
  21333. height: math.unit(3.4, "feet"),
  21334. name: "Paw",
  21335. image: {
  21336. source: "./media/characters/goldeneye/paw.svg"
  21337. }
  21338. },
  21339. toering: {
  21340. height: math.unit(0.45, "feet"),
  21341. name: "Toering",
  21342. image: {
  21343. source: "./media/characters/goldeneye/toering.svg"
  21344. }
  21345. },
  21346. eyes: {
  21347. height: math.unit(0.5, "feet"),
  21348. name: "Eyes",
  21349. image: {
  21350. source: "./media/characters/goldeneye/eyes.svg"
  21351. }
  21352. },
  21353. },
  21354. [
  21355. {
  21356. name: "Normal",
  21357. height: math.unit(13 + 1 / 12, "feet"),
  21358. default: true
  21359. },
  21360. ]
  21361. ))
  21362. characterMakers.push(() => makeCharacter(
  21363. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21364. {
  21365. front: {
  21366. height: math.unit(6 + 1 / 12, "feet"),
  21367. weight: math.unit(210, "lb"),
  21368. name: "Front",
  21369. image: {
  21370. source: "./media/characters/leonardo-lycheborne/front.svg",
  21371. extra: 776/723,
  21372. bottom: 34/810
  21373. }
  21374. },
  21375. side: {
  21376. height: math.unit(6 + 1 / 12, "feet"),
  21377. weight: math.unit(210, "lb"),
  21378. name: "Side",
  21379. image: {
  21380. source: "./media/characters/leonardo-lycheborne/side.svg",
  21381. extra: 780/728,
  21382. bottom: 12/792
  21383. }
  21384. },
  21385. back: {
  21386. height: math.unit(6 + 1 / 12, "feet"),
  21387. weight: math.unit(210, "lb"),
  21388. name: "Back",
  21389. image: {
  21390. source: "./media/characters/leonardo-lycheborne/back.svg",
  21391. extra: 775/721,
  21392. bottom: 17/792
  21393. }
  21394. },
  21395. hand: {
  21396. height: math.unit(1.08, "feet"),
  21397. name: "Hand",
  21398. image: {
  21399. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21400. }
  21401. },
  21402. foot: {
  21403. height: math.unit(1.32, "feet"),
  21404. name: "Foot",
  21405. image: {
  21406. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21407. }
  21408. },
  21409. maw: {
  21410. height: math.unit(1, "feet"),
  21411. name: "Maw",
  21412. image: {
  21413. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21414. }
  21415. },
  21416. were: {
  21417. height: math.unit(20, "feet"),
  21418. weight: math.unit(7800, "lb"),
  21419. name: "Were",
  21420. image: {
  21421. source: "./media/characters/leonardo-lycheborne/were.svg",
  21422. extra: 1224/1165,
  21423. bottom: 72/1296
  21424. }
  21425. },
  21426. feral: {
  21427. height: math.unit(7.5, "feet"),
  21428. weight: math.unit(600, "lb"),
  21429. name: "Feral",
  21430. image: {
  21431. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21432. extra: 797/702,
  21433. bottom: 139/936
  21434. }
  21435. },
  21436. taur: {
  21437. height: math.unit(11, "feet"),
  21438. weight: math.unit(3300, "lb"),
  21439. name: "Taur",
  21440. image: {
  21441. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21442. extra: 1271/1197,
  21443. bottom: 47/1318
  21444. }
  21445. },
  21446. barghest: {
  21447. height: math.unit(11, "feet"),
  21448. weight: math.unit(1300, "lb"),
  21449. name: "Barghest",
  21450. image: {
  21451. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21452. extra: 1291/1204,
  21453. bottom: 37/1328
  21454. }
  21455. },
  21456. dick: {
  21457. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21458. name: "Dick",
  21459. image: {
  21460. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21461. }
  21462. },
  21463. dickWere: {
  21464. height: math.unit((20) / 3.8, "feet"),
  21465. name: "Dick (Were)",
  21466. image: {
  21467. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(6 + 1 / 12, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21481. {
  21482. front: {
  21483. height: math.unit(10, "feet"),
  21484. weight: math.unit(350, "lb"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/jet/front.svg",
  21488. extra: 2050 / 1980,
  21489. bottom: 0.013
  21490. }
  21491. },
  21492. back: {
  21493. height: math.unit(10, "feet"),
  21494. weight: math.unit(350, "lb"),
  21495. name: "Back",
  21496. image: {
  21497. source: "./media/characters/jet/back.svg",
  21498. extra: 2050 / 1980,
  21499. bottom: 0.013
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Micro",
  21506. height: math.unit(6, "inches")
  21507. },
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(10, "feet"),
  21511. default: true
  21512. },
  21513. {
  21514. name: "Macro",
  21515. height: math.unit(100, "feet")
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21521. {
  21522. front: {
  21523. height: math.unit(15, "feet"),
  21524. weight: math.unit(2800, "lb"),
  21525. name: "Front",
  21526. image: {
  21527. source: "./media/characters/tanarath/front.svg",
  21528. extra: 2392 / 2220,
  21529. bottom: 0.03
  21530. }
  21531. },
  21532. back: {
  21533. height: math.unit(15, "feet"),
  21534. weight: math.unit(2800, "lb"),
  21535. name: "Back",
  21536. image: {
  21537. source: "./media/characters/tanarath/back.svg",
  21538. extra: 2392 / 2220,
  21539. bottom: 0.03
  21540. }
  21541. },
  21542. },
  21543. [
  21544. {
  21545. name: "Normal",
  21546. height: math.unit(15, "feet"),
  21547. default: true
  21548. },
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21553. {
  21554. front: {
  21555. height: math.unit(7 + 1 / 12, "feet"),
  21556. weight: math.unit(175, "lb"),
  21557. name: "Front",
  21558. image: {
  21559. source: "./media/characters/patty-cattybatty/front.svg",
  21560. extra: 908 / 874,
  21561. bottom: 0.025
  21562. }
  21563. },
  21564. },
  21565. [
  21566. {
  21567. name: "Micro",
  21568. height: math.unit(1, "inch")
  21569. },
  21570. {
  21571. name: "Normal",
  21572. height: math.unit(7 + 1 / 12, "feet")
  21573. },
  21574. {
  21575. name: "Mini Macro",
  21576. height: math.unit(155, "feet")
  21577. },
  21578. {
  21579. name: "Macro",
  21580. height: math.unit(1077, "feet")
  21581. },
  21582. {
  21583. name: "Mega Macro",
  21584. height: math.unit(47650, "feet"),
  21585. default: true
  21586. },
  21587. {
  21588. name: "Giga Macro",
  21589. height: math.unit(440, "miles")
  21590. },
  21591. {
  21592. name: "Tera Macro",
  21593. height: math.unit(8700, "miles")
  21594. },
  21595. {
  21596. name: "Planetary Macro",
  21597. height: math.unit(32700, "miles")
  21598. },
  21599. {
  21600. name: "Solar Macro",
  21601. height: math.unit(550000, "miles")
  21602. },
  21603. {
  21604. name: "Celestial Macro",
  21605. height: math.unit(2.5, "AU")
  21606. },
  21607. ]
  21608. ))
  21609. characterMakers.push(() => makeCharacter(
  21610. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21611. {
  21612. front: {
  21613. height: math.unit(4 + 5 / 12, "feet"),
  21614. weight: math.unit(90, "lb"),
  21615. name: "Front",
  21616. image: {
  21617. source: "./media/characters/cappu/front.svg",
  21618. extra: 1247 / 1152,
  21619. bottom: 0.012
  21620. }
  21621. },
  21622. },
  21623. [
  21624. {
  21625. name: "Normal",
  21626. height: math.unit(4 + 5 / 12, "feet"),
  21627. default: true
  21628. },
  21629. ]
  21630. ))
  21631. characterMakers.push(() => makeCharacter(
  21632. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21633. {
  21634. frontDressed: {
  21635. height: math.unit(70, "cm"),
  21636. weight: math.unit(6, "kg"),
  21637. name: "Front (Dressed)",
  21638. image: {
  21639. source: "./media/characters/sebi/front-dressed.svg",
  21640. extra: 713.5 / 686.5,
  21641. bottom: 0.003
  21642. }
  21643. },
  21644. front: {
  21645. height: math.unit(70, "cm"),
  21646. weight: math.unit(5, "kg"),
  21647. name: "Front",
  21648. image: {
  21649. source: "./media/characters/sebi/front.svg",
  21650. extra: 713.5 / 686.5,
  21651. bottom: 0.003
  21652. }
  21653. }
  21654. },
  21655. [
  21656. {
  21657. name: "Normal",
  21658. height: math.unit(70, "cm"),
  21659. default: true
  21660. },
  21661. {
  21662. name: "Macro",
  21663. height: math.unit(8, "meters")
  21664. },
  21665. ]
  21666. ))
  21667. characterMakers.push(() => makeCharacter(
  21668. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21669. {
  21670. front: {
  21671. height: math.unit(6, "feet"),
  21672. weight: math.unit(150, "lb"),
  21673. name: "Front",
  21674. image: {
  21675. source: "./media/characters/typhek/front.svg",
  21676. extra: 1948 / 1929,
  21677. bottom: 0.025
  21678. }
  21679. },
  21680. side: {
  21681. height: math.unit(6, "feet"),
  21682. weight: math.unit(150, "lb"),
  21683. name: "Side",
  21684. image: {
  21685. source: "./media/characters/typhek/side.svg",
  21686. extra: 2034 / 2010,
  21687. bottom: 0.003
  21688. }
  21689. },
  21690. back: {
  21691. height: math.unit(6, "feet"),
  21692. weight: math.unit(150, "lb"),
  21693. name: "Back",
  21694. image: {
  21695. source: "./media/characters/typhek/back.svg",
  21696. extra: 2005 / 1978,
  21697. bottom: 0.004
  21698. }
  21699. },
  21700. palm: {
  21701. height: math.unit(1.2, "feet"),
  21702. name: "Palm",
  21703. image: {
  21704. source: "./media/characters/typhek/palm.svg"
  21705. }
  21706. },
  21707. fist: {
  21708. height: math.unit(1.1, "feet"),
  21709. name: "Fist",
  21710. image: {
  21711. source: "./media/characters/typhek/fist.svg"
  21712. }
  21713. },
  21714. foot: {
  21715. height: math.unit(1.57, "feet"),
  21716. name: "Foot",
  21717. image: {
  21718. source: "./media/characters/typhek/foot.svg"
  21719. }
  21720. },
  21721. sole: {
  21722. height: math.unit(2.05, "feet"),
  21723. name: "Sole",
  21724. image: {
  21725. source: "./media/characters/typhek/sole.svg"
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Macro",
  21732. height: math.unit(40, "stories"),
  21733. default: true
  21734. },
  21735. {
  21736. name: "Megamacro",
  21737. height: math.unit(1, "mile")
  21738. },
  21739. {
  21740. name: "Gigamacro",
  21741. height: math.unit(4000, "solarradii")
  21742. },
  21743. {
  21744. name: "Universal",
  21745. height: math.unit(1.1, "universes")
  21746. }
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21751. {
  21752. side: {
  21753. height: math.unit(5 + 7 / 12, "feet"),
  21754. weight: math.unit(150, "lb"),
  21755. name: "Side",
  21756. image: {
  21757. source: "./media/characters/kassy/side.svg",
  21758. extra: 1280 / 1225,
  21759. bottom: 0.002
  21760. }
  21761. },
  21762. front: {
  21763. height: math.unit(5 + 7 / 12, "feet"),
  21764. weight: math.unit(150, "lb"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/kassy/front.svg",
  21768. extra: 1280 / 1225,
  21769. bottom: 0.025
  21770. }
  21771. },
  21772. back: {
  21773. height: math.unit(5 + 7 / 12, "feet"),
  21774. weight: math.unit(150, "lb"),
  21775. name: "Back",
  21776. image: {
  21777. source: "./media/characters/kassy/back.svg",
  21778. extra: 1280 / 1225,
  21779. bottom: 0.002
  21780. }
  21781. },
  21782. foot: {
  21783. height: math.unit(1.266, "feet"),
  21784. name: "Foot",
  21785. image: {
  21786. source: "./media/characters/kassy/foot.svg"
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(5 + 7 / 12, "feet")
  21794. },
  21795. {
  21796. name: "Macro",
  21797. height: math.unit(137, "feet"),
  21798. default: true
  21799. },
  21800. {
  21801. name: "Megamacro",
  21802. height: math.unit(1, "mile")
  21803. },
  21804. ]
  21805. ))
  21806. characterMakers.push(() => makeCharacter(
  21807. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21808. {
  21809. front: {
  21810. height: math.unit(6 + 1 / 12, "feet"),
  21811. weight: math.unit(200, "lb"),
  21812. name: "Front",
  21813. image: {
  21814. source: "./media/characters/neil/front.svg",
  21815. extra: 1326 / 1250,
  21816. bottom: 0.023
  21817. }
  21818. },
  21819. },
  21820. [
  21821. {
  21822. name: "Normal",
  21823. height: math.unit(6 + 1 / 12, "feet"),
  21824. default: true
  21825. },
  21826. {
  21827. name: "Macro",
  21828. height: math.unit(200, "feet")
  21829. },
  21830. ]
  21831. ))
  21832. characterMakers.push(() => makeCharacter(
  21833. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21834. {
  21835. front: {
  21836. height: math.unit(5 + 9 / 12, "feet"),
  21837. weight: math.unit(190, "lb"),
  21838. name: "Front",
  21839. image: {
  21840. source: "./media/characters/atticus/front.svg",
  21841. extra: 2934 / 2785,
  21842. bottom: 0.025
  21843. }
  21844. },
  21845. },
  21846. [
  21847. {
  21848. name: "Normal",
  21849. height: math.unit(5 + 9 / 12, "feet"),
  21850. default: true
  21851. },
  21852. {
  21853. name: "Macro",
  21854. height: math.unit(180, "feet")
  21855. },
  21856. ]
  21857. ))
  21858. characterMakers.push(() => makeCharacter(
  21859. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21860. {
  21861. side: {
  21862. height: math.unit(9, "feet"),
  21863. weight: math.unit(650, "lb"),
  21864. name: "Side",
  21865. image: {
  21866. source: "./media/characters/milo/side.svg",
  21867. extra: 2644 / 2310,
  21868. bottom: 0.032
  21869. }
  21870. },
  21871. },
  21872. [
  21873. {
  21874. name: "Normal",
  21875. height: math.unit(9, "feet"),
  21876. default: true
  21877. },
  21878. {
  21879. name: "Macro",
  21880. height: math.unit(300, "feet")
  21881. },
  21882. ]
  21883. ))
  21884. characterMakers.push(() => makeCharacter(
  21885. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21886. {
  21887. side: {
  21888. height: math.unit(8, "meters"),
  21889. weight: math.unit(90000, "kg"),
  21890. name: "Side",
  21891. image: {
  21892. source: "./media/characters/ijzer/side.svg",
  21893. extra: 2756 / 1600,
  21894. bottom: 0.01
  21895. }
  21896. },
  21897. },
  21898. [
  21899. {
  21900. name: "Small",
  21901. height: math.unit(3, "meters")
  21902. },
  21903. {
  21904. name: "Normal",
  21905. height: math.unit(8, "meters"),
  21906. default: true
  21907. },
  21908. {
  21909. name: "Normal+",
  21910. height: math.unit(10, "meters")
  21911. },
  21912. {
  21913. name: "Bigger",
  21914. height: math.unit(24, "meters")
  21915. },
  21916. {
  21917. name: "Huge",
  21918. height: math.unit(80, "meters")
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21924. {
  21925. front: {
  21926. height: math.unit(6 + 2 / 12, "feet"),
  21927. weight: math.unit(153, "lb"),
  21928. name: "Front",
  21929. image: {
  21930. source: "./media/characters/luca-cervicum/front.svg",
  21931. extra: 370 / 327,
  21932. bottom: 0.015
  21933. }
  21934. },
  21935. back: {
  21936. height: math.unit(6 + 2 / 12, "feet"),
  21937. weight: math.unit(153, "lb"),
  21938. name: "Back",
  21939. image: {
  21940. source: "./media/characters/luca-cervicum/back.svg",
  21941. extra: 367 / 333,
  21942. bottom: 0.005
  21943. }
  21944. },
  21945. frontGear: {
  21946. height: math.unit(6 + 2 / 12, "feet"),
  21947. weight: math.unit(173, "lb"),
  21948. name: "Front (Gear)",
  21949. image: {
  21950. source: "./media/characters/luca-cervicum/front-gear.svg",
  21951. extra: 377 / 333,
  21952. bottom: 0.006
  21953. }
  21954. },
  21955. },
  21956. [
  21957. {
  21958. name: "Normal",
  21959. height: math.unit(6 + 2 / 12, "feet"),
  21960. default: true
  21961. },
  21962. ]
  21963. ))
  21964. characterMakers.push(() => makeCharacter(
  21965. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21966. {
  21967. front: {
  21968. height: math.unit(6 + 1 / 12, "feet"),
  21969. weight: math.unit(304, "lb"),
  21970. name: "Front",
  21971. image: {
  21972. source: "./media/characters/oliver/front.svg",
  21973. extra: 157 / 143,
  21974. bottom: 0.08
  21975. }
  21976. },
  21977. },
  21978. [
  21979. {
  21980. name: "Normal",
  21981. height: math.unit(6 + 1 / 12, "feet"),
  21982. default: true
  21983. },
  21984. ]
  21985. ))
  21986. characterMakers.push(() => makeCharacter(
  21987. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21988. {
  21989. front: {
  21990. height: math.unit(5 + 7 / 12, "feet"),
  21991. weight: math.unit(140, "lb"),
  21992. name: "Front",
  21993. image: {
  21994. source: "./media/characters/shane/front.svg",
  21995. extra: 304 / 289,
  21996. bottom: 0.005
  21997. }
  21998. },
  21999. },
  22000. [
  22001. {
  22002. name: "Normal",
  22003. height: math.unit(5 + 7 / 12, "feet"),
  22004. default: true
  22005. },
  22006. ]
  22007. ))
  22008. characterMakers.push(() => makeCharacter(
  22009. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22010. {
  22011. front: {
  22012. height: math.unit(5 + 9 / 12, "feet"),
  22013. weight: math.unit(178, "lb"),
  22014. name: "Front",
  22015. image: {
  22016. source: "./media/characters/shin/front.svg",
  22017. extra: 159 / 151,
  22018. bottom: 0.015
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Normal",
  22025. height: math.unit(5 + 9 / 12, "feet"),
  22026. default: true
  22027. },
  22028. ]
  22029. ))
  22030. characterMakers.push(() => makeCharacter(
  22031. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22032. {
  22033. front: {
  22034. height: math.unit(5 + 10 / 12, "feet"),
  22035. weight: math.unit(168, "lb"),
  22036. name: "Front",
  22037. image: {
  22038. source: "./media/characters/xerxes/front.svg",
  22039. extra: 282 / 260,
  22040. bottom: 0.045
  22041. }
  22042. },
  22043. },
  22044. [
  22045. {
  22046. name: "Normal",
  22047. height: math.unit(5 + 10 / 12, "feet"),
  22048. default: true
  22049. },
  22050. ]
  22051. ))
  22052. characterMakers.push(() => makeCharacter(
  22053. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22054. {
  22055. front: {
  22056. height: math.unit(6 + 7 / 12, "feet"),
  22057. weight: math.unit(208, "lb"),
  22058. name: "Front",
  22059. image: {
  22060. source: "./media/characters/chaska/front.svg",
  22061. extra: 332 / 319,
  22062. bottom: 0.015
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Normal",
  22069. height: math.unit(6 + 7 / 12, "feet"),
  22070. default: true
  22071. },
  22072. ]
  22073. ))
  22074. characterMakers.push(() => makeCharacter(
  22075. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22076. {
  22077. front: {
  22078. height: math.unit(5 + 8 / 12, "feet"),
  22079. weight: math.unit(208, "lb"),
  22080. name: "Front",
  22081. image: {
  22082. source: "./media/characters/enuk/front.svg",
  22083. extra: 437 / 406,
  22084. bottom: 0.02
  22085. }
  22086. },
  22087. },
  22088. [
  22089. {
  22090. name: "Normal",
  22091. height: math.unit(5 + 8 / 12, "feet"),
  22092. default: true
  22093. },
  22094. ]
  22095. ))
  22096. characterMakers.push(() => makeCharacter(
  22097. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22098. {
  22099. front: {
  22100. height: math.unit(5 + 10 / 12, "feet"),
  22101. weight: math.unit(252, "lb"),
  22102. name: "Front",
  22103. image: {
  22104. source: "./media/characters/bruun/front.svg",
  22105. extra: 197 / 187,
  22106. bottom: 0.012
  22107. }
  22108. },
  22109. },
  22110. [
  22111. {
  22112. name: "Normal",
  22113. height: math.unit(5 + 10 / 12, "feet"),
  22114. default: true
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22120. {
  22121. front: {
  22122. height: math.unit(6 + 10 / 12, "feet"),
  22123. weight: math.unit(255, "lb"),
  22124. name: "Front",
  22125. image: {
  22126. source: "./media/characters/alexeev/front.svg",
  22127. extra: 213 / 200,
  22128. bottom: 0.05
  22129. }
  22130. },
  22131. },
  22132. [
  22133. {
  22134. name: "Normal",
  22135. height: math.unit(6 + 10 / 12, "feet"),
  22136. default: true
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22142. {
  22143. front: {
  22144. height: math.unit(2 + 8 / 12, "feet"),
  22145. weight: math.unit(22, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/evelyn/front.svg",
  22149. extra: 208 / 180
  22150. }
  22151. },
  22152. },
  22153. [
  22154. {
  22155. name: "Normal",
  22156. height: math.unit(2 + 8 / 12, "feet"),
  22157. default: true
  22158. },
  22159. ]
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22163. {
  22164. front: {
  22165. height: math.unit(5 + 9 / 12, "feet"),
  22166. weight: math.unit(139, "lb"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/inca/front.svg",
  22170. extra: 294 / 291,
  22171. bottom: 0.03
  22172. }
  22173. },
  22174. },
  22175. [
  22176. {
  22177. name: "Normal",
  22178. height: math.unit(5 + 9 / 12, "feet"),
  22179. default: true
  22180. },
  22181. ]
  22182. ))
  22183. characterMakers.push(() => makeCharacter(
  22184. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22185. {
  22186. front: {
  22187. height: math.unit(6 + 3 / 12, "feet"),
  22188. weight: math.unit(185, "lb"),
  22189. name: "Front",
  22190. image: {
  22191. source: "./media/characters/mera/front.svg",
  22192. extra: 291 / 277,
  22193. bottom: 0.03
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Normal",
  22200. height: math.unit(6 + 3 / 12, "feet"),
  22201. default: true
  22202. },
  22203. ]
  22204. ))
  22205. characterMakers.push(() => makeCharacter(
  22206. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22207. {
  22208. front: {
  22209. height: math.unit(6 + 7 / 12, "feet"),
  22210. weight: math.unit(160, "lb"),
  22211. name: "Front",
  22212. image: {
  22213. source: "./media/characters/ceres/front.svg",
  22214. extra: 1023 / 950,
  22215. bottom: 0.027
  22216. }
  22217. },
  22218. back: {
  22219. height: math.unit(6 + 7 / 12, "feet"),
  22220. weight: math.unit(160, "lb"),
  22221. name: "Back",
  22222. image: {
  22223. source: "./media/characters/ceres/back.svg",
  22224. extra: 1023 / 950
  22225. }
  22226. },
  22227. },
  22228. [
  22229. {
  22230. name: "Normal",
  22231. height: math.unit(6 + 7 / 12, "feet"),
  22232. default: true
  22233. },
  22234. ]
  22235. ))
  22236. characterMakers.push(() => makeCharacter(
  22237. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22238. {
  22239. front: {
  22240. height: math.unit(5 + 10 / 12, "feet"),
  22241. weight: math.unit(150, "lb"),
  22242. name: "Front",
  22243. image: {
  22244. source: "./media/characters/kris/front.svg",
  22245. extra: 885 / 803,
  22246. bottom: 0.03
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Normal",
  22253. height: math.unit(5 + 10 / 12, "feet"),
  22254. default: true
  22255. },
  22256. ]
  22257. ))
  22258. characterMakers.push(() => makeCharacter(
  22259. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22260. {
  22261. dragon_front: {
  22262. height: math.unit(5, "feet"),
  22263. name: "Front",
  22264. image: {
  22265. source: "./media/characters/taluthus/dragon-front.svg",
  22266. extra: 1203/1098,
  22267. bottom: 46/1249
  22268. },
  22269. form: "dragon",
  22270. default: true
  22271. },
  22272. dragon_maw: {
  22273. height: math.unit(2.35, "feet"),
  22274. name: "Maw",
  22275. image: {
  22276. source: "./media/characters/taluthus/dragon-maw.svg"
  22277. },
  22278. form: "dragon",
  22279. },
  22280. kitsune_front: {
  22281. height: math.unit(7, "feet"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/taluthus/kitsune-front.svg",
  22285. extra: 900/841,
  22286. bottom: 65/965
  22287. },
  22288. form: "kitsune",
  22289. default: true
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(5, "feet"),
  22296. form: "dragon",
  22297. default: true,
  22298. },
  22299. {
  22300. name: "Normal",
  22301. height: math.unit(7, "feet"),
  22302. form: "kitsune",
  22303. default: true
  22304. },
  22305. {
  22306. name: "Macro",
  22307. height: math.unit(300, "feet"),
  22308. allForms: true
  22309. },
  22310. ],
  22311. {
  22312. "dragon": {
  22313. name: "Dragon",
  22314. default: true
  22315. },
  22316. "kitsune": {
  22317. name: "Kitsune",
  22318. },
  22319. }
  22320. ))
  22321. characterMakers.push(() => makeCharacter(
  22322. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22323. {
  22324. front: {
  22325. height: math.unit(5 + 9 / 12, "feet"),
  22326. weight: math.unit(145, "lb"),
  22327. name: "Front",
  22328. image: {
  22329. source: "./media/characters/dawn/front.svg",
  22330. extra: 2094 / 2016,
  22331. bottom: 0.025
  22332. }
  22333. },
  22334. back: {
  22335. height: math.unit(5 + 9 / 12, "feet"),
  22336. weight: math.unit(160, "lb"),
  22337. name: "Back",
  22338. image: {
  22339. source: "./media/characters/dawn/back.svg",
  22340. extra: 2112 / 2080,
  22341. bottom: 0.005
  22342. }
  22343. },
  22344. },
  22345. [
  22346. {
  22347. name: "Normal",
  22348. height: math.unit(6 + 7 / 12, "feet"),
  22349. default: true
  22350. },
  22351. ]
  22352. ))
  22353. characterMakers.push(() => makeCharacter(
  22354. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22355. {
  22356. anthro: {
  22357. height: math.unit(8 + 3 / 12, "feet"),
  22358. weight: math.unit(450, "lb"),
  22359. name: "Anthro",
  22360. image: {
  22361. source: "./media/characters/arador/anthro.svg",
  22362. extra: 1835 / 1718,
  22363. bottom: 0.025
  22364. }
  22365. },
  22366. feral: {
  22367. height: math.unit(4, "feet"),
  22368. weight: math.unit(200, "lb"),
  22369. name: "Feral",
  22370. image: {
  22371. source: "./media/characters/arador/feral.svg",
  22372. extra: 1683 / 1514,
  22373. bottom: 0.07
  22374. }
  22375. },
  22376. },
  22377. [
  22378. {
  22379. name: "Normal",
  22380. height: math.unit(8 + 3 / 12, "feet")
  22381. },
  22382. {
  22383. name: "Macro",
  22384. height: math.unit(82.5, "feet"),
  22385. default: true
  22386. },
  22387. ]
  22388. ))
  22389. characterMakers.push(() => makeCharacter(
  22390. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22391. {
  22392. front: {
  22393. height: math.unit(5 + 10 / 12, "feet"),
  22394. weight: math.unit(125, "lb"),
  22395. name: "Front",
  22396. image: {
  22397. source: "./media/characters/dharsi/front.svg",
  22398. extra: 716 / 630,
  22399. bottom: 0.035
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Nano",
  22406. height: math.unit(100, "nm")
  22407. },
  22408. {
  22409. name: "Micro",
  22410. height: math.unit(2, "inches")
  22411. },
  22412. {
  22413. name: "Normal",
  22414. height: math.unit(5 + 10 / 12, "feet"),
  22415. default: true
  22416. },
  22417. {
  22418. name: "Macro",
  22419. height: math.unit(1000, "feet")
  22420. },
  22421. {
  22422. name: "Megamacro",
  22423. height: math.unit(10, "miles")
  22424. },
  22425. {
  22426. name: "Gigamacro",
  22427. height: math.unit(3000, "miles")
  22428. },
  22429. {
  22430. name: "Teramacro",
  22431. height: math.unit(500000, "miles")
  22432. },
  22433. {
  22434. name: "Teramacro+",
  22435. height: math.unit(30, "galaxies")
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22441. {
  22442. front: {
  22443. height: math.unit(6, "feet"),
  22444. weight: math.unit(150, "lb"),
  22445. name: "Front",
  22446. image: {
  22447. source: "./media/characters/deathy/front.svg",
  22448. extra: 1552 / 1463,
  22449. bottom: 0.025
  22450. }
  22451. },
  22452. side: {
  22453. height: math.unit(6, "feet"),
  22454. weight: math.unit(150, "lb"),
  22455. name: "Side",
  22456. image: {
  22457. source: "./media/characters/deathy/side.svg",
  22458. extra: 1604 / 1455,
  22459. bottom: 0.025
  22460. }
  22461. },
  22462. back: {
  22463. height: math.unit(6, "feet"),
  22464. weight: math.unit(150, "lb"),
  22465. name: "Back",
  22466. image: {
  22467. source: "./media/characters/deathy/back.svg",
  22468. extra: 1580 / 1463,
  22469. bottom: 0.005
  22470. }
  22471. },
  22472. },
  22473. [
  22474. {
  22475. name: "Micro",
  22476. height: math.unit(5, "millimeters")
  22477. },
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(6 + 5 / 12, "feet"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22487. {
  22488. front: {
  22489. height: math.unit(16, "feet"),
  22490. weight: math.unit(4000, "lb"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/juniper/front.svg",
  22494. bottom: 0.04
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Normal",
  22501. height: math.unit(16, "feet"),
  22502. default: true
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22508. {
  22509. front: {
  22510. height: math.unit(6, "feet"),
  22511. weight: math.unit(150, "lb"),
  22512. name: "Front",
  22513. image: {
  22514. source: "./media/characters/hipster/front.svg",
  22515. extra: 1312 / 1209,
  22516. bottom: 0.025
  22517. }
  22518. },
  22519. back: {
  22520. height: math.unit(6, "feet"),
  22521. weight: math.unit(150, "lb"),
  22522. name: "Back",
  22523. image: {
  22524. source: "./media/characters/hipster/back.svg",
  22525. extra: 1281 / 1196,
  22526. bottom: 0.01
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Micro",
  22533. height: math.unit(1, "mm")
  22534. },
  22535. {
  22536. name: "Normal",
  22537. height: math.unit(4, "inches"),
  22538. default: true
  22539. },
  22540. {
  22541. name: "Macro",
  22542. height: math.unit(500, "feet")
  22543. },
  22544. {
  22545. name: "Megamacro",
  22546. height: math.unit(1000, "miles")
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22552. {
  22553. front: {
  22554. height: math.unit(6, "feet"),
  22555. weight: math.unit(150, "lb"),
  22556. name: "Front",
  22557. image: {
  22558. source: "./media/characters/tendirmuldr/front.svg",
  22559. extra: 1878 / 1772,
  22560. bottom: 0.015
  22561. }
  22562. },
  22563. },
  22564. [
  22565. {
  22566. name: "Megamacro",
  22567. height: math.unit(1500, "miles"),
  22568. default: true
  22569. },
  22570. ]
  22571. ))
  22572. characterMakers.push(() => makeCharacter(
  22573. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22574. {
  22575. front: {
  22576. height: math.unit(14, "feet"),
  22577. weight: math.unit(12000, "lb"),
  22578. name: "Front",
  22579. image: {
  22580. source: "./media/characters/mort/front.svg",
  22581. extra: 365 / 318,
  22582. bottom: 0.01
  22583. }
  22584. },
  22585. side: {
  22586. height: math.unit(14, "feet"),
  22587. weight: math.unit(12000, "lb"),
  22588. name: "Side",
  22589. image: {
  22590. source: "./media/characters/mort/side.svg",
  22591. extra: 365 / 318,
  22592. bottom: 0.052
  22593. },
  22594. default: true
  22595. },
  22596. back: {
  22597. height: math.unit(14, "feet"),
  22598. weight: math.unit(12000, "lb"),
  22599. name: "Back",
  22600. image: {
  22601. source: "./media/characters/mort/back.svg",
  22602. extra: 371 / 332,
  22603. bottom: 0.18
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Normal",
  22610. height: math.unit(14, "feet"),
  22611. default: true
  22612. },
  22613. ]
  22614. ))
  22615. characterMakers.push(() => makeCharacter(
  22616. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22617. {
  22618. front: {
  22619. height: math.unit(8, "feet"),
  22620. weight: math.unit(1, "ton"),
  22621. name: "Front",
  22622. image: {
  22623. source: "./media/characters/lycoa/front.svg",
  22624. extra: 1836/1728,
  22625. bottom: 81/1917
  22626. }
  22627. },
  22628. back: {
  22629. height: math.unit(8, "feet"),
  22630. weight: math.unit(1, "ton"),
  22631. name: "Back",
  22632. image: {
  22633. source: "./media/characters/lycoa/back.svg",
  22634. extra: 1785/1720,
  22635. bottom: 91/1876
  22636. }
  22637. },
  22638. head: {
  22639. height: math.unit(1.6243, "feet"),
  22640. name: "Head",
  22641. image: {
  22642. source: "./media/characters/lycoa/head.svg",
  22643. extra: 1011/782,
  22644. bottom: 0/1011
  22645. }
  22646. },
  22647. tailmaw: {
  22648. height: math.unit(1.9, "feet"),
  22649. name: "Tailmaw",
  22650. image: {
  22651. source: "./media/characters/lycoa/tailmaw.svg"
  22652. }
  22653. },
  22654. tentacles: {
  22655. height: math.unit(2.1, "feet"),
  22656. name: "Tentacles",
  22657. image: {
  22658. source: "./media/characters/lycoa/tentacles.svg"
  22659. }
  22660. },
  22661. dick: {
  22662. height: math.unit(1.73, "feet"),
  22663. name: "Dick",
  22664. image: {
  22665. source: "./media/characters/lycoa/dick.svg"
  22666. }
  22667. },
  22668. },
  22669. [
  22670. {
  22671. name: "Normal",
  22672. height: math.unit(8, "feet"),
  22673. default: true
  22674. },
  22675. {
  22676. name: "Macro",
  22677. height: math.unit(30, "feet")
  22678. },
  22679. ]
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22683. {
  22684. front: {
  22685. height: math.unit(4 + 2 / 12, "feet"),
  22686. weight: math.unit(70, "lb"),
  22687. name: "Front",
  22688. image: {
  22689. source: "./media/characters/naldara/front.svg",
  22690. extra: 1664/1387,
  22691. bottom: 81/1745
  22692. },
  22693. form: "anthro",
  22694. default: true
  22695. },
  22696. naga: {
  22697. height: math.unit(20, "feet"),
  22698. weight: math.unit(15000, "kg"),
  22699. name: "Front",
  22700. image: {
  22701. source: "./media/characters/naldara/naga.svg",
  22702. extra: 1590/1396,
  22703. bottom: 285/1875
  22704. },
  22705. form: "naga",
  22706. default: true
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(4 + 2 / 12, "feet"),
  22713. form: "anthro",
  22714. default: true
  22715. },
  22716. {
  22717. name: "Normal",
  22718. height: math.unit(20, "feet"),
  22719. form: "naga",
  22720. default: true
  22721. },
  22722. ],
  22723. {
  22724. "anthro": {
  22725. name: "Anthro",
  22726. default: true
  22727. },
  22728. "naga": {
  22729. name: "Naga"
  22730. }
  22731. }
  22732. ))
  22733. characterMakers.push(() => makeCharacter(
  22734. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22735. {
  22736. front: {
  22737. height: math.unit(13 + 7 / 12, "feet"),
  22738. weight: math.unit(1500, "lb"),
  22739. name: "Front",
  22740. image: {
  22741. source: "./media/characters/briar/front.svg",
  22742. extra: 1223/1157,
  22743. bottom: 123/1346
  22744. }
  22745. },
  22746. },
  22747. [
  22748. {
  22749. name: "Normal",
  22750. height: math.unit(13 + 7 / 12, "feet"),
  22751. default: true
  22752. },
  22753. ]
  22754. ))
  22755. characterMakers.push(() => makeCharacter(
  22756. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22757. {
  22758. side: {
  22759. height: math.unit(16, "feet"),
  22760. weight: math.unit(500, "lb"),
  22761. name: "Side",
  22762. image: {
  22763. source: "./media/characters/vanguard/side.svg",
  22764. extra: 1022/914,
  22765. bottom: 30/1052
  22766. }
  22767. },
  22768. sideAlt: {
  22769. height: math.unit(10, "feet"),
  22770. weight: math.unit(500, "lb"),
  22771. name: "Side (Alt)",
  22772. image: {
  22773. source: "./media/characters/vanguard/side-alt.svg",
  22774. extra: 502 / 425,
  22775. bottom: 0.087
  22776. }
  22777. },
  22778. },
  22779. [
  22780. {
  22781. name: "Normal",
  22782. height: math.unit(17.71, "feet"),
  22783. default: true
  22784. },
  22785. ]
  22786. ))
  22787. characterMakers.push(() => makeCharacter(
  22788. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22789. {
  22790. front: {
  22791. height: math.unit(7.5, "feet"),
  22792. weight: math.unit(2, "lb"),
  22793. name: "Front",
  22794. image: {
  22795. source: "./media/characters/artemis/work-safe-front.svg",
  22796. extra: 1192 / 1075,
  22797. bottom: 0.07
  22798. },
  22799. form: "work-safe",
  22800. default: true
  22801. },
  22802. frontNsfw: {
  22803. height: math.unit(7.5, "feet"),
  22804. weight: math.unit(2, "lb"),
  22805. name: "Front",
  22806. image: {
  22807. source: "./media/characters/artemis/calibrating-front.svg",
  22808. extra: 1192 / 1075,
  22809. bottom: 0.07
  22810. },
  22811. form: "calibrating",
  22812. default: true
  22813. },
  22814. frontNsfwer: {
  22815. height: math.unit(7.5, "feet"),
  22816. weight: math.unit(2, "lb"),
  22817. name: "Front",
  22818. image: {
  22819. source: "./media/characters/artemis/oversize-load-front.svg",
  22820. extra: 1192 / 1075,
  22821. bottom: 0.07
  22822. },
  22823. form: "oversize-load",
  22824. default: true
  22825. },
  22826. side: {
  22827. height: math.unit(7.5, "feet"),
  22828. weight: math.unit(2, "lb"),
  22829. name: "Side",
  22830. image: {
  22831. source: "./media/characters/artemis/work-safe-side.svg",
  22832. extra: 1192 / 1075,
  22833. bottom: 0.07
  22834. },
  22835. form: "work-safe"
  22836. },
  22837. sideNsfw: {
  22838. height: math.unit(7.5, "feet"),
  22839. weight: math.unit(2, "lb"),
  22840. name: "Side",
  22841. image: {
  22842. source: "./media/characters/artemis/calibrating-side.svg",
  22843. extra: 1192 / 1075,
  22844. bottom: 0.07
  22845. },
  22846. form: "calibrating"
  22847. },
  22848. sideNsfwer: {
  22849. height: math.unit(7.5, "feet"),
  22850. weight: math.unit(2, "lb"),
  22851. name: "Side",
  22852. image: {
  22853. source: "./media/characters/artemis/oversize-load-side.svg",
  22854. extra: 1192 / 1075,
  22855. bottom: 0.07
  22856. },
  22857. form: "oversize-load"
  22858. },
  22859. maw: {
  22860. height: math.unit(1.1, "feet"),
  22861. name: "Maw",
  22862. image: {
  22863. source: "./media/characters/artemis/maw.svg"
  22864. },
  22865. form: "work-safe"
  22866. },
  22867. stomach: {
  22868. height: math.unit(0.95, "feet"),
  22869. name: "Stomach",
  22870. image: {
  22871. source: "./media/characters/artemis/stomach.svg"
  22872. },
  22873. form: "work-safe"
  22874. },
  22875. dickCanine: {
  22876. height: math.unit(1, "feet"),
  22877. name: "Dick (Canine)",
  22878. image: {
  22879. source: "./media/characters/artemis/dick-canine.svg"
  22880. },
  22881. form: "calibrating"
  22882. },
  22883. dickEquine: {
  22884. height: math.unit(0.85, "feet"),
  22885. name: "Dick (Equine)",
  22886. image: {
  22887. source: "./media/characters/artemis/dick-equine.svg"
  22888. },
  22889. form: "calibrating"
  22890. },
  22891. dickExotic: {
  22892. height: math.unit(0.85, "feet"),
  22893. name: "Dick (Exotic)",
  22894. image: {
  22895. source: "./media/characters/artemis/dick-exotic.svg"
  22896. },
  22897. form: "calibrating"
  22898. },
  22899. dickCanineBigger: {
  22900. height: math.unit(1 * 1.33, "feet"),
  22901. name: "Dick (Canine)",
  22902. image: {
  22903. source: "./media/characters/artemis/dick-canine.svg"
  22904. },
  22905. form: "oversize-load"
  22906. },
  22907. dickEquineBigger: {
  22908. height: math.unit(0.85 * 1.33, "feet"),
  22909. name: "Dick (Equine)",
  22910. image: {
  22911. source: "./media/characters/artemis/dick-equine.svg"
  22912. },
  22913. form: "oversize-load"
  22914. },
  22915. dickExoticBigger: {
  22916. height: math.unit(0.85 * 1.33, "feet"),
  22917. name: "Dick (Exotic)",
  22918. image: {
  22919. source: "./media/characters/artemis/dick-exotic.svg"
  22920. },
  22921. form: "oversize-load"
  22922. },
  22923. },
  22924. [
  22925. {
  22926. name: "Normal",
  22927. height: math.unit(7.5, "feet"),
  22928. form: "work-safe",
  22929. default: true
  22930. },
  22931. {
  22932. name: "Normal",
  22933. height: math.unit(7.5, "feet"),
  22934. form: "calibrating",
  22935. default: true
  22936. },
  22937. {
  22938. name: "Normal",
  22939. height: math.unit(7.5, "feet"),
  22940. form: "oversize-load",
  22941. default: true
  22942. },
  22943. {
  22944. name: "Enlarged",
  22945. height: math.unit(12, "feet"),
  22946. form: "work-safe",
  22947. },
  22948. {
  22949. name: "Enlarged",
  22950. height: math.unit(12, "feet"),
  22951. form: "calibrating",
  22952. },
  22953. {
  22954. name: "Enlarged",
  22955. height: math.unit(12, "feet"),
  22956. form: "oversize-load",
  22957. },
  22958. ],
  22959. {
  22960. "work-safe": {
  22961. name: "Work-Safe",
  22962. default: true
  22963. },
  22964. "calibrating": {
  22965. name: "Calibrating"
  22966. },
  22967. "oversize-load": {
  22968. name: "Oversize Load"
  22969. }
  22970. }
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22974. {
  22975. front: {
  22976. height: math.unit(5 + 3 / 12, "feet"),
  22977. weight: math.unit(160, "lb"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/kira/front.svg",
  22981. extra: 906 / 786,
  22982. bottom: 0.01
  22983. }
  22984. },
  22985. back: {
  22986. height: math.unit(5 + 3 / 12, "feet"),
  22987. weight: math.unit(160, "lb"),
  22988. name: "Back",
  22989. image: {
  22990. source: "./media/characters/kira/back.svg",
  22991. extra: 882 / 757,
  22992. bottom: 0.005
  22993. }
  22994. },
  22995. frontDressed: {
  22996. height: math.unit(5 + 3 / 12, "feet"),
  22997. weight: math.unit(160, "lb"),
  22998. name: "Front (Dressed)",
  22999. image: {
  23000. source: "./media/characters/kira/front-dressed.svg",
  23001. extra: 906 / 786,
  23002. bottom: 0.01
  23003. }
  23004. },
  23005. beans: {
  23006. height: math.unit(0.92, "feet"),
  23007. name: "Beans",
  23008. image: {
  23009. source: "./media/characters/kira/beans.svg"
  23010. }
  23011. },
  23012. },
  23013. [
  23014. {
  23015. name: "Normal",
  23016. height: math.unit(5 + 3 / 12, "feet"),
  23017. default: true
  23018. },
  23019. ]
  23020. ))
  23021. characterMakers.push(() => makeCharacter(
  23022. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23023. {
  23024. front: {
  23025. height: math.unit(5 + 4 / 12, "feet"),
  23026. weight: math.unit(145, "lb"),
  23027. name: "Front",
  23028. image: {
  23029. source: "./media/characters/scramble/front.svg",
  23030. extra: 763 / 727,
  23031. bottom: 0.05
  23032. }
  23033. },
  23034. back: {
  23035. height: math.unit(5 + 4 / 12, "feet"),
  23036. weight: math.unit(145, "lb"),
  23037. name: "Back",
  23038. image: {
  23039. source: "./media/characters/scramble/back.svg",
  23040. extra: 826 / 737,
  23041. bottom: 0.002
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Normal",
  23048. height: math.unit(5 + 4 / 12, "feet"),
  23049. default: true
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23055. {
  23056. side: {
  23057. height: math.unit(6 + 2 / 12, "feet"),
  23058. weight: math.unit(190, "lb"),
  23059. name: "Side",
  23060. image: {
  23061. source: "./media/characters/biscuit/side.svg",
  23062. extra: 858 / 791,
  23063. bottom: 0.044
  23064. }
  23065. },
  23066. },
  23067. [
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(6 + 2 / 12, "feet"),
  23071. default: true
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23077. {
  23078. front: {
  23079. height: math.unit(5 + 2 / 12, "feet"),
  23080. weight: math.unit(120, "lb"),
  23081. name: "Front",
  23082. image: {
  23083. source: "./media/characters/poffin/front.svg",
  23084. extra: 786 / 680,
  23085. bottom: 0.005
  23086. }
  23087. },
  23088. },
  23089. [
  23090. {
  23091. name: "Normal",
  23092. height: math.unit(5 + 2 / 12, "feet"),
  23093. default: true
  23094. },
  23095. ]
  23096. ))
  23097. characterMakers.push(() => makeCharacter(
  23098. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23099. {
  23100. front: {
  23101. height: math.unit(6 + 3 / 12, "feet"),
  23102. weight: math.unit(519, "lb"),
  23103. name: "Front",
  23104. image: {
  23105. source: "./media/characters/dhari/front.svg",
  23106. extra: 1048 / 946,
  23107. bottom: 0.015
  23108. }
  23109. },
  23110. back: {
  23111. height: math.unit(6 + 3 / 12, "feet"),
  23112. weight: math.unit(519, "lb"),
  23113. name: "Back",
  23114. image: {
  23115. source: "./media/characters/dhari/back.svg",
  23116. extra: 1048 / 931,
  23117. bottom: 0.005
  23118. }
  23119. },
  23120. frontDressed: {
  23121. height: math.unit(6 + 3 / 12, "feet"),
  23122. weight: math.unit(519, "lb"),
  23123. name: "Front (Dressed)",
  23124. image: {
  23125. source: "./media/characters/dhari/front-dressed.svg",
  23126. extra: 1713 / 1546,
  23127. bottom: 0.02
  23128. }
  23129. },
  23130. backDressed: {
  23131. height: math.unit(6 + 3 / 12, "feet"),
  23132. weight: math.unit(519, "lb"),
  23133. name: "Back (Dressed)",
  23134. image: {
  23135. source: "./media/characters/dhari/back-dressed.svg",
  23136. extra: 1699 / 1537,
  23137. bottom: 0.01
  23138. }
  23139. },
  23140. maw: {
  23141. height: math.unit(0.95, "feet"),
  23142. name: "Maw",
  23143. image: {
  23144. source: "./media/characters/dhari/maw.svg"
  23145. }
  23146. },
  23147. wereFront: {
  23148. height: math.unit(12 + 8 / 12, "feet"),
  23149. weight: math.unit(4000, "lb"),
  23150. name: "Front (Were)",
  23151. image: {
  23152. source: "./media/characters/dhari/were-front.svg",
  23153. extra: 1065 / 969,
  23154. bottom: 0.015
  23155. }
  23156. },
  23157. wereBack: {
  23158. height: math.unit(12 + 8 / 12, "feet"),
  23159. weight: math.unit(4000, "lb"),
  23160. name: "Back (Were)",
  23161. image: {
  23162. source: "./media/characters/dhari/were-back.svg",
  23163. extra: 1065 / 969,
  23164. bottom: 0.012
  23165. }
  23166. },
  23167. wereMaw: {
  23168. height: math.unit(0.625, "meters"),
  23169. name: "Maw (Were)",
  23170. image: {
  23171. source: "./media/characters/dhari/were-maw.svg"
  23172. }
  23173. },
  23174. },
  23175. [
  23176. {
  23177. name: "Normal",
  23178. height: math.unit(6 + 3 / 12, "feet"),
  23179. default: true
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23185. {
  23186. anthro: {
  23187. height: math.unit(5 + 7 / 12, "feet"),
  23188. weight: math.unit(175, "lb"),
  23189. name: "Anthro",
  23190. image: {
  23191. source: "./media/characters/rena-dyne/anthro.svg",
  23192. extra: 1849 / 1785,
  23193. bottom: 0.005
  23194. }
  23195. },
  23196. taur: {
  23197. height: math.unit(15 + 6 / 12, "feet"),
  23198. weight: math.unit(8000, "lb"),
  23199. name: "Taur",
  23200. image: {
  23201. source: "./media/characters/rena-dyne/taur.svg",
  23202. extra: 2315 / 2234,
  23203. bottom: 0.033
  23204. }
  23205. },
  23206. },
  23207. [
  23208. {
  23209. name: "Normal",
  23210. height: math.unit(5 + 7 / 12, "feet"),
  23211. default: true
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23217. {
  23218. front: {
  23219. height: math.unit(8, "feet"),
  23220. weight: math.unit(600, "lb"),
  23221. name: "Front",
  23222. image: {
  23223. source: "./media/characters/weremeep/front.svg",
  23224. extra: 970/849,
  23225. bottom: 7/977
  23226. }
  23227. },
  23228. },
  23229. [
  23230. {
  23231. name: "Normal",
  23232. height: math.unit(8, "feet"),
  23233. default: true
  23234. },
  23235. {
  23236. name: "Lorg",
  23237. height: math.unit(12, "feet")
  23238. },
  23239. {
  23240. name: "Oh Lawd She Comin'",
  23241. height: math.unit(20, "feet")
  23242. },
  23243. ]
  23244. ))
  23245. characterMakers.push(() => makeCharacter(
  23246. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23247. {
  23248. front: {
  23249. height: math.unit(4, "feet"),
  23250. weight: math.unit(90, "lb"),
  23251. name: "Front",
  23252. image: {
  23253. source: "./media/characters/reza/front.svg",
  23254. extra: 1183 / 1111,
  23255. bottom: 0.017
  23256. }
  23257. },
  23258. back: {
  23259. height: math.unit(4, "feet"),
  23260. weight: math.unit(90, "lb"),
  23261. name: "Back",
  23262. image: {
  23263. source: "./media/characters/reza/back.svg",
  23264. extra: 1183 / 1111,
  23265. bottom: 0.01
  23266. }
  23267. },
  23268. drake: {
  23269. height: math.unit(30, "feet"),
  23270. weight: math.unit(246960, "lb"),
  23271. name: "Drake",
  23272. image: {
  23273. source: "./media/characters/reza/drake.svg",
  23274. extra: 2350 / 2024,
  23275. bottom: 60.7 / 2403
  23276. }
  23277. },
  23278. },
  23279. [
  23280. {
  23281. name: "Normal",
  23282. height: math.unit(4, "feet"),
  23283. default: true
  23284. },
  23285. ]
  23286. ))
  23287. characterMakers.push(() => makeCharacter(
  23288. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23289. {
  23290. side: {
  23291. height: math.unit(15, "feet"),
  23292. weight: math.unit(14, "tons"),
  23293. name: "Side",
  23294. image: {
  23295. source: "./media/characters/athea/side.svg",
  23296. extra: 960 / 540,
  23297. bottom: 0.003
  23298. }
  23299. },
  23300. sitting: {
  23301. height: math.unit(6 * 2.85, "feet"),
  23302. weight: math.unit(14, "tons"),
  23303. name: "Sitting",
  23304. image: {
  23305. source: "./media/characters/athea/sitting.svg",
  23306. extra: 621 / 581,
  23307. bottom: 0.075
  23308. }
  23309. },
  23310. maw: {
  23311. height: math.unit(7.59498031496063, "feet"),
  23312. name: "Maw",
  23313. image: {
  23314. source: "./media/characters/athea/maw.svg"
  23315. }
  23316. },
  23317. },
  23318. [
  23319. {
  23320. name: "Lap Cat",
  23321. height: math.unit(2.5, "feet")
  23322. },
  23323. {
  23324. name: "Minimacro",
  23325. height: math.unit(15, "feet"),
  23326. default: true
  23327. },
  23328. {
  23329. name: "Macro",
  23330. height: math.unit(120, "feet")
  23331. },
  23332. {
  23333. name: "Macro+",
  23334. height: math.unit(640, "feet")
  23335. },
  23336. {
  23337. name: "Colossus",
  23338. height: math.unit(2.2, "miles")
  23339. },
  23340. ]
  23341. ))
  23342. characterMakers.push(() => makeCharacter(
  23343. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23344. {
  23345. front: {
  23346. height: math.unit(8 + 8 / 12, "feet"),
  23347. weight: math.unit(130, "kg"),
  23348. name: "Front",
  23349. image: {
  23350. source: "./media/characters/seroko/front.svg",
  23351. extra: 1385 / 1280,
  23352. bottom: 0.025
  23353. }
  23354. },
  23355. back: {
  23356. height: math.unit(8 + 8 / 12, "feet"),
  23357. weight: math.unit(130, "kg"),
  23358. name: "Back",
  23359. image: {
  23360. source: "./media/characters/seroko/back.svg",
  23361. extra: 1369 / 1238,
  23362. bottom: 0.018
  23363. }
  23364. },
  23365. frontDressed: {
  23366. height: math.unit(8 + 8 / 12, "feet"),
  23367. weight: math.unit(130, "kg"),
  23368. name: "Front (Dressed)",
  23369. image: {
  23370. source: "./media/characters/seroko/front-dressed.svg",
  23371. extra: 1366 / 1275,
  23372. bottom: 0.03
  23373. }
  23374. },
  23375. },
  23376. [
  23377. {
  23378. name: "Normal",
  23379. height: math.unit(8 + 8 / 12, "feet"),
  23380. default: true
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23386. {
  23387. front: {
  23388. height: math.unit(5.5, "feet"),
  23389. weight: math.unit(160, "lb"),
  23390. name: "Front",
  23391. image: {
  23392. source: "./media/characters/quatzi/front.svg",
  23393. extra: 2346 / 2242,
  23394. bottom: 0.015
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Normal",
  23401. height: math.unit(5.5, "feet"),
  23402. default: true
  23403. },
  23404. {
  23405. name: "Big",
  23406. height: math.unit(7.7, "feet")
  23407. },
  23408. ]
  23409. ))
  23410. characterMakers.push(() => makeCharacter(
  23411. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23412. {
  23413. front: {
  23414. height: math.unit(5 + 11 / 12, "feet"),
  23415. weight: math.unit(180, "lb"),
  23416. name: "Front",
  23417. image: {
  23418. source: "./media/characters/sen/front.svg",
  23419. extra: 1321 / 1254,
  23420. bottom: 0.015
  23421. }
  23422. },
  23423. side: {
  23424. height: math.unit(5 + 11 / 12, "feet"),
  23425. weight: math.unit(180, "lb"),
  23426. name: "Side",
  23427. image: {
  23428. source: "./media/characters/sen/side.svg",
  23429. extra: 1321 / 1254,
  23430. bottom: 0.007
  23431. }
  23432. },
  23433. back: {
  23434. height: math.unit(5 + 11 / 12, "feet"),
  23435. weight: math.unit(180, "lb"),
  23436. name: "Back",
  23437. image: {
  23438. source: "./media/characters/sen/back.svg",
  23439. extra: 1321 / 1254
  23440. }
  23441. },
  23442. },
  23443. [
  23444. {
  23445. name: "Normal",
  23446. height: math.unit(5 + 11 / 12, "feet"),
  23447. default: true
  23448. },
  23449. ]
  23450. ))
  23451. characterMakers.push(() => makeCharacter(
  23452. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23453. {
  23454. front: {
  23455. height: math.unit(166.6, "cm"),
  23456. weight: math.unit(66.6, "kg"),
  23457. name: "Front",
  23458. image: {
  23459. source: "./media/characters/fruity/front.svg",
  23460. extra: 1510 / 1386,
  23461. bottom: 0.04
  23462. }
  23463. },
  23464. back: {
  23465. height: math.unit(166.6, "cm"),
  23466. weight: math.unit(66.6, "lb"),
  23467. name: "Back",
  23468. image: {
  23469. source: "./media/characters/fruity/back.svg",
  23470. extra: 1563 / 1435,
  23471. bottom: 0.005
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Normal",
  23478. height: math.unit(166.6, "cm"),
  23479. default: true
  23480. },
  23481. {
  23482. name: "Demonic",
  23483. height: math.unit(166.6, "feet")
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23489. {
  23490. side: {
  23491. height: math.unit(10, "feet"),
  23492. weight: math.unit(500, "lb"),
  23493. name: "Side",
  23494. image: {
  23495. source: "./media/characters/zost/side.svg",
  23496. extra: 2870/2533,
  23497. bottom: 252/3122
  23498. }
  23499. },
  23500. mawFront: {
  23501. height: math.unit(1.08, "meters"),
  23502. name: "Maw (Front)",
  23503. image: {
  23504. source: "./media/characters/zost/maw-front.svg"
  23505. }
  23506. },
  23507. mawSide: {
  23508. height: math.unit(2.66, "feet"),
  23509. name: "Maw (Side)",
  23510. image: {
  23511. source: "./media/characters/zost/maw-side.svg"
  23512. }
  23513. },
  23514. wingspan: {
  23515. height: math.unit(7.4, "feet"),
  23516. name: "Wingspan",
  23517. image: {
  23518. source: "./media/characters/zost/wingspan.svg"
  23519. }
  23520. },
  23521. },
  23522. [
  23523. {
  23524. name: "Normal",
  23525. height: math.unit(10, "feet"),
  23526. default: true
  23527. },
  23528. ]
  23529. ))
  23530. characterMakers.push(() => makeCharacter(
  23531. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23532. {
  23533. front: {
  23534. height: math.unit(5 + 4 / 12, "feet"),
  23535. weight: math.unit(120, "lb"),
  23536. name: "Front",
  23537. image: {
  23538. source: "./media/characters/luci/front.svg",
  23539. extra: 1985 / 1884,
  23540. bottom: 0.04
  23541. }
  23542. },
  23543. back: {
  23544. height: math.unit(5 + 4 / 12, "feet"),
  23545. weight: math.unit(120, "lb"),
  23546. name: "Back",
  23547. image: {
  23548. source: "./media/characters/luci/back.svg",
  23549. extra: 1892 / 1791,
  23550. bottom: 0.002
  23551. }
  23552. },
  23553. },
  23554. [
  23555. {
  23556. name: "Normal",
  23557. height: math.unit(5 + 4 / 12, "feet"),
  23558. default: true
  23559. },
  23560. ]
  23561. ))
  23562. characterMakers.push(() => makeCharacter(
  23563. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23564. {
  23565. front: {
  23566. height: math.unit(1500, "feet"),
  23567. weight: math.unit(3.8e6, "tons"),
  23568. name: "Front",
  23569. image: {
  23570. source: "./media/characters/2th/front.svg",
  23571. extra: 3489 / 3350,
  23572. bottom: 0.1
  23573. }
  23574. },
  23575. foot: {
  23576. height: math.unit(461, "feet"),
  23577. name: "Foot",
  23578. image: {
  23579. source: "./media/characters/2th/foot.svg"
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "\"Micro\"",
  23586. height: math.unit(15 + 7 / 12, "feet")
  23587. },
  23588. {
  23589. name: "Normal",
  23590. height: math.unit(1500, "feet"),
  23591. default: true
  23592. },
  23593. {
  23594. name: "Macro",
  23595. height: math.unit(5000, "feet")
  23596. },
  23597. {
  23598. name: "Megamacro",
  23599. height: math.unit(15, "miles")
  23600. },
  23601. {
  23602. name: "Gigamacro",
  23603. height: math.unit(4000, "miles")
  23604. },
  23605. {
  23606. name: "Galactic",
  23607. height: math.unit(50, "AU")
  23608. },
  23609. ]
  23610. ))
  23611. characterMakers.push(() => makeCharacter(
  23612. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23613. {
  23614. front: {
  23615. height: math.unit(5 + 6 / 12, "feet"),
  23616. weight: math.unit(220, "lb"),
  23617. name: "Front",
  23618. image: {
  23619. source: "./media/characters/amethyst/front.svg",
  23620. extra: 2078 / 2040,
  23621. bottom: 0.045
  23622. }
  23623. },
  23624. back: {
  23625. height: math.unit(5 + 6 / 12, "feet"),
  23626. weight: math.unit(220, "lb"),
  23627. name: "Back",
  23628. image: {
  23629. source: "./media/characters/amethyst/back.svg",
  23630. extra: 2021 / 1989,
  23631. bottom: 0.02
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(5 + 6 / 12, "feet"),
  23639. default: true
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(4 + 11 / 12, "feet"),
  23648. weight: math.unit(120, "lb"),
  23649. name: "Front",
  23650. image: {
  23651. source: "./media/characters/yumi-akiyama/front.svg",
  23652. extra: 1327 / 1235,
  23653. bottom: 0.02
  23654. }
  23655. },
  23656. back: {
  23657. height: math.unit(4 + 11 / 12, "feet"),
  23658. weight: math.unit(120, "lb"),
  23659. name: "Back",
  23660. image: {
  23661. source: "./media/characters/yumi-akiyama/back.svg",
  23662. extra: 1287 / 1245,
  23663. bottom: 0.002
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Galactic",
  23670. height: math.unit(50, "galaxies"),
  23671. default: true
  23672. },
  23673. {
  23674. name: "Universal",
  23675. height: math.unit(100, "universes")
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(8, "feet"),
  23684. weight: math.unit(500, "lb"),
  23685. name: "Front",
  23686. image: {
  23687. source: "./media/characters/rifter-yrmori/front.svg",
  23688. extra: 1180 / 1125,
  23689. bottom: 0.02
  23690. }
  23691. },
  23692. back: {
  23693. height: math.unit(8, "feet"),
  23694. weight: math.unit(500, "lb"),
  23695. name: "Back",
  23696. image: {
  23697. source: "./media/characters/rifter-yrmori/back.svg",
  23698. extra: 1190 / 1145,
  23699. bottom: 0.001
  23700. }
  23701. },
  23702. wings: {
  23703. height: math.unit(7.75, "feet"),
  23704. weight: math.unit(500, "lb"),
  23705. name: "Wings",
  23706. image: {
  23707. source: "./media/characters/rifter-yrmori/wings.svg",
  23708. extra: 1357 / 1285
  23709. }
  23710. },
  23711. maw: {
  23712. height: math.unit(0.8, "feet"),
  23713. name: "Maw",
  23714. image: {
  23715. source: "./media/characters/rifter-yrmori/maw.svg"
  23716. }
  23717. },
  23718. mawfront: {
  23719. height: math.unit(1.45, "feet"),
  23720. name: "Maw (Front)",
  23721. image: {
  23722. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23723. }
  23724. },
  23725. },
  23726. [
  23727. {
  23728. name: "Normal",
  23729. height: math.unit(8, "feet"),
  23730. default: true
  23731. },
  23732. {
  23733. name: "Macro",
  23734. height: math.unit(42, "meters")
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23740. {
  23741. were: {
  23742. height: math.unit(25 + 6 / 12, "feet"),
  23743. weight: math.unit(10000, "lb"),
  23744. name: "Were",
  23745. image: {
  23746. source: "./media/characters/tahajin/were.svg",
  23747. extra: 801 / 770,
  23748. bottom: 0.042
  23749. }
  23750. },
  23751. aquatic: {
  23752. height: math.unit(6 + 4 / 12, "feet"),
  23753. weight: math.unit(160, "lb"),
  23754. name: "Aquatic",
  23755. image: {
  23756. source: "./media/characters/tahajin/aquatic.svg",
  23757. extra: 572 / 542,
  23758. bottom: 0.04
  23759. }
  23760. },
  23761. chow: {
  23762. height: math.unit(8 + 11 / 12, "feet"),
  23763. weight: math.unit(450, "lb"),
  23764. name: "Chow",
  23765. image: {
  23766. source: "./media/characters/tahajin/chow.svg",
  23767. extra: 660 / 640,
  23768. bottom: 0.015
  23769. }
  23770. },
  23771. demiNaga: {
  23772. height: math.unit(6 + 8 / 12, "feet"),
  23773. weight: math.unit(300, "lb"),
  23774. name: "Demi Naga",
  23775. image: {
  23776. source: "./media/characters/tahajin/demi-naga.svg",
  23777. extra: 643 / 615,
  23778. bottom: 0.1
  23779. }
  23780. },
  23781. data: {
  23782. height: math.unit(5, "inches"),
  23783. weight: math.unit(0.1, "lb"),
  23784. name: "Data",
  23785. image: {
  23786. source: "./media/characters/tahajin/data.svg"
  23787. }
  23788. },
  23789. fluu: {
  23790. height: math.unit(5 + 7 / 12, "feet"),
  23791. weight: math.unit(140, "lb"),
  23792. name: "Fluu",
  23793. image: {
  23794. source: "./media/characters/tahajin/fluu.svg",
  23795. extra: 628 / 592,
  23796. bottom: 0.02
  23797. }
  23798. },
  23799. starWarrior: {
  23800. height: math.unit(4 + 5 / 12, "feet"),
  23801. weight: math.unit(50, "lb"),
  23802. name: "Star Warrior",
  23803. image: {
  23804. source: "./media/characters/tahajin/star-warrior.svg"
  23805. }
  23806. },
  23807. },
  23808. [
  23809. {
  23810. name: "Normal",
  23811. height: math.unit(25 + 6 / 12, "feet"),
  23812. default: true
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23818. {
  23819. front: {
  23820. height: math.unit(8, "feet"),
  23821. weight: math.unit(350, "lb"),
  23822. name: "Front",
  23823. image: {
  23824. source: "./media/characters/gabira/front.svg",
  23825. extra: 1261/1154,
  23826. bottom: 51/1312
  23827. }
  23828. },
  23829. back: {
  23830. height: math.unit(8, "feet"),
  23831. weight: math.unit(350, "lb"),
  23832. name: "Back",
  23833. image: {
  23834. source: "./media/characters/gabira/back.svg",
  23835. extra: 1265/1163,
  23836. bottom: 46/1311
  23837. }
  23838. },
  23839. head: {
  23840. height: math.unit(2.85, "feet"),
  23841. name: "Head",
  23842. image: {
  23843. source: "./media/characters/gabira/head.svg"
  23844. }
  23845. },
  23846. },
  23847. [
  23848. {
  23849. name: "Normal",
  23850. height: math.unit(8, "feet"),
  23851. default: true
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23857. {
  23858. front: {
  23859. height: math.unit(5 + 3 / 12, "feet"),
  23860. weight: math.unit(137, "lb"),
  23861. name: "Front",
  23862. image: {
  23863. source: "./media/characters/sasha-katraine/front.svg",
  23864. extra: 1745/1694,
  23865. bottom: 37/1782
  23866. }
  23867. },
  23868. back: {
  23869. height: math.unit(5 + 3 / 12, "feet"),
  23870. weight: math.unit(137, "lb"),
  23871. name: "Back",
  23872. image: {
  23873. source: "./media/characters/sasha-katraine/back.svg",
  23874. extra: 1776/1699,
  23875. bottom: 26/1802
  23876. }
  23877. },
  23878. },
  23879. [
  23880. {
  23881. name: "Micro",
  23882. height: math.unit(5, "inches")
  23883. },
  23884. {
  23885. name: "Normal",
  23886. height: math.unit(5 + 3 / 12, "feet"),
  23887. default: true
  23888. },
  23889. ]
  23890. ))
  23891. characterMakers.push(() => makeCharacter(
  23892. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23893. {
  23894. side: {
  23895. height: math.unit(4, "inches"),
  23896. weight: math.unit(200, "grams"),
  23897. name: "Side",
  23898. image: {
  23899. source: "./media/characters/der/side.svg",
  23900. extra: 719 / 400,
  23901. bottom: 30.6 / 749.9187
  23902. }
  23903. },
  23904. },
  23905. [
  23906. {
  23907. name: "Micro",
  23908. height: math.unit(4, "inches"),
  23909. default: true
  23910. },
  23911. ]
  23912. ))
  23913. characterMakers.push(() => makeCharacter(
  23914. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23915. {
  23916. side: {
  23917. height: math.unit(30, "meters"),
  23918. weight: math.unit(700, "tonnes"),
  23919. name: "Side",
  23920. image: {
  23921. source: "./media/characters/fixerdragon/side.svg",
  23922. extra: (1293.0514 - 116.03) / 1106.86,
  23923. bottom: 116.03 / 1293.0514
  23924. }
  23925. },
  23926. },
  23927. [
  23928. {
  23929. name: "Planck",
  23930. height: math.unit(1.6e-35, "meters")
  23931. },
  23932. {
  23933. name: "Micro",
  23934. height: math.unit(0.4, "meters")
  23935. },
  23936. {
  23937. name: "Normal",
  23938. height: math.unit(30, "meters"),
  23939. default: true
  23940. },
  23941. {
  23942. name: "Megamacro",
  23943. height: math.unit(1.2, "megameters")
  23944. },
  23945. {
  23946. name: "Teramacro",
  23947. height: math.unit(130, "terameters")
  23948. },
  23949. {
  23950. name: "Yottamacro",
  23951. height: math.unit(6200, "yottameters")
  23952. },
  23953. ]
  23954. ));
  23955. characterMakers.push(() => makeCharacter(
  23956. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23957. {
  23958. front: {
  23959. height: math.unit(8, "feet"),
  23960. weight: math.unit(250, "lb"),
  23961. name: "Front",
  23962. image: {
  23963. source: "./media/characters/kite/front.svg",
  23964. extra: 2796 / 2659,
  23965. bottom: 0.002
  23966. }
  23967. },
  23968. },
  23969. [
  23970. {
  23971. name: "Normal",
  23972. height: math.unit(8, "feet"),
  23973. default: true
  23974. },
  23975. {
  23976. name: "Macro",
  23977. height: math.unit(360, "feet")
  23978. },
  23979. {
  23980. name: "Megamacro",
  23981. height: math.unit(1500, "feet")
  23982. },
  23983. ]
  23984. ))
  23985. characterMakers.push(() => makeCharacter(
  23986. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23987. {
  23988. anthro_front: {
  23989. height: math.unit(5 + 11/12, "feet"),
  23990. weight: math.unit(170, "lb"),
  23991. name: "Front",
  23992. image: {
  23993. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23994. extra: 1735/1585,
  23995. bottom: 96/1831
  23996. },
  23997. form: "anthro",
  23998. default: true
  23999. },
  24000. anthro_back: {
  24001. height: math.unit(5 + 11/12, "feet"),
  24002. weight: math.unit(170, "lb"),
  24003. name: "Back",
  24004. image: {
  24005. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24006. extra: 1749/1607,
  24007. bottom: 28/1777
  24008. },
  24009. form: "anthro"
  24010. },
  24011. anthro_male: {
  24012. height: math.unit(5 + 11/12, "feet"),
  24013. weight: math.unit(170, "lb"),
  24014. name: "Male",
  24015. image: {
  24016. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24017. extra: 1855/1713,
  24018. bottom: 63/1918
  24019. },
  24020. form: "anthro"
  24021. },
  24022. taur_front: {
  24023. height: math.unit(5 + 7/12, "feet"),
  24024. weight: math.unit(170, "lb"),
  24025. name: "Front",
  24026. image: {
  24027. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24028. extra: 1151/1059,
  24029. bottom: 356/1507
  24030. },
  24031. form: "taur",
  24032. default: true
  24033. },
  24034. anthro_frontDressed: {
  24035. height: math.unit(5 + 11/12, "feet"),
  24036. weight: math.unit(170, "lb"),
  24037. name: "Front (Dressed)",
  24038. image: {
  24039. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24040. extra: 1735/1585,
  24041. bottom: 96/1831
  24042. },
  24043. form: "anthro"
  24044. },
  24045. anthro_backDressed: {
  24046. height: math.unit(5 + 11/12, "feet"),
  24047. weight: math.unit(170, "lb"),
  24048. name: "Back (Dressed)",
  24049. image: {
  24050. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24051. extra: 1749/1607,
  24052. bottom: 28/1777
  24053. },
  24054. form: "anthro"
  24055. },
  24056. anthro_maleDressed: {
  24057. height: math.unit(5 + 11/12, "feet"),
  24058. weight: math.unit(170, "lb"),
  24059. name: "Male (Dressed)",
  24060. image: {
  24061. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24062. extra: 1855/1713,
  24063. bottom: 63/1918
  24064. },
  24065. form: "anthro"
  24066. },
  24067. taur_frontDressed: {
  24068. height: math.unit(5 + 7/12, "feet"),
  24069. weight: math.unit(170, "lb"),
  24070. name: "Front (Dressed)",
  24071. image: {
  24072. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24073. extra: 1151/1059,
  24074. bottom: 356/1507
  24075. },
  24076. form: "taur"
  24077. },
  24078. maw: {
  24079. height: math.unit(1.46, "feet"),
  24080. name: "Maw",
  24081. image: {
  24082. source: "./media/characters/poojawa-vynar/maw.svg"
  24083. },
  24084. allForms: true
  24085. },
  24086. head: {
  24087. height: math.unit(2.34, "feet"),
  24088. name: "Head",
  24089. image: {
  24090. source: "./media/characters/poojawa-vynar/head.svg"
  24091. },
  24092. allForms: true
  24093. },
  24094. leftPaw: {
  24095. height: math.unit(1.72, "feet"),
  24096. name: "Left Paw",
  24097. image: {
  24098. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24099. },
  24100. allForms: true
  24101. },
  24102. rightPaw: {
  24103. height: math.unit(1.61, "feet"),
  24104. name: "Right Paw",
  24105. image: {
  24106. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24107. },
  24108. allForms: true
  24109. },
  24110. toering: {
  24111. height: math.unit(2.9, "inches"),
  24112. name: "Toering",
  24113. image: {
  24114. source: "./media/characters/poojawa-vynar/toering.svg"
  24115. },
  24116. allForms: true
  24117. },
  24118. shaft: {
  24119. height: math.unit(0.625, "feet"),
  24120. name: "Shaft",
  24121. image: {
  24122. source: "./media/characters/poojawa-vynar/shaft.svg"
  24123. },
  24124. allForms: true
  24125. },
  24126. spade: {
  24127. height: math.unit(0.42, "feet"),
  24128. name: "Spade",
  24129. image: {
  24130. source: "./media/characters/poojawa-vynar/spade.svg"
  24131. },
  24132. allForms: true
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Shortstack",
  24138. height: math.unit(4, "feet"),
  24139. form: "anthro"
  24140. },
  24141. {
  24142. name: "Normal",
  24143. height: math.unit(5 + 11 / 12, "feet"),
  24144. form: "anthro",
  24145. default: true
  24146. },
  24147. {
  24148. name: "Tauric",
  24149. height: math.unit(4, "meters"),
  24150. form: "taur",
  24151. default: true
  24152. },
  24153. ],
  24154. {
  24155. "anthro": {
  24156. name: "Anthro",
  24157. default: true
  24158. },
  24159. "taur": {
  24160. name: "Taur",
  24161. },
  24162. }
  24163. ))
  24164. characterMakers.push(() => makeCharacter(
  24165. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24166. {
  24167. front: {
  24168. height: math.unit(293, "meters"),
  24169. weight: math.unit(70400, "tons"),
  24170. name: "Front",
  24171. image: {
  24172. source: "./media/characters/violette/front.svg",
  24173. extra: 1227 / 1180,
  24174. bottom: 0.005
  24175. }
  24176. },
  24177. back: {
  24178. height: math.unit(293, "meters"),
  24179. weight: math.unit(70400, "tons"),
  24180. name: "Back",
  24181. image: {
  24182. source: "./media/characters/violette/back.svg",
  24183. extra: 1227 / 1180,
  24184. bottom: 0.005
  24185. }
  24186. },
  24187. },
  24188. [
  24189. {
  24190. name: "Macro",
  24191. height: math.unit(293, "meters"),
  24192. default: true
  24193. },
  24194. ]
  24195. ))
  24196. characterMakers.push(() => makeCharacter(
  24197. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24198. {
  24199. front: {
  24200. height: math.unit(1050, "feet"),
  24201. weight: math.unit(200000, "tons"),
  24202. name: "Front",
  24203. image: {
  24204. source: "./media/characters/alessandra/front.svg",
  24205. extra: 960 / 912,
  24206. bottom: 0.06
  24207. }
  24208. },
  24209. },
  24210. [
  24211. {
  24212. name: "Macro",
  24213. height: math.unit(1050, "feet")
  24214. },
  24215. {
  24216. name: "Macro+",
  24217. height: math.unit(900, "meters"),
  24218. default: true
  24219. },
  24220. ]
  24221. ))
  24222. characterMakers.push(() => makeCharacter(
  24223. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24224. {
  24225. front: {
  24226. height: math.unit(5, "feet"),
  24227. weight: math.unit(187, "lb"),
  24228. name: "Front",
  24229. image: {
  24230. source: "./media/characters/person/front.svg",
  24231. extra: 3087 / 2945,
  24232. bottom: 91 / 3181
  24233. }
  24234. },
  24235. },
  24236. [
  24237. {
  24238. name: "Micro",
  24239. height: math.unit(3, "inches")
  24240. },
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(5, "feet"),
  24244. default: true
  24245. },
  24246. {
  24247. name: "Macro",
  24248. height: math.unit(90, "feet")
  24249. },
  24250. {
  24251. name: "Max Size",
  24252. height: math.unit(280, "feet")
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24258. {
  24259. front: {
  24260. height: math.unit(4.5, "meters"),
  24261. weight: math.unit(3200, "lb"),
  24262. name: "Front",
  24263. image: {
  24264. source: "./media/characters/ty/front.svg",
  24265. extra: 1038 / 960,
  24266. bottom: 31.156 / 1068
  24267. }
  24268. },
  24269. back: {
  24270. height: math.unit(4.5, "meters"),
  24271. weight: math.unit(3200, "lb"),
  24272. name: "Back",
  24273. image: {
  24274. source: "./media/characters/ty/back.svg",
  24275. extra: 1044 / 966,
  24276. bottom: 7.48 / 1049
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "Normal",
  24283. height: math.unit(4.5, "meters"),
  24284. default: true
  24285. },
  24286. ]
  24287. ))
  24288. characterMakers.push(() => makeCharacter(
  24289. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24290. {
  24291. front: {
  24292. height: math.unit(5 + 4 / 12, "feet"),
  24293. weight: math.unit(115, "lb"),
  24294. name: "Front",
  24295. image: {
  24296. source: "./media/characters/rocky/front.svg",
  24297. extra: 1012 / 975,
  24298. bottom: 54 / 1066
  24299. }
  24300. },
  24301. },
  24302. [
  24303. {
  24304. name: "Normal",
  24305. height: math.unit(5 + 4 / 12, "feet"),
  24306. default: true
  24307. },
  24308. ]
  24309. ))
  24310. characterMakers.push(() => makeCharacter(
  24311. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24312. {
  24313. upright: {
  24314. height: math.unit(6, "meters"),
  24315. weight: math.unit(4000, "kg"),
  24316. name: "Upright",
  24317. image: {
  24318. source: "./media/characters/ruin/upright.svg",
  24319. extra: 668 / 661,
  24320. bottom: 42 / 799.8396
  24321. }
  24322. },
  24323. },
  24324. [
  24325. {
  24326. name: "Normal",
  24327. height: math.unit(6, "meters"),
  24328. default: true
  24329. },
  24330. ]
  24331. ))
  24332. characterMakers.push(() => makeCharacter(
  24333. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24334. {
  24335. front: {
  24336. height: math.unit(5, "feet"),
  24337. weight: math.unit(106, "lb"),
  24338. name: "Front",
  24339. image: {
  24340. source: "./media/characters/robin/front.svg",
  24341. extra: 862 / 799,
  24342. bottom: 42.4 / 914.8856
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Normal",
  24349. height: math.unit(5, "feet"),
  24350. default: true
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24356. {
  24357. side: {
  24358. height: math.unit(3, "feet"),
  24359. weight: math.unit(225, "lb"),
  24360. name: "Side",
  24361. image: {
  24362. source: "./media/characters/saian/side.svg",
  24363. extra: 566 / 356,
  24364. bottom: 79.7 / 643
  24365. }
  24366. },
  24367. maw: {
  24368. height: math.unit(2.85, "feet"),
  24369. name: "Maw",
  24370. image: {
  24371. source: "./media/characters/saian/maw.svg"
  24372. }
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "Normal",
  24378. height: math.unit(3, "feet"),
  24379. default: true
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24385. {
  24386. side: {
  24387. height: math.unit(8, "feet"),
  24388. weight: math.unit(300, "lb"),
  24389. name: "Side",
  24390. image: {
  24391. source: "./media/characters/equus-silvermane/side.svg",
  24392. extra: 2176 / 2050,
  24393. bottom: 65.7 / 2245
  24394. }
  24395. },
  24396. front: {
  24397. height: math.unit(8, "feet"),
  24398. weight: math.unit(300, "lb"),
  24399. name: "Front",
  24400. image: {
  24401. source: "./media/characters/equus-silvermane/front.svg",
  24402. extra: 4633 / 4400,
  24403. bottom: 71.3 / 4706.915
  24404. }
  24405. },
  24406. sideStepping: {
  24407. height: math.unit(8, "feet"),
  24408. weight: math.unit(300, "lb"),
  24409. name: "Side (Stepping)",
  24410. image: {
  24411. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24412. extra: 1968 / 1860,
  24413. bottom: 16.4 / 1989
  24414. }
  24415. },
  24416. },
  24417. [
  24418. {
  24419. name: "Normal",
  24420. height: math.unit(8, "feet")
  24421. },
  24422. {
  24423. name: "Minimacro",
  24424. height: math.unit(75, "feet"),
  24425. default: true
  24426. },
  24427. {
  24428. name: "Macro",
  24429. height: math.unit(150, "feet")
  24430. },
  24431. {
  24432. name: "Macro+",
  24433. height: math.unit(1000, "feet")
  24434. },
  24435. {
  24436. name: "Megamacro",
  24437. height: math.unit(1, "mile")
  24438. },
  24439. ]
  24440. ))
  24441. characterMakers.push(() => makeCharacter(
  24442. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24443. {
  24444. side: {
  24445. height: math.unit(20, "feet"),
  24446. weight: math.unit(30000, "kg"),
  24447. name: "Side",
  24448. image: {
  24449. source: "./media/characters/windar/side.svg",
  24450. extra: 1491 / 1248,
  24451. bottom: 82.56 / 1568
  24452. }
  24453. },
  24454. },
  24455. [
  24456. {
  24457. name: "Normal",
  24458. height: math.unit(20, "feet"),
  24459. default: true
  24460. },
  24461. ]
  24462. ))
  24463. characterMakers.push(() => makeCharacter(
  24464. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24465. {
  24466. side: {
  24467. height: math.unit(15.66, "feet"),
  24468. weight: math.unit(150, "lb"),
  24469. name: "Side",
  24470. image: {
  24471. source: "./media/characters/melody/side.svg",
  24472. extra: 1097 / 944,
  24473. bottom: 11.8 / 1109
  24474. }
  24475. },
  24476. sideOutfit: {
  24477. height: math.unit(15.66, "feet"),
  24478. weight: math.unit(150, "lb"),
  24479. name: "Side (Outfit)",
  24480. image: {
  24481. source: "./media/characters/melody/side-outfit.svg",
  24482. extra: 1097 / 944,
  24483. bottom: 11.8 / 1109
  24484. }
  24485. },
  24486. },
  24487. [
  24488. {
  24489. name: "Normal",
  24490. height: math.unit(15.66, "feet"),
  24491. default: true
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24497. {
  24498. armoredFront: {
  24499. height: math.unit(8, "feet"),
  24500. weight: math.unit(325, "lb"),
  24501. name: "Front",
  24502. image: {
  24503. source: "./media/characters/windera/armored-front.svg",
  24504. extra: 1830/1598,
  24505. bottom: 151/1981
  24506. },
  24507. form: "armored",
  24508. default: true
  24509. },
  24510. macroFront: {
  24511. height: math.unit(70, "feet"),
  24512. weight: math.unit(315453, "lb"),
  24513. name: "Front",
  24514. image: {
  24515. source: "./media/characters/windera/macro-front.svg",
  24516. extra: 963/883,
  24517. bottom: 23/986
  24518. },
  24519. form: "macro",
  24520. default: true
  24521. },
  24522. },
  24523. [
  24524. {
  24525. name: "Normal",
  24526. height: math.unit(8, "feet"),
  24527. default: true,
  24528. form: "armored"
  24529. },
  24530. {
  24531. name: "Normal",
  24532. height: math.unit(70, "feet"),
  24533. default: true,
  24534. form: "macro"
  24535. },
  24536. ],
  24537. {
  24538. "armored": {
  24539. name: "Armored",
  24540. default: true
  24541. },
  24542. "macro": {
  24543. name: "Macro",
  24544. },
  24545. }
  24546. ))
  24547. characterMakers.push(() => makeCharacter(
  24548. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24549. {
  24550. front: {
  24551. height: math.unit(28.75, "feet"),
  24552. weight: math.unit(2000, "kg"),
  24553. name: "Front",
  24554. image: {
  24555. source: "./media/characters/sonear/front.svg",
  24556. extra: 1041.1 / 964.9,
  24557. bottom: 53.7 / 1096.6
  24558. }
  24559. },
  24560. },
  24561. [
  24562. {
  24563. name: "Normal",
  24564. height: math.unit(28.75, "feet"),
  24565. default: true
  24566. },
  24567. ]
  24568. ))
  24569. characterMakers.push(() => makeCharacter(
  24570. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24571. {
  24572. side: {
  24573. height: math.unit(25.5, "feet"),
  24574. weight: math.unit(23000, "kg"),
  24575. name: "Side",
  24576. image: {
  24577. source: "./media/characters/kanara/side.svg"
  24578. }
  24579. },
  24580. },
  24581. [
  24582. {
  24583. name: "Normal",
  24584. height: math.unit(25.5, "feet"),
  24585. default: true
  24586. },
  24587. ]
  24588. ))
  24589. characterMakers.push(() => makeCharacter(
  24590. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24591. {
  24592. side: {
  24593. height: math.unit(10, "feet"),
  24594. weight: math.unit(1000, "kg"),
  24595. name: "Side",
  24596. image: {
  24597. source: "./media/characters/ereus/side.svg",
  24598. extra: 1157 / 959,
  24599. bottom: 153 / 1312.5
  24600. }
  24601. },
  24602. },
  24603. [
  24604. {
  24605. name: "Normal",
  24606. height: math.unit(10, "feet"),
  24607. default: true
  24608. },
  24609. ]
  24610. ))
  24611. characterMakers.push(() => makeCharacter(
  24612. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24613. {
  24614. side: {
  24615. height: math.unit(4.5, "feet"),
  24616. weight: math.unit(500, "lb"),
  24617. name: "Side",
  24618. image: {
  24619. source: "./media/characters/e-ter/side.svg",
  24620. extra: 1550 / 1248,
  24621. bottom: 146 / 1694
  24622. }
  24623. },
  24624. },
  24625. [
  24626. {
  24627. name: "Normal",
  24628. height: math.unit(4.5, "feet"),
  24629. default: true
  24630. },
  24631. ]
  24632. ))
  24633. characterMakers.push(() => makeCharacter(
  24634. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24635. {
  24636. side: {
  24637. height: math.unit(9.7, "feet"),
  24638. weight: math.unit(4000, "kg"),
  24639. name: "Side",
  24640. image: {
  24641. source: "./media/characters/yamie/side.svg"
  24642. }
  24643. },
  24644. },
  24645. [
  24646. {
  24647. name: "Normal",
  24648. height: math.unit(9.7, "feet"),
  24649. default: true
  24650. },
  24651. ]
  24652. ))
  24653. characterMakers.push(() => makeCharacter(
  24654. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24655. {
  24656. front: {
  24657. height: math.unit(50, "feet"),
  24658. weight: math.unit(50000, "kg"),
  24659. name: "Front",
  24660. image: {
  24661. source: "./media/characters/anders/front.svg",
  24662. extra: 570 / 539,
  24663. bottom: 14.7 / 586.7
  24664. }
  24665. },
  24666. },
  24667. [
  24668. {
  24669. name: "Large",
  24670. height: math.unit(50, "feet")
  24671. },
  24672. {
  24673. name: "Macro",
  24674. height: math.unit(2000, "feet"),
  24675. default: true
  24676. },
  24677. {
  24678. name: "Megamacro",
  24679. height: math.unit(12, "miles")
  24680. },
  24681. ]
  24682. ))
  24683. characterMakers.push(() => makeCharacter(
  24684. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24685. {
  24686. front: {
  24687. height: math.unit(7 + 2 / 12, "feet"),
  24688. weight: math.unit(300, "lb"),
  24689. name: "Front",
  24690. image: {
  24691. source: "./media/characters/reban/front.svg",
  24692. extra: 1287/1212,
  24693. bottom: 148/1435
  24694. }
  24695. },
  24696. head: {
  24697. height: math.unit(1.95, "feet"),
  24698. name: "Head",
  24699. image: {
  24700. source: "./media/characters/reban/head.svg"
  24701. }
  24702. },
  24703. maw: {
  24704. height: math.unit(0.95, "feet"),
  24705. name: "Maw",
  24706. image: {
  24707. source: "./media/characters/reban/maw.svg"
  24708. }
  24709. },
  24710. foot: {
  24711. height: math.unit(1.65, "feet"),
  24712. name: "Foot",
  24713. image: {
  24714. source: "./media/characters/reban/foot.svg"
  24715. }
  24716. },
  24717. dick: {
  24718. height: math.unit(7 / 5, "feet"),
  24719. name: "Dick",
  24720. image: {
  24721. source: "./media/characters/reban/dick.svg"
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Natural Height",
  24728. height: math.unit(7 + 2 / 12, "feet")
  24729. },
  24730. {
  24731. name: "Macro",
  24732. height: math.unit(500, "feet"),
  24733. default: true
  24734. },
  24735. {
  24736. name: "Canon Height",
  24737. height: math.unit(50, "AU")
  24738. },
  24739. ]
  24740. ))
  24741. characterMakers.push(() => makeCharacter(
  24742. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24743. {
  24744. front: {
  24745. height: math.unit(6, "feet"),
  24746. weight: math.unit(150, "lb"),
  24747. name: "Front",
  24748. image: {
  24749. source: "./media/characters/terrance-keayes/front.svg",
  24750. extra: 1.005,
  24751. bottom: 151 / 1615
  24752. }
  24753. },
  24754. side: {
  24755. height: math.unit(6, "feet"),
  24756. weight: math.unit(150, "lb"),
  24757. name: "Side",
  24758. image: {
  24759. source: "./media/characters/terrance-keayes/side.svg",
  24760. extra: 1.005,
  24761. bottom: 129.4 / 1544
  24762. }
  24763. },
  24764. back: {
  24765. height: math.unit(6, "feet"),
  24766. weight: math.unit(150, "lb"),
  24767. name: "Back",
  24768. image: {
  24769. source: "./media/characters/terrance-keayes/back.svg",
  24770. extra: 1.005,
  24771. bottom: 58.4 / 1557.3
  24772. }
  24773. },
  24774. dick: {
  24775. height: math.unit(6 * 0.208, "feet"),
  24776. name: "Dick",
  24777. image: {
  24778. source: "./media/characters/terrance-keayes/dick.svg"
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Canon Height",
  24785. height: math.unit(35, "miles"),
  24786. default: true
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(6, "feet"),
  24795. weight: math.unit(150, "lb"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/ofelia/front.svg",
  24799. extra: 1130/1117,
  24800. bottom: 91/1221
  24801. }
  24802. },
  24803. back: {
  24804. height: math.unit(6, "feet"),
  24805. weight: math.unit(150, "lb"),
  24806. name: "Back",
  24807. image: {
  24808. source: "./media/characters/ofelia/back.svg",
  24809. extra: 1172/1159,
  24810. bottom: 28/1200
  24811. }
  24812. },
  24813. maw: {
  24814. height: math.unit(1, "feet"),
  24815. name: "Maw",
  24816. image: {
  24817. source: "./media/characters/ofelia/maw.svg"
  24818. }
  24819. },
  24820. foot: {
  24821. height: math.unit(1.949, "feet"),
  24822. name: "Foot",
  24823. image: {
  24824. source: "./media/characters/ofelia/foot.svg"
  24825. }
  24826. },
  24827. },
  24828. [
  24829. {
  24830. name: "Canon Height",
  24831. height: math.unit(2000, "miles"),
  24832. default: true
  24833. },
  24834. ]
  24835. ))
  24836. characterMakers.push(() => makeCharacter(
  24837. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24838. {
  24839. front: {
  24840. height: math.unit(6, "feet"),
  24841. weight: math.unit(150, "lb"),
  24842. name: "Front",
  24843. image: {
  24844. source: "./media/characters/samuel/front.svg",
  24845. extra: 265 / 258,
  24846. bottom: 2 / 266.1566
  24847. }
  24848. },
  24849. },
  24850. [
  24851. {
  24852. name: "Macro",
  24853. height: math.unit(100, "feet"),
  24854. default: true
  24855. },
  24856. {
  24857. name: "Full Size",
  24858. height: math.unit(1000, "miles")
  24859. },
  24860. ]
  24861. ))
  24862. characterMakers.push(() => makeCharacter(
  24863. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24864. {
  24865. front: {
  24866. height: math.unit(6, "feet"),
  24867. weight: math.unit(300, "lb"),
  24868. name: "Front",
  24869. image: {
  24870. source: "./media/characters/beishir-kiel/front.svg",
  24871. extra: 569 / 547,
  24872. bottom: 41.9 / 609
  24873. }
  24874. },
  24875. maw: {
  24876. height: math.unit(6 * 0.202, "feet"),
  24877. name: "Maw",
  24878. image: {
  24879. source: "./media/characters/beishir-kiel/maw.svg"
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Macro",
  24886. height: math.unit(300, "feet"),
  24887. default: true
  24888. },
  24889. ]
  24890. ))
  24891. characterMakers.push(() => makeCharacter(
  24892. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24893. {
  24894. front: {
  24895. height: math.unit(5 + 7/12, "feet"),
  24896. weight: math.unit(120, "lb"),
  24897. name: "Front",
  24898. image: {
  24899. source: "./media/characters/logan-grey/front.svg",
  24900. extra: 1836/1738,
  24901. bottom: 108/1944
  24902. }
  24903. },
  24904. back: {
  24905. height: math.unit(5 + 7/12, "feet"),
  24906. weight: math.unit(120, "lb"),
  24907. name: "Back",
  24908. image: {
  24909. source: "./media/characters/logan-grey/back.svg",
  24910. extra: 1880/1794,
  24911. bottom: 24/1904
  24912. }
  24913. },
  24914. frontSfw: {
  24915. height: math.unit(5 + 7/12, "feet"),
  24916. weight: math.unit(120, "lb"),
  24917. name: "Front (SFW)",
  24918. image: {
  24919. source: "./media/characters/logan-grey/front-sfw.svg",
  24920. extra: 1836/1738,
  24921. bottom: 108/1944
  24922. }
  24923. },
  24924. backSfw: {
  24925. height: math.unit(5 + 7/12, "feet"),
  24926. weight: math.unit(120, "lb"),
  24927. name: "Back (SFW)",
  24928. image: {
  24929. source: "./media/characters/logan-grey/back-sfw.svg",
  24930. extra: 1880/1794,
  24931. bottom: 24/1904
  24932. }
  24933. },
  24934. hands: {
  24935. height: math.unit(0.84, "feet"),
  24936. name: "Hands",
  24937. image: {
  24938. source: "./media/characters/logan-grey/hands.svg"
  24939. }
  24940. },
  24941. paws: {
  24942. height: math.unit(0.72, "feet"),
  24943. name: "Paws",
  24944. image: {
  24945. source: "./media/characters/logan-grey/paws.svg"
  24946. }
  24947. },
  24948. cock: {
  24949. height: math.unit(1.45, "feet"),
  24950. name: "Cock",
  24951. image: {
  24952. source: "./media/characters/logan-grey/cock.svg"
  24953. }
  24954. },
  24955. cockAlt: {
  24956. height: math.unit(1.437, "feet"),
  24957. name: "Cock (alt)",
  24958. image: {
  24959. source: "./media/characters/logan-grey/cock-alt.svg"
  24960. }
  24961. },
  24962. },
  24963. [
  24964. {
  24965. name: "Normal",
  24966. height: math.unit(5 + 8 / 12, "feet")
  24967. },
  24968. {
  24969. name: "The 500 Foot Femboy",
  24970. height: math.unit(500, "feet"),
  24971. default: true
  24972. },
  24973. {
  24974. name: "Megmacro",
  24975. height: math.unit(20, "miles")
  24976. },
  24977. ]
  24978. ))
  24979. characterMakers.push(() => makeCharacter(
  24980. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24981. {
  24982. front: {
  24983. height: math.unit(8 + 2 / 12, "feet"),
  24984. weight: math.unit(275, "lb"),
  24985. name: "Front",
  24986. image: {
  24987. source: "./media/characters/draganta/front.svg",
  24988. extra: 1177 / 1135,
  24989. bottom: 33.46 / 1212.1
  24990. }
  24991. },
  24992. },
  24993. [
  24994. {
  24995. name: "Normal",
  24996. height: math.unit(8 + 6 / 12, "feet"),
  24997. default: true
  24998. },
  24999. {
  25000. name: "Macro",
  25001. height: math.unit(150, "feet")
  25002. },
  25003. {
  25004. name: "Megamacro",
  25005. height: math.unit(1000, "miles")
  25006. },
  25007. ]
  25008. ))
  25009. characterMakers.push(() => makeCharacter(
  25010. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25011. {
  25012. front: {
  25013. height: math.unit(1.72, "m"),
  25014. weight: math.unit(80, "lb"),
  25015. name: "Front",
  25016. image: {
  25017. source: "./media/characters/voski/front.svg",
  25018. extra: 2076.22 / 2022.4,
  25019. bottom: 102.7 / 2177.3866
  25020. }
  25021. },
  25022. frontFlaccid: {
  25023. height: math.unit(1.72, "m"),
  25024. weight: math.unit(80, "lb"),
  25025. name: "Front (Flaccid)",
  25026. image: {
  25027. source: "./media/characters/voski/front-flaccid.svg",
  25028. extra: 2076.22 / 2022.4,
  25029. bottom: 102.7 / 2177.3866
  25030. }
  25031. },
  25032. frontErect: {
  25033. height: math.unit(1.72, "m"),
  25034. weight: math.unit(80, "lb"),
  25035. name: "Front (Erect)",
  25036. image: {
  25037. source: "./media/characters/voski/front-erect.svg",
  25038. extra: 2076.22 / 2022.4,
  25039. bottom: 102.7 / 2177.3866
  25040. }
  25041. },
  25042. back: {
  25043. height: math.unit(1.72, "m"),
  25044. weight: math.unit(80, "lb"),
  25045. name: "Back",
  25046. image: {
  25047. source: "./media/characters/voski/back.svg",
  25048. extra: 2104 / 2051,
  25049. bottom: 10.45 / 2113.63
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Normal",
  25056. height: math.unit(1.72, "m")
  25057. },
  25058. {
  25059. name: "Macro",
  25060. height: math.unit(55, "m"),
  25061. default: true
  25062. },
  25063. {
  25064. name: "Macro+",
  25065. height: math.unit(300, "m")
  25066. },
  25067. {
  25068. name: "Macro++",
  25069. height: math.unit(700, "m")
  25070. },
  25071. {
  25072. name: "Macro+++",
  25073. height: math.unit(4500, "m")
  25074. },
  25075. {
  25076. name: "Macro++++",
  25077. height: math.unit(45, "km")
  25078. },
  25079. {
  25080. name: "Macro+++++",
  25081. height: math.unit(1220, "km")
  25082. },
  25083. ]
  25084. ))
  25085. characterMakers.push(() => makeCharacter(
  25086. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25087. {
  25088. front: {
  25089. height: math.unit(2.3, "m"),
  25090. weight: math.unit(304, "kg"),
  25091. name: "Front",
  25092. image: {
  25093. source: "./media/characters/icowom-lee/front.svg",
  25094. extra: 985 / 955,
  25095. bottom: 25.4 / 1012
  25096. }
  25097. },
  25098. fronttentacles: {
  25099. height: math.unit(2.3, "m"),
  25100. weight: math.unit(304, "kg"),
  25101. name: "Front-tentacles",
  25102. image: {
  25103. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25104. extra: 985 / 955,
  25105. bottom: 25.4 / 1012
  25106. }
  25107. },
  25108. back: {
  25109. height: math.unit(2.3, "m"),
  25110. weight: math.unit(304, "kg"),
  25111. name: "Back",
  25112. image: {
  25113. source: "./media/characters/icowom-lee/back.svg",
  25114. extra: 975 / 954,
  25115. bottom: 9.5 / 985
  25116. }
  25117. },
  25118. backtentacles: {
  25119. height: math.unit(2.3, "m"),
  25120. weight: math.unit(304, "kg"),
  25121. name: "Back-tentacles",
  25122. image: {
  25123. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25124. extra: 975 / 954,
  25125. bottom: 9.5 / 985
  25126. }
  25127. },
  25128. frontDressed: {
  25129. height: math.unit(2.3, "m"),
  25130. weight: math.unit(304, "kg"),
  25131. name: "Front (Dressed)",
  25132. image: {
  25133. source: "./media/characters/icowom-lee/front-dressed.svg",
  25134. extra: 3076 / 2933,
  25135. bottom: 51.4 / 3125.1889
  25136. }
  25137. },
  25138. rump: {
  25139. height: math.unit(0.776, "meters"),
  25140. name: "Rump",
  25141. image: {
  25142. source: "./media/characters/icowom-lee/rump.svg"
  25143. }
  25144. },
  25145. genitals: {
  25146. height: math.unit(0.78, "meters"),
  25147. name: "Genitals",
  25148. image: {
  25149. source: "./media/characters/icowom-lee/genitals.svg"
  25150. }
  25151. },
  25152. },
  25153. [
  25154. {
  25155. name: "Normal",
  25156. height: math.unit(2.3, "meters"),
  25157. default: true
  25158. },
  25159. {
  25160. name: "Macro",
  25161. height: math.unit(94, "meters"),
  25162. default: true
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(22, "meters"),
  25171. weight: math.unit(21000, "kg"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/shock-diamond/front.svg",
  25175. extra: 2204 / 2053,
  25176. bottom: 65 / 2239.47
  25177. }
  25178. },
  25179. frontNude: {
  25180. height: math.unit(22, "meters"),
  25181. weight: math.unit(21000, "kg"),
  25182. name: "Front (Nude)",
  25183. image: {
  25184. source: "./media/characters/shock-diamond/front-nude.svg",
  25185. extra: 2514 / 2285,
  25186. bottom: 13 / 2527.56
  25187. }
  25188. },
  25189. },
  25190. [
  25191. {
  25192. name: "Normal",
  25193. height: math.unit(3, "meters")
  25194. },
  25195. {
  25196. name: "Macro",
  25197. height: math.unit(22, "meters"),
  25198. default: true
  25199. },
  25200. ]
  25201. ))
  25202. characterMakers.push(() => makeCharacter(
  25203. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25204. {
  25205. front: {
  25206. height: math.unit(5 + 4/12, "feet"),
  25207. weight: math.unit(125, "lb"),
  25208. name: "Front",
  25209. image: {
  25210. source: "./media/characters/rory/front.svg",
  25211. extra: 1790/1681,
  25212. bottom: 66/1856
  25213. },
  25214. form: "normal",
  25215. default: true
  25216. },
  25217. back: {
  25218. height: math.unit(5 + 4/12, "feet"),
  25219. weight: math.unit(125, "lb"),
  25220. name: "Back",
  25221. image: {
  25222. source: "./media/characters/rory/back.svg",
  25223. extra: 1805/1690,
  25224. bottom: 56/1861
  25225. },
  25226. form: "normal"
  25227. },
  25228. frontDressed: {
  25229. height: math.unit(5 + 4/12, "feet"),
  25230. weight: math.unit(125, "lb"),
  25231. name: "Front (Dressed)",
  25232. image: {
  25233. source: "./media/characters/rory/front-dressed.svg",
  25234. extra: 1790/1681,
  25235. bottom: 66/1856
  25236. },
  25237. form: "normal"
  25238. },
  25239. backDressed: {
  25240. height: math.unit(5 + 4/12, "feet"),
  25241. weight: math.unit(125, "lb"),
  25242. name: "Back (Dressed)",
  25243. image: {
  25244. source: "./media/characters/rory/back-dressed.svg",
  25245. extra: 1805/1690,
  25246. bottom: 56/1861
  25247. },
  25248. form: "normal"
  25249. },
  25250. frontNsfw: {
  25251. height: math.unit(5 + 4/12, "feet"),
  25252. weight: math.unit(125, "lb"),
  25253. name: "Front (NSFW)",
  25254. image: {
  25255. source: "./media/characters/rory/front-nsfw.svg",
  25256. extra: 1790/1681,
  25257. bottom: 66/1856
  25258. },
  25259. form: "normal"
  25260. },
  25261. backNsfw: {
  25262. height: math.unit(5 + 4/12, "feet"),
  25263. weight: math.unit(125, "lb"),
  25264. name: "Back (NSFW)",
  25265. image: {
  25266. source: "./media/characters/rory/back-nsfw.svg",
  25267. extra: 1805/1690,
  25268. bottom: 56/1861
  25269. },
  25270. form: "normal"
  25271. },
  25272. dick: {
  25273. height: math.unit(0.8, "feet"),
  25274. name: "Dick",
  25275. image: {
  25276. source: "./media/characters/rory/dick.svg"
  25277. },
  25278. form: "normal"
  25279. },
  25280. thicc_front: {
  25281. height: math.unit(5 + 4/12, "feet"),
  25282. weight: math.unit(195, "lb"),
  25283. name: "Front",
  25284. image: {
  25285. source: "./media/characters/rory/thicc-front.svg",
  25286. extra: 1220/1100,
  25287. bottom: 103/1323
  25288. },
  25289. form: "thicc",
  25290. default: true
  25291. },
  25292. thicc_back: {
  25293. height: math.unit(5 + 4/12, "feet"),
  25294. weight: math.unit(195, "lb"),
  25295. name: "Back",
  25296. image: {
  25297. source: "./media/characters/rory/thicc-back.svg",
  25298. extra: 1166/1086,
  25299. bottom: 35/1201
  25300. },
  25301. form: "thicc"
  25302. },
  25303. },
  25304. [
  25305. {
  25306. name: "Micro",
  25307. height: math.unit(3, "inches"),
  25308. allForms: true
  25309. },
  25310. {
  25311. name: "Normal",
  25312. height: math.unit(5 + 4/12, "feet"),
  25313. allForms: true,
  25314. default: true
  25315. },
  25316. {
  25317. name: "Macro",
  25318. height: math.unit(90, "feet"),
  25319. allForms: true
  25320. },
  25321. {
  25322. name: "Supercharged",
  25323. height: math.unit(270, "feet"),
  25324. allForms: true
  25325. },
  25326. ],
  25327. {
  25328. "normal": {
  25329. name: "Normal",
  25330. default: true
  25331. },
  25332. "thicc": {
  25333. name: "Thicc",
  25334. },
  25335. }
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25339. {
  25340. front: {
  25341. height: math.unit(5 + 9 / 12, "feet"),
  25342. weight: math.unit(190, "lb"),
  25343. name: "Front",
  25344. image: {
  25345. source: "./media/characters/sprisk/front.svg",
  25346. extra: 1225 / 1180,
  25347. bottom: 42.7 / 1266.4
  25348. }
  25349. },
  25350. frontNsfw: {
  25351. height: math.unit(5 + 9 / 12, "feet"),
  25352. weight: math.unit(190, "lb"),
  25353. name: "Front (NSFW)",
  25354. image: {
  25355. source: "./media/characters/sprisk/front-nsfw.svg",
  25356. extra: 1225 / 1180,
  25357. bottom: 42.7 / 1266.4
  25358. }
  25359. },
  25360. back: {
  25361. height: math.unit(5 + 9 / 12, "feet"),
  25362. weight: math.unit(190, "lb"),
  25363. name: "Back",
  25364. image: {
  25365. source: "./media/characters/sprisk/back.svg",
  25366. extra: 1247 / 1200,
  25367. bottom: 5.6 / 1253.04
  25368. }
  25369. },
  25370. },
  25371. [
  25372. {
  25373. name: "Tiny",
  25374. height: math.unit(2, "inches")
  25375. },
  25376. {
  25377. name: "Normal",
  25378. height: math.unit(5 + 9 / 12, "feet"),
  25379. default: true
  25380. },
  25381. {
  25382. name: "Mini Macro",
  25383. height: math.unit(18, "feet")
  25384. },
  25385. {
  25386. name: "Macro",
  25387. height: math.unit(100, "feet")
  25388. },
  25389. {
  25390. name: "MACRO",
  25391. height: math.unit(50, "miles")
  25392. },
  25393. {
  25394. name: "M A C R O",
  25395. height: math.unit(300, "miles")
  25396. },
  25397. ]
  25398. ))
  25399. characterMakers.push(() => makeCharacter(
  25400. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25401. {
  25402. side: {
  25403. height: math.unit(15.6, "meters"),
  25404. weight: math.unit(700000, "kg"),
  25405. name: "Side",
  25406. image: {
  25407. source: "./media/characters/bunsen/side.svg",
  25408. extra: 1644 / 358
  25409. }
  25410. },
  25411. foot: {
  25412. height: math.unit(1.611 * 1644 / 358, "meter"),
  25413. name: "Foot",
  25414. image: {
  25415. source: "./media/characters/bunsen/foot.svg"
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Small",
  25422. height: math.unit(10, "feet")
  25423. },
  25424. {
  25425. name: "Normal",
  25426. height: math.unit(15.6, "meters"),
  25427. default: true
  25428. },
  25429. ]
  25430. ))
  25431. characterMakers.push(() => makeCharacter(
  25432. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25433. {
  25434. front: {
  25435. height: math.unit(4 + 11 / 12, "feet"),
  25436. weight: math.unit(140, "lb"),
  25437. name: "Front",
  25438. image: {
  25439. source: "./media/characters/sesh/front.svg",
  25440. extra: 3420 / 3231,
  25441. bottom: 72 / 3949.5
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Normal",
  25448. height: math.unit(4 + 11 / 12, "feet")
  25449. },
  25450. {
  25451. name: "Grown",
  25452. height: math.unit(15, "feet"),
  25453. default: true
  25454. },
  25455. {
  25456. name: "Macro",
  25457. height: math.unit(1500, "feet")
  25458. },
  25459. {
  25460. name: "Megamacro",
  25461. height: math.unit(30, "miles")
  25462. },
  25463. {
  25464. name: "Continental",
  25465. height: math.unit(3000, "miles")
  25466. },
  25467. {
  25468. name: "Gravity Mass",
  25469. height: math.unit(300000, "miles")
  25470. },
  25471. {
  25472. name: "Planet Buster",
  25473. height: math.unit(30000000, "miles")
  25474. },
  25475. {
  25476. name: "Big",
  25477. height: math.unit(3000000000, "miles")
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25483. {
  25484. front: {
  25485. height: math.unit(9, "feet"),
  25486. weight: math.unit(350, "lb"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/pepper/front.svg",
  25490. extra: 1448 / 1312,
  25491. bottom: 9.4 / 1457.88
  25492. }
  25493. },
  25494. back: {
  25495. height: math.unit(9, "feet"),
  25496. weight: math.unit(350, "lb"),
  25497. name: "Back",
  25498. image: {
  25499. source: "./media/characters/pepper/back.svg",
  25500. extra: 1423 / 1300,
  25501. bottom: 4.6 / 1429
  25502. }
  25503. },
  25504. maw: {
  25505. height: math.unit(0.932, "feet"),
  25506. name: "Maw",
  25507. image: {
  25508. source: "./media/characters/pepper/maw.svg"
  25509. }
  25510. },
  25511. },
  25512. [
  25513. {
  25514. name: "Normal",
  25515. height: math.unit(9, "feet"),
  25516. default: true
  25517. },
  25518. ]
  25519. ))
  25520. characterMakers.push(() => makeCharacter(
  25521. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25522. {
  25523. front: {
  25524. height: math.unit(6, "feet"),
  25525. weight: math.unit(150, "lb"),
  25526. name: "Front",
  25527. image: {
  25528. source: "./media/characters/maelstrom/front.svg",
  25529. extra: 2100 / 1883,
  25530. bottom: 94 / 2196.7
  25531. }
  25532. },
  25533. },
  25534. [
  25535. {
  25536. name: "Less Kaiju",
  25537. height: math.unit(200, "feet")
  25538. },
  25539. {
  25540. name: "Kaiju",
  25541. height: math.unit(400, "feet"),
  25542. default: true
  25543. },
  25544. {
  25545. name: "Kaiju-er",
  25546. height: math.unit(600, "feet")
  25547. },
  25548. ]
  25549. ))
  25550. characterMakers.push(() => makeCharacter(
  25551. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25552. {
  25553. front: {
  25554. height: math.unit(6 + 5 / 12, "feet"),
  25555. weight: math.unit(180, "lb"),
  25556. name: "Front",
  25557. image: {
  25558. source: "./media/characters/lexir/front.svg",
  25559. extra: 180 / 172,
  25560. bottom: 12 / 192
  25561. }
  25562. },
  25563. back: {
  25564. height: math.unit(6 + 5 / 12, "feet"),
  25565. weight: math.unit(180, "lb"),
  25566. name: "Back",
  25567. image: {
  25568. source: "./media/characters/lexir/back.svg",
  25569. extra: 1273/1201,
  25570. bottom: 39/1312
  25571. }
  25572. },
  25573. },
  25574. [
  25575. {
  25576. name: "Very Smal",
  25577. height: math.unit(1, "nm")
  25578. },
  25579. {
  25580. name: "Normal",
  25581. height: math.unit(6 + 5 / 12, "feet"),
  25582. default: true
  25583. },
  25584. {
  25585. name: "Macro",
  25586. height: math.unit(1, "mile")
  25587. },
  25588. {
  25589. name: "Megamacro",
  25590. height: math.unit(50, "miles")
  25591. },
  25592. ]
  25593. ))
  25594. characterMakers.push(() => makeCharacter(
  25595. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25596. {
  25597. front: {
  25598. height: math.unit(1.5, "meters"),
  25599. weight: math.unit(100, "lb"),
  25600. name: "Front",
  25601. image: {
  25602. source: "./media/characters/maksio/front.svg",
  25603. extra: 1549 / 1531,
  25604. bottom: 123.7 / 1674.5429
  25605. }
  25606. },
  25607. back: {
  25608. height: math.unit(1.5, "meters"),
  25609. weight: math.unit(100, "lb"),
  25610. name: "Back",
  25611. image: {
  25612. source: "./media/characters/maksio/back.svg",
  25613. extra: 1541 / 1509,
  25614. bottom: 97 / 1639
  25615. }
  25616. },
  25617. hand: {
  25618. height: math.unit(0.621, "feet"),
  25619. name: "Hand",
  25620. image: {
  25621. source: "./media/characters/maksio/hand.svg"
  25622. }
  25623. },
  25624. foot: {
  25625. height: math.unit(1.611, "feet"),
  25626. name: "Foot",
  25627. image: {
  25628. source: "./media/characters/maksio/foot.svg"
  25629. }
  25630. },
  25631. },
  25632. [
  25633. {
  25634. name: "Shrunken",
  25635. height: math.unit(10, "cm")
  25636. },
  25637. {
  25638. name: "Normal",
  25639. height: math.unit(150, "cm"),
  25640. default: true
  25641. },
  25642. ]
  25643. ))
  25644. characterMakers.push(() => makeCharacter(
  25645. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25646. {
  25647. front: {
  25648. height: math.unit(100, "feet"),
  25649. name: "Front",
  25650. image: {
  25651. source: "./media/characters/erza-bear/front.svg",
  25652. extra: 2449 / 2390,
  25653. bottom: 46 / 2494
  25654. }
  25655. },
  25656. back: {
  25657. height: math.unit(100, "feet"),
  25658. name: "Back",
  25659. image: {
  25660. source: "./media/characters/erza-bear/back.svg",
  25661. extra: 2489 / 2430,
  25662. bottom: 85.4 / 2480
  25663. }
  25664. },
  25665. tail: {
  25666. height: math.unit(42, "feet"),
  25667. name: "Tail",
  25668. image: {
  25669. source: "./media/characters/erza-bear/tail.svg"
  25670. }
  25671. },
  25672. tongue: {
  25673. height: math.unit(8, "feet"),
  25674. name: "Tongue",
  25675. image: {
  25676. source: "./media/characters/erza-bear/tongue.svg"
  25677. }
  25678. },
  25679. dick: {
  25680. height: math.unit(10.5, "feet"),
  25681. name: "Dick",
  25682. image: {
  25683. source: "./media/characters/erza-bear/dick.svg"
  25684. }
  25685. },
  25686. dickVertical: {
  25687. height: math.unit(16.9, "feet"),
  25688. name: "Dick (Vertical)",
  25689. image: {
  25690. source: "./media/characters/erza-bear/dick-vertical.svg"
  25691. }
  25692. },
  25693. },
  25694. [
  25695. {
  25696. name: "Macro",
  25697. height: math.unit(100, "feet"),
  25698. default: true
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25704. {
  25705. front: {
  25706. height: math.unit(172, "cm"),
  25707. weight: math.unit(73, "kg"),
  25708. name: "Front",
  25709. image: {
  25710. source: "./media/characters/violet-flor/front.svg",
  25711. extra: 1530 / 1442,
  25712. bottom: 61.9 / 1588.8
  25713. }
  25714. },
  25715. back: {
  25716. height: math.unit(180, "cm"),
  25717. weight: math.unit(73, "kg"),
  25718. name: "Back",
  25719. image: {
  25720. source: "./media/characters/violet-flor/back.svg",
  25721. extra: 1692 / 1630,
  25722. bottom: 20 / 1712
  25723. }
  25724. },
  25725. },
  25726. [
  25727. {
  25728. name: "Normal",
  25729. height: math.unit(172, "cm"),
  25730. default: true
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25736. {
  25737. front: {
  25738. height: math.unit(6, "feet"),
  25739. weight: math.unit(220, "lb"),
  25740. name: "Front",
  25741. image: {
  25742. source: "./media/characters/lynn-rhea/front.svg",
  25743. extra: 310 / 273
  25744. }
  25745. },
  25746. back: {
  25747. height: math.unit(6, "feet"),
  25748. weight: math.unit(220, "lb"),
  25749. name: "Back",
  25750. image: {
  25751. source: "./media/characters/lynn-rhea/back.svg",
  25752. extra: 310 / 273
  25753. }
  25754. },
  25755. dicks: {
  25756. height: math.unit(0.9, "feet"),
  25757. name: "Dicks",
  25758. image: {
  25759. source: "./media/characters/lynn-rhea/dicks.svg"
  25760. }
  25761. },
  25762. slit: {
  25763. height: math.unit(0.4, "feet"),
  25764. name: "Slit",
  25765. image: {
  25766. source: "./media/characters/lynn-rhea/slit.svg"
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Micro",
  25773. height: math.unit(1, "inch")
  25774. },
  25775. {
  25776. name: "Macro",
  25777. height: math.unit(60, "feet"),
  25778. default: true
  25779. },
  25780. {
  25781. name: "Megamacro",
  25782. height: math.unit(2, "miles")
  25783. },
  25784. {
  25785. name: "Gigamacro",
  25786. height: math.unit(3, "earths")
  25787. },
  25788. {
  25789. name: "Galactic",
  25790. height: math.unit(0.8, "galaxies")
  25791. },
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25796. {
  25797. front: {
  25798. height: math.unit(1600, "feet"),
  25799. weight: math.unit(85758785169, "kg"),
  25800. name: "Front",
  25801. image: {
  25802. source: "./media/characters/valathos/front.svg",
  25803. extra: 1451 / 1339
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Macro",
  25810. height: math.unit(1600, "feet"),
  25811. default: true
  25812. },
  25813. ]
  25814. ))
  25815. characterMakers.push(() => makeCharacter(
  25816. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25817. {
  25818. front: {
  25819. height: math.unit(7 + 5 / 12, "feet"),
  25820. weight: math.unit(300, "lb"),
  25821. name: "Front",
  25822. image: {
  25823. source: "./media/characters/azula/front.svg",
  25824. extra: 3208 / 2880,
  25825. bottom: 80.2 / 3277
  25826. }
  25827. },
  25828. back: {
  25829. height: math.unit(7 + 5 / 12, "feet"),
  25830. weight: math.unit(300, "lb"),
  25831. name: "Back",
  25832. image: {
  25833. source: "./media/characters/azula/back.svg",
  25834. extra: 3169 / 2822,
  25835. bottom: 150.6 / 3321
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(7 + 5 / 12, "feet"),
  25843. default: true
  25844. },
  25845. {
  25846. name: "Big",
  25847. height: math.unit(20, "feet")
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25853. {
  25854. front: {
  25855. height: math.unit(5 + 1 / 12, "feet"),
  25856. weight: math.unit(110, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/rupert/front.svg",
  25860. extra: 1549 / 1495,
  25861. bottom: 54.2 / 1604.4
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Normal",
  25868. height: math.unit(5 + 1 / 12, "feet"),
  25869. default: true
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25875. {
  25876. front: {
  25877. height: math.unit(8 + 4 / 12, "feet"),
  25878. weight: math.unit(350, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/sheera-castellar/front.svg",
  25882. extra: 1957 / 1894,
  25883. bottom: 26.97 / 1975.017
  25884. }
  25885. },
  25886. side: {
  25887. height: math.unit(8 + 4 / 12, "feet"),
  25888. weight: math.unit(350, "lb"),
  25889. name: "Side",
  25890. image: {
  25891. source: "./media/characters/sheera-castellar/side.svg",
  25892. extra: 1957 / 1894
  25893. }
  25894. },
  25895. back: {
  25896. height: math.unit(8 + 4 / 12, "feet"),
  25897. weight: math.unit(350, "lb"),
  25898. name: "Back",
  25899. image: {
  25900. source: "./media/characters/sheera-castellar/back.svg",
  25901. extra: 1957 / 1894
  25902. }
  25903. },
  25904. angled: {
  25905. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25906. weight: math.unit(350, "lb"),
  25907. name: "Angled",
  25908. image: {
  25909. source: "./media/characters/sheera-castellar/angled.svg",
  25910. extra: 1807 / 1707,
  25911. bottom: 68 / 1875
  25912. }
  25913. },
  25914. genitals: {
  25915. height: math.unit(2.2, "feet"),
  25916. name: "Genitals",
  25917. image: {
  25918. source: "./media/characters/sheera-castellar/genitals.svg"
  25919. }
  25920. },
  25921. taur: {
  25922. height: math.unit(10 + 6/12, "feet"),
  25923. name: "Taur",
  25924. image: {
  25925. source: "./media/characters/sheera-castellar/taur.svg",
  25926. extra: 2017/1909,
  25927. bottom: 185/2202
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Normal",
  25934. height: math.unit(8 + 4 / 12, "feet")
  25935. },
  25936. {
  25937. name: "Macro",
  25938. height: math.unit(150, "feet"),
  25939. default: true
  25940. },
  25941. {
  25942. name: "Macro+",
  25943. height: math.unit(800, "feet")
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(6, "feet"),
  25952. weight: math.unit(150, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/jaipur/front.svg",
  25956. extra: 3860 / 3731,
  25957. bottom: 287 / 4140
  25958. }
  25959. },
  25960. back: {
  25961. height: math.unit(6, "feet"),
  25962. weight: math.unit(150, "lb"),
  25963. name: "Back",
  25964. image: {
  25965. source: "./media/characters/jaipur/back.svg",
  25966. extra: 1637/1561,
  25967. bottom: 154/1791
  25968. }
  25969. },
  25970. },
  25971. [
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(1.85, "meters"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Macro",
  25979. height: math.unit(150, "meters")
  25980. },
  25981. {
  25982. name: "Macro+",
  25983. height: math.unit(0.5, "miles")
  25984. },
  25985. {
  25986. name: "Macro++",
  25987. height: math.unit(2.5, "miles")
  25988. },
  25989. {
  25990. name: "Macro+++",
  25991. height: math.unit(12, "miles")
  25992. },
  25993. {
  25994. name: "Macro++++",
  25995. height: math.unit(120, "miles")
  25996. },
  25997. {
  25998. name: "Macro+++++",
  25999. height: math.unit(1200, "miles")
  26000. },
  26001. ]
  26002. ))
  26003. characterMakers.push(() => makeCharacter(
  26004. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26005. {
  26006. front: {
  26007. height: math.unit(6, "feet"),
  26008. weight: math.unit(150, "lb"),
  26009. name: "Front",
  26010. image: {
  26011. source: "./media/characters/sheila-wolf/front.svg",
  26012. extra: 1931 / 1808,
  26013. bottom: 29.5 / 1960
  26014. }
  26015. },
  26016. dick: {
  26017. height: math.unit(1.464, "feet"),
  26018. name: "Dick",
  26019. image: {
  26020. source: "./media/characters/sheila-wolf/dick.svg"
  26021. }
  26022. },
  26023. muzzle: {
  26024. height: math.unit(0.513, "feet"),
  26025. name: "Muzzle",
  26026. image: {
  26027. source: "./media/characters/sheila-wolf/muzzle.svg"
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Macro",
  26034. height: math.unit(70, "feet"),
  26035. default: true
  26036. },
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26041. {
  26042. front: {
  26043. height: math.unit(32, "meters"),
  26044. weight: math.unit(300000, "kg"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/almor/front.svg",
  26048. extra: 1408 / 1322,
  26049. bottom: 94.6 / 1506.5
  26050. }
  26051. },
  26052. },
  26053. [
  26054. {
  26055. name: "Macro",
  26056. height: math.unit(32, "meters"),
  26057. default: true
  26058. },
  26059. ]
  26060. ))
  26061. characterMakers.push(() => makeCharacter(
  26062. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26063. {
  26064. front: {
  26065. height: math.unit(7, "feet"),
  26066. weight: math.unit(200, "lb"),
  26067. name: "Front",
  26068. image: {
  26069. source: "./media/characters/silver/front.svg",
  26070. extra: 472.1 / 450.5,
  26071. bottom: 26.5 / 499.424
  26072. }
  26073. },
  26074. },
  26075. [
  26076. {
  26077. name: "Normal",
  26078. height: math.unit(7, "feet"),
  26079. default: true
  26080. },
  26081. {
  26082. name: "Macro",
  26083. height: math.unit(800, "feet")
  26084. },
  26085. {
  26086. name: "Megamacro",
  26087. height: math.unit(250, "miles")
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26093. {
  26094. front: {
  26095. height: math.unit(6, "feet"),
  26096. weight: math.unit(150, "lb"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/pliskin/front.svg",
  26100. extra: 1469 / 1359,
  26101. bottom: 70 / 1540
  26102. }
  26103. },
  26104. },
  26105. [
  26106. {
  26107. name: "Micro",
  26108. height: math.unit(3, "inches")
  26109. },
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(5 + 11 / 12, "feet"),
  26113. default: true
  26114. },
  26115. {
  26116. name: "Macro",
  26117. height: math.unit(120, "feet")
  26118. },
  26119. ]
  26120. ))
  26121. characterMakers.push(() => makeCharacter(
  26122. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26123. {
  26124. front: {
  26125. height: math.unit(6, "feet"),
  26126. weight: math.unit(150, "lb"),
  26127. name: "Front",
  26128. image: {
  26129. source: "./media/characters/sammy/front.svg",
  26130. extra: 1193 / 1089,
  26131. bottom: 30.5 / 1226
  26132. }
  26133. },
  26134. },
  26135. [
  26136. {
  26137. name: "Macro",
  26138. height: math.unit(1700, "feet"),
  26139. default: true
  26140. },
  26141. {
  26142. name: "Examacro",
  26143. height: math.unit(2.5e9, "lightyears")
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26149. {
  26150. front: {
  26151. height: math.unit(21, "meters"),
  26152. weight: math.unit(12, "tonnes"),
  26153. name: "Front",
  26154. image: {
  26155. source: "./media/characters/kuru/front.svg",
  26156. extra: 4301 / 3785,
  26157. bottom: 371.3 / 4691
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Macro",
  26164. height: math.unit(21, "meters"),
  26165. default: true
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26171. {
  26172. front: {
  26173. height: math.unit(23, "meters"),
  26174. weight: math.unit(12.2, "tonnes"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/rakka/front.svg",
  26178. extra: 4670 / 4169,
  26179. bottom: 301 / 4968.7
  26180. }
  26181. },
  26182. },
  26183. [
  26184. {
  26185. name: "Macro",
  26186. height: math.unit(23, "meters"),
  26187. default: true
  26188. },
  26189. ]
  26190. ))
  26191. characterMakers.push(() => makeCharacter(
  26192. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26193. {
  26194. front: {
  26195. height: math.unit(6, "feet"),
  26196. weight: math.unit(150, "lb"),
  26197. name: "Front",
  26198. image: {
  26199. source: "./media/characters/rhys-feline/front.svg",
  26200. extra: 2488 / 2308,
  26201. bottom: 35.67 / 2519.19
  26202. }
  26203. },
  26204. },
  26205. [
  26206. {
  26207. name: "Really Small",
  26208. height: math.unit(1, "nm")
  26209. },
  26210. {
  26211. name: "Micro",
  26212. height: math.unit(4, "inches")
  26213. },
  26214. {
  26215. name: "Normal",
  26216. height: math.unit(4 + 10 / 12, "feet"),
  26217. default: true
  26218. },
  26219. {
  26220. name: "Macro",
  26221. height: math.unit(100, "feet")
  26222. },
  26223. {
  26224. name: "Megamacto",
  26225. height: math.unit(50, "miles")
  26226. },
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26231. {
  26232. side: {
  26233. height: math.unit(30, "feet"),
  26234. weight: math.unit(35000, "kg"),
  26235. name: "Side",
  26236. image: {
  26237. source: "./media/characters/alydar/side.svg",
  26238. extra: 234 / 222,
  26239. bottom: 6.5 / 241
  26240. }
  26241. },
  26242. front: {
  26243. height: math.unit(30, "feet"),
  26244. weight: math.unit(35000, "kg"),
  26245. name: "Front",
  26246. image: {
  26247. source: "./media/characters/alydar/front.svg",
  26248. extra: 223.37 / 210.2,
  26249. bottom: 22.3 / 246.76
  26250. }
  26251. },
  26252. top: {
  26253. height: math.unit(64.54, "feet"),
  26254. weight: math.unit(35000, "kg"),
  26255. name: "Top",
  26256. image: {
  26257. source: "./media/characters/alydar/top.svg"
  26258. }
  26259. },
  26260. anthro: {
  26261. height: math.unit(30, "feet"),
  26262. weight: math.unit(9000, "kg"),
  26263. name: "Anthro",
  26264. image: {
  26265. source: "./media/characters/alydar/anthro.svg",
  26266. extra: 432 / 421,
  26267. bottom: 7.18 / 440
  26268. }
  26269. },
  26270. maw: {
  26271. height: math.unit(11.693, "feet"),
  26272. name: "Maw",
  26273. image: {
  26274. source: "./media/characters/alydar/maw.svg"
  26275. }
  26276. },
  26277. head: {
  26278. height: math.unit(11.693, "feet"),
  26279. name: "Head",
  26280. image: {
  26281. source: "./media/characters/alydar/head.svg"
  26282. }
  26283. },
  26284. headAlt: {
  26285. height: math.unit(12.861, "feet"),
  26286. name: "Head (Alt)",
  26287. image: {
  26288. source: "./media/characters/alydar/head-alt.svg"
  26289. }
  26290. },
  26291. wing: {
  26292. height: math.unit(20.712, "feet"),
  26293. name: "Wing",
  26294. image: {
  26295. source: "./media/characters/alydar/wing.svg"
  26296. }
  26297. },
  26298. wingFeather: {
  26299. height: math.unit(9.662, "feet"),
  26300. name: "Wing Feather",
  26301. image: {
  26302. source: "./media/characters/alydar/wing-feather.svg"
  26303. }
  26304. },
  26305. countourFeather: {
  26306. height: math.unit(4.154, "feet"),
  26307. name: "Contour Feather",
  26308. image: {
  26309. source: "./media/characters/alydar/contour-feather.svg"
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Diplomatic",
  26316. height: math.unit(13, "feet"),
  26317. default: true
  26318. },
  26319. {
  26320. name: "Small",
  26321. height: math.unit(30, "feet")
  26322. },
  26323. {
  26324. name: "Normal",
  26325. height: math.unit(95, "feet"),
  26326. default: true
  26327. },
  26328. {
  26329. name: "Large",
  26330. height: math.unit(285, "feet")
  26331. },
  26332. {
  26333. name: "Incomprehensible",
  26334. height: math.unit(450, "megameters")
  26335. },
  26336. ]
  26337. ))
  26338. characterMakers.push(() => makeCharacter(
  26339. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26340. {
  26341. side: {
  26342. height: math.unit(11, "feet"),
  26343. weight: math.unit(1750, "kg"),
  26344. name: "Side",
  26345. image: {
  26346. source: "./media/characters/selicia/side.svg",
  26347. extra: 440 / 396,
  26348. bottom: 24.8 / 465.979
  26349. }
  26350. },
  26351. maw: {
  26352. height: math.unit(4.665, "feet"),
  26353. name: "Maw",
  26354. image: {
  26355. source: "./media/characters/selicia/maw.svg"
  26356. }
  26357. },
  26358. },
  26359. [
  26360. {
  26361. name: "Normal",
  26362. height: math.unit(11, "feet"),
  26363. default: true
  26364. },
  26365. ]
  26366. ))
  26367. characterMakers.push(() => makeCharacter(
  26368. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26369. {
  26370. side: {
  26371. height: math.unit(2 + 6 / 12, "feet"),
  26372. weight: math.unit(30, "lb"),
  26373. name: "Side",
  26374. image: {
  26375. source: "./media/characters/layla/side.svg",
  26376. extra: 244 / 188,
  26377. bottom: 18.2 / 262.1
  26378. }
  26379. },
  26380. back: {
  26381. height: math.unit(2 + 6 / 12, "feet"),
  26382. weight: math.unit(30, "lb"),
  26383. name: "Back",
  26384. image: {
  26385. source: "./media/characters/layla/back.svg",
  26386. extra: 308 / 241.5,
  26387. bottom: 8.9 / 316.8
  26388. }
  26389. },
  26390. cumming: {
  26391. height: math.unit(2 + 6 / 12, "feet"),
  26392. weight: math.unit(30, "lb"),
  26393. name: "Cumming",
  26394. image: {
  26395. source: "./media/characters/layla/cumming.svg",
  26396. extra: 342 / 279,
  26397. bottom: 595 / 938
  26398. }
  26399. },
  26400. dickFlaccid: {
  26401. height: math.unit(2.595, "feet"),
  26402. name: "Flaccid Genitals",
  26403. image: {
  26404. source: "./media/characters/layla/dick-flaccid.svg"
  26405. }
  26406. },
  26407. dickErect: {
  26408. height: math.unit(2.359, "feet"),
  26409. name: "Erect Genitals",
  26410. image: {
  26411. source: "./media/characters/layla/dick-erect.svg"
  26412. }
  26413. },
  26414. dragon: {
  26415. height: math.unit(40, "feet"),
  26416. name: "Dragon",
  26417. image: {
  26418. source: "./media/characters/layla/dragon.svg",
  26419. extra: 610/535,
  26420. bottom: 367/977
  26421. }
  26422. },
  26423. taur: {
  26424. height: math.unit(30, "feet"),
  26425. name: "Taur",
  26426. image: {
  26427. source: "./media/characters/layla/taur.svg",
  26428. extra: 1268/1199,
  26429. bottom: 112/1380
  26430. }
  26431. },
  26432. },
  26433. [
  26434. {
  26435. name: "Micro",
  26436. height: math.unit(1, "inch")
  26437. },
  26438. {
  26439. name: "Small",
  26440. height: math.unit(1, "foot")
  26441. },
  26442. {
  26443. name: "Normal",
  26444. height: math.unit(2 + 6 / 12, "feet"),
  26445. default: true
  26446. },
  26447. {
  26448. name: "Macro",
  26449. height: math.unit(200, "feet")
  26450. },
  26451. {
  26452. name: "Megamacro",
  26453. height: math.unit(1000, "miles")
  26454. },
  26455. {
  26456. name: "Planetary",
  26457. height: math.unit(8000, "miles")
  26458. },
  26459. {
  26460. name: "True Layla",
  26461. height: math.unit(200000 * 7, "multiverses")
  26462. },
  26463. ]
  26464. ))
  26465. characterMakers.push(() => makeCharacter(
  26466. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26467. {
  26468. back: {
  26469. height: math.unit(10.5, "feet"),
  26470. weight: math.unit(800, "lb"),
  26471. name: "Back",
  26472. image: {
  26473. source: "./media/characters/knox/back.svg",
  26474. extra: 1486 / 1089,
  26475. bottom: 107 / 1601.4
  26476. }
  26477. },
  26478. side: {
  26479. height: math.unit(10.5, "feet"),
  26480. weight: math.unit(800, "lb"),
  26481. name: "Side",
  26482. image: {
  26483. source: "./media/characters/knox/side.svg",
  26484. extra: 244 / 218,
  26485. bottom: 14 / 260
  26486. }
  26487. },
  26488. },
  26489. [
  26490. {
  26491. name: "Compact",
  26492. height: math.unit(10.5, "feet"),
  26493. default: true
  26494. },
  26495. {
  26496. name: "Dynamax",
  26497. height: math.unit(210, "feet")
  26498. },
  26499. {
  26500. name: "Full Macro",
  26501. height: math.unit(850, "feet")
  26502. },
  26503. ]
  26504. ))
  26505. characterMakers.push(() => makeCharacter(
  26506. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26507. {
  26508. front: {
  26509. height: math.unit(28, "feet"),
  26510. weight: math.unit(10500, "lb"),
  26511. name: "Front",
  26512. image: {
  26513. source: "./media/characters/kayda/front.svg",
  26514. extra: 1536 / 1428,
  26515. bottom: 68.7 / 1603
  26516. }
  26517. },
  26518. back: {
  26519. height: math.unit(28, "feet"),
  26520. weight: math.unit(10500, "lb"),
  26521. name: "Back",
  26522. image: {
  26523. source: "./media/characters/kayda/back.svg",
  26524. extra: 1557 / 1464,
  26525. bottom: 39.5 / 1597.49
  26526. }
  26527. },
  26528. dick: {
  26529. height: math.unit(3.858, "feet"),
  26530. name: "Dick",
  26531. image: {
  26532. source: "./media/characters/kayda/dick.svg"
  26533. }
  26534. },
  26535. },
  26536. [
  26537. {
  26538. name: "Macro",
  26539. height: math.unit(28, "feet"),
  26540. default: true
  26541. },
  26542. ]
  26543. ))
  26544. characterMakers.push(() => makeCharacter(
  26545. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26546. {
  26547. front: {
  26548. height: math.unit(10 + 11 / 12, "feet"),
  26549. weight: math.unit(1400, "lb"),
  26550. name: "Front",
  26551. image: {
  26552. source: "./media/characters/brian/front.svg",
  26553. extra: 737 / 692,
  26554. bottom: 55.4 / 785
  26555. }
  26556. },
  26557. },
  26558. [
  26559. {
  26560. name: "Normal",
  26561. height: math.unit(10 + 11 / 12, "feet"),
  26562. default: true
  26563. },
  26564. ]
  26565. ))
  26566. characterMakers.push(() => makeCharacter(
  26567. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26568. {
  26569. front: {
  26570. height: math.unit(5 + 8 / 12, "feet"),
  26571. weight: math.unit(140, "lb"),
  26572. name: "Front",
  26573. image: {
  26574. source: "./media/characters/khemri/front.svg",
  26575. extra: 4780 / 4059,
  26576. bottom: 80.1 / 4859.25
  26577. }
  26578. },
  26579. },
  26580. [
  26581. {
  26582. name: "Micro",
  26583. height: math.unit(6, "inches")
  26584. },
  26585. {
  26586. name: "Normal",
  26587. height: math.unit(5 + 8 / 12, "feet"),
  26588. default: true
  26589. },
  26590. ]
  26591. ))
  26592. characterMakers.push(() => makeCharacter(
  26593. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26594. {
  26595. front: {
  26596. height: math.unit(13, "feet"),
  26597. weight: math.unit(1700, "lb"),
  26598. name: "Front",
  26599. image: {
  26600. source: "./media/characters/felix-braveheart/front.svg",
  26601. extra: 1222 / 1157,
  26602. bottom: 53.2 / 1280
  26603. }
  26604. },
  26605. back: {
  26606. height: math.unit(13, "feet"),
  26607. weight: math.unit(1700, "lb"),
  26608. name: "Back",
  26609. image: {
  26610. source: "./media/characters/felix-braveheart/back.svg",
  26611. extra: 1277 / 1203,
  26612. bottom: 50.2 / 1327
  26613. }
  26614. },
  26615. feral: {
  26616. height: math.unit(6, "feet"),
  26617. weight: math.unit(400, "lb"),
  26618. name: "Feral",
  26619. image: {
  26620. source: "./media/characters/felix-braveheart/feral.svg",
  26621. extra: 682 / 625,
  26622. bottom: 6.9 / 688
  26623. }
  26624. },
  26625. },
  26626. [
  26627. {
  26628. name: "Normal",
  26629. height: math.unit(13, "feet"),
  26630. default: true
  26631. },
  26632. ]
  26633. ))
  26634. characterMakers.push(() => makeCharacter(
  26635. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26636. {
  26637. side: {
  26638. height: math.unit(5 + 11 / 12, "feet"),
  26639. weight: math.unit(1400, "lb"),
  26640. name: "Side",
  26641. image: {
  26642. source: "./media/characters/shadow-blade/side.svg",
  26643. extra: 1726 / 1267,
  26644. bottom: 58.4 / 1785
  26645. }
  26646. },
  26647. },
  26648. [
  26649. {
  26650. name: "Normal",
  26651. height: math.unit(5 + 11 / 12, "feet"),
  26652. default: true
  26653. },
  26654. ]
  26655. ))
  26656. characterMakers.push(() => makeCharacter(
  26657. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26658. {
  26659. front: {
  26660. height: math.unit(1 + 6 / 12, "feet"),
  26661. weight: math.unit(25, "lb"),
  26662. name: "Front",
  26663. image: {
  26664. source: "./media/characters/karla-halldor/front.svg",
  26665. extra: 1459 / 1383,
  26666. bottom: 12 / 1472
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Normal",
  26673. height: math.unit(1 + 6 / 12, "feet"),
  26674. default: true
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26680. {
  26681. front: {
  26682. height: math.unit(6 + 2 / 12, "feet"),
  26683. weight: math.unit(160, "lb"),
  26684. name: "Front",
  26685. image: {
  26686. source: "./media/characters/ariam/front.svg",
  26687. extra: 1073/976,
  26688. bottom: 52/1125
  26689. }
  26690. },
  26691. back: {
  26692. height: math.unit(6 + 2/12, "feet"),
  26693. weight: math.unit(160, "lb"),
  26694. name: "Back",
  26695. image: {
  26696. source: "./media/characters/ariam/back.svg",
  26697. extra: 1103/1023,
  26698. bottom: 9/1112
  26699. }
  26700. },
  26701. dressed: {
  26702. height: math.unit(6 + 2/12, "feet"),
  26703. weight: math.unit(160, "lb"),
  26704. name: "Dressed",
  26705. image: {
  26706. source: "./media/characters/ariam/dressed.svg",
  26707. extra: 1099/1009,
  26708. bottom: 25/1124
  26709. }
  26710. },
  26711. squatting: {
  26712. height: math.unit(4.1, "feet"),
  26713. weight: math.unit(160, "lb"),
  26714. name: "Squatting",
  26715. image: {
  26716. source: "./media/characters/ariam/squatting.svg",
  26717. extra: 2617 / 2112,
  26718. bottom: 61.2 / 2681,
  26719. }
  26720. },
  26721. },
  26722. [
  26723. {
  26724. name: "Normal",
  26725. height: math.unit(6 + 2 / 12, "feet"),
  26726. default: true
  26727. },
  26728. {
  26729. name: "Normal+",
  26730. height: math.unit(4, "meters")
  26731. },
  26732. {
  26733. name: "Macro",
  26734. height: math.unit(50, "meters")
  26735. },
  26736. {
  26737. name: "Macro+",
  26738. height: math.unit(100, "meters")
  26739. },
  26740. {
  26741. name: "Megamacro",
  26742. height: math.unit(20, "km")
  26743. },
  26744. {
  26745. name: "Caretaker",
  26746. height: math.unit(444, "megameters")
  26747. },
  26748. ]
  26749. ))
  26750. characterMakers.push(() => makeCharacter(
  26751. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26752. {
  26753. front: {
  26754. height: math.unit(1.67, "meters"),
  26755. weight: math.unit(140, "lb"),
  26756. name: "Front",
  26757. image: {
  26758. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26759. extra: 438 / 410,
  26760. bottom: 0.75 / 439
  26761. }
  26762. },
  26763. },
  26764. [
  26765. {
  26766. name: "Shrunken",
  26767. height: math.unit(7.6, "cm")
  26768. },
  26769. {
  26770. name: "Human Scale",
  26771. height: math.unit(1.67, "meters")
  26772. },
  26773. {
  26774. name: "Wolxi Scale",
  26775. height: math.unit(36.7, "meters"),
  26776. default: true
  26777. },
  26778. ]
  26779. ))
  26780. characterMakers.push(() => makeCharacter(
  26781. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26782. {
  26783. front: {
  26784. height: math.unit(1.73, "meters"),
  26785. weight: math.unit(240, "lb"),
  26786. name: "Front",
  26787. image: {
  26788. source: "./media/characters/izue-two-mothers/front.svg",
  26789. extra: 469 / 437,
  26790. bottom: 1.24 / 470.6
  26791. }
  26792. },
  26793. },
  26794. [
  26795. {
  26796. name: "Shrunken",
  26797. height: math.unit(7.86, "cm")
  26798. },
  26799. {
  26800. name: "Human Scale",
  26801. height: math.unit(1.73, "meters")
  26802. },
  26803. {
  26804. name: "Wolxi Scale",
  26805. height: math.unit(38, "meters"),
  26806. default: true
  26807. },
  26808. ]
  26809. ))
  26810. characterMakers.push(() => makeCharacter(
  26811. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26812. {
  26813. front: {
  26814. height: math.unit(1.55, "meters"),
  26815. weight: math.unit(120, "lb"),
  26816. name: "Front",
  26817. image: {
  26818. source: "./media/characters/teeku-love-shack/front.svg",
  26819. extra: 387 / 362,
  26820. bottom: 1.51 / 388
  26821. }
  26822. },
  26823. },
  26824. [
  26825. {
  26826. name: "Shrunken",
  26827. height: math.unit(7, "cm")
  26828. },
  26829. {
  26830. name: "Human Scale",
  26831. height: math.unit(1.55, "meters")
  26832. },
  26833. {
  26834. name: "Wolxi Scale",
  26835. height: math.unit(34.1, "meters"),
  26836. default: true
  26837. },
  26838. ]
  26839. ))
  26840. characterMakers.push(() => makeCharacter(
  26841. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26842. {
  26843. front: {
  26844. height: math.unit(1.83, "meters"),
  26845. weight: math.unit(135, "lb"),
  26846. name: "Front",
  26847. image: {
  26848. source: "./media/characters/dejma-the-red/front.svg",
  26849. extra: 480 / 458,
  26850. bottom: 1.8 / 482
  26851. }
  26852. },
  26853. },
  26854. [
  26855. {
  26856. name: "Shrunken",
  26857. height: math.unit(8.3, "cm")
  26858. },
  26859. {
  26860. name: "Human Scale",
  26861. height: math.unit(1.83, "meters")
  26862. },
  26863. {
  26864. name: "Wolxi Scale",
  26865. height: math.unit(40, "meters"),
  26866. default: true
  26867. },
  26868. ]
  26869. ))
  26870. characterMakers.push(() => makeCharacter(
  26871. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26872. {
  26873. front: {
  26874. height: math.unit(1.78, "meters"),
  26875. weight: math.unit(65, "kg"),
  26876. name: "Front",
  26877. image: {
  26878. source: "./media/characters/aki/front.svg",
  26879. extra: 452 / 415
  26880. }
  26881. },
  26882. frontNsfw: {
  26883. height: math.unit(1.78, "meters"),
  26884. weight: math.unit(65, "kg"),
  26885. name: "Front (NSFW)",
  26886. image: {
  26887. source: "./media/characters/aki/front-nsfw.svg",
  26888. extra: 452 / 415
  26889. }
  26890. },
  26891. back: {
  26892. height: math.unit(1.78, "meters"),
  26893. weight: math.unit(65, "kg"),
  26894. name: "Back",
  26895. image: {
  26896. source: "./media/characters/aki/back.svg",
  26897. extra: 452 / 415
  26898. }
  26899. },
  26900. rump: {
  26901. height: math.unit(2.05, "feet"),
  26902. name: "Rump",
  26903. image: {
  26904. source: "./media/characters/aki/rump.svg"
  26905. }
  26906. },
  26907. dick: {
  26908. height: math.unit(0.95, "feet"),
  26909. name: "Dick",
  26910. image: {
  26911. source: "./media/characters/aki/dick.svg"
  26912. }
  26913. },
  26914. },
  26915. [
  26916. {
  26917. name: "Micro",
  26918. height: math.unit(15, "cm")
  26919. },
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(178, "cm"),
  26923. default: true
  26924. },
  26925. {
  26926. name: "Macro",
  26927. height: math.unit(214, "m")
  26928. },
  26929. {
  26930. name: "Macro+",
  26931. height: math.unit(534, "m")
  26932. },
  26933. ]
  26934. ))
  26935. characterMakers.push(() => makeCharacter(
  26936. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26937. {
  26938. front: {
  26939. height: math.unit(5 + 5 / 12, "feet"),
  26940. weight: math.unit(120, "lb"),
  26941. name: "Front",
  26942. image: {
  26943. source: "./media/characters/ari/front.svg",
  26944. extra: 1550/1471,
  26945. bottom: 39/1589
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Normal",
  26952. height: math.unit(5 + 5 / 12, "feet")
  26953. },
  26954. {
  26955. name: "Macro",
  26956. height: math.unit(100, "feet"),
  26957. default: true
  26958. },
  26959. {
  26960. name: "Megamacro",
  26961. height: math.unit(100, "miles")
  26962. },
  26963. {
  26964. name: "Gigamacro",
  26965. height: math.unit(80000, "miles")
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26971. {
  26972. side: {
  26973. height: math.unit(9, "feet"),
  26974. weight: math.unit(400, "kg"),
  26975. name: "Side",
  26976. image: {
  26977. source: "./media/characters/bolt/side.svg",
  26978. extra: 1126 / 896,
  26979. bottom: 60 / 1187.3,
  26980. }
  26981. },
  26982. },
  26983. [
  26984. {
  26985. name: "Micro",
  26986. height: math.unit(5, "inches")
  26987. },
  26988. {
  26989. name: "Normal",
  26990. height: math.unit(9, "feet"),
  26991. default: true
  26992. },
  26993. {
  26994. name: "Macro",
  26995. height: math.unit(700, "feet")
  26996. },
  26997. {
  26998. name: "Max Size",
  26999. height: math.unit(1.52e22, "yottameters")
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27005. {
  27006. front: {
  27007. height: math.unit(4.3, "meters"),
  27008. weight: math.unit(3, "tons"),
  27009. name: "Front",
  27010. image: {
  27011. source: "./media/characters/draekon-sylviar/front.svg",
  27012. extra: 2072/1512,
  27013. bottom: 74/2146
  27014. }
  27015. },
  27016. back: {
  27017. height: math.unit(4.3, "meters"),
  27018. weight: math.unit(3, "tons"),
  27019. name: "Back",
  27020. image: {
  27021. source: "./media/characters/draekon-sylviar/back.svg",
  27022. extra: 1639/1483,
  27023. bottom: 41/1680
  27024. }
  27025. },
  27026. feral: {
  27027. height: math.unit(1.15, "meters"),
  27028. weight: math.unit(3, "tons"),
  27029. name: "Feral",
  27030. image: {
  27031. source: "./media/characters/draekon-sylviar/feral.svg",
  27032. extra: 1033/395,
  27033. bottom: 130/1163
  27034. }
  27035. },
  27036. maw: {
  27037. height: math.unit(1.3, "meters"),
  27038. name: "Maw",
  27039. image: {
  27040. source: "./media/characters/draekon-sylviar/maw.svg"
  27041. }
  27042. },
  27043. mawSeparated: {
  27044. height: math.unit(1.53, "meters"),
  27045. name: "Separated Maw",
  27046. image: {
  27047. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27048. }
  27049. },
  27050. tail: {
  27051. height: math.unit(1.15, "meters"),
  27052. name: "Tail",
  27053. image: {
  27054. source: "./media/characters/draekon-sylviar/tail.svg"
  27055. }
  27056. },
  27057. tailDick: {
  27058. height: math.unit(1.15, "meters"),
  27059. name: "Tail (Dick)",
  27060. image: {
  27061. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27062. }
  27063. },
  27064. tailDickSeparated: {
  27065. height: math.unit(1.19, "meters"),
  27066. name: "Tail (Separated Dick)",
  27067. image: {
  27068. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27069. }
  27070. },
  27071. slit: {
  27072. height: math.unit(1, "meters"),
  27073. name: "Slit",
  27074. image: {
  27075. source: "./media/characters/draekon-sylviar/slit.svg"
  27076. }
  27077. },
  27078. dick: {
  27079. height: math.unit(1.15, "meters"),
  27080. name: "Dick",
  27081. image: {
  27082. source: "./media/characters/draekon-sylviar/dick.svg"
  27083. }
  27084. },
  27085. dickSeparated: {
  27086. height: math.unit(1.1, "meters"),
  27087. name: "Separated Dick",
  27088. image: {
  27089. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27090. }
  27091. },
  27092. sheath: {
  27093. height: math.unit(1.15, "meters"),
  27094. name: "Sheath",
  27095. image: {
  27096. source: "./media/characters/draekon-sylviar/sheath.svg"
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Small",
  27103. height: math.unit(4.53 / 2, "meters"),
  27104. default: true
  27105. },
  27106. {
  27107. name: "Normal",
  27108. height: math.unit(4.53, "meters"),
  27109. default: true
  27110. },
  27111. {
  27112. name: "Large",
  27113. height: math.unit(4.53 * 2, "meters"),
  27114. },
  27115. ]
  27116. ))
  27117. characterMakers.push(() => makeCharacter(
  27118. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27119. {
  27120. front: {
  27121. height: math.unit(6 + 2 / 12, "feet"),
  27122. weight: math.unit(180, "lb"),
  27123. name: "Front",
  27124. image: {
  27125. source: "./media/characters/brawler/front.svg",
  27126. extra: 3301 / 3027,
  27127. bottom: 138 / 3439
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Normal",
  27134. height: math.unit(6 + 2 / 12, "feet"),
  27135. default: true
  27136. },
  27137. ]
  27138. ))
  27139. characterMakers.push(() => makeCharacter(
  27140. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27141. {
  27142. front: {
  27143. height: math.unit(11, "feet"),
  27144. weight: math.unit(1000, "lb"),
  27145. name: "Front",
  27146. image: {
  27147. source: "./media/characters/alex/front.svg",
  27148. bottom: 44.5 / 620
  27149. }
  27150. },
  27151. },
  27152. [
  27153. {
  27154. name: "Micro",
  27155. height: math.unit(5, "inches")
  27156. },
  27157. {
  27158. name: "Normal",
  27159. height: math.unit(11, "feet"),
  27160. default: true
  27161. },
  27162. {
  27163. name: "Macro",
  27164. height: math.unit(9.5e9, "feet")
  27165. },
  27166. {
  27167. name: "Max Size",
  27168. height: math.unit(1.4e283, "yottameters")
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27174. {
  27175. female: {
  27176. height: math.unit(29.9, "m"),
  27177. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27178. name: "Female",
  27179. image: {
  27180. source: "./media/characters/zenari/female.svg",
  27181. extra: 3281.6 / 3217,
  27182. bottom: 72.2 / 3353
  27183. }
  27184. },
  27185. male: {
  27186. height: math.unit(27.7, "m"),
  27187. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27188. name: "Male",
  27189. image: {
  27190. source: "./media/characters/zenari/male.svg",
  27191. extra: 3008 / 2991,
  27192. bottom: 54.6 / 3069
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Macro",
  27199. height: math.unit(29.7, "meters"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27206. {
  27207. female: {
  27208. height: math.unit(23.8, "m"),
  27209. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27210. name: "Female",
  27211. image: {
  27212. source: "./media/characters/mactarian/female.svg",
  27213. extra: 2662 / 2569,
  27214. bottom: 73 / 2736
  27215. }
  27216. },
  27217. male: {
  27218. height: math.unit(23.8, "m"),
  27219. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27220. name: "Male",
  27221. image: {
  27222. source: "./media/characters/mactarian/male.svg",
  27223. extra: 2673 / 2600,
  27224. bottom: 76 / 2750
  27225. }
  27226. },
  27227. },
  27228. [
  27229. {
  27230. name: "Macro",
  27231. height: math.unit(23.8, "meters"),
  27232. default: true
  27233. },
  27234. ]
  27235. ))
  27236. characterMakers.push(() => makeCharacter(
  27237. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27238. {
  27239. female: {
  27240. height: math.unit(19.3, "m"),
  27241. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27242. name: "Female",
  27243. image: {
  27244. source: "./media/characters/umok/female.svg",
  27245. extra: 2186 / 2078,
  27246. bottom: 87 / 2277
  27247. }
  27248. },
  27249. male: {
  27250. height: math.unit(19.5, "m"),
  27251. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27252. name: "Male",
  27253. image: {
  27254. source: "./media/characters/umok/male.svg",
  27255. extra: 2233 / 2140,
  27256. bottom: 24.4 / 2258
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Macro",
  27263. height: math.unit(19.3, "meters"),
  27264. default: true
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27270. {
  27271. female: {
  27272. height: math.unit(26.15, "m"),
  27273. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27274. name: "Female",
  27275. image: {
  27276. source: "./media/characters/joraxian/female.svg",
  27277. extra: 2912 / 2824,
  27278. bottom: 36 / 2956
  27279. }
  27280. },
  27281. male: {
  27282. height: math.unit(25.4, "m"),
  27283. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27284. name: "Male",
  27285. image: {
  27286. source: "./media/characters/joraxian/male.svg",
  27287. extra: 2877 / 2721,
  27288. bottom: 82 / 2967
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Macro",
  27295. height: math.unit(26.15, "meters"),
  27296. default: true
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27302. {
  27303. female: {
  27304. height: math.unit(21.6, "m"),
  27305. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27306. name: "Female",
  27307. image: {
  27308. source: "./media/characters/sthara/female.svg",
  27309. extra: 2516 / 2347,
  27310. bottom: 21.5 / 2537
  27311. }
  27312. },
  27313. male: {
  27314. height: math.unit(24, "m"),
  27315. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27316. name: "Male",
  27317. image: {
  27318. source: "./media/characters/sthara/male.svg",
  27319. extra: 2732 / 2607,
  27320. bottom: 23 / 2732
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Macro",
  27327. height: math.unit(21.6, "meters"),
  27328. default: true
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27334. {
  27335. front: {
  27336. height: math.unit(6 + 4 / 12, "feet"),
  27337. weight: math.unit(175, "lb"),
  27338. name: "Front",
  27339. image: {
  27340. source: "./media/characters/luka-bryzant/front.svg",
  27341. extra: 311 / 289,
  27342. bottom: 4 / 315
  27343. }
  27344. },
  27345. back: {
  27346. height: math.unit(6 + 4 / 12, "feet"),
  27347. weight: math.unit(175, "lb"),
  27348. name: "Back",
  27349. image: {
  27350. source: "./media/characters/luka-bryzant/back.svg",
  27351. extra: 311 / 289,
  27352. bottom: 3.8 / 313.7
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Micro",
  27359. height: math.unit(10, "inches")
  27360. },
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(6 + 4 / 12, "feet"),
  27364. default: true
  27365. },
  27366. {
  27367. name: "Large",
  27368. height: math.unit(12, "feet")
  27369. },
  27370. ]
  27371. ))
  27372. characterMakers.push(() => makeCharacter(
  27373. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27374. {
  27375. front: {
  27376. height: math.unit(5 + 7 / 12, "feet"),
  27377. weight: math.unit(185, "lb"),
  27378. name: "Front",
  27379. image: {
  27380. source: "./media/characters/aman-aquila/front.svg",
  27381. extra: 1013 / 976,
  27382. bottom: 45.6 / 1057
  27383. }
  27384. },
  27385. side: {
  27386. height: math.unit(5 + 7 / 12, "feet"),
  27387. weight: math.unit(185, "lb"),
  27388. name: "Side",
  27389. image: {
  27390. source: "./media/characters/aman-aquila/side.svg",
  27391. extra: 1054 / 1011,
  27392. bottom: 15 / 1070
  27393. }
  27394. },
  27395. back: {
  27396. height: math.unit(5 + 7 / 12, "feet"),
  27397. weight: math.unit(185, "lb"),
  27398. name: "Back",
  27399. image: {
  27400. source: "./media/characters/aman-aquila/back.svg",
  27401. extra: 1026 / 970,
  27402. bottom: 12 / 1039
  27403. }
  27404. },
  27405. head: {
  27406. height: math.unit(1.211, "feet"),
  27407. name: "Head",
  27408. image: {
  27409. source: "./media/characters/aman-aquila/head.svg",
  27410. }
  27411. },
  27412. },
  27413. [
  27414. {
  27415. name: "Minimicro",
  27416. height: math.unit(0.057, "inches")
  27417. },
  27418. {
  27419. name: "Micro",
  27420. height: math.unit(7, "inches")
  27421. },
  27422. {
  27423. name: "Mini",
  27424. height: math.unit(3 + 7 / 12, "feet")
  27425. },
  27426. {
  27427. name: "Normal",
  27428. height: math.unit(5 + 7 / 12, "feet"),
  27429. default: true
  27430. },
  27431. {
  27432. name: "Macro",
  27433. height: math.unit(157 + 7 / 12, "feet")
  27434. },
  27435. {
  27436. name: "Megamacro",
  27437. height: math.unit(1557 + 7 / 12, "feet")
  27438. },
  27439. {
  27440. name: "Gigamacro",
  27441. height: math.unit(15557 + 7 / 12, "feet")
  27442. },
  27443. ]
  27444. ))
  27445. characterMakers.push(() => makeCharacter(
  27446. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27447. {
  27448. front: {
  27449. height: math.unit(3 + 2 / 12, "inches"),
  27450. weight: math.unit(0.3, "ounces"),
  27451. name: "Front",
  27452. image: {
  27453. source: "./media/characters/hiphae/front.svg",
  27454. extra: 1931 / 1683,
  27455. bottom: 24 / 1955
  27456. }
  27457. },
  27458. },
  27459. [
  27460. {
  27461. name: "Normal",
  27462. height: math.unit(3 + 1 / 2, "inches"),
  27463. default: true
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27469. {
  27470. front: {
  27471. height: math.unit(5 + 10 / 12, "feet"),
  27472. weight: math.unit(165, "lb"),
  27473. name: "Front",
  27474. image: {
  27475. source: "./media/characters/nicky/front.svg",
  27476. extra: 3144 / 2886,
  27477. bottom: 45.6 / 3192
  27478. }
  27479. },
  27480. back: {
  27481. height: math.unit(5 + 10 / 12, "feet"),
  27482. weight: math.unit(165, "lb"),
  27483. name: "Back",
  27484. image: {
  27485. source: "./media/characters/nicky/back.svg",
  27486. extra: 3055 / 2804,
  27487. bottom: 28.4 / 3087
  27488. }
  27489. },
  27490. frontclothed: {
  27491. height: math.unit(5 + 10 / 12, "feet"),
  27492. weight: math.unit(165, "lb"),
  27493. name: "Front-clothed",
  27494. image: {
  27495. source: "./media/characters/nicky/front-clothed.svg",
  27496. extra: 3184.9 / 2926.9,
  27497. bottom: 86.5 / 3239.9
  27498. }
  27499. },
  27500. foot: {
  27501. height: math.unit(1.16, "feet"),
  27502. name: "Foot",
  27503. image: {
  27504. source: "./media/characters/nicky/foot.svg"
  27505. }
  27506. },
  27507. feet: {
  27508. height: math.unit(1.34, "feet"),
  27509. name: "Feet",
  27510. image: {
  27511. source: "./media/characters/nicky/feet.svg"
  27512. }
  27513. },
  27514. maw: {
  27515. height: math.unit(0.9, "feet"),
  27516. name: "Maw",
  27517. image: {
  27518. source: "./media/characters/nicky/maw.svg"
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Normal",
  27525. height: math.unit(5 + 10 / 12, "feet"),
  27526. default: true
  27527. },
  27528. {
  27529. name: "Macro",
  27530. height: math.unit(60, "feet")
  27531. },
  27532. {
  27533. name: "Megamacro",
  27534. height: math.unit(1, "mile")
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27540. {
  27541. side: {
  27542. height: math.unit(10, "feet"),
  27543. weight: math.unit(600, "lb"),
  27544. name: "Side",
  27545. image: {
  27546. source: "./media/characters/blair/side.svg",
  27547. bottom: 16.6 / 475,
  27548. extra: 458 / 431
  27549. }
  27550. },
  27551. },
  27552. [
  27553. {
  27554. name: "Micro",
  27555. height: math.unit(8, "inches")
  27556. },
  27557. {
  27558. name: "Normal",
  27559. height: math.unit(10, "feet"),
  27560. default: true
  27561. },
  27562. {
  27563. name: "Macro",
  27564. height: math.unit(180, "feet")
  27565. },
  27566. ]
  27567. ))
  27568. characterMakers.push(() => makeCharacter(
  27569. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27570. {
  27571. front: {
  27572. height: math.unit(5 + 4 / 12, "feet"),
  27573. weight: math.unit(125, "lb"),
  27574. name: "Front",
  27575. image: {
  27576. source: "./media/characters/fisher/front.svg",
  27577. extra: 444 / 390,
  27578. bottom: 2 / 444.8
  27579. }
  27580. },
  27581. },
  27582. [
  27583. {
  27584. name: "Micro",
  27585. height: math.unit(4, "inches")
  27586. },
  27587. {
  27588. name: "Normal",
  27589. height: math.unit(5 + 4 / 12, "feet"),
  27590. default: true
  27591. },
  27592. {
  27593. name: "Macro",
  27594. height: math.unit(100, "feet")
  27595. },
  27596. ]
  27597. ))
  27598. characterMakers.push(() => makeCharacter(
  27599. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27600. {
  27601. front: {
  27602. height: math.unit(6.71, "feet"),
  27603. weight: math.unit(200, "lb"),
  27604. preyCapacity: math.unit(1000000, "people"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/gliss/front.svg",
  27608. extra: 2347 / 2231,
  27609. bottom: 113 / 2462
  27610. }
  27611. },
  27612. hammerspaceSize: {
  27613. height: math.unit(6.71 * 717, "feet"),
  27614. weight: math.unit(200, "lb"),
  27615. preyCapacity: math.unit(1000000, "people"),
  27616. name: "Hammerspace Size",
  27617. image: {
  27618. source: "./media/characters/gliss/front.svg",
  27619. extra: 2347 / 2231,
  27620. bottom: 113 / 2462
  27621. }
  27622. },
  27623. },
  27624. [
  27625. {
  27626. name: "Normal",
  27627. height: math.unit(6.71, "feet"),
  27628. default: true
  27629. },
  27630. ]
  27631. ))
  27632. characterMakers.push(() => makeCharacter(
  27633. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27634. {
  27635. side: {
  27636. height: math.unit(1.44, "m"),
  27637. weight: math.unit(80, "kg"),
  27638. name: "Side",
  27639. image: {
  27640. source: "./media/characters/dune-anderson/side.svg",
  27641. bottom: 49 / 1426
  27642. }
  27643. },
  27644. },
  27645. [
  27646. {
  27647. name: "Wolf-sized",
  27648. height: math.unit(1.44, "meters")
  27649. },
  27650. {
  27651. name: "Normal",
  27652. height: math.unit(5.05, "meters"),
  27653. default: true
  27654. },
  27655. {
  27656. name: "Big",
  27657. height: math.unit(14.4, "meters")
  27658. },
  27659. {
  27660. name: "Huge",
  27661. height: math.unit(144, "meters")
  27662. },
  27663. ]
  27664. ))
  27665. characterMakers.push(() => makeCharacter(
  27666. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27667. {
  27668. front: {
  27669. height: math.unit(6, "feet"),
  27670. weight: math.unit(220, "lb"),
  27671. name: "Front",
  27672. image: {
  27673. source: "./media/characters/hind/front.svg",
  27674. extra: 1912/1787,
  27675. bottom: 52/1964
  27676. }
  27677. },
  27678. back: {
  27679. height: math.unit(6, "feet"),
  27680. weight: math.unit(220, "lb"),
  27681. name: "Back",
  27682. image: {
  27683. source: "./media/characters/hind/back.svg",
  27684. extra: 1901/1794,
  27685. bottom: 26/1927
  27686. }
  27687. },
  27688. },
  27689. [
  27690. {
  27691. name: "Normal",
  27692. height: math.unit(6, "feet"),
  27693. default: true
  27694. },
  27695. ]
  27696. ))
  27697. characterMakers.push(() => makeCharacter(
  27698. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27699. {
  27700. front: {
  27701. height: math.unit(2.1, "meters"),
  27702. weight: math.unit(150, "lb"),
  27703. name: "Front",
  27704. image: {
  27705. source: "./media/characters/tharquench-sizestealer/front.svg",
  27706. extra: 1605/1470,
  27707. bottom: 36/1641
  27708. }
  27709. },
  27710. frontAlt: {
  27711. height: math.unit(2.1, "meters"),
  27712. weight: math.unit(150, "lb"),
  27713. name: "Front (Alt)",
  27714. image: {
  27715. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27716. extra: 2318 / 2063,
  27717. bottom: 93.4 / 2410
  27718. }
  27719. },
  27720. },
  27721. [
  27722. {
  27723. name: "Nano",
  27724. height: math.unit(1, "mm")
  27725. },
  27726. {
  27727. name: "Micro",
  27728. height: math.unit(1, "cm")
  27729. },
  27730. {
  27731. name: "Normal",
  27732. height: math.unit(2.1, "meters"),
  27733. default: true
  27734. },
  27735. ]
  27736. ))
  27737. characterMakers.push(() => makeCharacter(
  27738. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27739. {
  27740. front: {
  27741. height: math.unit(7 + 5 / 12, "feet"),
  27742. weight: math.unit(357, "lb"),
  27743. name: "Front",
  27744. image: {
  27745. source: "./media/characters/solex-draconov/front.svg",
  27746. extra: 1993 / 1865,
  27747. bottom: 117 / 2111
  27748. }
  27749. },
  27750. },
  27751. [
  27752. {
  27753. name: "Natural Height",
  27754. height: math.unit(7 + 5 / 12, "feet"),
  27755. default: true
  27756. },
  27757. {
  27758. name: "Macro",
  27759. height: math.unit(350, "feet")
  27760. },
  27761. {
  27762. name: "Macro+",
  27763. height: math.unit(1000, "feet")
  27764. },
  27765. {
  27766. name: "Megamacro",
  27767. height: math.unit(20, "km")
  27768. },
  27769. {
  27770. name: "Megamacro+",
  27771. height: math.unit(1000, "km")
  27772. },
  27773. {
  27774. name: "Gigamacro",
  27775. height: math.unit(2.5, "Gm")
  27776. },
  27777. {
  27778. name: "Teramacro",
  27779. height: math.unit(15, "Tm")
  27780. },
  27781. {
  27782. name: "Galactic",
  27783. height: math.unit(30, "Zm")
  27784. },
  27785. {
  27786. name: "Universal",
  27787. height: math.unit(21000, "Ym")
  27788. },
  27789. {
  27790. name: "Omniversal",
  27791. height: math.unit(9.861e50, "Ym")
  27792. },
  27793. {
  27794. name: "Existential",
  27795. height: math.unit(1e300, "meters")
  27796. },
  27797. ]
  27798. ))
  27799. characterMakers.push(() => makeCharacter(
  27800. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27801. {
  27802. side: {
  27803. height: math.unit(25, "feet"),
  27804. weight: math.unit(90000, "lb"),
  27805. name: "Side",
  27806. image: {
  27807. source: "./media/characters/mandarax/side.svg",
  27808. extra: 614 / 332,
  27809. bottom: 55 / 630
  27810. }
  27811. },
  27812. lounging: {
  27813. height: math.unit(15.4, "feet"),
  27814. weight: math.unit(90000, "lb"),
  27815. name: "Lounging",
  27816. image: {
  27817. source: "./media/characters/mandarax/lounging.svg",
  27818. extra: 817/609,
  27819. bottom: 685/1502
  27820. }
  27821. },
  27822. head: {
  27823. height: math.unit(11.4, "feet"),
  27824. name: "Head",
  27825. image: {
  27826. source: "./media/characters/mandarax/head.svg"
  27827. }
  27828. },
  27829. belly: {
  27830. height: math.unit(33, "feet"),
  27831. name: "Belly",
  27832. preyCapacity: math.unit(500, "people"),
  27833. image: {
  27834. source: "./media/characters/mandarax/belly.svg"
  27835. }
  27836. },
  27837. dick: {
  27838. height: math.unit(8.46, "feet"),
  27839. name: "Dick",
  27840. image: {
  27841. source: "./media/characters/mandarax/dick.svg"
  27842. }
  27843. },
  27844. top: {
  27845. height: math.unit(28, "meters"),
  27846. name: "Top",
  27847. image: {
  27848. source: "./media/characters/mandarax/top.svg"
  27849. }
  27850. },
  27851. },
  27852. [
  27853. {
  27854. name: "Normal",
  27855. height: math.unit(25, "feet"),
  27856. default: true
  27857. },
  27858. ]
  27859. ))
  27860. characterMakers.push(() => makeCharacter(
  27861. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27862. {
  27863. front: {
  27864. height: math.unit(5, "feet"),
  27865. weight: math.unit(90, "lb"),
  27866. name: "Front",
  27867. image: {
  27868. source: "./media/characters/pixil/front.svg",
  27869. extra: 2000 / 1618,
  27870. bottom: 12.3 / 2011
  27871. }
  27872. },
  27873. },
  27874. [
  27875. {
  27876. name: "Normal",
  27877. height: math.unit(5, "feet"),
  27878. default: true
  27879. },
  27880. {
  27881. name: "Megamacro",
  27882. height: math.unit(10, "miles"),
  27883. },
  27884. ]
  27885. ))
  27886. characterMakers.push(() => makeCharacter(
  27887. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27888. {
  27889. front: {
  27890. height: math.unit(7 + 2 / 12, "feet"),
  27891. weight: math.unit(200, "lb"),
  27892. name: "Front",
  27893. image: {
  27894. source: "./media/characters/angel/front.svg",
  27895. extra: 1946/1840,
  27896. bottom: 30/1976
  27897. }
  27898. },
  27899. },
  27900. [
  27901. {
  27902. name: "Normal",
  27903. height: math.unit(7 + 2 / 12, "feet"),
  27904. default: true
  27905. },
  27906. {
  27907. name: "Macro",
  27908. height: math.unit(1000, "feet")
  27909. },
  27910. {
  27911. name: "Megamacro",
  27912. height: math.unit(2, "miles")
  27913. },
  27914. {
  27915. name: "Gigamacro",
  27916. height: math.unit(20, "earths")
  27917. },
  27918. ]
  27919. ))
  27920. characterMakers.push(() => makeCharacter(
  27921. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27922. {
  27923. front: {
  27924. height: math.unit(5, "feet"),
  27925. weight: math.unit(180, "lb"),
  27926. name: "Front",
  27927. image: {
  27928. source: "./media/characters/mekana/front.svg",
  27929. extra: 1671 / 1605,
  27930. bottom: 3.5 / 1691
  27931. }
  27932. },
  27933. side: {
  27934. height: math.unit(5, "feet"),
  27935. weight: math.unit(180, "lb"),
  27936. name: "Side",
  27937. image: {
  27938. source: "./media/characters/mekana/side.svg",
  27939. extra: 1671 / 1605,
  27940. bottom: 3.5 / 1691
  27941. }
  27942. },
  27943. back: {
  27944. height: math.unit(5, "feet"),
  27945. weight: math.unit(180, "lb"),
  27946. name: "Back",
  27947. image: {
  27948. source: "./media/characters/mekana/back.svg",
  27949. extra: 1671 / 1605,
  27950. bottom: 3.5 / 1691
  27951. }
  27952. },
  27953. },
  27954. [
  27955. {
  27956. name: "Normal",
  27957. height: math.unit(5, "feet"),
  27958. default: true
  27959. },
  27960. ]
  27961. ))
  27962. characterMakers.push(() => makeCharacter(
  27963. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27964. {
  27965. front: {
  27966. height: math.unit(4 + 6 / 12, "feet"),
  27967. weight: math.unit(80, "lb"),
  27968. name: "Front",
  27969. image: {
  27970. source: "./media/characters/pixie/front.svg",
  27971. extra: 1924 / 1825,
  27972. bottom: 22.4 / 1946
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Normal",
  27979. height: math.unit(4 + 6 / 12, "feet"),
  27980. default: true
  27981. },
  27982. {
  27983. name: "Macro",
  27984. height: math.unit(40, "feet")
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27990. {
  27991. front: {
  27992. height: math.unit(2.1, "meters"),
  27993. weight: math.unit(200, "lb"),
  27994. name: "Front",
  27995. image: {
  27996. source: "./media/characters/the-lascivious/front.svg",
  27997. extra: 1 / 0.893,
  27998. bottom: 3.5 / 573.7
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Human Scale",
  28005. height: math.unit(2.1, "meters")
  28006. },
  28007. {
  28008. name: "Wolxi Scale",
  28009. height: math.unit(46.2, "m"),
  28010. default: true
  28011. },
  28012. {
  28013. name: "Boinker of Buildings",
  28014. height: math.unit(10, "km")
  28015. },
  28016. {
  28017. name: "Shagger of Skyscrapers",
  28018. height: math.unit(40, "km")
  28019. },
  28020. {
  28021. name: "Banger of Boroughs",
  28022. height: math.unit(4000, "km")
  28023. },
  28024. {
  28025. name: "Screwer of States",
  28026. height: math.unit(100000, "km")
  28027. },
  28028. {
  28029. name: "Pounder of Planets",
  28030. height: math.unit(2000000, "km")
  28031. },
  28032. ]
  28033. ))
  28034. characterMakers.push(() => makeCharacter(
  28035. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28036. {
  28037. front: {
  28038. height: math.unit(6, "feet"),
  28039. weight: math.unit(150, "lb"),
  28040. name: "Front",
  28041. image: {
  28042. source: "./media/characters/aj/front.svg",
  28043. extra: 2039 / 1562,
  28044. bottom: 40 / 2079
  28045. }
  28046. },
  28047. },
  28048. [
  28049. {
  28050. name: "Normal",
  28051. height: math.unit(11 + 6 / 12, "feet"),
  28052. default: true
  28053. },
  28054. {
  28055. name: "Megamacro",
  28056. height: math.unit(60, "megameters")
  28057. },
  28058. ]
  28059. ))
  28060. characterMakers.push(() => makeCharacter(
  28061. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28062. {
  28063. side: {
  28064. height: math.unit(31 + 8 / 12, "feet"),
  28065. weight: math.unit(75000, "kg"),
  28066. name: "Side",
  28067. image: {
  28068. source: "./media/characters/koros/side.svg",
  28069. extra: 1442 / 1297,
  28070. bottom: 122.7 / 1562
  28071. }
  28072. },
  28073. dicksKingsCrown: {
  28074. height: math.unit(6, "feet"),
  28075. name: "Dicks (King's Crown)",
  28076. image: {
  28077. source: "./media/characters/koros/dicks-kings-crown.svg"
  28078. }
  28079. },
  28080. dicksTailSet: {
  28081. height: math.unit(3, "feet"),
  28082. name: "Dicks (Tail Set)",
  28083. image: {
  28084. source: "./media/characters/koros/dicks-tail-set.svg"
  28085. }
  28086. },
  28087. dickCumming: {
  28088. height: math.unit(7.98, "feet"),
  28089. name: "Dick (Cumming)",
  28090. image: {
  28091. source: "./media/characters/koros/dick-cumming.svg"
  28092. }
  28093. },
  28094. dicksBack: {
  28095. height: math.unit(5.9, "feet"),
  28096. name: "Dicks (Back)",
  28097. image: {
  28098. source: "./media/characters/koros/dicks-back.svg"
  28099. }
  28100. },
  28101. dicksFront: {
  28102. height: math.unit(3.72, "feet"),
  28103. name: "Dicks (Front)",
  28104. image: {
  28105. source: "./media/characters/koros/dicks-front.svg"
  28106. }
  28107. },
  28108. dicksPeeking: {
  28109. height: math.unit(3.0, "feet"),
  28110. name: "Dicks (Peeking)",
  28111. image: {
  28112. source: "./media/characters/koros/dicks-peeking.svg"
  28113. }
  28114. },
  28115. eye: {
  28116. height: math.unit(1.7, "feet"),
  28117. name: "Eye",
  28118. image: {
  28119. source: "./media/characters/koros/eye.svg"
  28120. }
  28121. },
  28122. headFront: {
  28123. height: math.unit(11.69, "feet"),
  28124. name: "Head (Front)",
  28125. image: {
  28126. source: "./media/characters/koros/head-front.svg"
  28127. }
  28128. },
  28129. headSide: {
  28130. height: math.unit(14, "feet"),
  28131. name: "Head (Side)",
  28132. image: {
  28133. source: "./media/characters/koros/head-side.svg"
  28134. }
  28135. },
  28136. leg: {
  28137. height: math.unit(17, "feet"),
  28138. name: "Leg",
  28139. image: {
  28140. source: "./media/characters/koros/leg.svg"
  28141. }
  28142. },
  28143. mawSide: {
  28144. height: math.unit(12.8, "feet"),
  28145. name: "Maw (Side)",
  28146. image: {
  28147. source: "./media/characters/koros/maw-side.svg"
  28148. }
  28149. },
  28150. mawSpitting: {
  28151. height: math.unit(17, "feet"),
  28152. name: "Maw (Spitting)",
  28153. image: {
  28154. source: "./media/characters/koros/maw-spitting.svg"
  28155. }
  28156. },
  28157. slit: {
  28158. height: math.unit(2.8, "feet"),
  28159. name: "Slit",
  28160. image: {
  28161. source: "./media/characters/koros/slit.svg"
  28162. }
  28163. },
  28164. stomach: {
  28165. height: math.unit(6.8, "feet"),
  28166. preyCapacity: math.unit(20, "people"),
  28167. name: "Stomach",
  28168. image: {
  28169. source: "./media/characters/koros/stomach.svg"
  28170. }
  28171. },
  28172. wingspanBottom: {
  28173. height: math.unit(114, "feet"),
  28174. name: "Wingspan (Bottom)",
  28175. image: {
  28176. source: "./media/characters/koros/wingspan-bottom.svg"
  28177. }
  28178. },
  28179. wingspanTop: {
  28180. height: math.unit(104, "feet"),
  28181. name: "Wingspan (Top)",
  28182. image: {
  28183. source: "./media/characters/koros/wingspan-top.svg"
  28184. }
  28185. },
  28186. },
  28187. [
  28188. {
  28189. name: "Normal",
  28190. height: math.unit(31 + 8 / 12, "feet"),
  28191. default: true
  28192. },
  28193. ]
  28194. ))
  28195. characterMakers.push(() => makeCharacter(
  28196. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28197. {
  28198. front: {
  28199. height: math.unit(18 + 5 / 12, "feet"),
  28200. weight: math.unit(3750, "kg"),
  28201. name: "Front",
  28202. image: {
  28203. source: "./media/characters/vexx/front.svg",
  28204. extra: 426 / 396,
  28205. bottom: 31.5 / 458
  28206. }
  28207. },
  28208. maw: {
  28209. height: math.unit(6, "feet"),
  28210. name: "Maw",
  28211. image: {
  28212. source: "./media/characters/vexx/maw.svg"
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Normal",
  28219. height: math.unit(18 + 5 / 12, "feet"),
  28220. default: true
  28221. },
  28222. ]
  28223. ))
  28224. characterMakers.push(() => makeCharacter(
  28225. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28226. {
  28227. front: {
  28228. height: math.unit(17 + 6 / 12, "feet"),
  28229. weight: math.unit(150, "lb"),
  28230. name: "Front",
  28231. image: {
  28232. source: "./media/characters/baadra/front.svg",
  28233. extra: 1694/1553,
  28234. bottom: 179/1873
  28235. }
  28236. },
  28237. frontAlt: {
  28238. height: math.unit(17 + 6 / 12, "feet"),
  28239. weight: math.unit(150, "lb"),
  28240. name: "Front (Alt)",
  28241. image: {
  28242. source: "./media/characters/baadra/front-alt.svg",
  28243. extra: 3137 / 2890,
  28244. bottom: 168.4 / 3305
  28245. }
  28246. },
  28247. back: {
  28248. height: math.unit(17 + 6 / 12, "feet"),
  28249. weight: math.unit(150, "lb"),
  28250. name: "Back",
  28251. image: {
  28252. source: "./media/characters/baadra/back.svg",
  28253. extra: 3142 / 2890,
  28254. bottom: 220 / 3371
  28255. }
  28256. },
  28257. head: {
  28258. height: math.unit(5.45, "feet"),
  28259. name: "Head",
  28260. image: {
  28261. source: "./media/characters/baadra/head.svg"
  28262. }
  28263. },
  28264. headAngry: {
  28265. height: math.unit(4.95, "feet"),
  28266. name: "Head (Angry)",
  28267. image: {
  28268. source: "./media/characters/baadra/head-angry.svg"
  28269. }
  28270. },
  28271. headOpen: {
  28272. height: math.unit(6, "feet"),
  28273. name: "Head (Open)",
  28274. image: {
  28275. source: "./media/characters/baadra/head-open.svg"
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(17 + 6 / 12, "feet"),
  28283. default: true
  28284. },
  28285. ]
  28286. ))
  28287. characterMakers.push(() => makeCharacter(
  28288. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28289. {
  28290. front: {
  28291. height: math.unit(7 + 3 / 12, "feet"),
  28292. weight: math.unit(180, "lb"),
  28293. name: "Front",
  28294. image: {
  28295. source: "./media/characters/juri/front.svg",
  28296. extra: 1401 / 1237,
  28297. bottom: 18.5 / 1418
  28298. }
  28299. },
  28300. side: {
  28301. height: math.unit(7 + 3 / 12, "feet"),
  28302. weight: math.unit(180, "lb"),
  28303. name: "Side",
  28304. image: {
  28305. source: "./media/characters/juri/side.svg",
  28306. extra: 1424 / 1242,
  28307. bottom: 18.5 / 1447
  28308. }
  28309. },
  28310. sitting: {
  28311. height: math.unit(6, "feet"),
  28312. weight: math.unit(180, "lb"),
  28313. name: "Sitting",
  28314. image: {
  28315. source: "./media/characters/juri/sitting.svg",
  28316. extra: 1270 / 1143,
  28317. bottom: 100 / 1343
  28318. }
  28319. },
  28320. back: {
  28321. height: math.unit(7 + 3 / 12, "feet"),
  28322. weight: math.unit(180, "lb"),
  28323. name: "Back",
  28324. image: {
  28325. source: "./media/characters/juri/back.svg",
  28326. extra: 1377 / 1240,
  28327. bottom: 23.7 / 1405
  28328. }
  28329. },
  28330. maw: {
  28331. height: math.unit(2.8, "feet"),
  28332. name: "Maw",
  28333. image: {
  28334. source: "./media/characters/juri/maw.svg"
  28335. }
  28336. },
  28337. stomach: {
  28338. height: math.unit(0.89, "feet"),
  28339. preyCapacity: math.unit(4, "liters"),
  28340. name: "Stomach",
  28341. image: {
  28342. source: "./media/characters/juri/stomach.svg"
  28343. }
  28344. },
  28345. },
  28346. [
  28347. {
  28348. name: "Normal",
  28349. height: math.unit(7 + 3 / 12, "feet"),
  28350. default: true
  28351. },
  28352. ]
  28353. ))
  28354. characterMakers.push(() => makeCharacter(
  28355. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28356. {
  28357. fox: {
  28358. height: math.unit(5 + 6 / 12, "feet"),
  28359. weight: math.unit(140, "lb"),
  28360. name: "Fox",
  28361. image: {
  28362. source: "./media/characters/maxene-sita/fox.svg",
  28363. extra: 146 / 138,
  28364. bottom: 2.1 / 148.19
  28365. }
  28366. },
  28367. foxLaying: {
  28368. height: math.unit(1.70, "feet"),
  28369. weight: math.unit(140, "lb"),
  28370. name: "Fox (Laying)",
  28371. image: {
  28372. source: "./media/characters/maxene-sita/fox-laying.svg",
  28373. extra: 910 / 572,
  28374. bottom: 71 / 981
  28375. }
  28376. },
  28377. kitsune: {
  28378. height: math.unit(10, "feet"),
  28379. weight: math.unit(800, "lb"),
  28380. name: "Kitsune",
  28381. image: {
  28382. source: "./media/characters/maxene-sita/kitsune.svg",
  28383. extra: 185 / 176,
  28384. bottom: 4.7 / 189.9
  28385. }
  28386. },
  28387. hellhound: {
  28388. height: math.unit(10, "feet"),
  28389. weight: math.unit(700, "lb"),
  28390. name: "Hellhound",
  28391. image: {
  28392. source: "./media/characters/maxene-sita/hellhound.svg",
  28393. extra: 1600 / 1545,
  28394. bottom: 81 / 1681
  28395. }
  28396. },
  28397. },
  28398. [
  28399. {
  28400. name: "Normal",
  28401. height: math.unit(5 + 6 / 12, "feet"),
  28402. default: true
  28403. },
  28404. ]
  28405. ))
  28406. characterMakers.push(() => makeCharacter(
  28407. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28408. {
  28409. front: {
  28410. height: math.unit(3 + 4 / 12, "feet"),
  28411. weight: math.unit(70, "lb"),
  28412. name: "Front",
  28413. image: {
  28414. source: "./media/characters/maia/front.svg",
  28415. extra: 227 / 219.5,
  28416. bottom: 40 / 267
  28417. }
  28418. },
  28419. back: {
  28420. height: math.unit(3 + 4 / 12, "feet"),
  28421. weight: math.unit(70, "lb"),
  28422. name: "Back",
  28423. image: {
  28424. source: "./media/characters/maia/back.svg",
  28425. extra: 237 / 225
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Normal",
  28432. height: math.unit(3 + 4 / 12, "feet"),
  28433. default: true
  28434. },
  28435. ]
  28436. ))
  28437. characterMakers.push(() => makeCharacter(
  28438. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28439. {
  28440. front: {
  28441. height: math.unit(5 + 10 / 12, "feet"),
  28442. weight: math.unit(197, "lb"),
  28443. name: "Front",
  28444. image: {
  28445. source: "./media/characters/jabaro/front.svg",
  28446. extra: 225 / 216,
  28447. bottom: 5.06 / 230
  28448. }
  28449. },
  28450. back: {
  28451. height: math.unit(5 + 10 / 12, "feet"),
  28452. weight: math.unit(197, "lb"),
  28453. name: "Back",
  28454. image: {
  28455. source: "./media/characters/jabaro/back.svg",
  28456. extra: 225 / 219,
  28457. bottom: 1.9 / 227
  28458. }
  28459. },
  28460. },
  28461. [
  28462. {
  28463. name: "Normal",
  28464. height: math.unit(5 + 10 / 12, "feet"),
  28465. default: true
  28466. },
  28467. ]
  28468. ))
  28469. characterMakers.push(() => makeCharacter(
  28470. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28471. {
  28472. front: {
  28473. height: math.unit(5 + 8 / 12, "feet"),
  28474. weight: math.unit(139, "lb"),
  28475. name: "Front",
  28476. image: {
  28477. source: "./media/characters/risa/front.svg",
  28478. extra: 270 / 260,
  28479. bottom: 11.2 / 282
  28480. }
  28481. },
  28482. back: {
  28483. height: math.unit(5 + 8 / 12, "feet"),
  28484. weight: math.unit(139, "lb"),
  28485. name: "Back",
  28486. image: {
  28487. source: "./media/characters/risa/back.svg",
  28488. extra: 264 / 255,
  28489. bottom: 4 / 268
  28490. }
  28491. },
  28492. },
  28493. [
  28494. {
  28495. name: "Normal",
  28496. height: math.unit(5 + 8 / 12, "feet"),
  28497. default: true
  28498. },
  28499. ]
  28500. ))
  28501. characterMakers.push(() => makeCharacter(
  28502. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28503. {
  28504. front: {
  28505. height: math.unit(2 + 11 / 12, "feet"),
  28506. weight: math.unit(30, "lb"),
  28507. name: "Front",
  28508. image: {
  28509. source: "./media/characters/weatley/front.svg",
  28510. bottom: 10.7 / 414,
  28511. extra: 403.5 / 362
  28512. }
  28513. },
  28514. back: {
  28515. height: math.unit(2 + 11 / 12, "feet"),
  28516. weight: math.unit(30, "lb"),
  28517. name: "Back",
  28518. image: {
  28519. source: "./media/characters/weatley/back.svg",
  28520. bottom: 10.7 / 414,
  28521. extra: 403.5 / 362
  28522. }
  28523. },
  28524. },
  28525. [
  28526. {
  28527. name: "Normal",
  28528. height: math.unit(2 + 11 / 12, "feet"),
  28529. default: true
  28530. },
  28531. ]
  28532. ))
  28533. characterMakers.push(() => makeCharacter(
  28534. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28535. {
  28536. front: {
  28537. height: math.unit(5 + 2 / 12, "feet"),
  28538. weight: math.unit(50, "kg"),
  28539. name: "Front",
  28540. image: {
  28541. source: "./media/characters/mercury-crescent/front.svg",
  28542. extra: 1088 / 1033,
  28543. bottom: 18.9 / 1109
  28544. }
  28545. },
  28546. },
  28547. [
  28548. {
  28549. name: "Normal",
  28550. height: math.unit(5 + 2 / 12, "feet"),
  28551. default: true
  28552. },
  28553. ]
  28554. ))
  28555. characterMakers.push(() => makeCharacter(
  28556. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28557. {
  28558. front: {
  28559. height: math.unit(2, "feet"),
  28560. weight: math.unit(15, "kg"),
  28561. name: "Front",
  28562. image: {
  28563. source: "./media/characters/diamond-jones/front.svg",
  28564. extra: 727/723,
  28565. bottom: 46/773
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Normal",
  28572. height: math.unit(2, "feet"),
  28573. default: true
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28579. {
  28580. front: {
  28581. height: math.unit(3, "feet"),
  28582. weight: math.unit(30, "kg"),
  28583. name: "Front",
  28584. image: {
  28585. source: "./media/characters/sweet-bit/front.svg",
  28586. extra: 675 / 567,
  28587. bottom: 27.7 / 703
  28588. }
  28589. },
  28590. },
  28591. [
  28592. {
  28593. name: "Normal",
  28594. height: math.unit(3, "feet"),
  28595. default: true
  28596. },
  28597. ]
  28598. ))
  28599. characterMakers.push(() => makeCharacter(
  28600. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28601. {
  28602. side: {
  28603. height: math.unit(9.178, "feet"),
  28604. weight: math.unit(500, "lb"),
  28605. name: "Side",
  28606. image: {
  28607. source: "./media/characters/umbrazen/side.svg",
  28608. extra: 1730 / 1473,
  28609. bottom: 34.6 / 1765
  28610. }
  28611. },
  28612. },
  28613. [
  28614. {
  28615. name: "Normal",
  28616. height: math.unit(9.178, "feet"),
  28617. default: true
  28618. },
  28619. ]
  28620. ))
  28621. characterMakers.push(() => makeCharacter(
  28622. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28623. {
  28624. front: {
  28625. height: math.unit(10, "feet"),
  28626. weight: math.unit(750, "lb"),
  28627. name: "Front",
  28628. image: {
  28629. source: "./media/characters/arlist/front.svg",
  28630. extra: 961 / 778,
  28631. bottom: 6.2 / 986
  28632. }
  28633. },
  28634. },
  28635. [
  28636. {
  28637. name: "Normal",
  28638. height: math.unit(10, "feet"),
  28639. default: true
  28640. },
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(5 + 1 / 12, "feet"),
  28648. weight: math.unit(110, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/aradel/front.svg",
  28652. extra: 324 / 303,
  28653. bottom: 3.6 / 329.4
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Normal",
  28660. height: math.unit(5 + 1 / 12, "feet"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28667. {
  28668. dressed: {
  28669. height: math.unit(3 + 8 / 12, "feet"),
  28670. weight: math.unit(50, "lb"),
  28671. name: "Dressed",
  28672. image: {
  28673. source: "./media/characters/serryn/dressed.svg",
  28674. extra: 1792 / 1656,
  28675. bottom: 43.5 / 1840
  28676. }
  28677. },
  28678. nude: {
  28679. height: math.unit(3 + 8 / 12, "feet"),
  28680. weight: math.unit(50, "lb"),
  28681. name: "Nude",
  28682. image: {
  28683. source: "./media/characters/serryn/nude.svg",
  28684. extra: 1792 / 1656,
  28685. bottom: 43.5 / 1840
  28686. }
  28687. },
  28688. },
  28689. [
  28690. {
  28691. name: "Normal",
  28692. height: math.unit(3 + 8 / 12, "feet"),
  28693. default: true
  28694. },
  28695. ]
  28696. ))
  28697. characterMakers.push(() => makeCharacter(
  28698. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28699. {
  28700. front: {
  28701. height: math.unit(7 + 10 / 12, "feet"),
  28702. weight: math.unit(255, "lb"),
  28703. name: "Front",
  28704. image: {
  28705. source: "./media/characters/xavier-thyme/front.svg",
  28706. extra: 3733 / 3642,
  28707. bottom: 131 / 3869
  28708. }
  28709. },
  28710. frontRaven: {
  28711. height: math.unit(7 + 10 / 12, "feet"),
  28712. weight: math.unit(255, "lb"),
  28713. name: "Front (Raven)",
  28714. image: {
  28715. source: "./media/characters/xavier-thyme/front-raven.svg",
  28716. extra: 4385 / 3642,
  28717. bottom: 131 / 4517
  28718. }
  28719. },
  28720. },
  28721. [
  28722. {
  28723. name: "Normal",
  28724. height: math.unit(7 + 10 / 12, "feet"),
  28725. default: true
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28731. {
  28732. front: {
  28733. height: math.unit(1.6, "m"),
  28734. weight: math.unit(50, "kg"),
  28735. name: "Front",
  28736. image: {
  28737. source: "./media/characters/kiki/front.svg",
  28738. extra: 4682 / 3610,
  28739. bottom: 115 / 4777
  28740. }
  28741. },
  28742. },
  28743. [
  28744. {
  28745. name: "Normal",
  28746. height: math.unit(1.6, "meters"),
  28747. default: true
  28748. },
  28749. ]
  28750. ))
  28751. characterMakers.push(() => makeCharacter(
  28752. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28753. {
  28754. front: {
  28755. height: math.unit(50, "m"),
  28756. weight: math.unit(500, "tonnes"),
  28757. name: "Front",
  28758. image: {
  28759. source: "./media/characters/ryoko/front.svg",
  28760. extra: 4632 / 3926,
  28761. bottom: 193 / 4823
  28762. }
  28763. },
  28764. },
  28765. [
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(50, "meters"),
  28769. default: true
  28770. },
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28775. {
  28776. front: {
  28777. height: math.unit(30, "m"),
  28778. weight: math.unit(22, "tonnes"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/elio/front.svg",
  28782. extra: 4582 / 3720,
  28783. bottom: 236 / 4828
  28784. }
  28785. },
  28786. },
  28787. [
  28788. {
  28789. name: "Normal",
  28790. height: math.unit(30, "meters"),
  28791. default: true
  28792. },
  28793. ]
  28794. ))
  28795. characterMakers.push(() => makeCharacter(
  28796. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28797. {
  28798. front: {
  28799. height: math.unit(6 + 3 / 12, "feet"),
  28800. weight: math.unit(120, "lb"),
  28801. name: "Front",
  28802. image: {
  28803. source: "./media/characters/azura/front.svg",
  28804. extra: 1149 / 1135,
  28805. bottom: 45 / 1194
  28806. }
  28807. },
  28808. frontClothed: {
  28809. height: math.unit(6 + 3 / 12, "feet"),
  28810. weight: math.unit(120, "lb"),
  28811. name: "Front (Clothed)",
  28812. image: {
  28813. source: "./media/characters/azura/front-clothed.svg",
  28814. extra: 1149 / 1135,
  28815. bottom: 45 / 1194
  28816. }
  28817. },
  28818. },
  28819. [
  28820. {
  28821. name: "Normal",
  28822. height: math.unit(6 + 3 / 12, "feet"),
  28823. default: true
  28824. },
  28825. {
  28826. name: "Macro",
  28827. height: math.unit(20 + 6 / 12, "feet")
  28828. },
  28829. {
  28830. name: "Megamacro",
  28831. height: math.unit(12, "miles")
  28832. },
  28833. {
  28834. name: "Gigamacro",
  28835. height: math.unit(10000, "miles")
  28836. },
  28837. {
  28838. name: "Teramacro",
  28839. height: math.unit(900000, "miles")
  28840. },
  28841. ]
  28842. ))
  28843. characterMakers.push(() => makeCharacter(
  28844. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28845. {
  28846. front: {
  28847. height: math.unit(12, "feet"),
  28848. weight: math.unit(1, "ton"),
  28849. capacity: math.unit(660000, "gallons"),
  28850. name: "Front",
  28851. image: {
  28852. source: "./media/characters/zeus/front.svg",
  28853. extra: 5005 / 4717,
  28854. bottom: 363 / 5388
  28855. }
  28856. },
  28857. },
  28858. [
  28859. {
  28860. name: "Normal",
  28861. height: math.unit(12, "feet")
  28862. },
  28863. {
  28864. name: "Preferred Size",
  28865. height: math.unit(0.5, "miles"),
  28866. default: true
  28867. },
  28868. {
  28869. name: "Giga Horse",
  28870. height: math.unit(300, "miles")
  28871. },
  28872. {
  28873. name: "Riding Planets",
  28874. height: math.unit(30, "megameters")
  28875. },
  28876. {
  28877. name: "Cosmic Giant",
  28878. height: math.unit(3, "zettameters")
  28879. },
  28880. {
  28881. name: "Breeding God",
  28882. height: math.unit(9.92e22, "yottameters")
  28883. },
  28884. ]
  28885. ))
  28886. characterMakers.push(() => makeCharacter(
  28887. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28888. {
  28889. side: {
  28890. height: math.unit(9, "feet"),
  28891. weight: math.unit(1500, "kg"),
  28892. name: "Side",
  28893. image: {
  28894. source: "./media/characters/fang/side.svg",
  28895. extra: 924 / 866,
  28896. bottom: 47.5 / 972.3
  28897. }
  28898. },
  28899. },
  28900. [
  28901. {
  28902. name: "Normal",
  28903. height: math.unit(9, "feet"),
  28904. default: true
  28905. },
  28906. {
  28907. name: "Macro",
  28908. height: math.unit(75 + 6 / 12, "feet")
  28909. },
  28910. {
  28911. name: "Teramacro",
  28912. height: math.unit(50000, "miles")
  28913. },
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28918. {
  28919. front: {
  28920. height: math.unit(10, "feet"),
  28921. weight: math.unit(2, "tons"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/rekhit/front.svg",
  28925. extra: 2796 / 2590,
  28926. bottom: 225 / 3022
  28927. }
  28928. },
  28929. },
  28930. [
  28931. {
  28932. name: "Normal",
  28933. height: math.unit(10, "feet"),
  28934. default: true
  28935. },
  28936. {
  28937. name: "Macro",
  28938. height: math.unit(500, "feet")
  28939. },
  28940. ]
  28941. ))
  28942. characterMakers.push(() => makeCharacter(
  28943. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28944. {
  28945. front: {
  28946. height: math.unit(7 + 6.451 / 12, "feet"),
  28947. weight: math.unit(310, "lb"),
  28948. name: "Front",
  28949. image: {
  28950. source: "./media/characters/dahlia-verrick/front.svg",
  28951. extra: 1488 / 1365,
  28952. bottom: 6.2 / 1495
  28953. }
  28954. },
  28955. back: {
  28956. height: math.unit(7 + 6.451 / 12, "feet"),
  28957. weight: math.unit(310, "lb"),
  28958. name: "Back",
  28959. image: {
  28960. source: "./media/characters/dahlia-verrick/back.svg",
  28961. extra: 1472 / 1351,
  28962. bottom: 5.28 / 1477
  28963. }
  28964. },
  28965. frontBusiness: {
  28966. height: math.unit(7 + 6.451 / 12, "feet"),
  28967. weight: math.unit(200, "lb"),
  28968. name: "Front (Business)",
  28969. image: {
  28970. source: "./media/characters/dahlia-verrick/front-business.svg",
  28971. extra: 1478 / 1381,
  28972. bottom: 5.5 / 1484
  28973. }
  28974. },
  28975. frontCasual: {
  28976. height: math.unit(7 + 6.451 / 12, "feet"),
  28977. weight: math.unit(200, "lb"),
  28978. name: "Front (Casual)",
  28979. image: {
  28980. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28981. extra: 1478 / 1381,
  28982. bottom: 5.5 / 1484
  28983. }
  28984. },
  28985. },
  28986. [
  28987. {
  28988. name: "Travel-Sized",
  28989. height: math.unit(7.45, "inches")
  28990. },
  28991. {
  28992. name: "Normal",
  28993. height: math.unit(7 + 6.451 / 12, "feet"),
  28994. default: true
  28995. },
  28996. {
  28997. name: "Hitting the Town",
  28998. height: math.unit(37 + 8 / 12, "feet")
  28999. },
  29000. {
  29001. name: "Stomp in the Suburbs",
  29002. height: math.unit(964 + 9.728 / 12, "feet")
  29003. },
  29004. {
  29005. name: "Sit on the City",
  29006. height: math.unit(61747 + 10.592 / 12, "feet")
  29007. },
  29008. {
  29009. name: "Glomp the Globe",
  29010. height: math.unit(252919327 + 4.832 / 12, "feet")
  29011. },
  29012. ]
  29013. ))
  29014. characterMakers.push(() => makeCharacter(
  29015. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29016. {
  29017. front: {
  29018. height: math.unit(6 + 4 / 12, "feet"),
  29019. weight: math.unit(320, "lb"),
  29020. name: "Front",
  29021. image: {
  29022. source: "./media/characters/balina-mahigan/front.svg",
  29023. extra: 447 / 428,
  29024. bottom: 18 / 466
  29025. }
  29026. },
  29027. back: {
  29028. height: math.unit(6 + 4 / 12, "feet"),
  29029. weight: math.unit(320, "lb"),
  29030. name: "Back",
  29031. image: {
  29032. source: "./media/characters/balina-mahigan/back.svg",
  29033. extra: 445 / 428,
  29034. bottom: 4.07 / 448
  29035. }
  29036. },
  29037. arm: {
  29038. height: math.unit(1.88, "feet"),
  29039. name: "Arm",
  29040. image: {
  29041. source: "./media/characters/balina-mahigan/arm.svg"
  29042. }
  29043. },
  29044. backPort: {
  29045. height: math.unit(0.685, "feet"),
  29046. name: "Back Port",
  29047. image: {
  29048. source: "./media/characters/balina-mahigan/back-port.svg"
  29049. }
  29050. },
  29051. hoofpaw: {
  29052. height: math.unit(1.41, "feet"),
  29053. name: "Hoofpaw",
  29054. image: {
  29055. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29056. }
  29057. },
  29058. leftHandBack: {
  29059. height: math.unit(0.938, "feet"),
  29060. name: "Left Hand (Back)",
  29061. image: {
  29062. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29063. }
  29064. },
  29065. leftHandFront: {
  29066. height: math.unit(0.938, "feet"),
  29067. name: "Left Hand (Front)",
  29068. image: {
  29069. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29070. }
  29071. },
  29072. rightHandBack: {
  29073. height: math.unit(0.95, "feet"),
  29074. name: "Right Hand (Back)",
  29075. image: {
  29076. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29077. }
  29078. },
  29079. rightHandFront: {
  29080. height: math.unit(0.95, "feet"),
  29081. name: "Right Hand (Front)",
  29082. image: {
  29083. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29084. }
  29085. },
  29086. },
  29087. [
  29088. {
  29089. name: "Normal",
  29090. height: math.unit(6 + 4 / 12, "feet"),
  29091. default: true
  29092. },
  29093. ]
  29094. ))
  29095. characterMakers.push(() => makeCharacter(
  29096. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29097. {
  29098. front: {
  29099. height: math.unit(6, "feet"),
  29100. weight: math.unit(320, "lb"),
  29101. name: "Front",
  29102. image: {
  29103. source: "./media/characters/balina-mejeri/front.svg",
  29104. extra: 517 / 488,
  29105. bottom: 44.2 / 561
  29106. }
  29107. },
  29108. },
  29109. [
  29110. {
  29111. name: "Normal",
  29112. height: math.unit(6 + 4 / 12, "feet")
  29113. },
  29114. {
  29115. name: "Business",
  29116. height: math.unit(155, "feet"),
  29117. default: true
  29118. },
  29119. ]
  29120. ))
  29121. characterMakers.push(() => makeCharacter(
  29122. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29123. {
  29124. kneeling: {
  29125. height: math.unit(6 + 4 / 12, "feet"),
  29126. weight: math.unit(300 * 20, "lb"),
  29127. name: "Kneeling",
  29128. image: {
  29129. source: "./media/characters/balbarian/kneeling.svg",
  29130. extra: 922 / 862,
  29131. bottom: 42.4 / 965
  29132. }
  29133. },
  29134. },
  29135. [
  29136. {
  29137. name: "Normal",
  29138. height: math.unit(6 + 4 / 12, "feet")
  29139. },
  29140. {
  29141. name: "Treasured",
  29142. height: math.unit(18 + 9 / 12, "feet"),
  29143. default: true
  29144. },
  29145. {
  29146. name: "Macro",
  29147. height: math.unit(900, "feet")
  29148. },
  29149. ]
  29150. ))
  29151. characterMakers.push(() => makeCharacter(
  29152. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29153. {
  29154. front: {
  29155. height: math.unit(6 + 4 / 12, "feet"),
  29156. weight: math.unit(325, "lb"),
  29157. name: "Front",
  29158. image: {
  29159. source: "./media/characters/balina-amarini/front.svg",
  29160. extra: 415 / 403,
  29161. bottom: 19 / 433.4
  29162. }
  29163. },
  29164. back: {
  29165. height: math.unit(6 + 4 / 12, "feet"),
  29166. weight: math.unit(325, "lb"),
  29167. name: "Back",
  29168. image: {
  29169. source: "./media/characters/balina-amarini/back.svg",
  29170. extra: 415 / 403,
  29171. bottom: 13.5 / 432
  29172. }
  29173. },
  29174. overdrive: {
  29175. height: math.unit(6 + 4 / 12, "feet"),
  29176. weight: math.unit(400, "lb"),
  29177. name: "Overdrive",
  29178. image: {
  29179. source: "./media/characters/balina-amarini/overdrive.svg",
  29180. extra: 269 / 259,
  29181. bottom: 12 / 282
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Boom",
  29188. height: math.unit(9 + 10 / 12, "feet"),
  29189. default: true
  29190. },
  29191. {
  29192. name: "Macro",
  29193. height: math.unit(280, "feet")
  29194. },
  29195. ]
  29196. ))
  29197. characterMakers.push(() => makeCharacter(
  29198. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29199. {
  29200. goddess: {
  29201. height: math.unit(600, "feet"),
  29202. weight: math.unit(2000000, "tons"),
  29203. name: "Goddess",
  29204. image: {
  29205. source: "./media/characters/lady-kubwa/goddess.svg",
  29206. extra: 1240.5 / 1223,
  29207. bottom: 22 / 1263
  29208. }
  29209. },
  29210. goddesser: {
  29211. height: math.unit(900, "feet"),
  29212. weight: math.unit(20000000, "lb"),
  29213. name: "Goddess-er",
  29214. image: {
  29215. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29216. extra: 899 / 888,
  29217. bottom: 12.6 / 912
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Macro",
  29224. height: math.unit(600, "feet"),
  29225. default: true
  29226. },
  29227. {
  29228. name: "Megamacro",
  29229. height: math.unit(250, "miles")
  29230. },
  29231. ]
  29232. ))
  29233. characterMakers.push(() => makeCharacter(
  29234. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29235. {
  29236. front: {
  29237. height: math.unit(7 + 7 / 12, "feet"),
  29238. weight: math.unit(250, "lb"),
  29239. name: "Front",
  29240. image: {
  29241. source: "./media/characters/tala-grovehorn/front.svg",
  29242. extra: 2636 / 2525,
  29243. bottom: 147 / 2781
  29244. }
  29245. },
  29246. back: {
  29247. height: math.unit(7 + 7 / 12, "feet"),
  29248. weight: math.unit(250, "lb"),
  29249. name: "Back",
  29250. image: {
  29251. source: "./media/characters/tala-grovehorn/back.svg",
  29252. extra: 2635 / 2539,
  29253. bottom: 100 / 2732.8
  29254. }
  29255. },
  29256. mouth: {
  29257. height: math.unit(1.15, "feet"),
  29258. name: "Mouth",
  29259. image: {
  29260. source: "./media/characters/tala-grovehorn/mouth.svg"
  29261. }
  29262. },
  29263. dick: {
  29264. height: math.unit(2.36, "feet"),
  29265. name: "Dick",
  29266. image: {
  29267. source: "./media/characters/tala-grovehorn/dick.svg"
  29268. }
  29269. },
  29270. slit: {
  29271. height: math.unit(0.61, "feet"),
  29272. name: "Slit",
  29273. image: {
  29274. source: "./media/characters/tala-grovehorn/slit.svg"
  29275. }
  29276. },
  29277. },
  29278. [
  29279. ]
  29280. ))
  29281. characterMakers.push(() => makeCharacter(
  29282. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29283. {
  29284. front: {
  29285. height: math.unit(7 + 7 / 12, "feet"),
  29286. weight: math.unit(225, "lb"),
  29287. name: "Front",
  29288. image: {
  29289. source: "./media/characters/epona/front.svg",
  29290. extra: 2445 / 2290,
  29291. bottom: 251 / 2696
  29292. }
  29293. },
  29294. back: {
  29295. height: math.unit(7 + 7 / 12, "feet"),
  29296. weight: math.unit(225, "lb"),
  29297. name: "Back",
  29298. image: {
  29299. source: "./media/characters/epona/back.svg",
  29300. extra: 2546 / 2408,
  29301. bottom: 44 / 2589
  29302. }
  29303. },
  29304. genitals: {
  29305. height: math.unit(1.5, "feet"),
  29306. name: "Genitals",
  29307. image: {
  29308. source: "./media/characters/epona/genitals.svg"
  29309. }
  29310. },
  29311. },
  29312. [
  29313. {
  29314. name: "Normal",
  29315. height: math.unit(7 + 7 / 12, "feet"),
  29316. default: true
  29317. },
  29318. ]
  29319. ))
  29320. characterMakers.push(() => makeCharacter(
  29321. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29322. {
  29323. front: {
  29324. height: math.unit(7, "feet"),
  29325. weight: math.unit(518, "lb"),
  29326. name: "Front",
  29327. image: {
  29328. source: "./media/characters/avia-bloodbourn/front.svg",
  29329. extra: 1466 / 1350,
  29330. bottom: 65 / 1527
  29331. }
  29332. },
  29333. },
  29334. [
  29335. ]
  29336. ))
  29337. characterMakers.push(() => makeCharacter(
  29338. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29339. {
  29340. front: {
  29341. height: math.unit(9.35, "feet"),
  29342. weight: math.unit(600, "lb"),
  29343. name: "Front",
  29344. image: {
  29345. source: "./media/characters/amera/front.svg",
  29346. extra: 891 / 818,
  29347. bottom: 30 / 922.7
  29348. }
  29349. },
  29350. back: {
  29351. height: math.unit(9.35, "feet"),
  29352. weight: math.unit(600, "lb"),
  29353. name: "Back",
  29354. image: {
  29355. source: "./media/characters/amera/back.svg",
  29356. extra: 876 / 824,
  29357. bottom: 6.8 / 884
  29358. }
  29359. },
  29360. dick: {
  29361. height: math.unit(2.14, "feet"),
  29362. name: "Dick",
  29363. image: {
  29364. source: "./media/characters/amera/dick.svg"
  29365. }
  29366. },
  29367. },
  29368. [
  29369. {
  29370. name: "Normal",
  29371. height: math.unit(9.35, "feet"),
  29372. default: true
  29373. },
  29374. ]
  29375. ))
  29376. characterMakers.push(() => makeCharacter(
  29377. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29378. {
  29379. kneeling: {
  29380. height: math.unit(3 + 4 / 12, "feet"),
  29381. weight: math.unit(90, "lb"),
  29382. name: "Kneeling",
  29383. image: {
  29384. source: "./media/characters/rosewen/kneeling.svg",
  29385. extra: 1835 / 1571,
  29386. bottom: 27.7 / 1862
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(3 + 4 / 12, "feet"),
  29394. default: true
  29395. },
  29396. ]
  29397. ))
  29398. characterMakers.push(() => makeCharacter(
  29399. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29400. {
  29401. front: {
  29402. height: math.unit(5 + 10 / 12, "feet"),
  29403. weight: math.unit(200, "lb"),
  29404. name: "Front",
  29405. image: {
  29406. source: "./media/characters/sabah/front.svg",
  29407. extra: 849 / 763,
  29408. bottom: 33.9 / 881
  29409. }
  29410. },
  29411. },
  29412. [
  29413. {
  29414. name: "Normal",
  29415. height: math.unit(5 + 10 / 12, "feet"),
  29416. default: true
  29417. },
  29418. ]
  29419. ))
  29420. characterMakers.push(() => makeCharacter(
  29421. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29422. {
  29423. front: {
  29424. height: math.unit(3 + 5 / 12, "feet"),
  29425. weight: math.unit(40, "kg"),
  29426. name: "Front",
  29427. image: {
  29428. source: "./media/characters/purple-flame/front.svg",
  29429. extra: 1577 / 1412,
  29430. bottom: 97 / 1694
  29431. }
  29432. },
  29433. frontDressed: {
  29434. height: math.unit(3 + 5 / 12, "feet"),
  29435. weight: math.unit(40, "kg"),
  29436. name: "Front (Dressed)",
  29437. image: {
  29438. source: "./media/characters/purple-flame/front-dressed.svg",
  29439. extra: 1577 / 1412,
  29440. bottom: 97 / 1694
  29441. }
  29442. },
  29443. headphones: {
  29444. height: math.unit(0.85, "feet"),
  29445. name: "Headphones",
  29446. image: {
  29447. source: "./media/characters/purple-flame/headphones.svg"
  29448. }
  29449. },
  29450. },
  29451. [
  29452. {
  29453. name: "Really Small",
  29454. height: math.unit(5, "cm")
  29455. },
  29456. {
  29457. name: "Micro",
  29458. height: math.unit(1 + 5 / 12, "feet")
  29459. },
  29460. {
  29461. name: "Normal",
  29462. height: math.unit(3 + 5 / 12, "feet"),
  29463. default: true
  29464. },
  29465. {
  29466. name: "Minimacro",
  29467. height: math.unit(125, "feet")
  29468. },
  29469. {
  29470. name: "Macro",
  29471. height: math.unit(0.5, "miles")
  29472. },
  29473. {
  29474. name: "Megamacro",
  29475. height: math.unit(50, "miles")
  29476. },
  29477. {
  29478. name: "Gigantic",
  29479. height: math.unit(750, "miles")
  29480. },
  29481. {
  29482. name: "Planetary",
  29483. height: math.unit(15000, "miles")
  29484. },
  29485. ]
  29486. ))
  29487. characterMakers.push(() => makeCharacter(
  29488. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29489. {
  29490. front: {
  29491. height: math.unit(14, "feet"),
  29492. weight: math.unit(959, "lb"),
  29493. name: "Front",
  29494. image: {
  29495. source: "./media/characters/arsenal/front.svg",
  29496. extra: 2357 / 2157,
  29497. bottom: 93 / 2458
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "Normal",
  29504. height: math.unit(14, "feet"),
  29505. default: true
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29511. {
  29512. front: {
  29513. height: math.unit(6, "feet"),
  29514. weight: math.unit(150, "lb"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/adira/front.svg",
  29518. extra: 1078 / 1029,
  29519. bottom: 87 / 1166
  29520. }
  29521. },
  29522. },
  29523. [
  29524. {
  29525. name: "Micro",
  29526. height: math.unit(4, "inches"),
  29527. default: true
  29528. },
  29529. {
  29530. name: "Macro",
  29531. height: math.unit(50, "feet")
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29537. {
  29538. front: {
  29539. height: math.unit(16, "feet"),
  29540. weight: math.unit(1000, "lb"),
  29541. name: "Front",
  29542. image: {
  29543. source: "./media/characters/grim/front.svg",
  29544. extra: 622 / 614,
  29545. bottom: 18.1 / 642
  29546. }
  29547. },
  29548. back: {
  29549. height: math.unit(16, "feet"),
  29550. weight: math.unit(1000, "lb"),
  29551. name: "Back",
  29552. image: {
  29553. source: "./media/characters/grim/back.svg",
  29554. extra: 610.6 / 602,
  29555. bottom: 40.8 / 652
  29556. }
  29557. },
  29558. hunched: {
  29559. height: math.unit(9.75, "feet"),
  29560. weight: math.unit(1000, "lb"),
  29561. name: "Hunched",
  29562. image: {
  29563. source: "./media/characters/grim/hunched.svg",
  29564. extra: 304 / 297,
  29565. bottom: 35.4 / 394
  29566. }
  29567. },
  29568. },
  29569. [
  29570. {
  29571. name: "Normal",
  29572. height: math.unit(16, "feet"),
  29573. default: true
  29574. },
  29575. ]
  29576. ))
  29577. characterMakers.push(() => makeCharacter(
  29578. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29579. {
  29580. front: {
  29581. height: math.unit(2.3, "meters"),
  29582. weight: math.unit(300, "lb"),
  29583. name: "Front",
  29584. image: {
  29585. source: "./media/characters/sinja/front-sfw.svg",
  29586. extra: 1393 / 1294,
  29587. bottom: 70 / 1463
  29588. }
  29589. },
  29590. frontNsfw: {
  29591. height: math.unit(2.3, "meters"),
  29592. weight: math.unit(300, "lb"),
  29593. name: "Front (NSFW)",
  29594. image: {
  29595. source: "./media/characters/sinja/front-nsfw.svg",
  29596. extra: 1393 / 1294,
  29597. bottom: 70 / 1463
  29598. }
  29599. },
  29600. back: {
  29601. height: math.unit(2.3, "meters"),
  29602. weight: math.unit(300, "lb"),
  29603. name: "Back",
  29604. image: {
  29605. source: "./media/characters/sinja/back.svg",
  29606. extra: 1393 / 1294,
  29607. bottom: 70 / 1463
  29608. }
  29609. },
  29610. head: {
  29611. height: math.unit(1.771, "feet"),
  29612. name: "Head",
  29613. image: {
  29614. source: "./media/characters/sinja/head.svg"
  29615. }
  29616. },
  29617. slit: {
  29618. height: math.unit(0.8, "feet"),
  29619. name: "Slit",
  29620. image: {
  29621. source: "./media/characters/sinja/slit.svg"
  29622. }
  29623. },
  29624. },
  29625. [
  29626. {
  29627. name: "Normal",
  29628. height: math.unit(2.3, "meters")
  29629. },
  29630. {
  29631. name: "Macro",
  29632. height: math.unit(91, "meters"),
  29633. default: true
  29634. },
  29635. {
  29636. name: "Megamacro",
  29637. height: math.unit(91440, "meters")
  29638. },
  29639. {
  29640. name: "Gigamacro",
  29641. height: math.unit(60960000, "meters")
  29642. },
  29643. {
  29644. name: "Teramacro",
  29645. height: math.unit(9144000000, "meters")
  29646. },
  29647. ]
  29648. ))
  29649. characterMakers.push(() => makeCharacter(
  29650. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29651. {
  29652. front: {
  29653. height: math.unit(1.7, "meters"),
  29654. weight: math.unit(130, "lb"),
  29655. name: "Front",
  29656. image: {
  29657. source: "./media/characters/kyu/front.svg",
  29658. extra: 415 / 395,
  29659. bottom: 5 / 420
  29660. }
  29661. },
  29662. head: {
  29663. height: math.unit(1.75, "feet"),
  29664. name: "Head",
  29665. image: {
  29666. source: "./media/characters/kyu/head.svg"
  29667. }
  29668. },
  29669. foot: {
  29670. height: math.unit(0.81, "feet"),
  29671. name: "Foot",
  29672. image: {
  29673. source: "./media/characters/kyu/foot.svg"
  29674. }
  29675. },
  29676. },
  29677. [
  29678. {
  29679. name: "Normal",
  29680. height: math.unit(1.7, "meters")
  29681. },
  29682. {
  29683. name: "Macro",
  29684. height: math.unit(131, "feet"),
  29685. default: true
  29686. },
  29687. {
  29688. name: "Megamacro",
  29689. height: math.unit(91440, "meters")
  29690. },
  29691. {
  29692. name: "Gigamacro",
  29693. height: math.unit(60960000, "meters")
  29694. },
  29695. {
  29696. name: "Teramacro",
  29697. height: math.unit(9144000000, "meters")
  29698. },
  29699. ]
  29700. ))
  29701. characterMakers.push(() => makeCharacter(
  29702. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29703. {
  29704. front: {
  29705. height: math.unit(7 + 1 / 12, "feet"),
  29706. weight: math.unit(250, "lb"),
  29707. name: "Front",
  29708. image: {
  29709. source: "./media/characters/joey/front.svg",
  29710. extra: 1791 / 1537,
  29711. bottom: 28 / 1816
  29712. }
  29713. },
  29714. },
  29715. [
  29716. {
  29717. name: "Micro",
  29718. height: math.unit(3, "inches")
  29719. },
  29720. {
  29721. name: "Normal",
  29722. height: math.unit(7 + 1 / 12, "feet"),
  29723. default: true
  29724. },
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29729. {
  29730. front: {
  29731. height: math.unit(165, "cm"),
  29732. weight: math.unit(140, "lb"),
  29733. name: "Front",
  29734. image: {
  29735. source: "./media/characters/sam-evans/front.svg",
  29736. extra: 3417 / 3230,
  29737. bottom: 41.3 / 3417
  29738. }
  29739. },
  29740. frontSixTails: {
  29741. height: math.unit(165, "cm"),
  29742. weight: math.unit(140, "lb"),
  29743. name: "Front-six-tails",
  29744. image: {
  29745. source: "./media/characters/sam-evans/front-six-tails.svg",
  29746. extra: 3417 / 3230,
  29747. bottom: 41.3 / 3417
  29748. }
  29749. },
  29750. back: {
  29751. height: math.unit(165, "cm"),
  29752. weight: math.unit(140, "lb"),
  29753. name: "Back",
  29754. image: {
  29755. source: "./media/characters/sam-evans/back.svg",
  29756. extra: 3227 / 3032,
  29757. bottom: 6.8 / 3234
  29758. }
  29759. },
  29760. face: {
  29761. height: math.unit(0.68, "feet"),
  29762. name: "Face",
  29763. image: {
  29764. source: "./media/characters/sam-evans/face.svg"
  29765. }
  29766. },
  29767. },
  29768. [
  29769. {
  29770. name: "Normal",
  29771. height: math.unit(165, "cm"),
  29772. default: true
  29773. },
  29774. {
  29775. name: "Macro",
  29776. height: math.unit(100, "meters")
  29777. },
  29778. {
  29779. name: "Macro+",
  29780. height: math.unit(800, "meters")
  29781. },
  29782. {
  29783. name: "Macro++",
  29784. height: math.unit(3, "km")
  29785. },
  29786. {
  29787. name: "Macro+++",
  29788. height: math.unit(30, "km")
  29789. },
  29790. ]
  29791. ))
  29792. characterMakers.push(() => makeCharacter(
  29793. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29794. {
  29795. front: {
  29796. height: math.unit(10, "feet"),
  29797. weight: math.unit(750, "lb"),
  29798. name: "Front",
  29799. image: {
  29800. source: "./media/characters/juliet-a/front.svg",
  29801. extra: 1766 / 1720,
  29802. bottom: 43 / 1809
  29803. }
  29804. },
  29805. back: {
  29806. height: math.unit(10, "feet"),
  29807. weight: math.unit(750, "lb"),
  29808. name: "Back",
  29809. image: {
  29810. source: "./media/characters/juliet-a/back.svg",
  29811. extra: 1781 / 1734,
  29812. bottom: 35 / 1810,
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Normal",
  29819. height: math.unit(10, "feet"),
  29820. default: true
  29821. },
  29822. {
  29823. name: "Dragon Form",
  29824. height: math.unit(250, "feet")
  29825. },
  29826. {
  29827. name: "Macro",
  29828. height: math.unit(1000, "feet")
  29829. },
  29830. {
  29831. name: "Megamacro",
  29832. height: math.unit(10000, "feet")
  29833. }
  29834. ]
  29835. ))
  29836. characterMakers.push(() => makeCharacter(
  29837. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29838. {
  29839. regular: {
  29840. height: math.unit(7 + 3 / 12, "feet"),
  29841. weight: math.unit(260, "lb"),
  29842. name: "Regular",
  29843. image: {
  29844. source: "./media/characters/wild/regular.svg",
  29845. extra: 97.45 / 92,
  29846. bottom: 6.8 / 104.3
  29847. }
  29848. },
  29849. biggums: {
  29850. height: math.unit(8 + 6 / 12, "feet"),
  29851. weight: math.unit(425, "lb"),
  29852. name: "Biggums",
  29853. image: {
  29854. source: "./media/characters/wild/biggums.svg",
  29855. extra: 97.45 / 92,
  29856. bottom: 7.5 / 132.34
  29857. }
  29858. },
  29859. mawRegular: {
  29860. height: math.unit(1.24, "feet"),
  29861. name: "Maw (Regular)",
  29862. image: {
  29863. source: "./media/characters/wild/maw.svg"
  29864. }
  29865. },
  29866. mawBiggums: {
  29867. height: math.unit(1.47, "feet"),
  29868. name: "Maw (Biggums)",
  29869. image: {
  29870. source: "./media/characters/wild/maw.svg"
  29871. }
  29872. },
  29873. },
  29874. [
  29875. {
  29876. name: "Normal",
  29877. height: math.unit(7 + 3 / 12, "feet"),
  29878. default: true
  29879. },
  29880. ]
  29881. ))
  29882. characterMakers.push(() => makeCharacter(
  29883. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29884. {
  29885. front: {
  29886. height: math.unit(2.5, "meters"),
  29887. weight: math.unit(200, "kg"),
  29888. name: "Front",
  29889. image: {
  29890. source: "./media/characters/vidar/front.svg",
  29891. extra: 2994 / 2795,
  29892. bottom: 56 / 3061
  29893. }
  29894. },
  29895. back: {
  29896. height: math.unit(2.5, "meters"),
  29897. weight: math.unit(200, "kg"),
  29898. name: "Back",
  29899. image: {
  29900. source: "./media/characters/vidar/back.svg",
  29901. extra: 3131 / 2928,
  29902. bottom: 13.5 / 3141.5
  29903. }
  29904. },
  29905. feral: {
  29906. height: math.unit(2.5, "meters"),
  29907. weight: math.unit(2000, "kg"),
  29908. name: "Feral",
  29909. image: {
  29910. source: "./media/characters/vidar/feral.svg",
  29911. extra: 2790 / 1765,
  29912. bottom: 6 / 2796
  29913. }
  29914. },
  29915. },
  29916. [
  29917. {
  29918. name: "Normal",
  29919. height: math.unit(2.5, "meters"),
  29920. default: true
  29921. },
  29922. {
  29923. name: "Macro",
  29924. height: math.unit(100, "meters")
  29925. },
  29926. ]
  29927. ))
  29928. characterMakers.push(() => makeCharacter(
  29929. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29930. {
  29931. front: {
  29932. height: math.unit(5 + 9 / 12, "feet"),
  29933. weight: math.unit(120, "lb"),
  29934. name: "Front",
  29935. image: {
  29936. source: "./media/characters/ash/front.svg",
  29937. extra: 2189 / 1961,
  29938. bottom: 5.2 / 2194
  29939. }
  29940. },
  29941. },
  29942. [
  29943. {
  29944. name: "Normal",
  29945. height: math.unit(5 + 9 / 12, "feet"),
  29946. default: true
  29947. },
  29948. ]
  29949. ))
  29950. characterMakers.push(() => makeCharacter(
  29951. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29952. {
  29953. front: {
  29954. height: math.unit(9, "feet"),
  29955. weight: math.unit(10000, "lb"),
  29956. name: "Front",
  29957. image: {
  29958. source: "./media/characters/gygabite/front.svg",
  29959. bottom: 31.7 / 537.8,
  29960. extra: 505 / 370
  29961. }
  29962. },
  29963. },
  29964. [
  29965. {
  29966. name: "Normal",
  29967. height: math.unit(9, "feet"),
  29968. default: true
  29969. },
  29970. ]
  29971. ))
  29972. characterMakers.push(() => makeCharacter(
  29973. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29974. {
  29975. front: {
  29976. height: math.unit(12, "feet"),
  29977. weight: math.unit(4000, "lb"),
  29978. name: "Front",
  29979. image: {
  29980. source: "./media/characters/p0tat0/front.svg",
  29981. extra: 1065 / 921,
  29982. bottom: 55.7 / 1121.25
  29983. }
  29984. },
  29985. },
  29986. [
  29987. {
  29988. name: "Normal",
  29989. height: math.unit(12, "feet"),
  29990. default: true
  29991. },
  29992. ]
  29993. ))
  29994. characterMakers.push(() => makeCharacter(
  29995. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29996. {
  29997. side: {
  29998. height: math.unit(6.5, "feet"),
  29999. weight: math.unit(800, "lb"),
  30000. name: "Side",
  30001. image: {
  30002. source: "./media/characters/dusk/side.svg",
  30003. extra: 615 / 373,
  30004. bottom: 53 / 664
  30005. }
  30006. },
  30007. sitting: {
  30008. height: math.unit(7, "feet"),
  30009. weight: math.unit(800, "lb"),
  30010. name: "Sitting",
  30011. image: {
  30012. source: "./media/characters/dusk/sitting.svg",
  30013. extra: 753 / 425,
  30014. bottom: 33 / 774
  30015. }
  30016. },
  30017. head: {
  30018. height: math.unit(6.1, "feet"),
  30019. name: "Head",
  30020. image: {
  30021. source: "./media/characters/dusk/head.svg"
  30022. }
  30023. },
  30024. },
  30025. [
  30026. {
  30027. name: "Normal",
  30028. height: math.unit(7, "feet"),
  30029. default: true
  30030. },
  30031. ]
  30032. ))
  30033. characterMakers.push(() => makeCharacter(
  30034. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30035. {
  30036. front: {
  30037. height: math.unit(15, "feet"),
  30038. weight: math.unit(7000, "lb"),
  30039. name: "Front",
  30040. image: {
  30041. source: "./media/characters/jay-direwolf/front.svg",
  30042. extra: 1810 / 1732,
  30043. bottom: 66 / 1892
  30044. }
  30045. },
  30046. },
  30047. [
  30048. {
  30049. name: "Normal",
  30050. height: math.unit(15, "feet"),
  30051. default: true
  30052. },
  30053. ]
  30054. ))
  30055. characterMakers.push(() => makeCharacter(
  30056. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30057. {
  30058. front: {
  30059. height: math.unit(4 + 9 / 12, "feet"),
  30060. weight: math.unit(130, "lb"),
  30061. name: "Front",
  30062. image: {
  30063. source: "./media/characters/anchovie/front.svg",
  30064. extra: 382 / 350,
  30065. bottom: 25 / 409
  30066. }
  30067. },
  30068. back: {
  30069. height: math.unit(4 + 9 / 12, "feet"),
  30070. weight: math.unit(130, "lb"),
  30071. name: "Back",
  30072. image: {
  30073. source: "./media/characters/anchovie/back.svg",
  30074. extra: 385 / 352,
  30075. bottom: 16.6 / 402
  30076. }
  30077. },
  30078. frontDressed: {
  30079. height: math.unit(4 + 9 / 12, "feet"),
  30080. weight: math.unit(130, "lb"),
  30081. name: "Front (Dressed)",
  30082. image: {
  30083. source: "./media/characters/anchovie/front-dressed.svg",
  30084. extra: 382 / 350,
  30085. bottom: 25 / 409
  30086. }
  30087. },
  30088. backDressed: {
  30089. height: math.unit(4 + 9 / 12, "feet"),
  30090. weight: math.unit(130, "lb"),
  30091. name: "Back (Dressed)",
  30092. image: {
  30093. source: "./media/characters/anchovie/back-dressed.svg",
  30094. extra: 385 / 352,
  30095. bottom: 16.6 / 402
  30096. }
  30097. },
  30098. },
  30099. [
  30100. {
  30101. name: "Micro",
  30102. height: math.unit(6.4, "inches")
  30103. },
  30104. {
  30105. name: "Normal",
  30106. height: math.unit(4 + 9 / 12, "feet"),
  30107. default: true
  30108. },
  30109. ]
  30110. ))
  30111. characterMakers.push(() => makeCharacter(
  30112. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30113. {
  30114. front: {
  30115. height: math.unit(2, "meters"),
  30116. weight: math.unit(180, "lb"),
  30117. name: "Front",
  30118. image: {
  30119. source: "./media/characters/acidrenamon/front.svg",
  30120. extra: 987 / 890,
  30121. bottom: 22.8 / 1009
  30122. }
  30123. },
  30124. back: {
  30125. height: math.unit(2, "meters"),
  30126. weight: math.unit(180, "lb"),
  30127. name: "Back",
  30128. image: {
  30129. source: "./media/characters/acidrenamon/back.svg",
  30130. extra: 983 / 891,
  30131. bottom: 8.4 / 992
  30132. }
  30133. },
  30134. head: {
  30135. height: math.unit(1.92, "feet"),
  30136. name: "Head",
  30137. image: {
  30138. source: "./media/characters/acidrenamon/head.svg"
  30139. }
  30140. },
  30141. rump: {
  30142. height: math.unit(1.72, "feet"),
  30143. name: "Rump",
  30144. image: {
  30145. source: "./media/characters/acidrenamon/rump.svg"
  30146. }
  30147. },
  30148. tail: {
  30149. height: math.unit(4.2, "feet"),
  30150. name: "Tail",
  30151. image: {
  30152. source: "./media/characters/acidrenamon/tail.svg"
  30153. }
  30154. },
  30155. },
  30156. [
  30157. {
  30158. name: "Normal",
  30159. height: math.unit(2, "meters"),
  30160. default: true
  30161. },
  30162. {
  30163. name: "Minimacro",
  30164. height: math.unit(7, "meters")
  30165. },
  30166. {
  30167. name: "Macro",
  30168. height: math.unit(200, "meters")
  30169. },
  30170. {
  30171. name: "Gigamacro",
  30172. height: math.unit(0.2, "earths")
  30173. },
  30174. ]
  30175. ))
  30176. characterMakers.push(() => makeCharacter(
  30177. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30178. {
  30179. front: {
  30180. height: math.unit(152, "feet"),
  30181. name: "Front",
  30182. image: {
  30183. source: "./media/characters/kenzie-lee/front.svg",
  30184. extra: 1869/1774,
  30185. bottom: 128/1997
  30186. }
  30187. },
  30188. side: {
  30189. height: math.unit(86, "feet"),
  30190. name: "Side",
  30191. image: {
  30192. source: "./media/characters/kenzie-lee/side.svg",
  30193. extra: 930/815,
  30194. bottom: 177/1107
  30195. }
  30196. },
  30197. paw: {
  30198. height: math.unit(15, "feet"),
  30199. name: "Paw",
  30200. image: {
  30201. source: "./media/characters/kenzie-lee/paw.svg"
  30202. }
  30203. },
  30204. },
  30205. [
  30206. {
  30207. name: "Kenzie Flea",
  30208. height: math.unit(2, "mm"),
  30209. default: true
  30210. },
  30211. {
  30212. name: "Micro",
  30213. height: math.unit(2, "inches")
  30214. },
  30215. {
  30216. name: "Normal",
  30217. height: math.unit(152, "feet")
  30218. },
  30219. {
  30220. name: "Megamacro",
  30221. height: math.unit(7, "miles")
  30222. },
  30223. {
  30224. name: "Gigamacro",
  30225. height: math.unit(8000, "miles")
  30226. },
  30227. ]
  30228. ))
  30229. characterMakers.push(() => makeCharacter(
  30230. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30231. {
  30232. front: {
  30233. height: math.unit(6, "feet"),
  30234. name: "Front",
  30235. image: {
  30236. source: "./media/characters/withers/front.svg",
  30237. extra: 1935/1760,
  30238. bottom: 72/2007
  30239. }
  30240. },
  30241. back: {
  30242. height: math.unit(6, "feet"),
  30243. name: "Back",
  30244. image: {
  30245. source: "./media/characters/withers/back.svg",
  30246. extra: 1944/1792,
  30247. bottom: 12/1956
  30248. }
  30249. },
  30250. dressed: {
  30251. height: math.unit(6, "feet"),
  30252. name: "Dressed",
  30253. image: {
  30254. source: "./media/characters/withers/dressed.svg",
  30255. extra: 1937/1765,
  30256. bottom: 73/2010
  30257. }
  30258. },
  30259. phase1: {
  30260. height: math.unit(1.1, "feet"),
  30261. name: "Phase 1",
  30262. image: {
  30263. source: "./media/characters/withers/phase-1.svg",
  30264. extra: 1885/1232,
  30265. bottom: 0/1885
  30266. }
  30267. },
  30268. phase2: {
  30269. height: math.unit(1.05, "feet"),
  30270. name: "Phase 2",
  30271. image: {
  30272. source: "./media/characters/withers/phase-2.svg",
  30273. extra: 1792/1090,
  30274. bottom: 0/1792
  30275. }
  30276. },
  30277. partyWipe: {
  30278. height: math.unit(1.1, "feet"),
  30279. name: "Party Wipe",
  30280. image: {
  30281. source: "./media/characters/withers/party-wipe.svg",
  30282. extra: 1864/1207,
  30283. bottom: 0/1864
  30284. }
  30285. },
  30286. },
  30287. [
  30288. {
  30289. name: "Macro",
  30290. height: math.unit(167, "feet"),
  30291. default: true
  30292. },
  30293. {
  30294. name: "Megamacro",
  30295. height: math.unit(15, "miles")
  30296. }
  30297. ]
  30298. ))
  30299. characterMakers.push(() => makeCharacter(
  30300. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30301. {
  30302. front: {
  30303. height: math.unit(6 + 7 / 12, "feet"),
  30304. weight: math.unit(250, "lb"),
  30305. name: "Front",
  30306. image: {
  30307. source: "./media/characters/nemoskii/front.svg",
  30308. extra: 2270 / 1734,
  30309. bottom: 86 / 2354
  30310. }
  30311. },
  30312. back: {
  30313. height: math.unit(6 + 7 / 12, "feet"),
  30314. weight: math.unit(250, "lb"),
  30315. name: "Back",
  30316. image: {
  30317. source: "./media/characters/nemoskii/back.svg",
  30318. extra: 1845 / 1788,
  30319. bottom: 10.5 / 1852
  30320. }
  30321. },
  30322. head: {
  30323. height: math.unit(1.31, "feet"),
  30324. name: "Head",
  30325. image: {
  30326. source: "./media/characters/nemoskii/head.svg"
  30327. }
  30328. },
  30329. },
  30330. [
  30331. {
  30332. name: "Micro",
  30333. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30334. },
  30335. {
  30336. name: "Normal",
  30337. height: math.unit(6 + 7 / 12, "feet"),
  30338. default: true
  30339. },
  30340. {
  30341. name: "Macro",
  30342. height: math.unit((6 + 7 / 12) * 150, "feet")
  30343. },
  30344. {
  30345. name: "Macro+",
  30346. height: math.unit((6 + 7 / 12) * 500, "feet")
  30347. },
  30348. {
  30349. name: "Megamacro",
  30350. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30351. },
  30352. ]
  30353. ))
  30354. characterMakers.push(() => makeCharacter(
  30355. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30356. {
  30357. front: {
  30358. height: math.unit(1, "mile"),
  30359. weight: math.unit(265261.9, "lb"),
  30360. name: "Front",
  30361. image: {
  30362. source: "./media/characters/shui/front.svg",
  30363. extra: 1633 / 1564,
  30364. bottom: 91.5 / 1726
  30365. }
  30366. },
  30367. },
  30368. [
  30369. {
  30370. name: "Macro",
  30371. height: math.unit(1, "mile"),
  30372. default: true
  30373. },
  30374. ]
  30375. ))
  30376. characterMakers.push(() => makeCharacter(
  30377. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30378. {
  30379. front: {
  30380. height: math.unit(12 + 6 / 12, "feet"),
  30381. weight: math.unit(1342, "lb"),
  30382. name: "Front",
  30383. image: {
  30384. source: "./media/characters/arokh-takakura/front.svg",
  30385. extra: 1089 / 1043,
  30386. bottom: 77.4 / 1176.7
  30387. }
  30388. },
  30389. back: {
  30390. height: math.unit(12 + 6 / 12, "feet"),
  30391. weight: math.unit(1342, "lb"),
  30392. name: "Back",
  30393. image: {
  30394. source: "./media/characters/arokh-takakura/back.svg",
  30395. extra: 1046 / 1019,
  30396. bottom: 102 / 1150
  30397. }
  30398. },
  30399. },
  30400. [
  30401. {
  30402. name: "Big",
  30403. height: math.unit(12 + 6 / 12, "feet"),
  30404. default: true
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30410. {
  30411. front: {
  30412. height: math.unit(5 + 6 / 12, "feet"),
  30413. weight: math.unit(150, "lb"),
  30414. name: "Front",
  30415. image: {
  30416. source: "./media/characters/theo/front.svg",
  30417. extra: 1184 / 1131,
  30418. bottom: 7.4 / 1191
  30419. }
  30420. },
  30421. },
  30422. [
  30423. {
  30424. name: "Micro",
  30425. height: math.unit(5, "inches")
  30426. },
  30427. {
  30428. name: "Normal",
  30429. height: math.unit(5 + 6 / 12, "feet"),
  30430. default: true
  30431. },
  30432. ]
  30433. ))
  30434. characterMakers.push(() => makeCharacter(
  30435. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30436. {
  30437. front: {
  30438. height: math.unit(5 + 9 / 12, "feet"),
  30439. weight: math.unit(130, "lb"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/cecelia-swift/front.svg",
  30443. extra: 502 / 484,
  30444. bottom: 23 / 523
  30445. }
  30446. },
  30447. back: {
  30448. height: math.unit(5 + 9 / 12, "feet"),
  30449. weight: math.unit(130, "lb"),
  30450. name: "Back",
  30451. image: {
  30452. source: "./media/characters/cecelia-swift/back.svg",
  30453. extra: 499 / 485,
  30454. bottom: 12 / 511
  30455. }
  30456. },
  30457. head: {
  30458. height: math.unit(0.90, "feet"),
  30459. name: "Head",
  30460. image: {
  30461. source: "./media/characters/cecelia-swift/head.svg"
  30462. }
  30463. },
  30464. rump: {
  30465. height: math.unit(1.75, "feet"),
  30466. name: "Rump",
  30467. image: {
  30468. source: "./media/characters/cecelia-swift/rump.svg"
  30469. }
  30470. },
  30471. },
  30472. [
  30473. {
  30474. name: "Normal",
  30475. height: math.unit(5 + 9 / 12, "feet"),
  30476. default: true
  30477. },
  30478. {
  30479. name: "Big",
  30480. height: math.unit(50, "feet")
  30481. },
  30482. {
  30483. name: "Macro",
  30484. height: math.unit(100, "feet")
  30485. },
  30486. {
  30487. name: "Macro+",
  30488. height: math.unit(500, "feet")
  30489. },
  30490. {
  30491. name: "Macro++",
  30492. height: math.unit(1000, "feet")
  30493. },
  30494. ]
  30495. ))
  30496. characterMakers.push(() => makeCharacter(
  30497. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30498. {
  30499. front: {
  30500. height: math.unit(6, "feet"),
  30501. weight: math.unit(150, "lb"),
  30502. name: "Front",
  30503. image: {
  30504. source: "./media/characters/kaunan/front.svg",
  30505. extra: 2890 / 2523,
  30506. bottom: 49 / 2939
  30507. }
  30508. },
  30509. },
  30510. [
  30511. {
  30512. name: "Macro",
  30513. height: math.unit(150, "feet"),
  30514. default: true
  30515. },
  30516. ]
  30517. ))
  30518. characterMakers.push(() => makeCharacter(
  30519. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30520. {
  30521. dressed: {
  30522. height: math.unit(175, "cm"),
  30523. weight: math.unit(60, "kg"),
  30524. name: "Dressed",
  30525. image: {
  30526. source: "./media/characters/fei/dressed.svg",
  30527. extra: 1402/1278,
  30528. bottom: 27/1429
  30529. }
  30530. },
  30531. nude: {
  30532. height: math.unit(175, "cm"),
  30533. weight: math.unit(60, "kg"),
  30534. name: "Nude",
  30535. image: {
  30536. source: "./media/characters/fei/nude.svg",
  30537. extra: 1402/1278,
  30538. bottom: 27/1429
  30539. }
  30540. },
  30541. heels: {
  30542. height: math.unit(0.466, "feet"),
  30543. name: "Heels",
  30544. image: {
  30545. source: "./media/characters/fei/heels.svg",
  30546. extra: 156/152,
  30547. bottom: 28/184
  30548. }
  30549. },
  30550. },
  30551. [
  30552. {
  30553. name: "Mortal",
  30554. height: math.unit(175, "cm")
  30555. },
  30556. {
  30557. name: "Normal",
  30558. height: math.unit(3500, "m")
  30559. },
  30560. {
  30561. name: "Stroll",
  30562. height: math.unit(18.4, "km"),
  30563. default: true
  30564. },
  30565. {
  30566. name: "Showoff",
  30567. height: math.unit(175, "km")
  30568. },
  30569. ]
  30570. ))
  30571. characterMakers.push(() => makeCharacter(
  30572. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30573. {
  30574. front: {
  30575. height: math.unit(7, "feet"),
  30576. weight: math.unit(1000, "kg"),
  30577. name: "Front",
  30578. image: {
  30579. source: "./media/characters/edrax/front.svg",
  30580. extra: 2838 / 2550,
  30581. bottom: 130 / 2968
  30582. }
  30583. },
  30584. },
  30585. [
  30586. {
  30587. name: "Small",
  30588. height: math.unit(7, "feet")
  30589. },
  30590. {
  30591. name: "Normal",
  30592. height: math.unit(1500, "meters")
  30593. },
  30594. {
  30595. name: "Mega",
  30596. height: math.unit(12000000, "km"),
  30597. default: true
  30598. },
  30599. {
  30600. name: "Megamacro",
  30601. height: math.unit(10600000, "lightyears")
  30602. },
  30603. {
  30604. name: "Hypermacro",
  30605. height: math.unit(256, "yottameters")
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30611. {
  30612. front: {
  30613. height: math.unit(10, "feet"),
  30614. weight: math.unit(750, "lb"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/clove/front.svg",
  30618. extra: 1918/1751,
  30619. bottom: 52/1970
  30620. }
  30621. },
  30622. back: {
  30623. height: math.unit(10, "feet"),
  30624. weight: math.unit(750, "lb"),
  30625. name: "Back",
  30626. image: {
  30627. source: "./media/characters/clove/back.svg",
  30628. extra: 1912/1747,
  30629. bottom: 50/1962
  30630. }
  30631. },
  30632. },
  30633. [
  30634. {
  30635. name: "Normal",
  30636. height: math.unit(10, "feet"),
  30637. default: true
  30638. },
  30639. ]
  30640. ))
  30641. characterMakers.push(() => makeCharacter(
  30642. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30643. {
  30644. front: {
  30645. height: math.unit(4, "feet"),
  30646. weight: math.unit(50, "lb"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/alex-rabbit/front.svg",
  30650. extra: 507 / 458,
  30651. bottom: 18.5 / 527
  30652. }
  30653. },
  30654. back: {
  30655. height: math.unit(4, "feet"),
  30656. weight: math.unit(50, "lb"),
  30657. name: "Back",
  30658. image: {
  30659. source: "./media/characters/alex-rabbit/back.svg",
  30660. extra: 502 / 460,
  30661. bottom: 18.9 / 521
  30662. }
  30663. },
  30664. },
  30665. [
  30666. {
  30667. name: "Normal",
  30668. height: math.unit(4, "feet"),
  30669. default: true
  30670. },
  30671. ]
  30672. ))
  30673. characterMakers.push(() => makeCharacter(
  30674. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30675. {
  30676. front: {
  30677. height: math.unit(1 + 3 / 12, "feet"),
  30678. weight: math.unit(80, "lb"),
  30679. name: "Front",
  30680. image: {
  30681. source: "./media/characters/zander-rose/front.svg",
  30682. extra: 916 / 797,
  30683. bottom: 17 / 933
  30684. }
  30685. },
  30686. back: {
  30687. height: math.unit(1 + 3 / 12, "feet"),
  30688. weight: math.unit(80, "lb"),
  30689. name: "Back",
  30690. image: {
  30691. source: "./media/characters/zander-rose/back.svg",
  30692. extra: 903 / 779,
  30693. bottom: 31 / 934
  30694. }
  30695. },
  30696. },
  30697. [
  30698. {
  30699. name: "Normal",
  30700. height: math.unit(1 + 3 / 12, "feet"),
  30701. default: true
  30702. },
  30703. ]
  30704. ))
  30705. characterMakers.push(() => makeCharacter(
  30706. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30707. {
  30708. anthro: {
  30709. height: math.unit(6, "feet"),
  30710. weight: math.unit(150, "lb"),
  30711. name: "Anthro",
  30712. image: {
  30713. source: "./media/characters/razz/anthro.svg",
  30714. extra: 1437 / 1343,
  30715. bottom: 48 / 1485
  30716. }
  30717. },
  30718. feral: {
  30719. height: math.unit(6, "feet"),
  30720. weight: math.unit(150, "lb"),
  30721. name: "Feral",
  30722. image: {
  30723. source: "./media/characters/razz/feral.svg",
  30724. extra: 2569 / 1385,
  30725. bottom: 95 / 2664
  30726. }
  30727. },
  30728. },
  30729. [
  30730. {
  30731. name: "Normal",
  30732. height: math.unit(6, "feet"),
  30733. default: true
  30734. },
  30735. ]
  30736. ))
  30737. characterMakers.push(() => makeCharacter(
  30738. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30739. {
  30740. front: {
  30741. height: math.unit(9 + 4 / 12, "feet"),
  30742. weight: math.unit(500, "lb"),
  30743. name: "Front",
  30744. image: {
  30745. source: "./media/characters/morrigan/front.svg",
  30746. extra: 2707 / 2579,
  30747. bottom: 156 / 2863
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Normal",
  30754. height: math.unit(9 + 4 / 12, "feet"),
  30755. default: true
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30761. {
  30762. front: {
  30763. height: math.unit(5, "stories"),
  30764. weight: math.unit(4000, "lb"),
  30765. name: "Front",
  30766. image: {
  30767. source: "./media/characters/jenene/front.svg",
  30768. extra: 1780 / 1710,
  30769. bottom: 57 / 1837
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Normal",
  30776. height: math.unit(5, "stories"),
  30777. default: true
  30778. },
  30779. ]
  30780. ))
  30781. characterMakers.push(() => makeCharacter(
  30782. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30783. {
  30784. taurSfw: {
  30785. height: math.unit(10, "meters"),
  30786. weight: math.unit(17500, "kg"),
  30787. name: "Taur",
  30788. image: {
  30789. source: "./media/characters/faey/taur-sfw.svg",
  30790. extra: 1200 / 968,
  30791. bottom: 41 / 1241
  30792. }
  30793. },
  30794. chestmaw: {
  30795. height: math.unit(2.01, "meters"),
  30796. name: "Chestmaw",
  30797. image: {
  30798. source: "./media/characters/faey/chestmaw.svg"
  30799. }
  30800. },
  30801. foot: {
  30802. height: math.unit(2.43, "meters"),
  30803. name: "Foot",
  30804. image: {
  30805. source: "./media/characters/faey/foot.svg"
  30806. }
  30807. },
  30808. jaws: {
  30809. height: math.unit(1.66, "meters"),
  30810. name: "Jaws",
  30811. image: {
  30812. source: "./media/characters/faey/jaws.svg"
  30813. }
  30814. },
  30815. tongues: {
  30816. height: math.unit(2.01, "meters"),
  30817. name: "Tongues",
  30818. image: {
  30819. source: "./media/characters/faey/tongues.svg"
  30820. }
  30821. },
  30822. },
  30823. [
  30824. {
  30825. name: "Small",
  30826. height: math.unit(10, "meters"),
  30827. default: true
  30828. },
  30829. {
  30830. name: "Big",
  30831. height: math.unit(500000, "km")
  30832. },
  30833. ]
  30834. ))
  30835. characterMakers.push(() => makeCharacter(
  30836. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30837. {
  30838. front: {
  30839. height: math.unit(7, "feet"),
  30840. weight: math.unit(275, "lb"),
  30841. name: "Front",
  30842. image: {
  30843. source: "./media/characters/roku/front.svg",
  30844. extra: 903 / 878,
  30845. bottom: 37 / 940
  30846. }
  30847. },
  30848. },
  30849. [
  30850. {
  30851. name: "Normal",
  30852. height: math.unit(7, "feet"),
  30853. default: true
  30854. },
  30855. {
  30856. name: "Macro",
  30857. height: math.unit(500, "feet")
  30858. },
  30859. {
  30860. name: "Megamacro",
  30861. height: math.unit(200, "miles")
  30862. },
  30863. ]
  30864. ))
  30865. characterMakers.push(() => makeCharacter(
  30866. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30867. {
  30868. front: {
  30869. height: math.unit(6 + 2 / 12, "feet"),
  30870. weight: math.unit(150, "lb"),
  30871. name: "Front",
  30872. image: {
  30873. source: "./media/characters/lira/front.svg",
  30874. extra: 1727 / 1605,
  30875. bottom: 26 / 1753
  30876. }
  30877. },
  30878. back: {
  30879. height: math.unit(6 + 2 / 12, "feet"),
  30880. weight: math.unit(150, "lb"),
  30881. name: "Back",
  30882. image: {
  30883. source: "./media/characters/lira/back.svg",
  30884. extra: 1713/1621,
  30885. bottom: 20/1733
  30886. }
  30887. },
  30888. hand: {
  30889. height: math.unit(0.75, "feet"),
  30890. name: "Hand",
  30891. image: {
  30892. source: "./media/characters/lira/hand.svg"
  30893. }
  30894. },
  30895. maw: {
  30896. height: math.unit(0.65, "feet"),
  30897. name: "Maw",
  30898. image: {
  30899. source: "./media/characters/lira/maw.svg"
  30900. }
  30901. },
  30902. pawDigi: {
  30903. height: math.unit(1.6, "feet"),
  30904. name: "Paw Digi",
  30905. image: {
  30906. source: "./media/characters/lira/paw-digi.svg"
  30907. }
  30908. },
  30909. pawPlanti: {
  30910. height: math.unit(1.4, "feet"),
  30911. name: "Paw Planti",
  30912. image: {
  30913. source: "./media/characters/lira/paw-planti.svg"
  30914. }
  30915. },
  30916. },
  30917. [
  30918. {
  30919. name: "Normal",
  30920. height: math.unit(6 + 2 / 12, "feet"),
  30921. default: true
  30922. },
  30923. {
  30924. name: "Macro",
  30925. height: math.unit(100, "feet")
  30926. },
  30927. {
  30928. name: "Macro²",
  30929. height: math.unit(1600, "feet")
  30930. },
  30931. {
  30932. name: "Planetary",
  30933. height: math.unit(20, "earths")
  30934. },
  30935. ]
  30936. ))
  30937. characterMakers.push(() => makeCharacter(
  30938. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30939. {
  30940. front: {
  30941. height: math.unit(6, "feet"),
  30942. weight: math.unit(150, "lb"),
  30943. name: "Front",
  30944. image: {
  30945. source: "./media/characters/hadjet/front.svg",
  30946. extra: 1480 / 1346,
  30947. bottom: 26 / 1506
  30948. }
  30949. },
  30950. frontNsfw: {
  30951. height: math.unit(6, "feet"),
  30952. weight: math.unit(150, "lb"),
  30953. name: "Front (NSFW)",
  30954. image: {
  30955. source: "./media/characters/hadjet/front-nsfw.svg",
  30956. extra: 1440 / 1358,
  30957. bottom: 52 / 1492
  30958. }
  30959. },
  30960. },
  30961. [
  30962. {
  30963. name: "Macro",
  30964. height: math.unit(10, "stories"),
  30965. default: true
  30966. },
  30967. {
  30968. name: "Megamacro",
  30969. height: math.unit(1.5, "miles")
  30970. },
  30971. {
  30972. name: "Megamacro+",
  30973. height: math.unit(5, "miles")
  30974. },
  30975. ]
  30976. ))
  30977. characterMakers.push(() => makeCharacter(
  30978. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30979. {
  30980. side: {
  30981. height: math.unit(106, "feet"),
  30982. weight: math.unit(500, "tonnes"),
  30983. name: "Side",
  30984. image: {
  30985. source: "./media/characters/kodran/side.svg",
  30986. extra: 553 / 480,
  30987. bottom: 33 / 586
  30988. }
  30989. },
  30990. front: {
  30991. height: math.unit(132, "feet"),
  30992. weight: math.unit(500, "tonnes"),
  30993. name: "Front",
  30994. image: {
  30995. source: "./media/characters/kodran/front.svg",
  30996. extra: 667 / 643,
  30997. bottom: 42 / 709
  30998. }
  30999. },
  31000. flying: {
  31001. height: math.unit(350, "feet"),
  31002. weight: math.unit(500, "tonnes"),
  31003. name: "Flying",
  31004. image: {
  31005. source: "./media/characters/kodran/flying.svg"
  31006. }
  31007. },
  31008. foot: {
  31009. height: math.unit(33, "feet"),
  31010. name: "Foot",
  31011. image: {
  31012. source: "./media/characters/kodran/foot.svg"
  31013. }
  31014. },
  31015. footFront: {
  31016. height: math.unit(19, "feet"),
  31017. name: "Foot (Front)",
  31018. image: {
  31019. source: "./media/characters/kodran/foot-front.svg",
  31020. extra: 261 / 261,
  31021. bottom: 91 / 352
  31022. }
  31023. },
  31024. headFront: {
  31025. height: math.unit(53, "feet"),
  31026. name: "Head (Front)",
  31027. image: {
  31028. source: "./media/characters/kodran/head-front.svg"
  31029. }
  31030. },
  31031. headSide: {
  31032. height: math.unit(65, "feet"),
  31033. name: "Head (Side)",
  31034. image: {
  31035. source: "./media/characters/kodran/head-side.svg"
  31036. }
  31037. },
  31038. throat: {
  31039. height: math.unit(79, "feet"),
  31040. name: "Throat",
  31041. image: {
  31042. source: "./media/characters/kodran/throat.svg"
  31043. }
  31044. },
  31045. },
  31046. [
  31047. {
  31048. name: "Large",
  31049. height: math.unit(106, "feet"),
  31050. default: true
  31051. },
  31052. ]
  31053. ))
  31054. characterMakers.push(() => makeCharacter(
  31055. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31056. {
  31057. side: {
  31058. height: math.unit(11, "feet"),
  31059. weight: math.unit(150, "lb"),
  31060. name: "Side",
  31061. image: {
  31062. source: "./media/characters/pyxaron/side.svg",
  31063. extra: 305 / 195,
  31064. bottom: 17 / 322
  31065. }
  31066. },
  31067. },
  31068. [
  31069. {
  31070. name: "Normal",
  31071. height: math.unit(11, "feet"),
  31072. default: true
  31073. },
  31074. ]
  31075. ))
  31076. characterMakers.push(() => makeCharacter(
  31077. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31078. {
  31079. front: {
  31080. height: math.unit(6, "feet"),
  31081. weight: math.unit(150, "lb"),
  31082. name: "Front",
  31083. image: {
  31084. source: "./media/characters/meep/front.svg",
  31085. extra: 88 / 80,
  31086. bottom: 6 / 94
  31087. }
  31088. },
  31089. },
  31090. [
  31091. {
  31092. name: "Fun Sized",
  31093. height: math.unit(2, "inches"),
  31094. default: true
  31095. },
  31096. {
  31097. name: "Friend Sized",
  31098. height: math.unit(8, "inches")
  31099. },
  31100. ]
  31101. ))
  31102. characterMakers.push(() => makeCharacter(
  31103. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31104. {
  31105. front: {
  31106. height: math.unit(15, "feet"),
  31107. weight: math.unit(2500, "lb"),
  31108. name: "Front",
  31109. image: {
  31110. source: "./media/characters/holly-rabbit/front.svg",
  31111. extra: 1433 / 1233,
  31112. bottom: 125 / 1558
  31113. }
  31114. },
  31115. dick: {
  31116. height: math.unit(4.6, "feet"),
  31117. name: "Dick",
  31118. image: {
  31119. source: "./media/characters/holly-rabbit/dick.svg"
  31120. }
  31121. },
  31122. },
  31123. [
  31124. {
  31125. name: "Normal",
  31126. height: math.unit(15, "feet"),
  31127. default: true
  31128. },
  31129. {
  31130. name: "Macro",
  31131. height: math.unit(250, "feet")
  31132. },
  31133. {
  31134. name: "Macro+",
  31135. height: math.unit(2500, "feet")
  31136. },
  31137. ]
  31138. ))
  31139. characterMakers.push(() => makeCharacter(
  31140. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31141. {
  31142. front: {
  31143. height: math.unit(3.02, "meters"),
  31144. weight: math.unit(500, "kg"),
  31145. name: "Front",
  31146. image: {
  31147. source: "./media/characters/drena/front.svg",
  31148. extra: 282 / 243,
  31149. bottom: 8 / 290
  31150. }
  31151. },
  31152. side: {
  31153. height: math.unit(3.02, "meters"),
  31154. weight: math.unit(500, "kg"),
  31155. name: "Side",
  31156. image: {
  31157. source: "./media/characters/drena/side.svg",
  31158. extra: 280 / 245,
  31159. bottom: 10 / 290
  31160. }
  31161. },
  31162. back: {
  31163. height: math.unit(3.02, "meters"),
  31164. weight: math.unit(500, "kg"),
  31165. name: "Back",
  31166. image: {
  31167. source: "./media/characters/drena/back.svg",
  31168. extra: 278 / 243,
  31169. bottom: 2 / 280
  31170. }
  31171. },
  31172. foot: {
  31173. height: math.unit(0.75, "meters"),
  31174. name: "Foot",
  31175. image: {
  31176. source: "./media/characters/drena/foot.svg"
  31177. }
  31178. },
  31179. maw: {
  31180. height: math.unit(0.82, "meters"),
  31181. name: "Maw",
  31182. image: {
  31183. source: "./media/characters/drena/maw.svg"
  31184. }
  31185. },
  31186. eating: {
  31187. height: math.unit(0.75, "meters"),
  31188. name: "Eating",
  31189. image: {
  31190. source: "./media/characters/drena/eating.svg"
  31191. }
  31192. },
  31193. rump: {
  31194. height: math.unit(0.93, "meters"),
  31195. name: "Rump",
  31196. image: {
  31197. source: "./media/characters/drena/rump.svg"
  31198. }
  31199. },
  31200. },
  31201. [
  31202. {
  31203. name: "Normal",
  31204. height: math.unit(3.02, "meters"),
  31205. default: true
  31206. },
  31207. ]
  31208. ))
  31209. characterMakers.push(() => makeCharacter(
  31210. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31211. {
  31212. front: {
  31213. height: math.unit(6 + 4 / 12, "feet"),
  31214. weight: math.unit(250, "lb"),
  31215. name: "Front",
  31216. image: {
  31217. source: "./media/characters/remmyzilla/front.svg",
  31218. extra: 4033 / 3588,
  31219. bottom: 123 / 4156
  31220. }
  31221. },
  31222. back: {
  31223. height: math.unit(6 + 4 / 12, "feet"),
  31224. weight: math.unit(250, "lb"),
  31225. name: "Back",
  31226. image: {
  31227. source: "./media/characters/remmyzilla/back.svg",
  31228. extra: 1696/1602,
  31229. bottom: 63/1759
  31230. }
  31231. },
  31232. paw: {
  31233. height: math.unit(1.73, "feet"),
  31234. name: "Paw",
  31235. image: {
  31236. source: "./media/characters/remmyzilla/paw.svg"
  31237. },
  31238. extraAttributes: {
  31239. "toeSize": {
  31240. name: "Toe Size",
  31241. power: 2,
  31242. type: "area",
  31243. base: math.unit(0.0035, "m^2")
  31244. },
  31245. "padSize": {
  31246. name: "Pad Size",
  31247. power: 2,
  31248. type: "area",
  31249. base: math.unit(0.015, "m^2")
  31250. },
  31251. "pawsize": {
  31252. name: "Paw Size",
  31253. power: 2,
  31254. type: "area",
  31255. base: math.unit(0.072, "m^2")
  31256. },
  31257. }
  31258. },
  31259. maw: {
  31260. height: math.unit(1.73, "feet"),
  31261. name: "Maw",
  31262. image: {
  31263. source: "./media/characters/remmyzilla/maw.svg"
  31264. }
  31265. },
  31266. },
  31267. [
  31268. {
  31269. name: "Normal",
  31270. height: math.unit(6 + 4 / 12, "feet")
  31271. },
  31272. {
  31273. name: "Minimacro",
  31274. height: math.unit(12 + 8 / 12, "feet")
  31275. },
  31276. {
  31277. name: "Normal",
  31278. height: math.unit(640, "feet"),
  31279. default: true
  31280. },
  31281. {
  31282. name: "Megamacro",
  31283. height: math.unit(6400, "feet")
  31284. },
  31285. {
  31286. name: "Gigamacro",
  31287. height: math.unit(64000, "miles")
  31288. },
  31289. ]
  31290. ))
  31291. characterMakers.push(() => makeCharacter(
  31292. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31293. {
  31294. front: {
  31295. height: math.unit(2.5, "meters"),
  31296. weight: math.unit(300, "lb"),
  31297. name: "Front",
  31298. image: {
  31299. source: "./media/characters/lawrence/front.svg",
  31300. extra: 357 / 335,
  31301. bottom: 30 / 387
  31302. }
  31303. },
  31304. back: {
  31305. height: math.unit(2.5, "meters"),
  31306. weight: math.unit(300, "lb"),
  31307. name: "Back",
  31308. image: {
  31309. source: "./media/characters/lawrence/back.svg",
  31310. extra: 357 / 338,
  31311. bottom: 16 / 373
  31312. }
  31313. },
  31314. head: {
  31315. height: math.unit(0.9, "meter"),
  31316. name: "Head",
  31317. image: {
  31318. source: "./media/characters/lawrence/head.svg"
  31319. }
  31320. },
  31321. maw: {
  31322. height: math.unit(0.7, "meter"),
  31323. name: "Maw",
  31324. image: {
  31325. source: "./media/characters/lawrence/maw.svg"
  31326. }
  31327. },
  31328. footBottom: {
  31329. height: math.unit(0.5, "meter"),
  31330. name: "Foot (Bottom)",
  31331. image: {
  31332. source: "./media/characters/lawrence/foot-bottom.svg"
  31333. }
  31334. },
  31335. footTop: {
  31336. height: math.unit(0.5, "meter"),
  31337. name: "Foot (Top)",
  31338. image: {
  31339. source: "./media/characters/lawrence/foot-top.svg"
  31340. }
  31341. },
  31342. },
  31343. [
  31344. {
  31345. name: "Normal",
  31346. height: math.unit(2.5, "meters"),
  31347. default: true
  31348. },
  31349. {
  31350. name: "Macro",
  31351. height: math.unit(95, "meters")
  31352. },
  31353. {
  31354. name: "Megamacro",
  31355. height: math.unit(150, "km")
  31356. },
  31357. ]
  31358. ))
  31359. characterMakers.push(() => makeCharacter(
  31360. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31361. {
  31362. front: {
  31363. height: math.unit(4.2, "meters"),
  31364. preyCapacity: math.unit(50, "m^3"),
  31365. weight: math.unit(30, "tonnes"),
  31366. name: "Front",
  31367. image: {
  31368. source: "./media/characters/sydney/front.svg",
  31369. extra: 1177/1129,
  31370. bottom: 197/1374
  31371. },
  31372. extraAttributes: {
  31373. "length": {
  31374. name: "Length",
  31375. power: 1,
  31376. type: "length",
  31377. base: math.unit(21, "meters")
  31378. },
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(4.2, "meters"),
  31386. default: true
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31392. {
  31393. back: {
  31394. height: math.unit(201, "feet"),
  31395. name: "Back",
  31396. image: {
  31397. source: "./media/characters/jessica/back.svg",
  31398. extra: 273 / 259,
  31399. bottom: 7 / 280
  31400. }
  31401. },
  31402. },
  31403. [
  31404. {
  31405. name: "Normal",
  31406. height: math.unit(201, "feet"),
  31407. default: true
  31408. },
  31409. {
  31410. name: "Megamacro",
  31411. height: math.unit(8, "miles")
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31417. {
  31418. side: {
  31419. height: math.unit(5.6, "m"),
  31420. weight: math.unit(8000, "kg"),
  31421. name: "Side",
  31422. image: {
  31423. source: "./media/characters/victoria/side.svg",
  31424. extra: 1542/1229,
  31425. bottom: 124/1666
  31426. }
  31427. },
  31428. maw: {
  31429. height: math.unit(7.14, "feet"),
  31430. name: "Maw",
  31431. image: {
  31432. source: "./media/characters/victoria/maw.svg"
  31433. }
  31434. },
  31435. },
  31436. [
  31437. {
  31438. name: "Normal",
  31439. height: math.unit(5.6, "m"),
  31440. default: true
  31441. },
  31442. ]
  31443. ))
  31444. characterMakers.push(() => makeCharacter(
  31445. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31446. {
  31447. front: {
  31448. height: math.unit(5 + 6 / 12, "feet"),
  31449. name: "Front",
  31450. image: {
  31451. source: "./media/characters/cat/front.svg",
  31452. extra: 1449/1295,
  31453. bottom: 34/1483
  31454. },
  31455. form: "cat",
  31456. default: true
  31457. },
  31458. back: {
  31459. height: math.unit(5 + 6 / 12, "feet"),
  31460. name: "Back",
  31461. image: {
  31462. source: "./media/characters/cat/back.svg",
  31463. extra: 1466/1301,
  31464. bottom: 19/1485
  31465. },
  31466. form: "cat"
  31467. },
  31468. taur: {
  31469. height: math.unit(7, "feet"),
  31470. name: "Taur",
  31471. image: {
  31472. source: "./media/characters/cat/taur.svg",
  31473. extra: 1389/1233,
  31474. bottom: 83/1472
  31475. },
  31476. form: "taur",
  31477. default: true
  31478. },
  31479. lucarioFront: {
  31480. height: math.unit(4, "feet"),
  31481. name: "Lucario (Front)",
  31482. image: {
  31483. source: "./media/characters/cat/lucario-front.svg",
  31484. extra: 1149/1019,
  31485. bottom: 84/1233
  31486. },
  31487. form: "lucario",
  31488. default: true
  31489. },
  31490. lucarioBack: {
  31491. height: math.unit(4, "feet"),
  31492. name: "Lucario (Back)",
  31493. image: {
  31494. source: "./media/characters/cat/lucario-back.svg",
  31495. extra: 1190/1059,
  31496. bottom: 33/1223
  31497. },
  31498. form: "lucario"
  31499. },
  31500. megaLucario: {
  31501. height: math.unit(4, "feet"),
  31502. name: "Mega Lucario",
  31503. image: {
  31504. source: "./media/characters/cat/mega-lucario.svg",
  31505. extra: 1515 / 1319,
  31506. bottom: 63 / 1578
  31507. },
  31508. form: "lucario"
  31509. },
  31510. nickit: {
  31511. height: math.unit(2, "feet"),
  31512. name: "Nickit",
  31513. image: {
  31514. source: "./media/characters/cat/nickit.svg",
  31515. extra: 1980 / 1585,
  31516. bottom: 102 / 2082
  31517. },
  31518. form: "nickit",
  31519. default: true
  31520. },
  31521. lopunnyFront: {
  31522. height: math.unit(5, "feet"),
  31523. name: "Lopunny (Front)",
  31524. image: {
  31525. source: "./media/characters/cat/lopunny-front.svg",
  31526. extra: 1782 / 1469,
  31527. bottom: 38 / 1820
  31528. },
  31529. form: "lopunny",
  31530. default: true
  31531. },
  31532. lopunnyBack: {
  31533. height: math.unit(5, "feet"),
  31534. name: "Lopunny (Back)",
  31535. image: {
  31536. source: "./media/characters/cat/lopunny-back.svg",
  31537. extra: 1660 / 1490,
  31538. bottom: 25 / 1685
  31539. },
  31540. form: "lopunny"
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Really small",
  31546. height: math.unit(1, "nm"),
  31547. allForms: true
  31548. },
  31549. {
  31550. name: "Micro",
  31551. height: math.unit(5, "inches"),
  31552. allForms: true
  31553. },
  31554. {
  31555. name: "Normal",
  31556. height: math.unit(5 + 6 / 12, "feet"),
  31557. default: true,
  31558. form: "cat"
  31559. },
  31560. {
  31561. name: "Normal",
  31562. height: math.unit(7, "feet"),
  31563. default: true,
  31564. form: "taur"
  31565. },
  31566. {
  31567. name: "Normal",
  31568. height: math.unit(4, "feet"),
  31569. default: true,
  31570. form: "lucario"
  31571. },
  31572. {
  31573. name: "Normal",
  31574. height: math.unit(2, "feet"),
  31575. default: true,
  31576. form: "nickit"
  31577. },
  31578. {
  31579. name: "Normal",
  31580. height: math.unit(5, "feet"),
  31581. default: true,
  31582. form: "lopunny"
  31583. },
  31584. {
  31585. name: "Macro",
  31586. height: math.unit(50, "feet"),
  31587. allForms: true
  31588. },
  31589. {
  31590. name: "Macro+",
  31591. height: math.unit(150, "feet"),
  31592. allForms: true
  31593. },
  31594. {
  31595. name: "Megamacro",
  31596. height: math.unit(100, "miles"),
  31597. allForms: true
  31598. },
  31599. ],
  31600. {
  31601. "cat": {
  31602. name: "Cat",
  31603. default: true
  31604. },
  31605. "taur": {
  31606. name: "Taur",
  31607. },
  31608. "lucario": {
  31609. name: "Lucario",
  31610. },
  31611. "nickit": {
  31612. name: "Nickit",
  31613. },
  31614. "lopunny": {
  31615. name: "Lopunny",
  31616. }
  31617. }
  31618. ))
  31619. characterMakers.push(() => makeCharacter(
  31620. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31621. {
  31622. front: {
  31623. height: math.unit(63.4, "meters"),
  31624. weight: math.unit(3.28349e+6, "kilograms"),
  31625. name: "Front",
  31626. image: {
  31627. source: "./media/characters/kirina-violet/front.svg",
  31628. extra: 2812 / 2725,
  31629. bottom: 0 / 2812
  31630. }
  31631. },
  31632. back: {
  31633. height: math.unit(63.4, "meters"),
  31634. weight: math.unit(3.28349e+6, "kilograms"),
  31635. name: "Back",
  31636. image: {
  31637. source: "./media/characters/kirina-violet/back.svg",
  31638. extra: 2812 / 2725,
  31639. bottom: 0 / 2812
  31640. }
  31641. },
  31642. mouth: {
  31643. height: math.unit(4.35, "meters"),
  31644. name: "Mouth",
  31645. image: {
  31646. source: "./media/characters/kirina-violet/mouth.svg"
  31647. }
  31648. },
  31649. paw: {
  31650. height: math.unit(5.6, "meters"),
  31651. name: "Paw",
  31652. image: {
  31653. source: "./media/characters/kirina-violet/paw.svg"
  31654. }
  31655. },
  31656. tail: {
  31657. height: math.unit(18, "meters"),
  31658. name: "Tail",
  31659. image: {
  31660. source: "./media/characters/kirina-violet/tail.svg"
  31661. }
  31662. },
  31663. },
  31664. [
  31665. {
  31666. name: "Macro",
  31667. height: math.unit(63.4, "meters"),
  31668. default: true
  31669. },
  31670. ]
  31671. ))
  31672. characterMakers.push(() => makeCharacter(
  31673. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31674. {
  31675. front: {
  31676. height: math.unit(75, "feet"),
  31677. name: "Front",
  31678. image: {
  31679. source: "./media/characters/cat-gigachu/front.svg",
  31680. extra: 1239/1027,
  31681. bottom: 32/1271
  31682. }
  31683. },
  31684. back: {
  31685. height: math.unit(75, "feet"),
  31686. name: "Back",
  31687. image: {
  31688. source: "./media/characters/cat-gigachu/back.svg",
  31689. extra: 1229/1030,
  31690. bottom: 9/1238
  31691. }
  31692. },
  31693. },
  31694. [
  31695. {
  31696. name: "Dynamax",
  31697. height: math.unit(75, "feet"),
  31698. default: true
  31699. },
  31700. ]
  31701. ))
  31702. characterMakers.push(() => makeCharacter(
  31703. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31704. {
  31705. front: {
  31706. height: math.unit(6, "feet"),
  31707. weight: math.unit(150, "lb"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/sfaiyan/front.svg",
  31711. extra: 999 / 978,
  31712. bottom: 5 / 1004
  31713. }
  31714. },
  31715. },
  31716. [
  31717. {
  31718. name: "Normal",
  31719. height: math.unit(1.82, "meters")
  31720. },
  31721. {
  31722. name: "Giant",
  31723. height: math.unit(2.27, "km"),
  31724. default: true
  31725. },
  31726. ]
  31727. ))
  31728. characterMakers.push(() => makeCharacter(
  31729. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31730. {
  31731. front: {
  31732. height: math.unit(179, "cm"),
  31733. weight: math.unit(100, "kg"),
  31734. name: "Front",
  31735. image: {
  31736. source: "./media/characters/raunehkeli/front.svg",
  31737. extra: 1934 / 1926,
  31738. bottom: 0 / 1934
  31739. }
  31740. },
  31741. },
  31742. [
  31743. {
  31744. name: "Normal",
  31745. height: math.unit(179, "cm")
  31746. },
  31747. {
  31748. name: "Maximum",
  31749. height: math.unit(575, "meters"),
  31750. default: true
  31751. },
  31752. ]
  31753. ))
  31754. characterMakers.push(() => makeCharacter(
  31755. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31756. {
  31757. front: {
  31758. height: math.unit(6, "feet"),
  31759. weight: math.unit(150, "lb"),
  31760. name: "Front",
  31761. image: {
  31762. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31763. extra: 2625 / 2518,
  31764. bottom: 60 / 2685
  31765. }
  31766. },
  31767. },
  31768. [
  31769. {
  31770. name: "Normal",
  31771. height: math.unit(6 + 2 / 12, "feet")
  31772. },
  31773. {
  31774. name: "Macro",
  31775. height: math.unit(1180, "feet"),
  31776. default: true
  31777. },
  31778. ]
  31779. ))
  31780. characterMakers.push(() => makeCharacter(
  31781. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31782. {
  31783. front: {
  31784. height: math.unit(5 + 6 / 12, "feet"),
  31785. weight: math.unit(108, "lb"),
  31786. name: "Front",
  31787. image: {
  31788. source: "./media/characters/lilith-zott/front.svg",
  31789. extra: 2510 / 2238,
  31790. bottom: 100 / 2610
  31791. }
  31792. },
  31793. frontDressed: {
  31794. height: math.unit(5 + 6 / 12, "feet"),
  31795. weight: math.unit(108, "lb"),
  31796. name: "Front (Dressed)",
  31797. image: {
  31798. source: "./media/characters/lilith-zott/front-dressed.svg",
  31799. extra: 2510 / 2238,
  31800. bottom: 100 / 2610
  31801. }
  31802. },
  31803. },
  31804. [
  31805. {
  31806. name: "Normal",
  31807. height: math.unit(5 + 6 / 12, "feet")
  31808. },
  31809. {
  31810. name: "Macro",
  31811. height: math.unit(1030, "feet"),
  31812. default: true
  31813. },
  31814. ]
  31815. ))
  31816. characterMakers.push(() => makeCharacter(
  31817. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31818. {
  31819. front: {
  31820. height: math.unit(6, "feet"),
  31821. weight: math.unit(150, "lb"),
  31822. name: "Front",
  31823. image: {
  31824. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31825. extra: 2567 / 2435,
  31826. bottom: 39 / 2606
  31827. }
  31828. },
  31829. frontSuper: {
  31830. height: math.unit(6, "feet"),
  31831. name: "Front (Super)",
  31832. image: {
  31833. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31834. extra: 2567 / 2435,
  31835. bottom: 39 / 2606
  31836. }
  31837. },
  31838. },
  31839. [
  31840. {
  31841. name: "Normal",
  31842. height: math.unit(5 + 10 / 12, "feet")
  31843. },
  31844. {
  31845. name: "Macro",
  31846. height: math.unit(1100, "feet"),
  31847. default: true
  31848. },
  31849. ]
  31850. ))
  31851. characterMakers.push(() => makeCharacter(
  31852. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31853. {
  31854. front: {
  31855. height: math.unit(100, "miles"),
  31856. name: "Front",
  31857. image: {
  31858. source: "./media/characters/sona/front.svg",
  31859. extra: 2433 / 2201,
  31860. bottom: 53 / 2486
  31861. }
  31862. },
  31863. foot: {
  31864. height: math.unit(16.1, "miles"),
  31865. name: "Foot",
  31866. image: {
  31867. source: "./media/characters/sona/foot.svg"
  31868. }
  31869. },
  31870. },
  31871. [
  31872. {
  31873. name: "Macro",
  31874. height: math.unit(100, "miles"),
  31875. default: true
  31876. },
  31877. ]
  31878. ))
  31879. characterMakers.push(() => makeCharacter(
  31880. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31881. {
  31882. front: {
  31883. height: math.unit(6, "feet"),
  31884. weight: math.unit(150, "lb"),
  31885. name: "Front",
  31886. image: {
  31887. source: "./media/characters/bailey/front.svg",
  31888. extra: 1778 / 1724,
  31889. bottom: 30 / 1808
  31890. }
  31891. },
  31892. },
  31893. [
  31894. {
  31895. name: "Micro",
  31896. height: math.unit(4, "inches")
  31897. },
  31898. {
  31899. name: "Normal",
  31900. height: math.unit(5 + 5 / 12, "feet"),
  31901. default: true
  31902. },
  31903. {
  31904. name: "Macro",
  31905. height: math.unit(250, "feet")
  31906. },
  31907. {
  31908. name: "Megamacro",
  31909. height: math.unit(100, "miles")
  31910. },
  31911. ]
  31912. ))
  31913. characterMakers.push(() => makeCharacter(
  31914. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31915. {
  31916. front: {
  31917. height: math.unit(5 + 2 / 12, "feet"),
  31918. weight: math.unit(120, "lb"),
  31919. name: "Front",
  31920. image: {
  31921. source: "./media/characters/snaps/front.svg",
  31922. extra: 2370 / 2177,
  31923. bottom: 48 / 2418
  31924. }
  31925. },
  31926. back: {
  31927. height: math.unit(5 + 2 / 12, "feet"),
  31928. weight: math.unit(120, "lb"),
  31929. name: "Back",
  31930. image: {
  31931. source: "./media/characters/snaps/back.svg",
  31932. extra: 2408 / 2258,
  31933. bottom: 15 / 2423
  31934. }
  31935. },
  31936. },
  31937. [
  31938. {
  31939. name: "Micro",
  31940. height: math.unit(9, "inches")
  31941. },
  31942. {
  31943. name: "Normal",
  31944. height: math.unit(5 + 2 / 12, "feet"),
  31945. default: true
  31946. },
  31947. {
  31948. name: "Mini Macro",
  31949. height: math.unit(10, "feet")
  31950. },
  31951. ]
  31952. ))
  31953. characterMakers.push(() => makeCharacter(
  31954. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31955. {
  31956. front: {
  31957. height: math.unit(1.8, "meters"),
  31958. weight: math.unit(85, "kg"),
  31959. name: "Front",
  31960. image: {
  31961. source: "./media/characters/azteck/front.svg",
  31962. extra: 2815 / 2625,
  31963. bottom: 89 / 2904
  31964. }
  31965. },
  31966. back: {
  31967. height: math.unit(1.8, "meters"),
  31968. weight: math.unit(85, "kg"),
  31969. name: "Back",
  31970. image: {
  31971. source: "./media/characters/azteck/back.svg",
  31972. extra: 2856 / 2648,
  31973. bottom: 85 / 2941
  31974. }
  31975. },
  31976. frontDressed: {
  31977. height: math.unit(1.8, "meters"),
  31978. weight: math.unit(85, "kg"),
  31979. name: "Front (Dressed)",
  31980. image: {
  31981. source: "./media/characters/azteck/front-dressed.svg",
  31982. extra: 2147 / 2003,
  31983. bottom: 68 / 2215
  31984. }
  31985. },
  31986. head: {
  31987. height: math.unit(0.47, "meters"),
  31988. weight: math.unit(85, "kg"),
  31989. name: "Head",
  31990. image: {
  31991. source: "./media/characters/azteck/head.svg"
  31992. }
  31993. },
  31994. },
  31995. [
  31996. {
  31997. name: "Bite sized",
  31998. height: math.unit(16, "cm")
  31999. },
  32000. {
  32001. name: "Normal",
  32002. height: math.unit(1.8, "meters"),
  32003. default: true
  32004. },
  32005. ]
  32006. ))
  32007. characterMakers.push(() => makeCharacter(
  32008. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32009. {
  32010. front: {
  32011. height: math.unit(6, "feet"),
  32012. weight: math.unit(150, "lb"),
  32013. name: "Front",
  32014. image: {
  32015. source: "./media/characters/pidge/front.svg",
  32016. extra: 1936/1820,
  32017. bottom: 0/1936
  32018. }
  32019. },
  32020. back: {
  32021. height: math.unit(6, "feet"),
  32022. weight: math.unit(150, "lb"),
  32023. name: "Back",
  32024. image: {
  32025. source: "./media/characters/pidge/back.svg",
  32026. extra: 1938/1843,
  32027. bottom: 0/1938
  32028. }
  32029. },
  32030. casual: {
  32031. height: math.unit(6, "feet"),
  32032. weight: math.unit(150, "lb"),
  32033. name: "Casual",
  32034. image: {
  32035. source: "./media/characters/pidge/casual.svg",
  32036. extra: 1936/1820,
  32037. bottom: 0/1936
  32038. }
  32039. },
  32040. tech: {
  32041. height: math.unit(6, "feet"),
  32042. weight: math.unit(150, "lb"),
  32043. name: "Tech",
  32044. image: {
  32045. source: "./media/characters/pidge/tech.svg",
  32046. extra: 1802/1682,
  32047. bottom: 0/1802
  32048. }
  32049. },
  32050. head: {
  32051. height: math.unit(1.61, "feet"),
  32052. name: "Head",
  32053. image: {
  32054. source: "./media/characters/pidge/head.svg"
  32055. }
  32056. },
  32057. collar: {
  32058. height: math.unit(0.82, "feet"),
  32059. name: "Collar",
  32060. image: {
  32061. source: "./media/characters/pidge/collar.svg"
  32062. }
  32063. },
  32064. },
  32065. [
  32066. {
  32067. name: "Macro",
  32068. height: math.unit(2, "mile"),
  32069. default: true
  32070. },
  32071. {
  32072. name: "PUPPY",
  32073. height: math.unit(20, "miles")
  32074. },
  32075. ]
  32076. ))
  32077. characterMakers.push(() => makeCharacter(
  32078. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32079. {
  32080. front: {
  32081. height: math.unit(6, "feet"),
  32082. weight: math.unit(150, "lb"),
  32083. name: "Front",
  32084. image: {
  32085. source: "./media/characters/en/front.svg",
  32086. extra: 1697 / 1563,
  32087. bottom: 103 / 1800
  32088. }
  32089. },
  32090. back: {
  32091. height: math.unit(6, "feet"),
  32092. weight: math.unit(150, "lb"),
  32093. name: "Back",
  32094. image: {
  32095. source: "./media/characters/en/back.svg",
  32096. extra: 1700 / 1570,
  32097. bottom: 51 / 1751
  32098. }
  32099. },
  32100. frontDressed: {
  32101. height: math.unit(6, "feet"),
  32102. weight: math.unit(150, "lb"),
  32103. name: "Front (Dressed)",
  32104. image: {
  32105. source: "./media/characters/en/front-dressed.svg",
  32106. extra: 1697 / 1563,
  32107. bottom: 103 / 1800
  32108. }
  32109. },
  32110. backDressed: {
  32111. height: math.unit(6, "feet"),
  32112. weight: math.unit(150, "lb"),
  32113. name: "Back (Dressed)",
  32114. image: {
  32115. source: "./media/characters/en/back-dressed.svg",
  32116. extra: 1700 / 1570,
  32117. bottom: 51 / 1751
  32118. }
  32119. },
  32120. },
  32121. [
  32122. {
  32123. name: "Macro",
  32124. height: math.unit(210, "feet"),
  32125. default: true
  32126. },
  32127. ]
  32128. ))
  32129. characterMakers.push(() => makeCharacter(
  32130. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32131. {
  32132. front: {
  32133. height: math.unit(6, "feet"),
  32134. weight: math.unit(150, "lb"),
  32135. name: "Front",
  32136. image: {
  32137. source: "./media/characters/haze-orris/front.svg",
  32138. extra: 3975 / 3525,
  32139. bottom: 137 / 4112
  32140. }
  32141. },
  32142. },
  32143. [
  32144. {
  32145. name: "Micro",
  32146. height: math.unit(150, "mm"),
  32147. default: true
  32148. },
  32149. ]
  32150. ))
  32151. characterMakers.push(() => makeCharacter(
  32152. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32153. {
  32154. front: {
  32155. height: math.unit(6, "feet"),
  32156. weight: math.unit(150, "lb"),
  32157. name: "Front",
  32158. image: {
  32159. source: "./media/characters/casselene-yaro/front.svg",
  32160. extra: 4721 / 4541,
  32161. bottom: 82 / 4803
  32162. }
  32163. },
  32164. back: {
  32165. height: math.unit(6, "feet"),
  32166. weight: math.unit(150, "lb"),
  32167. name: "Back",
  32168. image: {
  32169. source: "./media/characters/casselene-yaro/back.svg",
  32170. extra: 4569 / 4377,
  32171. bottom: 69 / 4638
  32172. }
  32173. },
  32174. dressed: {
  32175. height: math.unit(6, "feet"),
  32176. weight: math.unit(150, "lb"),
  32177. name: "Dressed",
  32178. image: {
  32179. source: "./media/characters/casselene-yaro/dressed.svg",
  32180. extra: 4721 / 4541,
  32181. bottom: 82 / 4803
  32182. }
  32183. },
  32184. maw: {
  32185. height: math.unit(1, "feet"),
  32186. name: "Maw",
  32187. image: {
  32188. source: "./media/characters/casselene-yaro/maw.svg"
  32189. }
  32190. },
  32191. },
  32192. [
  32193. {
  32194. name: "Macro",
  32195. height: math.unit(190, "feet"),
  32196. default: true
  32197. },
  32198. ]
  32199. ))
  32200. characterMakers.push(() => makeCharacter(
  32201. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32202. {
  32203. front: {
  32204. height: math.unit(10, "feet"),
  32205. weight: math.unit(15015, "lb"),
  32206. name: "Front",
  32207. image: {
  32208. source: "./media/characters/platine/front.svg",
  32209. extra: 1741/1650,
  32210. bottom: 84/1825
  32211. }
  32212. },
  32213. side: {
  32214. height: math.unit(10, "feet"),
  32215. weight: math.unit(15015, "lb"),
  32216. name: "Side",
  32217. image: {
  32218. source: "./media/characters/platine/side.svg",
  32219. extra: 1790/1705,
  32220. bottom: 29/1819
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(10, "feet"),
  32228. default: true
  32229. },
  32230. {
  32231. name: "Macro",
  32232. height: math.unit(100, "feet")
  32233. },
  32234. {
  32235. name: "Megamacro",
  32236. height: math.unit(1000, "feet")
  32237. },
  32238. ]
  32239. ))
  32240. characterMakers.push(() => makeCharacter(
  32241. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32242. {
  32243. front: {
  32244. height: math.unit(15 + 5 / 12, "feet"),
  32245. weight: math.unit(4600, "lb"),
  32246. name: "Front",
  32247. image: {
  32248. source: "./media/characters/neapolitan-ananassa/front.svg",
  32249. extra: 2903 / 2736,
  32250. bottom: 0 / 2903
  32251. }
  32252. },
  32253. side: {
  32254. height: math.unit(15 + 5 / 12, "feet"),
  32255. weight: math.unit(4600, "lb"),
  32256. name: "Side",
  32257. image: {
  32258. source: "./media/characters/neapolitan-ananassa/side.svg",
  32259. extra: 2925 / 2719,
  32260. bottom: 0 / 2925
  32261. }
  32262. },
  32263. back: {
  32264. height: math.unit(15 + 5 / 12, "feet"),
  32265. weight: math.unit(4600, "lb"),
  32266. name: "Back",
  32267. image: {
  32268. source: "./media/characters/neapolitan-ananassa/back.svg",
  32269. extra: 2903 / 2736,
  32270. bottom: 0 / 2903
  32271. }
  32272. },
  32273. },
  32274. [
  32275. {
  32276. name: "Normal",
  32277. height: math.unit(15 + 5 / 12, "feet"),
  32278. default: true
  32279. },
  32280. {
  32281. name: "Post-Millenium",
  32282. height: math.unit(35 + 5 / 12, "feet")
  32283. },
  32284. {
  32285. name: "Post-Era",
  32286. height: math.unit(450 + 5 / 12, "feet")
  32287. },
  32288. ]
  32289. ))
  32290. characterMakers.push(() => makeCharacter(
  32291. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32292. {
  32293. front: {
  32294. height: math.unit(300, "meters"),
  32295. weight: math.unit(125000, "tonnes"),
  32296. name: "Front",
  32297. image: {
  32298. source: "./media/characters/pazuzu/front.svg",
  32299. extra: 877 / 794,
  32300. bottom: 47 / 924
  32301. }
  32302. },
  32303. },
  32304. [
  32305. {
  32306. name: "Macro",
  32307. height: math.unit(300, "meters"),
  32308. default: true
  32309. },
  32310. ]
  32311. ))
  32312. characterMakers.push(() => makeCharacter(
  32313. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32314. {
  32315. side: {
  32316. height: math.unit(10 + 7 / 12, "feet"),
  32317. weight: math.unit(2.5, "tons"),
  32318. name: "Side",
  32319. image: {
  32320. source: "./media/characters/aasha/side.svg",
  32321. extra: 1345 / 1245,
  32322. bottom: 111 / 1456
  32323. }
  32324. },
  32325. back: {
  32326. height: math.unit(10 + 7 / 12, "feet"),
  32327. weight: math.unit(2.5, "tons"),
  32328. name: "Back",
  32329. image: {
  32330. source: "./media/characters/aasha/back.svg",
  32331. extra: 1133 / 1057,
  32332. bottom: 257 / 1390
  32333. }
  32334. },
  32335. },
  32336. [
  32337. {
  32338. name: "Normal",
  32339. height: math.unit(10 + 7 / 12, "feet"),
  32340. default: true
  32341. },
  32342. ]
  32343. ))
  32344. characterMakers.push(() => makeCharacter(
  32345. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32346. {
  32347. front: {
  32348. height: math.unit(6 + 3 / 12, "feet"),
  32349. name: "Front",
  32350. image: {
  32351. source: "./media/characters/nevan/front.svg",
  32352. extra: 704 / 704,
  32353. bottom: 28 / 732
  32354. }
  32355. },
  32356. back: {
  32357. height: math.unit(6 + 3 / 12, "feet"),
  32358. name: "Back",
  32359. image: {
  32360. source: "./media/characters/nevan/back.svg",
  32361. extra: 714 / 714,
  32362. bottom: 21 / 735
  32363. }
  32364. },
  32365. frontFlaccid: {
  32366. height: math.unit(6 + 3 / 12, "feet"),
  32367. name: "Front (Flaccid)",
  32368. image: {
  32369. source: "./media/characters/nevan/front-flaccid.svg",
  32370. extra: 704 / 704,
  32371. bottom: 28 / 732
  32372. }
  32373. },
  32374. frontErect: {
  32375. height: math.unit(6 + 3 / 12, "feet"),
  32376. name: "Front (Erect)",
  32377. image: {
  32378. source: "./media/characters/nevan/front-erect.svg",
  32379. extra: 704 / 704,
  32380. bottom: 28 / 732
  32381. }
  32382. },
  32383. backFlaccid: {
  32384. height: math.unit(6 + 3 / 12, "feet"),
  32385. name: "Back (Flaccid)",
  32386. image: {
  32387. source: "./media/characters/nevan/back-flaccid.svg",
  32388. extra: 714 / 714,
  32389. bottom: 21 / 735
  32390. }
  32391. },
  32392. },
  32393. [
  32394. {
  32395. name: "Normal",
  32396. height: math.unit(6 + 3 / 12, "feet"),
  32397. default: true
  32398. },
  32399. ]
  32400. ))
  32401. characterMakers.push(() => makeCharacter(
  32402. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32403. {
  32404. front: {
  32405. height: math.unit(4, "feet"),
  32406. name: "Front",
  32407. image: {
  32408. source: "./media/characters/arhan/front.svg",
  32409. extra: 3368 / 3133,
  32410. bottom: 0 / 3368
  32411. }
  32412. },
  32413. side: {
  32414. height: math.unit(4, "feet"),
  32415. name: "Side",
  32416. image: {
  32417. source: "./media/characters/arhan/side.svg",
  32418. extra: 3347 / 3105,
  32419. bottom: 0 / 3347
  32420. }
  32421. },
  32422. tongue: {
  32423. height: math.unit(1.42, "feet"),
  32424. name: "Tongue",
  32425. image: {
  32426. source: "./media/characters/arhan/tongue.svg"
  32427. }
  32428. },
  32429. head: {
  32430. height: math.unit(0.85, "feet"),
  32431. name: "Head",
  32432. image: {
  32433. source: "./media/characters/arhan/head.svg"
  32434. }
  32435. },
  32436. },
  32437. [
  32438. {
  32439. name: "Normal",
  32440. height: math.unit(4, "feet"),
  32441. default: true
  32442. },
  32443. ]
  32444. ))
  32445. characterMakers.push(() => makeCharacter(
  32446. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32447. {
  32448. front: {
  32449. height: math.unit(5 + 7.5 / 12, "feet"),
  32450. weight: math.unit(120, "lb"),
  32451. name: "Front",
  32452. image: {
  32453. source: "./media/characters/digi-duncan/front.svg",
  32454. extra: 330 / 326,
  32455. bottom: 16 / 346
  32456. }
  32457. },
  32458. side: {
  32459. height: math.unit(5 + 7.5 / 12, "feet"),
  32460. weight: math.unit(120, "lb"),
  32461. name: "Side",
  32462. image: {
  32463. source: "./media/characters/digi-duncan/side.svg",
  32464. extra: 341 / 337,
  32465. bottom: 1 / 342
  32466. }
  32467. },
  32468. back: {
  32469. height: math.unit(5 + 7.5 / 12, "feet"),
  32470. weight: math.unit(120, "lb"),
  32471. name: "Back",
  32472. image: {
  32473. source: "./media/characters/digi-duncan/back.svg",
  32474. extra: 330 / 326,
  32475. bottom: 12 / 342
  32476. }
  32477. },
  32478. },
  32479. [
  32480. {
  32481. name: "Speck",
  32482. height: math.unit(0.25, "mm")
  32483. },
  32484. {
  32485. name: "Micro",
  32486. height: math.unit(5, "mm")
  32487. },
  32488. {
  32489. name: "Tiny",
  32490. height: math.unit(0.5, "inches"),
  32491. default: true
  32492. },
  32493. {
  32494. name: "Human",
  32495. height: math.unit(5 + 7.5 / 12, "feet")
  32496. },
  32497. {
  32498. name: "Minigiant",
  32499. height: math.unit(8 + 5.25, "feet")
  32500. },
  32501. {
  32502. name: "Giant",
  32503. height: math.unit(2000, "feet")
  32504. },
  32505. {
  32506. name: "Mega",
  32507. height: math.unit(371.1, "miles")
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32513. {
  32514. front: {
  32515. height: math.unit(2, "meters"),
  32516. weight: math.unit(350, "kg"),
  32517. name: "Front",
  32518. image: {
  32519. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32520. extra: 898 / 838,
  32521. bottom: 9 / 907
  32522. }
  32523. },
  32524. },
  32525. [
  32526. {
  32527. name: "Micro",
  32528. height: math.unit(8, "meters")
  32529. },
  32530. {
  32531. name: "Normal",
  32532. height: math.unit(50, "meters"),
  32533. default: true
  32534. },
  32535. {
  32536. name: "Macro",
  32537. height: math.unit(500, "meters")
  32538. },
  32539. ]
  32540. ))
  32541. characterMakers.push(() => makeCharacter(
  32542. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32543. {
  32544. front: {
  32545. height: math.unit(6 + 6 / 12, "feet"),
  32546. name: "Front",
  32547. image: {
  32548. source: "./media/characters/khardesh/front.svg",
  32549. extra: 1788/1596,
  32550. bottom: 66/1854
  32551. }
  32552. },
  32553. back: {
  32554. height: math.unit(6 + 6 / 12, "feet"),
  32555. name: "Back",
  32556. image: {
  32557. source: "./media/characters/khardesh/back.svg",
  32558. extra: 1781/1584,
  32559. bottom: 68/1849
  32560. }
  32561. },
  32562. },
  32563. [
  32564. {
  32565. name: "Normal",
  32566. height: math.unit(6 + 6 / 12, "feet"),
  32567. default: true
  32568. },
  32569. {
  32570. name: "Normal+",
  32571. height: math.unit(4, "meters")
  32572. },
  32573. {
  32574. name: "Macro",
  32575. height: math.unit(50, "meters")
  32576. },
  32577. {
  32578. name: "Macro+",
  32579. height: math.unit(100, "meters")
  32580. },
  32581. {
  32582. name: "Megamacro",
  32583. height: math.unit(20, "km")
  32584. },
  32585. ]
  32586. ))
  32587. characterMakers.push(() => makeCharacter(
  32588. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32589. {
  32590. front: {
  32591. height: math.unit(6, "feet"),
  32592. weight: math.unit(150, "lb"),
  32593. name: "Front",
  32594. image: {
  32595. source: "./media/characters/kosho/front.svg",
  32596. extra: 1847 / 1847,
  32597. bottom: 86 / 1933
  32598. }
  32599. },
  32600. },
  32601. [
  32602. {
  32603. name: "Second-stage micro",
  32604. height: math.unit(0.5, "inches")
  32605. },
  32606. {
  32607. name: "First-stage micro",
  32608. height: math.unit(6, "inches")
  32609. },
  32610. {
  32611. name: "Normal",
  32612. height: math.unit(6, "feet"),
  32613. default: true
  32614. },
  32615. {
  32616. name: "First-stage macro",
  32617. height: math.unit(72, "feet")
  32618. },
  32619. {
  32620. name: "Second-stage macro",
  32621. height: math.unit(864, "feet")
  32622. },
  32623. ]
  32624. ))
  32625. characterMakers.push(() => makeCharacter(
  32626. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32627. {
  32628. normal: {
  32629. height: math.unit(4 + 6 / 12, "feet"),
  32630. name: "Normal",
  32631. image: {
  32632. source: "./media/characters/hydra/normal.svg",
  32633. extra: 2833 / 2634,
  32634. bottom: 68 / 2901
  32635. }
  32636. },
  32637. smol: {
  32638. height: math.unit(0.705, "inches"),
  32639. name: "Smol",
  32640. image: {
  32641. source: "./media/characters/hydra/smol.svg",
  32642. extra: 2715 / 2540,
  32643. bottom: 0 / 2715
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Normal",
  32650. height: math.unit(4 + 6 / 12, "feet"),
  32651. default: true
  32652. }
  32653. ]
  32654. ))
  32655. characterMakers.push(() => makeCharacter(
  32656. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32657. {
  32658. front: {
  32659. height: math.unit(0.6, "cm"),
  32660. name: "Front",
  32661. image: {
  32662. source: "./media/characters/daz/front.svg",
  32663. extra: 1682 / 1164,
  32664. bottom: 42 / 1724
  32665. }
  32666. },
  32667. },
  32668. [
  32669. {
  32670. name: "Normal",
  32671. height: math.unit(0.6, "cm"),
  32672. default: true
  32673. },
  32674. ]
  32675. ))
  32676. characterMakers.push(() => makeCharacter(
  32677. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32678. {
  32679. front: {
  32680. height: math.unit(6, "feet"),
  32681. weight: math.unit(235, "lb"),
  32682. name: "Front",
  32683. image: {
  32684. source: "./media/characters/theo-pangolin/front.svg",
  32685. extra: 1996 / 1969,
  32686. bottom: 115 / 2111
  32687. }
  32688. },
  32689. back: {
  32690. height: math.unit(6, "feet"),
  32691. weight: math.unit(235, "lb"),
  32692. name: "Back",
  32693. image: {
  32694. source: "./media/characters/theo-pangolin/back.svg",
  32695. extra: 1979 / 1979,
  32696. bottom: 40 / 2019
  32697. }
  32698. },
  32699. feral: {
  32700. height: math.unit(2, "feet"),
  32701. weight: math.unit(30, "lb"),
  32702. name: "Feral",
  32703. image: {
  32704. source: "./media/characters/theo-pangolin/feral.svg",
  32705. extra: 803 / 791,
  32706. bottom: 181 / 984
  32707. }
  32708. },
  32709. footFive: {
  32710. height: math.unit(1.43, "feet"),
  32711. name: "Foot (Five Toes)",
  32712. image: {
  32713. source: "./media/characters/theo-pangolin/foot-five.svg"
  32714. }
  32715. },
  32716. footFour: {
  32717. height: math.unit(1.43, "feet"),
  32718. name: "Foot (Four Toes)",
  32719. image: {
  32720. source: "./media/characters/theo-pangolin/foot-four.svg"
  32721. }
  32722. },
  32723. handFour: {
  32724. height: math.unit(0.81, "feet"),
  32725. name: "Hand (Four Fingers)",
  32726. image: {
  32727. source: "./media/characters/theo-pangolin/hand-four.svg"
  32728. }
  32729. },
  32730. handThree: {
  32731. height: math.unit(0.81, "feet"),
  32732. name: "Hand (Three Fingers)",
  32733. image: {
  32734. source: "./media/characters/theo-pangolin/hand-three.svg"
  32735. }
  32736. },
  32737. headFront: {
  32738. height: math.unit(1.37, "feet"),
  32739. name: "Head (Front)",
  32740. image: {
  32741. source: "./media/characters/theo-pangolin/head-front.svg"
  32742. }
  32743. },
  32744. headSide: {
  32745. height: math.unit(1.43, "feet"),
  32746. name: "Head (Side)",
  32747. image: {
  32748. source: "./media/characters/theo-pangolin/head-side.svg"
  32749. }
  32750. },
  32751. tongue: {
  32752. height: math.unit(2.29, "feet"),
  32753. name: "Tongue",
  32754. image: {
  32755. source: "./media/characters/theo-pangolin/tongue.svg"
  32756. }
  32757. },
  32758. },
  32759. [
  32760. {
  32761. name: "Normal",
  32762. height: math.unit(6, "feet")
  32763. },
  32764. {
  32765. name: "Macro",
  32766. height: math.unit(400, "feet"),
  32767. default: true
  32768. },
  32769. ]
  32770. ))
  32771. characterMakers.push(() => makeCharacter(
  32772. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32773. {
  32774. front: {
  32775. height: math.unit(6, "inches"),
  32776. weight: math.unit(0.036, "kg"),
  32777. name: "Front",
  32778. image: {
  32779. source: "./media/characters/renée/front.svg",
  32780. extra: 900 / 886,
  32781. bottom: 8 / 908
  32782. }
  32783. },
  32784. },
  32785. [
  32786. {
  32787. name: "Nano",
  32788. height: math.unit(1, "nm")
  32789. },
  32790. {
  32791. name: "Micro",
  32792. height: math.unit(1, "mm")
  32793. },
  32794. {
  32795. name: "Normal",
  32796. height: math.unit(6, "inches")
  32797. },
  32798. {
  32799. name: "Macro",
  32800. height: math.unit(2000, "feet"),
  32801. default: true
  32802. },
  32803. {
  32804. name: "Megamacro",
  32805. height: math.unit(2, "km")
  32806. },
  32807. {
  32808. name: "Gigamacro",
  32809. height: math.unit(2000, "km")
  32810. },
  32811. {
  32812. name: "Teramacro",
  32813. height: math.unit(250000, "km")
  32814. },
  32815. ]
  32816. ))
  32817. characterMakers.push(() => makeCharacter(
  32818. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32819. {
  32820. front: {
  32821. height: math.unit(4, "meters"),
  32822. weight: math.unit(150, "kg"),
  32823. name: "Front",
  32824. image: {
  32825. source: "./media/characters/caledvwlch/front.svg",
  32826. extra: 1757/1537,
  32827. bottom: 31/1788
  32828. }
  32829. },
  32830. side: {
  32831. height: math.unit(4, "meters"),
  32832. weight: math.unit(150, "kg"),
  32833. name: "Side",
  32834. image: {
  32835. source: "./media/characters/caledvwlch/side.svg",
  32836. extra: 1605 / 1536,
  32837. bottom: 31 / 1636
  32838. }
  32839. },
  32840. back: {
  32841. height: math.unit(4, "meters"),
  32842. weight: math.unit(150, "kg"),
  32843. name: "Back",
  32844. image: {
  32845. source: "./media/characters/caledvwlch/back.svg",
  32846. extra: 1635 / 1565,
  32847. bottom: 27 / 1662
  32848. }
  32849. },
  32850. },
  32851. [
  32852. {
  32853. name: "\"Incognito\"",
  32854. height: math.unit(4, "meters")
  32855. },
  32856. {
  32857. name: "Small rampage",
  32858. height: math.unit(600, "meters")
  32859. },
  32860. {
  32861. name: "Mega",
  32862. height: math.unit(30, "km")
  32863. },
  32864. {
  32865. name: "Home-size",
  32866. height: math.unit(50, "km"),
  32867. default: true
  32868. },
  32869. {
  32870. name: "Giga",
  32871. height: math.unit(300, "km")
  32872. },
  32873. {
  32874. name: "Lounging",
  32875. height: math.unit(11000, "km")
  32876. },
  32877. {
  32878. name: "Planet snacking",
  32879. height: math.unit(2000000, "km")
  32880. },
  32881. ]
  32882. ))
  32883. characterMakers.push(() => makeCharacter(
  32884. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32885. {
  32886. front: {
  32887. height: math.unit(6, "feet"),
  32888. weight: math.unit(215, "lb"),
  32889. name: "Front",
  32890. image: {
  32891. source: "./media/characters/sapphire-svell/front.svg",
  32892. extra: 495 / 455,
  32893. bottom: 20 / 515
  32894. }
  32895. },
  32896. back: {
  32897. height: math.unit(6, "feet"),
  32898. weight: math.unit(216, "lb"),
  32899. name: "Back",
  32900. image: {
  32901. source: "./media/characters/sapphire-svell/back.svg",
  32902. extra: 497 / 477,
  32903. bottom: 7 / 504
  32904. }
  32905. },
  32906. maw: {
  32907. height: math.unit(1.57, "feet"),
  32908. name: "Maw",
  32909. image: {
  32910. source: "./media/characters/sapphire-svell/maw.svg"
  32911. }
  32912. },
  32913. foot: {
  32914. height: math.unit(1.07, "feet"),
  32915. name: "Foot",
  32916. image: {
  32917. source: "./media/characters/sapphire-svell/foot.svg"
  32918. }
  32919. },
  32920. toering: {
  32921. height: math.unit(1.7, "inch"),
  32922. name: "Toering",
  32923. image: {
  32924. source: "./media/characters/sapphire-svell/toering.svg"
  32925. }
  32926. },
  32927. },
  32928. [
  32929. {
  32930. name: "Normal",
  32931. height: math.unit(300, "feet"),
  32932. default: true
  32933. },
  32934. {
  32935. name: "Augmented",
  32936. height: math.unit(1250, "feet")
  32937. },
  32938. {
  32939. name: "Unleashed",
  32940. height: math.unit(3000, "feet")
  32941. },
  32942. ]
  32943. ))
  32944. characterMakers.push(() => makeCharacter(
  32945. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32946. {
  32947. side: {
  32948. height: math.unit(2 + 3 / 12, "feet"),
  32949. weight: math.unit(110, "lb"),
  32950. name: "Side",
  32951. image: {
  32952. source: "./media/characters/glitch-flux/side.svg",
  32953. extra: 997 / 805,
  32954. bottom: 20 / 1017
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Normal",
  32961. height: math.unit(2 + 3 / 12, "feet"),
  32962. default: true
  32963. },
  32964. ]
  32965. ))
  32966. characterMakers.push(() => makeCharacter(
  32967. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32968. {
  32969. front: {
  32970. height: math.unit(4, "meters"),
  32971. name: "Front",
  32972. image: {
  32973. source: "./media/characters/mid/front.svg",
  32974. extra: 507 / 476,
  32975. bottom: 17 / 524
  32976. }
  32977. },
  32978. back: {
  32979. height: math.unit(4, "meters"),
  32980. name: "Back",
  32981. image: {
  32982. source: "./media/characters/mid/back.svg",
  32983. extra: 519 / 487,
  32984. bottom: 7 / 526
  32985. }
  32986. },
  32987. stuck: {
  32988. height: math.unit(2.2, "meters"),
  32989. name: "Stuck",
  32990. image: {
  32991. source: "./media/characters/mid/stuck.svg",
  32992. extra: 1951 / 1869,
  32993. bottom: 88 / 2039
  32994. }
  32995. }
  32996. },
  32997. [
  32998. {
  32999. name: "Normal",
  33000. height: math.unit(4, "meters"),
  33001. default: true
  33002. },
  33003. {
  33004. name: "Big",
  33005. height: math.unit(10, "meters")
  33006. },
  33007. {
  33008. name: "Macro",
  33009. height: math.unit(800, "meters")
  33010. },
  33011. {
  33012. name: "Megamacro",
  33013. height: math.unit(100, "km")
  33014. },
  33015. {
  33016. name: "Overgrown",
  33017. height: math.unit(1, "parsec")
  33018. },
  33019. ]
  33020. ))
  33021. characterMakers.push(() => makeCharacter(
  33022. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33023. {
  33024. front: {
  33025. height: math.unit(2.5, "meters"),
  33026. weight: math.unit(225, "kg"),
  33027. name: "Front",
  33028. image: {
  33029. source: "./media/characters/iris/front.svg",
  33030. extra: 3348 / 3251,
  33031. bottom: 205 / 3553
  33032. }
  33033. },
  33034. maw: {
  33035. height: math.unit(0.56, "meter"),
  33036. name: "Maw",
  33037. image: {
  33038. source: "./media/characters/iris/maw.svg"
  33039. }
  33040. },
  33041. },
  33042. [
  33043. {
  33044. name: "Mewter cat",
  33045. height: math.unit(1.2, "meters")
  33046. },
  33047. {
  33048. name: "Normal",
  33049. height: math.unit(2.5, "meters"),
  33050. default: true
  33051. },
  33052. {
  33053. name: "Minimacro",
  33054. height: math.unit(18, "feet")
  33055. },
  33056. {
  33057. name: "Macro",
  33058. height: math.unit(140, "feet")
  33059. },
  33060. {
  33061. name: "Macro+",
  33062. height: math.unit(180, "meters")
  33063. },
  33064. {
  33065. name: "Megamacro",
  33066. height: math.unit(2746, "meters")
  33067. },
  33068. ]
  33069. ))
  33070. characterMakers.push(() => makeCharacter(
  33071. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33072. {
  33073. front: {
  33074. height: math.unit(6, "feet"),
  33075. weight: math.unit(135, "lb"),
  33076. name: "Front",
  33077. image: {
  33078. source: "./media/characters/axel/front.svg",
  33079. extra: 908 / 908,
  33080. bottom: 58 / 966
  33081. }
  33082. },
  33083. side: {
  33084. height: math.unit(6, "feet"),
  33085. weight: math.unit(135, "lb"),
  33086. name: "Side",
  33087. image: {
  33088. source: "./media/characters/axel/side.svg",
  33089. extra: 958 / 958,
  33090. bottom: 11 / 969
  33091. }
  33092. },
  33093. back: {
  33094. height: math.unit(6, "feet"),
  33095. weight: math.unit(135, "lb"),
  33096. name: "Back",
  33097. image: {
  33098. source: "./media/characters/axel/back.svg",
  33099. extra: 887 / 887,
  33100. bottom: 34 / 921
  33101. }
  33102. },
  33103. head: {
  33104. height: math.unit(1.07, "feet"),
  33105. name: "Head",
  33106. image: {
  33107. source: "./media/characters/axel/head.svg"
  33108. }
  33109. },
  33110. beak: {
  33111. height: math.unit(1.4, "feet"),
  33112. name: "Beak",
  33113. image: {
  33114. source: "./media/characters/axel/beak.svg"
  33115. }
  33116. },
  33117. beakSide: {
  33118. height: math.unit(1.4, "feet"),
  33119. name: "Beak Side",
  33120. image: {
  33121. source: "./media/characters/axel/beak-side.svg"
  33122. }
  33123. },
  33124. sheath: {
  33125. height: math.unit(0.5, "feet"),
  33126. name: "Sheath",
  33127. image: {
  33128. source: "./media/characters/axel/sheath.svg"
  33129. }
  33130. },
  33131. dick: {
  33132. height: math.unit(0.98, "feet"),
  33133. name: "Dick",
  33134. image: {
  33135. source: "./media/characters/axel/dick.svg"
  33136. }
  33137. },
  33138. },
  33139. [
  33140. {
  33141. name: "Macro",
  33142. height: math.unit(68, "meters"),
  33143. default: true
  33144. },
  33145. ]
  33146. ))
  33147. characterMakers.push(() => makeCharacter(
  33148. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33149. {
  33150. front: {
  33151. height: math.unit(3.5, "meters"),
  33152. weight: math.unit(1200, "kg"),
  33153. name: "Front",
  33154. image: {
  33155. source: "./media/characters/joanna/front.svg",
  33156. extra: 1596 / 1488,
  33157. bottom: 29 / 1625
  33158. }
  33159. },
  33160. back: {
  33161. height: math.unit(3.5, "meters"),
  33162. weight: math.unit(1200, "kg"),
  33163. name: "Back",
  33164. image: {
  33165. source: "./media/characters/joanna/back.svg",
  33166. extra: 1594 / 1495,
  33167. bottom: 26 / 1620
  33168. }
  33169. },
  33170. frontShorts: {
  33171. height: math.unit(3.5, "meters"),
  33172. weight: math.unit(1200, "kg"),
  33173. name: "Front (Shorts)",
  33174. image: {
  33175. source: "./media/characters/joanna/front-shorts.svg",
  33176. extra: 1596 / 1488,
  33177. bottom: 29 / 1625
  33178. }
  33179. },
  33180. frontBiker: {
  33181. height: math.unit(3.5, "meters"),
  33182. weight: math.unit(1200, "kg"),
  33183. name: "Front (Biker)",
  33184. image: {
  33185. source: "./media/characters/joanna/front-biker.svg",
  33186. extra: 1596 / 1488,
  33187. bottom: 29 / 1625
  33188. }
  33189. },
  33190. backBiker: {
  33191. height: math.unit(3.5, "meters"),
  33192. weight: math.unit(1200, "kg"),
  33193. name: "Back (Biker)",
  33194. image: {
  33195. source: "./media/characters/joanna/back-biker.svg",
  33196. extra: 1594 / 1495,
  33197. bottom: 88 / 1682
  33198. }
  33199. },
  33200. bikeLeft: {
  33201. height: math.unit(2.4, "meters"),
  33202. weight: math.unit(1600, "kg"),
  33203. name: "Bike (Left)",
  33204. image: {
  33205. source: "./media/characters/joanna/bike-left.svg",
  33206. extra: 720 / 720,
  33207. bottom: 8 / 728
  33208. }
  33209. },
  33210. bikeRight: {
  33211. height: math.unit(2.4, "meters"),
  33212. weight: math.unit(1600, "kg"),
  33213. name: "Bike (Right)",
  33214. image: {
  33215. source: "./media/characters/joanna/bike-right.svg",
  33216. extra: 720 / 720,
  33217. bottom: 8 / 728
  33218. }
  33219. },
  33220. },
  33221. [
  33222. {
  33223. name: "Incognito",
  33224. height: math.unit(3.5, "meters")
  33225. },
  33226. {
  33227. name: "Casual Big",
  33228. height: math.unit(200, "meters")
  33229. },
  33230. {
  33231. name: "Macro",
  33232. height: math.unit(600, "meters")
  33233. },
  33234. {
  33235. name: "Original",
  33236. height: math.unit(20, "km"),
  33237. default: true
  33238. },
  33239. {
  33240. name: "Giga",
  33241. height: math.unit(400, "km")
  33242. },
  33243. {
  33244. name: "Lounging",
  33245. height: math.unit(1500, "km")
  33246. },
  33247. {
  33248. name: "Planetary",
  33249. height: math.unit(200000, "km")
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33255. {
  33256. front: {
  33257. height: math.unit(6, "feet"),
  33258. weight: math.unit(150, "lb"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/hugo-sigil/front.svg",
  33262. extra: 522 / 500,
  33263. bottom: 2 / 524
  33264. }
  33265. },
  33266. back: {
  33267. height: math.unit(6, "feet"),
  33268. weight: math.unit(150, "lb"),
  33269. name: "Back",
  33270. image: {
  33271. source: "./media/characters/hugo-sigil/back.svg",
  33272. extra: 519 / 495,
  33273. bottom: 5 / 524
  33274. }
  33275. },
  33276. maw: {
  33277. height: math.unit(1.4, "feet"),
  33278. weight: math.unit(150, "lb"),
  33279. name: "Maw",
  33280. image: {
  33281. source: "./media/characters/hugo-sigil/maw.svg"
  33282. }
  33283. },
  33284. feet: {
  33285. height: math.unit(1.56, "feet"),
  33286. weight: math.unit(150, "lb"),
  33287. name: "Feet",
  33288. image: {
  33289. source: "./media/characters/hugo-sigil/feet.svg",
  33290. extra: 177 / 177,
  33291. bottom: 12 / 189
  33292. }
  33293. },
  33294. },
  33295. [
  33296. {
  33297. name: "Normal",
  33298. height: math.unit(6, "feet")
  33299. },
  33300. {
  33301. name: "Macro",
  33302. height: math.unit(200, "feet"),
  33303. default: true
  33304. },
  33305. ]
  33306. ))
  33307. characterMakers.push(() => makeCharacter(
  33308. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33309. {
  33310. front: {
  33311. height: math.unit(6, "feet"),
  33312. weight: math.unit(150, "lb"),
  33313. name: "Front",
  33314. image: {
  33315. source: "./media/characters/peri/front.svg",
  33316. extra: 2354 / 2233,
  33317. bottom: 49 / 2403
  33318. }
  33319. },
  33320. },
  33321. [
  33322. {
  33323. name: "Really Small",
  33324. height: math.unit(1, "nm")
  33325. },
  33326. {
  33327. name: "Micro",
  33328. height: math.unit(4, "inches")
  33329. },
  33330. {
  33331. name: "Normal",
  33332. height: math.unit(7, "inches"),
  33333. default: true
  33334. },
  33335. {
  33336. name: "Macro",
  33337. height: math.unit(400, "feet")
  33338. },
  33339. {
  33340. name: "Megamacro",
  33341. height: math.unit(100, "miles")
  33342. },
  33343. ]
  33344. ))
  33345. characterMakers.push(() => makeCharacter(
  33346. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33347. {
  33348. frontSlim: {
  33349. height: math.unit(7, "feet"),
  33350. name: "Front (Slim)",
  33351. image: {
  33352. source: "./media/characters/issilora/front-slim.svg",
  33353. extra: 529 / 449,
  33354. bottom: 53 / 582
  33355. }
  33356. },
  33357. sideSlim: {
  33358. height: math.unit(7, "feet"),
  33359. name: "Side (Slim)",
  33360. image: {
  33361. source: "./media/characters/issilora/side-slim.svg",
  33362. extra: 570 / 480,
  33363. bottom: 30 / 600
  33364. }
  33365. },
  33366. backSlim: {
  33367. height: math.unit(7, "feet"),
  33368. name: "Back (Slim)",
  33369. image: {
  33370. source: "./media/characters/issilora/back-slim.svg",
  33371. extra: 537 / 455,
  33372. bottom: 46 / 583
  33373. }
  33374. },
  33375. frontBuff: {
  33376. height: math.unit(7, "feet"),
  33377. name: "Front (Buff)",
  33378. image: {
  33379. source: "./media/characters/issilora/front-buff.svg",
  33380. extra: 2310 / 2035,
  33381. bottom: 335 / 2645
  33382. }
  33383. },
  33384. head: {
  33385. height: math.unit(1.94, "feet"),
  33386. name: "Head",
  33387. image: {
  33388. source: "./media/characters/issilora/head.svg"
  33389. }
  33390. },
  33391. },
  33392. [
  33393. {
  33394. name: "Minimum",
  33395. height: math.unit(7, "feet")
  33396. },
  33397. {
  33398. name: "Comfortable",
  33399. height: math.unit(17, "feet")
  33400. },
  33401. {
  33402. name: "Fun Size",
  33403. height: math.unit(47, "feet")
  33404. },
  33405. {
  33406. name: "Natural Macro",
  33407. height: math.unit(137, "feet"),
  33408. default: true
  33409. },
  33410. {
  33411. name: "Maximum Kaiju",
  33412. height: math.unit(397, "feet")
  33413. },
  33414. ]
  33415. ))
  33416. characterMakers.push(() => makeCharacter(
  33417. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33418. {
  33419. front: {
  33420. height: math.unit(50 + 9/12, "feet"),
  33421. weight: math.unit(32.8, "tons"),
  33422. name: "Front",
  33423. image: {
  33424. source: "./media/characters/irb'iiritaahn/front.svg",
  33425. extra: 1878/1826,
  33426. bottom: 326/2204
  33427. }
  33428. },
  33429. back: {
  33430. height: math.unit(50 + 9/12, "feet"),
  33431. weight: math.unit(32.8, "tons"),
  33432. name: "Back",
  33433. image: {
  33434. source: "./media/characters/irb'iiritaahn/back.svg",
  33435. extra: 2052/2018,
  33436. bottom: 152/2204
  33437. }
  33438. },
  33439. head: {
  33440. height: math.unit(12.86, "feet"),
  33441. name: "Head",
  33442. image: {
  33443. source: "./media/characters/irb'iiritaahn/head.svg"
  33444. }
  33445. },
  33446. maw: {
  33447. height: math.unit(9.66, "feet"),
  33448. name: "Maw",
  33449. image: {
  33450. source: "./media/characters/irb'iiritaahn/maw.svg"
  33451. }
  33452. },
  33453. frontDick: {
  33454. height: math.unit(8.78461, "feet"),
  33455. name: "Front Dick",
  33456. image: {
  33457. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33458. }
  33459. },
  33460. rearDick: {
  33461. height: math.unit(8.78461, "feet"),
  33462. name: "Rear Dick",
  33463. image: {
  33464. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33465. }
  33466. },
  33467. rearDickUnfolded: {
  33468. height: math.unit(8.78, "feet"),
  33469. name: "Rear Dick (Unfolded)",
  33470. image: {
  33471. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33472. }
  33473. },
  33474. wings: {
  33475. height: math.unit(43, "feet"),
  33476. name: "Wings",
  33477. image: {
  33478. source: "./media/characters/irb'iiritaahn/wings.svg"
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Macro",
  33485. height: math.unit(50 + 9/12, "feet"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(205, "cm"),
  33495. weight: math.unit(102, "kg"),
  33496. name: "Front",
  33497. image: {
  33498. source: "./media/characters/irbisgreif/front.svg",
  33499. extra: 785/706,
  33500. bottom: 13/798
  33501. }
  33502. },
  33503. back: {
  33504. height: math.unit(205, "cm"),
  33505. weight: math.unit(102, "kg"),
  33506. name: "Back",
  33507. image: {
  33508. source: "./media/characters/irbisgreif/back.svg",
  33509. extra: 713/701,
  33510. bottom: 26/739
  33511. }
  33512. },
  33513. frontDressed: {
  33514. height: math.unit(216, "cm"),
  33515. weight: math.unit(102, "kg"),
  33516. name: "Front-dressed",
  33517. image: {
  33518. source: "./media/characters/irbisgreif/front-dressed.svg",
  33519. extra: 902/776,
  33520. bottom: 14/916
  33521. }
  33522. },
  33523. sideDressed: {
  33524. height: math.unit(195, "cm"),
  33525. weight: math.unit(102, "kg"),
  33526. name: "Side-dressed",
  33527. image: {
  33528. source: "./media/characters/irbisgreif/side-dressed.svg",
  33529. extra: 788/688,
  33530. bottom: 21/809
  33531. }
  33532. },
  33533. backDressed: {
  33534. height: math.unit(216, "cm"),
  33535. weight: math.unit(102, "kg"),
  33536. name: "Back-dressed",
  33537. image: {
  33538. source: "./media/characters/irbisgreif/back-dressed.svg",
  33539. extra: 901/783,
  33540. bottom: 10/911
  33541. }
  33542. },
  33543. dick: {
  33544. height: math.unit(0.49, "feet"),
  33545. name: "Dick",
  33546. image: {
  33547. source: "./media/characters/irbisgreif/dick.svg"
  33548. }
  33549. },
  33550. wingTop: {
  33551. height: math.unit(1.93 , "feet"),
  33552. name: "Wing-top",
  33553. image: {
  33554. source: "./media/characters/irbisgreif/wing-top.svg"
  33555. }
  33556. },
  33557. wingBottom: {
  33558. height: math.unit(1.93 , "feet"),
  33559. name: "Wing-bottom",
  33560. image: {
  33561. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33562. }
  33563. },
  33564. },
  33565. [
  33566. {
  33567. name: "Normal",
  33568. height: math.unit(216, "cm"),
  33569. default: true
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33575. {
  33576. front: {
  33577. height: math.unit(6, "feet"),
  33578. weight: math.unit(150, "lb"),
  33579. name: "Front",
  33580. image: {
  33581. source: "./media/characters/pride/front.svg",
  33582. extra: 1299/1230,
  33583. bottom: 18/1317
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(7, "feet")
  33591. },
  33592. {
  33593. name: "Mini-macro",
  33594. height: math.unit(11, "feet")
  33595. },
  33596. {
  33597. name: "Macro",
  33598. height: math.unit(15, "meters"),
  33599. default: true
  33600. },
  33601. {
  33602. name: "Macro+",
  33603. height: math.unit(40, "meters")
  33604. },
  33605. ]
  33606. ))
  33607. characterMakers.push(() => makeCharacter(
  33608. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33609. {
  33610. front: {
  33611. height: math.unit(4 + 2 / 12, "feet"),
  33612. weight: math.unit(95, "lb"),
  33613. name: "Front",
  33614. image: {
  33615. source: "./media/characters/vaelophis-nyx/front.svg",
  33616. extra: 2532/2330,
  33617. bottom: 0/2532
  33618. }
  33619. },
  33620. back: {
  33621. height: math.unit(4 + 2 / 12, "feet"),
  33622. weight: math.unit(95, "lb"),
  33623. name: "Back",
  33624. image: {
  33625. source: "./media/characters/vaelophis-nyx/back.svg",
  33626. extra: 2484/2361,
  33627. bottom: 0/2484
  33628. }
  33629. },
  33630. feralSide: {
  33631. height: math.unit(2 + 1/12, "feet"),
  33632. weight: math.unit(20, "lb"),
  33633. name: "Feral (Side)",
  33634. image: {
  33635. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33636. extra: 1721/1581,
  33637. bottom: 70/1791
  33638. }
  33639. },
  33640. feralLazing: {
  33641. height: math.unit(1.08, "feet"),
  33642. weight: math.unit(20, "lb"),
  33643. name: "Feral (Lazing)",
  33644. image: {
  33645. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33646. extra: 822/822,
  33647. bottom: 248/1070
  33648. }
  33649. },
  33650. ear: {
  33651. height: math.unit(0.416, "feet"),
  33652. name: "Ear",
  33653. image: {
  33654. source: "./media/characters/vaelophis-nyx/ear.svg"
  33655. }
  33656. },
  33657. eye: {
  33658. height: math.unit(0.0748, "feet"),
  33659. name: "Eye",
  33660. image: {
  33661. source: "./media/characters/vaelophis-nyx/eye.svg"
  33662. }
  33663. },
  33664. mouth: {
  33665. height: math.unit(0.378, "feet"),
  33666. name: "Mouth",
  33667. image: {
  33668. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33669. }
  33670. },
  33671. spade: {
  33672. height: math.unit(0.55, "feet"),
  33673. name: "Spade",
  33674. image: {
  33675. source: "./media/characters/vaelophis-nyx/spade.svg"
  33676. }
  33677. },
  33678. },
  33679. [
  33680. {
  33681. name: "Normal",
  33682. height: math.unit(4 + 2/12, "feet"),
  33683. default: true
  33684. },
  33685. ]
  33686. ))
  33687. characterMakers.push(() => makeCharacter(
  33688. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33689. {
  33690. front: {
  33691. height: math.unit(7, "feet"),
  33692. weight: math.unit(231, "lb"),
  33693. name: "Front",
  33694. image: {
  33695. source: "./media/characters/flux/front.svg",
  33696. extra: 919/871,
  33697. bottom: 0/919
  33698. }
  33699. },
  33700. back: {
  33701. height: math.unit(7, "feet"),
  33702. weight: math.unit(231, "lb"),
  33703. name: "Back",
  33704. image: {
  33705. source: "./media/characters/flux/back.svg",
  33706. extra: 1040/992,
  33707. bottom: 0/1040
  33708. }
  33709. },
  33710. frontDressed: {
  33711. height: math.unit(7, "feet"),
  33712. weight: math.unit(231, "lb"),
  33713. name: "Front (Dressed)",
  33714. image: {
  33715. source: "./media/characters/flux/front-dressed.svg",
  33716. extra: 919/871,
  33717. bottom: 0/919
  33718. }
  33719. },
  33720. feralSide: {
  33721. height: math.unit(5, "feet"),
  33722. weight: math.unit(150, "lb"),
  33723. name: "Feral (Side)",
  33724. image: {
  33725. source: "./media/characters/flux/feral-side.svg",
  33726. extra: 598/528,
  33727. bottom: 28/626
  33728. }
  33729. },
  33730. head: {
  33731. height: math.unit(1.585, "feet"),
  33732. name: "Head",
  33733. image: {
  33734. source: "./media/characters/flux/head.svg"
  33735. }
  33736. },
  33737. headSide: {
  33738. height: math.unit(1.74, "feet"),
  33739. name: "Head (Side)",
  33740. image: {
  33741. source: "./media/characters/flux/head-side.svg"
  33742. }
  33743. },
  33744. headSideFire: {
  33745. height: math.unit(1.76, "feet"),
  33746. name: "Head (Side, Fire)",
  33747. image: {
  33748. source: "./media/characters/flux/head-side-fire.svg"
  33749. }
  33750. },
  33751. },
  33752. [
  33753. {
  33754. name: "Normal",
  33755. height: math.unit(7, "feet"),
  33756. default: true
  33757. },
  33758. ]
  33759. ))
  33760. characterMakers.push(() => makeCharacter(
  33761. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33762. {
  33763. front: {
  33764. height: math.unit(9, "feet"),
  33765. weight: math.unit(1012, "lb"),
  33766. name: "Front",
  33767. image: {
  33768. source: "./media/characters/ulfra-lupae/front.svg",
  33769. extra: 1083/1011,
  33770. bottom: 67/1150
  33771. }
  33772. },
  33773. },
  33774. [
  33775. {
  33776. name: "Micro",
  33777. height: math.unit(6, "inches")
  33778. },
  33779. {
  33780. name: "Socializing",
  33781. height: math.unit(6 + 5/12, "feet")
  33782. },
  33783. {
  33784. name: "Normal",
  33785. height: math.unit(9, "feet"),
  33786. default: true
  33787. },
  33788. {
  33789. name: "Macro",
  33790. height: math.unit(150, "feet")
  33791. },
  33792. ]
  33793. ))
  33794. characterMakers.push(() => makeCharacter(
  33795. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33796. {
  33797. front: {
  33798. height: math.unit(5 + 2/12, "feet"),
  33799. weight: math.unit(120, "lb"),
  33800. name: "Front",
  33801. image: {
  33802. source: "./media/characters/timber/front.svg",
  33803. extra: 2814/2705,
  33804. bottom: 181/2995
  33805. }
  33806. },
  33807. },
  33808. [
  33809. {
  33810. name: "Normal",
  33811. height: math.unit(5 + 2/12, "feet"),
  33812. default: true
  33813. },
  33814. ]
  33815. ))
  33816. characterMakers.push(() => makeCharacter(
  33817. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33818. {
  33819. front: {
  33820. height: math.unit(9, "feet"),
  33821. name: "Front",
  33822. image: {
  33823. source: "./media/characters/nicki/front.svg",
  33824. extra: 1240/990,
  33825. bottom: 45/1285
  33826. },
  33827. form: "anthro",
  33828. default: true
  33829. },
  33830. side: {
  33831. height: math.unit(9, "feet"),
  33832. name: "Side",
  33833. image: {
  33834. source: "./media/characters/nicki/side.svg",
  33835. extra: 1047/973,
  33836. bottom: 61/1108
  33837. },
  33838. form: "anthro"
  33839. },
  33840. back: {
  33841. height: math.unit(9, "feet"),
  33842. name: "Back",
  33843. image: {
  33844. source: "./media/characters/nicki/back.svg",
  33845. extra: 1006/965,
  33846. bottom: 39/1045
  33847. },
  33848. form: "anthro"
  33849. },
  33850. taur: {
  33851. height: math.unit(15, "feet"),
  33852. name: "Taur",
  33853. image: {
  33854. source: "./media/characters/nicki/taur.svg",
  33855. extra: 1592/1347,
  33856. bottom: 0/1592
  33857. },
  33858. form: "taur",
  33859. default: true
  33860. },
  33861. },
  33862. [
  33863. {
  33864. name: "Normal",
  33865. height: math.unit(9, "feet"),
  33866. form: "anthro",
  33867. default: true
  33868. },
  33869. {
  33870. name: "Normal",
  33871. height: math.unit(15, "feet"),
  33872. form: "taur",
  33873. default: true
  33874. }
  33875. ],
  33876. {
  33877. "anthro": {
  33878. name: "Anthro",
  33879. default: true
  33880. },
  33881. "taur": {
  33882. name: "Taur"
  33883. }
  33884. }
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33888. {
  33889. front: {
  33890. height: math.unit(7 + 10/12, "feet"),
  33891. weight: math.unit(3.5, "tons"),
  33892. name: "Front",
  33893. image: {
  33894. source: "./media/characters/lee/front.svg",
  33895. extra: 1773/1615,
  33896. bottom: 86/1859
  33897. }
  33898. },
  33899. hand: {
  33900. height: math.unit(1.78, "feet"),
  33901. name: "Hand",
  33902. image: {
  33903. source: "./media/characters/lee/hand.svg"
  33904. }
  33905. },
  33906. maw: {
  33907. height: math.unit(1.18, "feet"),
  33908. name: "Maw",
  33909. image: {
  33910. source: "./media/characters/lee/maw.svg"
  33911. }
  33912. },
  33913. },
  33914. [
  33915. {
  33916. name: "Normal",
  33917. height: math.unit(7 + 10/12, "feet"),
  33918. default: true
  33919. },
  33920. ]
  33921. ))
  33922. characterMakers.push(() => makeCharacter(
  33923. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33924. {
  33925. front: {
  33926. height: math.unit(9, "feet"),
  33927. name: "Front",
  33928. image: {
  33929. source: "./media/characters/guti/front.svg",
  33930. extra: 4551/4355,
  33931. bottom: 123/4674
  33932. }
  33933. },
  33934. tongue: {
  33935. height: math.unit(1, "feet"),
  33936. name: "Tongue",
  33937. image: {
  33938. source: "./media/characters/guti/tongue.svg"
  33939. }
  33940. },
  33941. paw: {
  33942. height: math.unit(1.18, "feet"),
  33943. name: "Paw",
  33944. image: {
  33945. source: "./media/characters/guti/paw.svg"
  33946. }
  33947. },
  33948. },
  33949. [
  33950. {
  33951. name: "Normal",
  33952. height: math.unit(9, "feet"),
  33953. default: true
  33954. },
  33955. ]
  33956. ))
  33957. characterMakers.push(() => makeCharacter(
  33958. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33959. {
  33960. side: {
  33961. height: math.unit(5, "meters"),
  33962. name: "Side",
  33963. image: {
  33964. source: "./media/characters/vesper/side.svg",
  33965. extra: 1605/1518,
  33966. bottom: 0/1605
  33967. }
  33968. },
  33969. },
  33970. [
  33971. {
  33972. name: "Small",
  33973. height: math.unit(5, "meters")
  33974. },
  33975. {
  33976. name: "Sage",
  33977. height: math.unit(100, "meters"),
  33978. default: true
  33979. },
  33980. {
  33981. name: "Fun Size",
  33982. height: math.unit(600, "meters")
  33983. },
  33984. {
  33985. name: "Goddess",
  33986. height: math.unit(20000, "km")
  33987. },
  33988. {
  33989. name: "Maximum",
  33990. height: math.unit(5, "galaxies")
  33991. },
  33992. ]
  33993. ))
  33994. characterMakers.push(() => makeCharacter(
  33995. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33996. {
  33997. front: {
  33998. height: math.unit(6 + 3/12, "feet"),
  33999. weight: math.unit(190, "lb"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/gawain/front.svg",
  34003. extra: 2222/2139,
  34004. bottom: 90/2312
  34005. }
  34006. },
  34007. back: {
  34008. height: math.unit(6 + 3/12, "feet"),
  34009. weight: math.unit(190, "lb"),
  34010. name: "Back",
  34011. image: {
  34012. source: "./media/characters/gawain/back.svg",
  34013. extra: 2199/2111,
  34014. bottom: 73/2272
  34015. }
  34016. },
  34017. },
  34018. [
  34019. {
  34020. name: "Normal",
  34021. height: math.unit(6 + 3/12, "feet"),
  34022. default: true
  34023. },
  34024. ]
  34025. ))
  34026. characterMakers.push(() => makeCharacter(
  34027. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34028. {
  34029. side: {
  34030. height: math.unit(3.5, "meters"),
  34031. weight: math.unit(16000, "lb"),
  34032. name: "Side",
  34033. image: {
  34034. source: "./media/characters/dascalti/side.svg",
  34035. extra: 392/273,
  34036. bottom: 47/439
  34037. }
  34038. },
  34039. breath: {
  34040. height: math.unit(7.4, "feet"),
  34041. name: "Breath",
  34042. image: {
  34043. source: "./media/characters/dascalti/breath.svg"
  34044. }
  34045. },
  34046. fed: {
  34047. height: math.unit(3.6, "meters"),
  34048. weight: math.unit(16000, "lb"),
  34049. name: "Fed",
  34050. image: {
  34051. source: "./media/characters/dascalti/fed.svg",
  34052. extra: 1419/820,
  34053. bottom: 95/1514
  34054. }
  34055. },
  34056. },
  34057. [
  34058. {
  34059. name: "Normal",
  34060. height: math.unit(3.5, "meters"),
  34061. default: true
  34062. },
  34063. ]
  34064. ))
  34065. characterMakers.push(() => makeCharacter(
  34066. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34067. {
  34068. front: {
  34069. height: math.unit(3 + 5/12, "feet"),
  34070. name: "Front",
  34071. image: {
  34072. source: "./media/characters/mauve/front.svg",
  34073. extra: 1126/1033,
  34074. bottom: 65/1191
  34075. }
  34076. },
  34077. side: {
  34078. height: math.unit(3 + 5/12, "feet"),
  34079. name: "Side",
  34080. image: {
  34081. source: "./media/characters/mauve/side.svg",
  34082. extra: 1089/1001,
  34083. bottom: 29/1118
  34084. }
  34085. },
  34086. back: {
  34087. height: math.unit(3 + 5/12, "feet"),
  34088. name: "Back",
  34089. image: {
  34090. source: "./media/characters/mauve/back.svg",
  34091. extra: 1173/1053,
  34092. bottom: 109/1282
  34093. }
  34094. },
  34095. },
  34096. [
  34097. {
  34098. name: "Normal",
  34099. height: math.unit(3 + 5/12, "feet"),
  34100. default: true
  34101. },
  34102. ]
  34103. ))
  34104. characterMakers.push(() => makeCharacter(
  34105. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34106. {
  34107. front: {
  34108. height: math.unit(6 + 3/12, "feet"),
  34109. weight: math.unit(430, "lb"),
  34110. name: "Front",
  34111. image: {
  34112. source: "./media/characters/carlos/front.svg",
  34113. extra: 1964/1913,
  34114. bottom: 70/2034
  34115. }
  34116. },
  34117. },
  34118. [
  34119. {
  34120. name: "Normal",
  34121. height: math.unit(6 + 3/12, "feet"),
  34122. default: true
  34123. },
  34124. ]
  34125. ))
  34126. characterMakers.push(() => makeCharacter(
  34127. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34128. {
  34129. back: {
  34130. height: math.unit(5 + 10/12, "feet"),
  34131. weight: math.unit(200, "lb"),
  34132. name: "Back",
  34133. image: {
  34134. source: "./media/characters/jax/back.svg",
  34135. extra: 764/739,
  34136. bottom: 25/789
  34137. }
  34138. },
  34139. },
  34140. [
  34141. {
  34142. name: "Normal",
  34143. height: math.unit(5 + 10/12, "feet"),
  34144. default: true
  34145. },
  34146. ]
  34147. ))
  34148. characterMakers.push(() => makeCharacter(
  34149. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34150. {
  34151. front: {
  34152. height: math.unit(8, "feet"),
  34153. weight: math.unit(250, "lb"),
  34154. name: "Front",
  34155. image: {
  34156. source: "./media/characters/eikthynir/front.svg",
  34157. extra: 1332/1166,
  34158. bottom: 82/1414
  34159. }
  34160. },
  34161. back: {
  34162. height: math.unit(8, "feet"),
  34163. weight: math.unit(250, "lb"),
  34164. name: "Back",
  34165. image: {
  34166. source: "./media/characters/eikthynir/back.svg",
  34167. extra: 1342/1190,
  34168. bottom: 19/1361
  34169. }
  34170. },
  34171. dick: {
  34172. height: math.unit(2.35, "feet"),
  34173. name: "Dick",
  34174. image: {
  34175. source: "./media/characters/eikthynir/dick.svg"
  34176. }
  34177. },
  34178. },
  34179. [
  34180. {
  34181. name: "Normal",
  34182. height: math.unit(8, "feet"),
  34183. default: true
  34184. },
  34185. ]
  34186. ))
  34187. characterMakers.push(() => makeCharacter(
  34188. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34189. {
  34190. front: {
  34191. height: math.unit(99, "meters"),
  34192. weight: math.unit(13000, "tons"),
  34193. name: "Front",
  34194. image: {
  34195. source: "./media/characters/zlmos/front.svg",
  34196. extra: 2202/1992,
  34197. bottom: 315/2517
  34198. }
  34199. },
  34200. },
  34201. [
  34202. {
  34203. name: "Macro",
  34204. height: math.unit(99, "meters"),
  34205. default: true
  34206. },
  34207. ]
  34208. ))
  34209. characterMakers.push(() => makeCharacter(
  34210. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34211. {
  34212. front: {
  34213. height: math.unit(6 + 5/12, "feet"),
  34214. name: "Front",
  34215. image: {
  34216. source: "./media/characters/purri/front.svg",
  34217. extra: 1698/1610,
  34218. bottom: 32/1730
  34219. }
  34220. },
  34221. frontAlt: {
  34222. height: math.unit(6 + 5/12, "feet"),
  34223. name: "Front (Alt)",
  34224. image: {
  34225. source: "./media/characters/purri/front-alt.svg",
  34226. extra: 450/420,
  34227. bottom: 26/476
  34228. }
  34229. },
  34230. boots: {
  34231. height: math.unit(5.5, "feet"),
  34232. name: "Boots",
  34233. image: {
  34234. source: "./media/characters/purri/boots.svg",
  34235. extra: 905/853,
  34236. bottom: 18/923
  34237. },
  34238. extraAttributes: {
  34239. "shoeSize": {
  34240. name: "Shoe Size",
  34241. power: 1,
  34242. type: "length",
  34243. base: math.unit(12, "ShoeSizeMensUS")
  34244. },
  34245. "platformHeight": {
  34246. name: "Platform Height",
  34247. power: 1,
  34248. type: "length",
  34249. base: math.unit(2, "inches")
  34250. },
  34251. }
  34252. },
  34253. lying: {
  34254. height: math.unit(2, "feet"),
  34255. name: "Lying",
  34256. image: {
  34257. source: "./media/characters/purri/lying.svg",
  34258. extra: 940/843,
  34259. bottom: 146/1086
  34260. }
  34261. },
  34262. devious: {
  34263. height: math.unit(1.77, "feet"),
  34264. name: "Devious",
  34265. image: {
  34266. source: "./media/characters/purri/devious.svg",
  34267. extra: 1440/1155,
  34268. bottom: 147/1587
  34269. }
  34270. },
  34271. bean: {
  34272. height: math.unit(1.94, "feet"),
  34273. name: "Bean",
  34274. image: {
  34275. source: "./media/characters/purri/bean.svg"
  34276. }
  34277. },
  34278. },
  34279. [
  34280. {
  34281. name: "Micro",
  34282. height: math.unit(1, "mm")
  34283. },
  34284. {
  34285. name: "Normal",
  34286. height: math.unit(6 + 5/12, "feet"),
  34287. default: true
  34288. },
  34289. {
  34290. name: "Macro :3c",
  34291. height: math.unit(2, "miles")
  34292. },
  34293. ]
  34294. ))
  34295. characterMakers.push(() => makeCharacter(
  34296. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34297. {
  34298. front: {
  34299. height: math.unit(6 + 2/12, "feet"),
  34300. weight: math.unit(250, "lb"),
  34301. name: "Front",
  34302. image: {
  34303. source: "./media/characters/moonlight/front.svg",
  34304. extra: 1044/908,
  34305. bottom: 56/1100
  34306. }
  34307. },
  34308. feral: {
  34309. height: math.unit(3 + 1/12, "feet"),
  34310. weight: math.unit(50, "kg"),
  34311. name: "Feral",
  34312. image: {
  34313. source: "./media/characters/moonlight/feral.svg",
  34314. extra: 3705/2791,
  34315. bottom: 145/3850
  34316. }
  34317. },
  34318. paw: {
  34319. height: math.unit(1, "feet"),
  34320. name: "Paw",
  34321. image: {
  34322. source: "./media/characters/moonlight/paw.svg"
  34323. }
  34324. },
  34325. paws: {
  34326. height: math.unit(0.98, "feet"),
  34327. name: "Paws",
  34328. image: {
  34329. source: "./media/characters/moonlight/paws.svg",
  34330. extra: 939/939,
  34331. bottom: 50/989
  34332. }
  34333. },
  34334. mouth: {
  34335. height: math.unit(0.48, "feet"),
  34336. name: "Mouth",
  34337. image: {
  34338. source: "./media/characters/moonlight/mouth.svg"
  34339. }
  34340. },
  34341. dick: {
  34342. height: math.unit(1.46, "feet"),
  34343. name: "Dick",
  34344. image: {
  34345. source: "./media/characters/moonlight/dick.svg"
  34346. }
  34347. },
  34348. },
  34349. [
  34350. {
  34351. name: "Normal",
  34352. height: math.unit(6 + 2/12, "feet"),
  34353. default: true
  34354. },
  34355. {
  34356. name: "Macro",
  34357. height: math.unit(300, "feet")
  34358. },
  34359. {
  34360. name: "Macro+",
  34361. height: math.unit(1, "mile")
  34362. },
  34363. {
  34364. name: "Mt. Moon",
  34365. height: math.unit(5, "miles")
  34366. },
  34367. {
  34368. name: "Megamacro",
  34369. height: math.unit(15, "miles")
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34375. {
  34376. back: {
  34377. height: math.unit(6, "feet"),
  34378. weight: math.unit(150, "lb"),
  34379. name: "Back",
  34380. image: {
  34381. source: "./media/characters/sylen/back.svg",
  34382. extra: 1335/1273,
  34383. bottom: 107/1442
  34384. }
  34385. },
  34386. },
  34387. [
  34388. {
  34389. name: "Normal",
  34390. height: math.unit(5 + 5/12, "feet")
  34391. },
  34392. {
  34393. name: "Megamacro",
  34394. height: math.unit(3, "miles"),
  34395. default: true
  34396. },
  34397. ]
  34398. ))
  34399. characterMakers.push(() => makeCharacter(
  34400. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34401. {
  34402. front: {
  34403. height: math.unit(6, "feet"),
  34404. weight: math.unit(190, "lb"),
  34405. name: "Front",
  34406. image: {
  34407. source: "./media/characters/huttser/front.svg",
  34408. extra: 1152/1058,
  34409. bottom: 23/1175
  34410. }
  34411. },
  34412. side: {
  34413. height: math.unit(6, "feet"),
  34414. weight: math.unit(190, "lb"),
  34415. name: "Side",
  34416. image: {
  34417. source: "./media/characters/huttser/side.svg",
  34418. extra: 1174/1065,
  34419. bottom: 18/1192
  34420. }
  34421. },
  34422. back: {
  34423. height: math.unit(6, "feet"),
  34424. weight: math.unit(190, "lb"),
  34425. name: "Back",
  34426. image: {
  34427. source: "./media/characters/huttser/back.svg",
  34428. extra: 1158/1056,
  34429. bottom: 12/1170
  34430. }
  34431. },
  34432. },
  34433. [
  34434. ]
  34435. ))
  34436. characterMakers.push(() => makeCharacter(
  34437. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34438. {
  34439. side: {
  34440. height: math.unit(12 + 9/12, "feet"),
  34441. weight: math.unit(15000, "lb"),
  34442. name: "Side",
  34443. image: {
  34444. source: "./media/characters/faan/side.svg",
  34445. extra: 2747/2697,
  34446. bottom: 0/2747
  34447. }
  34448. },
  34449. front: {
  34450. height: math.unit(12 + 9/12, "feet"),
  34451. weight: math.unit(15000, "lb"),
  34452. name: "Front",
  34453. image: {
  34454. source: "./media/characters/faan/front.svg",
  34455. extra: 607/571,
  34456. bottom: 24/631
  34457. }
  34458. },
  34459. head: {
  34460. height: math.unit(2.85, "feet"),
  34461. name: "Head",
  34462. image: {
  34463. source: "./media/characters/faan/head.svg"
  34464. }
  34465. },
  34466. headAlt: {
  34467. height: math.unit(3.13, "feet"),
  34468. name: "Head-alt",
  34469. image: {
  34470. source: "./media/characters/faan/head-alt.svg"
  34471. }
  34472. },
  34473. },
  34474. [
  34475. {
  34476. name: "Normal",
  34477. height: math.unit(12 + 9/12, "feet"),
  34478. default: true
  34479. },
  34480. ]
  34481. ))
  34482. characterMakers.push(() => makeCharacter(
  34483. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34484. {
  34485. front: {
  34486. height: math.unit(6, "feet"),
  34487. weight: math.unit(300, "lb"),
  34488. name: "Front",
  34489. image: {
  34490. source: "./media/characters/tanio/front.svg",
  34491. extra: 711/673,
  34492. bottom: 25/736
  34493. }
  34494. },
  34495. },
  34496. [
  34497. {
  34498. name: "Normal",
  34499. height: math.unit(6, "feet"),
  34500. default: true
  34501. },
  34502. ]
  34503. ))
  34504. characterMakers.push(() => makeCharacter(
  34505. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34506. {
  34507. front: {
  34508. height: math.unit(3, "inches"),
  34509. name: "Front",
  34510. image: {
  34511. source: "./media/characters/noboru/front.svg",
  34512. extra: 1039/932,
  34513. bottom: 18/1057
  34514. }
  34515. },
  34516. },
  34517. [
  34518. {
  34519. name: "Micro",
  34520. height: math.unit(3, "inches"),
  34521. default: true
  34522. },
  34523. ]
  34524. ))
  34525. characterMakers.push(() => makeCharacter(
  34526. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34527. {
  34528. front: {
  34529. height: math.unit(1.85, "meters"),
  34530. weight: math.unit(80, "kg"),
  34531. name: "Front",
  34532. image: {
  34533. source: "./media/characters/daniel-barrett/front.svg",
  34534. extra: 355/337,
  34535. bottom: 9/364
  34536. }
  34537. },
  34538. },
  34539. [
  34540. {
  34541. name: "Pico",
  34542. height: math.unit(0.0433, "mm")
  34543. },
  34544. {
  34545. name: "Nano",
  34546. height: math.unit(1.5, "mm")
  34547. },
  34548. {
  34549. name: "Micro",
  34550. height: math.unit(5.3, "cm"),
  34551. default: true
  34552. },
  34553. {
  34554. name: "Normal",
  34555. height: math.unit(1.85, "meters")
  34556. },
  34557. {
  34558. name: "Macro",
  34559. height: math.unit(64.7, "meters")
  34560. },
  34561. {
  34562. name: "Megamacro",
  34563. height: math.unit(2.26, "km")
  34564. },
  34565. {
  34566. name: "Gigamacro",
  34567. height: math.unit(79, "km")
  34568. },
  34569. {
  34570. name: "Teramacro",
  34571. height: math.unit(2765, "km")
  34572. },
  34573. {
  34574. name: "Petamacro",
  34575. height: math.unit(96678, "km")
  34576. },
  34577. ]
  34578. ))
  34579. characterMakers.push(() => makeCharacter(
  34580. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34581. {
  34582. front: {
  34583. height: math.unit(30, "meters"),
  34584. weight: math.unit(400, "tons"),
  34585. name: "Front",
  34586. image: {
  34587. source: "./media/characters/zeel/front.svg",
  34588. extra: 2599/2599,
  34589. bottom: 226/2825
  34590. }
  34591. },
  34592. },
  34593. [
  34594. {
  34595. name: "Macro",
  34596. height: math.unit(30, "meters"),
  34597. default: true
  34598. },
  34599. ]
  34600. ))
  34601. characterMakers.push(() => makeCharacter(
  34602. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34603. {
  34604. front: {
  34605. height: math.unit(6 + 7/12, "feet"),
  34606. weight: math.unit(210, "lb"),
  34607. name: "Front",
  34608. image: {
  34609. source: "./media/characters/tarn/front.svg",
  34610. extra: 3517/3220,
  34611. bottom: 91/3608
  34612. }
  34613. },
  34614. back: {
  34615. height: math.unit(6 + 7/12, "feet"),
  34616. weight: math.unit(210, "lb"),
  34617. name: "Back",
  34618. image: {
  34619. source: "./media/characters/tarn/back.svg",
  34620. extra: 3566/3241,
  34621. bottom: 34/3600
  34622. }
  34623. },
  34624. dick: {
  34625. height: math.unit(1.65, "feet"),
  34626. name: "Dick",
  34627. image: {
  34628. source: "./media/characters/tarn/dick.svg"
  34629. }
  34630. },
  34631. paw: {
  34632. height: math.unit(1.80, "feet"),
  34633. name: "Paw",
  34634. image: {
  34635. source: "./media/characters/tarn/paw.svg"
  34636. }
  34637. },
  34638. tongue: {
  34639. height: math.unit(0.97, "feet"),
  34640. name: "Tongue",
  34641. image: {
  34642. source: "./media/characters/tarn/tongue.svg"
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Micro",
  34649. height: math.unit(4, "inches")
  34650. },
  34651. {
  34652. name: "Normal",
  34653. height: math.unit(6 + 7/12, "feet"),
  34654. default: true
  34655. },
  34656. {
  34657. name: "Macro",
  34658. height: math.unit(300, "feet")
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34664. {
  34665. front: {
  34666. height: math.unit(5 + 7/12, "feet"),
  34667. weight: math.unit(80, "kg"),
  34668. name: "Front",
  34669. image: {
  34670. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34671. extra: 3023/2865,
  34672. bottom: 33/3056
  34673. }
  34674. },
  34675. back: {
  34676. height: math.unit(5 + 7/12, "feet"),
  34677. weight: math.unit(80, "kg"),
  34678. name: "Back",
  34679. image: {
  34680. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34681. extra: 3020/2886,
  34682. bottom: 30/3050
  34683. }
  34684. },
  34685. dick: {
  34686. height: math.unit(0.98, "feet"),
  34687. name: "Dick",
  34688. image: {
  34689. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34690. }
  34691. },
  34692. anatomy: {
  34693. height: math.unit(2.86, "feet"),
  34694. name: "Anatomy",
  34695. image: {
  34696. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34697. }
  34698. },
  34699. },
  34700. [
  34701. {
  34702. name: "Really Small",
  34703. height: math.unit(2, "inches")
  34704. },
  34705. {
  34706. name: "Micro",
  34707. height: math.unit(5.583, "inches")
  34708. },
  34709. {
  34710. name: "Normal",
  34711. height: math.unit(5 + 7/12, "feet"),
  34712. default: true
  34713. },
  34714. {
  34715. name: "Macro",
  34716. height: math.unit(67, "feet")
  34717. },
  34718. {
  34719. name: "Megamacro",
  34720. height: math.unit(134, "feet")
  34721. },
  34722. ]
  34723. ))
  34724. characterMakers.push(() => makeCharacter(
  34725. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34726. {
  34727. front: {
  34728. height: math.unit(9, "feet"),
  34729. weight: math.unit(120, "lb"),
  34730. name: "Front",
  34731. image: {
  34732. source: "./media/characters/sally/front.svg",
  34733. extra: 1506/1349,
  34734. bottom: 66/1572
  34735. }
  34736. },
  34737. },
  34738. [
  34739. {
  34740. name: "Normal",
  34741. height: math.unit(9, "feet"),
  34742. default: true
  34743. },
  34744. ]
  34745. ))
  34746. characterMakers.push(() => makeCharacter(
  34747. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34748. {
  34749. front: {
  34750. height: math.unit(8, "feet"),
  34751. weight: math.unit(900, "lb"),
  34752. name: "Front",
  34753. image: {
  34754. source: "./media/characters/owen/front.svg",
  34755. extra: 1761/1657,
  34756. bottom: 74/1835
  34757. }
  34758. },
  34759. side: {
  34760. height: math.unit(8, "feet"),
  34761. weight: math.unit(900, "lb"),
  34762. name: "Side",
  34763. image: {
  34764. source: "./media/characters/owen/side.svg",
  34765. extra: 1797/1734,
  34766. bottom: 30/1827
  34767. }
  34768. },
  34769. back: {
  34770. height: math.unit(8, "feet"),
  34771. weight: math.unit(900, "lb"),
  34772. name: "Back",
  34773. image: {
  34774. source: "./media/characters/owen/back.svg",
  34775. extra: 1796/1706,
  34776. bottom: 59/1855
  34777. }
  34778. },
  34779. maw: {
  34780. height: math.unit(1.76, "feet"),
  34781. name: "Maw",
  34782. image: {
  34783. source: "./media/characters/owen/maw.svg"
  34784. }
  34785. },
  34786. },
  34787. [
  34788. {
  34789. name: "Normal",
  34790. height: math.unit(8, "feet"),
  34791. default: true
  34792. },
  34793. ]
  34794. ))
  34795. characterMakers.push(() => makeCharacter(
  34796. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34797. {
  34798. front: {
  34799. height: math.unit(4, "feet"),
  34800. weight: math.unit(400, "lb"),
  34801. name: "Front",
  34802. image: {
  34803. source: "./media/characters/ryth/front.svg",
  34804. extra: 1920/1748,
  34805. bottom: 42/1962
  34806. }
  34807. },
  34808. back: {
  34809. height: math.unit(4, "feet"),
  34810. weight: math.unit(400, "lb"),
  34811. name: "Back",
  34812. image: {
  34813. source: "./media/characters/ryth/back.svg",
  34814. extra: 1897/1690,
  34815. bottom: 89/1986
  34816. }
  34817. },
  34818. mouth: {
  34819. height: math.unit(1.39, "feet"),
  34820. name: "Mouth",
  34821. image: {
  34822. source: "./media/characters/ryth/mouth.svg"
  34823. }
  34824. },
  34825. tailmaw: {
  34826. height: math.unit(1.23, "feet"),
  34827. name: "Tailmaw",
  34828. image: {
  34829. source: "./media/characters/ryth/tailmaw.svg"
  34830. }
  34831. },
  34832. goia: {
  34833. height: math.unit(4, "meters"),
  34834. weight: math.unit(10800, "lb"),
  34835. name: "Goia",
  34836. image: {
  34837. source: "./media/characters/ryth/goia.svg",
  34838. extra: 745/640,
  34839. bottom: 107/852
  34840. }
  34841. },
  34842. goiaFront: {
  34843. height: math.unit(4, "meters"),
  34844. weight: math.unit(10800, "lb"),
  34845. name: "Goia (Front)",
  34846. image: {
  34847. source: "./media/characters/ryth/goia-front.svg",
  34848. extra: 750/586,
  34849. bottom: 114/864
  34850. }
  34851. },
  34852. goiaMaw: {
  34853. height: math.unit(5.55, "feet"),
  34854. name: "Goia Maw",
  34855. image: {
  34856. source: "./media/characters/ryth/goia-maw.svg"
  34857. }
  34858. },
  34859. goiaForepaw: {
  34860. height: math.unit(3.5, "feet"),
  34861. name: "Goia Forepaw",
  34862. image: {
  34863. source: "./media/characters/ryth/goia-forepaw.svg"
  34864. }
  34865. },
  34866. goiaHindpaw: {
  34867. height: math.unit(5.55, "feet"),
  34868. name: "Goia Hindpaw",
  34869. image: {
  34870. source: "./media/characters/ryth/goia-hindpaw.svg"
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Normal",
  34877. height: math.unit(4, "feet"),
  34878. default: true
  34879. },
  34880. ]
  34881. ))
  34882. characterMakers.push(() => makeCharacter(
  34883. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34884. {
  34885. front: {
  34886. height: math.unit(7, "feet"),
  34887. weight: math.unit(180, "lb"),
  34888. name: "Front",
  34889. image: {
  34890. source: "./media/characters/necrolance/front.svg",
  34891. extra: 1062/947,
  34892. bottom: 41/1103
  34893. }
  34894. },
  34895. back: {
  34896. height: math.unit(7, "feet"),
  34897. weight: math.unit(180, "lb"),
  34898. name: "Back",
  34899. image: {
  34900. source: "./media/characters/necrolance/back.svg",
  34901. extra: 1045/984,
  34902. bottom: 14/1059
  34903. }
  34904. },
  34905. wing: {
  34906. height: math.unit(2.67, "feet"),
  34907. name: "Wing",
  34908. image: {
  34909. source: "./media/characters/necrolance/wing.svg"
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "Normal",
  34916. height: math.unit(7, "feet"),
  34917. default: true
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34923. {
  34924. front: {
  34925. height: math.unit(76, "meters"),
  34926. weight: math.unit(30000, "tons"),
  34927. name: "Front",
  34928. image: {
  34929. source: "./media/characters/tyler/front.svg",
  34930. extra: 1640/1640,
  34931. bottom: 114/1754
  34932. }
  34933. },
  34934. },
  34935. [
  34936. {
  34937. name: "Macro",
  34938. height: math.unit(76, "meters"),
  34939. default: true
  34940. },
  34941. ]
  34942. ))
  34943. characterMakers.push(() => makeCharacter(
  34944. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34945. {
  34946. front: {
  34947. height: math.unit(4 + 11/12, "feet"),
  34948. weight: math.unit(132, "lb"),
  34949. name: "Front",
  34950. image: {
  34951. source: "./media/characters/icey/front.svg",
  34952. extra: 2750/2550,
  34953. bottom: 33/2783
  34954. }
  34955. },
  34956. back: {
  34957. height: math.unit(4 + 11/12, "feet"),
  34958. weight: math.unit(132, "lb"),
  34959. name: "Back",
  34960. image: {
  34961. source: "./media/characters/icey/back.svg",
  34962. extra: 2624/2481,
  34963. bottom: 35/2659
  34964. }
  34965. },
  34966. },
  34967. [
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(4 + 11/12, "feet"),
  34971. default: true
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34977. {
  34978. front: {
  34979. height: math.unit(100, "feet"),
  34980. weight: math.unit(0, "lb"),
  34981. name: "Front",
  34982. image: {
  34983. source: "./media/characters/smile/front.svg",
  34984. extra: 2983/2912,
  34985. bottom: 162/3145
  34986. }
  34987. },
  34988. back: {
  34989. height: math.unit(100, "feet"),
  34990. weight: math.unit(0, "lb"),
  34991. name: "Back",
  34992. image: {
  34993. source: "./media/characters/smile/back.svg",
  34994. extra: 3143/3031,
  34995. bottom: 91/3234
  34996. }
  34997. },
  34998. head: {
  34999. height: math.unit(26.3, "feet"),
  35000. weight: math.unit(0, "lb"),
  35001. name: "Head",
  35002. image: {
  35003. source: "./media/characters/smile/head.svg"
  35004. }
  35005. },
  35006. collar: {
  35007. height: math.unit(5.3, "feet"),
  35008. weight: math.unit(0, "lb"),
  35009. name: "Collar",
  35010. image: {
  35011. source: "./media/characters/smile/collar.svg"
  35012. }
  35013. },
  35014. },
  35015. [
  35016. {
  35017. name: "Macro",
  35018. height: math.unit(100, "feet"),
  35019. default: true
  35020. },
  35021. ]
  35022. ))
  35023. characterMakers.push(() => makeCharacter(
  35024. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35025. {
  35026. dragon: {
  35027. height: math.unit(26, "feet"),
  35028. weight: math.unit(36, "tons"),
  35029. name: "Dragon",
  35030. image: {
  35031. source: "./media/characters/arimphae/dragon.svg",
  35032. extra: 1574/983,
  35033. bottom: 357/1931
  35034. }
  35035. },
  35036. drake: {
  35037. height: math.unit(9, "feet"),
  35038. weight: math.unit(1.5, "tons"),
  35039. name: "Drake",
  35040. image: {
  35041. source: "./media/characters/arimphae/drake.svg",
  35042. extra: 1120/925,
  35043. bottom: 435/1555
  35044. }
  35045. },
  35046. },
  35047. [
  35048. {
  35049. name: "Small",
  35050. height: math.unit(26*5/9, "feet")
  35051. },
  35052. {
  35053. name: "Normal",
  35054. height: math.unit(26, "feet"),
  35055. default: true
  35056. },
  35057. ]
  35058. ))
  35059. characterMakers.push(() => makeCharacter(
  35060. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35061. {
  35062. front: {
  35063. height: math.unit(8 + 9/12, "feet"),
  35064. name: "Front",
  35065. image: {
  35066. source: "./media/characters/xander/front.svg",
  35067. extra: 1237/974,
  35068. bottom: 94/1331
  35069. }
  35070. },
  35071. },
  35072. [
  35073. {
  35074. name: "Normal",
  35075. height: math.unit(8 + 9/12, "feet"),
  35076. default: true
  35077. },
  35078. {
  35079. name: "Gaze Grabber",
  35080. height: math.unit(13 + 8/12, "feet")
  35081. },
  35082. {
  35083. name: "Jaw Dropper",
  35084. height: math.unit(27, "feet")
  35085. },
  35086. {
  35087. name: "Show Stopper",
  35088. height: math.unit(136, "feet")
  35089. },
  35090. {
  35091. name: "Superstar",
  35092. height: math.unit(1.9e6, "miles")
  35093. },
  35094. ]
  35095. ))
  35096. characterMakers.push(() => makeCharacter(
  35097. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35098. {
  35099. side: {
  35100. height: math.unit(2100, "feet"),
  35101. name: "Side",
  35102. image: {
  35103. source: "./media/characters/osiris/side.svg",
  35104. extra: 1105/939,
  35105. bottom: 167/1272
  35106. }
  35107. },
  35108. },
  35109. [
  35110. {
  35111. name: "Macro",
  35112. height: math.unit(2100, "feet"),
  35113. default: true
  35114. },
  35115. ]
  35116. ))
  35117. characterMakers.push(() => makeCharacter(
  35118. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35119. {
  35120. front: {
  35121. height: math.unit(6 + 8/12, "feet"),
  35122. weight: math.unit(225, "lb"),
  35123. name: "Front",
  35124. image: {
  35125. source: "./media/characters/rhys-londe/front.svg",
  35126. extra: 2258/2141,
  35127. bottom: 188/2446
  35128. }
  35129. },
  35130. back: {
  35131. height: math.unit(6 + 8/12, "feet"),
  35132. weight: math.unit(225, "lb"),
  35133. name: "Back",
  35134. image: {
  35135. source: "./media/characters/rhys-londe/back.svg",
  35136. extra: 2237/2137,
  35137. bottom: 63/2300
  35138. }
  35139. },
  35140. frontNsfw: {
  35141. height: math.unit(6 + 8/12, "feet"),
  35142. weight: math.unit(225, "lb"),
  35143. name: "Front (NSFW)",
  35144. image: {
  35145. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35146. extra: 2258/2141,
  35147. bottom: 188/2446
  35148. }
  35149. },
  35150. backNsfw: {
  35151. height: math.unit(6 + 8/12, "feet"),
  35152. weight: math.unit(225, "lb"),
  35153. name: "Back (NSFW)",
  35154. image: {
  35155. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35156. extra: 2237/2137,
  35157. bottom: 63/2300
  35158. }
  35159. },
  35160. dick: {
  35161. height: math.unit(30, "inches"),
  35162. name: "Dick",
  35163. image: {
  35164. source: "./media/characters/rhys-londe/dick.svg"
  35165. }
  35166. },
  35167. maw: {
  35168. height: math.unit(1.6, "feet"),
  35169. name: "Maw",
  35170. image: {
  35171. source: "./media/characters/rhys-londe/maw.svg"
  35172. }
  35173. },
  35174. },
  35175. [
  35176. {
  35177. name: "Normal",
  35178. height: math.unit(6 + 8/12, "feet"),
  35179. default: true
  35180. },
  35181. ]
  35182. ))
  35183. characterMakers.push(() => makeCharacter(
  35184. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35185. {
  35186. front: {
  35187. height: math.unit(3 + 10/12, "feet"),
  35188. weight: math.unit(90, "lb"),
  35189. name: "Front",
  35190. image: {
  35191. source: "./media/characters/taivas-ensim/front.svg",
  35192. extra: 1327/1216,
  35193. bottom: 96/1423
  35194. }
  35195. },
  35196. back: {
  35197. height: math.unit(3 + 10/12, "feet"),
  35198. weight: math.unit(90, "lb"),
  35199. name: "Back",
  35200. image: {
  35201. source: "./media/characters/taivas-ensim/back.svg",
  35202. extra: 1355/1247,
  35203. bottom: 11/1366
  35204. }
  35205. },
  35206. frontNsfw: {
  35207. height: math.unit(3 + 10/12, "feet"),
  35208. weight: math.unit(90, "lb"),
  35209. name: "Front (NSFW)",
  35210. image: {
  35211. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35212. extra: 1327/1216,
  35213. bottom: 96/1423
  35214. }
  35215. },
  35216. backNsfw: {
  35217. height: math.unit(3 + 10/12, "feet"),
  35218. weight: math.unit(90, "lb"),
  35219. name: "Back (NSFW)",
  35220. image: {
  35221. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35222. extra: 1355/1247,
  35223. bottom: 11/1366
  35224. }
  35225. },
  35226. },
  35227. [
  35228. {
  35229. name: "Normal",
  35230. height: math.unit(3 + 10/12, "feet"),
  35231. default: true
  35232. },
  35233. ]
  35234. ))
  35235. characterMakers.push(() => makeCharacter(
  35236. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35237. {
  35238. front: {
  35239. height: math.unit(9 + 6/12, "feet"),
  35240. weight: math.unit(940, "lb"),
  35241. name: "Front",
  35242. image: {
  35243. source: "./media/characters/byliss/front.svg",
  35244. extra: 1327/1290,
  35245. bottom: 82/1409
  35246. }
  35247. },
  35248. back: {
  35249. height: math.unit(9 + 6/12, "feet"),
  35250. weight: math.unit(940, "lb"),
  35251. name: "Back",
  35252. image: {
  35253. source: "./media/characters/byliss/back.svg",
  35254. extra: 1376/1349,
  35255. bottom: 9/1385
  35256. }
  35257. },
  35258. frontNsfw: {
  35259. height: math.unit(9 + 6/12, "feet"),
  35260. weight: math.unit(940, "lb"),
  35261. name: "Front (NSFW)",
  35262. image: {
  35263. source: "./media/characters/byliss/front-nsfw.svg",
  35264. extra: 1327/1290,
  35265. bottom: 82/1409
  35266. }
  35267. },
  35268. backNsfw: {
  35269. height: math.unit(9 + 6/12, "feet"),
  35270. weight: math.unit(940, "lb"),
  35271. name: "Back (NSFW)",
  35272. image: {
  35273. source: "./media/characters/byliss/back-nsfw.svg",
  35274. extra: 1376/1349,
  35275. bottom: 9/1385
  35276. }
  35277. },
  35278. },
  35279. [
  35280. {
  35281. name: "Normal",
  35282. height: math.unit(9 + 6/12, "feet"),
  35283. default: true
  35284. },
  35285. ]
  35286. ))
  35287. characterMakers.push(() => makeCharacter(
  35288. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35289. {
  35290. front: {
  35291. height: math.unit(5 + 2/12, "feet"),
  35292. weight: math.unit(200, "lb"),
  35293. name: "Front",
  35294. image: {
  35295. source: "./media/characters/noraly/front.svg",
  35296. extra: 4985/4773,
  35297. bottom: 150/5135
  35298. }
  35299. },
  35300. full: {
  35301. height: math.unit(5 + 2/12, "feet"),
  35302. weight: math.unit(164, "lb"),
  35303. name: "Full",
  35304. image: {
  35305. source: "./media/characters/noraly/full.svg",
  35306. extra: 1114/1059,
  35307. bottom: 35/1149
  35308. }
  35309. },
  35310. fuller: {
  35311. height: math.unit(5 + 2/12, "feet"),
  35312. weight: math.unit(230, "lb"),
  35313. name: "Fuller",
  35314. image: {
  35315. source: "./media/characters/noraly/fuller.svg",
  35316. extra: 1114/1059,
  35317. bottom: 35/1149
  35318. }
  35319. },
  35320. fullest: {
  35321. height: math.unit(5 + 2/12, "feet"),
  35322. weight: math.unit(300, "lb"),
  35323. name: "Fullest",
  35324. image: {
  35325. source: "./media/characters/noraly/fullest.svg",
  35326. extra: 1114/1059,
  35327. bottom: 35/1149
  35328. }
  35329. },
  35330. },
  35331. [
  35332. {
  35333. name: "Normal",
  35334. height: math.unit(5 + 2/12, "feet"),
  35335. default: true
  35336. },
  35337. ]
  35338. ))
  35339. characterMakers.push(() => makeCharacter(
  35340. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35341. {
  35342. front: {
  35343. height: math.unit(5 + 2/12, "feet"),
  35344. weight: math.unit(210, "lb"),
  35345. name: "Front",
  35346. image: {
  35347. source: "./media/characters/pera/front.svg",
  35348. extra: 1560/1531,
  35349. bottom: 165/1725
  35350. }
  35351. },
  35352. back: {
  35353. height: math.unit(5 + 2/12, "feet"),
  35354. weight: math.unit(210, "lb"),
  35355. name: "Back",
  35356. image: {
  35357. source: "./media/characters/pera/back.svg",
  35358. extra: 1523/1493,
  35359. bottom: 152/1675
  35360. }
  35361. },
  35362. dick: {
  35363. height: math.unit(2.4, "feet"),
  35364. name: "Dick",
  35365. image: {
  35366. source: "./media/characters/pera/dick.svg"
  35367. }
  35368. },
  35369. },
  35370. [
  35371. {
  35372. name: "Normal",
  35373. height: math.unit(5 + 2/12, "feet"),
  35374. default: true
  35375. },
  35376. ]
  35377. ))
  35378. characterMakers.push(() => makeCharacter(
  35379. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35380. {
  35381. front: {
  35382. height: math.unit(12, "feet"),
  35383. weight: math.unit(3200, "lb"),
  35384. name: "Front",
  35385. image: {
  35386. source: "./media/characters/julian/front.svg",
  35387. extra: 2962/2701,
  35388. bottom: 184/3146
  35389. }
  35390. },
  35391. maw: {
  35392. height: math.unit(5.35, "feet"),
  35393. name: "Maw",
  35394. image: {
  35395. source: "./media/characters/julian/maw.svg"
  35396. }
  35397. },
  35398. paw: {
  35399. height: math.unit(3.07, "feet"),
  35400. name: "Paw",
  35401. image: {
  35402. source: "./media/characters/julian/paw.svg"
  35403. }
  35404. },
  35405. },
  35406. [
  35407. {
  35408. name: "Default",
  35409. height: math.unit(12, "feet"),
  35410. default: true
  35411. },
  35412. {
  35413. name: "Big",
  35414. height: math.unit(50, "feet")
  35415. },
  35416. {
  35417. name: "Really Big",
  35418. height: math.unit(1, "mile")
  35419. },
  35420. {
  35421. name: "Extremely Big",
  35422. height: math.unit(100, "miles")
  35423. },
  35424. {
  35425. name: "Planet Hugger",
  35426. height: math.unit(200, "megameters")
  35427. },
  35428. {
  35429. name: "Unreasonably Big",
  35430. height: math.unit(1e300, "meters")
  35431. },
  35432. ]
  35433. ))
  35434. characterMakers.push(() => makeCharacter(
  35435. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35436. {
  35437. solgooleo: {
  35438. height: math.unit(4, "meters"),
  35439. weight: math.unit(6000*1.5, "kg"),
  35440. volume: math.unit(6000, "liters"),
  35441. name: "Solgooleo",
  35442. image: {
  35443. source: "./media/characters/pi/solgooleo.svg",
  35444. extra: 388/331,
  35445. bottom: 29/417
  35446. }
  35447. },
  35448. },
  35449. [
  35450. {
  35451. name: "Normal",
  35452. height: math.unit(4, "meters"),
  35453. default: true
  35454. },
  35455. ]
  35456. ))
  35457. characterMakers.push(() => makeCharacter(
  35458. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35459. {
  35460. front: {
  35461. height: math.unit(8, "feet"),
  35462. weight: math.unit(4, "tons"),
  35463. name: "Front",
  35464. image: {
  35465. source: "./media/characters/shaun/front.svg",
  35466. extra: 503/495,
  35467. bottom: 20/523
  35468. }
  35469. },
  35470. back: {
  35471. height: math.unit(8, "feet"),
  35472. weight: math.unit(4, "tons"),
  35473. name: "Back",
  35474. image: {
  35475. source: "./media/characters/shaun/back.svg",
  35476. extra: 487/480,
  35477. bottom: 20/507
  35478. }
  35479. },
  35480. },
  35481. [
  35482. {
  35483. name: "Lorg",
  35484. height: math.unit(8, "feet"),
  35485. default: true
  35486. },
  35487. ]
  35488. ))
  35489. characterMakers.push(() => makeCharacter(
  35490. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35491. {
  35492. frontAnthro: {
  35493. height: math.unit(7, "feet"),
  35494. name: "Front",
  35495. image: {
  35496. source: "./media/characters/sini/front-anthro.svg",
  35497. extra: 726/678,
  35498. bottom: 35/761
  35499. },
  35500. form: "anthro",
  35501. default: true
  35502. },
  35503. backAnthro: {
  35504. height: math.unit(7, "feet"),
  35505. name: "Back",
  35506. image: {
  35507. source: "./media/characters/sini/back-anthro.svg",
  35508. extra: 743/701,
  35509. bottom: 12/755
  35510. },
  35511. form: "anthro",
  35512. },
  35513. frontAnthroNsfw: {
  35514. height: math.unit(7, "feet"),
  35515. name: "Front (NSFW)",
  35516. image: {
  35517. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35518. extra: 726/678,
  35519. bottom: 35/761
  35520. },
  35521. form: "anthro"
  35522. },
  35523. backAnthroNsfw: {
  35524. height: math.unit(7, "feet"),
  35525. name: "Back (NSFW)",
  35526. image: {
  35527. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35528. extra: 743/701,
  35529. bottom: 12/755
  35530. },
  35531. form: "anthro",
  35532. },
  35533. mawAnthro: {
  35534. height: math.unit(2.14, "feet"),
  35535. name: "Maw",
  35536. image: {
  35537. source: "./media/characters/sini/maw-anthro.svg"
  35538. },
  35539. form: "anthro"
  35540. },
  35541. dick: {
  35542. height: math.unit(1.45, "feet"),
  35543. name: "Dick",
  35544. image: {
  35545. source: "./media/characters/sini/dick-anthro.svg"
  35546. },
  35547. form: "anthro"
  35548. },
  35549. feral: {
  35550. height: math.unit(16, "feet"),
  35551. name: "Feral",
  35552. image: {
  35553. source: "./media/characters/sini/feral.svg",
  35554. extra: 814/605,
  35555. bottom: 11/825
  35556. },
  35557. form: "feral",
  35558. default: true
  35559. },
  35560. feralNsfw: {
  35561. height: math.unit(16, "feet"),
  35562. name: "Feral (NSFW)",
  35563. image: {
  35564. source: "./media/characters/sini/feral-nsfw.svg",
  35565. extra: 814/605,
  35566. bottom: 11/825
  35567. },
  35568. form: "feral"
  35569. },
  35570. mawFeral: {
  35571. height: math.unit(5.66, "feet"),
  35572. name: "Maw",
  35573. image: {
  35574. source: "./media/characters/sini/maw-feral.svg"
  35575. },
  35576. form: "feral",
  35577. },
  35578. pawFeral: {
  35579. height: math.unit(5.17, "feet"),
  35580. name: "Paw",
  35581. image: {
  35582. source: "./media/characters/sini/paw-feral.svg"
  35583. },
  35584. form: "feral",
  35585. },
  35586. rumpFeral: {
  35587. height: math.unit(13.11, "feet"),
  35588. name: "Rump",
  35589. image: {
  35590. source: "./media/characters/sini/rump-feral.svg"
  35591. },
  35592. form: "feral",
  35593. },
  35594. dickFeral: {
  35595. height: math.unit(1, "feet"),
  35596. name: "Dick",
  35597. image: {
  35598. source: "./media/characters/sini/dick-feral.svg"
  35599. },
  35600. form: "feral",
  35601. },
  35602. eyeFeral: {
  35603. height: math.unit(1.23, "feet"),
  35604. name: "Eye",
  35605. image: {
  35606. source: "./media/characters/sini/eye-feral.svg"
  35607. },
  35608. form: "feral",
  35609. },
  35610. },
  35611. [
  35612. {
  35613. name: "Normal",
  35614. height: math.unit(7, "feet"),
  35615. default: true,
  35616. form: "anthro"
  35617. },
  35618. {
  35619. name: "Normal",
  35620. height: math.unit(16, "feet"),
  35621. default: true,
  35622. form: "feral"
  35623. },
  35624. ],
  35625. {
  35626. "anthro": {
  35627. name: "Anthro",
  35628. default: true
  35629. },
  35630. "feral": {
  35631. name: "Feral",
  35632. }
  35633. }
  35634. ))
  35635. characterMakers.push(() => makeCharacter(
  35636. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35637. {
  35638. side: {
  35639. height: math.unit(47.2, "meters"),
  35640. weight: math.unit(10000, "tons"),
  35641. name: "Side",
  35642. image: {
  35643. source: "./media/characters/raylldo/side.svg",
  35644. extra: 2363/642,
  35645. bottom: 221/2584
  35646. }
  35647. },
  35648. top: {
  35649. height: math.unit(240, "meters"),
  35650. weight: math.unit(10000, "tons"),
  35651. name: "Top",
  35652. image: {
  35653. source: "./media/characters/raylldo/top.svg"
  35654. }
  35655. },
  35656. bottom: {
  35657. height: math.unit(240, "meters"),
  35658. weight: math.unit(10000, "tons"),
  35659. name: "Bottom",
  35660. image: {
  35661. source: "./media/characters/raylldo/bottom.svg"
  35662. }
  35663. },
  35664. head: {
  35665. height: math.unit(38.6, "meters"),
  35666. name: "Head",
  35667. image: {
  35668. source: "./media/characters/raylldo/head.svg",
  35669. extra: 1335/1112,
  35670. bottom: 0/1335
  35671. }
  35672. },
  35673. maw: {
  35674. height: math.unit(16.37, "meters"),
  35675. name: "Maw",
  35676. image: {
  35677. source: "./media/characters/raylldo/maw.svg",
  35678. extra: 883/660,
  35679. bottom: 0/883
  35680. },
  35681. extraAttributes: {
  35682. preyCapacity: {
  35683. name: "Capacity",
  35684. power: 3,
  35685. type: "volume",
  35686. base: math.unit(1000, "people")
  35687. },
  35688. tongueSize: {
  35689. name: "Tongue Size",
  35690. power: 2,
  35691. type: "area",
  35692. base: math.unit(21, "m^2")
  35693. }
  35694. }
  35695. },
  35696. forepaw: {
  35697. height: math.unit(18, "meters"),
  35698. name: "Forepaw",
  35699. image: {
  35700. source: "./media/characters/raylldo/forepaw.svg"
  35701. }
  35702. },
  35703. hindpaw: {
  35704. height: math.unit(23, "meters"),
  35705. name: "Hindpaw",
  35706. image: {
  35707. source: "./media/characters/raylldo/hindpaw.svg"
  35708. }
  35709. },
  35710. genitals: {
  35711. height: math.unit(42, "meters"),
  35712. name: "Genitals",
  35713. image: {
  35714. source: "./media/characters/raylldo/genitals.svg"
  35715. }
  35716. },
  35717. },
  35718. [
  35719. {
  35720. name: "Normal",
  35721. height: math.unit(47.2, "meters"),
  35722. default: true
  35723. },
  35724. ]
  35725. ))
  35726. characterMakers.push(() => makeCharacter(
  35727. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35728. {
  35729. anthroFront: {
  35730. height: math.unit(9, "feet"),
  35731. weight: math.unit(600, "lb"),
  35732. name: "Anthro (Front)",
  35733. image: {
  35734. source: "./media/characters/glint/anthro-front.svg",
  35735. extra: 1097/1018,
  35736. bottom: 28/1125
  35737. }
  35738. },
  35739. anthroBack: {
  35740. height: math.unit(9, "feet"),
  35741. weight: math.unit(600, "lb"),
  35742. name: "Anthro (Back)",
  35743. image: {
  35744. source: "./media/characters/glint/anthro-back.svg",
  35745. extra: 1154/997,
  35746. bottom: 36/1190
  35747. }
  35748. },
  35749. feral: {
  35750. height: math.unit(11, "feet"),
  35751. weight: math.unit(50000, "lb"),
  35752. name: "Feral",
  35753. image: {
  35754. source: "./media/characters/glint/feral.svg",
  35755. extra: 3035/1585,
  35756. bottom: 1169/4204
  35757. }
  35758. },
  35759. dickAnthro: {
  35760. height: math.unit(0.7, "meters"),
  35761. name: "Dick (Anthro)",
  35762. image: {
  35763. source: "./media/characters/glint/dick-anthro.svg"
  35764. }
  35765. },
  35766. dickFeral: {
  35767. height: math.unit(2.65, "meters"),
  35768. name: "Dick (Feral)",
  35769. image: {
  35770. source: "./media/characters/glint/dick-feral.svg"
  35771. }
  35772. },
  35773. slitHidden: {
  35774. height: math.unit(5.85, "meters"),
  35775. name: "Slit (Hidden)",
  35776. image: {
  35777. source: "./media/characters/glint/slit-hidden.svg"
  35778. }
  35779. },
  35780. slitErect: {
  35781. height: math.unit(5.85, "meters"),
  35782. name: "Slit (Erect)",
  35783. image: {
  35784. source: "./media/characters/glint/slit-erect.svg"
  35785. }
  35786. },
  35787. mawAnthro: {
  35788. height: math.unit(0.63, "meters"),
  35789. name: "Maw (Anthro)",
  35790. image: {
  35791. source: "./media/characters/glint/maw.svg"
  35792. }
  35793. },
  35794. mawFeral: {
  35795. height: math.unit(2.89, "meters"),
  35796. name: "Maw (Feral)",
  35797. image: {
  35798. source: "./media/characters/glint/maw.svg"
  35799. }
  35800. },
  35801. },
  35802. [
  35803. {
  35804. name: "Normal",
  35805. height: math.unit(9, "feet"),
  35806. default: true
  35807. },
  35808. ]
  35809. ))
  35810. characterMakers.push(() => makeCharacter(
  35811. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35812. {
  35813. side: {
  35814. height: math.unit(15, "feet"),
  35815. weight: math.unit(5000, "kg"),
  35816. name: "Side",
  35817. image: {
  35818. source: "./media/characters/kairne/side.svg",
  35819. extra: 979/811,
  35820. bottom: 13/992
  35821. }
  35822. },
  35823. front: {
  35824. height: math.unit(15, "feet"),
  35825. weight: math.unit(5000, "kg"),
  35826. name: "Front",
  35827. image: {
  35828. source: "./media/characters/kairne/front.svg",
  35829. extra: 908/814,
  35830. bottom: 26/934
  35831. }
  35832. },
  35833. sideNsfw: {
  35834. height: math.unit(15, "feet"),
  35835. weight: math.unit(5000, "kg"),
  35836. name: "Side (NSFW)",
  35837. image: {
  35838. source: "./media/characters/kairne/side-nsfw.svg",
  35839. extra: 979/811,
  35840. bottom: 13/992
  35841. }
  35842. },
  35843. frontNsfw: {
  35844. height: math.unit(15, "feet"),
  35845. weight: math.unit(5000, "kg"),
  35846. name: "Front (NSFW)",
  35847. image: {
  35848. source: "./media/characters/kairne/front-nsfw.svg",
  35849. extra: 908/814,
  35850. bottom: 26/934
  35851. }
  35852. },
  35853. dickCaged: {
  35854. height: math.unit(0.65, "meters"),
  35855. name: "Dick-caged",
  35856. image: {
  35857. source: "./media/characters/kairne/dick-caged.svg"
  35858. }
  35859. },
  35860. dick: {
  35861. height: math.unit(0.79, "meters"),
  35862. name: "Dick",
  35863. image: {
  35864. source: "./media/characters/kairne/dick.svg"
  35865. }
  35866. },
  35867. genitals: {
  35868. height: math.unit(1.29, "meters"),
  35869. name: "Genitals",
  35870. image: {
  35871. source: "./media/characters/kairne/genitals.svg"
  35872. }
  35873. },
  35874. maw: {
  35875. height: math.unit(1.73, "meters"),
  35876. name: "Maw",
  35877. image: {
  35878. source: "./media/characters/kairne/maw.svg"
  35879. }
  35880. },
  35881. },
  35882. [
  35883. {
  35884. name: "Normal",
  35885. height: math.unit(15, "feet"),
  35886. default: true
  35887. },
  35888. ]
  35889. ))
  35890. characterMakers.push(() => makeCharacter(
  35891. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35892. {
  35893. front: {
  35894. height: math.unit(5 + 8/12, "feet"),
  35895. weight: math.unit(139, "lb"),
  35896. name: "Front",
  35897. image: {
  35898. source: "./media/characters/biscuit-jackal/front.svg",
  35899. extra: 2106/1961,
  35900. bottom: 58/2164
  35901. }
  35902. },
  35903. back: {
  35904. height: math.unit(5 + 8/12, "feet"),
  35905. weight: math.unit(139, "lb"),
  35906. name: "Back",
  35907. image: {
  35908. source: "./media/characters/biscuit-jackal/back.svg",
  35909. extra: 2132/1976,
  35910. bottom: 57/2189
  35911. }
  35912. },
  35913. werejackal: {
  35914. height: math.unit(6 + 3/12, "feet"),
  35915. weight: math.unit(188, "lb"),
  35916. name: "Werejackal",
  35917. image: {
  35918. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35919. extra: 2373/2178,
  35920. bottom: 53/2426
  35921. }
  35922. },
  35923. },
  35924. [
  35925. {
  35926. name: "Normal",
  35927. height: math.unit(5 + 8/12, "feet"),
  35928. default: true
  35929. },
  35930. ]
  35931. ))
  35932. characterMakers.push(() => makeCharacter(
  35933. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35934. {
  35935. front: {
  35936. height: math.unit(140, "cm"),
  35937. weight: math.unit(45, "kg"),
  35938. name: "Front",
  35939. image: {
  35940. source: "./media/characters/tayra-white/front.svg",
  35941. extra: 2229/2192,
  35942. bottom: 75/2304
  35943. }
  35944. },
  35945. },
  35946. [
  35947. {
  35948. name: "Normal",
  35949. height: math.unit(140, "cm"),
  35950. default: true
  35951. },
  35952. ]
  35953. ))
  35954. characterMakers.push(() => makeCharacter(
  35955. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35956. {
  35957. front: {
  35958. height: math.unit(4 + 5/12, "feet"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/scoop/front.svg",
  35962. extra: 1257/1136,
  35963. bottom: 69/1326
  35964. }
  35965. },
  35966. back: {
  35967. height: math.unit(4 + 5/12, "feet"),
  35968. name: "Back",
  35969. image: {
  35970. source: "./media/characters/scoop/back.svg",
  35971. extra: 1321/1152,
  35972. bottom: 32/1353
  35973. }
  35974. },
  35975. maw: {
  35976. height: math.unit(0.68, "feet"),
  35977. name: "Maw",
  35978. image: {
  35979. source: "./media/characters/scoop/maw.svg"
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Really Small",
  35986. height: math.unit(1, "mm")
  35987. },
  35988. {
  35989. name: "Micro",
  35990. height: math.unit(1, "inch")
  35991. },
  35992. {
  35993. name: "Normal",
  35994. height: math.unit(4 + 5/12, "feet"),
  35995. default: true
  35996. },
  35997. {
  35998. name: "Macro",
  35999. height: math.unit(200, "feet")
  36000. },
  36001. {
  36002. name: "Megamacro",
  36003. height: math.unit(3240, "feet")
  36004. },
  36005. {
  36006. name: "Teramacro",
  36007. height: math.unit(2500, "miles")
  36008. },
  36009. ]
  36010. ))
  36011. characterMakers.push(() => makeCharacter(
  36012. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36013. {
  36014. front: {
  36015. height: math.unit(15 + 7/12, "feet"),
  36016. weight: math.unit(1150, "tons"),
  36017. name: "Front",
  36018. image: {
  36019. source: "./media/characters/saphinara/front.svg",
  36020. extra: 1837/1643,
  36021. bottom: 84/1921
  36022. },
  36023. form: "normal",
  36024. default: true
  36025. },
  36026. side: {
  36027. height: math.unit(15 + 7/12, "feet"),
  36028. weight: math.unit(1150, "tons"),
  36029. name: "Side",
  36030. image: {
  36031. source: "./media/characters/saphinara/side.svg",
  36032. extra: 605/547,
  36033. bottom: 6/611
  36034. },
  36035. form: "normal"
  36036. },
  36037. back: {
  36038. height: math.unit(15 + 7/12, "feet"),
  36039. weight: math.unit(1150, "tons"),
  36040. name: "Back",
  36041. image: {
  36042. source: "./media/characters/saphinara/back.svg",
  36043. extra: 591/531,
  36044. bottom: 13/604
  36045. },
  36046. form: "normal"
  36047. },
  36048. frontTail: {
  36049. height: math.unit(15 + 7/12, "feet"),
  36050. weight: math.unit(1150, "tons"),
  36051. name: "Front (Full Tail)",
  36052. image: {
  36053. source: "./media/characters/saphinara/front-tail.svg",
  36054. extra: 2256/1630,
  36055. bottom: 261/2517
  36056. },
  36057. form: "normal"
  36058. },
  36059. insides: {
  36060. height: math.unit(11.92, "feet"),
  36061. name: "Insides",
  36062. image: {
  36063. source: "./media/characters/saphinara/insides.svg"
  36064. },
  36065. form: "normal"
  36066. },
  36067. head: {
  36068. height: math.unit(4.17, "feet"),
  36069. name: "Head",
  36070. image: {
  36071. source: "./media/characters/saphinara/head.svg"
  36072. },
  36073. form: "normal"
  36074. },
  36075. tongue: {
  36076. height: math.unit(4.60, "feet"),
  36077. name: "Tongue",
  36078. image: {
  36079. source: "./media/characters/saphinara/tongue.svg"
  36080. },
  36081. form: "normal"
  36082. },
  36083. headEnraged: {
  36084. height: math.unit(5.55, "feet"),
  36085. name: "Head (Enraged)",
  36086. image: {
  36087. source: "./media/characters/saphinara/head-enraged.svg"
  36088. },
  36089. form: "normal"
  36090. },
  36091. wings: {
  36092. height: math.unit(11.95, "feet"),
  36093. name: "Wings",
  36094. image: {
  36095. source: "./media/characters/saphinara/wings.svg"
  36096. },
  36097. form: "normal"
  36098. },
  36099. feathers: {
  36100. height: math.unit(8.92, "feet"),
  36101. name: "Feathers",
  36102. image: {
  36103. source: "./media/characters/saphinara/feathers.svg"
  36104. },
  36105. form: "normal"
  36106. },
  36107. shackles: {
  36108. height: math.unit(2, "feet"),
  36109. name: "Shackles",
  36110. image: {
  36111. source: "./media/characters/saphinara/shackles.svg"
  36112. },
  36113. form: "normal"
  36114. },
  36115. eyes: {
  36116. height: math.unit(1.331, "feet"),
  36117. name: "Eyes",
  36118. image: {
  36119. source: "./media/characters/saphinara/eyes.svg"
  36120. },
  36121. form: "normal"
  36122. },
  36123. eyesEnraged: {
  36124. height: math.unit(1.331, "feet"),
  36125. name: "Eyes (Enraged)",
  36126. image: {
  36127. source: "./media/characters/saphinara/eyes-enraged.svg"
  36128. },
  36129. form: "normal"
  36130. },
  36131. trueFormSide: {
  36132. height: math.unit(200, "feet"),
  36133. weight: math.unit(1e7, "tons"),
  36134. name: "Side",
  36135. image: {
  36136. source: "./media/characters/saphinara/true-form-side.svg",
  36137. extra: 1399/770,
  36138. bottom: 97/1496
  36139. },
  36140. form: "true-form",
  36141. default: true
  36142. },
  36143. trueFormMaw: {
  36144. height: math.unit(71.5, "feet"),
  36145. name: "Maw",
  36146. image: {
  36147. source: "./media/characters/saphinara/true-form-maw.svg",
  36148. extra: 2302/1453,
  36149. bottom: 0/2302
  36150. },
  36151. form: "true-form"
  36152. },
  36153. meowberusSide: {
  36154. height: math.unit(75, "feet"),
  36155. weight: math.unit(180000, "kg"),
  36156. preyCapacity: math.unit(50000, "people"),
  36157. name: "Side",
  36158. image: {
  36159. source: "./media/characters/saphinara/meowberus-side.svg",
  36160. extra: 1400/711,
  36161. bottom: 126/1526
  36162. },
  36163. form: "meowberus",
  36164. extraAttributes: {
  36165. "pawArea": {
  36166. name: "Paw Size",
  36167. power: 2,
  36168. type: "area",
  36169. base: math.unit(35, "m^2")
  36170. }
  36171. }
  36172. },
  36173. },
  36174. [
  36175. {
  36176. name: "Normal",
  36177. height: math.unit(15 + 7/12, "feet"),
  36178. default: true,
  36179. form: "normal"
  36180. },
  36181. {
  36182. name: "Angry",
  36183. height: math.unit(30 + 6/12, "feet"),
  36184. form: "normal"
  36185. },
  36186. {
  36187. name: "Enraged",
  36188. height: math.unit(102 + 1/12, "feet"),
  36189. form: "normal"
  36190. },
  36191. {
  36192. name: "True",
  36193. height: math.unit(200, "feet"),
  36194. default: true,
  36195. form: "true-form"
  36196. },
  36197. {
  36198. name: "Normal",
  36199. height: math.unit(75, "feet"),
  36200. default: true,
  36201. form: "meowberus"
  36202. },
  36203. ],
  36204. {
  36205. "normal": {
  36206. name: "Normal",
  36207. default: true
  36208. },
  36209. "true-form": {
  36210. name: "True Form"
  36211. },
  36212. "meowberus": {
  36213. name: "Meowberus",
  36214. },
  36215. }
  36216. ))
  36217. characterMakers.push(() => makeCharacter(
  36218. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36219. {
  36220. front: {
  36221. height: math.unit(6 + 8/12, "feet"),
  36222. weight: math.unit(300, "lb"),
  36223. name: "Front",
  36224. image: {
  36225. source: "./media/characters/jrain/front.svg",
  36226. extra: 3039/2865,
  36227. bottom: 399/3438
  36228. }
  36229. },
  36230. back: {
  36231. height: math.unit(6 + 8/12, "feet"),
  36232. weight: math.unit(300, "lb"),
  36233. name: "Back",
  36234. image: {
  36235. source: "./media/characters/jrain/back.svg",
  36236. extra: 3089/2938,
  36237. bottom: 172/3261
  36238. }
  36239. },
  36240. head: {
  36241. height: math.unit(2.14, "feet"),
  36242. name: "Head",
  36243. image: {
  36244. source: "./media/characters/jrain/head.svg"
  36245. }
  36246. },
  36247. maw: {
  36248. height: math.unit(1.77, "feet"),
  36249. name: "Maw",
  36250. image: {
  36251. source: "./media/characters/jrain/maw.svg"
  36252. }
  36253. },
  36254. leftHand: {
  36255. height: math.unit(1.1, "feet"),
  36256. name: "Left Hand",
  36257. image: {
  36258. source: "./media/characters/jrain/left-hand.svg"
  36259. }
  36260. },
  36261. rightHand: {
  36262. height: math.unit(1.1, "feet"),
  36263. name: "Right Hand",
  36264. image: {
  36265. source: "./media/characters/jrain/right-hand.svg"
  36266. }
  36267. },
  36268. eye: {
  36269. height: math.unit(0.35, "feet"),
  36270. name: "Eye",
  36271. image: {
  36272. source: "./media/characters/jrain/eye.svg"
  36273. }
  36274. },
  36275. },
  36276. [
  36277. {
  36278. name: "Normal",
  36279. height: math.unit(6 + 8/12, "feet"),
  36280. default: true
  36281. },
  36282. {
  36283. name: "Casually Large",
  36284. height: math.unit(25, "feet")
  36285. },
  36286. {
  36287. name: "Giant",
  36288. height: math.unit(100, "feet")
  36289. },
  36290. {
  36291. name: "Kaiju",
  36292. height: math.unit(300, "feet")
  36293. },
  36294. ]
  36295. ))
  36296. characterMakers.push(() => makeCharacter(
  36297. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36298. {
  36299. dragon: {
  36300. height: math.unit(5, "meters"),
  36301. name: "Dragon",
  36302. image: {
  36303. source: "./media/characters/sabrina/dragon.svg",
  36304. extra: 3670 / 2365,
  36305. bottom: 333 / 4003
  36306. }
  36307. },
  36308. gryphon: {
  36309. height: math.unit(3, "meters"),
  36310. name: "Gryphon",
  36311. image: {
  36312. source: "./media/characters/sabrina/gryphon.svg",
  36313. extra: 1576 / 945,
  36314. bottom: 71 / 1647
  36315. }
  36316. },
  36317. snake: {
  36318. height: math.unit(12, "meters"),
  36319. name: "Snake",
  36320. image: {
  36321. source: "./media/characters/sabrina/snake.svg",
  36322. extra: 1758 / 1320,
  36323. bottom: 186 / 1944
  36324. }
  36325. },
  36326. collar: {
  36327. height: math.unit(1.86, "meters"),
  36328. name: "Collar",
  36329. image: {
  36330. source: "./media/characters/sabrina/collar.svg"
  36331. }
  36332. },
  36333. eye: {
  36334. height: math.unit(0.53, "meters"),
  36335. name: "Eye",
  36336. image: {
  36337. source: "./media/characters/sabrina/eye.svg"
  36338. }
  36339. },
  36340. foot: {
  36341. height: math.unit(1.86, "meters"),
  36342. name: "Foot",
  36343. image: {
  36344. source: "./media/characters/sabrina/foot.svg"
  36345. }
  36346. },
  36347. hand: {
  36348. height: math.unit(1.32, "meters"),
  36349. name: "Hand",
  36350. image: {
  36351. source: "./media/characters/sabrina/hand.svg"
  36352. }
  36353. },
  36354. head: {
  36355. height: math.unit(2.44, "meters"),
  36356. name: "Head",
  36357. image: {
  36358. source: "./media/characters/sabrina/head.svg"
  36359. }
  36360. },
  36361. headAngry: {
  36362. height: math.unit(2.44, "meters"),
  36363. name: "Head (Angry))",
  36364. image: {
  36365. source: "./media/characters/sabrina/head-angry.svg"
  36366. }
  36367. },
  36368. maw: {
  36369. height: math.unit(1.65, "meters"),
  36370. name: "Maw",
  36371. image: {
  36372. source: "./media/characters/sabrina/maw.svg"
  36373. }
  36374. },
  36375. spikes: {
  36376. height: math.unit(1.69, "meters"),
  36377. name: "Spikes",
  36378. image: {
  36379. source: "./media/characters/sabrina/spikes.svg"
  36380. }
  36381. },
  36382. stomach: {
  36383. height: math.unit(1.15, "meters"),
  36384. name: "Stomach",
  36385. image: {
  36386. source: "./media/characters/sabrina/stomach.svg"
  36387. }
  36388. },
  36389. tongue: {
  36390. height: math.unit(1.27, "meters"),
  36391. name: "Tongue",
  36392. image: {
  36393. source: "./media/characters/sabrina/tongue.svg"
  36394. }
  36395. },
  36396. wingDorsal: {
  36397. height: math.unit(4.85, "meters"),
  36398. name: "Wing (Dorsal)",
  36399. image: {
  36400. source: "./media/characters/sabrina/wing-dorsal.svg"
  36401. }
  36402. },
  36403. wingVentral: {
  36404. height: math.unit(4.85, "meters"),
  36405. name: "Wing (Ventral)",
  36406. image: {
  36407. source: "./media/characters/sabrina/wing-ventral.svg"
  36408. }
  36409. },
  36410. },
  36411. [
  36412. {
  36413. name: "Normal",
  36414. height: math.unit(5, "meters"),
  36415. default: true
  36416. },
  36417. ]
  36418. ))
  36419. characterMakers.push(() => makeCharacter(
  36420. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36421. {
  36422. frontMaid: {
  36423. height: math.unit(5 + 5/12, "feet"),
  36424. weight: math.unit(130, "lb"),
  36425. name: "Front (Maid)",
  36426. image: {
  36427. source: "./media/characters/midnight-tales/front-maid.svg",
  36428. extra: 489/454,
  36429. bottom: 61/550
  36430. }
  36431. },
  36432. frontFormal: {
  36433. height: math.unit(5 + 5/12, "feet"),
  36434. weight: math.unit(130, "lb"),
  36435. name: "Front (Formal)",
  36436. image: {
  36437. source: "./media/characters/midnight-tales/front-formal.svg",
  36438. extra: 489/454,
  36439. bottom: 61/550
  36440. }
  36441. },
  36442. back: {
  36443. height: math.unit(5 + 5/12, "feet"),
  36444. weight: math.unit(130, "lb"),
  36445. name: "Back",
  36446. image: {
  36447. source: "./media/characters/midnight-tales/back.svg",
  36448. extra: 498/456,
  36449. bottom: 33/531
  36450. }
  36451. },
  36452. frontBeast: {
  36453. height: math.unit(40, "feet"),
  36454. weight: math.unit(64000, "lb"),
  36455. name: "Front (Beast)",
  36456. image: {
  36457. source: "./media/characters/midnight-tales/front-beast.svg",
  36458. extra: 927/860,
  36459. bottom: 53/980
  36460. }
  36461. },
  36462. backBeast: {
  36463. height: math.unit(40, "feet"),
  36464. weight: math.unit(64000, "lb"),
  36465. name: "Back (Beast)",
  36466. image: {
  36467. source: "./media/characters/midnight-tales/back-beast.svg",
  36468. extra: 929/855,
  36469. bottom: 16/945
  36470. }
  36471. },
  36472. footBeast: {
  36473. height: math.unit(6.7, "feet"),
  36474. name: "Foot (Beast)",
  36475. image: {
  36476. source: "./media/characters/midnight-tales/foot-beast.svg"
  36477. }
  36478. },
  36479. headBeast: {
  36480. height: math.unit(8, "feet"),
  36481. name: "Head (Beast)",
  36482. image: {
  36483. source: "./media/characters/midnight-tales/head-beast.svg"
  36484. }
  36485. },
  36486. },
  36487. [
  36488. {
  36489. name: "Normal",
  36490. height: math.unit(5 + 5 / 12, "feet"),
  36491. default: true
  36492. },
  36493. {
  36494. name: "Macro",
  36495. height: math.unit(25, "feet")
  36496. },
  36497. ]
  36498. ))
  36499. characterMakers.push(() => makeCharacter(
  36500. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36501. {
  36502. front: {
  36503. height: math.unit(5 + 10/12, "feet"),
  36504. name: "Front",
  36505. image: {
  36506. source: "./media/characters/argon/front.svg",
  36507. extra: 2009/1935,
  36508. bottom: 118/2127
  36509. }
  36510. },
  36511. back: {
  36512. height: math.unit(5 + 10/12, "feet"),
  36513. name: "Back",
  36514. image: {
  36515. source: "./media/characters/argon/back.svg",
  36516. extra: 2047/1992,
  36517. bottom: 20/2067
  36518. }
  36519. },
  36520. frontDressed: {
  36521. height: math.unit(5 + 10/12, "feet"),
  36522. name: "Front (Dressed)",
  36523. image: {
  36524. source: "./media/characters/argon/front-dressed.svg",
  36525. extra: 2009/1935,
  36526. bottom: 118/2127
  36527. }
  36528. },
  36529. },
  36530. [
  36531. {
  36532. name: "Normal",
  36533. height: math.unit(5 + 10/12, "feet"),
  36534. default: true
  36535. },
  36536. ]
  36537. ))
  36538. characterMakers.push(() => makeCharacter(
  36539. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36540. {
  36541. front: {
  36542. height: math.unit(8 + 6/12, "feet"),
  36543. weight: math.unit(1150, "lb"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/kichi/front.svg",
  36547. extra: 1267/1164,
  36548. bottom: 61/1328
  36549. }
  36550. },
  36551. back: {
  36552. height: math.unit(8 + 6/12, "feet"),
  36553. weight: math.unit(1150, "lb"),
  36554. name: "Back",
  36555. image: {
  36556. source: "./media/characters/kichi/back.svg",
  36557. extra: 1273/1166,
  36558. bottom: 33/1306
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Normal",
  36565. height: math.unit(8 + 6/12, "feet"),
  36566. default: true
  36567. },
  36568. ]
  36569. ))
  36570. characterMakers.push(() => makeCharacter(
  36571. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36572. {
  36573. front: {
  36574. height: math.unit(6, "feet"),
  36575. weight: math.unit(210, "lb"),
  36576. name: "Front",
  36577. image: {
  36578. source: "./media/characters/manetel-greyscale/front.svg",
  36579. extra: 350/312,
  36580. bottom: 8/358
  36581. }
  36582. },
  36583. },
  36584. [
  36585. {
  36586. name: "Micro",
  36587. height: math.unit(2, "inches")
  36588. },
  36589. {
  36590. name: "Normal",
  36591. height: math.unit(6, "feet"),
  36592. default: true
  36593. },
  36594. {
  36595. name: "Minimacro",
  36596. height: math.unit(17, "feet")
  36597. },
  36598. {
  36599. name: "Macro",
  36600. height: math.unit(117, "feet")
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36606. {
  36607. side: {
  36608. height: math.unit(5 + 1/12, "feet"),
  36609. weight: math.unit(418, "lb"),
  36610. name: "Side",
  36611. image: {
  36612. source: "./media/characters/softpurr/side.svg",
  36613. extra: 1993/1945,
  36614. bottom: 134/2127
  36615. }
  36616. },
  36617. front: {
  36618. height: math.unit(5 + 1/12, "feet"),
  36619. weight: math.unit(418, "lb"),
  36620. name: "Front",
  36621. image: {
  36622. source: "./media/characters/softpurr/front.svg",
  36623. extra: 1950/1856,
  36624. bottom: 174/2124
  36625. }
  36626. },
  36627. paw: {
  36628. height: math.unit(1, "feet"),
  36629. name: "Paw",
  36630. image: {
  36631. source: "./media/characters/softpurr/paw.svg"
  36632. }
  36633. },
  36634. },
  36635. [
  36636. {
  36637. name: "Normal",
  36638. height: math.unit(5 + 1/12, "feet"),
  36639. default: true
  36640. },
  36641. ]
  36642. ))
  36643. characterMakers.push(() => makeCharacter(
  36644. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36645. {
  36646. front: {
  36647. height: math.unit(260, "meters"),
  36648. name: "Front",
  36649. image: {
  36650. source: "./media/characters/anahita/front.svg",
  36651. extra: 665/635,
  36652. bottom: 89/754
  36653. }
  36654. },
  36655. },
  36656. [
  36657. {
  36658. name: "Macro",
  36659. height: math.unit(260, "meters"),
  36660. default: true
  36661. },
  36662. ]
  36663. ))
  36664. characterMakers.push(() => makeCharacter(
  36665. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36666. {
  36667. front: {
  36668. height: math.unit(4 + 10/12, "feet"),
  36669. weight: math.unit(160, "lb"),
  36670. name: "Front",
  36671. image: {
  36672. source: "./media/characters/chip-mouse/front.svg",
  36673. extra: 3528/3408,
  36674. bottom: 0/3528
  36675. }
  36676. },
  36677. frontNsfw: {
  36678. height: math.unit(4 + 10/12, "feet"),
  36679. weight: math.unit(160, "lb"),
  36680. name: "Front (NSFW)",
  36681. image: {
  36682. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36683. extra: 3528/3408,
  36684. bottom: 0/3528
  36685. }
  36686. },
  36687. },
  36688. [
  36689. {
  36690. name: "Normal",
  36691. height: math.unit(4 + 10/12, "feet"),
  36692. default: true
  36693. },
  36694. ]
  36695. ))
  36696. characterMakers.push(() => makeCharacter(
  36697. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36698. {
  36699. side: {
  36700. height: math.unit(10, "feet"),
  36701. weight: math.unit(14000, "lb"),
  36702. name: "Side",
  36703. image: {
  36704. source: "./media/characters/kremm/side.svg",
  36705. extra: 1390/1053,
  36706. bottom: 90/1480
  36707. }
  36708. },
  36709. gut: {
  36710. height: math.unit(5.8, "feet"),
  36711. name: "Gut",
  36712. image: {
  36713. source: "./media/characters/kremm/gut.svg"
  36714. }
  36715. },
  36716. ass: {
  36717. height: math.unit(6.1, "feet"),
  36718. name: "Ass",
  36719. image: {
  36720. source: "./media/characters/kremm/ass.svg"
  36721. }
  36722. },
  36723. jaws: {
  36724. height: math.unit(2.2, "feet"),
  36725. name: "Jaws",
  36726. image: {
  36727. source: "./media/characters/kremm/jaws.svg"
  36728. }
  36729. },
  36730. dick: {
  36731. height: math.unit(4.26, "feet"),
  36732. name: "Dick",
  36733. image: {
  36734. source: "./media/characters/kremm/dick.svg"
  36735. }
  36736. },
  36737. },
  36738. [
  36739. {
  36740. name: "Normal",
  36741. height: math.unit(10, "feet"),
  36742. default: true
  36743. },
  36744. ]
  36745. ))
  36746. characterMakers.push(() => makeCharacter(
  36747. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36748. {
  36749. front: {
  36750. height: math.unit(30, "stories"),
  36751. name: "Front",
  36752. image: {
  36753. source: "./media/characters/kai/front.svg",
  36754. extra: 1892/1718,
  36755. bottom: 162/2054
  36756. }
  36757. },
  36758. },
  36759. [
  36760. {
  36761. name: "Macro",
  36762. height: math.unit(30, "stories"),
  36763. default: true
  36764. },
  36765. ]
  36766. ))
  36767. characterMakers.push(() => makeCharacter(
  36768. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36769. {
  36770. front: {
  36771. height: math.unit(6 + 4/12, "feet"),
  36772. weight: math.unit(145, "lb"),
  36773. name: "Front",
  36774. image: {
  36775. source: "./media/characters/sykes/front.svg",
  36776. extra: 1321 / 1187,
  36777. bottom: 66 / 1387
  36778. }
  36779. },
  36780. back: {
  36781. height: math.unit(6 + 4/12, "feet"),
  36782. weight: math.unit(145, "lb"),
  36783. name: "Back",
  36784. image: {
  36785. source: "./media/characters/sykes/back.svg",
  36786. extra: 1326/1181,
  36787. bottom: 31/1357
  36788. }
  36789. },
  36790. traditionalOutfit: {
  36791. height: math.unit(6 + 4/12, "feet"),
  36792. weight: math.unit(145, "lb"),
  36793. name: "Traditional Outfit",
  36794. image: {
  36795. source: "./media/characters/sykes/traditional-outfit.svg",
  36796. extra: 1321 / 1187,
  36797. bottom: 66 / 1387
  36798. }
  36799. },
  36800. adventureOutfit: {
  36801. height: math.unit(6 + 4/12, "feet"),
  36802. weight: math.unit(145, "lb"),
  36803. name: "Adventure Outfit",
  36804. image: {
  36805. source: "./media/characters/sykes/adventure-outfit.svg",
  36806. extra: 1321 / 1187,
  36807. bottom: 66 / 1387
  36808. }
  36809. },
  36810. handLeft: {
  36811. height: math.unit(0.9, "feet"),
  36812. name: "Hand (Left)",
  36813. image: {
  36814. source: "./media/characters/sykes/hand-left.svg"
  36815. }
  36816. },
  36817. handRight: {
  36818. height: math.unit(0.839, "feet"),
  36819. name: "Hand (Right)",
  36820. image: {
  36821. source: "./media/characters/sykes/hand-right.svg"
  36822. }
  36823. },
  36824. leftFoot: {
  36825. height: math.unit(1.2, "feet"),
  36826. name: "Foot (Left)",
  36827. image: {
  36828. source: "./media/characters/sykes/foot-left.svg"
  36829. }
  36830. },
  36831. rightFoot: {
  36832. height: math.unit(1.2, "feet"),
  36833. name: "Foot (Right)",
  36834. image: {
  36835. source: "./media/characters/sykes/foot-right.svg"
  36836. }
  36837. },
  36838. maw: {
  36839. height: math.unit(1.93, "feet"),
  36840. name: "Maw",
  36841. image: {
  36842. source: "./media/characters/sykes/maw.svg"
  36843. }
  36844. },
  36845. teeth: {
  36846. height: math.unit(0.51, "feet"),
  36847. name: "Teeth",
  36848. image: {
  36849. source: "./media/characters/sykes/teeth.svg"
  36850. }
  36851. },
  36852. tongue: {
  36853. height: math.unit(2.13, "feet"),
  36854. name: "Tongue",
  36855. image: {
  36856. source: "./media/characters/sykes/tongue.svg"
  36857. }
  36858. },
  36859. uvula: {
  36860. height: math.unit(0.16, "feet"),
  36861. name: "Uvula",
  36862. image: {
  36863. source: "./media/characters/sykes/uvula.svg"
  36864. }
  36865. },
  36866. collar: {
  36867. height: math.unit(0.287, "feet"),
  36868. name: "Collar",
  36869. image: {
  36870. source: "./media/characters/sykes/collar.svg"
  36871. }
  36872. },
  36873. tail: {
  36874. height: math.unit(3.8, "feet"),
  36875. name: "Tail",
  36876. image: {
  36877. source: "./media/characters/sykes/tail.svg"
  36878. }
  36879. },
  36880. },
  36881. [
  36882. {
  36883. name: "Shrunken",
  36884. height: math.unit(5, "inches")
  36885. },
  36886. {
  36887. name: "Normal",
  36888. height: math.unit(6 + 4 / 12, "feet"),
  36889. default: true
  36890. },
  36891. {
  36892. name: "Big",
  36893. height: math.unit(15, "feet")
  36894. },
  36895. ]
  36896. ))
  36897. characterMakers.push(() => makeCharacter(
  36898. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36899. {
  36900. front: {
  36901. height: math.unit(5 + 8/12, "feet"),
  36902. weight: math.unit(190, "lb"),
  36903. name: "Front",
  36904. image: {
  36905. source: "./media/characters/oven-otter/front.svg",
  36906. extra: 1809/1740,
  36907. bottom: 181/1990
  36908. }
  36909. },
  36910. back: {
  36911. height: math.unit(5 + 8/12, "feet"),
  36912. weight: math.unit(190, "lb"),
  36913. name: "Back",
  36914. image: {
  36915. source: "./media/characters/oven-otter/back.svg",
  36916. extra: 1709/1635,
  36917. bottom: 118/1827
  36918. }
  36919. },
  36920. hand: {
  36921. height: math.unit(1.07, "feet"),
  36922. name: "Hand",
  36923. image: {
  36924. source: "./media/characters/oven-otter/hand.svg"
  36925. }
  36926. },
  36927. beans: {
  36928. height: math.unit(1.74, "feet"),
  36929. name: "Beans",
  36930. image: {
  36931. source: "./media/characters/oven-otter/beans.svg"
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Micro",
  36938. height: math.unit(0.5, "inches")
  36939. },
  36940. {
  36941. name: "Normal",
  36942. height: math.unit(5 + 8/12, "feet"),
  36943. default: true
  36944. },
  36945. {
  36946. name: "Macro",
  36947. height: math.unit(250, "feet")
  36948. },
  36949. {
  36950. name: "Really High",
  36951. height: math.unit(420, "feet")
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36957. {
  36958. front: {
  36959. height: math.unit(5, "meters"),
  36960. weight: math.unit(292000000000000, "kg"),
  36961. name: "Front",
  36962. image: {
  36963. source: "./media/characters/devourer/front.svg",
  36964. extra: 1800/1733,
  36965. bottom: 211/2011
  36966. }
  36967. },
  36968. maw: {
  36969. height: math.unit(1.1, "meter"),
  36970. name: "Maw",
  36971. image: {
  36972. source: "./media/characters/devourer/maw.svg"
  36973. }
  36974. },
  36975. },
  36976. [
  36977. {
  36978. name: "Small",
  36979. height: math.unit(3, "meters")
  36980. },
  36981. {
  36982. name: "Large",
  36983. height: math.unit(5, "meters"),
  36984. default: true
  36985. },
  36986. ]
  36987. ))
  36988. characterMakers.push(() => makeCharacter(
  36989. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36990. {
  36991. front: {
  36992. height: math.unit(6, "feet"),
  36993. weight: math.unit(400, "lb"),
  36994. name: "Front",
  36995. image: {
  36996. source: "./media/characters/ellarby/front.svg",
  36997. extra: 1909/1763,
  36998. bottom: 80/1989
  36999. }
  37000. },
  37001. back: {
  37002. height: math.unit(6, "feet"),
  37003. weight: math.unit(400, "lb"),
  37004. name: "Back",
  37005. image: {
  37006. source: "./media/characters/ellarby/back.svg",
  37007. extra: 1914/1784,
  37008. bottom: 172/2086
  37009. }
  37010. },
  37011. },
  37012. [
  37013. {
  37014. name: "Mischief",
  37015. height: math.unit(18, "inches")
  37016. },
  37017. {
  37018. name: "Trouble",
  37019. height: math.unit(12, "feet")
  37020. },
  37021. {
  37022. name: "Havoc",
  37023. height: math.unit(200, "feet"),
  37024. default: true
  37025. },
  37026. {
  37027. name: "Pandemonium",
  37028. height: math.unit(1, "mile")
  37029. },
  37030. {
  37031. name: "Catastrophe",
  37032. height: math.unit(100, "miles")
  37033. },
  37034. ]
  37035. ))
  37036. characterMakers.push(() => makeCharacter(
  37037. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37038. {
  37039. front: {
  37040. height: math.unit(4.7, "meters"),
  37041. weight: math.unit(6500, "kg"),
  37042. name: "Front",
  37043. image: {
  37044. source: "./media/characters/vex/front.svg",
  37045. extra: 1288/1140,
  37046. bottom: 100/1388
  37047. }
  37048. },
  37049. },
  37050. [
  37051. {
  37052. name: "Normal",
  37053. height: math.unit(4.7, "meters"),
  37054. default: true
  37055. },
  37056. ]
  37057. ))
  37058. characterMakers.push(() => makeCharacter(
  37059. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37060. {
  37061. normal: {
  37062. height: math.unit(6, "feet"),
  37063. weight: math.unit(350, "lb"),
  37064. name: "Normal",
  37065. image: {
  37066. source: "./media/characters/teshy/normal.svg",
  37067. extra: 1795/1735,
  37068. bottom: 16/1811
  37069. }
  37070. },
  37071. monsterFront: {
  37072. height: math.unit(12, "feet"),
  37073. weight: math.unit(4700, "lb"),
  37074. name: "Monster (Front)",
  37075. image: {
  37076. source: "./media/characters/teshy/monster-front.svg",
  37077. extra: 2042/2034,
  37078. bottom: 128/2170
  37079. }
  37080. },
  37081. monsterSide: {
  37082. height: math.unit(12, "feet"),
  37083. weight: math.unit(4700, "lb"),
  37084. name: "Monster (Side)",
  37085. image: {
  37086. source: "./media/characters/teshy/monster-side.svg",
  37087. extra: 2067/2056,
  37088. bottom: 70/2137
  37089. }
  37090. },
  37091. monsterBack: {
  37092. height: math.unit(12, "feet"),
  37093. weight: math.unit(4700, "lb"),
  37094. name: "Monster (Back)",
  37095. image: {
  37096. source: "./media/characters/teshy/monster-back.svg",
  37097. extra: 1921/1914,
  37098. bottom: 171/2092
  37099. }
  37100. },
  37101. },
  37102. [
  37103. {
  37104. name: "Normal",
  37105. height: math.unit(6, "feet"),
  37106. default: true
  37107. },
  37108. ]
  37109. ))
  37110. characterMakers.push(() => makeCharacter(
  37111. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37112. {
  37113. front: {
  37114. height: math.unit(6, "feet"),
  37115. name: "Front",
  37116. image: {
  37117. source: "./media/characters/ramey/front.svg",
  37118. extra: 790/787,
  37119. bottom: 27/817
  37120. }
  37121. },
  37122. },
  37123. [
  37124. {
  37125. name: "Normal",
  37126. height: math.unit(6, "feet"),
  37127. default: true
  37128. },
  37129. ]
  37130. ))
  37131. characterMakers.push(() => makeCharacter(
  37132. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37133. {
  37134. front: {
  37135. height: math.unit(5 + 5/12, "feet"),
  37136. weight: math.unit(120, "lb"),
  37137. name: "Front",
  37138. image: {
  37139. source: "./media/characters/phirae/front.svg",
  37140. extra: 2491/2436,
  37141. bottom: 38/2529
  37142. }
  37143. },
  37144. },
  37145. [
  37146. {
  37147. name: "Normal",
  37148. height: math.unit(5 + 5/12, "feet"),
  37149. default: true
  37150. },
  37151. ]
  37152. ))
  37153. characterMakers.push(() => makeCharacter(
  37154. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37155. {
  37156. front: {
  37157. height: math.unit(5 + 3/12, "feet"),
  37158. name: "Front",
  37159. image: {
  37160. source: "./media/characters/stagglas/front.svg",
  37161. extra: 962/882,
  37162. bottom: 53/1015
  37163. }
  37164. },
  37165. feral: {
  37166. height: math.unit(335, "cm"),
  37167. name: "Feral",
  37168. image: {
  37169. source: "./media/characters/stagglas/feral.svg",
  37170. extra: 1732/1090,
  37171. bottom: 48/1780
  37172. }
  37173. },
  37174. },
  37175. [
  37176. {
  37177. name: "Normal",
  37178. height: math.unit(5 + 3/12, "feet"),
  37179. default: true
  37180. },
  37181. ]
  37182. ))
  37183. characterMakers.push(() => makeCharacter(
  37184. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37185. {
  37186. front: {
  37187. height: math.unit(5 + 4/12, "feet"),
  37188. weight: math.unit(145, "lb"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/starra/front.svg",
  37192. extra: 1790/1691,
  37193. bottom: 91/1881
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(5 + 4/12, "feet"),
  37201. default: true
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(3.5, "meters"),
  37210. name: "Front",
  37211. image: {
  37212. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37213. extra: 1248/972,
  37214. bottom: 38/1286
  37215. }
  37216. },
  37217. },
  37218. [
  37219. {
  37220. name: "Normal",
  37221. height: math.unit(3.5, "meters"),
  37222. default: true
  37223. },
  37224. ]
  37225. ))
  37226. characterMakers.push(() => makeCharacter(
  37227. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37228. {
  37229. side: {
  37230. height: math.unit(8 + 2/12, "feet"),
  37231. weight: math.unit(1240, "lb"),
  37232. name: "Side",
  37233. image: {
  37234. source: "./media/characters/mika-valentine/side.svg",
  37235. extra: 2670/2501,
  37236. bottom: 250/2920
  37237. }
  37238. },
  37239. },
  37240. [
  37241. {
  37242. name: "Normal",
  37243. height: math.unit(8 + 2/12, "feet"),
  37244. default: true
  37245. },
  37246. ]
  37247. ))
  37248. characterMakers.push(() => makeCharacter(
  37249. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37250. {
  37251. front: {
  37252. height: math.unit(7 + 2/12, "feet"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/xoltol/front.svg",
  37256. extra: 2212/2124,
  37257. bottom: 84/2296
  37258. }
  37259. },
  37260. side: {
  37261. height: math.unit(7 + 2/12, "feet"),
  37262. name: "Side",
  37263. image: {
  37264. source: "./media/characters/xoltol/side.svg",
  37265. extra: 2273/2197,
  37266. bottom: 26/2299
  37267. }
  37268. },
  37269. hand: {
  37270. height: math.unit(2.5, "feet"),
  37271. name: "Hand",
  37272. image: {
  37273. source: "./media/characters/xoltol/hand.svg"
  37274. }
  37275. },
  37276. },
  37277. [
  37278. {
  37279. name: "Small-ish",
  37280. height: math.unit(5 + 11/12, "feet")
  37281. },
  37282. {
  37283. name: "Normal",
  37284. height: math.unit(7 + 2/12, "feet")
  37285. },
  37286. {
  37287. name: "\"Macro\"",
  37288. height: math.unit(14 + 9/12, "feet"),
  37289. default: true
  37290. },
  37291. {
  37292. name: "Alternate Height",
  37293. height: math.unit(20, "feet")
  37294. },
  37295. {
  37296. name: "Actually Macro",
  37297. height: math.unit(100, "feet")
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37303. {
  37304. front: {
  37305. height: math.unit(5 + 2/12, "feet"),
  37306. weight: math.unit(75, "kg"),
  37307. name: "Front",
  37308. image: {
  37309. source: "./media/characters/kotetsu-redwood/front.svg",
  37310. extra: 1053/942,
  37311. bottom: 60/1113
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(5 + 2/12, "feet"),
  37319. default: true
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37325. {
  37326. front: {
  37327. height: math.unit(2.4, "meters"),
  37328. weight: math.unit(125, "kg"),
  37329. name: "Front",
  37330. image: {
  37331. source: "./media/characters/lilith/front.svg",
  37332. extra: 1590/1513,
  37333. bottom: 203/1793
  37334. }
  37335. },
  37336. },
  37337. [
  37338. {
  37339. name: "Humanoid",
  37340. height: math.unit(2.4, "meters")
  37341. },
  37342. {
  37343. name: "Normal",
  37344. height: math.unit(6, "meters"),
  37345. default: true
  37346. },
  37347. {
  37348. name: "Largest",
  37349. height: math.unit(55, "meters")
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(8 + 4/12, "feet"),
  37358. weight: math.unit(535, "lb"),
  37359. name: "Front",
  37360. image: {
  37361. source: "./media/characters/beh'kah-bolger/front.svg",
  37362. extra: 1660/1603,
  37363. bottom: 37/1697
  37364. }
  37365. },
  37366. },
  37367. [
  37368. {
  37369. name: "Normal",
  37370. height: math.unit(8 + 4/12, "feet"),
  37371. default: true
  37372. },
  37373. {
  37374. name: "Kaiju",
  37375. height: math.unit(250, "feet")
  37376. },
  37377. {
  37378. name: "Still Growing",
  37379. height: math.unit(10, "miles")
  37380. },
  37381. {
  37382. name: "Continental",
  37383. height: math.unit(5000, "miles")
  37384. },
  37385. {
  37386. name: "Final Form",
  37387. height: math.unit(2500000, "miles")
  37388. },
  37389. ]
  37390. ))
  37391. characterMakers.push(() => makeCharacter(
  37392. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37393. {
  37394. front: {
  37395. height: math.unit(7 + 2/12, "feet"),
  37396. weight: math.unit(230, "kg"),
  37397. name: "Front",
  37398. image: {
  37399. source: "./media/characters/tatyana-milewska/front.svg",
  37400. extra: 1199/1150,
  37401. bottom: 86/1285
  37402. }
  37403. },
  37404. },
  37405. [
  37406. {
  37407. name: "Normal",
  37408. height: math.unit(7 + 2/12, "feet"),
  37409. default: true
  37410. },
  37411. {
  37412. name: "Big",
  37413. height: math.unit(12, "feet")
  37414. },
  37415. {
  37416. name: "Minimacro",
  37417. height: math.unit(20, "feet")
  37418. },
  37419. {
  37420. name: "Macro",
  37421. height: math.unit(120, "feet")
  37422. },
  37423. ]
  37424. ))
  37425. characterMakers.push(() => makeCharacter(
  37426. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37427. {
  37428. front: {
  37429. height: math.unit(7 + 8/12, "feet"),
  37430. weight: math.unit(152, "kg"),
  37431. name: "Front",
  37432. image: {
  37433. source: "./media/characters/helen-arri/front.svg",
  37434. extra: 440/423,
  37435. bottom: 14/454
  37436. }
  37437. },
  37438. back: {
  37439. height: math.unit(7 + 8/12, "feet"),
  37440. weight: math.unit(152, "kg"),
  37441. name: "Back",
  37442. image: {
  37443. source: "./media/characters/helen-arri/back.svg",
  37444. extra: 443/426,
  37445. bottom: 8/451
  37446. }
  37447. },
  37448. },
  37449. [
  37450. {
  37451. name: "Normal",
  37452. height: math.unit(7 + 8/12, "feet"),
  37453. default: true
  37454. },
  37455. {
  37456. name: "Big",
  37457. height: math.unit(14, "feet")
  37458. },
  37459. {
  37460. name: "Minimacro",
  37461. height: math.unit(24, "feet")
  37462. },
  37463. {
  37464. name: "Macro",
  37465. height: math.unit(140, "feet")
  37466. },
  37467. ]
  37468. ))
  37469. characterMakers.push(() => makeCharacter(
  37470. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37471. {
  37472. front: {
  37473. height: math.unit(6, "meters"),
  37474. name: "Front",
  37475. image: {
  37476. source: "./media/characters/ehanu-rehu/front.svg",
  37477. extra: 1800/1800,
  37478. bottom: 59/1859
  37479. }
  37480. },
  37481. },
  37482. [
  37483. {
  37484. name: "Normal",
  37485. height: math.unit(6, "meters"),
  37486. default: true
  37487. },
  37488. ]
  37489. ))
  37490. characterMakers.push(() => makeCharacter(
  37491. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37492. {
  37493. front: {
  37494. height: math.unit(7 + 3/12, "feet"),
  37495. name: "Front",
  37496. image: {
  37497. source: "./media/characters/renholder/front.svg",
  37498. extra: 3096/2960,
  37499. bottom: 250/3346
  37500. }
  37501. },
  37502. },
  37503. [
  37504. {
  37505. name: "Normal Bat",
  37506. height: math.unit(7 + 3/12, "feet"),
  37507. default: true
  37508. },
  37509. {
  37510. name: "Slightly Tall Bat",
  37511. height: math.unit(100, "feet")
  37512. },
  37513. {
  37514. name: "Big Bat",
  37515. height: math.unit(1000, "feet")
  37516. },
  37517. {
  37518. name: "City-Sized Bat",
  37519. height: math.unit(200000, "feet")
  37520. },
  37521. {
  37522. name: "Bigger Bat",
  37523. height: math.unit(10000, "miles")
  37524. },
  37525. {
  37526. name: "Solar Sized Bat",
  37527. height: math.unit(100, "AU")
  37528. },
  37529. {
  37530. name: "Galactic Bat",
  37531. height: math.unit(200000, "lightyears")
  37532. },
  37533. {
  37534. name: "Universally Known Bat",
  37535. height: math.unit(1, "universe")
  37536. },
  37537. ]
  37538. ))
  37539. characterMakers.push(() => makeCharacter(
  37540. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37541. {
  37542. front: {
  37543. height: math.unit(6 + 11/12, "feet"),
  37544. weight: math.unit(250, "lb"),
  37545. name: "Front",
  37546. image: {
  37547. source: "./media/characters/cookiecat/front.svg",
  37548. extra: 893/827,
  37549. bottom: 14/907
  37550. }
  37551. },
  37552. },
  37553. [
  37554. {
  37555. name: "Micro",
  37556. height: math.unit(3, "inches")
  37557. },
  37558. {
  37559. name: "Normal",
  37560. height: math.unit(6 + 11/12, "feet"),
  37561. default: true
  37562. },
  37563. {
  37564. name: "Macro",
  37565. height: math.unit(100, "feet")
  37566. },
  37567. {
  37568. name: "Macro+",
  37569. height: math.unit(404, "feet")
  37570. },
  37571. {
  37572. name: "Megamacro",
  37573. height: math.unit(165, "miles")
  37574. },
  37575. {
  37576. name: "Planetary",
  37577. height: math.unit(4600, "miles")
  37578. },
  37579. ]
  37580. ))
  37581. characterMakers.push(() => makeCharacter(
  37582. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37583. {
  37584. front: {
  37585. height: math.unit(10 + 3/12, "feet"),
  37586. weight: math.unit(1500, "lb"),
  37587. name: "Front",
  37588. image: {
  37589. source: "./media/characters/tux-kusanagi/front.svg",
  37590. extra: 944/840,
  37591. bottom: 39/983
  37592. }
  37593. },
  37594. back: {
  37595. height: math.unit(10 + 3/12, "feet"),
  37596. weight: math.unit(1500, "lb"),
  37597. name: "Back",
  37598. image: {
  37599. source: "./media/characters/tux-kusanagi/back.svg",
  37600. extra: 941/842,
  37601. bottom: 28/969
  37602. }
  37603. },
  37604. rump: {
  37605. height: math.unit(5.25, "feet"),
  37606. name: "Rump",
  37607. image: {
  37608. source: "./media/characters/tux-kusanagi/rump.svg"
  37609. }
  37610. },
  37611. beak: {
  37612. height: math.unit(1.54, "feet"),
  37613. name: "Beak",
  37614. image: {
  37615. source: "./media/characters/tux-kusanagi/beak.svg"
  37616. }
  37617. },
  37618. },
  37619. [
  37620. {
  37621. name: "Normal",
  37622. height: math.unit(10 + 3/12, "feet"),
  37623. default: true
  37624. },
  37625. ]
  37626. ))
  37627. characterMakers.push(() => makeCharacter(
  37628. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37629. {
  37630. front: {
  37631. height: math.unit(58, "feet"),
  37632. weight: math.unit(200, "tons"),
  37633. name: "Front",
  37634. image: {
  37635. source: "./media/characters/uzarmazari/front.svg",
  37636. extra: 1575/1455,
  37637. bottom: 152/1727
  37638. }
  37639. },
  37640. back: {
  37641. height: math.unit(58, "feet"),
  37642. weight: math.unit(200, "tons"),
  37643. name: "Back",
  37644. image: {
  37645. source: "./media/characters/uzarmazari/back.svg",
  37646. extra: 1585/1510,
  37647. bottom: 157/1742
  37648. }
  37649. },
  37650. head: {
  37651. height: math.unit(26, "feet"),
  37652. name: "Head",
  37653. image: {
  37654. source: "./media/characters/uzarmazari/head.svg"
  37655. }
  37656. },
  37657. },
  37658. [
  37659. {
  37660. name: "Normal",
  37661. height: math.unit(58, "feet"),
  37662. default: true
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37668. {
  37669. side: {
  37670. height: math.unit(15, "feet"),
  37671. name: "Side",
  37672. image: {
  37673. source: "./media/characters/akitu/side.svg",
  37674. extra: 1421/1321,
  37675. bottom: 157/1578
  37676. }
  37677. },
  37678. front: {
  37679. height: math.unit(15, "feet"),
  37680. name: "Front",
  37681. image: {
  37682. source: "./media/characters/akitu/front.svg",
  37683. extra: 1435/1326,
  37684. bottom: 232/1667
  37685. }
  37686. },
  37687. },
  37688. [
  37689. {
  37690. name: "Normal",
  37691. height: math.unit(15, "feet"),
  37692. default: true
  37693. },
  37694. ]
  37695. ))
  37696. characterMakers.push(() => makeCharacter(
  37697. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37698. {
  37699. front: {
  37700. height: math.unit(10 + 8/12, "feet"),
  37701. name: "Front",
  37702. image: {
  37703. source: "./media/characters/azalie-croixland/front.svg",
  37704. extra: 1972/1856,
  37705. bottom: 31/2003
  37706. }
  37707. },
  37708. },
  37709. [
  37710. {
  37711. name: "Original Height",
  37712. height: math.unit(5 + 4/12, "feet")
  37713. },
  37714. {
  37715. name: "Normal Height",
  37716. height: math.unit(10 + 8/12, "feet"),
  37717. default: true
  37718. },
  37719. ]
  37720. ))
  37721. characterMakers.push(() => makeCharacter(
  37722. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37723. {
  37724. side: {
  37725. height: math.unit(7 + 1/12, "feet"),
  37726. weight: math.unit(245, "lb"),
  37727. name: "Side",
  37728. image: {
  37729. source: "./media/characters/kavus-kazian/side.svg",
  37730. extra: 349/342,
  37731. bottom: 15/364
  37732. }
  37733. },
  37734. },
  37735. [
  37736. {
  37737. name: "Normal",
  37738. height: math.unit(7 + 1/12, "feet"),
  37739. default: true
  37740. },
  37741. ]
  37742. ))
  37743. characterMakers.push(() => makeCharacter(
  37744. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37745. {
  37746. normalFront: {
  37747. height: math.unit(5 + 11/12, "feet"),
  37748. name: "Front",
  37749. image: {
  37750. source: "./media/characters/moonlight-rose/normal-front.svg",
  37751. extra: 1980/1825,
  37752. bottom: 18/1998
  37753. },
  37754. form: "normal",
  37755. default: true
  37756. },
  37757. normalBack: {
  37758. height: math.unit(5 + 11/12, "feet"),
  37759. name: "Back",
  37760. image: {
  37761. source: "./media/characters/moonlight-rose/normal-back.svg",
  37762. extra: 2010/1839,
  37763. bottom: 10/2020
  37764. },
  37765. form: "normal"
  37766. },
  37767. demonFront: {
  37768. height: math.unit(1.5, "earths"),
  37769. name: "Front",
  37770. image: {
  37771. source: "./media/characters/moonlight-rose/demon.svg",
  37772. extra: 1400/1294,
  37773. bottom: 45/1445
  37774. },
  37775. form: "demon",
  37776. default: true
  37777. },
  37778. terraFront: {
  37779. height: math.unit(1.5, "earths"),
  37780. name: "Front",
  37781. image: {
  37782. source: "./media/characters/moonlight-rose/terra.svg"
  37783. },
  37784. form: "terra",
  37785. default: true
  37786. },
  37787. jupiterFront: {
  37788. height: math.unit(69911*2, "km"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37792. extra: 1367/1286,
  37793. bottom: 55/1422
  37794. },
  37795. form: "jupiter",
  37796. default: true
  37797. },
  37798. neptuneFront: {
  37799. height: math.unit(24622*2, "feet"),
  37800. name: "Front",
  37801. image: {
  37802. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37803. extra: 1851/1712,
  37804. bottom: 0/1851
  37805. },
  37806. form: "neptune",
  37807. default: true
  37808. },
  37809. },
  37810. [
  37811. {
  37812. name: "\"Natural\" Height",
  37813. height: math.unit(5 + 11/12, "feet"),
  37814. form: "normal"
  37815. },
  37816. {
  37817. name: "Smallest comfortable size",
  37818. height: math.unit(40, "meters"),
  37819. form: "normal"
  37820. },
  37821. {
  37822. name: "Common size",
  37823. height: math.unit(50, "km"),
  37824. form: "normal",
  37825. default: true
  37826. },
  37827. {
  37828. name: "Normal",
  37829. height: math.unit(1.5, "earths"),
  37830. form: "demon",
  37831. default: true
  37832. },
  37833. {
  37834. name: "Universal",
  37835. height: math.unit(15, "universes"),
  37836. form: "demon"
  37837. },
  37838. {
  37839. name: "Earth",
  37840. height: math.unit(1.5, "earths"),
  37841. form: "terra",
  37842. default: true
  37843. },
  37844. {
  37845. name: "Super Earth",
  37846. height: math.unit(67.5, "earths"),
  37847. form: "terra"
  37848. },
  37849. {
  37850. name: "Doesn't fit in a solar system...",
  37851. height: math.unit(1, "galaxy"),
  37852. form: "terra"
  37853. },
  37854. {
  37855. name: "Saturn",
  37856. height: math.unit(58232*2, "km"),
  37857. form: "jupiter"
  37858. },
  37859. {
  37860. name: "Jupiter",
  37861. height: math.unit(69911*2, "km"),
  37862. form: "jupiter",
  37863. default: true
  37864. },
  37865. {
  37866. name: "HD 100546 b",
  37867. height: math.unit(482938, "km"),
  37868. form: "jupiter"
  37869. },
  37870. {
  37871. name: "Enceladus",
  37872. height: math.unit(513*2, "km"),
  37873. form: "neptune"
  37874. },
  37875. {
  37876. name: "Europe",
  37877. height: math.unit(1560*2, "km"),
  37878. form: "neptune"
  37879. },
  37880. {
  37881. name: "Neptune",
  37882. height: math.unit(24622*2, "km"),
  37883. form: "neptune",
  37884. default: true
  37885. },
  37886. {
  37887. name: "CoRoT-9b",
  37888. height: math.unit(75067*2, "km"),
  37889. form: "neptune"
  37890. },
  37891. ],
  37892. {
  37893. "normal": {
  37894. name: "Normal",
  37895. default: true
  37896. },
  37897. "demon": {
  37898. name: "Demon"
  37899. },
  37900. "terra": {
  37901. name: "Terra"
  37902. },
  37903. "jupiter": {
  37904. name: "Jupiter"
  37905. },
  37906. "neptune": {
  37907. name: "Neptune"
  37908. }
  37909. }
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37913. {
  37914. front: {
  37915. height: math.unit(16, "feet"),
  37916. weight: math.unit(610, "kg"),
  37917. name: "Front",
  37918. image: {
  37919. source: "./media/characters/huckle/front.svg",
  37920. extra: 1731/1625,
  37921. bottom: 33/1764
  37922. }
  37923. },
  37924. back: {
  37925. height: math.unit(16, "feet"),
  37926. weight: math.unit(610, "kg"),
  37927. name: "Back",
  37928. image: {
  37929. source: "./media/characters/huckle/back.svg",
  37930. extra: 1738/1651,
  37931. bottom: 37/1775
  37932. }
  37933. },
  37934. laughing: {
  37935. height: math.unit(3.75, "feet"),
  37936. name: "Laughing",
  37937. image: {
  37938. source: "./media/characters/huckle/laughing.svg"
  37939. }
  37940. },
  37941. angry: {
  37942. height: math.unit(4.15, "feet"),
  37943. name: "Angry",
  37944. image: {
  37945. source: "./media/characters/huckle/angry.svg"
  37946. }
  37947. },
  37948. },
  37949. [
  37950. {
  37951. name: "Normal",
  37952. height: math.unit(16, "feet"),
  37953. default: true
  37954. },
  37955. {
  37956. name: "Mini Macro",
  37957. height: math.unit(463, "feet")
  37958. },
  37959. {
  37960. name: "Macro",
  37961. height: math.unit(1680, "meters")
  37962. },
  37963. {
  37964. name: "Mega Macro",
  37965. height: math.unit(175, "km")
  37966. },
  37967. {
  37968. name: "Terra Macro",
  37969. height: math.unit(32, "gigameters")
  37970. },
  37971. {
  37972. name: "Multiverse+",
  37973. height: math.unit(2.56e23, "yottameters")
  37974. },
  37975. ]
  37976. ))
  37977. characterMakers.push(() => makeCharacter(
  37978. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37979. {
  37980. front: {
  37981. height: math.unit(6 + 9/12, "feet"),
  37982. weight: math.unit(280, "lb"),
  37983. name: "Front",
  37984. image: {
  37985. source: "./media/characters/candy/front.svg",
  37986. extra: 234/217,
  37987. bottom: 11/245
  37988. }
  37989. },
  37990. },
  37991. [
  37992. {
  37993. name: "Really Small",
  37994. height: math.unit(0.1, "nm")
  37995. },
  37996. {
  37997. name: "Micro",
  37998. height: math.unit(2, "inches")
  37999. },
  38000. {
  38001. name: "Normal",
  38002. height: math.unit(6 + 9/12, "feet"),
  38003. default: true
  38004. },
  38005. {
  38006. name: "Small Macro",
  38007. height: math.unit(69, "feet")
  38008. },
  38009. {
  38010. name: "Macro",
  38011. height: math.unit(160, "feet")
  38012. },
  38013. {
  38014. name: "Megamacro",
  38015. height: math.unit(22000, "miles")
  38016. },
  38017. {
  38018. name: "Gigamacro",
  38019. height: math.unit(50000, "miles")
  38020. },
  38021. ]
  38022. ))
  38023. characterMakers.push(() => makeCharacter(
  38024. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38025. {
  38026. front: {
  38027. height: math.unit(4, "feet"),
  38028. weight: math.unit(90, "lb"),
  38029. name: "Front",
  38030. image: {
  38031. source: "./media/characters/joey-mcdonald/front.svg",
  38032. extra: 1059/852,
  38033. bottom: 33/1092
  38034. }
  38035. },
  38036. back: {
  38037. height: math.unit(4, "feet"),
  38038. weight: math.unit(90, "lb"),
  38039. name: "Back",
  38040. image: {
  38041. source: "./media/characters/joey-mcdonald/back.svg",
  38042. extra: 1077/879,
  38043. bottom: 5/1082
  38044. }
  38045. },
  38046. frontKobold: {
  38047. height: math.unit(4, "feet"),
  38048. weight: math.unit(100, "lb"),
  38049. name: "Front-kobold",
  38050. image: {
  38051. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38052. extra: 1480/1367,
  38053. bottom: 0/1480
  38054. }
  38055. },
  38056. backKobold: {
  38057. height: math.unit(4, "feet"),
  38058. weight: math.unit(100, "lb"),
  38059. name: "Back-kobold",
  38060. image: {
  38061. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38062. extra: 1449/1361,
  38063. bottom: 0/1449
  38064. }
  38065. },
  38066. },
  38067. [
  38068. {
  38069. name: "Normal",
  38070. height: math.unit(4, "feet"),
  38071. default: true
  38072. },
  38073. ]
  38074. ))
  38075. characterMakers.push(() => makeCharacter(
  38076. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38077. {
  38078. front: {
  38079. height: math.unit(12 + 6/12, "feet"),
  38080. name: "Front",
  38081. image: {
  38082. source: "./media/characters/kass-lockheed/front.svg",
  38083. extra: 354/343,
  38084. bottom: 9/363
  38085. }
  38086. },
  38087. back: {
  38088. height: math.unit(12 + 6/12, "feet"),
  38089. name: "Back",
  38090. image: {
  38091. source: "./media/characters/kass-lockheed/back.svg",
  38092. extra: 364/352,
  38093. bottom: 3/367
  38094. }
  38095. },
  38096. dick: {
  38097. height: math.unit(3.12, "feet"),
  38098. name: "Dick",
  38099. image: {
  38100. source: "./media/characters/kass-lockheed/dick.svg"
  38101. }
  38102. },
  38103. head: {
  38104. height: math.unit(2.6, "feet"),
  38105. name: "Head",
  38106. image: {
  38107. source: "./media/characters/kass-lockheed/head.svg"
  38108. }
  38109. },
  38110. bleh: {
  38111. height: math.unit(2.85, "feet"),
  38112. name: "Bleh",
  38113. image: {
  38114. source: "./media/characters/kass-lockheed/bleh.svg"
  38115. }
  38116. },
  38117. smug: {
  38118. height: math.unit(2.85, "feet"),
  38119. name: "Smug",
  38120. image: {
  38121. source: "./media/characters/kass-lockheed/smug.svg"
  38122. }
  38123. },
  38124. },
  38125. [
  38126. {
  38127. name: "Normal",
  38128. height: math.unit(12 + 6/12, "feet"),
  38129. default: true
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38135. {
  38136. front: {
  38137. height: math.unit(6 + 2/12, "feet"),
  38138. name: "Front",
  38139. image: {
  38140. source: "./media/characters/taylor/front.svg",
  38141. extra: 639/495,
  38142. bottom: 12/651
  38143. }
  38144. },
  38145. },
  38146. [
  38147. {
  38148. name: "Normal",
  38149. height: math.unit(6 + 2/12, "feet"),
  38150. default: true
  38151. },
  38152. {
  38153. name: "Big",
  38154. height: math.unit(15, "feet")
  38155. },
  38156. {
  38157. name: "Lorg",
  38158. height: math.unit(80, "feet")
  38159. },
  38160. {
  38161. name: "Too Lorg",
  38162. height: math.unit(120, "feet")
  38163. },
  38164. ]
  38165. ))
  38166. characterMakers.push(() => makeCharacter(
  38167. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38168. {
  38169. front: {
  38170. height: math.unit(15, "feet"),
  38171. name: "Front",
  38172. image: {
  38173. source: "./media/characters/kaizer/front.svg",
  38174. extra: 1612/1436,
  38175. bottom: 43/1655
  38176. }
  38177. },
  38178. },
  38179. [
  38180. {
  38181. name: "Normal",
  38182. height: math.unit(15, "feet"),
  38183. default: true
  38184. },
  38185. ]
  38186. ))
  38187. characterMakers.push(() => makeCharacter(
  38188. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38189. {
  38190. front: {
  38191. height: math.unit(2, "feet"),
  38192. weight: math.unit(30, "lb"),
  38193. name: "Front",
  38194. image: {
  38195. source: "./media/characters/sandy/front.svg",
  38196. extra: 1439/1307,
  38197. bottom: 194/1633
  38198. }
  38199. },
  38200. },
  38201. [
  38202. {
  38203. name: "Normal",
  38204. height: math.unit(2, "feet"),
  38205. default: true
  38206. },
  38207. ]
  38208. ))
  38209. characterMakers.push(() => makeCharacter(
  38210. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38211. {
  38212. front: {
  38213. height: math.unit(3, "feet"),
  38214. name: "Front",
  38215. image: {
  38216. source: "./media/characters/mellvi/front.svg",
  38217. extra: 1831/1630,
  38218. bottom: 58/1889
  38219. }
  38220. },
  38221. },
  38222. [
  38223. {
  38224. name: "Normal",
  38225. height: math.unit(3, "feet"),
  38226. default: true
  38227. },
  38228. ]
  38229. ))
  38230. characterMakers.push(() => makeCharacter(
  38231. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38232. {
  38233. front: {
  38234. height: math.unit(5 + 11/12, "feet"),
  38235. weight: math.unit(200, "lb"),
  38236. name: "Front",
  38237. image: {
  38238. source: "./media/characters/shirou/front.svg",
  38239. extra: 2491/2383,
  38240. bottom: 189/2680
  38241. }
  38242. },
  38243. back: {
  38244. height: math.unit(5 + 11/12, "feet"),
  38245. weight: math.unit(200, "lb"),
  38246. name: "Back",
  38247. image: {
  38248. source: "./media/characters/shirou/back.svg",
  38249. extra: 2554/2450,
  38250. bottom: 76/2630
  38251. }
  38252. },
  38253. },
  38254. [
  38255. {
  38256. name: "Normal",
  38257. height: math.unit(5 + 11/12, "feet"),
  38258. default: true
  38259. },
  38260. ]
  38261. ))
  38262. characterMakers.push(() => makeCharacter(
  38263. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38264. {
  38265. front: {
  38266. height: math.unit(6 + 3/12, "feet"),
  38267. weight: math.unit(177, "lb"),
  38268. name: "Front",
  38269. image: {
  38270. source: "./media/characters/noryu/front.svg",
  38271. extra: 973/885,
  38272. bottom: 10/983
  38273. }
  38274. },
  38275. },
  38276. [
  38277. {
  38278. name: "Normal",
  38279. height: math.unit(6 + 3/12, "feet"),
  38280. default: true
  38281. },
  38282. ]
  38283. ))
  38284. characterMakers.push(() => makeCharacter(
  38285. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38286. {
  38287. front: {
  38288. height: math.unit(5 + 6/12, "feet"),
  38289. weight: math.unit(170, "lb"),
  38290. name: "Front",
  38291. image: {
  38292. source: "./media/characters/mevolas-rubenido/front.svg",
  38293. extra: 2109/1901,
  38294. bottom: 96/2205
  38295. }
  38296. },
  38297. },
  38298. [
  38299. {
  38300. name: "Normal",
  38301. height: math.unit(5 + 6/12, "feet"),
  38302. default: true
  38303. },
  38304. ]
  38305. ))
  38306. characterMakers.push(() => makeCharacter(
  38307. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38308. {
  38309. front: {
  38310. height: math.unit(100, "feet"),
  38311. name: "Front",
  38312. image: {
  38313. source: "./media/characters/dee/front.svg",
  38314. extra: 2153/2036,
  38315. bottom: 59/2212
  38316. }
  38317. },
  38318. back: {
  38319. height: math.unit(100, "feet"),
  38320. name: "Back",
  38321. image: {
  38322. source: "./media/characters/dee/back.svg",
  38323. extra: 2183/2058,
  38324. bottom: 75/2258
  38325. }
  38326. },
  38327. foot: {
  38328. height: math.unit(19.43, "feet"),
  38329. name: "Foot",
  38330. image: {
  38331. source: "./media/characters/dee/foot.svg"
  38332. }
  38333. },
  38334. hoof: {
  38335. height: math.unit(20.6, "feet"),
  38336. name: "Hoof",
  38337. image: {
  38338. source: "./media/characters/dee/hoof.svg"
  38339. }
  38340. },
  38341. },
  38342. [
  38343. {
  38344. name: "Macro",
  38345. height: math.unit(100, "feet"),
  38346. default: true
  38347. },
  38348. ]
  38349. ))
  38350. characterMakers.push(() => makeCharacter(
  38351. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38352. {
  38353. front: {
  38354. height: math.unit(5 + 6/12, "feet"),
  38355. name: "Front",
  38356. image: {
  38357. source: "./media/characters/teh/front.svg",
  38358. extra: 1002/847,
  38359. bottom: 62/1064
  38360. }
  38361. },
  38362. },
  38363. [
  38364. {
  38365. name: "Normal",
  38366. height: math.unit(5 + 6/12, "feet"),
  38367. default: true
  38368. },
  38369. ]
  38370. ))
  38371. characterMakers.push(() => makeCharacter(
  38372. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38373. {
  38374. side: {
  38375. height: math.unit(6 + 1/12, "feet"),
  38376. weight: math.unit(204, "lb"),
  38377. name: "Side",
  38378. image: {
  38379. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38380. extra: 974/775,
  38381. bottom: 169/1143
  38382. }
  38383. },
  38384. sitting: {
  38385. height: math.unit(6 + 2/12, "feet"),
  38386. weight: math.unit(204, "lb"),
  38387. name: "Sitting",
  38388. image: {
  38389. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38390. extra: 1175/964,
  38391. bottom: 378/1553
  38392. }
  38393. },
  38394. },
  38395. [
  38396. {
  38397. name: "Normal",
  38398. height: math.unit(6 + 1/12, "feet"),
  38399. default: true
  38400. },
  38401. ]
  38402. ))
  38403. characterMakers.push(() => makeCharacter(
  38404. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38405. {
  38406. front: {
  38407. height: math.unit(6, "inches"),
  38408. name: "Front",
  38409. image: {
  38410. source: "./media/characters/tululi/front.svg",
  38411. extra: 1997/1876,
  38412. bottom: 20/2017
  38413. }
  38414. },
  38415. },
  38416. [
  38417. {
  38418. name: "Normal",
  38419. height: math.unit(6, "inches"),
  38420. default: true
  38421. },
  38422. ]
  38423. ))
  38424. characterMakers.push(() => makeCharacter(
  38425. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38426. {
  38427. front: {
  38428. height: math.unit(4 + 1/12, "feet"),
  38429. name: "Front",
  38430. image: {
  38431. source: "./media/characters/star/front.svg",
  38432. extra: 1493/1189,
  38433. bottom: 48/1541
  38434. }
  38435. },
  38436. },
  38437. [
  38438. {
  38439. name: "Normal",
  38440. height: math.unit(4 + 1/12, "feet"),
  38441. default: true
  38442. },
  38443. ]
  38444. ))
  38445. characterMakers.push(() => makeCharacter(
  38446. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38447. {
  38448. front: {
  38449. height: math.unit(6 + 3/12, "feet"),
  38450. name: "Front",
  38451. image: {
  38452. source: "./media/characters/comet/front.svg",
  38453. extra: 1681/1462,
  38454. bottom: 26/1707
  38455. }
  38456. },
  38457. },
  38458. [
  38459. {
  38460. name: "Normal",
  38461. height: math.unit(6 + 3/12, "feet"),
  38462. default: true
  38463. },
  38464. ]
  38465. ))
  38466. characterMakers.push(() => makeCharacter(
  38467. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38468. {
  38469. front: {
  38470. height: math.unit(950, "feet"),
  38471. name: "Front",
  38472. image: {
  38473. source: "./media/characters/vortex/front.svg",
  38474. extra: 1497/1434,
  38475. bottom: 56/1553
  38476. }
  38477. },
  38478. maw: {
  38479. height: math.unit(285, "feet"),
  38480. name: "Maw",
  38481. image: {
  38482. source: "./media/characters/vortex/maw.svg"
  38483. }
  38484. },
  38485. },
  38486. [
  38487. {
  38488. name: "Macro",
  38489. height: math.unit(950, "feet"),
  38490. default: true
  38491. },
  38492. ]
  38493. ))
  38494. characterMakers.push(() => makeCharacter(
  38495. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38496. {
  38497. front: {
  38498. height: math.unit(600, "feet"),
  38499. weight: math.unit(0.02, "grams"),
  38500. name: "Front",
  38501. image: {
  38502. source: "./media/characters/doodle/front.svg",
  38503. extra: 1578/1413,
  38504. bottom: 37/1615
  38505. }
  38506. },
  38507. },
  38508. [
  38509. {
  38510. name: "Macro",
  38511. height: math.unit(600, "feet"),
  38512. default: true
  38513. },
  38514. ]
  38515. ))
  38516. characterMakers.push(() => makeCharacter(
  38517. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38518. {
  38519. front: {
  38520. height: math.unit(6 + 6/12, "feet"),
  38521. name: "Front",
  38522. image: {
  38523. source: "./media/characters/jai/front.svg",
  38524. extra: 1645/1534,
  38525. bottom: 115/1760
  38526. }
  38527. },
  38528. },
  38529. [
  38530. {
  38531. name: "Normal",
  38532. height: math.unit(6 + 6/12, "feet"),
  38533. default: true
  38534. },
  38535. ]
  38536. ))
  38537. characterMakers.push(() => makeCharacter(
  38538. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38539. {
  38540. front: {
  38541. height: math.unit(6 + 8/12, "feet"),
  38542. name: "Front",
  38543. image: {
  38544. source: "./media/characters/pixel/front.svg",
  38545. extra: 1900/1735,
  38546. bottom: 63/1963
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Normal",
  38553. height: math.unit(6 + 8/12, "feet"),
  38554. default: true
  38555. },
  38556. ]
  38557. ))
  38558. characterMakers.push(() => makeCharacter(
  38559. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38560. {
  38561. back: {
  38562. height: math.unit(4 + 1/12, "feet"),
  38563. weight: math.unit(75, "lb"),
  38564. name: "Back",
  38565. image: {
  38566. source: "./media/characters/rhett/back.svg",
  38567. extra: 930/878,
  38568. bottom: 25/955
  38569. }
  38570. },
  38571. front: {
  38572. height: math.unit(4 + 1/12, "feet"),
  38573. weight: math.unit(75, "lb"),
  38574. name: "Front",
  38575. image: {
  38576. source: "./media/characters/rhett/front.svg",
  38577. extra: 1682/1586,
  38578. bottom: 92/1774
  38579. }
  38580. },
  38581. },
  38582. [
  38583. {
  38584. name: "Micro",
  38585. height: math.unit(8, "inches")
  38586. },
  38587. {
  38588. name: "Tiny",
  38589. height: math.unit(2, "feet")
  38590. },
  38591. {
  38592. name: "Normal",
  38593. height: math.unit(4 + 1/12, "feet"),
  38594. default: true
  38595. },
  38596. ]
  38597. ))
  38598. characterMakers.push(() => makeCharacter(
  38599. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38600. {
  38601. front: {
  38602. height: math.unit(3 + 3/12, "feet"),
  38603. name: "Front",
  38604. image: {
  38605. source: "./media/characters/penny/front.svg",
  38606. extra: 1406/1311,
  38607. bottom: 26/1432
  38608. }
  38609. },
  38610. },
  38611. [
  38612. {
  38613. name: "Normal",
  38614. height: math.unit(3 + 3/12, "feet"),
  38615. default: true
  38616. },
  38617. ]
  38618. ))
  38619. characterMakers.push(() => makeCharacter(
  38620. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38621. {
  38622. front: {
  38623. height: math.unit(4 + 11/12, "feet"),
  38624. name: "Front",
  38625. image: {
  38626. source: "./media/characters/monty/front.svg",
  38627. extra: 1479/1209,
  38628. bottom: 0/1479
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(4 + 11/12, "feet"),
  38636. default: true
  38637. },
  38638. ]
  38639. ))
  38640. characterMakers.push(() => makeCharacter(
  38641. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38642. {
  38643. front: {
  38644. height: math.unit(8 + 4/12, "feet"),
  38645. name: "Front",
  38646. image: {
  38647. source: "./media/characters/sterling/front.svg",
  38648. extra: 1420/1236,
  38649. bottom: 27/1447
  38650. }
  38651. },
  38652. },
  38653. [
  38654. {
  38655. name: "Normal",
  38656. height: math.unit(8 + 4/12, "feet"),
  38657. default: true
  38658. },
  38659. ]
  38660. ))
  38661. characterMakers.push(() => makeCharacter(
  38662. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38663. {
  38664. front: {
  38665. height: math.unit(15, "feet"),
  38666. name: "Front",
  38667. image: {
  38668. source: "./media/characters/marble/front.svg",
  38669. extra: 973/937,
  38670. bottom: 32/1005
  38671. }
  38672. },
  38673. },
  38674. [
  38675. {
  38676. name: "Normal",
  38677. height: math.unit(15, "feet"),
  38678. default: true
  38679. },
  38680. ]
  38681. ))
  38682. characterMakers.push(() => makeCharacter(
  38683. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38684. {
  38685. front: {
  38686. height: math.unit(3, "inches"),
  38687. name: "Front",
  38688. image: {
  38689. source: "./media/characters/powder/front.svg",
  38690. extra: 1504/1334,
  38691. bottom: 518/2022
  38692. }
  38693. },
  38694. },
  38695. [
  38696. {
  38697. name: "Normal",
  38698. height: math.unit(3, "inches"),
  38699. default: true
  38700. },
  38701. ]
  38702. ))
  38703. characterMakers.push(() => makeCharacter(
  38704. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38705. {
  38706. front: {
  38707. height: math.unit(4 + 5/12, "feet"),
  38708. name: "Front",
  38709. image: {
  38710. source: "./media/characters/joey-raccoon/front.svg",
  38711. extra: 1273/1197,
  38712. bottom: 0/1273
  38713. }
  38714. },
  38715. },
  38716. [
  38717. {
  38718. name: "Normal",
  38719. height: math.unit(4 + 5/12, "feet"),
  38720. default: true
  38721. },
  38722. ]
  38723. ))
  38724. characterMakers.push(() => makeCharacter(
  38725. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38726. {
  38727. front: {
  38728. height: math.unit(8 + 4/12, "feet"),
  38729. name: "Front",
  38730. image: {
  38731. source: "./media/characters/vick/front.svg",
  38732. extra: 2187/2118,
  38733. bottom: 47/2234
  38734. }
  38735. },
  38736. },
  38737. [
  38738. {
  38739. name: "Normal",
  38740. height: math.unit(8 + 4/12, "feet"),
  38741. default: true
  38742. },
  38743. ]
  38744. ))
  38745. characterMakers.push(() => makeCharacter(
  38746. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38747. {
  38748. front: {
  38749. height: math.unit(5 + 5/12, "feet"),
  38750. name: "Front",
  38751. image: {
  38752. source: "./media/characters/mitsy/front.svg",
  38753. extra: 1842/1695,
  38754. bottom: 0/1842
  38755. }
  38756. },
  38757. },
  38758. [
  38759. {
  38760. name: "Normal",
  38761. height: math.unit(5 + 5/12, "feet"),
  38762. default: true
  38763. },
  38764. ]
  38765. ))
  38766. characterMakers.push(() => makeCharacter(
  38767. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38768. {
  38769. front: {
  38770. height: math.unit(6 + 3/12, "feet"),
  38771. name: "Front",
  38772. image: {
  38773. source: "./media/characters/silvy/front.svg",
  38774. extra: 1995/1836,
  38775. bottom: 225/2220
  38776. }
  38777. },
  38778. },
  38779. [
  38780. {
  38781. name: "Normal",
  38782. height: math.unit(6 + 3/12, "feet"),
  38783. default: true
  38784. },
  38785. ]
  38786. ))
  38787. characterMakers.push(() => makeCharacter(
  38788. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38789. {
  38790. front: {
  38791. height: math.unit(3 + 8/12, "feet"),
  38792. name: "Front",
  38793. image: {
  38794. source: "./media/characters/rodney/front.svg",
  38795. extra: 1956/1747,
  38796. bottom: 31/1987
  38797. }
  38798. },
  38799. frontDressed: {
  38800. height: math.unit(2.9, "feet"),
  38801. name: "Front (Dressed)",
  38802. image: {
  38803. source: "./media/characters/rodney/front-dressed.svg",
  38804. extra: 1382/1241,
  38805. bottom: 385/1767
  38806. }
  38807. },
  38808. },
  38809. [
  38810. {
  38811. name: "Normal",
  38812. height: math.unit(3 + 8/12, "feet"),
  38813. default: true
  38814. },
  38815. ]
  38816. ))
  38817. characterMakers.push(() => makeCharacter(
  38818. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38819. {
  38820. front: {
  38821. height: math.unit(5 + 9/12, "feet"),
  38822. weight: math.unit(194, "lbs"),
  38823. name: "Front",
  38824. image: {
  38825. source: "./media/characters/zakail-sudekai/front.svg",
  38826. extra: 2696/2533,
  38827. bottom: 248/2944
  38828. }
  38829. },
  38830. maw: {
  38831. height: math.unit(1.35, "feet"),
  38832. name: "Maw",
  38833. image: {
  38834. source: "./media/characters/zakail-sudekai/maw.svg"
  38835. }
  38836. },
  38837. },
  38838. [
  38839. {
  38840. name: "Normal",
  38841. height: math.unit(5 + 9/12, "feet"),
  38842. default: true
  38843. },
  38844. ]
  38845. ))
  38846. characterMakers.push(() => makeCharacter(
  38847. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38848. {
  38849. front: {
  38850. height: math.unit(8 + 4/12, "feet"),
  38851. weight: math.unit(1200, "lb"),
  38852. name: "Front",
  38853. image: {
  38854. source: "./media/characters/eleanor/front.svg",
  38855. extra: 1226/1192,
  38856. bottom: 52/1278
  38857. }
  38858. },
  38859. back: {
  38860. height: math.unit(8 + 4/12, "feet"),
  38861. weight: math.unit(1200, "lb"),
  38862. name: "Back",
  38863. image: {
  38864. source: "./media/characters/eleanor/back.svg",
  38865. extra: 1242/1184,
  38866. bottom: 60/1302
  38867. }
  38868. },
  38869. head: {
  38870. height: math.unit(2.62, "feet"),
  38871. name: "Head",
  38872. image: {
  38873. source: "./media/characters/eleanor/head.svg"
  38874. }
  38875. },
  38876. },
  38877. [
  38878. {
  38879. name: "Normal",
  38880. height: math.unit(8 + 4/12, "feet"),
  38881. default: true
  38882. },
  38883. ]
  38884. ))
  38885. characterMakers.push(() => makeCharacter(
  38886. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38887. {
  38888. front: {
  38889. height: math.unit(8 + 4/12, "feet"),
  38890. weight: math.unit(750, "lb"),
  38891. name: "Front",
  38892. image: {
  38893. source: "./media/characters/tanya/front.svg",
  38894. extra: 1749/1615,
  38895. bottom: 33/1782
  38896. }
  38897. },
  38898. },
  38899. [
  38900. {
  38901. name: "Normal",
  38902. height: math.unit(8 + 4/12, "feet"),
  38903. default: true
  38904. },
  38905. ]
  38906. ))
  38907. characterMakers.push(() => makeCharacter(
  38908. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38909. {
  38910. front: {
  38911. height: math.unit(5, "feet"),
  38912. weight: math.unit(225, "lb"),
  38913. name: "Front",
  38914. image: {
  38915. source: "./media/characters/cindy/front.svg",
  38916. extra: 1320/1250,
  38917. bottom: 42/1362
  38918. }
  38919. },
  38920. frontDressed: {
  38921. height: math.unit(5, "feet"),
  38922. weight: math.unit(225, "lb"),
  38923. name: "Front (Dressed)",
  38924. image: {
  38925. source: "./media/characters/cindy/front-dressed.svg",
  38926. extra: 1320/1250,
  38927. bottom: 42/1362
  38928. }
  38929. },
  38930. back: {
  38931. height: math.unit(5, "feet"),
  38932. weight: math.unit(225, "lb"),
  38933. name: "Back",
  38934. image: {
  38935. source: "./media/characters/cindy/back.svg",
  38936. extra: 1384/1346,
  38937. bottom: 14/1398
  38938. }
  38939. },
  38940. },
  38941. [
  38942. {
  38943. name: "Normal",
  38944. height: math.unit(5, "feet"),
  38945. default: true
  38946. },
  38947. ]
  38948. ))
  38949. characterMakers.push(() => makeCharacter(
  38950. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38951. {
  38952. front: {
  38953. height: math.unit(6 + 9/12, "feet"),
  38954. weight: math.unit(440, "lb"),
  38955. name: "Front",
  38956. image: {
  38957. source: "./media/characters/wilbur-owen/front.svg",
  38958. extra: 1575/1448,
  38959. bottom: 72/1647
  38960. }
  38961. },
  38962. back: {
  38963. height: math.unit(6 + 9/12, "feet"),
  38964. weight: math.unit(440, "lb"),
  38965. name: "Back",
  38966. image: {
  38967. source: "./media/characters/wilbur-owen/back.svg",
  38968. extra: 1578/1445,
  38969. bottom: 36/1614
  38970. }
  38971. },
  38972. },
  38973. [
  38974. {
  38975. name: "Normal",
  38976. height: math.unit(6 + 9/12, "feet"),
  38977. default: true
  38978. },
  38979. ]
  38980. ))
  38981. characterMakers.push(() => makeCharacter(
  38982. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38983. {
  38984. front: {
  38985. height: math.unit(6 + 5/12, "feet"),
  38986. weight: math.unit(650, "lb"),
  38987. name: "Front",
  38988. image: {
  38989. source: "./media/characters/keegan/front.svg",
  38990. extra: 2387/2198,
  38991. bottom: 33/2420
  38992. }
  38993. },
  38994. side: {
  38995. height: math.unit(6 + 5/12, "feet"),
  38996. weight: math.unit(650, "lb"),
  38997. name: "Side",
  38998. image: {
  38999. source: "./media/characters/keegan/side.svg",
  39000. extra: 2390/2202,
  39001. bottom: 47/2437
  39002. }
  39003. },
  39004. back: {
  39005. height: math.unit(6 + 5/12, "feet"),
  39006. weight: math.unit(650, "lb"),
  39007. name: "Back",
  39008. image: {
  39009. source: "./media/characters/keegan/back.svg",
  39010. extra: 2418/2268,
  39011. bottom: 15/2433
  39012. }
  39013. },
  39014. frontSfw: {
  39015. height: math.unit(6 + 5/12, "feet"),
  39016. weight: math.unit(650, "lb"),
  39017. name: "Front (SFW)",
  39018. image: {
  39019. source: "./media/characters/keegan/front-sfw.svg",
  39020. extra: 2387/2198,
  39021. bottom: 33/2420
  39022. }
  39023. },
  39024. beans: {
  39025. height: math.unit(1.85, "feet"),
  39026. name: "Beans",
  39027. image: {
  39028. source: "./media/characters/keegan/beans.svg"
  39029. }
  39030. },
  39031. },
  39032. [
  39033. {
  39034. name: "Normal",
  39035. height: math.unit(6 + 5/12, "feet"),
  39036. default: true
  39037. },
  39038. ]
  39039. ))
  39040. characterMakers.push(() => makeCharacter(
  39041. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39042. {
  39043. front: {
  39044. height: math.unit(9, "feet"),
  39045. name: "Front",
  39046. image: {
  39047. source: "./media/characters/colton/front.svg",
  39048. extra: 1589/1326,
  39049. bottom: 139/1728
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Normal",
  39056. height: math.unit(9, "feet"),
  39057. default: true
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(2 + 9/12, "feet"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/bora/front.svg",
  39069. extra: 1265/1250,
  39070. bottom: 24/1289
  39071. }
  39072. },
  39073. },
  39074. [
  39075. {
  39076. name: "Normal",
  39077. height: math.unit(2 + 9/12, "feet"),
  39078. default: true
  39079. },
  39080. ]
  39081. ))
  39082. characterMakers.push(() => makeCharacter(
  39083. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39084. {
  39085. front: {
  39086. height: math.unit(8, "feet"),
  39087. name: "Front",
  39088. image: {
  39089. source: "./media/characters/myu-myu/front.svg",
  39090. extra: 1949/1857,
  39091. bottom: 90/2039
  39092. }
  39093. },
  39094. },
  39095. [
  39096. {
  39097. name: "Normal",
  39098. height: math.unit(8, "feet"),
  39099. default: true
  39100. },
  39101. {
  39102. name: "Big",
  39103. height: math.unit(15, "feet")
  39104. },
  39105. {
  39106. name: "BIG",
  39107. height: math.unit(25, "feet")
  39108. },
  39109. ]
  39110. ))
  39111. characterMakers.push(() => makeCharacter(
  39112. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39113. {
  39114. side: {
  39115. height: math.unit(7 + 5/12, "feet"),
  39116. weight: math.unit(2800, "lb"),
  39117. name: "Side",
  39118. image: {
  39119. source: "./media/characters/haloren/side.svg",
  39120. extra: 1793/409,
  39121. bottom: 59/1852
  39122. }
  39123. },
  39124. frontPaw: {
  39125. height: math.unit(2.36, "feet"),
  39126. name: "Front paw",
  39127. image: {
  39128. source: "./media/characters/haloren/front-paw.svg"
  39129. }
  39130. },
  39131. hindPaw: {
  39132. height: math.unit(3.18, "feet"),
  39133. name: "Hind paw",
  39134. image: {
  39135. source: "./media/characters/haloren/hind-paw.svg"
  39136. }
  39137. },
  39138. maw: {
  39139. height: math.unit(5.05, "feet"),
  39140. name: "Maw",
  39141. image: {
  39142. source: "./media/characters/haloren/maw.svg"
  39143. }
  39144. },
  39145. dick: {
  39146. height: math.unit(2.90, "feet"),
  39147. name: "Dick",
  39148. image: {
  39149. source: "./media/characters/haloren/dick.svg"
  39150. }
  39151. },
  39152. },
  39153. [
  39154. {
  39155. name: "Normal",
  39156. height: math.unit(7 + 5/12, "feet"),
  39157. default: true
  39158. },
  39159. {
  39160. name: "Enhanced",
  39161. height: math.unit(14 + 3/12, "feet")
  39162. },
  39163. ]
  39164. ))
  39165. characterMakers.push(() => makeCharacter(
  39166. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39167. {
  39168. front: {
  39169. height: math.unit(171, "cm"),
  39170. name: "Front",
  39171. image: {
  39172. source: "./media/characters/kimmy/front.svg",
  39173. extra: 1491/1435,
  39174. bottom: 53/1544
  39175. }
  39176. },
  39177. },
  39178. [
  39179. {
  39180. name: "Small",
  39181. height: math.unit(9, "cm")
  39182. },
  39183. {
  39184. name: "Normal",
  39185. height: math.unit(171, "cm"),
  39186. default: true
  39187. },
  39188. ]
  39189. ))
  39190. characterMakers.push(() => makeCharacter(
  39191. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39192. {
  39193. front: {
  39194. height: math.unit(8, "feet"),
  39195. weight: math.unit(300, "lb"),
  39196. name: "Front",
  39197. image: {
  39198. source: "./media/characters/galeboomer/front.svg",
  39199. extra: 4651/4415,
  39200. bottom: 162/4813
  39201. }
  39202. },
  39203. back: {
  39204. height: math.unit(8, "feet"),
  39205. weight: math.unit(300, "lb"),
  39206. name: "Back",
  39207. image: {
  39208. source: "./media/characters/galeboomer/back.svg",
  39209. extra: 4544/4314,
  39210. bottom: 16/4560
  39211. }
  39212. },
  39213. frontAlt: {
  39214. height: math.unit(8, "feet"),
  39215. weight: math.unit(300, "lb"),
  39216. name: "Front (Alt)",
  39217. image: {
  39218. source: "./media/characters/galeboomer/front-alt.svg",
  39219. extra: 4458/4228,
  39220. bottom: 68/4526
  39221. }
  39222. },
  39223. maw: {
  39224. height: math.unit(1.2, "feet"),
  39225. name: "Maw",
  39226. image: {
  39227. source: "./media/characters/galeboomer/maw.svg"
  39228. }
  39229. },
  39230. },
  39231. [
  39232. {
  39233. name: "Normal",
  39234. height: math.unit(8, "feet"),
  39235. default: true
  39236. },
  39237. ]
  39238. ))
  39239. characterMakers.push(() => makeCharacter(
  39240. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39241. {
  39242. front: {
  39243. height: math.unit(5 + 9/12, "feet"),
  39244. weight: math.unit(120, "lb"),
  39245. name: "Front",
  39246. image: {
  39247. source: "./media/characters/chyr/front.svg",
  39248. extra: 1323/1254,
  39249. bottom: 63/1386
  39250. }
  39251. },
  39252. back: {
  39253. height: math.unit(5 + 9/12, "feet"),
  39254. weight: math.unit(120, "lb"),
  39255. name: "Back",
  39256. image: {
  39257. source: "./media/characters/chyr/back.svg",
  39258. extra: 1323/1252,
  39259. bottom: 48/1371
  39260. }
  39261. },
  39262. },
  39263. [
  39264. {
  39265. name: "Normal",
  39266. height: math.unit(5 + 9/12, "feet"),
  39267. default: true
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39273. {
  39274. front: {
  39275. height: math.unit(7, "feet"),
  39276. weight: math.unit(310, "lb"),
  39277. name: "Front",
  39278. image: {
  39279. source: "./media/characters/solarus/front.svg",
  39280. extra: 2415/2021,
  39281. bottom: 103/2518
  39282. }
  39283. },
  39284. back: {
  39285. height: math.unit(7, "feet"),
  39286. weight: math.unit(310, "lb"),
  39287. name: "Back",
  39288. image: {
  39289. source: "./media/characters/solarus/back.svg",
  39290. extra: 2463/2089,
  39291. bottom: 79/2542
  39292. }
  39293. },
  39294. },
  39295. [
  39296. {
  39297. name: "Normal",
  39298. height: math.unit(7, "feet"),
  39299. default: true
  39300. },
  39301. ]
  39302. ))
  39303. characterMakers.push(() => makeCharacter(
  39304. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39305. {
  39306. front: {
  39307. height: math.unit(16, "feet"),
  39308. name: "Front",
  39309. image: {
  39310. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39311. extra: 1844/1780,
  39312. bottom: 58/1902
  39313. }
  39314. },
  39315. winterCoat: {
  39316. height: math.unit(16, "feet"),
  39317. name: "Winter Coat",
  39318. image: {
  39319. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39320. extra: 1807/1775,
  39321. bottom: 69/1876
  39322. }
  39323. },
  39324. },
  39325. [
  39326. {
  39327. name: "Normal",
  39328. height: math.unit(16, "feet"),
  39329. default: true
  39330. },
  39331. {
  39332. name: "Chicago Size",
  39333. height: math.unit(560, "feet")
  39334. },
  39335. ]
  39336. ))
  39337. characterMakers.push(() => makeCharacter(
  39338. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39339. {
  39340. front: {
  39341. height: math.unit(11 + 6/12, "feet"),
  39342. weight: math.unit(1366, "lb"),
  39343. name: "Front",
  39344. image: {
  39345. source: "./media/characters/lexor/front.svg",
  39346. extra: 1560/1481,
  39347. bottom: 211/1771
  39348. }
  39349. },
  39350. back: {
  39351. height: math.unit(11 + 6/12, "feet"),
  39352. weight: math.unit(1366, "lb"),
  39353. name: "Back",
  39354. image: {
  39355. source: "./media/characters/lexor/back.svg",
  39356. extra: 1614/1533,
  39357. bottom: 76/1690
  39358. }
  39359. },
  39360. maw: {
  39361. height: math.unit(3, "feet"),
  39362. name: "Maw",
  39363. image: {
  39364. source: "./media/characters/lexor/maw.svg"
  39365. }
  39366. },
  39367. dick: {
  39368. height: math.unit(2.59, "feet"),
  39369. name: "Dick",
  39370. image: {
  39371. source: "./media/characters/lexor/dick.svg"
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "Normal",
  39378. height: math.unit(11 + 6/12, "feet"),
  39379. default: true
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39385. {
  39386. front: {
  39387. height: math.unit(5 + 8/12, "feet"),
  39388. name: "Front",
  39389. image: {
  39390. source: "./media/characters/magnum/front.svg",
  39391. extra: 942/855,
  39392. bottom: 26/968
  39393. }
  39394. },
  39395. },
  39396. [
  39397. {
  39398. name: "Normal",
  39399. height: math.unit(5 + 8/12, "feet"),
  39400. default: true
  39401. },
  39402. ]
  39403. ))
  39404. characterMakers.push(() => makeCharacter(
  39405. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39406. {
  39407. front: {
  39408. height: math.unit(18 + 4/12, "feet"),
  39409. weight: math.unit(1500, "kg"),
  39410. name: "Front",
  39411. image: {
  39412. source: "./media/characters/solas-sharpsman/front.svg",
  39413. extra: 1698/1589,
  39414. bottom: 0/1698
  39415. }
  39416. },
  39417. },
  39418. [
  39419. {
  39420. name: "Normal",
  39421. height: math.unit(18 + 4/12, "feet"),
  39422. default: true
  39423. },
  39424. ]
  39425. ))
  39426. characterMakers.push(() => makeCharacter(
  39427. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39428. {
  39429. front: {
  39430. height: math.unit(5 + 5/12, "feet"),
  39431. weight: math.unit(180, "lb"),
  39432. name: "Front",
  39433. image: {
  39434. source: "./media/characters/october/front.svg",
  39435. extra: 1800/1650,
  39436. bottom: 0/1800
  39437. }
  39438. },
  39439. frontNsfw: {
  39440. height: math.unit(5 + 5/12, "feet"),
  39441. weight: math.unit(180, "lb"),
  39442. name: "Front (NSFW)",
  39443. image: {
  39444. source: "./media/characters/october/front-nsfw.svg",
  39445. extra: 1392/1307,
  39446. bottom: 42/1434
  39447. }
  39448. },
  39449. },
  39450. [
  39451. {
  39452. name: "Normal",
  39453. height: math.unit(5 + 5/12, "feet"),
  39454. default: true
  39455. },
  39456. ]
  39457. ))
  39458. characterMakers.push(() => makeCharacter(
  39459. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39460. {
  39461. front: {
  39462. height: math.unit(8 + 6/12, "feet"),
  39463. name: "Front",
  39464. image: {
  39465. source: "./media/characters/essynkardi/front.svg",
  39466. extra: 1541/1457,
  39467. bottom: 47/1588
  39468. }
  39469. },
  39470. },
  39471. [
  39472. {
  39473. name: "Normal",
  39474. height: math.unit(8 + 6/12, "feet"),
  39475. default: true
  39476. },
  39477. ]
  39478. ))
  39479. characterMakers.push(() => makeCharacter(
  39480. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39481. {
  39482. front: {
  39483. height: math.unit(6 + 6/12, "feet"),
  39484. weight: math.unit(7, "lb"),
  39485. name: "Front",
  39486. image: {
  39487. source: "./media/characters/icky/front.svg",
  39488. extra: 813/782,
  39489. bottom: 66/879
  39490. }
  39491. },
  39492. back: {
  39493. height: math.unit(6 + 6/12, "feet"),
  39494. weight: math.unit(7, "lb"),
  39495. name: "Back",
  39496. image: {
  39497. source: "./media/characters/icky/back.svg",
  39498. extra: 754/735,
  39499. bottom: 56/810
  39500. }
  39501. },
  39502. },
  39503. [
  39504. {
  39505. name: "Normal",
  39506. height: math.unit(6 + 6/12, "feet"),
  39507. default: true
  39508. },
  39509. ]
  39510. ))
  39511. characterMakers.push(() => makeCharacter(
  39512. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39513. {
  39514. front: {
  39515. height: math.unit(15, "feet"),
  39516. name: "Front",
  39517. image: {
  39518. source: "./media/characters/rojas/front.svg",
  39519. extra: 1462/1408,
  39520. bottom: 95/1557
  39521. }
  39522. },
  39523. back: {
  39524. height: math.unit(15, "feet"),
  39525. name: "Back",
  39526. image: {
  39527. source: "./media/characters/rojas/back.svg",
  39528. extra: 1023/954,
  39529. bottom: 28/1051
  39530. }
  39531. },
  39532. },
  39533. [
  39534. {
  39535. name: "Normal",
  39536. height: math.unit(15, "feet"),
  39537. default: true
  39538. },
  39539. ]
  39540. ))
  39541. characterMakers.push(() => makeCharacter(
  39542. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39543. {
  39544. frontHuman: {
  39545. height: math.unit(5 + 7/12, "feet"),
  39546. name: "Front (Human)",
  39547. image: {
  39548. source: "./media/characters/alek-dryagan/front-human.svg",
  39549. extra: 1687/1667,
  39550. bottom: 69/1756
  39551. }
  39552. },
  39553. backHuman: {
  39554. height: math.unit(5 + 7/12, "feet"),
  39555. name: "Back (Human)",
  39556. image: {
  39557. source: "./media/characters/alek-dryagan/back-human.svg",
  39558. extra: 1670/1649,
  39559. bottom: 65/1735
  39560. }
  39561. },
  39562. frontDemi: {
  39563. height: math.unit(65, "feet"),
  39564. name: "Front (Demi)",
  39565. image: {
  39566. source: "./media/characters/alek-dryagan/front-demi.svg",
  39567. extra: 1669/1642,
  39568. bottom: 49/1718
  39569. }
  39570. },
  39571. backDemi: {
  39572. height: math.unit(65, "feet"),
  39573. name: "Back (Demi)",
  39574. image: {
  39575. source: "./media/characters/alek-dryagan/back-demi.svg",
  39576. extra: 1658/1637,
  39577. bottom: 40/1698
  39578. }
  39579. },
  39580. mawHuman: {
  39581. height: math.unit(0.3, "feet"),
  39582. name: "Maw (Human)",
  39583. image: {
  39584. source: "./media/characters/alek-dryagan/maw-human.svg"
  39585. }
  39586. },
  39587. mawDemi: {
  39588. height: math.unit(3.8, "feet"),
  39589. name: "Maw (Demi)",
  39590. image: {
  39591. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39592. }
  39593. },
  39594. },
  39595. [
  39596. {
  39597. name: "Normal",
  39598. height: math.unit(5 + 7/12, "feet"),
  39599. default: true
  39600. },
  39601. ]
  39602. ))
  39603. characterMakers.push(() => makeCharacter(
  39604. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39605. {
  39606. frontHuman: {
  39607. height: math.unit(5 + 2/12, "feet"),
  39608. name: "Front (Human)",
  39609. image: {
  39610. source: "./media/characters/gen/front-human.svg",
  39611. extra: 1627/1538,
  39612. bottom: 71/1698
  39613. }
  39614. },
  39615. backHuman: {
  39616. height: math.unit(5 + 2/12, "feet"),
  39617. name: "Back (Human)",
  39618. image: {
  39619. source: "./media/characters/gen/back-human.svg",
  39620. extra: 1638/1548,
  39621. bottom: 69/1707
  39622. }
  39623. },
  39624. frontDemi: {
  39625. height: math.unit(5 + 2/12, "feet"),
  39626. name: "Front (Demi)",
  39627. image: {
  39628. source: "./media/characters/gen/front-demi.svg",
  39629. extra: 1627/1538,
  39630. bottom: 71/1698
  39631. }
  39632. },
  39633. backDemi: {
  39634. height: math.unit(5 + 2/12, "feet"),
  39635. name: "Back (Demi)",
  39636. image: {
  39637. source: "./media/characters/gen/back-demi.svg",
  39638. extra: 1638/1548,
  39639. bottom: 69/1707
  39640. }
  39641. },
  39642. },
  39643. [
  39644. {
  39645. name: "Normal",
  39646. height: math.unit(5 + 2/12, "feet"),
  39647. default: true
  39648. },
  39649. ]
  39650. ))
  39651. characterMakers.push(() => makeCharacter(
  39652. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39653. {
  39654. frontImp: {
  39655. height: math.unit(1 + 11/12, "feet"),
  39656. name: "Front (Imp)",
  39657. image: {
  39658. source: "./media/characters/max-kobold/front-imp.svg",
  39659. extra: 1238/1134,
  39660. bottom: 81/1319
  39661. }
  39662. },
  39663. backImp: {
  39664. height: math.unit(1 + 11/12, "feet"),
  39665. name: "Back (Imp)",
  39666. image: {
  39667. source: "./media/characters/max-kobold/back-imp.svg",
  39668. extra: 1334/1175,
  39669. bottom: 34/1368
  39670. }
  39671. },
  39672. frontDemi: {
  39673. height: math.unit(5 + 9/12, "feet"),
  39674. name: "Front (Demi)",
  39675. image: {
  39676. source: "./media/characters/max-kobold/front-demi.svg",
  39677. extra: 1715/1685,
  39678. bottom: 54/1769
  39679. }
  39680. },
  39681. backDemi: {
  39682. height: math.unit(5 + 9/12, "feet"),
  39683. name: "Back (Demi)",
  39684. image: {
  39685. source: "./media/characters/max-kobold/back-demi.svg",
  39686. extra: 1752/1729,
  39687. bottom: 41/1793
  39688. }
  39689. },
  39690. handImp: {
  39691. height: math.unit(0.45, "feet"),
  39692. name: "Hand (Imp)",
  39693. image: {
  39694. source: "./media/characters/max-kobold/hand.svg"
  39695. }
  39696. },
  39697. pawImp: {
  39698. height: math.unit(0.46, "feet"),
  39699. name: "Paw (Imp)",
  39700. image: {
  39701. source: "./media/characters/max-kobold/paw.svg"
  39702. }
  39703. },
  39704. handDemi: {
  39705. height: math.unit(0.80, "feet"),
  39706. name: "Hand (Demi)",
  39707. image: {
  39708. source: "./media/characters/max-kobold/hand.svg"
  39709. }
  39710. },
  39711. pawDemi: {
  39712. height: math.unit(1.1, "feet"),
  39713. name: "Paw (Demi)",
  39714. image: {
  39715. source: "./media/characters/max-kobold/paw.svg"
  39716. }
  39717. },
  39718. headImp: {
  39719. height: math.unit(1.33, "feet"),
  39720. name: "Head (Imp)",
  39721. image: {
  39722. source: "./media/characters/max-kobold/head-imp.svg"
  39723. }
  39724. },
  39725. mawImp: {
  39726. height: math.unit(0.75, "feet"),
  39727. name: "Maw (Imp)",
  39728. image: {
  39729. source: "./media/characters/max-kobold/maw-imp.svg"
  39730. }
  39731. },
  39732. mawDemi: {
  39733. height: math.unit(0.42, "feet"),
  39734. name: "Maw (Demi)",
  39735. image: {
  39736. source: "./media/characters/max-kobold/maw-demi.svg"
  39737. }
  39738. },
  39739. },
  39740. [
  39741. {
  39742. name: "Normal",
  39743. height: math.unit(1 + 11/12, "feet"),
  39744. default: true
  39745. },
  39746. ]
  39747. ))
  39748. characterMakers.push(() => makeCharacter(
  39749. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39750. {
  39751. front: {
  39752. height: math.unit(7 + 5/12, "feet"),
  39753. name: "Front",
  39754. image: {
  39755. source: "./media/characters/carbon/front.svg",
  39756. extra: 1754/1689,
  39757. bottom: 65/1819
  39758. }
  39759. },
  39760. back: {
  39761. height: math.unit(7 + 5/12, "feet"),
  39762. name: "Back",
  39763. image: {
  39764. source: "./media/characters/carbon/back.svg",
  39765. extra: 1762/1695,
  39766. bottom: 24/1786
  39767. }
  39768. },
  39769. frontGigantamax: {
  39770. height: math.unit(150, "feet"),
  39771. name: "Front (Gigantamax)",
  39772. image: {
  39773. source: "./media/characters/carbon/front-gigantamax.svg",
  39774. extra: 1826/1669,
  39775. bottom: 59/1885
  39776. }
  39777. },
  39778. backGigantamax: {
  39779. height: math.unit(150, "feet"),
  39780. name: "Back (Gigantamax)",
  39781. image: {
  39782. source: "./media/characters/carbon/back-gigantamax.svg",
  39783. extra: 1796/1653,
  39784. bottom: 53/1849
  39785. }
  39786. },
  39787. maw: {
  39788. height: math.unit(0.48, "feet"),
  39789. name: "Maw",
  39790. image: {
  39791. source: "./media/characters/carbon/maw.svg"
  39792. }
  39793. },
  39794. mawGigantamax: {
  39795. height: math.unit(7.5, "feet"),
  39796. name: "Maw (Gigantamax)",
  39797. image: {
  39798. source: "./media/characters/carbon/maw-gigantamax.svg"
  39799. }
  39800. },
  39801. },
  39802. [
  39803. {
  39804. name: "Normal",
  39805. height: math.unit(7 + 5/12, "feet"),
  39806. default: true
  39807. },
  39808. ]
  39809. ))
  39810. characterMakers.push(() => makeCharacter(
  39811. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39812. {
  39813. front: {
  39814. height: math.unit(6, "feet"),
  39815. name: "Front",
  39816. image: {
  39817. source: "./media/characters/maverick/front.svg",
  39818. extra: 1672/1661,
  39819. bottom: 85/1757
  39820. }
  39821. },
  39822. back: {
  39823. height: math.unit(6, "feet"),
  39824. name: "Back",
  39825. image: {
  39826. source: "./media/characters/maverick/back.svg",
  39827. extra: 1642/1631,
  39828. bottom: 38/1680
  39829. }
  39830. },
  39831. },
  39832. [
  39833. {
  39834. name: "Normal",
  39835. height: math.unit(6, "feet"),
  39836. default: true
  39837. },
  39838. ]
  39839. ))
  39840. characterMakers.push(() => makeCharacter(
  39841. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39842. {
  39843. front: {
  39844. height: math.unit(15, "feet"),
  39845. weight: math.unit(615, "lb"),
  39846. name: "Front",
  39847. image: {
  39848. source: "./media/characters/grockle/front.svg",
  39849. extra: 1535/1427,
  39850. bottom: 56/1591
  39851. }
  39852. },
  39853. },
  39854. [
  39855. {
  39856. name: "Normal",
  39857. height: math.unit(15, "feet"),
  39858. default: true
  39859. },
  39860. {
  39861. name: "Large",
  39862. height: math.unit(150, "feet")
  39863. },
  39864. {
  39865. name: "Macro",
  39866. height: math.unit(1876, "feet")
  39867. },
  39868. {
  39869. name: "Mega Macro",
  39870. height: math.unit(121940, "feet")
  39871. },
  39872. {
  39873. name: "Giga Macro",
  39874. height: math.unit(750, "km")
  39875. },
  39876. {
  39877. name: "Tera Macro",
  39878. height: math.unit(750000, "km")
  39879. },
  39880. {
  39881. name: "Galactic",
  39882. height: math.unit(1.4e5, "km")
  39883. },
  39884. {
  39885. name: "Godlike",
  39886. height: math.unit(9.8e280, "galaxies")
  39887. },
  39888. ]
  39889. ))
  39890. characterMakers.push(() => makeCharacter(
  39891. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39892. {
  39893. front: {
  39894. height: math.unit(11, "meters"),
  39895. weight: math.unit(20, "tonnes"),
  39896. name: "Front",
  39897. image: {
  39898. source: "./media/characters/alistair/front.svg",
  39899. extra: 1265/1009,
  39900. bottom: 93/1358
  39901. }
  39902. },
  39903. },
  39904. [
  39905. {
  39906. name: "Normal",
  39907. height: math.unit(11, "meters"),
  39908. default: true
  39909. },
  39910. ]
  39911. ))
  39912. characterMakers.push(() => makeCharacter(
  39913. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39914. {
  39915. front: {
  39916. height: math.unit(5 + 8/12, "feet"),
  39917. name: "Front",
  39918. image: {
  39919. source: "./media/characters/haruka/front.svg",
  39920. extra: 2012/1952,
  39921. bottom: 0/2012
  39922. }
  39923. },
  39924. },
  39925. [
  39926. {
  39927. name: "Normal",
  39928. height: math.unit(5 + 8/12, "feet"),
  39929. default: true
  39930. },
  39931. ]
  39932. ))
  39933. characterMakers.push(() => makeCharacter(
  39934. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39935. {
  39936. back: {
  39937. height: math.unit(9, "feet"),
  39938. name: "Back",
  39939. image: {
  39940. source: "./media/characters/vivian-sylveon/back.svg",
  39941. extra: 1853/1714,
  39942. bottom: 0/1853
  39943. }
  39944. },
  39945. hyper: {
  39946. height: math.unit(5.58, "feet"),
  39947. name: "Hyper",
  39948. preyCapacity: math.unit(2.80616218797, "m^3"),
  39949. image: {
  39950. source: "./media/characters/vivian-sylveon/hyper.svg",
  39951. extra: 999/676,
  39952. bottom: 697/1696
  39953. },
  39954. },
  39955. paw: {
  39956. height: math.unit(1.8, "feet"),
  39957. name: "Paw",
  39958. image: {
  39959. source: "./media/characters/vivian-sylveon/paw.svg"
  39960. }
  39961. },
  39962. danger: {
  39963. height: math.unit(7.5, "feet"),
  39964. name: "DANGER",
  39965. image: {
  39966. source: "./media/characters/vivian-sylveon/danger.svg"
  39967. }
  39968. },
  39969. },
  39970. [
  39971. {
  39972. name: "Normal",
  39973. height: math.unit(9, "feet"),
  39974. default: true
  39975. },
  39976. {
  39977. name: "Macro",
  39978. height: math.unit(500, "feet")
  39979. },
  39980. {
  39981. name: "Megamacro",
  39982. height: math.unit(600, "miles")
  39983. },
  39984. {
  39985. name: "Gigamacro",
  39986. height: math.unit(30000, "miles")
  39987. },
  39988. ]
  39989. ))
  39990. characterMakers.push(() => makeCharacter(
  39991. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39992. {
  39993. anthro: {
  39994. height: math.unit(5 + 10/12, "feet"),
  39995. weight: math.unit(100, "lb"),
  39996. name: "Anthro",
  39997. image: {
  39998. source: "./media/characters/daiki/anthro.svg",
  39999. extra: 1115/1027,
  40000. bottom: 69/1184
  40001. }
  40002. },
  40003. feral: {
  40004. height: math.unit(200, "feet"),
  40005. name: "Feral",
  40006. image: {
  40007. source: "./media/characters/daiki/feral.svg",
  40008. extra: 1256/313,
  40009. bottom: 39/1295
  40010. }
  40011. },
  40012. feralHead: {
  40013. height: math.unit(171, "feet"),
  40014. name: "Feral Head",
  40015. image: {
  40016. source: "./media/characters/daiki/feral-head.svg"
  40017. }
  40018. },
  40019. manaDragon: {
  40020. height: math.unit(170, "meters"),
  40021. name: "Mana-dragon",
  40022. image: {
  40023. source: "./media/characters/daiki/mana-dragon.svg",
  40024. extra: 763/420,
  40025. bottom: 97/860
  40026. }
  40027. },
  40028. },
  40029. [
  40030. {
  40031. name: "Normal",
  40032. height: math.unit(5 + 10/12, "feet"),
  40033. default: true
  40034. },
  40035. ]
  40036. ))
  40037. characterMakers.push(() => makeCharacter(
  40038. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40039. {
  40040. fullyEquippedFront: {
  40041. height: math.unit(3 + 1/12, "feet"),
  40042. weight: math.unit(24, "lb"),
  40043. name: "Fully Equipped (Front)",
  40044. image: {
  40045. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40046. extra: 687/605,
  40047. bottom: 18/705
  40048. }
  40049. },
  40050. fullyEquippedBack: {
  40051. height: math.unit(3 + 1/12, "feet"),
  40052. weight: math.unit(24, "lb"),
  40053. name: "Fully Equipped (Back)",
  40054. image: {
  40055. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40056. extra: 689/590,
  40057. bottom: 18/707
  40058. }
  40059. },
  40060. dailyWear: {
  40061. height: math.unit(3 + 1/12, "feet"),
  40062. weight: math.unit(24, "lb"),
  40063. name: "Daily Wear",
  40064. image: {
  40065. source: "./media/characters/tea-spot/daily-wear.svg",
  40066. extra: 701/620,
  40067. bottom: 21/722
  40068. }
  40069. },
  40070. maidWork: {
  40071. height: math.unit(3 + 1/12, "feet"),
  40072. weight: math.unit(24, "lb"),
  40073. name: "Maid Work",
  40074. image: {
  40075. source: "./media/characters/tea-spot/maid-work.svg",
  40076. extra: 693/609,
  40077. bottom: 15/708
  40078. }
  40079. },
  40080. },
  40081. [
  40082. {
  40083. name: "Normal",
  40084. height: math.unit(3 + 1/12, "feet"),
  40085. default: true
  40086. },
  40087. ]
  40088. ))
  40089. characterMakers.push(() => makeCharacter(
  40090. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40091. {
  40092. front: {
  40093. height: math.unit(175, "cm"),
  40094. weight: math.unit(75, "kg"),
  40095. name: "Front",
  40096. image: {
  40097. source: "./media/characters/chee/front.svg",
  40098. extra: 1796/1740,
  40099. bottom: 40/1836
  40100. }
  40101. },
  40102. },
  40103. [
  40104. {
  40105. name: "Micro-Micro",
  40106. height: math.unit(1, "nm")
  40107. },
  40108. {
  40109. name: "Micro-erst",
  40110. height: math.unit(1, "micrometer")
  40111. },
  40112. {
  40113. name: "Micro-er",
  40114. height: math.unit(1, "cm")
  40115. },
  40116. {
  40117. name: "Normal",
  40118. height: math.unit(175, "cm"),
  40119. default: true
  40120. },
  40121. {
  40122. name: "Macro",
  40123. height: math.unit(100, "m")
  40124. },
  40125. {
  40126. name: "Macro-er",
  40127. height: math.unit(1, "km")
  40128. },
  40129. {
  40130. name: "Macro-erst",
  40131. height: math.unit(10, "km")
  40132. },
  40133. {
  40134. name: "Macro-Macro",
  40135. height: math.unit(100, "km")
  40136. },
  40137. ]
  40138. ))
  40139. characterMakers.push(() => makeCharacter(
  40140. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40141. {
  40142. front: {
  40143. height: math.unit(11 + 9/12, "feet"),
  40144. weight: math.unit(935, "lb"),
  40145. name: "Front",
  40146. image: {
  40147. source: "./media/characters/kingsley/front.svg",
  40148. extra: 1803/1674,
  40149. bottom: 127/1930
  40150. }
  40151. },
  40152. frontNude: {
  40153. height: math.unit(11 + 9/12, "feet"),
  40154. weight: math.unit(935, "lb"),
  40155. name: "Front (Nude)",
  40156. image: {
  40157. source: "./media/characters/kingsley/front-nude.svg",
  40158. extra: 1803/1674,
  40159. bottom: 127/1930
  40160. }
  40161. },
  40162. },
  40163. [
  40164. {
  40165. name: "Normal",
  40166. height: math.unit(11 + 9/12, "feet"),
  40167. default: true
  40168. },
  40169. ]
  40170. ))
  40171. characterMakers.push(() => makeCharacter(
  40172. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40173. {
  40174. side: {
  40175. height: math.unit(9, "feet"),
  40176. name: "Side",
  40177. image: {
  40178. source: "./media/characters/rymel/side.svg",
  40179. extra: 792/469,
  40180. bottom: 121/913
  40181. }
  40182. },
  40183. maw: {
  40184. height: math.unit(2.4, "meters"),
  40185. name: "Maw",
  40186. image: {
  40187. source: "./media/characters/rymel/maw.svg"
  40188. }
  40189. },
  40190. },
  40191. [
  40192. {
  40193. name: "House Drake",
  40194. height: math.unit(2, "feet")
  40195. },
  40196. {
  40197. name: "Reduced",
  40198. height: math.unit(4.5, "feet")
  40199. },
  40200. {
  40201. name: "Normal",
  40202. height: math.unit(9, "feet"),
  40203. default: true
  40204. },
  40205. ]
  40206. ))
  40207. characterMakers.push(() => makeCharacter(
  40208. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40209. {
  40210. front: {
  40211. height: math.unit(1.74, "meters"),
  40212. weight: math.unit(55, "kg"),
  40213. name: "Front",
  40214. image: {
  40215. source: "./media/characters/rubus/front.svg",
  40216. extra: 1894/1742,
  40217. bottom: 44/1938
  40218. }
  40219. },
  40220. },
  40221. [
  40222. {
  40223. name: "Normal",
  40224. height: math.unit(1.74, "meters"),
  40225. default: true
  40226. },
  40227. ]
  40228. ))
  40229. characterMakers.push(() => makeCharacter(
  40230. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40231. {
  40232. front: {
  40233. height: math.unit(5 + 2/12, "feet"),
  40234. weight: math.unit(112, "lb"),
  40235. name: "Front",
  40236. image: {
  40237. source: "./media/characters/cassie-kingston/front.svg",
  40238. extra: 1438/1390,
  40239. bottom: 47/1485
  40240. }
  40241. },
  40242. },
  40243. [
  40244. {
  40245. name: "Normal",
  40246. height: math.unit(5 + 2/12, "feet"),
  40247. default: true
  40248. },
  40249. {
  40250. name: "Macro",
  40251. height: math.unit(128, "feet")
  40252. },
  40253. {
  40254. name: "Megamacro",
  40255. height: math.unit(2.56, "miles")
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(7, "feet"),
  40264. name: "Front",
  40265. image: {
  40266. source: "./media/characters/fox/front.svg",
  40267. extra: 1798/1703,
  40268. bottom: 55/1853
  40269. }
  40270. },
  40271. back: {
  40272. height: math.unit(7, "feet"),
  40273. name: "Back",
  40274. image: {
  40275. source: "./media/characters/fox/back.svg",
  40276. extra: 1748/1649,
  40277. bottom: 32/1780
  40278. }
  40279. },
  40280. head: {
  40281. height: math.unit(1.95, "feet"),
  40282. name: "Head",
  40283. image: {
  40284. source: "./media/characters/fox/head.svg"
  40285. }
  40286. },
  40287. dick: {
  40288. height: math.unit(1.33, "feet"),
  40289. name: "Dick",
  40290. image: {
  40291. source: "./media/characters/fox/dick.svg"
  40292. }
  40293. },
  40294. foot: {
  40295. height: math.unit(1, "feet"),
  40296. name: "Foot",
  40297. image: {
  40298. source: "./media/characters/fox/foot.svg"
  40299. }
  40300. },
  40301. paw: {
  40302. height: math.unit(0.92, "feet"),
  40303. name: "Paw",
  40304. image: {
  40305. source: "./media/characters/fox/paw.svg"
  40306. }
  40307. },
  40308. },
  40309. [
  40310. {
  40311. name: "Small",
  40312. height: math.unit(3, "inches")
  40313. },
  40314. {
  40315. name: "\"Realistic\"",
  40316. height: math.unit(7, "feet")
  40317. },
  40318. {
  40319. name: "Normal",
  40320. height: math.unit(150, "feet"),
  40321. default: true
  40322. },
  40323. {
  40324. name: "BIG",
  40325. height: math.unit(1200, "feet")
  40326. },
  40327. {
  40328. name: "👀",
  40329. height: math.unit(5, "miles")
  40330. },
  40331. {
  40332. name: "👀👀👀",
  40333. height: math.unit(64, "miles")
  40334. },
  40335. ]
  40336. ))
  40337. characterMakers.push(() => makeCharacter(
  40338. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40339. {
  40340. front: {
  40341. height: math.unit(625, "feet"),
  40342. name: "Front",
  40343. image: {
  40344. source: "./media/characters/asonja-rossa/front.svg",
  40345. extra: 1833/1686,
  40346. bottom: 24/1857
  40347. }
  40348. },
  40349. back: {
  40350. height: math.unit(625, "feet"),
  40351. name: "Back",
  40352. image: {
  40353. source: "./media/characters/asonja-rossa/back.svg",
  40354. extra: 1852/1753,
  40355. bottom: 26/1878
  40356. }
  40357. },
  40358. },
  40359. [
  40360. {
  40361. name: "Macro",
  40362. height: math.unit(625, "feet"),
  40363. default: true
  40364. },
  40365. ]
  40366. ))
  40367. characterMakers.push(() => makeCharacter(
  40368. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40369. {
  40370. side: {
  40371. height: math.unit(8, "feet"),
  40372. name: "Side",
  40373. image: {
  40374. source: "./media/characters/rezukii/side.svg",
  40375. extra: 979/542,
  40376. bottom: 87/1066
  40377. }
  40378. },
  40379. sitting: {
  40380. height: math.unit(14.6, "feet"),
  40381. name: "Sitting",
  40382. image: {
  40383. source: "./media/characters/rezukii/sitting.svg",
  40384. extra: 1023/813,
  40385. bottom: 45/1068
  40386. }
  40387. },
  40388. },
  40389. [
  40390. {
  40391. name: "Tiny",
  40392. height: math.unit(2, "feet")
  40393. },
  40394. {
  40395. name: "Smol",
  40396. height: math.unit(4, "feet")
  40397. },
  40398. {
  40399. name: "Normal",
  40400. height: math.unit(8, "feet"),
  40401. default: true
  40402. },
  40403. {
  40404. name: "Big",
  40405. height: math.unit(12, "feet")
  40406. },
  40407. {
  40408. name: "Macro",
  40409. height: math.unit(30, "feet")
  40410. },
  40411. ]
  40412. ))
  40413. characterMakers.push(() => makeCharacter(
  40414. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40415. {
  40416. front: {
  40417. height: math.unit(14, "feet"),
  40418. weight: math.unit(9.5, "tonnes"),
  40419. name: "Front",
  40420. image: {
  40421. source: "./media/characters/dawnheart/front.svg",
  40422. extra: 2792/2675,
  40423. bottom: 64/2856
  40424. }
  40425. },
  40426. },
  40427. [
  40428. {
  40429. name: "Normal",
  40430. height: math.unit(14, "feet"),
  40431. default: true
  40432. },
  40433. ]
  40434. ))
  40435. characterMakers.push(() => makeCharacter(
  40436. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40437. {
  40438. front: {
  40439. height: math.unit(1.7, "m"),
  40440. name: "Front",
  40441. image: {
  40442. source: "./media/characters/gladi/front.svg",
  40443. extra: 1460/1362,
  40444. bottom: 19/1479
  40445. }
  40446. },
  40447. back: {
  40448. height: math.unit(1.7, "m"),
  40449. name: "Back",
  40450. image: {
  40451. source: "./media/characters/gladi/back.svg",
  40452. extra: 1459/1357,
  40453. bottom: 12/1471
  40454. }
  40455. },
  40456. feral: {
  40457. height: math.unit(2.05, "m"),
  40458. name: "Feral",
  40459. image: {
  40460. source: "./media/characters/gladi/feral.svg",
  40461. extra: 821/557,
  40462. bottom: 91/912
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Shortest",
  40469. height: math.unit(70, "cm")
  40470. },
  40471. {
  40472. name: "Normal",
  40473. height: math.unit(1.7, "m")
  40474. },
  40475. {
  40476. name: "Macro",
  40477. height: math.unit(10, "m"),
  40478. default: true
  40479. },
  40480. {
  40481. name: "Tallest",
  40482. height: math.unit(200, "m")
  40483. },
  40484. ]
  40485. ))
  40486. characterMakers.push(() => makeCharacter(
  40487. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40488. {
  40489. front: {
  40490. height: math.unit(5 + 7/12, "feet"),
  40491. weight: math.unit(2, "tons"),
  40492. name: "Front",
  40493. image: {
  40494. source: "./media/characters/erdno/front.svg",
  40495. extra: 1234/1129,
  40496. bottom: 35/1269
  40497. }
  40498. },
  40499. angled: {
  40500. height: math.unit(5 + 7/12, "feet"),
  40501. weight: math.unit(2, "tons"),
  40502. name: "Angled",
  40503. image: {
  40504. source: "./media/characters/erdno/angled.svg",
  40505. extra: 1185/1139,
  40506. bottom: 36/1221
  40507. }
  40508. },
  40509. side: {
  40510. height: math.unit(5 + 7/12, "feet"),
  40511. weight: math.unit(2, "tons"),
  40512. name: "Side",
  40513. image: {
  40514. source: "./media/characters/erdno/side.svg",
  40515. extra: 1191/1144,
  40516. bottom: 40/1231
  40517. }
  40518. },
  40519. back: {
  40520. height: math.unit(5 + 7/12, "feet"),
  40521. weight: math.unit(2, "tons"),
  40522. name: "Back",
  40523. image: {
  40524. source: "./media/characters/erdno/back.svg",
  40525. extra: 1202/1146,
  40526. bottom: 17/1219
  40527. }
  40528. },
  40529. frontNsfw: {
  40530. height: math.unit(5 + 7/12, "feet"),
  40531. weight: math.unit(2, "tons"),
  40532. name: "Front (NSFW)",
  40533. image: {
  40534. source: "./media/characters/erdno/front-nsfw.svg",
  40535. extra: 1234/1129,
  40536. bottom: 35/1269
  40537. }
  40538. },
  40539. angledNsfw: {
  40540. height: math.unit(5 + 7/12, "feet"),
  40541. weight: math.unit(2, "tons"),
  40542. name: "Angled (NSFW)",
  40543. image: {
  40544. source: "./media/characters/erdno/angled-nsfw.svg",
  40545. extra: 1185/1139,
  40546. bottom: 36/1221
  40547. }
  40548. },
  40549. sideNsfw: {
  40550. height: math.unit(5 + 7/12, "feet"),
  40551. weight: math.unit(2, "tons"),
  40552. name: "Side (NSFW)",
  40553. image: {
  40554. source: "./media/characters/erdno/side-nsfw.svg",
  40555. extra: 1191/1144,
  40556. bottom: 40/1231
  40557. }
  40558. },
  40559. backNsfw: {
  40560. height: math.unit(5 + 7/12, "feet"),
  40561. weight: math.unit(2, "tons"),
  40562. name: "Back (NSFW)",
  40563. image: {
  40564. source: "./media/characters/erdno/back-nsfw.svg",
  40565. extra: 1202/1146,
  40566. bottom: 17/1219
  40567. }
  40568. },
  40569. frontHyper: {
  40570. height: math.unit(5 + 7/12, "feet"),
  40571. weight: math.unit(2, "tons"),
  40572. name: "Front (Hyper)",
  40573. image: {
  40574. source: "./media/characters/erdno/front-hyper.svg",
  40575. extra: 1298/1136,
  40576. bottom: 35/1333
  40577. }
  40578. },
  40579. },
  40580. [
  40581. {
  40582. name: "Normal",
  40583. height: math.unit(5 + 7/12, "feet"),
  40584. default: true
  40585. },
  40586. {
  40587. name: "Big",
  40588. height: math.unit(5.7, "meters")
  40589. },
  40590. {
  40591. name: "Macro",
  40592. height: math.unit(5.7, "kilometers")
  40593. },
  40594. {
  40595. name: "Megamacro",
  40596. height: math.unit(5.7, "earths")
  40597. },
  40598. ]
  40599. ))
  40600. characterMakers.push(() => makeCharacter(
  40601. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40602. {
  40603. front: {
  40604. height: math.unit(5 + 10/12, "feet"),
  40605. weight: math.unit(150, "lb"),
  40606. name: "Front",
  40607. image: {
  40608. source: "./media/characters/jamie/front.svg",
  40609. extra: 1908/1768,
  40610. bottom: 19/1927
  40611. }
  40612. },
  40613. },
  40614. [
  40615. {
  40616. name: "Minimum",
  40617. height: math.unit(2, "cm")
  40618. },
  40619. {
  40620. name: "Micro",
  40621. height: math.unit(3, "inches")
  40622. },
  40623. {
  40624. name: "Normal",
  40625. height: math.unit(5 + 10/12, "feet"),
  40626. default: true
  40627. },
  40628. {
  40629. name: "Macro",
  40630. height: math.unit(150, "feet")
  40631. },
  40632. {
  40633. name: "Megamacro",
  40634. height: math.unit(10000, "m")
  40635. },
  40636. ]
  40637. ))
  40638. characterMakers.push(() => makeCharacter(
  40639. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40640. {
  40641. front: {
  40642. height: math.unit(2, "meters"),
  40643. weight: math.unit(100, "kg"),
  40644. name: "Front",
  40645. image: {
  40646. source: "./media/characters/shiron/front.svg",
  40647. extra: 2103/1985,
  40648. bottom: 98/2201
  40649. }
  40650. },
  40651. back: {
  40652. height: math.unit(2, "meters"),
  40653. weight: math.unit(100, "kg"),
  40654. name: "Back",
  40655. image: {
  40656. source: "./media/characters/shiron/back.svg",
  40657. extra: 2110/2015,
  40658. bottom: 89/2199
  40659. }
  40660. },
  40661. hand: {
  40662. height: math.unit(0.96, "feet"),
  40663. name: "Hand",
  40664. image: {
  40665. source: "./media/characters/shiron/hand.svg"
  40666. }
  40667. },
  40668. foot: {
  40669. height: math.unit(1.464, "feet"),
  40670. name: "Foot",
  40671. image: {
  40672. source: "./media/characters/shiron/foot.svg"
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Normal",
  40679. height: math.unit(2, "meters")
  40680. },
  40681. {
  40682. name: "Macro",
  40683. height: math.unit(500, "meters"),
  40684. default: true
  40685. },
  40686. {
  40687. name: "Megamacro",
  40688. height: math.unit(20, "km")
  40689. },
  40690. ]
  40691. ))
  40692. characterMakers.push(() => makeCharacter(
  40693. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40694. {
  40695. front: {
  40696. height: math.unit(6, "feet"),
  40697. name: "Front",
  40698. image: {
  40699. source: "./media/characters/sam/front.svg",
  40700. extra: 849/826,
  40701. bottom: 19/868
  40702. }
  40703. },
  40704. },
  40705. [
  40706. {
  40707. name: "Normal",
  40708. height: math.unit(6, "feet"),
  40709. default: true
  40710. },
  40711. ]
  40712. ))
  40713. characterMakers.push(() => makeCharacter(
  40714. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40715. {
  40716. front: {
  40717. height: math.unit(8 + 4/12, "feet"),
  40718. weight: math.unit(122, "kg"),
  40719. name: "Front",
  40720. image: {
  40721. source: "./media/characters/namori-kurogawa/front.svg",
  40722. extra: 1894/1576,
  40723. bottom: 34/1928
  40724. }
  40725. },
  40726. },
  40727. [
  40728. {
  40729. name: "Normal",
  40730. height: math.unit(8 + 4/12, "feet"),
  40731. default: true
  40732. },
  40733. ]
  40734. ))
  40735. characterMakers.push(() => makeCharacter(
  40736. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40737. {
  40738. front: {
  40739. height: math.unit(9, "feet"),
  40740. weight: math.unit(621, "lb"),
  40741. name: "Front",
  40742. image: {
  40743. source: "./media/characters/unmru/front.svg",
  40744. extra: 1853/1747,
  40745. bottom: 73/1926
  40746. }
  40747. },
  40748. side: {
  40749. height: math.unit(9, "feet"),
  40750. weight: math.unit(621, "lb"),
  40751. name: "Side",
  40752. image: {
  40753. source: "./media/characters/unmru/side.svg",
  40754. extra: 1781/1671,
  40755. bottom: 127/1908
  40756. }
  40757. },
  40758. back: {
  40759. height: math.unit(9, "feet"),
  40760. weight: math.unit(621, "lb"),
  40761. name: "Back",
  40762. image: {
  40763. source: "./media/characters/unmru/back.svg",
  40764. extra: 1894/1765,
  40765. bottom: 75/1969
  40766. }
  40767. },
  40768. dick: {
  40769. height: math.unit(3, "feet"),
  40770. weight: math.unit(35, "lb"),
  40771. name: "Dick",
  40772. image: {
  40773. source: "./media/characters/unmru/dick.svg"
  40774. }
  40775. },
  40776. },
  40777. [
  40778. {
  40779. name: "Normal",
  40780. height: math.unit(9, "feet")
  40781. },
  40782. {
  40783. name: "Natural",
  40784. height: math.unit(27, "feet"),
  40785. default: true
  40786. },
  40787. {
  40788. name: "Giant",
  40789. height: math.unit(90, "feet")
  40790. },
  40791. {
  40792. name: "Kaiju",
  40793. height: math.unit(270, "feet")
  40794. },
  40795. {
  40796. name: "Macro",
  40797. height: math.unit(900, "feet")
  40798. },
  40799. {
  40800. name: "Macro+",
  40801. height: math.unit(2700, "feet")
  40802. },
  40803. {
  40804. name: "Megamacro",
  40805. height: math.unit(9000, "feet")
  40806. },
  40807. {
  40808. name: "City-Crushing",
  40809. height: math.unit(27000, "feet")
  40810. },
  40811. {
  40812. name: "Mountain-Mashing",
  40813. height: math.unit(90000, "feet")
  40814. },
  40815. {
  40816. name: "Earth-Eclipsing",
  40817. height: math.unit(2.7e8, "feet")
  40818. },
  40819. {
  40820. name: "Sol-Swallowing",
  40821. height: math.unit(9e10, "feet")
  40822. },
  40823. {
  40824. name: "Majoris-Munching",
  40825. height: math.unit(2.7e13, "feet")
  40826. },
  40827. ]
  40828. ))
  40829. characterMakers.push(() => makeCharacter(
  40830. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40831. {
  40832. front: {
  40833. height: math.unit(1, "inch"),
  40834. name: "Front",
  40835. image: {
  40836. source: "./media/characters/squeaks-mouse/front.svg",
  40837. extra: 352/308,
  40838. bottom: 25/377
  40839. }
  40840. },
  40841. },
  40842. [
  40843. {
  40844. name: "Micro",
  40845. height: math.unit(1, "inch"),
  40846. default: true
  40847. },
  40848. ]
  40849. ))
  40850. characterMakers.push(() => makeCharacter(
  40851. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40852. {
  40853. side: {
  40854. height: math.unit(35, "feet"),
  40855. name: "Side",
  40856. image: {
  40857. source: "./media/characters/sayko/side.svg",
  40858. extra: 1697/1021,
  40859. bottom: 82/1779
  40860. }
  40861. },
  40862. head: {
  40863. height: math.unit(16, "feet"),
  40864. name: "Head",
  40865. image: {
  40866. source: "./media/characters/sayko/head.svg"
  40867. }
  40868. },
  40869. forepaw: {
  40870. height: math.unit(7.85, "feet"),
  40871. name: "Forepaw",
  40872. image: {
  40873. source: "./media/characters/sayko/forepaw.svg"
  40874. }
  40875. },
  40876. hindpaw: {
  40877. height: math.unit(8.8, "feet"),
  40878. name: "Hindpaw",
  40879. image: {
  40880. source: "./media/characters/sayko/hindpaw.svg"
  40881. }
  40882. },
  40883. },
  40884. [
  40885. {
  40886. name: "Normal",
  40887. height: math.unit(35, "feet"),
  40888. default: true
  40889. },
  40890. {
  40891. name: "Colossus",
  40892. height: math.unit(100, "meters")
  40893. },
  40894. {
  40895. name: "\"Small\" Deity",
  40896. height: math.unit(1, "km")
  40897. },
  40898. {
  40899. name: "\"Large\" Deity",
  40900. height: math.unit(15, "km")
  40901. },
  40902. ]
  40903. ))
  40904. characterMakers.push(() => makeCharacter(
  40905. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40906. {
  40907. front: {
  40908. height: math.unit(6, "feet"),
  40909. weight: math.unit(250, "lb"),
  40910. name: "Front",
  40911. image: {
  40912. source: "./media/characters/mukiro/front.svg",
  40913. extra: 1368/1310,
  40914. bottom: 34/1402
  40915. }
  40916. },
  40917. },
  40918. [
  40919. {
  40920. name: "Normal",
  40921. height: math.unit(6, "feet"),
  40922. default: true
  40923. },
  40924. ]
  40925. ))
  40926. characterMakers.push(() => makeCharacter(
  40927. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40928. {
  40929. front: {
  40930. height: math.unit(12 + 4/12, "feet"),
  40931. name: "Front",
  40932. image: {
  40933. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40934. extra: 1346/1311,
  40935. bottom: 65/1411
  40936. }
  40937. },
  40938. },
  40939. [
  40940. {
  40941. name: "Base",
  40942. height: math.unit(12 + 4/12, "feet"),
  40943. default: true
  40944. },
  40945. {
  40946. name: "Macro",
  40947. height: math.unit(150, "feet")
  40948. },
  40949. {
  40950. name: "Mega",
  40951. height: math.unit(2, "miles")
  40952. },
  40953. {
  40954. name: "Demi God",
  40955. height: math.unit(4, "AU")
  40956. },
  40957. {
  40958. name: "God Size",
  40959. height: math.unit(1, "universe")
  40960. },
  40961. ]
  40962. ))
  40963. characterMakers.push(() => makeCharacter(
  40964. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40965. {
  40966. front: {
  40967. height: math.unit(3 + 3/12, "feet"),
  40968. weight: math.unit(88, "lb"),
  40969. name: "Front",
  40970. image: {
  40971. source: "./media/characters/trey/front.svg",
  40972. extra: 1815/1509,
  40973. bottom: 60/1875
  40974. }
  40975. },
  40976. },
  40977. [
  40978. {
  40979. name: "Normal",
  40980. height: math.unit(3 + 3/12, "feet"),
  40981. default: true
  40982. },
  40983. ]
  40984. ))
  40985. characterMakers.push(() => makeCharacter(
  40986. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40987. {
  40988. front: {
  40989. height: math.unit(4, "meters"),
  40990. name: "Front",
  40991. image: {
  40992. source: "./media/characters/adelonda/front.svg",
  40993. extra: 1077/982,
  40994. bottom: 39/1116
  40995. }
  40996. },
  40997. back: {
  40998. height: math.unit(4, "meters"),
  40999. name: "Back",
  41000. image: {
  41001. source: "./media/characters/adelonda/back.svg",
  41002. extra: 1105/1003,
  41003. bottom: 25/1130
  41004. }
  41005. },
  41006. feral: {
  41007. height: math.unit(40/1.5, "meters"),
  41008. name: "Feral",
  41009. image: {
  41010. source: "./media/characters/adelonda/feral.svg",
  41011. extra: 597/271,
  41012. bottom: 387/984
  41013. }
  41014. },
  41015. },
  41016. [
  41017. {
  41018. name: "Normal",
  41019. height: math.unit(4, "meters"),
  41020. default: true
  41021. },
  41022. ]
  41023. ))
  41024. characterMakers.push(() => makeCharacter(
  41025. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41026. {
  41027. front: {
  41028. height: math.unit(8 + 4/12, "feet"),
  41029. weight: math.unit(670, "lb"),
  41030. name: "Front",
  41031. image: {
  41032. source: "./media/characters/acadiel/front.svg",
  41033. extra: 1901/1595,
  41034. bottom: 142/2043
  41035. }
  41036. },
  41037. },
  41038. [
  41039. {
  41040. name: "Normal",
  41041. height: math.unit(8 + 4/12, "feet"),
  41042. default: true
  41043. },
  41044. {
  41045. name: "Macro",
  41046. height: math.unit(200, "feet")
  41047. },
  41048. ]
  41049. ))
  41050. characterMakers.push(() => makeCharacter(
  41051. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41052. {
  41053. front: {
  41054. height: math.unit(6 + 2/12, "feet"),
  41055. weight: math.unit(185, "lb"),
  41056. name: "Front",
  41057. image: {
  41058. source: "./media/characters/kayne-ein/front.svg",
  41059. extra: 1780/1560,
  41060. bottom: 81/1861
  41061. }
  41062. },
  41063. },
  41064. [
  41065. {
  41066. name: "Normal",
  41067. height: math.unit(6 + 2/12, "feet"),
  41068. default: true
  41069. },
  41070. {
  41071. name: "Transformation Stage",
  41072. height: math.unit(15, "feet")
  41073. },
  41074. {
  41075. name: "Macro",
  41076. height: math.unit(150, "feet")
  41077. },
  41078. {
  41079. name: "Earth's Shadow",
  41080. height: math.unit(6200, "miles")
  41081. },
  41082. {
  41083. name: "Universal Demon",
  41084. height: math.unit(28e9, "parsecs")
  41085. },
  41086. {
  41087. name: "Multiverse God",
  41088. height: math.unit(3, "multiverses")
  41089. },
  41090. ]
  41091. ))
  41092. characterMakers.push(() => makeCharacter(
  41093. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41094. {
  41095. front: {
  41096. height: math.unit(5 + 5/12, "feet"),
  41097. name: "Front",
  41098. image: {
  41099. source: "./media/characters/fawn/front.svg",
  41100. extra: 1873/1731,
  41101. bottom: 95/1968
  41102. }
  41103. },
  41104. back: {
  41105. height: math.unit(5 + 5/12, "feet"),
  41106. name: "Back",
  41107. image: {
  41108. source: "./media/characters/fawn/back.svg",
  41109. extra: 1813/1700,
  41110. bottom: 14/1827
  41111. }
  41112. },
  41113. hoof: {
  41114. height: math.unit(1.45, "feet"),
  41115. name: "Hoof",
  41116. image: {
  41117. source: "./media/characters/fawn/hoof.svg"
  41118. }
  41119. },
  41120. },
  41121. [
  41122. {
  41123. name: "Normal",
  41124. height: math.unit(5 + 5/12, "feet"),
  41125. default: true
  41126. },
  41127. ]
  41128. ))
  41129. characterMakers.push(() => makeCharacter(
  41130. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41131. {
  41132. front: {
  41133. height: math.unit(2 + 5/12, "feet"),
  41134. name: "Front",
  41135. image: {
  41136. source: "./media/characters/orion/front.svg",
  41137. extra: 1366/1304,
  41138. bottom: 43/1409
  41139. }
  41140. },
  41141. paw: {
  41142. height: math.unit(0.52, "feet"),
  41143. name: "Paw",
  41144. image: {
  41145. source: "./media/characters/orion/paw.svg"
  41146. }
  41147. },
  41148. },
  41149. [
  41150. {
  41151. name: "Normal",
  41152. height: math.unit(2 + 5/12, "feet"),
  41153. default: true
  41154. },
  41155. ]
  41156. ))
  41157. characterMakers.push(() => makeCharacter(
  41158. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41159. {
  41160. front: {
  41161. height: math.unit(5 + 10/12, "feet"),
  41162. name: "Front",
  41163. image: {
  41164. source: "./media/characters/vera/front.svg",
  41165. extra: 1680/1575,
  41166. bottom: 49/1729
  41167. }
  41168. },
  41169. back: {
  41170. height: math.unit(5 + 10/12, "feet"),
  41171. name: "Back",
  41172. image: {
  41173. source: "./media/characters/vera/back.svg",
  41174. extra: 1700/1588,
  41175. bottom: 18/1718
  41176. }
  41177. },
  41178. arcanine: {
  41179. height: math.unit(6 + 8/12, "feet"),
  41180. name: "Arcanine",
  41181. image: {
  41182. source: "./media/characters/vera/arcanine.svg",
  41183. extra: 1590/1511,
  41184. bottom: 71/1661
  41185. }
  41186. },
  41187. maw: {
  41188. height: math.unit(0.82, "feet"),
  41189. name: "Maw",
  41190. image: {
  41191. source: "./media/characters/vera/maw.svg"
  41192. }
  41193. },
  41194. mawArcanine: {
  41195. height: math.unit(0.97, "feet"),
  41196. name: "Maw (Arcanine)",
  41197. image: {
  41198. source: "./media/characters/vera/maw-arcanine.svg"
  41199. }
  41200. },
  41201. paw: {
  41202. height: math.unit(0.75, "feet"),
  41203. name: "Paw",
  41204. image: {
  41205. source: "./media/characters/vera/paw.svg"
  41206. }
  41207. },
  41208. pawprint: {
  41209. height: math.unit(0.52, "feet"),
  41210. name: "Pawprint",
  41211. image: {
  41212. source: "./media/characters/vera/pawprint.svg"
  41213. }
  41214. },
  41215. },
  41216. [
  41217. {
  41218. name: "Normal",
  41219. height: math.unit(5 + 10/12, "feet"),
  41220. default: true
  41221. },
  41222. {
  41223. name: "Macro",
  41224. height: math.unit(75, "feet")
  41225. },
  41226. ]
  41227. ))
  41228. characterMakers.push(() => makeCharacter(
  41229. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41230. {
  41231. front: {
  41232. height: math.unit(4, "feet"),
  41233. weight: math.unit(40, "lb"),
  41234. name: "Front",
  41235. image: {
  41236. source: "./media/characters/orvan-rabbit/front.svg",
  41237. extra: 1896/1642,
  41238. bottom: 29/1925
  41239. }
  41240. },
  41241. },
  41242. [
  41243. {
  41244. name: "Normal",
  41245. height: math.unit(4, "feet"),
  41246. default: true
  41247. },
  41248. ]
  41249. ))
  41250. characterMakers.push(() => makeCharacter(
  41251. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41252. {
  41253. front: {
  41254. height: math.unit(6, "feet"),
  41255. weight: math.unit(168, "lb"),
  41256. name: "Front",
  41257. image: {
  41258. source: "./media/characters/lisa/front.svg",
  41259. extra: 2065/1867,
  41260. bottom: 46/2111
  41261. }
  41262. },
  41263. back: {
  41264. height: math.unit(6, "feet"),
  41265. weight: math.unit(168, "lb"),
  41266. name: "Back",
  41267. image: {
  41268. source: "./media/characters/lisa/back.svg",
  41269. extra: 1982/1838,
  41270. bottom: 29/2011
  41271. }
  41272. },
  41273. maw: {
  41274. height: math.unit(0.81, "feet"),
  41275. name: "Maw",
  41276. image: {
  41277. source: "./media/characters/lisa/maw.svg"
  41278. }
  41279. },
  41280. paw: {
  41281. height: math.unit(0.9, "feet"),
  41282. name: "Paw",
  41283. image: {
  41284. source: "./media/characters/lisa/paw.svg"
  41285. }
  41286. },
  41287. caribousune: {
  41288. height: math.unit(7 + 2/12, "feet"),
  41289. weight: math.unit(268, "lb"),
  41290. name: "Caribousune",
  41291. image: {
  41292. source: "./media/characters/lisa/caribousune.svg",
  41293. extra: 1843/1633,
  41294. bottom: 29/1872
  41295. }
  41296. },
  41297. frontCaribousune: {
  41298. height: math.unit(7 + 2/12, "feet"),
  41299. weight: math.unit(268, "lb"),
  41300. name: "Front (Caribousune)",
  41301. image: {
  41302. source: "./media/characters/lisa/front-caribousune.svg",
  41303. extra: 1818/1638,
  41304. bottom: 52/1870
  41305. }
  41306. },
  41307. sideCaribousune: {
  41308. height: math.unit(7 + 2/12, "feet"),
  41309. weight: math.unit(268, "lb"),
  41310. name: "Side (Caribousune)",
  41311. image: {
  41312. source: "./media/characters/lisa/side-caribousune.svg",
  41313. extra: 1851/1635,
  41314. bottom: 16/1867
  41315. }
  41316. },
  41317. backCaribousune: {
  41318. height: math.unit(7 + 2/12, "feet"),
  41319. weight: math.unit(268, "lb"),
  41320. name: "Back (Caribousune)",
  41321. image: {
  41322. source: "./media/characters/lisa/back-caribousune.svg",
  41323. extra: 1801/1604,
  41324. bottom: 44/1845
  41325. }
  41326. },
  41327. caribou: {
  41328. height: math.unit(7 + 2/12, "feet"),
  41329. weight: math.unit(268, "lb"),
  41330. name: "Caribou",
  41331. image: {
  41332. source: "./media/characters/lisa/caribou.svg",
  41333. extra: 1843/1633,
  41334. bottom: 29/1872
  41335. }
  41336. },
  41337. frontCaribou: {
  41338. height: math.unit(7 + 2/12, "feet"),
  41339. weight: math.unit(268, "lb"),
  41340. name: "Front (Caribou)",
  41341. image: {
  41342. source: "./media/characters/lisa/front-caribou.svg",
  41343. extra: 1818/1638,
  41344. bottom: 52/1870
  41345. }
  41346. },
  41347. sideCaribou: {
  41348. height: math.unit(7 + 2/12, "feet"),
  41349. weight: math.unit(268, "lb"),
  41350. name: "Side (Caribou)",
  41351. image: {
  41352. source: "./media/characters/lisa/side-caribou.svg",
  41353. extra: 1851/1635,
  41354. bottom: 16/1867
  41355. }
  41356. },
  41357. backCaribou: {
  41358. height: math.unit(7 + 2/12, "feet"),
  41359. weight: math.unit(268, "lb"),
  41360. name: "Back (Caribou)",
  41361. image: {
  41362. source: "./media/characters/lisa/back-caribou.svg",
  41363. extra: 1801/1604,
  41364. bottom: 44/1845
  41365. }
  41366. },
  41367. mawCaribou: {
  41368. height: math.unit(1.45, "feet"),
  41369. name: "Maw (Caribou)",
  41370. image: {
  41371. source: "./media/characters/lisa/maw-caribou.svg"
  41372. }
  41373. },
  41374. mawCaribousune: {
  41375. height: math.unit(1.45, "feet"),
  41376. name: "Maw (Caribousune)",
  41377. image: {
  41378. source: "./media/characters/lisa/maw-caribousune.svg"
  41379. }
  41380. },
  41381. pawCaribousune: {
  41382. height: math.unit(1.61, "feet"),
  41383. name: "Paw (Caribou)",
  41384. image: {
  41385. source: "./media/characters/lisa/paw-caribousune.svg"
  41386. }
  41387. },
  41388. },
  41389. [
  41390. {
  41391. name: "Normal",
  41392. height: math.unit(6, "feet")
  41393. },
  41394. {
  41395. name: "God Size",
  41396. height: math.unit(72, "feet"),
  41397. default: true
  41398. },
  41399. {
  41400. name: "Towering",
  41401. height: math.unit(288, "feet")
  41402. },
  41403. {
  41404. name: "City Size",
  41405. height: math.unit(48384, "feet")
  41406. },
  41407. {
  41408. name: "Continental",
  41409. height: math.unit(4200, "miles")
  41410. },
  41411. {
  41412. name: "Planet Eater",
  41413. height: math.unit(42, "earths")
  41414. },
  41415. {
  41416. name: "Star Swallower",
  41417. height: math.unit(42, "solarradii")
  41418. },
  41419. {
  41420. name: "System Swallower",
  41421. height: math.unit(84000, "AU")
  41422. },
  41423. {
  41424. name: "Galaxy Gobbler",
  41425. height: math.unit(42, "galaxies")
  41426. },
  41427. {
  41428. name: "Universe Devourer",
  41429. height: math.unit(42, "universes")
  41430. },
  41431. {
  41432. name: "Multiverse Muncher",
  41433. height: math.unit(42, "multiverses")
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41439. {
  41440. front: {
  41441. height: math.unit(36, "feet"),
  41442. name: "Front",
  41443. image: {
  41444. source: "./media/characters/shadow-rat/front.svg",
  41445. extra: 1845/1758,
  41446. bottom: 83/1928
  41447. }
  41448. },
  41449. },
  41450. [
  41451. {
  41452. name: "Macro",
  41453. height: math.unit(36, "feet"),
  41454. default: true
  41455. },
  41456. ]
  41457. ))
  41458. characterMakers.push(() => makeCharacter(
  41459. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41460. {
  41461. side: {
  41462. height: math.unit(8, "feet"),
  41463. weight: math.unit(2630, "lb"),
  41464. name: "Side",
  41465. image: {
  41466. source: "./media/characters/torallia/side.svg",
  41467. extra: 2164/2021,
  41468. bottom: 371/2535
  41469. }
  41470. },
  41471. },
  41472. [
  41473. {
  41474. name: "Mortal Interaction",
  41475. height: math.unit(8, "feet")
  41476. },
  41477. {
  41478. name: "Natural",
  41479. height: math.unit(24, "feet"),
  41480. default: true
  41481. },
  41482. {
  41483. name: "Giant",
  41484. height: math.unit(80, "feet")
  41485. },
  41486. {
  41487. name: "Kaiju",
  41488. height: math.unit(240, "feet")
  41489. },
  41490. {
  41491. name: "Macro",
  41492. height: math.unit(800, "feet")
  41493. },
  41494. {
  41495. name: "Macro+",
  41496. height: math.unit(2400, "feet")
  41497. },
  41498. {
  41499. name: "Macro++",
  41500. height: math.unit(8000, "feet")
  41501. },
  41502. {
  41503. name: "City-Crushing",
  41504. height: math.unit(24000, "feet")
  41505. },
  41506. {
  41507. name: "Mountain-Mashing",
  41508. height: math.unit(80000, "feet")
  41509. },
  41510. {
  41511. name: "District Demolisher",
  41512. height: math.unit(240000, "feet")
  41513. },
  41514. {
  41515. name: "Tri-County Terror",
  41516. height: math.unit(800000, "feet")
  41517. },
  41518. {
  41519. name: "State Smasher",
  41520. height: math.unit(2.4e6, "feet")
  41521. },
  41522. {
  41523. name: "Nation Nemesis",
  41524. height: math.unit(8e6, "feet")
  41525. },
  41526. {
  41527. name: "Continent Cracker",
  41528. height: math.unit(2.4e7, "feet")
  41529. },
  41530. {
  41531. name: "Planet-Pillaging",
  41532. height: math.unit(8e7, "feet")
  41533. },
  41534. {
  41535. name: "Earth-Eclipsing",
  41536. height: math.unit(2.4e8, "feet")
  41537. },
  41538. {
  41539. name: "Jovian-Jostling",
  41540. height: math.unit(8e8, "feet")
  41541. },
  41542. {
  41543. name: "Gas Giant Gulper",
  41544. height: math.unit(2.4e9, "feet")
  41545. },
  41546. {
  41547. name: "Astral Annihilator",
  41548. height: math.unit(8e9, "feet")
  41549. },
  41550. {
  41551. name: "Celestial Conqueror",
  41552. height: math.unit(2.4e10, "feet")
  41553. },
  41554. {
  41555. name: "Sol-Swallowing",
  41556. height: math.unit(8e10, "feet")
  41557. },
  41558. {
  41559. name: "Hunter of the Heavens",
  41560. height: math.unit(2.4e13, "feet")
  41561. },
  41562. ]
  41563. ))
  41564. characterMakers.push(() => makeCharacter(
  41565. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41566. {
  41567. front: {
  41568. height: math.unit(10, "feet"),
  41569. weight: math.unit(844, "kilograms"),
  41570. name: "Front",
  41571. image: {
  41572. source: "./media/characters/rebecca-pawlson/front.svg",
  41573. extra: 1196/1099,
  41574. bottom: 81/1277
  41575. },
  41576. extraAttributes: {
  41577. "pawSize": {
  41578. name: "Paw Size",
  41579. power: 2,
  41580. type: "area",
  41581. base: math.unit(0.2 * 0.375, "meters^2")
  41582. },
  41583. "handSize": {
  41584. name: "Hand Size",
  41585. power: 2,
  41586. type: "area",
  41587. base: math.unit(0.2 * 0.35, "meters^2")
  41588. },
  41589. "breastDiameter": {
  41590. name: "Breast Diameter",
  41591. power: 1,
  41592. type: "length",
  41593. base: math.unit(0.5, "meters")
  41594. },
  41595. "breastVolume": {
  41596. name: "Breast Volume",
  41597. power: 3,
  41598. type: "volume",
  41599. base: math.unit(0.065, "m^3")
  41600. },
  41601. "breastMass": {
  41602. name: "Breast Mass",
  41603. power: 3,
  41604. type: "mass",
  41605. base: math.unit(65, "kg")
  41606. },
  41607. "nippleDiameter": {
  41608. name: "Nipple Diameter",
  41609. power: 1,
  41610. type: "length",
  41611. base: math.unit(0.1, "meters")
  41612. },
  41613. }
  41614. },
  41615. back: {
  41616. height: math.unit(10, "feet"),
  41617. weight: math.unit(844, "kilograms"),
  41618. name: "Back",
  41619. image: {
  41620. source: "./media/characters/rebecca-pawlson/back.svg",
  41621. extra: 879/776,
  41622. bottom: 43/922
  41623. },
  41624. extraAttributes: {
  41625. "pawSize": {
  41626. name: "Paw Size",
  41627. power: 2,
  41628. type: "area",
  41629. base: math.unit(0.2 * 0.375, "meters^2")
  41630. },
  41631. "handSize": {
  41632. name: "Hand Size",
  41633. power: 2,
  41634. type: "area",
  41635. base: math.unit(0.2 * 0.35, "meters^2")
  41636. },
  41637. "breastDiameter": {
  41638. name: "Breast Diameter",
  41639. power: 1,
  41640. type: "length",
  41641. base: math.unit(0.5, "meters")
  41642. },
  41643. "breastVolume": {
  41644. name: "Breast Volume",
  41645. power: 3,
  41646. type: "volume",
  41647. base: math.unit(0.065, "m^3")
  41648. },
  41649. "breastMass": {
  41650. name: "Breast Mass",
  41651. power: 3,
  41652. type: "mass",
  41653. base: math.unit(65, "kg")
  41654. },
  41655. "nippleDiameter": {
  41656. name: "Nipple Diameter",
  41657. power: 1,
  41658. type: "length",
  41659. base: math.unit(0.1, "meters")
  41660. },
  41661. }
  41662. },
  41663. },
  41664. [
  41665. {
  41666. name: "Normal",
  41667. height: math.unit(6 + 8/12, "feet")
  41668. },
  41669. {
  41670. name: "Mini Macro",
  41671. height: math.unit(10, "feet"),
  41672. default: true
  41673. },
  41674. {
  41675. name: "Macro",
  41676. height: math.unit(100, "feet")
  41677. },
  41678. {
  41679. name: "Mega Macro",
  41680. height: math.unit(2500, "feet")
  41681. },
  41682. {
  41683. name: "Giga Macro",
  41684. height: math.unit(50, "miles")
  41685. },
  41686. ]
  41687. ))
  41688. characterMakers.push(() => makeCharacter(
  41689. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41690. {
  41691. front: {
  41692. height: math.unit(7 + 6/12, "feet"),
  41693. weight: math.unit(600, "lb"),
  41694. name: "Front",
  41695. image: {
  41696. source: "./media/characters/moxie-nova/front.svg",
  41697. extra: 1734/1652,
  41698. bottom: 41/1775
  41699. }
  41700. },
  41701. },
  41702. [
  41703. {
  41704. name: "Normal",
  41705. height: math.unit(7 + 6/12, "feet"),
  41706. default: true
  41707. },
  41708. ]
  41709. ))
  41710. characterMakers.push(() => makeCharacter(
  41711. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41712. {
  41713. goat: {
  41714. height: math.unit(4, "feet"),
  41715. weight: math.unit(180, "lb"),
  41716. name: "Goat",
  41717. image: {
  41718. source: "./media/characters/tiffany/goat.svg",
  41719. extra: 1845/1595,
  41720. bottom: 106/1951
  41721. }
  41722. },
  41723. front: {
  41724. height: math.unit(5, "feet"),
  41725. weight: math.unit(150, "lb"),
  41726. name: "Foxcoon",
  41727. image: {
  41728. source: "./media/characters/tiffany/foxcoon.svg",
  41729. extra: 1941/1845,
  41730. bottom: 58/1999
  41731. }
  41732. },
  41733. },
  41734. [
  41735. {
  41736. name: "Normal",
  41737. height: math.unit(5, "feet"),
  41738. default: true
  41739. },
  41740. ]
  41741. ))
  41742. characterMakers.push(() => makeCharacter(
  41743. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41744. {
  41745. front: {
  41746. height: math.unit(8, "feet"),
  41747. weight: math.unit(300, "lb"),
  41748. name: "Front",
  41749. image: {
  41750. source: "./media/characters/raxinath/front.svg",
  41751. extra: 1407/1309,
  41752. bottom: 39/1446
  41753. }
  41754. },
  41755. back: {
  41756. height: math.unit(8, "feet"),
  41757. weight: math.unit(300, "lb"),
  41758. name: "Back",
  41759. image: {
  41760. source: "./media/characters/raxinath/back.svg",
  41761. extra: 1405/1315,
  41762. bottom: 9/1414
  41763. }
  41764. },
  41765. },
  41766. [
  41767. {
  41768. name: "Speck",
  41769. height: math.unit(0.5, "nm")
  41770. },
  41771. {
  41772. name: "Micro",
  41773. height: math.unit(3, "inches")
  41774. },
  41775. {
  41776. name: "Kobold",
  41777. height: math.unit(3, "feet")
  41778. },
  41779. {
  41780. name: "Normal",
  41781. height: math.unit(8, "feet"),
  41782. default: true
  41783. },
  41784. {
  41785. name: "Giant",
  41786. height: math.unit(50, "feet")
  41787. },
  41788. {
  41789. name: "Macro",
  41790. height: math.unit(1000, "feet")
  41791. },
  41792. {
  41793. name: "Megamacro",
  41794. height: math.unit(1, "mile")
  41795. },
  41796. ]
  41797. ))
  41798. characterMakers.push(() => makeCharacter(
  41799. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41800. {
  41801. front: {
  41802. height: math.unit(10, "feet"),
  41803. weight: math.unit(1442, "lb"),
  41804. name: "Front",
  41805. image: {
  41806. source: "./media/characters/mal-dragon/front.svg",
  41807. extra: 1515/1444,
  41808. bottom: 113/1628
  41809. }
  41810. },
  41811. back: {
  41812. height: math.unit(10, "feet"),
  41813. weight: math.unit(1442, "lb"),
  41814. name: "Back",
  41815. image: {
  41816. source: "./media/characters/mal-dragon/back.svg",
  41817. extra: 1527/1434,
  41818. bottom: 25/1552
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Mortal Interaction",
  41825. height: math.unit(10, "feet"),
  41826. default: true
  41827. },
  41828. {
  41829. name: "Large",
  41830. height: math.unit(30, "feet")
  41831. },
  41832. {
  41833. name: "Kaiju",
  41834. height: math.unit(300, "feet")
  41835. },
  41836. {
  41837. name: "Megamacro",
  41838. height: math.unit(10000, "feet")
  41839. },
  41840. {
  41841. name: "Continent Cracker",
  41842. height: math.unit(30000000, "feet")
  41843. },
  41844. {
  41845. name: "Sol-Swallowing",
  41846. height: math.unit(1e11, "feet")
  41847. },
  41848. {
  41849. name: "Light Universal",
  41850. height: math.unit(5, "universes")
  41851. },
  41852. {
  41853. name: "Universe Atoms",
  41854. height: math.unit(1.829e9, "universes")
  41855. },
  41856. {
  41857. name: "Light Multiversal",
  41858. height: math.unit(5, "multiverses")
  41859. },
  41860. {
  41861. name: "Multiverse Atoms",
  41862. height: math.unit(1.829e9, "multiverses")
  41863. },
  41864. {
  41865. name: "Fabric of Time",
  41866. height: math.unit(1e262, "multiverses")
  41867. },
  41868. ]
  41869. ))
  41870. characterMakers.push(() => makeCharacter(
  41871. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41872. {
  41873. front: {
  41874. height: math.unit(9, "feet"),
  41875. weight: math.unit(1050, "lb"),
  41876. name: "Front",
  41877. image: {
  41878. source: "./media/characters/tabitha/front.svg",
  41879. extra: 2083/1994,
  41880. bottom: 68/2151
  41881. }
  41882. },
  41883. },
  41884. [
  41885. {
  41886. name: "Baseline",
  41887. height: math.unit(9, "feet"),
  41888. default: true
  41889. },
  41890. {
  41891. name: "Giant",
  41892. height: math.unit(90, "feet")
  41893. },
  41894. {
  41895. name: "Macro",
  41896. height: math.unit(900, "feet")
  41897. },
  41898. {
  41899. name: "Megamacro",
  41900. height: math.unit(9000, "feet")
  41901. },
  41902. {
  41903. name: "City-Crushing",
  41904. height: math.unit(27000, "feet")
  41905. },
  41906. {
  41907. name: "Mountain-Mashing",
  41908. height: math.unit(90000, "feet")
  41909. },
  41910. {
  41911. name: "Nation Nemesis",
  41912. height: math.unit(9e6, "feet")
  41913. },
  41914. {
  41915. name: "Continent Cracker",
  41916. height: math.unit(27e6, "feet")
  41917. },
  41918. {
  41919. name: "Earth-Eclipsing",
  41920. height: math.unit(2.7e8, "feet")
  41921. },
  41922. {
  41923. name: "Gas Giant Gulper",
  41924. height: math.unit(2.7e9, "feet")
  41925. },
  41926. {
  41927. name: "Sol-Swallowing",
  41928. height: math.unit(9e10, "feet")
  41929. },
  41930. {
  41931. name: "Galaxy Gulper",
  41932. height: math.unit(9, "galaxies")
  41933. },
  41934. {
  41935. name: "Cosmos Churner",
  41936. height: math.unit(9, "universes")
  41937. },
  41938. ]
  41939. ))
  41940. characterMakers.push(() => makeCharacter(
  41941. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41942. {
  41943. front: {
  41944. height: math.unit(160, "cm"),
  41945. weight: math.unit(55, "kg"),
  41946. name: "Front",
  41947. image: {
  41948. source: "./media/characters/tow/front.svg",
  41949. extra: 1751/1722,
  41950. bottom: 74/1825
  41951. }
  41952. },
  41953. },
  41954. [
  41955. {
  41956. name: "Norm",
  41957. height: math.unit(160, "cm")
  41958. },
  41959. {
  41960. name: "Casual",
  41961. height: math.unit(3200, "m"),
  41962. default: true
  41963. },
  41964. {
  41965. name: "Show-Off",
  41966. height: math.unit(160, "km")
  41967. },
  41968. ]
  41969. ))
  41970. characterMakers.push(() => makeCharacter(
  41971. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41972. {
  41973. front: {
  41974. height: math.unit(7 + 11/12, "feet"),
  41975. weight: math.unit(342.8, "lb"),
  41976. name: "Front",
  41977. image: {
  41978. source: "./media/characters/vivian-orca-dragon/front.svg",
  41979. extra: 1890/1865,
  41980. bottom: 28/1918
  41981. }
  41982. },
  41983. },
  41984. [
  41985. {
  41986. name: "Micro",
  41987. height: math.unit(5, "inches")
  41988. },
  41989. {
  41990. name: "Normal",
  41991. height: math.unit(7 + 11/12, "feet"),
  41992. default: true
  41993. },
  41994. {
  41995. name: "Macro",
  41996. height: math.unit(395 + 7/12, "feet")
  41997. },
  41998. ]
  41999. ))
  42000. characterMakers.push(() => makeCharacter(
  42001. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42002. {
  42003. side: {
  42004. height: math.unit(10, "feet"),
  42005. weight: math.unit(1442, "lb"),
  42006. name: "Side",
  42007. image: {
  42008. source: "./media/characters/lotherakon/side.svg",
  42009. extra: 1604/1497,
  42010. bottom: 89/1693
  42011. }
  42012. },
  42013. },
  42014. [
  42015. {
  42016. name: "Mortal Interaction",
  42017. height: math.unit(10, "feet")
  42018. },
  42019. {
  42020. name: "Large",
  42021. height: math.unit(30, "feet"),
  42022. default: true
  42023. },
  42024. {
  42025. name: "Giant",
  42026. height: math.unit(100, "feet")
  42027. },
  42028. {
  42029. name: "Kaiju",
  42030. height: math.unit(300, "feet")
  42031. },
  42032. {
  42033. name: "Macro",
  42034. height: math.unit(1000, "feet")
  42035. },
  42036. {
  42037. name: "Macro+",
  42038. height: math.unit(3000, "feet")
  42039. },
  42040. {
  42041. name: "Megamacro",
  42042. height: math.unit(10000, "feet")
  42043. },
  42044. {
  42045. name: "City-Crushing",
  42046. height: math.unit(30000, "feet")
  42047. },
  42048. {
  42049. name: "Continent Cracker",
  42050. height: math.unit(30e6, "feet")
  42051. },
  42052. {
  42053. name: "Earth Eclipsing",
  42054. height: math.unit(3e8, "feet")
  42055. },
  42056. {
  42057. name: "Gas Giant Gulper",
  42058. height: math.unit(3e9, "feet")
  42059. },
  42060. {
  42061. name: "Sol-Swallowing",
  42062. height: math.unit(1e11, "feet")
  42063. },
  42064. {
  42065. name: "System Swallower",
  42066. height: math.unit(3e14, "feet")
  42067. },
  42068. {
  42069. name: "Galaxy Gulper",
  42070. height: math.unit(10, "galaxies")
  42071. },
  42072. {
  42073. name: "Light Universal",
  42074. height: math.unit(5, "universes")
  42075. },
  42076. {
  42077. name: "Universe Palm",
  42078. height: math.unit(20, "universes")
  42079. },
  42080. {
  42081. name: "Light Multiversal",
  42082. height: math.unit(5, "multiverses")
  42083. },
  42084. {
  42085. name: "Multiverse Palm",
  42086. height: math.unit(20, "multiverses")
  42087. },
  42088. {
  42089. name: "Inferno Incarnate",
  42090. height: math.unit(1e7, "multiverses")
  42091. },
  42092. ]
  42093. ))
  42094. characterMakers.push(() => makeCharacter(
  42095. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42096. {
  42097. front: {
  42098. height: math.unit(8, "feet"),
  42099. weight: math.unit(1200, "lb"),
  42100. name: "Front",
  42101. image: {
  42102. source: "./media/characters/malithee/front.svg",
  42103. extra: 1675/1640,
  42104. bottom: 162/1837
  42105. }
  42106. },
  42107. },
  42108. [
  42109. {
  42110. name: "Mortal Interaction",
  42111. height: math.unit(8, "feet"),
  42112. default: true
  42113. },
  42114. {
  42115. name: "Large",
  42116. height: math.unit(24, "feet")
  42117. },
  42118. {
  42119. name: "Kaiju",
  42120. height: math.unit(240, "feet")
  42121. },
  42122. {
  42123. name: "Megamacro",
  42124. height: math.unit(8000, "feet")
  42125. },
  42126. {
  42127. name: "Continent Cracker",
  42128. height: math.unit(24e6, "feet")
  42129. },
  42130. {
  42131. name: "Earth-Eclipsing",
  42132. height: math.unit(2.4e8, "feet")
  42133. },
  42134. {
  42135. name: "Sol-Swallowing",
  42136. height: math.unit(8e10, "feet")
  42137. },
  42138. {
  42139. name: "Galaxy Gulper",
  42140. height: math.unit(8, "galaxies")
  42141. },
  42142. {
  42143. name: "Light Universal",
  42144. height: math.unit(4, "universes")
  42145. },
  42146. {
  42147. name: "Universe Atoms",
  42148. height: math.unit(1.829e9, "universes")
  42149. },
  42150. {
  42151. name: "Light Multiversal",
  42152. height: math.unit(4, "multiverses")
  42153. },
  42154. {
  42155. name: "Multiverse Atoms",
  42156. height: math.unit(1.829e9, "multiverses")
  42157. },
  42158. {
  42159. name: "Nigh-Omnipresence",
  42160. height: math.unit(8e261, "multiverses")
  42161. },
  42162. ]
  42163. ))
  42164. characterMakers.push(() => makeCharacter(
  42165. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42166. {
  42167. front: {
  42168. height: math.unit(10, "feet"),
  42169. weight: math.unit(1500, "lb"),
  42170. name: "Front",
  42171. image: {
  42172. source: "./media/characters/miles-thestia/front.svg",
  42173. extra: 1812/1727,
  42174. bottom: 86/1898
  42175. }
  42176. },
  42177. back: {
  42178. height: math.unit(10, "feet"),
  42179. weight: math.unit(1500, "lb"),
  42180. name: "Back",
  42181. image: {
  42182. source: "./media/characters/miles-thestia/back.svg",
  42183. extra: 1799/1690,
  42184. bottom: 47/1846
  42185. }
  42186. },
  42187. frontNsfw: {
  42188. height: math.unit(10, "feet"),
  42189. weight: math.unit(1500, "lb"),
  42190. name: "Front (NSFW)",
  42191. image: {
  42192. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42193. extra: 1812/1727,
  42194. bottom: 86/1898
  42195. }
  42196. },
  42197. },
  42198. [
  42199. {
  42200. name: "Mini-Macro",
  42201. height: math.unit(10, "feet"),
  42202. default: true
  42203. },
  42204. ]
  42205. ))
  42206. characterMakers.push(() => makeCharacter(
  42207. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42208. {
  42209. front: {
  42210. height: math.unit(25, "feet"),
  42211. name: "Front",
  42212. image: {
  42213. source: "./media/characters/titan-s-wulf/front.svg",
  42214. extra: 1560/1484,
  42215. bottom: 76/1636
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Smallest",
  42222. height: math.unit(25, "feet"),
  42223. default: true
  42224. },
  42225. {
  42226. name: "Normal",
  42227. height: math.unit(200, "feet")
  42228. },
  42229. {
  42230. name: "Macro",
  42231. height: math.unit(200000, "feet")
  42232. },
  42233. {
  42234. name: "Multiversal Original",
  42235. height: math.unit(10000, "multiverses")
  42236. },
  42237. ]
  42238. ))
  42239. characterMakers.push(() => makeCharacter(
  42240. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42241. {
  42242. front: {
  42243. height: math.unit(8, "feet"),
  42244. weight: math.unit(553, "lb"),
  42245. name: "Front",
  42246. image: {
  42247. source: "./media/characters/tawendeh/front.svg",
  42248. extra: 2365/2268,
  42249. bottom: 83/2448
  42250. }
  42251. },
  42252. frontClothed: {
  42253. height: math.unit(8, "feet"),
  42254. weight: math.unit(553, "lb"),
  42255. name: "Front (Clothed)",
  42256. image: {
  42257. source: "./media/characters/tawendeh/front-clothed.svg",
  42258. extra: 2365/2268,
  42259. bottom: 83/2448
  42260. }
  42261. },
  42262. back: {
  42263. height: math.unit(8, "feet"),
  42264. weight: math.unit(553, "lb"),
  42265. name: "Back",
  42266. image: {
  42267. source: "./media/characters/tawendeh/back.svg",
  42268. extra: 2397/2294,
  42269. bottom: 42/2439
  42270. }
  42271. },
  42272. },
  42273. [
  42274. {
  42275. name: "Mortal Interaction",
  42276. height: math.unit(8, "feet"),
  42277. default: true
  42278. },
  42279. {
  42280. name: "Giant",
  42281. height: math.unit(80, "feet")
  42282. },
  42283. {
  42284. name: "Macro",
  42285. height: math.unit(800, "feet")
  42286. },
  42287. {
  42288. name: "Megamacro",
  42289. height: math.unit(8000, "feet")
  42290. },
  42291. {
  42292. name: "City-Crushing",
  42293. height: math.unit(24000, "feet")
  42294. },
  42295. {
  42296. name: "Mountain-Mashing",
  42297. height: math.unit(80000, "feet")
  42298. },
  42299. {
  42300. name: "Nation Nemesis",
  42301. height: math.unit(8e6, "feet")
  42302. },
  42303. {
  42304. name: "Continent Cracker",
  42305. height: math.unit(24e6, "feet")
  42306. },
  42307. {
  42308. name: "Earth-Eclipsing",
  42309. height: math.unit(2.4e8, "feet")
  42310. },
  42311. {
  42312. name: "Gas Giant Gulper",
  42313. height: math.unit(2.4e9, "feet")
  42314. },
  42315. {
  42316. name: "Sol-Swallowing",
  42317. height: math.unit(8e10, "feet")
  42318. },
  42319. {
  42320. name: "Galaxy Gulper",
  42321. height: math.unit(8, "galaxies")
  42322. },
  42323. {
  42324. name: "Cosmos Churner",
  42325. height: math.unit(8, "universes")
  42326. },
  42327. {
  42328. name: "Omnipotent Otter",
  42329. height: math.unit(80, "universes")
  42330. },
  42331. ]
  42332. ))
  42333. characterMakers.push(() => makeCharacter(
  42334. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42335. {
  42336. front: {
  42337. height: math.unit(2.6, "meters"),
  42338. weight: math.unit(900, "kg"),
  42339. name: "Front",
  42340. image: {
  42341. source: "./media/characters/neesha/front.svg",
  42342. extra: 1803/1653,
  42343. bottom: 128/1931
  42344. }
  42345. },
  42346. },
  42347. [
  42348. {
  42349. name: "Normal",
  42350. height: math.unit(2.6, "meters"),
  42351. default: true
  42352. },
  42353. {
  42354. name: "Macro",
  42355. height: math.unit(50, "meters")
  42356. },
  42357. ]
  42358. ))
  42359. characterMakers.push(() => makeCharacter(
  42360. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42361. {
  42362. front: {
  42363. height: math.unit(5, "feet"),
  42364. weight: math.unit(185, "lb"),
  42365. name: "Front",
  42366. image: {
  42367. source: "./media/characters/kyera/front.svg",
  42368. extra: 1875/1790,
  42369. bottom: 96/1971
  42370. }
  42371. },
  42372. },
  42373. [
  42374. {
  42375. name: "Normal",
  42376. height: math.unit(5, "feet"),
  42377. default: true
  42378. },
  42379. ]
  42380. ))
  42381. characterMakers.push(() => makeCharacter(
  42382. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42383. {
  42384. front: {
  42385. height: math.unit(7 + 6/12, "feet"),
  42386. weight: math.unit(540, "lb"),
  42387. name: "Front",
  42388. image: {
  42389. source: "./media/characters/yuko/front.svg",
  42390. extra: 1282/1222,
  42391. bottom: 101/1383
  42392. }
  42393. },
  42394. frontClothed: {
  42395. height: math.unit(7 + 6/12, "feet"),
  42396. weight: math.unit(540, "lb"),
  42397. name: "Front (Clothed)",
  42398. image: {
  42399. source: "./media/characters/yuko/front-clothed.svg",
  42400. extra: 1282/1222,
  42401. bottom: 101/1383
  42402. }
  42403. },
  42404. },
  42405. [
  42406. {
  42407. name: "Normal",
  42408. height: math.unit(7 + 6/12, "feet"),
  42409. default: true
  42410. },
  42411. {
  42412. name: "Macro",
  42413. height: math.unit(26 + 9/12, "feet")
  42414. },
  42415. {
  42416. name: "Megamacro",
  42417. height: math.unit(300, "feet")
  42418. },
  42419. {
  42420. name: "Gigamacro",
  42421. height: math.unit(5000, "feet")
  42422. },
  42423. {
  42424. name: "Planetary",
  42425. height: math.unit(10000, "miles")
  42426. },
  42427. ]
  42428. ))
  42429. characterMakers.push(() => makeCharacter(
  42430. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42431. {
  42432. front: {
  42433. height: math.unit(8 + 2/12, "feet"),
  42434. weight: math.unit(600, "lb"),
  42435. name: "Front",
  42436. image: {
  42437. source: "./media/characters/deam-nitrel/front.svg",
  42438. extra: 1308/1234,
  42439. bottom: 125/1433
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Normal",
  42446. height: math.unit(8 + 2/12, "feet"),
  42447. default: true
  42448. },
  42449. ]
  42450. ))
  42451. characterMakers.push(() => makeCharacter(
  42452. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42453. {
  42454. front: {
  42455. height: math.unit(6.1, "feet"),
  42456. weight: math.unit(180, "lb"),
  42457. name: "Front",
  42458. image: {
  42459. source: "./media/characters/skyress/front.svg",
  42460. extra: 1045/915,
  42461. bottom: 28/1073
  42462. }
  42463. },
  42464. maw: {
  42465. height: math.unit(1, "feet"),
  42466. name: "Maw",
  42467. image: {
  42468. source: "./media/characters/skyress/maw.svg"
  42469. }
  42470. },
  42471. },
  42472. [
  42473. {
  42474. name: "Normal",
  42475. height: math.unit(6.1, "feet"),
  42476. default: true
  42477. },
  42478. {
  42479. name: "Macro",
  42480. height: math.unit(200, "feet")
  42481. },
  42482. ]
  42483. ))
  42484. characterMakers.push(() => makeCharacter(
  42485. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42486. {
  42487. front: {
  42488. height: math.unit(4 + 2/12, "feet"),
  42489. weight: math.unit(40, "kg"),
  42490. name: "Front",
  42491. image: {
  42492. source: "./media/characters/amethyst-jones/front.svg",
  42493. extra: 1220/1150,
  42494. bottom: 101/1321
  42495. }
  42496. },
  42497. },
  42498. [
  42499. {
  42500. name: "Normal",
  42501. height: math.unit(4 + 2/12, "feet"),
  42502. default: true
  42503. },
  42504. ]
  42505. ))
  42506. characterMakers.push(() => makeCharacter(
  42507. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42508. {
  42509. front: {
  42510. height: math.unit(1.7, "m"),
  42511. weight: math.unit(135, "lb"),
  42512. name: "Front",
  42513. image: {
  42514. source: "./media/characters/jade/front.svg",
  42515. extra: 1818/1767,
  42516. bottom: 32/1850
  42517. }
  42518. },
  42519. back: {
  42520. height: math.unit(1.7, "m"),
  42521. weight: math.unit(135, "lb"),
  42522. name: "Back",
  42523. image: {
  42524. source: "./media/characters/jade/back.svg",
  42525. extra: 1869/1809,
  42526. bottom: 35/1904
  42527. }
  42528. },
  42529. hand: {
  42530. height: math.unit(0.24, "m"),
  42531. name: "Hand",
  42532. image: {
  42533. source: "./media/characters/jade/hand.svg"
  42534. }
  42535. },
  42536. foot: {
  42537. height: math.unit(0.263, "m"),
  42538. name: "Foot",
  42539. image: {
  42540. source: "./media/characters/jade/foot.svg"
  42541. }
  42542. },
  42543. dick: {
  42544. height: math.unit(0.47, "m"),
  42545. name: "Dick",
  42546. image: {
  42547. source: "./media/characters/jade/dick.svg"
  42548. }
  42549. },
  42550. },
  42551. [
  42552. {
  42553. name: "Micro",
  42554. height: math.unit(22, "cm")
  42555. },
  42556. {
  42557. name: "Normal",
  42558. height: math.unit(1.7, "m"),
  42559. default: true
  42560. },
  42561. {
  42562. name: "Macro",
  42563. height: math.unit(152, "m")
  42564. },
  42565. ]
  42566. ))
  42567. characterMakers.push(() => makeCharacter(
  42568. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42569. {
  42570. front: {
  42571. height: math.unit(100, "miles"),
  42572. weight: math.unit(20000, "tons"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/cookie/front.svg",
  42576. extra: 1125/1070,
  42577. bottom: 30/1155
  42578. }
  42579. },
  42580. },
  42581. [
  42582. {
  42583. name: "Big",
  42584. height: math.unit(50, "feet")
  42585. },
  42586. {
  42587. name: "Macro",
  42588. height: math.unit(100, "miles"),
  42589. default: true
  42590. },
  42591. {
  42592. name: "Megamacro",
  42593. height: math.unit(90000, "miles")
  42594. },
  42595. ]
  42596. ))
  42597. characterMakers.push(() => makeCharacter(
  42598. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42599. {
  42600. front: {
  42601. height: math.unit(6, "feet"),
  42602. weight: math.unit(145, "lb"),
  42603. name: "Front",
  42604. image: {
  42605. source: "./media/characters/farzian/front.svg",
  42606. extra: 1902/1693,
  42607. bottom: 108/2010
  42608. }
  42609. },
  42610. },
  42611. [
  42612. {
  42613. name: "Macro",
  42614. height: math.unit(500, "feet"),
  42615. default: true
  42616. },
  42617. ]
  42618. ))
  42619. characterMakers.push(() => makeCharacter(
  42620. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42621. {
  42622. front: {
  42623. height: math.unit(3 + 6/12, "feet"),
  42624. weight: math.unit(50, "lb"),
  42625. name: "Front",
  42626. image: {
  42627. source: "./media/characters/kimberly-tilson/front.svg",
  42628. extra: 1400/1322,
  42629. bottom: 36/1436
  42630. }
  42631. },
  42632. back: {
  42633. height: math.unit(3 + 6/12, "feet"),
  42634. weight: math.unit(50, "lb"),
  42635. name: "Back",
  42636. image: {
  42637. source: "./media/characters/kimberly-tilson/back.svg",
  42638. extra: 1370/1307,
  42639. bottom: 20/1390
  42640. }
  42641. },
  42642. },
  42643. [
  42644. {
  42645. name: "Normal",
  42646. height: math.unit(3 + 6/12, "feet"),
  42647. default: true
  42648. },
  42649. ]
  42650. ))
  42651. characterMakers.push(() => makeCharacter(
  42652. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42653. {
  42654. front: {
  42655. height: math.unit(350, "meters"),
  42656. weight: math.unit(7.57059e+8, "lb"),
  42657. name: "Front",
  42658. image: {
  42659. source: "./media/characters/harthos/front.svg",
  42660. extra: 455/446,
  42661. bottom: 15/470
  42662. },
  42663. form: "peacekeeper",
  42664. default: true
  42665. },
  42666. allusus_front: {
  42667. height: math.unit(270, "meters"),
  42668. weight: math.unit(3.47550e+8, "lb"),
  42669. name: "Front",
  42670. image: {
  42671. source: "./media/characters/harthos/allusus-front.svg",
  42672. extra: 455/446,
  42673. bottom: 15/470
  42674. },
  42675. form: "allusus",
  42676. },
  42677. },
  42678. [
  42679. {
  42680. name: "Macro",
  42681. height: math.unit(350, "meters"),
  42682. default: true,
  42683. form: "peacekeeper"
  42684. },
  42685. {
  42686. name: "Macro",
  42687. height: math.unit(270, "meters"),
  42688. default: true,
  42689. form: "allusus"
  42690. },
  42691. ],
  42692. {
  42693. "peacekeeper": {
  42694. name: "Peacekeeper",
  42695. default: true
  42696. },
  42697. "allusus": {
  42698. name: "Allusus",
  42699. },
  42700. }
  42701. ))
  42702. characterMakers.push(() => makeCharacter(
  42703. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42704. {
  42705. front: {
  42706. height: math.unit(15, "feet"),
  42707. name: "Front",
  42708. image: {
  42709. source: "./media/characters/hypatia/front.svg",
  42710. extra: 1653/1591,
  42711. bottom: 79/1732
  42712. }
  42713. },
  42714. },
  42715. [
  42716. {
  42717. name: "Normal",
  42718. height: math.unit(15, "feet")
  42719. },
  42720. {
  42721. name: "Small",
  42722. height: math.unit(300, "feet")
  42723. },
  42724. {
  42725. name: "Macro",
  42726. height: math.unit(2500, "feet"),
  42727. default: true
  42728. },
  42729. {
  42730. name: "Mega Macro",
  42731. height: math.unit(1500, "miles")
  42732. },
  42733. {
  42734. name: "Giga Macro",
  42735. height: math.unit(1.5e6, "miles")
  42736. },
  42737. ]
  42738. ))
  42739. characterMakers.push(() => makeCharacter(
  42740. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42741. {
  42742. front: {
  42743. height: math.unit(6, "feet"),
  42744. weight: math.unit(200, "lb"),
  42745. name: "Front",
  42746. image: {
  42747. source: "./media/characters/wulver/front.svg",
  42748. extra: 1724/1632,
  42749. bottom: 130/1854
  42750. }
  42751. },
  42752. frontNsfw: {
  42753. height: math.unit(6, "feet"),
  42754. weight: math.unit(200, "lb"),
  42755. name: "Front (NSFW)",
  42756. image: {
  42757. source: "./media/characters/wulver/front-nsfw.svg",
  42758. extra: 1724/1632,
  42759. bottom: 130/1854
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Human-Sized",
  42766. height: math.unit(6, "feet")
  42767. },
  42768. {
  42769. name: "Normal",
  42770. height: math.unit(4, "meters"),
  42771. default: true
  42772. },
  42773. {
  42774. name: "Large",
  42775. height: math.unit(6, "m")
  42776. },
  42777. ]
  42778. ))
  42779. characterMakers.push(() => makeCharacter(
  42780. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42781. {
  42782. front: {
  42783. height: math.unit(7, "feet"),
  42784. name: "Front",
  42785. image: {
  42786. source: "./media/characters/maru/front.svg",
  42787. extra: 1595/1570,
  42788. bottom: 0/1595
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Normal",
  42795. height: math.unit(7, "feet"),
  42796. default: true
  42797. },
  42798. {
  42799. name: "Macro",
  42800. height: math.unit(700, "feet")
  42801. },
  42802. {
  42803. name: "Mega Macro",
  42804. height: math.unit(25, "miles")
  42805. },
  42806. ]
  42807. ))
  42808. characterMakers.push(() => makeCharacter(
  42809. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42810. {
  42811. front: {
  42812. height: math.unit(6, "feet"),
  42813. weight: math.unit(170, "lb"),
  42814. name: "Front",
  42815. image: {
  42816. source: "./media/characters/xenon/front.svg",
  42817. extra: 1376/1305,
  42818. bottom: 56/1432
  42819. }
  42820. },
  42821. back: {
  42822. height: math.unit(6, "feet"),
  42823. weight: math.unit(170, "lb"),
  42824. name: "Back",
  42825. image: {
  42826. source: "./media/characters/xenon/back.svg",
  42827. extra: 1328/1259,
  42828. bottom: 95/1423
  42829. }
  42830. },
  42831. maw: {
  42832. height: math.unit(0.52, "feet"),
  42833. name: "Maw",
  42834. image: {
  42835. source: "./media/characters/xenon/maw.svg"
  42836. }
  42837. },
  42838. handLeft: {
  42839. height: math.unit(0.82 * 169 / 153, "feet"),
  42840. name: "Hand (Left)",
  42841. image: {
  42842. source: "./media/characters/xenon/hand-left.svg"
  42843. }
  42844. },
  42845. handRight: {
  42846. height: math.unit(0.82, "feet"),
  42847. name: "Hand (Right)",
  42848. image: {
  42849. source: "./media/characters/xenon/hand-right.svg"
  42850. }
  42851. },
  42852. footLeft: {
  42853. height: math.unit(1.13, "feet"),
  42854. name: "Foot (Left)",
  42855. image: {
  42856. source: "./media/characters/xenon/foot-left.svg"
  42857. }
  42858. },
  42859. footRight: {
  42860. height: math.unit(1.13 * 194 / 196, "feet"),
  42861. name: "Foot (Right)",
  42862. image: {
  42863. source: "./media/characters/xenon/foot-right.svg"
  42864. }
  42865. },
  42866. },
  42867. [
  42868. {
  42869. name: "Micro",
  42870. height: math.unit(0.8, "inches")
  42871. },
  42872. {
  42873. name: "Normal",
  42874. height: math.unit(6, "feet")
  42875. },
  42876. {
  42877. name: "Macro",
  42878. height: math.unit(50, "feet"),
  42879. default: true
  42880. },
  42881. {
  42882. name: "Macro+",
  42883. height: math.unit(250, "feet")
  42884. },
  42885. {
  42886. name: "Megamacro",
  42887. height: math.unit(1500, "feet")
  42888. },
  42889. ]
  42890. ))
  42891. characterMakers.push(() => makeCharacter(
  42892. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42893. {
  42894. front: {
  42895. height: math.unit(7 + 5/12, "feet"),
  42896. name: "Front",
  42897. image: {
  42898. source: "./media/characters/zane/front.svg",
  42899. extra: 1260/1203,
  42900. bottom: 94/1354
  42901. }
  42902. },
  42903. back: {
  42904. height: math.unit(5.05, "feet"),
  42905. name: "Back",
  42906. image: {
  42907. source: "./media/characters/zane/back.svg",
  42908. extra: 893/829,
  42909. bottom: 30/923
  42910. }
  42911. },
  42912. werewolf: {
  42913. height: math.unit(11, "feet"),
  42914. name: "Werewolf",
  42915. image: {
  42916. source: "./media/characters/zane/werewolf.svg",
  42917. extra: 1383/1323,
  42918. bottom: 89/1472
  42919. }
  42920. },
  42921. foot: {
  42922. height: math.unit(1.46, "feet"),
  42923. name: "Foot",
  42924. image: {
  42925. source: "./media/characters/zane/foot.svg"
  42926. }
  42927. },
  42928. footFront: {
  42929. height: math.unit(0.784, "feet"),
  42930. name: "Foot (Front)",
  42931. image: {
  42932. source: "./media/characters/zane/foot-front.svg"
  42933. }
  42934. },
  42935. dick: {
  42936. height: math.unit(1.95, "feet"),
  42937. name: "Dick",
  42938. image: {
  42939. source: "./media/characters/zane/dick.svg"
  42940. }
  42941. },
  42942. dickWerewolf: {
  42943. height: math.unit(3.77, "feet"),
  42944. name: "Dick (Werewolf)",
  42945. image: {
  42946. source: "./media/characters/zane/dick.svg"
  42947. }
  42948. },
  42949. },
  42950. [
  42951. {
  42952. name: "Normal",
  42953. height: math.unit(7 + 5/12, "feet"),
  42954. default: true
  42955. },
  42956. ]
  42957. ))
  42958. characterMakers.push(() => makeCharacter(
  42959. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42960. {
  42961. front: {
  42962. height: math.unit(6 + 2/12, "feet"),
  42963. weight: math.unit(284, "lb"),
  42964. name: "Front",
  42965. image: {
  42966. source: "./media/characters/benni-desparque/front.svg",
  42967. extra: 1353/1126,
  42968. bottom: 69/1422
  42969. }
  42970. },
  42971. },
  42972. [
  42973. {
  42974. name: "Civilian",
  42975. height: math.unit(6 + 2/12, "feet")
  42976. },
  42977. {
  42978. name: "Normal",
  42979. height: math.unit(98, "feet"),
  42980. default: true
  42981. },
  42982. {
  42983. name: "Kaiju Fighter",
  42984. height: math.unit(268, "feet")
  42985. },
  42986. ]
  42987. ))
  42988. characterMakers.push(() => makeCharacter(
  42989. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42990. {
  42991. front: {
  42992. height: math.unit(5, "feet"),
  42993. weight: math.unit(105, "lb"),
  42994. name: "Front",
  42995. image: {
  42996. source: "./media/characters/maxine/front.svg",
  42997. extra: 1386/1250,
  42998. bottom: 71/1457
  42999. }
  43000. },
  43001. },
  43002. [
  43003. {
  43004. name: "Normal",
  43005. height: math.unit(5, "feet"),
  43006. default: true
  43007. },
  43008. ]
  43009. ))
  43010. characterMakers.push(() => makeCharacter(
  43011. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43012. {
  43013. front: {
  43014. height: math.unit(11 + 7/12, "feet"),
  43015. weight: math.unit(9576, "lb"),
  43016. name: "Front",
  43017. image: {
  43018. source: "./media/characters/scaly/front.svg",
  43019. extra: 888/867,
  43020. bottom: 36/924
  43021. }
  43022. },
  43023. },
  43024. [
  43025. {
  43026. name: "Normal",
  43027. height: math.unit(11 + 7/12, "feet"),
  43028. default: true
  43029. },
  43030. ]
  43031. ))
  43032. characterMakers.push(() => makeCharacter(
  43033. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43034. {
  43035. front: {
  43036. height: math.unit(6 + 3/12, "feet"),
  43037. name: "Front",
  43038. image: {
  43039. source: "./media/characters/saelria/front.svg",
  43040. extra: 1243/1138,
  43041. bottom: 46/1289
  43042. }
  43043. },
  43044. },
  43045. [
  43046. {
  43047. name: "Micro",
  43048. height: math.unit(6, "inches"),
  43049. },
  43050. {
  43051. name: "Normal",
  43052. height: math.unit(6 + 3/12, "feet"),
  43053. default: true
  43054. },
  43055. {
  43056. name: "Macro",
  43057. height: math.unit(25, "feet")
  43058. },
  43059. ]
  43060. ))
  43061. characterMakers.push(() => makeCharacter(
  43062. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43063. {
  43064. front: {
  43065. height: math.unit(80, "meters"),
  43066. weight: math.unit(7000, "tonnes"),
  43067. name: "Front",
  43068. image: {
  43069. source: "./media/characters/tef/front.svg",
  43070. extra: 2036/1991,
  43071. bottom: 54/2090
  43072. }
  43073. },
  43074. back: {
  43075. height: math.unit(80, "meters"),
  43076. weight: math.unit(7000, "tonnes"),
  43077. name: "Back",
  43078. image: {
  43079. source: "./media/characters/tef/back.svg",
  43080. extra: 2036/1991,
  43081. bottom: 54/2090
  43082. }
  43083. },
  43084. },
  43085. [
  43086. {
  43087. name: "Macro",
  43088. height: math.unit(80, "meters"),
  43089. default: true
  43090. },
  43091. ]
  43092. ))
  43093. characterMakers.push(() => makeCharacter(
  43094. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43095. {
  43096. front: {
  43097. height: math.unit(13, "feet"),
  43098. weight: math.unit(6, "tons"),
  43099. name: "Front",
  43100. image: {
  43101. source: "./media/characters/rover/front.svg",
  43102. extra: 1233/1156,
  43103. bottom: 50/1283
  43104. }
  43105. },
  43106. back: {
  43107. height: math.unit(13, "feet"),
  43108. weight: math.unit(6, "tons"),
  43109. name: "Back",
  43110. image: {
  43111. source: "./media/characters/rover/back.svg",
  43112. extra: 1327/1258,
  43113. bottom: 39/1366
  43114. }
  43115. },
  43116. },
  43117. [
  43118. {
  43119. name: "Normal",
  43120. height: math.unit(13, "feet"),
  43121. default: true
  43122. },
  43123. {
  43124. name: "Macro",
  43125. height: math.unit(1300, "feet")
  43126. },
  43127. {
  43128. name: "Megamacro",
  43129. height: math.unit(1300, "miles")
  43130. },
  43131. {
  43132. name: "Gigamacro",
  43133. height: math.unit(1300000, "miles")
  43134. },
  43135. ]
  43136. ))
  43137. characterMakers.push(() => makeCharacter(
  43138. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43139. {
  43140. front: {
  43141. height: math.unit(10, "feet"),
  43142. weight: math.unit(500, "lb"),
  43143. name: "Front",
  43144. image: {
  43145. source: "./media/characters/ariz/front.svg",
  43146. extra: 461/450,
  43147. bottom: 16/477
  43148. }
  43149. },
  43150. },
  43151. [
  43152. {
  43153. name: "MiniMacro",
  43154. height: math.unit(10, "feet"),
  43155. default: true
  43156. },
  43157. ]
  43158. ))
  43159. characterMakers.push(() => makeCharacter(
  43160. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43161. {
  43162. front: {
  43163. height: math.unit(6, "feet"),
  43164. weight: math.unit(140, "lb"),
  43165. name: "Front",
  43166. image: {
  43167. source: "./media/characters/sigrun/front.svg",
  43168. extra: 1418/1359,
  43169. bottom: 27/1445
  43170. }
  43171. },
  43172. },
  43173. [
  43174. {
  43175. name: "Macro",
  43176. height: math.unit(35, "feet"),
  43177. default: true
  43178. },
  43179. ]
  43180. ))
  43181. characterMakers.push(() => makeCharacter(
  43182. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43183. {
  43184. front: {
  43185. height: math.unit(6, "feet"),
  43186. weight: math.unit(150, "lb"),
  43187. name: "Front",
  43188. image: {
  43189. source: "./media/characters/numin/front.svg",
  43190. extra: 1433/1388,
  43191. bottom: 12/1445
  43192. }
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "Macro",
  43198. height: math.unit(21.5, "km"),
  43199. default: true
  43200. },
  43201. ]
  43202. ))
  43203. characterMakers.push(() => makeCharacter(
  43204. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43205. {
  43206. front: {
  43207. height: math.unit(6, "feet"),
  43208. weight: math.unit(463, "lb"),
  43209. name: "Front",
  43210. image: {
  43211. source: "./media/characters/melwa/front.svg",
  43212. extra: 1307/1248,
  43213. bottom: 93/1400
  43214. }
  43215. },
  43216. },
  43217. [
  43218. {
  43219. name: "Macro",
  43220. height: math.unit(50, "meters"),
  43221. default: true
  43222. },
  43223. ]
  43224. ))
  43225. characterMakers.push(() => makeCharacter(
  43226. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43227. {
  43228. front: {
  43229. height: math.unit(325, "feet"),
  43230. name: "Front",
  43231. image: {
  43232. source: "./media/characters/zorkaiju/front.svg",
  43233. extra: 1955/1814,
  43234. bottom: 40/1995
  43235. }
  43236. },
  43237. frontExtended: {
  43238. height: math.unit(325, "feet"),
  43239. name: "Front (Extended)",
  43240. image: {
  43241. source: "./media/characters/zorkaiju/front-extended.svg",
  43242. extra: 1955/1814,
  43243. bottom: 40/1995
  43244. }
  43245. },
  43246. side: {
  43247. height: math.unit(325, "feet"),
  43248. name: "Side",
  43249. image: {
  43250. source: "./media/characters/zorkaiju/side.svg",
  43251. extra: 1495/1396,
  43252. bottom: 17/1512
  43253. }
  43254. },
  43255. sideExtended: {
  43256. height: math.unit(325, "feet"),
  43257. name: "Side (Extended)",
  43258. image: {
  43259. source: "./media/characters/zorkaiju/side-extended.svg",
  43260. extra: 1495/1396,
  43261. bottom: 17/1512
  43262. }
  43263. },
  43264. back: {
  43265. height: math.unit(325, "feet"),
  43266. name: "Back",
  43267. image: {
  43268. source: "./media/characters/zorkaiju/back.svg",
  43269. extra: 1959/1821,
  43270. bottom: 31/1990
  43271. }
  43272. },
  43273. backExtended: {
  43274. height: math.unit(325, "feet"),
  43275. name: "Back (Extended)",
  43276. image: {
  43277. source: "./media/characters/zorkaiju/back-extended.svg",
  43278. extra: 1959/1821,
  43279. bottom: 31/1990
  43280. }
  43281. },
  43282. hand: {
  43283. height: math.unit(58.4, "feet"),
  43284. name: "Hand",
  43285. image: {
  43286. source: "./media/characters/zorkaiju/hand.svg"
  43287. }
  43288. },
  43289. handExtended: {
  43290. height: math.unit(61.4, "feet"),
  43291. name: "Hand (Extended)",
  43292. image: {
  43293. source: "./media/characters/zorkaiju/hand-extended.svg"
  43294. }
  43295. },
  43296. foot: {
  43297. height: math.unit(95, "feet"),
  43298. name: "Foot",
  43299. image: {
  43300. source: "./media/characters/zorkaiju/foot.svg"
  43301. }
  43302. },
  43303. leftArm: {
  43304. height: math.unit(59, "feet"),
  43305. name: "Left Arm",
  43306. image: {
  43307. source: "./media/characters/zorkaiju/left-arm.svg"
  43308. }
  43309. },
  43310. rightArm: {
  43311. height: math.unit(59, "feet"),
  43312. name: "Right Arm",
  43313. image: {
  43314. source: "./media/characters/zorkaiju/right-arm.svg"
  43315. }
  43316. },
  43317. leftArmExtended: {
  43318. height: math.unit(59 * 1.033546, "feet"),
  43319. name: "Left Arm (Extended)",
  43320. image: {
  43321. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43322. }
  43323. },
  43324. rightArmExtended: {
  43325. height: math.unit(59 * 1.0496, "feet"),
  43326. name: "Right Arm (Extended)",
  43327. image: {
  43328. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43329. }
  43330. },
  43331. tail: {
  43332. height: math.unit(104, "feet"),
  43333. name: "Tail",
  43334. image: {
  43335. source: "./media/characters/zorkaiju/tail.svg"
  43336. }
  43337. },
  43338. tailExtended: {
  43339. height: math.unit(104, "feet"),
  43340. name: "Tail (Extended)",
  43341. image: {
  43342. source: "./media/characters/zorkaiju/tail-extended.svg"
  43343. }
  43344. },
  43345. tailBottom: {
  43346. height: math.unit(104, "feet"),
  43347. name: "Tail Bottom",
  43348. image: {
  43349. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43350. }
  43351. },
  43352. crystal: {
  43353. height: math.unit(27.54, "feet"),
  43354. name: "Crystal",
  43355. image: {
  43356. source: "./media/characters/zorkaiju/crystal.svg"
  43357. }
  43358. },
  43359. },
  43360. [
  43361. {
  43362. name: "Kaiju",
  43363. height: math.unit(325, "feet"),
  43364. default: true
  43365. },
  43366. ]
  43367. ))
  43368. characterMakers.push(() => makeCharacter(
  43369. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43370. {
  43371. front: {
  43372. height: math.unit(6 + 1/12, "feet"),
  43373. weight: math.unit(115, "lb"),
  43374. name: "Front",
  43375. image: {
  43376. source: "./media/characters/bailey-belfry/front.svg",
  43377. extra: 1240/1121,
  43378. bottom: 101/1341
  43379. }
  43380. },
  43381. },
  43382. [
  43383. {
  43384. name: "Normal",
  43385. height: math.unit(6 + 1/12, "feet"),
  43386. default: true
  43387. },
  43388. ]
  43389. ))
  43390. characterMakers.push(() => makeCharacter(
  43391. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43392. {
  43393. side: {
  43394. height: math.unit(4, "meters"),
  43395. weight: math.unit(250, "kg"),
  43396. name: "Side",
  43397. image: {
  43398. source: "./media/characters/blacky/side.svg",
  43399. extra: 1027/919,
  43400. bottom: 43/1070
  43401. }
  43402. },
  43403. maw: {
  43404. height: math.unit(1, "meters"),
  43405. name: "Maw",
  43406. image: {
  43407. source: "./media/characters/blacky/maw.svg"
  43408. }
  43409. },
  43410. paw: {
  43411. height: math.unit(1, "meters"),
  43412. name: "Paw",
  43413. image: {
  43414. source: "./media/characters/blacky/paw.svg"
  43415. }
  43416. },
  43417. },
  43418. [
  43419. {
  43420. name: "Normal",
  43421. height: math.unit(4, "meters"),
  43422. default: true
  43423. },
  43424. ]
  43425. ))
  43426. characterMakers.push(() => makeCharacter(
  43427. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43428. {
  43429. front: {
  43430. height: math.unit(170, "cm"),
  43431. weight: math.unit(66, "kg"),
  43432. name: "Front",
  43433. image: {
  43434. source: "./media/characters/thux-ei/front.svg",
  43435. extra: 1109/1011,
  43436. bottom: 8/1117
  43437. }
  43438. },
  43439. },
  43440. [
  43441. {
  43442. name: "Normal",
  43443. height: math.unit(170, "cm"),
  43444. default: true
  43445. },
  43446. ]
  43447. ))
  43448. characterMakers.push(() => makeCharacter(
  43449. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43450. {
  43451. front: {
  43452. height: math.unit(5, "feet"),
  43453. weight: math.unit(120, "lb"),
  43454. name: "Front",
  43455. image: {
  43456. source: "./media/characters/roxanne-voltaire/front.svg",
  43457. extra: 1901/1779,
  43458. bottom: 53/1954
  43459. }
  43460. },
  43461. },
  43462. [
  43463. {
  43464. name: "Normal",
  43465. height: math.unit(5, "feet"),
  43466. default: true
  43467. },
  43468. {
  43469. name: "Giant",
  43470. height: math.unit(50, "feet")
  43471. },
  43472. {
  43473. name: "Titan",
  43474. height: math.unit(500, "feet")
  43475. },
  43476. {
  43477. name: "Macro",
  43478. height: math.unit(5000, "feet")
  43479. },
  43480. {
  43481. name: "Megamacro",
  43482. height: math.unit(50000, "feet")
  43483. },
  43484. {
  43485. name: "Gigamacro",
  43486. height: math.unit(500000, "feet")
  43487. },
  43488. {
  43489. name: "Teramacro",
  43490. height: math.unit(5e6, "feet")
  43491. },
  43492. ]
  43493. ))
  43494. characterMakers.push(() => makeCharacter(
  43495. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43496. {
  43497. front: {
  43498. height: math.unit(6 + 2/12, "feet"),
  43499. name: "Front",
  43500. image: {
  43501. source: "./media/characters/squeaks/front.svg",
  43502. extra: 1823/1768,
  43503. bottom: 138/1961
  43504. }
  43505. },
  43506. },
  43507. [
  43508. {
  43509. name: "Micro",
  43510. height: math.unit(0.5, "inches")
  43511. },
  43512. {
  43513. name: "Normal",
  43514. height: math.unit(6 + 2/12, "feet"),
  43515. default: true
  43516. },
  43517. {
  43518. name: "Macro",
  43519. height: math.unit(600, "feet")
  43520. },
  43521. ]
  43522. ))
  43523. characterMakers.push(() => makeCharacter(
  43524. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43525. {
  43526. front: {
  43527. height: math.unit(1.72, "meters"),
  43528. name: "Front",
  43529. image: {
  43530. source: "./media/characters/archinger/front.svg",
  43531. extra: 1861/1675,
  43532. bottom: 125/1986
  43533. }
  43534. },
  43535. back: {
  43536. height: math.unit(1.72, "meters"),
  43537. name: "Back",
  43538. image: {
  43539. source: "./media/characters/archinger/back.svg",
  43540. extra: 1844/1701,
  43541. bottom: 104/1948
  43542. }
  43543. },
  43544. cock: {
  43545. height: math.unit(0.59, "feet"),
  43546. name: "Cock",
  43547. image: {
  43548. source: "./media/characters/archinger/cock.svg"
  43549. }
  43550. },
  43551. },
  43552. [
  43553. {
  43554. name: "Normal",
  43555. height: math.unit(1.72, "meters"),
  43556. default: true
  43557. },
  43558. {
  43559. name: "Macro",
  43560. height: math.unit(84, "meters")
  43561. },
  43562. {
  43563. name: "Macro+",
  43564. height: math.unit(112, "meters")
  43565. },
  43566. {
  43567. name: "Macro++",
  43568. height: math.unit(960, "meters")
  43569. },
  43570. {
  43571. name: "Macro+++",
  43572. height: math.unit(4, "km")
  43573. },
  43574. {
  43575. name: "Macro++++",
  43576. height: math.unit(48, "km")
  43577. },
  43578. {
  43579. name: "Macro+++++",
  43580. height: math.unit(4500, "km")
  43581. },
  43582. ]
  43583. ))
  43584. characterMakers.push(() => makeCharacter(
  43585. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43586. {
  43587. front: {
  43588. height: math.unit(5 + 5/12, "feet"),
  43589. name: "Front",
  43590. image: {
  43591. source: "./media/characters/alsnapz/front.svg",
  43592. extra: 1157/1065,
  43593. bottom: 42/1199
  43594. }
  43595. },
  43596. },
  43597. [
  43598. {
  43599. name: "Normal",
  43600. height: math.unit(5 + 5/12, "feet"),
  43601. default: true
  43602. },
  43603. ]
  43604. ))
  43605. characterMakers.push(() => makeCharacter(
  43606. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43607. {
  43608. side: {
  43609. height: math.unit(3.2, "earths"),
  43610. name: "Side",
  43611. image: {
  43612. source: "./media/characters/mag/side.svg",
  43613. extra: 1331/1008,
  43614. bottom: 52/1383
  43615. }
  43616. },
  43617. wing: {
  43618. height: math.unit(1.94, "earths"),
  43619. name: "Wing",
  43620. image: {
  43621. source: "./media/characters/mag/wing.svg"
  43622. }
  43623. },
  43624. dick: {
  43625. height: math.unit(1.8, "earths"),
  43626. name: "Dick",
  43627. image: {
  43628. source: "./media/characters/mag/dick.svg"
  43629. }
  43630. },
  43631. ass: {
  43632. height: math.unit(1.33, "earths"),
  43633. name: "Ass",
  43634. image: {
  43635. source: "./media/characters/mag/ass.svg"
  43636. }
  43637. },
  43638. head: {
  43639. height: math.unit(1.1, "earths"),
  43640. name: "Head",
  43641. image: {
  43642. source: "./media/characters/mag/head.svg"
  43643. }
  43644. },
  43645. maw: {
  43646. height: math.unit(1.62, "earths"),
  43647. name: "Maw",
  43648. image: {
  43649. source: "./media/characters/mag/maw.svg"
  43650. }
  43651. },
  43652. },
  43653. [
  43654. {
  43655. name: "Small",
  43656. height: math.unit(162, "feet")
  43657. },
  43658. {
  43659. name: "Normal",
  43660. height: math.unit(3.2, "earths"),
  43661. default: true
  43662. },
  43663. ]
  43664. ))
  43665. characterMakers.push(() => makeCharacter(
  43666. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43667. {
  43668. front: {
  43669. height: math.unit(512, "feet"),
  43670. weight: math.unit(63509, "tonnes"),
  43671. name: "Front",
  43672. image: {
  43673. source: "./media/characters/vorrel-harroc/front.svg",
  43674. extra: 1075/1063,
  43675. bottom: 62/1137
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Normal",
  43682. height: math.unit(10, "feet")
  43683. },
  43684. {
  43685. name: "Macro",
  43686. height: math.unit(512, "feet"),
  43687. default: true
  43688. },
  43689. {
  43690. name: "Megamacro",
  43691. height: math.unit(256, "miles")
  43692. },
  43693. {
  43694. name: "Gigamacro",
  43695. height: math.unit(4096, "miles")
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43701. {
  43702. side: {
  43703. height: math.unit(50, "feet"),
  43704. name: "Side",
  43705. image: {
  43706. source: "./media/characters/froimar/side.svg",
  43707. extra: 855/638,
  43708. bottom: 99/954
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Macro",
  43715. height: math.unit(50, "feet"),
  43716. default: true
  43717. },
  43718. ]
  43719. ))
  43720. characterMakers.push(() => makeCharacter(
  43721. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43722. {
  43723. front: {
  43724. height: math.unit(210, "miles"),
  43725. name: "Front",
  43726. image: {
  43727. source: "./media/characters/timothy/front.svg",
  43728. extra: 1007/943,
  43729. bottom: 62/1069
  43730. }
  43731. },
  43732. frontSkirt: {
  43733. height: math.unit(210, "miles"),
  43734. name: "Front (Skirt)",
  43735. image: {
  43736. source: "./media/characters/timothy/front-skirt.svg",
  43737. extra: 1007/943,
  43738. bottom: 62/1069
  43739. }
  43740. },
  43741. frontCoat: {
  43742. height: math.unit(210, "miles"),
  43743. name: "Front (Coat)",
  43744. image: {
  43745. source: "./media/characters/timothy/front-coat.svg",
  43746. extra: 1007/943,
  43747. bottom: 62/1069
  43748. }
  43749. },
  43750. },
  43751. [
  43752. {
  43753. name: "Macro",
  43754. height: math.unit(210, "miles"),
  43755. default: true
  43756. },
  43757. {
  43758. name: "Megamacro",
  43759. height: math.unit(210000, "miles")
  43760. },
  43761. ]
  43762. ))
  43763. characterMakers.push(() => makeCharacter(
  43764. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43765. {
  43766. front: {
  43767. height: math.unit(188, "feet"),
  43768. name: "Front",
  43769. image: {
  43770. source: "./media/characters/pyotr/front.svg",
  43771. extra: 1912/1826,
  43772. bottom: 18/1930
  43773. }
  43774. },
  43775. },
  43776. [
  43777. {
  43778. name: "Macro",
  43779. height: math.unit(188, "feet"),
  43780. default: true
  43781. },
  43782. {
  43783. name: "Megamacro",
  43784. height: math.unit(8, "miles")
  43785. },
  43786. ]
  43787. ))
  43788. characterMakers.push(() => makeCharacter(
  43789. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43790. {
  43791. side: {
  43792. height: math.unit(10, "feet"),
  43793. weight: math.unit(4500, "lb"),
  43794. name: "Side",
  43795. image: {
  43796. source: "./media/characters/ackart/side.svg",
  43797. extra: 1776/1668,
  43798. bottom: 116/1892
  43799. }
  43800. },
  43801. },
  43802. [
  43803. {
  43804. name: "Normal",
  43805. height: math.unit(10, "feet"),
  43806. default: true
  43807. },
  43808. ]
  43809. ))
  43810. characterMakers.push(() => makeCharacter(
  43811. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43812. {
  43813. side: {
  43814. height: math.unit(21, "feet"),
  43815. name: "Side",
  43816. image: {
  43817. source: "./media/characters/nolow/side.svg",
  43818. extra: 1484/1434,
  43819. bottom: 85/1569
  43820. }
  43821. },
  43822. sideErect: {
  43823. height: math.unit(21, "feet"),
  43824. name: "Side-erect",
  43825. image: {
  43826. source: "./media/characters/nolow/side-erect.svg",
  43827. extra: 1484/1434,
  43828. bottom: 85/1569
  43829. }
  43830. },
  43831. },
  43832. [
  43833. {
  43834. name: "Regular",
  43835. height: math.unit(12, "feet")
  43836. },
  43837. {
  43838. name: "Big Chee",
  43839. height: math.unit(21, "feet"),
  43840. default: true
  43841. },
  43842. ]
  43843. ))
  43844. characterMakers.push(() => makeCharacter(
  43845. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43846. {
  43847. front: {
  43848. height: math.unit(7, "feet"),
  43849. weight: math.unit(250, "lb"),
  43850. name: "Front",
  43851. image: {
  43852. source: "./media/characters/nines/front.svg",
  43853. extra: 1741/1607,
  43854. bottom: 41/1782
  43855. }
  43856. },
  43857. side: {
  43858. height: math.unit(7, "feet"),
  43859. weight: math.unit(250, "lb"),
  43860. name: "Side",
  43861. image: {
  43862. source: "./media/characters/nines/side.svg",
  43863. extra: 1854/1735,
  43864. bottom: 93/1947
  43865. }
  43866. },
  43867. back: {
  43868. height: math.unit(7, "feet"),
  43869. weight: math.unit(250, "lb"),
  43870. name: "Back",
  43871. image: {
  43872. source: "./media/characters/nines/back.svg",
  43873. extra: 1748/1615,
  43874. bottom: 20/1768
  43875. }
  43876. },
  43877. },
  43878. [
  43879. {
  43880. name: "Megamacro",
  43881. height: math.unit(99, "km"),
  43882. default: true
  43883. },
  43884. ]
  43885. ))
  43886. characterMakers.push(() => makeCharacter(
  43887. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43888. {
  43889. front: {
  43890. height: math.unit(5 + 10/12, "feet"),
  43891. weight: math.unit(210, "lb"),
  43892. name: "Front",
  43893. image: {
  43894. source: "./media/characters/zenith/front.svg",
  43895. extra: 1531/1452,
  43896. bottom: 198/1729
  43897. }
  43898. },
  43899. back: {
  43900. height: math.unit(5 + 10/12, "feet"),
  43901. weight: math.unit(210, "lb"),
  43902. name: "Back",
  43903. image: {
  43904. source: "./media/characters/zenith/back.svg",
  43905. extra: 1571/1487,
  43906. bottom: 75/1646
  43907. }
  43908. },
  43909. },
  43910. [
  43911. {
  43912. name: "Normal",
  43913. height: math.unit(5 + 10/12, "feet"),
  43914. default: true
  43915. }
  43916. ]
  43917. ))
  43918. characterMakers.push(() => makeCharacter(
  43919. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43920. {
  43921. front: {
  43922. height: math.unit(4, "feet"),
  43923. weight: math.unit(60, "lb"),
  43924. name: "Front",
  43925. image: {
  43926. source: "./media/characters/jasper/front.svg",
  43927. extra: 1450/1379,
  43928. bottom: 19/1469
  43929. }
  43930. },
  43931. },
  43932. [
  43933. {
  43934. name: "Normal",
  43935. height: math.unit(4, "feet"),
  43936. default: true
  43937. },
  43938. ]
  43939. ))
  43940. characterMakers.push(() => makeCharacter(
  43941. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43942. {
  43943. front: {
  43944. height: math.unit(6 + 5/12, "feet"),
  43945. weight: math.unit(290, "lb"),
  43946. name: "Front",
  43947. image: {
  43948. source: "./media/characters/tiberius-thyben/front.svg",
  43949. extra: 757/739,
  43950. bottom: 39/796
  43951. }
  43952. },
  43953. },
  43954. [
  43955. {
  43956. name: "Micro",
  43957. height: math.unit(1.5, "inches")
  43958. },
  43959. {
  43960. name: "Normal",
  43961. height: math.unit(6 + 5/12, "feet"),
  43962. default: true
  43963. },
  43964. {
  43965. name: "Macro",
  43966. height: math.unit(300, "feet")
  43967. },
  43968. ]
  43969. ))
  43970. characterMakers.push(() => makeCharacter(
  43971. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43972. {
  43973. front: {
  43974. height: math.unit(5 + 6/12, "feet"),
  43975. weight: math.unit(60, "kg"),
  43976. name: "Front",
  43977. image: {
  43978. source: "./media/characters/sabre/front.svg",
  43979. extra: 738/671,
  43980. bottom: 27/765
  43981. }
  43982. },
  43983. },
  43984. [
  43985. {
  43986. name: "Teeny",
  43987. height: math.unit(2, "inches")
  43988. },
  43989. {
  43990. name: "Smol",
  43991. height: math.unit(8, "inches")
  43992. },
  43993. {
  43994. name: "Normal",
  43995. height: math.unit(5 + 6/12, "feet"),
  43996. default: true
  43997. },
  43998. {
  43999. name: "Mini-Macro",
  44000. height: math.unit(15, "feet")
  44001. },
  44002. {
  44003. name: "Macro",
  44004. height: math.unit(50, "feet")
  44005. },
  44006. ]
  44007. ))
  44008. characterMakers.push(() => makeCharacter(
  44009. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44010. {
  44011. front: {
  44012. height: math.unit(6 + 4/12, "feet"),
  44013. weight: math.unit(170, "lb"),
  44014. name: "Front",
  44015. image: {
  44016. source: "./media/characters/charlie/front.svg",
  44017. extra: 1348/1228,
  44018. bottom: 15/1363
  44019. }
  44020. },
  44021. },
  44022. [
  44023. {
  44024. name: "Macro",
  44025. height: math.unit(1700, "meters"),
  44026. default: true
  44027. },
  44028. {
  44029. name: "MegaMacro",
  44030. height: math.unit(20400, "meters")
  44031. },
  44032. ]
  44033. ))
  44034. characterMakers.push(() => makeCharacter(
  44035. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44036. {
  44037. front: {
  44038. height: math.unit(1.96, "meters"),
  44039. weight: math.unit(220, "lb"),
  44040. name: "Front",
  44041. image: {
  44042. source: "./media/characters/susan-grant/front.svg",
  44043. extra: 482/478,
  44044. bottom: 7/489
  44045. }
  44046. },
  44047. },
  44048. [
  44049. {
  44050. name: "Normal",
  44051. height: math.unit(1.96, "meters"),
  44052. default: true
  44053. },
  44054. {
  44055. name: "Macro",
  44056. height: math.unit(76.2, "meters")
  44057. },
  44058. {
  44059. name: "MegaMacro",
  44060. height: math.unit(305, "meters")
  44061. },
  44062. {
  44063. name: "GigaMacro",
  44064. height: math.unit(1220, "meters")
  44065. },
  44066. {
  44067. name: "SuperMacro",
  44068. height: math.unit(4878, "meters")
  44069. },
  44070. ]
  44071. ))
  44072. characterMakers.push(() => makeCharacter(
  44073. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44074. {
  44075. front: {
  44076. height: math.unit(5 + 4/12, "feet"),
  44077. weight: math.unit(110, "lb"),
  44078. name: "Front",
  44079. image: {
  44080. source: "./media/characters/axel-isanov/front.svg",
  44081. extra: 1096/1065,
  44082. bottom: 13/1109
  44083. }
  44084. },
  44085. },
  44086. [
  44087. {
  44088. name: "Normal",
  44089. height: math.unit(5 + 4/12, "feet"),
  44090. default: true
  44091. },
  44092. ]
  44093. ))
  44094. characterMakers.push(() => makeCharacter(
  44095. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44096. {
  44097. front: {
  44098. height: math.unit(9, "feet"),
  44099. weight: math.unit(467, "lb"),
  44100. name: "Front",
  44101. image: {
  44102. source: "./media/characters/necahual/front.svg",
  44103. extra: 920/873,
  44104. bottom: 26/946
  44105. }
  44106. },
  44107. back: {
  44108. height: math.unit(9, "feet"),
  44109. weight: math.unit(467, "lb"),
  44110. name: "Back",
  44111. image: {
  44112. source: "./media/characters/necahual/back.svg",
  44113. extra: 930/884,
  44114. bottom: 16/946
  44115. }
  44116. },
  44117. frontUnderwear: {
  44118. height: math.unit(9, "feet"),
  44119. weight: math.unit(467, "lb"),
  44120. name: "Front (Underwear)",
  44121. image: {
  44122. source: "./media/characters/necahual/front-underwear.svg",
  44123. extra: 920/873,
  44124. bottom: 26/946
  44125. }
  44126. },
  44127. frontDressed: {
  44128. height: math.unit(9, "feet"),
  44129. weight: math.unit(467, "lb"),
  44130. name: "Front (Dressed)",
  44131. image: {
  44132. source: "./media/characters/necahual/front-dressed.svg",
  44133. extra: 920/873,
  44134. bottom: 26/946
  44135. }
  44136. },
  44137. },
  44138. [
  44139. {
  44140. name: "Comprsesed",
  44141. height: math.unit(9, "feet")
  44142. },
  44143. {
  44144. name: "Natural",
  44145. height: math.unit(15, "feet"),
  44146. default: true
  44147. },
  44148. {
  44149. name: "Boosted",
  44150. height: math.unit(50, "feet")
  44151. },
  44152. {
  44153. name: "Boosted+",
  44154. height: math.unit(150, "feet")
  44155. },
  44156. {
  44157. name: "Max",
  44158. height: math.unit(500, "feet")
  44159. },
  44160. ]
  44161. ))
  44162. characterMakers.push(() => makeCharacter(
  44163. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44164. {
  44165. front: {
  44166. height: math.unit(22 + 1/12, "feet"),
  44167. weight: math.unit(3200, "lb"),
  44168. name: "Front",
  44169. image: {
  44170. source: "./media/characters/theo-acacia/front.svg",
  44171. extra: 1796/1741,
  44172. bottom: 83/1879
  44173. }
  44174. },
  44175. frontUnderwear: {
  44176. height: math.unit(22 + 1/12, "feet"),
  44177. weight: math.unit(3200, "lb"),
  44178. name: "Front (Underwear)",
  44179. image: {
  44180. source: "./media/characters/theo-acacia/front-underwear.svg",
  44181. extra: 1796/1741,
  44182. bottom: 83/1879
  44183. }
  44184. },
  44185. frontNude: {
  44186. height: math.unit(22 + 1/12, "feet"),
  44187. weight: math.unit(3200, "lb"),
  44188. name: "Front (Nude)",
  44189. image: {
  44190. source: "./media/characters/theo-acacia/front-nude.svg",
  44191. extra: 1796/1741,
  44192. bottom: 83/1879
  44193. }
  44194. },
  44195. },
  44196. [
  44197. {
  44198. name: "Normal",
  44199. height: math.unit(22 + 1/12, "feet"),
  44200. default: true
  44201. },
  44202. ]
  44203. ))
  44204. characterMakers.push(() => makeCharacter(
  44205. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44206. {
  44207. front: {
  44208. height: math.unit(20, "feet"),
  44209. name: "Front",
  44210. image: {
  44211. source: "./media/characters/astra/front.svg",
  44212. extra: 1850/1714,
  44213. bottom: 106/1956
  44214. }
  44215. },
  44216. frontUndressed: {
  44217. height: math.unit(20, "feet"),
  44218. name: "Front (Undressed)",
  44219. image: {
  44220. source: "./media/characters/astra/front-undressed.svg",
  44221. extra: 1926/1749,
  44222. bottom: 0/1926
  44223. }
  44224. },
  44225. hand: {
  44226. height: math.unit(1.53, "feet"),
  44227. name: "Hand",
  44228. image: {
  44229. source: "./media/characters/astra/hand.svg"
  44230. }
  44231. },
  44232. paw: {
  44233. height: math.unit(1.53, "feet"),
  44234. name: "Paw",
  44235. image: {
  44236. source: "./media/characters/astra/paw.svg"
  44237. }
  44238. },
  44239. },
  44240. [
  44241. {
  44242. name: "Smallest",
  44243. height: math.unit(20, "feet")
  44244. },
  44245. {
  44246. name: "Normal",
  44247. height: math.unit(1e9, "miles"),
  44248. default: true
  44249. },
  44250. {
  44251. name: "Larger",
  44252. height: math.unit(5, "multiverses")
  44253. },
  44254. {
  44255. name: "Largest",
  44256. height: math.unit(1e9, "multiverses")
  44257. },
  44258. ]
  44259. ))
  44260. characterMakers.push(() => makeCharacter(
  44261. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44262. {
  44263. front: {
  44264. height: math.unit(8, "feet"),
  44265. name: "Front",
  44266. image: {
  44267. source: "./media/characters/breanna/front.svg",
  44268. extra: 1912/1632,
  44269. bottom: 33/1945
  44270. }
  44271. },
  44272. },
  44273. [
  44274. {
  44275. name: "Smallest",
  44276. height: math.unit(8, "feet")
  44277. },
  44278. {
  44279. name: "Normal",
  44280. height: math.unit(1, "mile"),
  44281. default: true
  44282. },
  44283. {
  44284. name: "Maximum",
  44285. height: math.unit(1500000000000, "lightyears")
  44286. },
  44287. ]
  44288. ))
  44289. characterMakers.push(() => makeCharacter(
  44290. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44291. {
  44292. front: {
  44293. height: math.unit(5 + 11/12, "feet"),
  44294. weight: math.unit(155, "lb"),
  44295. name: "Front",
  44296. image: {
  44297. source: "./media/characters/cai/front.svg",
  44298. extra: 1823/1702,
  44299. bottom: 32/1855
  44300. }
  44301. },
  44302. back: {
  44303. height: math.unit(5 + 11/12, "feet"),
  44304. weight: math.unit(155, "lb"),
  44305. name: "Back",
  44306. image: {
  44307. source: "./media/characters/cai/back.svg",
  44308. extra: 1809/1708,
  44309. bottom: 31/1840
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Normal",
  44316. height: math.unit(5 + 11/12, "feet"),
  44317. default: true
  44318. },
  44319. {
  44320. name: "Big",
  44321. height: math.unit(15, "feet")
  44322. },
  44323. {
  44324. name: "Macro",
  44325. height: math.unit(200, "feet")
  44326. },
  44327. ]
  44328. ))
  44329. characterMakers.push(() => makeCharacter(
  44330. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44331. {
  44332. front: {
  44333. height: math.unit(5 + 6/12, "feet"),
  44334. weight: math.unit(160, "lb"),
  44335. name: "Front",
  44336. image: {
  44337. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44338. extra: 1227/1174,
  44339. bottom: 37/1264
  44340. }
  44341. },
  44342. },
  44343. [
  44344. {
  44345. name: "Macro",
  44346. height: math.unit(444, "meters"),
  44347. default: true
  44348. },
  44349. ]
  44350. ))
  44351. characterMakers.push(() => makeCharacter(
  44352. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44353. {
  44354. front: {
  44355. height: math.unit(18 + 7/12, "feet"),
  44356. name: "Front",
  44357. image: {
  44358. source: "./media/characters/rex/front.svg",
  44359. extra: 1941/1807,
  44360. bottom: 66/2007
  44361. }
  44362. },
  44363. back: {
  44364. height: math.unit(18 + 7/12, "feet"),
  44365. name: "Back",
  44366. image: {
  44367. source: "./media/characters/rex/back.svg",
  44368. extra: 1937/1822,
  44369. bottom: 42/1979
  44370. }
  44371. },
  44372. boot: {
  44373. height: math.unit(3.45, "feet"),
  44374. name: "Boot",
  44375. image: {
  44376. source: "./media/characters/rex/boot.svg"
  44377. }
  44378. },
  44379. paw: {
  44380. height: math.unit(4.17, "feet"),
  44381. name: "Paw",
  44382. image: {
  44383. source: "./media/characters/rex/paw.svg"
  44384. }
  44385. },
  44386. head: {
  44387. height: math.unit(6.728, "feet"),
  44388. name: "Head",
  44389. image: {
  44390. source: "./media/characters/rex/head.svg"
  44391. }
  44392. },
  44393. },
  44394. [
  44395. {
  44396. name: "Nano",
  44397. height: math.unit(18 + 7/12, "feet")
  44398. },
  44399. {
  44400. name: "Micro",
  44401. height: math.unit(1.5, "megameters")
  44402. },
  44403. {
  44404. name: "Normal",
  44405. height: math.unit(440, "megameters"),
  44406. default: true
  44407. },
  44408. {
  44409. name: "Macro",
  44410. height: math.unit(2.5, "gigameters")
  44411. },
  44412. {
  44413. name: "Gigamacro",
  44414. height: math.unit(2, "galaxies")
  44415. },
  44416. ]
  44417. ))
  44418. characterMakers.push(() => makeCharacter(
  44419. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44420. {
  44421. side: {
  44422. height: math.unit(32, "feet"),
  44423. weight: math.unit(250000, "lb"),
  44424. name: "Side",
  44425. image: {
  44426. source: "./media/characters/silverwing/side.svg",
  44427. extra: 1100/1019,
  44428. bottom: 204/1304
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Normal",
  44435. height: math.unit(32, "feet"),
  44436. default: true
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44442. {
  44443. front: {
  44444. height: math.unit(6 + 6/12, "feet"),
  44445. weight: math.unit(350, "lb"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/tristan-hawthorne/front.svg",
  44449. extra: 1159/1124,
  44450. bottom: 37/1196
  44451. },
  44452. form: "labrador",
  44453. default: true
  44454. },
  44455. skunkFront: {
  44456. height: math.unit(4 + 6/12, "feet"),
  44457. weight: math.unit(120, "lb"),
  44458. name: "Front",
  44459. image: {
  44460. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44461. extra: 1609/1551,
  44462. bottom: 169/1778
  44463. },
  44464. form: "skunk",
  44465. default: true
  44466. },
  44467. },
  44468. [
  44469. {
  44470. name: "Normal",
  44471. height: math.unit(6 + 6/12, "feet"),
  44472. form: "labrador",
  44473. default: true
  44474. },
  44475. {
  44476. name: "Normal",
  44477. height: math.unit(4 + 6/12, "feet"),
  44478. form: "skunk",
  44479. default: true
  44480. },
  44481. ],
  44482. {
  44483. "labrador": {
  44484. name: "Labrador",
  44485. default: true
  44486. },
  44487. "skunk": {
  44488. name: "Skunk"
  44489. }
  44490. }
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44494. {
  44495. front: {
  44496. height: math.unit(5 + 11/12, "feet"),
  44497. weight: math.unit(190, "lb"),
  44498. name: "Front",
  44499. image: {
  44500. source: "./media/characters/mizu/front.svg",
  44501. extra: 1988/1788,
  44502. bottom: 14/2002
  44503. }
  44504. },
  44505. },
  44506. [
  44507. {
  44508. name: "Normal",
  44509. height: math.unit(5 + 11/12, "feet"),
  44510. default: true
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44516. {
  44517. front: {
  44518. height: math.unit(1.7, "feet"),
  44519. weight: math.unit(50, "lb"),
  44520. name: "Front",
  44521. image: {
  44522. source: "./media/characters/dechroma/front.svg",
  44523. extra: 1095/859,
  44524. bottom: 64/1159
  44525. }
  44526. },
  44527. },
  44528. [
  44529. {
  44530. name: "Normal",
  44531. height: math.unit(1.7, "feet"),
  44532. default: true
  44533. },
  44534. ]
  44535. ))
  44536. characterMakers.push(() => makeCharacter(
  44537. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44538. {
  44539. side: {
  44540. height: math.unit(30, "feet"),
  44541. name: "Side",
  44542. image: {
  44543. source: "./media/characters/veluren-thanazel/side.svg",
  44544. extra: 1611/633,
  44545. bottom: 118/1729
  44546. }
  44547. },
  44548. front: {
  44549. height: math.unit(30, "feet"),
  44550. name: "Front",
  44551. image: {
  44552. source: "./media/characters/veluren-thanazel/front.svg",
  44553. extra: 1486/636,
  44554. bottom: 238/1724
  44555. }
  44556. },
  44557. head: {
  44558. height: math.unit(21.4, "feet"),
  44559. name: "Head",
  44560. image: {
  44561. source: "./media/characters/veluren-thanazel/head.svg"
  44562. }
  44563. },
  44564. genitals: {
  44565. height: math.unit(19.4, "feet"),
  44566. name: "Genitals",
  44567. image: {
  44568. source: "./media/characters/veluren-thanazel/genitals.svg"
  44569. }
  44570. },
  44571. },
  44572. [
  44573. {
  44574. name: "Social",
  44575. height: math.unit(6, "feet")
  44576. },
  44577. {
  44578. name: "Play",
  44579. height: math.unit(12, "feet")
  44580. },
  44581. {
  44582. name: "True",
  44583. height: math.unit(30, "feet"),
  44584. default: true
  44585. },
  44586. ]
  44587. ))
  44588. characterMakers.push(() => makeCharacter(
  44589. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44590. {
  44591. front: {
  44592. height: math.unit(7 + 6/12, "feet"),
  44593. weight: math.unit(500, "kg"),
  44594. name: "Front",
  44595. image: {
  44596. source: "./media/characters/arcturas/front.svg",
  44597. extra: 1700/1500,
  44598. bottom: 145/1845
  44599. }
  44600. },
  44601. },
  44602. [
  44603. {
  44604. name: "Normal",
  44605. height: math.unit(7 + 6/12, "feet"),
  44606. default: true
  44607. },
  44608. ]
  44609. ))
  44610. characterMakers.push(() => makeCharacter(
  44611. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44612. {
  44613. side: {
  44614. height: math.unit(6, "feet"),
  44615. weight: math.unit(2, "tons"),
  44616. name: "Side",
  44617. image: {
  44618. source: "./media/characters/vitaen/side.svg",
  44619. extra: 1157/617,
  44620. bottom: 122/1279
  44621. }
  44622. },
  44623. },
  44624. [
  44625. {
  44626. name: "Normal",
  44627. height: math.unit(6, "feet"),
  44628. default: true
  44629. },
  44630. ]
  44631. ))
  44632. characterMakers.push(() => makeCharacter(
  44633. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44634. {
  44635. front: {
  44636. height: math.unit(19, "feet"),
  44637. name: "Front",
  44638. image: {
  44639. source: "./media/characters/fia-dreamweaver/front.svg",
  44640. extra: 1630/1504,
  44641. bottom: 25/1655
  44642. }
  44643. },
  44644. },
  44645. [
  44646. {
  44647. name: "Normal",
  44648. height: math.unit(19, "feet"),
  44649. default: true
  44650. },
  44651. ]
  44652. ))
  44653. characterMakers.push(() => makeCharacter(
  44654. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44655. {
  44656. front: {
  44657. height: math.unit(5 + 4/12, "feet"),
  44658. name: "Front",
  44659. image: {
  44660. source: "./media/characters/artan/front.svg",
  44661. extra: 1618/1535,
  44662. bottom: 46/1664
  44663. }
  44664. },
  44665. back: {
  44666. height: math.unit(5 + 4/12, "feet"),
  44667. name: "Back",
  44668. image: {
  44669. source: "./media/characters/artan/back.svg",
  44670. extra: 1618/1543,
  44671. bottom: 31/1649
  44672. }
  44673. },
  44674. },
  44675. [
  44676. {
  44677. name: "Normal",
  44678. height: math.unit(5 + 4/12, "feet"),
  44679. default: true
  44680. },
  44681. ]
  44682. ))
  44683. characterMakers.push(() => makeCharacter(
  44684. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44685. {
  44686. side: {
  44687. height: math.unit(182, "cm"),
  44688. weight: math.unit(1000, "lb"),
  44689. name: "Side",
  44690. image: {
  44691. source: "./media/characters/silver-dragon/side.svg",
  44692. extra: 710/287,
  44693. bottom: 88/798
  44694. }
  44695. },
  44696. },
  44697. [
  44698. {
  44699. name: "Normal",
  44700. height: math.unit(182, "cm"),
  44701. default: true
  44702. },
  44703. ]
  44704. ))
  44705. characterMakers.push(() => makeCharacter(
  44706. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44707. {
  44708. side: {
  44709. height: math.unit(6 + 6/12, "feet"),
  44710. weight: math.unit(1.5, "tons"),
  44711. name: "Side",
  44712. image: {
  44713. source: "./media/characters/zephyr/side.svg",
  44714. extra: 1433/586,
  44715. bottom: 109/1542
  44716. }
  44717. },
  44718. },
  44719. [
  44720. {
  44721. name: "Normal",
  44722. height: math.unit(6 + 6/12, "feet"),
  44723. default: true
  44724. },
  44725. ]
  44726. ))
  44727. characterMakers.push(() => makeCharacter(
  44728. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44729. {
  44730. side: {
  44731. height: math.unit(1, "feet"),
  44732. name: "Side",
  44733. image: {
  44734. source: "./media/characters/vixye/side.svg",
  44735. extra: 632/541,
  44736. bottom: 0/632
  44737. }
  44738. },
  44739. },
  44740. [
  44741. {
  44742. name: "Normal",
  44743. height: math.unit(1, "feet"),
  44744. default: true
  44745. },
  44746. {
  44747. name: "True",
  44748. height: math.unit(1e15, "multiverses")
  44749. },
  44750. ]
  44751. ))
  44752. characterMakers.push(() => makeCharacter(
  44753. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44754. {
  44755. front: {
  44756. height: math.unit(8 + 2/12, "feet"),
  44757. weight: math.unit(650, "lb"),
  44758. name: "Front",
  44759. image: {
  44760. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44761. extra: 1174/1137,
  44762. bottom: 82/1256
  44763. }
  44764. },
  44765. back: {
  44766. height: math.unit(8 + 2/12, "feet"),
  44767. weight: math.unit(650, "lb"),
  44768. name: "Back",
  44769. image: {
  44770. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44771. extra: 1204/1157,
  44772. bottom: 46/1250
  44773. }
  44774. },
  44775. },
  44776. [
  44777. {
  44778. name: "Wildform",
  44779. height: math.unit(8 + 2/12, "feet"),
  44780. default: true
  44781. },
  44782. ]
  44783. ))
  44784. characterMakers.push(() => makeCharacter(
  44785. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44786. {
  44787. front: {
  44788. height: math.unit(18, "feet"),
  44789. name: "Front",
  44790. image: {
  44791. source: "./media/characters/cyphin/front.svg",
  44792. extra: 970/886,
  44793. bottom: 42/1012
  44794. }
  44795. },
  44796. back: {
  44797. height: math.unit(18, "feet"),
  44798. name: "Back",
  44799. image: {
  44800. source: "./media/characters/cyphin/back.svg",
  44801. extra: 1009/894,
  44802. bottom: 24/1033
  44803. }
  44804. },
  44805. head: {
  44806. height: math.unit(5.05, "feet"),
  44807. name: "Head",
  44808. image: {
  44809. source: "./media/characters/cyphin/head.svg"
  44810. }
  44811. },
  44812. tailbud: {
  44813. height: math.unit(5, "feet"),
  44814. name: "Tailbud",
  44815. image: {
  44816. source: "./media/characters/cyphin/tailbud.svg"
  44817. }
  44818. },
  44819. },
  44820. [
  44821. ]
  44822. ))
  44823. characterMakers.push(() => makeCharacter(
  44824. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44825. {
  44826. side: {
  44827. height: math.unit(10, "feet"),
  44828. weight: math.unit(6, "tons"),
  44829. name: "Side",
  44830. image: {
  44831. source: "./media/characters/raijin/side.svg",
  44832. extra: 1529/613,
  44833. bottom: 337/1866
  44834. }
  44835. },
  44836. },
  44837. [
  44838. {
  44839. name: "Normal",
  44840. height: math.unit(10, "feet"),
  44841. default: true
  44842. },
  44843. ]
  44844. ))
  44845. characterMakers.push(() => makeCharacter(
  44846. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44847. {
  44848. side: {
  44849. height: math.unit(9, "feet"),
  44850. name: "Side",
  44851. image: {
  44852. source: "./media/characters/nilghais/side.svg",
  44853. extra: 1047/744,
  44854. bottom: 91/1138
  44855. }
  44856. },
  44857. head: {
  44858. height: math.unit(3.14, "feet"),
  44859. name: "Head",
  44860. image: {
  44861. source: "./media/characters/nilghais/head.svg"
  44862. }
  44863. },
  44864. mouth: {
  44865. height: math.unit(4.6, "feet"),
  44866. name: "Mouth",
  44867. image: {
  44868. source: "./media/characters/nilghais/mouth.svg"
  44869. }
  44870. },
  44871. wings: {
  44872. height: math.unit(24, "feet"),
  44873. name: "Wings",
  44874. image: {
  44875. source: "./media/characters/nilghais/wings.svg"
  44876. }
  44877. },
  44878. ass: {
  44879. height: math.unit(6.12, "feet"),
  44880. name: "Ass",
  44881. image: {
  44882. source: "./media/characters/nilghais/ass.svg"
  44883. }
  44884. },
  44885. },
  44886. [
  44887. {
  44888. name: "Normal",
  44889. height: math.unit(9, "feet"),
  44890. default: true
  44891. },
  44892. ]
  44893. ))
  44894. characterMakers.push(() => makeCharacter(
  44895. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44896. {
  44897. regular: {
  44898. height: math.unit(16 + 2/12, "feet"),
  44899. weight: math.unit(2300, "lb"),
  44900. name: "Regular",
  44901. image: {
  44902. source: "./media/characters/zolgar/regular.svg",
  44903. extra: 1246/1004,
  44904. bottom: 124/1370
  44905. }
  44906. },
  44907. boxers: {
  44908. height: math.unit(16 + 2/12, "feet"),
  44909. weight: math.unit(2300, "lb"),
  44910. name: "Boxers",
  44911. image: {
  44912. source: "./media/characters/zolgar/boxers.svg",
  44913. extra: 1246/1004,
  44914. bottom: 124/1370
  44915. }
  44916. },
  44917. armored: {
  44918. height: math.unit(16 + 2/12, "feet"),
  44919. weight: math.unit(2300, "lb"),
  44920. name: "Armored",
  44921. image: {
  44922. source: "./media/characters/zolgar/armored.svg",
  44923. extra: 1246/1004,
  44924. bottom: 124/1370
  44925. }
  44926. },
  44927. goth: {
  44928. height: math.unit(16 + 2/12, "feet"),
  44929. weight: math.unit(2300, "lb"),
  44930. name: "Goth",
  44931. image: {
  44932. source: "./media/characters/zolgar/goth.svg",
  44933. extra: 1246/1004,
  44934. bottom: 124/1370
  44935. }
  44936. },
  44937. },
  44938. [
  44939. {
  44940. name: "Shrunken Down",
  44941. height: math.unit(9 + 2/12, "feet")
  44942. },
  44943. {
  44944. name: "Normal",
  44945. height: math.unit(16 + 2/12, "feet"),
  44946. default: true
  44947. },
  44948. ]
  44949. ))
  44950. characterMakers.push(() => makeCharacter(
  44951. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44952. {
  44953. front: {
  44954. height: math.unit(6, "feet"),
  44955. weight: math.unit(168, "lb"),
  44956. name: "Front",
  44957. image: {
  44958. source: "./media/characters/luca/front.svg",
  44959. extra: 841/667,
  44960. bottom: 102/943
  44961. }
  44962. },
  44963. },
  44964. [
  44965. {
  44966. name: "Normal",
  44967. height: math.unit(6, "feet"),
  44968. default: true
  44969. },
  44970. ]
  44971. ))
  44972. characterMakers.push(() => makeCharacter(
  44973. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44974. {
  44975. side: {
  44976. height: math.unit(7 + 3/12, "feet"),
  44977. weight: math.unit(312, "lb"),
  44978. name: "Side",
  44979. image: {
  44980. source: "./media/characters/zezo/side.svg",
  44981. extra: 1192/1067,
  44982. bottom: 63/1255
  44983. }
  44984. },
  44985. },
  44986. [
  44987. {
  44988. name: "Normal",
  44989. height: math.unit(7 + 3/12, "feet"),
  44990. default: true
  44991. },
  44992. ]
  44993. ))
  44994. characterMakers.push(() => makeCharacter(
  44995. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44996. {
  44997. front: {
  44998. height: math.unit(5 + 5/12, "feet"),
  44999. weight: math.unit(170, "lb"),
  45000. name: "Front",
  45001. image: {
  45002. source: "./media/characters/mayso/front.svg",
  45003. extra: 1215/1108,
  45004. bottom: 16/1231
  45005. }
  45006. },
  45007. },
  45008. [
  45009. {
  45010. name: "Normal",
  45011. height: math.unit(5 + 5/12, "feet"),
  45012. default: true
  45013. },
  45014. ]
  45015. ))
  45016. characterMakers.push(() => makeCharacter(
  45017. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45018. {
  45019. front: {
  45020. height: math.unit(4 + 3/12, "feet"),
  45021. weight: math.unit(80, "lb"),
  45022. name: "Front",
  45023. image: {
  45024. source: "./media/characters/hess/front.svg",
  45025. extra: 1200/1123,
  45026. bottom: 16/1216
  45027. }
  45028. },
  45029. },
  45030. [
  45031. {
  45032. name: "Normal",
  45033. height: math.unit(4 + 3/12, "feet"),
  45034. default: true
  45035. },
  45036. ]
  45037. ))
  45038. characterMakers.push(() => makeCharacter(
  45039. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45040. {
  45041. front: {
  45042. height: math.unit(1.9, "meters"),
  45043. name: "Front",
  45044. image: {
  45045. source: "./media/characters/ashgar/front.svg",
  45046. extra: 1177/1146,
  45047. bottom: 99/1276
  45048. }
  45049. },
  45050. back: {
  45051. height: math.unit(1.9, "meters"),
  45052. name: "Back",
  45053. image: {
  45054. source: "./media/characters/ashgar/back.svg",
  45055. extra: 1201/1183,
  45056. bottom: 53/1254
  45057. }
  45058. },
  45059. feral: {
  45060. height: math.unit(1.4, "meters"),
  45061. name: "Feral",
  45062. image: {
  45063. source: "./media/characters/ashgar/feral.svg",
  45064. extra: 370/345,
  45065. bottom: 45/415
  45066. }
  45067. },
  45068. },
  45069. [
  45070. {
  45071. name: "Normal",
  45072. height: math.unit(1.9, "meters"),
  45073. default: true
  45074. },
  45075. ]
  45076. ))
  45077. characterMakers.push(() => makeCharacter(
  45078. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45079. {
  45080. regular: {
  45081. height: math.unit(6, "feet"),
  45082. weight: math.unit(220, "lb"),
  45083. name: "Regular",
  45084. image: {
  45085. source: "./media/characters/phillip/regular.svg",
  45086. extra: 1373/1277,
  45087. bottom: 75/1448
  45088. }
  45089. },
  45090. dressed: {
  45091. height: math.unit(6, "feet"),
  45092. weight: math.unit(220, "lb"),
  45093. name: "Dressed",
  45094. image: {
  45095. source: "./media/characters/phillip/dressed.svg",
  45096. extra: 1373/1277,
  45097. bottom: 75/1448
  45098. }
  45099. },
  45100. paw: {
  45101. height: math.unit(1.44, "feet"),
  45102. name: "Paw",
  45103. image: {
  45104. source: "./media/characters/phillip/paw.svg"
  45105. }
  45106. },
  45107. },
  45108. [
  45109. {
  45110. name: "Normal",
  45111. height: math.unit(6, "feet"),
  45112. default: true
  45113. },
  45114. ]
  45115. ))
  45116. characterMakers.push(() => makeCharacter(
  45117. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45118. {
  45119. side: {
  45120. height: math.unit(42, "feet"),
  45121. name: "Side",
  45122. image: {
  45123. source: "./media/characters/uvula/side.svg",
  45124. extra: 683/586,
  45125. bottom: 60/743
  45126. }
  45127. },
  45128. front: {
  45129. height: math.unit(42, "feet"),
  45130. name: "Front",
  45131. image: {
  45132. source: "./media/characters/uvula/front.svg",
  45133. extra: 705/613,
  45134. bottom: 54/759
  45135. }
  45136. },
  45137. maw: {
  45138. height: math.unit(23.5, "feet"),
  45139. name: "Maw",
  45140. image: {
  45141. source: "./media/characters/uvula/maw.svg"
  45142. }
  45143. },
  45144. },
  45145. [
  45146. {
  45147. name: "Original Size",
  45148. height: math.unit(14, "inches")
  45149. },
  45150. {
  45151. name: "Human Size",
  45152. height: math.unit(6, "feet")
  45153. },
  45154. {
  45155. name: "Big",
  45156. height: math.unit(42, "feet"),
  45157. default: true
  45158. },
  45159. {
  45160. name: "Bigger",
  45161. height: math.unit(100, "feet")
  45162. },
  45163. ]
  45164. ))
  45165. characterMakers.push(() => makeCharacter(
  45166. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45167. {
  45168. front: {
  45169. height: math.unit(5 + 11/12, "feet"),
  45170. name: "Front",
  45171. image: {
  45172. source: "./media/characters/lannah/front.svg",
  45173. extra: 1208/1113,
  45174. bottom: 97/1305
  45175. }
  45176. },
  45177. },
  45178. [
  45179. {
  45180. name: "Normal",
  45181. height: math.unit(5 + 11/12, "feet"),
  45182. default: true
  45183. },
  45184. ]
  45185. ))
  45186. characterMakers.push(() => makeCharacter(
  45187. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45188. {
  45189. front: {
  45190. height: math.unit(6 + 3/12, "feet"),
  45191. weight: math.unit(3.5, "tons"),
  45192. name: "Front",
  45193. image: {
  45194. source: "./media/characters/emberflame/front.svg",
  45195. extra: 1198/672,
  45196. bottom: 82/1280
  45197. }
  45198. },
  45199. side: {
  45200. height: math.unit(6 + 3/12, "feet"),
  45201. weight: math.unit(3.5, "tons"),
  45202. name: "Side",
  45203. image: {
  45204. source: "./media/characters/emberflame/side.svg",
  45205. extra: 938/527,
  45206. bottom: 56/994
  45207. }
  45208. },
  45209. },
  45210. [
  45211. {
  45212. name: "Normal",
  45213. height: math.unit(6 + 3/12, "feet"),
  45214. default: true
  45215. },
  45216. ]
  45217. ))
  45218. characterMakers.push(() => makeCharacter(
  45219. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45220. {
  45221. side: {
  45222. height: math.unit(17.5, "feet"),
  45223. weight: math.unit(35, "tons"),
  45224. name: "Side",
  45225. image: {
  45226. source: "./media/characters/sophie-ambrose/side.svg",
  45227. extra: 1573/1242,
  45228. bottom: 71/1644
  45229. }
  45230. },
  45231. maw: {
  45232. height: math.unit(7.4, "feet"),
  45233. name: "Maw",
  45234. image: {
  45235. source: "./media/characters/sophie-ambrose/maw.svg"
  45236. }
  45237. },
  45238. },
  45239. [
  45240. {
  45241. name: "Normal",
  45242. height: math.unit(17.5, "feet"),
  45243. default: true
  45244. },
  45245. ]
  45246. ))
  45247. characterMakers.push(() => makeCharacter(
  45248. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45249. {
  45250. front: {
  45251. height: math.unit(280, "feet"),
  45252. weight: math.unit(550, "tons"),
  45253. name: "Front",
  45254. image: {
  45255. source: "./media/characters/king-mugi/front.svg",
  45256. extra: 1102/947,
  45257. bottom: 104/1206
  45258. }
  45259. },
  45260. },
  45261. [
  45262. {
  45263. name: "King Mugi",
  45264. height: math.unit(280, "feet"),
  45265. default: true
  45266. },
  45267. ]
  45268. ))
  45269. characterMakers.push(() => makeCharacter(
  45270. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45271. {
  45272. female: {
  45273. height: math.unit(300, "meters"),
  45274. name: "Front",
  45275. image: {
  45276. source: "./media/characters/nova-fox/female.svg",
  45277. extra: 664/632,
  45278. bottom: 51/715
  45279. },
  45280. form: "female",
  45281. default: true
  45282. },
  45283. male: {
  45284. height: math.unit(300, "meters"),
  45285. name: "Front",
  45286. image: {
  45287. source: "./media/characters/nova-fox/male.svg",
  45288. extra: 663/631,
  45289. bottom: 30/693
  45290. },
  45291. form: "male",
  45292. default: true
  45293. },
  45294. },
  45295. [
  45296. {
  45297. name: "Macro",
  45298. height: math.unit(300, "meters"),
  45299. default: true,
  45300. allForms: true
  45301. },
  45302. ],
  45303. {
  45304. "female": {
  45305. name: "Female",
  45306. default: true
  45307. },
  45308. "male": {
  45309. name: "Male",
  45310. },
  45311. }
  45312. ))
  45313. characterMakers.push(() => makeCharacter(
  45314. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45315. {
  45316. front: {
  45317. height: math.unit(6 + 3/12, "feet"),
  45318. weight: math.unit(170, "lb"),
  45319. name: "Front",
  45320. image: {
  45321. source: "./media/characters/sam-bat/front.svg",
  45322. extra: 1601/1411,
  45323. bottom: 125/1726
  45324. }
  45325. },
  45326. back: {
  45327. height: math.unit(6 + 3/12, "feet"),
  45328. weight: math.unit(170, "lb"),
  45329. name: "Back",
  45330. image: {
  45331. source: "./media/characters/sam-bat/back.svg",
  45332. extra: 1577/1405,
  45333. bottom: 58/1635
  45334. }
  45335. },
  45336. },
  45337. [
  45338. {
  45339. name: "Normal",
  45340. height: math.unit(6 + 3/12, "feet"),
  45341. default: true
  45342. },
  45343. ]
  45344. ))
  45345. characterMakers.push(() => makeCharacter(
  45346. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45347. {
  45348. front: {
  45349. height: math.unit(59, "feet"),
  45350. weight: math.unit(40000, "lb"),
  45351. name: "Front",
  45352. image: {
  45353. source: "./media/characters/inari/front.svg",
  45354. extra: 1884/1350,
  45355. bottom: 95/1979
  45356. }
  45357. },
  45358. },
  45359. [
  45360. {
  45361. name: "Gigantamax",
  45362. height: math.unit(59, "feet"),
  45363. default: true
  45364. },
  45365. ]
  45366. ))
  45367. characterMakers.push(() => makeCharacter(
  45368. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45369. {
  45370. front: {
  45371. height: math.unit(5 + 8/12, "feet"),
  45372. name: "Front",
  45373. image: {
  45374. source: "./media/characters/elizabeth/front.svg",
  45375. extra: 1395/1298,
  45376. bottom: 54/1449
  45377. }
  45378. },
  45379. mouth: {
  45380. height: math.unit(1.97, "feet"),
  45381. name: "Mouth",
  45382. image: {
  45383. source: "./media/characters/elizabeth/mouth.svg"
  45384. }
  45385. },
  45386. foot: {
  45387. height: math.unit(1.17, "feet"),
  45388. name: "Foot",
  45389. image: {
  45390. source: "./media/characters/elizabeth/foot.svg"
  45391. }
  45392. },
  45393. },
  45394. [
  45395. {
  45396. name: "Normal",
  45397. height: math.unit(5 + 8/12, "feet"),
  45398. default: true
  45399. },
  45400. {
  45401. name: "Minimacro",
  45402. height: math.unit(18, "feet")
  45403. },
  45404. {
  45405. name: "Macro",
  45406. height: math.unit(180, "feet")
  45407. },
  45408. ]
  45409. ))
  45410. characterMakers.push(() => makeCharacter(
  45411. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45412. {
  45413. front: {
  45414. height: math.unit(5 + 2/12, "feet"),
  45415. name: "Front",
  45416. image: {
  45417. source: "./media/characters/october-gossamer/front.svg",
  45418. extra: 505/454,
  45419. bottom: 7/512
  45420. }
  45421. },
  45422. back: {
  45423. height: math.unit(5 + 2/12, "feet"),
  45424. name: "Back",
  45425. image: {
  45426. source: "./media/characters/october-gossamer/back.svg",
  45427. extra: 501/454,
  45428. bottom: 11/512
  45429. }
  45430. },
  45431. },
  45432. [
  45433. {
  45434. name: "Normal",
  45435. height: math.unit(5 + 2/12, "feet"),
  45436. default: true
  45437. },
  45438. ]
  45439. ))
  45440. characterMakers.push(() => makeCharacter(
  45441. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45442. {
  45443. front: {
  45444. height: math.unit(5, "feet"),
  45445. name: "Front",
  45446. image: {
  45447. source: "./media/characters/epiglottis/front.svg",
  45448. extra: 923/849,
  45449. bottom: 17/940
  45450. }
  45451. },
  45452. },
  45453. [
  45454. {
  45455. name: "Original Size",
  45456. height: math.unit(10, "inches")
  45457. },
  45458. {
  45459. name: "Human Size",
  45460. height: math.unit(5, "feet"),
  45461. default: true
  45462. },
  45463. {
  45464. name: "Big",
  45465. height: math.unit(25, "feet")
  45466. },
  45467. {
  45468. name: "Bigger",
  45469. height: math.unit(50, "feet")
  45470. },
  45471. {
  45472. name: "oh lawd",
  45473. height: math.unit(75, "feet")
  45474. },
  45475. ]
  45476. ))
  45477. characterMakers.push(() => makeCharacter(
  45478. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45479. {
  45480. front: {
  45481. height: math.unit(2 + 4/12, "feet"),
  45482. weight: math.unit(60, "lb"),
  45483. name: "Front",
  45484. image: {
  45485. source: "./media/characters/lerm/front.svg",
  45486. extra: 796/790,
  45487. bottom: 79/875
  45488. }
  45489. },
  45490. },
  45491. [
  45492. {
  45493. name: "Normal",
  45494. height: math.unit(2 + 4/12, "feet"),
  45495. default: true
  45496. },
  45497. ]
  45498. ))
  45499. characterMakers.push(() => makeCharacter(
  45500. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45501. {
  45502. front: {
  45503. height: math.unit(5.5, "feet"),
  45504. weight: math.unit(130, "lb"),
  45505. name: "Front",
  45506. image: {
  45507. source: "./media/characters/xena-nebadon/front.svg",
  45508. extra: 1828/1730,
  45509. bottom: 79/1907
  45510. }
  45511. },
  45512. },
  45513. [
  45514. {
  45515. name: "Tiny Puppy",
  45516. height: math.unit(3, "inches")
  45517. },
  45518. {
  45519. name: "Normal",
  45520. height: math.unit(5.5, "feet"),
  45521. default: true
  45522. },
  45523. {
  45524. name: "Lotta Lady",
  45525. height: math.unit(12, "feet")
  45526. },
  45527. {
  45528. name: "Pretty Big",
  45529. height: math.unit(100, "feet")
  45530. },
  45531. {
  45532. name: "Big",
  45533. height: math.unit(500, "feet")
  45534. },
  45535. {
  45536. name: "Skyscraper Toys",
  45537. height: math.unit(2500, "feet")
  45538. },
  45539. {
  45540. name: "Plane Catcher",
  45541. height: math.unit(8, "miles")
  45542. },
  45543. {
  45544. name: "Planet Toys",
  45545. height: math.unit(15, "earths")
  45546. },
  45547. {
  45548. name: "Stardust",
  45549. height: math.unit(0.25, "galaxies")
  45550. },
  45551. {
  45552. name: "Snacks",
  45553. height: math.unit(70, "universes")
  45554. },
  45555. ]
  45556. ))
  45557. characterMakers.push(() => makeCharacter(
  45558. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45559. {
  45560. front: {
  45561. height: math.unit(1.6, "meters"),
  45562. weight: math.unit(60, "kg"),
  45563. name: "Front",
  45564. image: {
  45565. source: "./media/characters/bounty/front.svg",
  45566. extra: 1426/1308,
  45567. bottom: 15/1441
  45568. }
  45569. },
  45570. back: {
  45571. height: math.unit(1.6, "meters"),
  45572. weight: math.unit(60, "kg"),
  45573. name: "Back",
  45574. image: {
  45575. source: "./media/characters/bounty/back.svg",
  45576. extra: 1417/1307,
  45577. bottom: 8/1425
  45578. }
  45579. },
  45580. },
  45581. [
  45582. {
  45583. name: "Normal",
  45584. height: math.unit(1.6, "meters"),
  45585. default: true
  45586. },
  45587. {
  45588. name: "Macro",
  45589. height: math.unit(300, "meters")
  45590. },
  45591. ]
  45592. ))
  45593. characterMakers.push(() => makeCharacter(
  45594. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45595. {
  45596. front: {
  45597. height: math.unit(2 + 8/12, "feet"),
  45598. weight: math.unit(15, "lb"),
  45599. name: "Front",
  45600. image: {
  45601. source: "./media/characters/mochi/front.svg",
  45602. extra: 1022/852,
  45603. bottom: 435/1457
  45604. }
  45605. },
  45606. back: {
  45607. height: math.unit(2 + 8/12, "feet"),
  45608. weight: math.unit(15, "lb"),
  45609. name: "Back",
  45610. image: {
  45611. source: "./media/characters/mochi/back.svg",
  45612. extra: 1335/1119,
  45613. bottom: 39/1374
  45614. }
  45615. },
  45616. bird: {
  45617. height: math.unit(2 + 8/12, "feet"),
  45618. weight: math.unit(15, "lb"),
  45619. name: "Bird",
  45620. image: {
  45621. source: "./media/characters/mochi/bird.svg",
  45622. extra: 1251/1113,
  45623. bottom: 178/1429
  45624. }
  45625. },
  45626. kaiju: {
  45627. height: math.unit(154, "feet"),
  45628. weight: math.unit(1e7, "lb"),
  45629. name: "Kaiju",
  45630. image: {
  45631. source: "./media/characters/mochi/kaiju.svg",
  45632. extra: 460/324,
  45633. bottom: 40/500
  45634. }
  45635. },
  45636. head: {
  45637. height: math.unit(1.21, "feet"),
  45638. name: "Head",
  45639. image: {
  45640. source: "./media/characters/mochi/head.svg"
  45641. }
  45642. },
  45643. alternateTail: {
  45644. height: math.unit(2 + 8/12, "feet"),
  45645. weight: math.unit(45, "lb"),
  45646. name: "Alternate Tail",
  45647. image: {
  45648. source: "./media/characters/mochi/alternate-tail.svg",
  45649. extra: 139/76,
  45650. bottom: 45/184
  45651. }
  45652. },
  45653. },
  45654. [
  45655. {
  45656. name: "Micro",
  45657. height: math.unit(2, "inches")
  45658. },
  45659. {
  45660. name: "Normal",
  45661. height: math.unit(2 + 8/12, "feet"),
  45662. default: true
  45663. },
  45664. {
  45665. name: "Macro",
  45666. height: math.unit(106, "feet")
  45667. },
  45668. ]
  45669. ))
  45670. characterMakers.push(() => makeCharacter(
  45671. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45672. {
  45673. front: {
  45674. height: math.unit(5.67, "feet"),
  45675. weight: math.unit(135, "lb"),
  45676. name: "Front",
  45677. image: {
  45678. source: "./media/characters/sarel/front.svg",
  45679. extra: 865/788,
  45680. bottom: 97/962
  45681. }
  45682. },
  45683. back: {
  45684. height: math.unit(5.67, "feet"),
  45685. weight: math.unit(135, "lb"),
  45686. name: "Back",
  45687. image: {
  45688. source: "./media/characters/sarel/back.svg",
  45689. extra: 857/777,
  45690. bottom: 32/889
  45691. }
  45692. },
  45693. chozoan: {
  45694. height: math.unit(5.67, "feet"),
  45695. weight: math.unit(135, "lb"),
  45696. name: "Chozoan",
  45697. image: {
  45698. source: "./media/characters/sarel/chozoan.svg",
  45699. extra: 865/788,
  45700. bottom: 97/962
  45701. }
  45702. },
  45703. current: {
  45704. height: math.unit(5.67, "feet"),
  45705. weight: math.unit(135, "lb"),
  45706. name: "Current",
  45707. image: {
  45708. source: "./media/characters/sarel/current.svg",
  45709. extra: 865/788,
  45710. bottom: 97/962
  45711. }
  45712. },
  45713. head: {
  45714. height: math.unit(1.77, "feet"),
  45715. name: "Head",
  45716. image: {
  45717. source: "./media/characters/sarel/head.svg"
  45718. }
  45719. },
  45720. claws: {
  45721. height: math.unit(1.8, "feet"),
  45722. name: "Claws",
  45723. image: {
  45724. source: "./media/characters/sarel/claws.svg"
  45725. }
  45726. },
  45727. clawsAlt: {
  45728. height: math.unit(1.8, "feet"),
  45729. name: "Claws-alt",
  45730. image: {
  45731. source: "./media/characters/sarel/claws-alt.svg"
  45732. }
  45733. },
  45734. },
  45735. [
  45736. {
  45737. name: "Normal",
  45738. height: math.unit(5.67, "feet"),
  45739. default: true
  45740. },
  45741. ]
  45742. ))
  45743. characterMakers.push(() => makeCharacter(
  45744. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45745. {
  45746. front: {
  45747. height: math.unit(5500, "feet"),
  45748. name: "Front",
  45749. image: {
  45750. source: "./media/characters/alyonia/front.svg",
  45751. extra: 1200/1135,
  45752. bottom: 29/1229
  45753. }
  45754. },
  45755. back: {
  45756. height: math.unit(5500, "feet"),
  45757. name: "Back",
  45758. image: {
  45759. source: "./media/characters/alyonia/back.svg",
  45760. extra: 1205/1138,
  45761. bottom: 10/1215
  45762. }
  45763. },
  45764. },
  45765. [
  45766. {
  45767. name: "Small",
  45768. height: math.unit(10, "feet")
  45769. },
  45770. {
  45771. name: "Macro",
  45772. height: math.unit(500, "feet")
  45773. },
  45774. {
  45775. name: "Mega Macro",
  45776. height: math.unit(5500, "feet"),
  45777. default: true
  45778. },
  45779. {
  45780. name: "Mega Macro+",
  45781. height: math.unit(500000, "feet")
  45782. },
  45783. {
  45784. name: "Giga Macro",
  45785. height: math.unit(3000, "miles")
  45786. },
  45787. {
  45788. name: "Tera Macro",
  45789. height: math.unit(2.8e6, "miles")
  45790. },
  45791. {
  45792. name: "Galactic",
  45793. height: math.unit(120000, "lightyears")
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45799. {
  45800. werewolf: {
  45801. height: math.unit(8, "feet"),
  45802. weight: math.unit(425, "lb"),
  45803. name: "Werewolf",
  45804. image: {
  45805. source: "./media/characters/autumn/werewolf.svg",
  45806. extra: 2154/2031,
  45807. bottom: 160/2314
  45808. }
  45809. },
  45810. human: {
  45811. height: math.unit(5 + 8/12, "feet"),
  45812. weight: math.unit(150, "lb"),
  45813. name: "Human",
  45814. image: {
  45815. source: "./media/characters/autumn/human.svg",
  45816. extra: 1200/1149,
  45817. bottom: 30/1230
  45818. }
  45819. },
  45820. },
  45821. [
  45822. {
  45823. name: "Normal",
  45824. height: math.unit(8, "feet"),
  45825. default: true
  45826. },
  45827. ]
  45828. ))
  45829. characterMakers.push(() => makeCharacter(
  45830. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45831. {
  45832. front: {
  45833. height: math.unit(8 + 5/12, "feet"),
  45834. weight: math.unit(825, "lb"),
  45835. name: "Front",
  45836. image: {
  45837. source: "./media/characters/cobalt-charizard/front.svg",
  45838. extra: 1268/1155,
  45839. bottom: 122/1390
  45840. }
  45841. },
  45842. side: {
  45843. height: math.unit(8 + 5/12, "feet"),
  45844. weight: math.unit(825, "lb"),
  45845. name: "Side",
  45846. image: {
  45847. source: "./media/characters/cobalt-charizard/side.svg",
  45848. extra: 1348/1257,
  45849. bottom: 58/1406
  45850. }
  45851. },
  45852. gMax: {
  45853. height: math.unit(134 + 11/12, "feet"),
  45854. name: "G-Max",
  45855. image: {
  45856. source: "./media/characters/cobalt-charizard/g-max.svg",
  45857. extra: 1835/1541,
  45858. bottom: 151/1986
  45859. }
  45860. },
  45861. },
  45862. [
  45863. {
  45864. name: "Normal",
  45865. height: math.unit(8 + 5/12, "feet"),
  45866. default: true
  45867. },
  45868. ]
  45869. ))
  45870. characterMakers.push(() => makeCharacter(
  45871. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45872. {
  45873. front: {
  45874. height: math.unit(6 + 3/12, "feet"),
  45875. weight: math.unit(210, "lb"),
  45876. name: "Front",
  45877. image: {
  45878. source: "./media/characters/stella/front.svg",
  45879. extra: 3549/3335,
  45880. bottom: 51/3600
  45881. }
  45882. },
  45883. },
  45884. [
  45885. {
  45886. name: "Normal",
  45887. height: math.unit(6 + 3/12, "feet"),
  45888. default: true
  45889. },
  45890. ]
  45891. ))
  45892. characterMakers.push(() => makeCharacter(
  45893. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45894. {
  45895. front: {
  45896. height: math.unit(5, "feet"),
  45897. weight: math.unit(90, "lb"),
  45898. name: "Front",
  45899. image: {
  45900. source: "./media/characters/riley-bishop/front.svg",
  45901. extra: 1450/1428,
  45902. bottom: 152/1602
  45903. }
  45904. },
  45905. },
  45906. [
  45907. {
  45908. name: "Normal",
  45909. height: math.unit(5, "feet"),
  45910. default: true
  45911. },
  45912. ]
  45913. ))
  45914. characterMakers.push(() => makeCharacter(
  45915. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45916. {
  45917. side: {
  45918. height: math.unit(8 + 2/12, "feet"),
  45919. weight: math.unit(500, "kg"),
  45920. name: "Side",
  45921. image: {
  45922. source: "./media/characters/theo-arcanine/side.svg",
  45923. extra: 1342/1074,
  45924. bottom: 111/1453
  45925. }
  45926. },
  45927. },
  45928. [
  45929. {
  45930. name: "Normal",
  45931. height: math.unit(8 + 2/12, "feet"),
  45932. default: true
  45933. },
  45934. ]
  45935. ))
  45936. characterMakers.push(() => makeCharacter(
  45937. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45938. {
  45939. front: {
  45940. height: math.unit(4, "feet"),
  45941. name: "Front",
  45942. image: {
  45943. source: "./media/characters/kali/front.svg",
  45944. extra: 1074/867,
  45945. bottom: 34/1108
  45946. }
  45947. },
  45948. back: {
  45949. height: math.unit(4, "feet"),
  45950. name: "Back",
  45951. image: {
  45952. source: "./media/characters/kali/back.svg",
  45953. extra: 1068/863,
  45954. bottom: 26/1094
  45955. }
  45956. },
  45957. frontAlt: {
  45958. height: math.unit(4, "feet"),
  45959. name: "Front (Alt)",
  45960. image: {
  45961. source: "./media/characters/kali/front-alt.svg",
  45962. extra: 1921/1357,
  45963. bottom: 70/1991
  45964. }
  45965. },
  45966. },
  45967. [
  45968. {
  45969. name: "Normal",
  45970. height: math.unit(4, "feet"),
  45971. default: true
  45972. },
  45973. {
  45974. name: "Big'vali",
  45975. height: math.unit(11, "feet")
  45976. },
  45977. {
  45978. name: "Macro",
  45979. height: math.unit(32, "meters")
  45980. },
  45981. {
  45982. name: "Macro+",
  45983. height: math.unit(150, "meters")
  45984. },
  45985. {
  45986. name: "Megamacro",
  45987. height: math.unit(7500, "meters")
  45988. },
  45989. {
  45990. name: "Megamacro+",
  45991. height: math.unit(80, "kilometers")
  45992. },
  45993. ]
  45994. ))
  45995. characterMakers.push(() => makeCharacter(
  45996. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45997. {
  45998. side: {
  45999. height: math.unit(5 + 11/12, "feet"),
  46000. weight: math.unit(236, "lb"),
  46001. name: "Side",
  46002. image: {
  46003. source: "./media/characters/gapp/side.svg",
  46004. extra: 775/340,
  46005. bottom: 58/833
  46006. }
  46007. },
  46008. mouth: {
  46009. height: math.unit(2.98, "feet"),
  46010. name: "Mouth",
  46011. image: {
  46012. source: "./media/characters/gapp/mouth.svg"
  46013. }
  46014. },
  46015. },
  46016. [
  46017. {
  46018. name: "Normal",
  46019. height: math.unit(5 + 1/12, "feet"),
  46020. default: true
  46021. },
  46022. ]
  46023. ))
  46024. characterMakers.push(() => makeCharacter(
  46025. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46026. {
  46027. front: {
  46028. height: math.unit(6, "feet"),
  46029. name: "Front",
  46030. image: {
  46031. source: "./media/characters/persephone/front.svg",
  46032. extra: 1895/1717,
  46033. bottom: 96/1991
  46034. }
  46035. },
  46036. back: {
  46037. height: math.unit(6, "feet"),
  46038. name: "Back",
  46039. image: {
  46040. source: "./media/characters/persephone/back.svg",
  46041. extra: 1868/1679,
  46042. bottom: 26/1894
  46043. }
  46044. },
  46045. casual: {
  46046. height: math.unit(6, "feet"),
  46047. name: "Casual",
  46048. image: {
  46049. source: "./media/characters/persephone/casual.svg",
  46050. extra: 1713/1541,
  46051. bottom: 76/1789
  46052. }
  46053. },
  46054. gaming: {
  46055. height: math.unit(3.55, "feet"),
  46056. name: "Gaming",
  46057. image: {
  46058. source: "./media/characters/persephone/gaming.svg",
  46059. extra: 1242/1038,
  46060. bottom: 66/1308
  46061. }
  46062. },
  46063. head: {
  46064. height: math.unit(2.15, "feet"),
  46065. name: "😐",
  46066. image: {
  46067. source: "./media/characters/persephone/head.svg"
  46068. }
  46069. },
  46070. talking: {
  46071. height: math.unit(2.5, "feet"),
  46072. name: "💬",
  46073. image: {
  46074. source: "./media/characters/persephone/talking.svg"
  46075. }
  46076. },
  46077. hmm: {
  46078. height: math.unit(2.28, "feet"),
  46079. name: "🤨",
  46080. image: {
  46081. source: "./media/characters/persephone/hmm.svg"
  46082. }
  46083. },
  46084. },
  46085. [
  46086. {
  46087. name: "Human Size",
  46088. height: math.unit(6, "feet")
  46089. },
  46090. {
  46091. name: "Big Steppy",
  46092. height: math.unit(600, "meters"),
  46093. default: true
  46094. },
  46095. {
  46096. name: "Galaxy Brain",
  46097. height: math.unit(1, "zettameter")
  46098. },
  46099. ]
  46100. ))
  46101. characterMakers.push(() => makeCharacter(
  46102. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46103. {
  46104. front: {
  46105. height: math.unit(1.85, "meters"),
  46106. name: "Front",
  46107. image: {
  46108. source: "./media/characters/riley-foxthing/front.svg",
  46109. extra: 1495/1354,
  46110. bottom: 122/1617
  46111. }
  46112. },
  46113. frontAlt: {
  46114. height: math.unit(1.85, "meters"),
  46115. name: "Front (Alt)",
  46116. image: {
  46117. source: "./media/characters/riley-foxthing/front-alt.svg",
  46118. extra: 1572/1389,
  46119. bottom: 116/1688
  46120. }
  46121. },
  46122. },
  46123. [
  46124. {
  46125. name: "Normal Sized",
  46126. height: math.unit(1.85, "meters"),
  46127. default: true
  46128. },
  46129. {
  46130. name: "Quite Sizable",
  46131. height: math.unit(5, "meters")
  46132. },
  46133. {
  46134. name: "Rather Large",
  46135. height: math.unit(20, "meters")
  46136. },
  46137. {
  46138. name: "Macro",
  46139. height: math.unit(450, "meters")
  46140. },
  46141. {
  46142. name: "Giga",
  46143. height: math.unit(5, "km")
  46144. },
  46145. ]
  46146. ))
  46147. characterMakers.push(() => makeCharacter(
  46148. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46149. {
  46150. front: {
  46151. height: math.unit(6, "feet"),
  46152. weight: math.unit(200, "lb"),
  46153. name: "Front",
  46154. image: {
  46155. source: "./media/characters/blizzard/front.svg",
  46156. extra: 1136/990,
  46157. bottom: 136/1272
  46158. }
  46159. },
  46160. back: {
  46161. height: math.unit(6, "feet"),
  46162. weight: math.unit(200, "lb"),
  46163. name: "Back",
  46164. image: {
  46165. source: "./media/characters/blizzard/back.svg",
  46166. extra: 1175/1034,
  46167. bottom: 97/1272
  46168. }
  46169. },
  46170. sitting: {
  46171. height: math.unit(3.725, "feet"),
  46172. weight: math.unit(200, "lb"),
  46173. name: "Sitting",
  46174. image: {
  46175. source: "./media/characters/blizzard/sitting.svg",
  46176. extra: 581/485,
  46177. bottom: 90/671
  46178. }
  46179. },
  46180. frontWizard: {
  46181. height: math.unit(7.9, "feet"),
  46182. weight: math.unit(200, "lb"),
  46183. name: "Front (Wizard)",
  46184. image: {
  46185. source: "./media/characters/blizzard/front-wizard.svg"
  46186. }
  46187. },
  46188. backWizard: {
  46189. height: math.unit(7.9, "feet"),
  46190. weight: math.unit(200, "lb"),
  46191. name: "Back (Wizard)",
  46192. image: {
  46193. source: "./media/characters/blizzard/back-wizard.svg"
  46194. }
  46195. },
  46196. frontNsfw: {
  46197. height: math.unit(6, "feet"),
  46198. weight: math.unit(200, "lb"),
  46199. name: "Front (NSFW)",
  46200. image: {
  46201. source: "./media/characters/blizzard/front-nsfw.svg",
  46202. extra: 1136/990,
  46203. bottom: 136/1272
  46204. }
  46205. },
  46206. backNsfw: {
  46207. height: math.unit(6, "feet"),
  46208. weight: math.unit(200, "lb"),
  46209. name: "Back (NSFW)",
  46210. image: {
  46211. source: "./media/characters/blizzard/back-nsfw.svg",
  46212. extra: 1175/1034,
  46213. bottom: 97/1272
  46214. }
  46215. },
  46216. sittingNsfw: {
  46217. height: math.unit(3.725, "feet"),
  46218. weight: math.unit(200, "lb"),
  46219. name: "Sitting (NSFW)",
  46220. image: {
  46221. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46222. extra: 581/485,
  46223. bottom: 90/671
  46224. }
  46225. },
  46226. wizardFrontNsfw: {
  46227. height: math.unit(7.9, "feet"),
  46228. weight: math.unit(200, "lb"),
  46229. name: "Wizard (Front, NSFW)",
  46230. image: {
  46231. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46232. }
  46233. },
  46234. },
  46235. [
  46236. {
  46237. name: "Normal",
  46238. height: math.unit(6, "feet"),
  46239. default: true
  46240. },
  46241. ]
  46242. ))
  46243. characterMakers.push(() => makeCharacter(
  46244. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46245. {
  46246. front: {
  46247. height: math.unit(5 + 2/12, "feet"),
  46248. name: "Front",
  46249. image: {
  46250. source: "./media/characters/lumi/front.svg",
  46251. extra: 1328/1268,
  46252. bottom: 103/1431
  46253. }
  46254. },
  46255. back: {
  46256. height: math.unit(5 + 2/12, "feet"),
  46257. name: "Back",
  46258. image: {
  46259. source: "./media/characters/lumi/back.svg",
  46260. extra: 1381/1327,
  46261. bottom: 43/1424
  46262. }
  46263. },
  46264. },
  46265. [
  46266. {
  46267. name: "Normal",
  46268. height: math.unit(5 + 2/12, "feet"),
  46269. default: true
  46270. },
  46271. ]
  46272. ))
  46273. characterMakers.push(() => makeCharacter(
  46274. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46275. {
  46276. front: {
  46277. height: math.unit(5 + 9/12, "feet"),
  46278. name: "Front",
  46279. image: {
  46280. source: "./media/characters/aliya-cotton/front.svg",
  46281. extra: 577/564,
  46282. bottom: 29/606
  46283. }
  46284. },
  46285. },
  46286. [
  46287. {
  46288. name: "Normal",
  46289. height: math.unit(5 + 9/12, "feet"),
  46290. default: true
  46291. },
  46292. ]
  46293. ))
  46294. characterMakers.push(() => makeCharacter(
  46295. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46296. {
  46297. front: {
  46298. height: math.unit(2.7, "meters"),
  46299. weight: math.unit(25000, "lb"),
  46300. name: "Front",
  46301. image: {
  46302. source: "./media/characters/noah-luxray/front.svg",
  46303. extra: 1644/825,
  46304. bottom: 339/1983
  46305. }
  46306. },
  46307. side: {
  46308. height: math.unit(2.97, "meters"),
  46309. weight: math.unit(25000, "lb"),
  46310. name: "Side",
  46311. image: {
  46312. source: "./media/characters/noah-luxray/side.svg",
  46313. extra: 1319/650,
  46314. bottom: 163/1482
  46315. }
  46316. },
  46317. dick: {
  46318. height: math.unit(7.4, "feet"),
  46319. weight: math.unit(2500, "lb"),
  46320. name: "Dick",
  46321. image: {
  46322. source: "./media/characters/noah-luxray/dick.svg"
  46323. }
  46324. },
  46325. dickAlt: {
  46326. height: math.unit(10.83, "feet"),
  46327. weight: math.unit(2500, "lb"),
  46328. name: "Dick-alt",
  46329. image: {
  46330. source: "./media/characters/noah-luxray/dick-alt.svg"
  46331. }
  46332. },
  46333. },
  46334. [
  46335. {
  46336. name: "BIG",
  46337. height: math.unit(2.7, "meters"),
  46338. default: true
  46339. },
  46340. ]
  46341. ))
  46342. characterMakers.push(() => makeCharacter(
  46343. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46344. {
  46345. standing: {
  46346. height: math.unit(183, "cm"),
  46347. weight: math.unit(68, "kg"),
  46348. name: "Standing",
  46349. image: {
  46350. source: "./media/characters/arion/standing.svg",
  46351. extra: 1869/1807,
  46352. bottom: 93/1962
  46353. }
  46354. },
  46355. reclining: {
  46356. height: math.unit(70.5, "cm"),
  46357. weight: math.unit(68, "lb"),
  46358. name: "Reclining",
  46359. image: {
  46360. source: "./media/characters/arion/reclining.svg",
  46361. extra: 937/870,
  46362. bottom: 63/1000
  46363. }
  46364. },
  46365. },
  46366. [
  46367. {
  46368. name: "Colossus Size, Low",
  46369. height: math.unit(33, "meters"),
  46370. default: true
  46371. },
  46372. {
  46373. name: "Colossus Size, Mid",
  46374. height: math.unit(52, "meters")
  46375. },
  46376. {
  46377. name: "Colossus Size, High",
  46378. height: math.unit(60, "meters")
  46379. },
  46380. {
  46381. name: "Titan Size, Low",
  46382. height: math.unit(91, "meters"),
  46383. },
  46384. {
  46385. name: "Titan Size, Mid",
  46386. height: math.unit(122, "meters")
  46387. },
  46388. {
  46389. name: "Titan Size, High",
  46390. height: math.unit(162, "meters")
  46391. },
  46392. ]
  46393. ))
  46394. characterMakers.push(() => makeCharacter(
  46395. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46396. {
  46397. front: {
  46398. height: math.unit(53, "meters"),
  46399. name: "Front",
  46400. image: {
  46401. source: "./media/characters/stellar-marbey/front.svg",
  46402. extra: 1913/1805,
  46403. bottom: 92/2005
  46404. }
  46405. },
  46406. back: {
  46407. height: math.unit(53, "meters"),
  46408. name: "Back",
  46409. image: {
  46410. source: "./media/characters/stellar-marbey/back.svg",
  46411. extra: 1960/1851,
  46412. bottom: 28/1988
  46413. }
  46414. },
  46415. mouth: {
  46416. height: math.unit(3.5, "meters"),
  46417. name: "Mouth",
  46418. image: {
  46419. source: "./media/characters/stellar-marbey/mouth.svg"
  46420. }
  46421. },
  46422. },
  46423. [
  46424. {
  46425. name: "Macro",
  46426. height: math.unit(53, "meters"),
  46427. default: true
  46428. },
  46429. ]
  46430. ))
  46431. characterMakers.push(() => makeCharacter(
  46432. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46433. {
  46434. front: {
  46435. height: math.unit(8 + 1/12, "feet"),
  46436. weight: math.unit(233, "lb"),
  46437. name: "Front",
  46438. image: {
  46439. source: "./media/characters/matsu/front.svg",
  46440. extra: 832/772,
  46441. bottom: 40/872
  46442. }
  46443. },
  46444. back: {
  46445. height: math.unit(8 + 1/12, "feet"),
  46446. weight: math.unit(233, "lb"),
  46447. name: "Back",
  46448. image: {
  46449. source: "./media/characters/matsu/back.svg",
  46450. extra: 839/780,
  46451. bottom: 47/886
  46452. }
  46453. },
  46454. },
  46455. [
  46456. {
  46457. name: "Normal",
  46458. height: math.unit(8 + 1/12, "feet"),
  46459. default: true
  46460. },
  46461. ]
  46462. ))
  46463. characterMakers.push(() => makeCharacter(
  46464. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46465. {
  46466. front: {
  46467. height: math.unit(4, "feet"),
  46468. weight: math.unit(148, "lb"),
  46469. name: "Front",
  46470. image: {
  46471. source: "./media/characters/thiz/front.svg",
  46472. extra: 1913/1748,
  46473. bottom: 62/1975
  46474. }
  46475. },
  46476. },
  46477. [
  46478. {
  46479. name: "Normal",
  46480. height: math.unit(4, "feet"),
  46481. default: true
  46482. },
  46483. ]
  46484. ))
  46485. characterMakers.push(() => makeCharacter(
  46486. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46487. {
  46488. front: {
  46489. height: math.unit(7 + 6/12, "feet"),
  46490. weight: math.unit(267, "lb"),
  46491. name: "Front",
  46492. image: {
  46493. source: "./media/characters/marcel/front.svg",
  46494. extra: 1221/1096,
  46495. bottom: 76/1297
  46496. }
  46497. },
  46498. },
  46499. [
  46500. {
  46501. name: "Normal",
  46502. height: math.unit(7 + 6/12, "feet"),
  46503. default: true
  46504. },
  46505. ]
  46506. ))
  46507. characterMakers.push(() => makeCharacter(
  46508. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46509. {
  46510. side: {
  46511. height: math.unit(42, "meters"),
  46512. name: "Side",
  46513. image: {
  46514. source: "./media/characters/flake/side.svg",
  46515. extra: 1525/1306,
  46516. bottom: 209/1734
  46517. }
  46518. },
  46519. },
  46520. [
  46521. {
  46522. name: "Normal",
  46523. height: math.unit(42, "meters"),
  46524. default: true
  46525. },
  46526. ]
  46527. ))
  46528. characterMakers.push(() => makeCharacter(
  46529. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46530. {
  46531. dressed: {
  46532. height: math.unit(6 + 4/12, "feet"),
  46533. weight: math.unit(520, "lb"),
  46534. name: "Dressed",
  46535. image: {
  46536. source: "./media/characters/someonne/dressed.svg",
  46537. extra: 1020/1010,
  46538. bottom: 178/1198
  46539. }
  46540. },
  46541. undressed: {
  46542. height: math.unit(6 + 4/12, "feet"),
  46543. weight: math.unit(520, "lb"),
  46544. name: "Undressed",
  46545. image: {
  46546. source: "./media/characters/someonne/undressed.svg",
  46547. extra: 1019/1014,
  46548. bottom: 169/1188
  46549. }
  46550. },
  46551. },
  46552. [
  46553. {
  46554. name: "Normal",
  46555. height: math.unit(6 + 4/12, "feet"),
  46556. default: true
  46557. },
  46558. ]
  46559. ))
  46560. characterMakers.push(() => makeCharacter(
  46561. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46562. {
  46563. front: {
  46564. height: math.unit(3, "feet"),
  46565. weight: math.unit(30, "lb"),
  46566. name: "Front",
  46567. image: {
  46568. source: "./media/characters/till/front.svg",
  46569. extra: 892/823,
  46570. bottom: 55/947
  46571. }
  46572. },
  46573. },
  46574. [
  46575. {
  46576. name: "Normal",
  46577. height: math.unit(3, "feet"),
  46578. default: true
  46579. },
  46580. ]
  46581. ))
  46582. characterMakers.push(() => makeCharacter(
  46583. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46584. {
  46585. front: {
  46586. height: math.unit(9 + 8/12, "feet"),
  46587. weight: math.unit(800, "lb"),
  46588. name: "Front",
  46589. image: {
  46590. source: "./media/characters/sydney-heki/front.svg",
  46591. extra: 1360/1300,
  46592. bottom: 22/1382
  46593. }
  46594. },
  46595. back: {
  46596. height: math.unit(9 + 8/12, "feet"),
  46597. weight: math.unit(800, "lb"),
  46598. name: "Back",
  46599. image: {
  46600. source: "./media/characters/sydney-heki/back.svg",
  46601. extra: 1356/1293,
  46602. bottom: 12/1368
  46603. }
  46604. },
  46605. frontDressed: {
  46606. height: math.unit(9 + 8/12, "feet"),
  46607. weight: math.unit(800, "lb"),
  46608. name: "Front-dressed",
  46609. image: {
  46610. source: "./media/characters/sydney-heki/front-dressed.svg",
  46611. extra: 1360/1300,
  46612. bottom: 22/1382
  46613. }
  46614. },
  46615. },
  46616. [
  46617. {
  46618. name: "Normal",
  46619. height: math.unit(9 + 8/12, "feet"),
  46620. default: true
  46621. },
  46622. {
  46623. name: "Macro",
  46624. height: math.unit(500, "feet")
  46625. },
  46626. {
  46627. name: "Megamacro",
  46628. height: math.unit(3.6, "miles")
  46629. },
  46630. ]
  46631. ))
  46632. characterMakers.push(() => makeCharacter(
  46633. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46634. {
  46635. front: {
  46636. height: math.unit(200, "cm"),
  46637. weight: math.unit(250, "lb"),
  46638. name: "Front",
  46639. image: {
  46640. source: "./media/characters/fowler-karlsson/front.svg",
  46641. extra: 897/845,
  46642. bottom: 123/1020
  46643. }
  46644. },
  46645. back: {
  46646. height: math.unit(200, "cm"),
  46647. weight: math.unit(250, "lb"),
  46648. name: "Back",
  46649. image: {
  46650. source: "./media/characters/fowler-karlsson/back.svg",
  46651. extra: 999/944,
  46652. bottom: 26/1025
  46653. }
  46654. },
  46655. dick: {
  46656. height: math.unit(1.92, "feet"),
  46657. weight: math.unit(150, "lb"),
  46658. name: "Dick",
  46659. image: {
  46660. source: "./media/characters/fowler-karlsson/dick.svg"
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(200, "cm"),
  46668. default: true
  46669. },
  46670. {
  46671. name: "Smaller Macro",
  46672. height: math.unit(90, "m")
  46673. },
  46674. {
  46675. name: "Macro",
  46676. height: math.unit(150, "m")
  46677. },
  46678. {
  46679. name: "Bigger Macro",
  46680. height: math.unit(300, "m")
  46681. },
  46682. ]
  46683. ))
  46684. characterMakers.push(() => makeCharacter(
  46685. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46686. {
  46687. side: {
  46688. height: math.unit(8 + 2/12, "feet"),
  46689. weight: math.unit(1, "tonne"),
  46690. name: "Side",
  46691. image: {
  46692. source: "./media/characters/rylide/side.svg",
  46693. extra: 1318/1034,
  46694. bottom: 106/1424
  46695. }
  46696. },
  46697. sitting: {
  46698. height: math.unit(303, "cm"),
  46699. weight: math.unit(1, "tonne"),
  46700. name: "Sitting",
  46701. image: {
  46702. source: "./media/characters/rylide/sitting.svg",
  46703. extra: 1303/1103,
  46704. bottom: 36/1339
  46705. }
  46706. },
  46707. },
  46708. [
  46709. {
  46710. name: "Normal",
  46711. height: math.unit(8 + 2/12, "feet"),
  46712. default: true
  46713. },
  46714. ]
  46715. ))
  46716. characterMakers.push(() => makeCharacter(
  46717. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46718. {
  46719. front: {
  46720. height: math.unit(5 + 10/12, "feet"),
  46721. weight: math.unit(160, "lb"),
  46722. name: "Front",
  46723. image: {
  46724. source: "./media/characters/pudask/front.svg",
  46725. extra: 1616/1590,
  46726. bottom: 161/1777
  46727. }
  46728. },
  46729. },
  46730. [
  46731. {
  46732. name: "Ferret Height",
  46733. height: math.unit(2 + 5/12, "feet")
  46734. },
  46735. {
  46736. name: "Canon Height",
  46737. height: math.unit(5 + 10/12, "feet"),
  46738. default: true
  46739. },
  46740. ]
  46741. ))
  46742. characterMakers.push(() => makeCharacter(
  46743. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46744. {
  46745. front: {
  46746. height: math.unit(3 + 6/12, "feet"),
  46747. weight: math.unit(60, "lb"),
  46748. name: "Front",
  46749. image: {
  46750. source: "./media/characters/ramita/front.svg",
  46751. extra: 1402/1232,
  46752. bottom: 62/1464
  46753. }
  46754. },
  46755. dressed: {
  46756. height: math.unit(3 + 6/12, "feet"),
  46757. weight: math.unit(60, "lb"),
  46758. name: "Dressed",
  46759. image: {
  46760. source: "./media/characters/ramita/dressed.svg",
  46761. extra: 1534/1249,
  46762. bottom: 50/1584
  46763. }
  46764. },
  46765. },
  46766. [
  46767. {
  46768. name: "Normal",
  46769. height: math.unit(3 + 6/12, "feet"),
  46770. default: true
  46771. },
  46772. ]
  46773. ))
  46774. characterMakers.push(() => makeCharacter(
  46775. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46776. {
  46777. front: {
  46778. height: math.unit(8, "feet"),
  46779. name: "Front",
  46780. image: {
  46781. source: "./media/characters/ark/front.svg",
  46782. extra: 772/693,
  46783. bottom: 45/817
  46784. }
  46785. },
  46786. },
  46787. [
  46788. {
  46789. name: "Normal",
  46790. height: math.unit(8, "feet"),
  46791. default: true
  46792. },
  46793. ]
  46794. ))
  46795. characterMakers.push(() => makeCharacter(
  46796. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46797. {
  46798. front: {
  46799. height: math.unit(6, "feet"),
  46800. weight: math.unit(250, "lb"),
  46801. volume: math.unit(5/8, "gallons"),
  46802. name: "Front",
  46803. image: {
  46804. source: "./media/characters/ludwig-horn/front.svg",
  46805. extra: 1782/1635,
  46806. bottom: 96/1878
  46807. }
  46808. },
  46809. back: {
  46810. height: math.unit(6, "feet"),
  46811. weight: math.unit(250, "lb"),
  46812. volume: math.unit(5/8, "gallons"),
  46813. name: "Back",
  46814. image: {
  46815. source: "./media/characters/ludwig-horn/back.svg",
  46816. extra: 1874/1729,
  46817. bottom: 27/1901
  46818. }
  46819. },
  46820. dick: {
  46821. height: math.unit(1.05, "feet"),
  46822. weight: math.unit(15, "lb"),
  46823. volume: math.unit(5/8, "gallons"),
  46824. name: "Dick",
  46825. image: {
  46826. source: "./media/characters/ludwig-horn/dick.svg"
  46827. }
  46828. },
  46829. },
  46830. [
  46831. {
  46832. name: "Small",
  46833. height: math.unit(6, "feet")
  46834. },
  46835. {
  46836. name: "Typical",
  46837. height: math.unit(12, "feet"),
  46838. default: true
  46839. },
  46840. {
  46841. name: "Building",
  46842. height: math.unit(80, "feet")
  46843. },
  46844. {
  46845. name: "Town",
  46846. height: math.unit(800, "feet")
  46847. },
  46848. {
  46849. name: "Kingdom",
  46850. height: math.unit(80000, "feet")
  46851. },
  46852. {
  46853. name: "Planet",
  46854. height: math.unit(8000000, "feet")
  46855. },
  46856. {
  46857. name: "Universe",
  46858. height: math.unit(8000000000, "feet")
  46859. },
  46860. {
  46861. name: "Transcended",
  46862. height: math.unit(8e27, "feet")
  46863. },
  46864. ]
  46865. ))
  46866. characterMakers.push(() => makeCharacter(
  46867. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46868. {
  46869. front: {
  46870. height: math.unit(5, "feet"),
  46871. weight: math.unit(50, "kg"),
  46872. name: "Front",
  46873. image: {
  46874. source: "./media/characters/biot-avery/front.svg",
  46875. extra: 1295/1232,
  46876. bottom: 86/1381
  46877. }
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Normal",
  46883. height: math.unit(5, "feet"),
  46884. default: true
  46885. },
  46886. ]
  46887. ))
  46888. characterMakers.push(() => makeCharacter(
  46889. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46890. {
  46891. front: {
  46892. height: math.unit(6, "feet"),
  46893. name: "Front",
  46894. image: {
  46895. source: "./media/characters/kitsune-kiro/front.svg",
  46896. extra: 1270/1158,
  46897. bottom: 42/1312
  46898. }
  46899. },
  46900. frontAlt: {
  46901. height: math.unit(6, "feet"),
  46902. name: "Front-alt",
  46903. image: {
  46904. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46905. extra: 1130/1081,
  46906. bottom: 36/1166
  46907. }
  46908. },
  46909. },
  46910. [
  46911. {
  46912. name: "Smol",
  46913. height: math.unit(3, "feet")
  46914. },
  46915. {
  46916. name: "Normal",
  46917. height: math.unit(6, "feet"),
  46918. default: true
  46919. },
  46920. ]
  46921. ))
  46922. characterMakers.push(() => makeCharacter(
  46923. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46924. {
  46925. front: {
  46926. height: math.unit(6, "feet"),
  46927. weight: math.unit(125, "lb"),
  46928. name: "Front",
  46929. image: {
  46930. source: "./media/characters/jack-thatcher/front.svg",
  46931. extra: 1474/1370,
  46932. bottom: 26/1500
  46933. }
  46934. },
  46935. back: {
  46936. height: math.unit(6, "feet"),
  46937. weight: math.unit(125, "lb"),
  46938. name: "Back",
  46939. image: {
  46940. source: "./media/characters/jack-thatcher/back.svg",
  46941. extra: 1489/1384,
  46942. bottom: 18/1507
  46943. }
  46944. },
  46945. },
  46946. [
  46947. {
  46948. name: "Normal",
  46949. height: math.unit(6, "feet"),
  46950. default: true
  46951. },
  46952. {
  46953. name: "Macro",
  46954. height: math.unit(75, "feet")
  46955. },
  46956. {
  46957. name: "Macro-er",
  46958. height: math.unit(250, "feet")
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46964. {
  46965. front: {
  46966. height: math.unit(7, "feet"),
  46967. weight: math.unit(110, "kg"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/max-hyper/front.svg",
  46971. extra: 1969/1881,
  46972. bottom: 49/2018
  46973. }
  46974. },
  46975. },
  46976. [
  46977. {
  46978. name: "Normal",
  46979. height: math.unit(7, "feet"),
  46980. default: true
  46981. },
  46982. ]
  46983. ))
  46984. characterMakers.push(() => makeCharacter(
  46985. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46986. {
  46987. front: {
  46988. height: math.unit(5 + 5/12, "feet"),
  46989. weight: math.unit(160, "lb"),
  46990. name: "Front",
  46991. image: {
  46992. source: "./media/characters/spook/front.svg",
  46993. extra: 794/791,
  46994. bottom: 54/848
  46995. }
  46996. },
  46997. back: {
  46998. height: math.unit(5 + 5/12, "feet"),
  46999. weight: math.unit(160, "lb"),
  47000. name: "Back",
  47001. image: {
  47002. source: "./media/characters/spook/back.svg",
  47003. extra: 812/798,
  47004. bottom: 32/844
  47005. }
  47006. },
  47007. },
  47008. [
  47009. {
  47010. name: "Normal",
  47011. height: math.unit(5 + 5/12, "feet"),
  47012. default: true
  47013. },
  47014. ]
  47015. ))
  47016. characterMakers.push(() => makeCharacter(
  47017. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47018. {
  47019. front: {
  47020. height: math.unit(18, "feet"),
  47021. name: "Front",
  47022. image: {
  47023. source: "./media/characters/xeaduulix/front.svg",
  47024. extra: 1380/1166,
  47025. bottom: 110/1490
  47026. }
  47027. },
  47028. back: {
  47029. height: math.unit(18, "feet"),
  47030. name: "Back",
  47031. image: {
  47032. source: "./media/characters/xeaduulix/back.svg",
  47033. extra: 1592/1170,
  47034. bottom: 128/1720
  47035. }
  47036. },
  47037. frontNsfw: {
  47038. height: math.unit(18, "feet"),
  47039. name: "Front (NSFW)",
  47040. image: {
  47041. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47042. extra: 1380/1166,
  47043. bottom: 110/1490
  47044. }
  47045. },
  47046. backNsfw: {
  47047. height: math.unit(18, "feet"),
  47048. name: "Back (NSFW)",
  47049. image: {
  47050. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47051. extra: 1592/1170,
  47052. bottom: 128/1720
  47053. }
  47054. },
  47055. },
  47056. [
  47057. {
  47058. name: "Normal",
  47059. height: math.unit(18, "feet"),
  47060. default: true
  47061. },
  47062. ]
  47063. ))
  47064. characterMakers.push(() => makeCharacter(
  47065. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47066. {
  47067. spreadWings: {
  47068. height: math.unit(20, "feet"),
  47069. name: "Spread Wings",
  47070. image: {
  47071. source: "./media/characters/fledge/spread-wings.svg",
  47072. extra: 693/635,
  47073. bottom: 26/719
  47074. }
  47075. },
  47076. front: {
  47077. height: math.unit(20, "feet"),
  47078. name: "Front",
  47079. image: {
  47080. source: "./media/characters/fledge/front.svg",
  47081. extra: 684/637,
  47082. bottom: 18/702
  47083. }
  47084. },
  47085. frontAlt: {
  47086. height: math.unit(20, "feet"),
  47087. name: "Front (Alt)",
  47088. image: {
  47089. source: "./media/characters/fledge/front-alt.svg",
  47090. extra: 708/664,
  47091. bottom: 13/721
  47092. }
  47093. },
  47094. back: {
  47095. height: math.unit(20, "feet"),
  47096. name: "Back",
  47097. image: {
  47098. source: "./media/characters/fledge/back.svg",
  47099. extra: 718/634,
  47100. bottom: 22/740
  47101. }
  47102. },
  47103. head: {
  47104. height: math.unit(5.55, "feet"),
  47105. name: "Head",
  47106. image: {
  47107. source: "./media/characters/fledge/head.svg"
  47108. }
  47109. },
  47110. headAlt: {
  47111. height: math.unit(5.1, "feet"),
  47112. name: "Head (Alt)",
  47113. image: {
  47114. source: "./media/characters/fledge/head-alt.svg"
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Small",
  47121. height: math.unit(6 + 2/12, "feet")
  47122. },
  47123. {
  47124. name: "Big",
  47125. height: math.unit(20, "feet"),
  47126. default: true
  47127. },
  47128. {
  47129. name: "Giant",
  47130. height: math.unit(100, "feet")
  47131. },
  47132. {
  47133. name: "Macro",
  47134. height: math.unit(200, "feet")
  47135. },
  47136. ]
  47137. ))
  47138. characterMakers.push(() => makeCharacter(
  47139. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47140. {
  47141. front: {
  47142. height: math.unit(1, "meter"),
  47143. name: "Front",
  47144. image: {
  47145. source: "./media/characters/atlas-morenai/front.svg",
  47146. extra: 1275/1043,
  47147. bottom: 19/1294
  47148. }
  47149. },
  47150. back: {
  47151. height: math.unit(1, "meter"),
  47152. name: "Back",
  47153. image: {
  47154. source: "./media/characters/atlas-morenai/back.svg",
  47155. extra: 1141/1001,
  47156. bottom: 25/1166
  47157. }
  47158. },
  47159. },
  47160. [
  47161. {
  47162. name: "Normal",
  47163. height: math.unit(1, "meter"),
  47164. default: true
  47165. },
  47166. {
  47167. name: "Magic-Infused",
  47168. height: math.unit(5, "meters")
  47169. },
  47170. ]
  47171. ))
  47172. characterMakers.push(() => makeCharacter(
  47173. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47174. {
  47175. front: {
  47176. height: math.unit(5, "meters"),
  47177. name: "Front",
  47178. image: {
  47179. source: "./media/characters/cintia/front.svg",
  47180. extra: 1312/1228,
  47181. bottom: 38/1350
  47182. }
  47183. },
  47184. back: {
  47185. height: math.unit(5, "meters"),
  47186. name: "Back",
  47187. image: {
  47188. source: "./media/characters/cintia/back.svg",
  47189. extra: 1260/1166,
  47190. bottom: 98/1358
  47191. }
  47192. },
  47193. frontDick: {
  47194. height: math.unit(5, "meters"),
  47195. name: "Front (Dick)",
  47196. image: {
  47197. source: "./media/characters/cintia/front-dick.svg",
  47198. extra: 1312/1228,
  47199. bottom: 38/1350
  47200. }
  47201. },
  47202. backDick: {
  47203. height: math.unit(5, "meters"),
  47204. name: "Back (Dick)",
  47205. image: {
  47206. source: "./media/characters/cintia/back-dick.svg",
  47207. extra: 1260/1166,
  47208. bottom: 98/1358
  47209. }
  47210. },
  47211. bust: {
  47212. height: math.unit(1.97, "meters"),
  47213. name: "Bust",
  47214. image: {
  47215. source: "./media/characters/cintia/bust.svg",
  47216. extra: 617/565,
  47217. bottom: 0/617
  47218. }
  47219. },
  47220. },
  47221. [
  47222. {
  47223. name: "Normal",
  47224. height: math.unit(5, "meters"),
  47225. default: true
  47226. },
  47227. ]
  47228. ))
  47229. characterMakers.push(() => makeCharacter(
  47230. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47231. {
  47232. side: {
  47233. height: math.unit(100, "feet"),
  47234. name: "Side",
  47235. image: {
  47236. source: "./media/characters/denora/side.svg",
  47237. extra: 875/803,
  47238. bottom: 9/884
  47239. }
  47240. },
  47241. },
  47242. [
  47243. {
  47244. name: "Standard",
  47245. height: math.unit(100, "feet"),
  47246. default: true
  47247. },
  47248. {
  47249. name: "Grand",
  47250. height: math.unit(1000, "feet")
  47251. },
  47252. {
  47253. name: "Conquering",
  47254. height: math.unit(10000, "feet")
  47255. },
  47256. ]
  47257. ))
  47258. characterMakers.push(() => makeCharacter(
  47259. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47260. {
  47261. dressed: {
  47262. height: math.unit(8 + 5/12, "feet"),
  47263. weight: math.unit(700, "lb"),
  47264. name: "Dressed",
  47265. image: {
  47266. source: "./media/characters/kiva/dressed.svg",
  47267. extra: 1102/1055,
  47268. bottom: 60/1162
  47269. }
  47270. },
  47271. nude: {
  47272. height: math.unit(8 + 5/12, "feet"),
  47273. weight: math.unit(700, "lb"),
  47274. name: "Nude",
  47275. image: {
  47276. source: "./media/characters/kiva/nude.svg",
  47277. extra: 1102/1055,
  47278. bottom: 60/1162
  47279. }
  47280. },
  47281. },
  47282. [
  47283. {
  47284. name: "Base Height",
  47285. height: math.unit(8 + 5/12, "feet"),
  47286. default: true
  47287. },
  47288. {
  47289. name: "Macro",
  47290. height: math.unit(100, "feet")
  47291. },
  47292. {
  47293. name: "Max",
  47294. height: math.unit(3280, "feet")
  47295. },
  47296. ]
  47297. ))
  47298. characterMakers.push(() => makeCharacter(
  47299. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47300. {
  47301. front: {
  47302. height: math.unit(6 + 8/12, "feet"),
  47303. weight: math.unit(250, "lb"),
  47304. name: "Front",
  47305. image: {
  47306. source: "./media/characters/ztragon/front.svg",
  47307. extra: 1825/1684,
  47308. bottom: 98/1923
  47309. }
  47310. },
  47311. },
  47312. [
  47313. {
  47314. name: "Normal",
  47315. height: math.unit(6 + 8/12, "feet"),
  47316. default: true
  47317. },
  47318. {
  47319. name: "Macro",
  47320. height: math.unit(80, "feet")
  47321. },
  47322. ]
  47323. ))
  47324. characterMakers.push(() => makeCharacter(
  47325. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47326. {
  47327. front: {
  47328. height: math.unit(10.4, "feet"),
  47329. weight: math.unit(2, "tons"),
  47330. name: "Front",
  47331. image: {
  47332. source: "./media/characters/yesenia/front.svg",
  47333. extra: 1479/1474,
  47334. bottom: 233/1712
  47335. }
  47336. },
  47337. },
  47338. [
  47339. {
  47340. name: "Normal",
  47341. height: math.unit(10.4, "feet"),
  47342. default: true
  47343. },
  47344. ]
  47345. ))
  47346. characterMakers.push(() => makeCharacter(
  47347. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47348. {
  47349. normal: {
  47350. height: math.unit(6 + 1/12, "feet"),
  47351. weight: math.unit(180, "lb"),
  47352. name: "Normal",
  47353. image: {
  47354. source: "./media/characters/leanne-lycheborne/normal.svg",
  47355. extra: 1748/1660,
  47356. bottom: 98/1846
  47357. }
  47358. },
  47359. were: {
  47360. height: math.unit(12, "feet"),
  47361. weight: math.unit(1600, "lb"),
  47362. name: "Were",
  47363. image: {
  47364. source: "./media/characters/leanne-lycheborne/were.svg",
  47365. extra: 1485/1432,
  47366. bottom: 66/1551
  47367. }
  47368. },
  47369. },
  47370. [
  47371. {
  47372. name: "Normal",
  47373. height: math.unit(6 + 1/12, "feet"),
  47374. default: true
  47375. },
  47376. ]
  47377. ))
  47378. characterMakers.push(() => makeCharacter(
  47379. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47380. {
  47381. side: {
  47382. height: math.unit(13, "feet"),
  47383. name: "Side",
  47384. image: {
  47385. source: "./media/characters/kira-tyler/side.svg",
  47386. extra: 693/393,
  47387. bottom: 58/751
  47388. }
  47389. },
  47390. },
  47391. [
  47392. {
  47393. name: "Normal",
  47394. height: math.unit(13, "feet"),
  47395. default: true
  47396. },
  47397. ]
  47398. ))
  47399. characterMakers.push(() => makeCharacter(
  47400. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47401. {
  47402. front: {
  47403. height: math.unit(10.3, "feet"),
  47404. weight: math.unit(150, "lb"),
  47405. name: "Front",
  47406. image: {
  47407. source: "./media/characters/blaze/front.svg",
  47408. extra: 1378/1286,
  47409. bottom: 172/1550
  47410. }
  47411. },
  47412. },
  47413. [
  47414. {
  47415. name: "Normal",
  47416. height: math.unit(10.3, "feet"),
  47417. default: true
  47418. },
  47419. ]
  47420. ))
  47421. characterMakers.push(() => makeCharacter(
  47422. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47423. {
  47424. side: {
  47425. height: math.unit(2, "meters"),
  47426. weight: math.unit(400, "kg"),
  47427. name: "Side",
  47428. image: {
  47429. source: "./media/characters/anu/side.svg",
  47430. extra: 506/394,
  47431. bottom: 18/524
  47432. }
  47433. },
  47434. },
  47435. [
  47436. {
  47437. name: "Humanoid",
  47438. height: math.unit(2, "meters")
  47439. },
  47440. {
  47441. name: "Normal",
  47442. height: math.unit(5, "meters"),
  47443. default: true
  47444. },
  47445. ]
  47446. ))
  47447. characterMakers.push(() => makeCharacter(
  47448. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47449. {
  47450. front: {
  47451. height: math.unit(5 + 5/12, "feet"),
  47452. weight: math.unit(170, "lb"),
  47453. name: "Front",
  47454. image: {
  47455. source: "./media/characters/synx-the-lynx/front.svg",
  47456. extra: 1893/1745,
  47457. bottom: 17/1910
  47458. }
  47459. },
  47460. side: {
  47461. height: math.unit(5 + 5/12, "feet"),
  47462. weight: math.unit(170, "lb"),
  47463. name: "Side",
  47464. image: {
  47465. source: "./media/characters/synx-the-lynx/side.svg",
  47466. extra: 1884/1740,
  47467. bottom: 39/1923
  47468. }
  47469. },
  47470. back: {
  47471. height: math.unit(5 + 5/12, "feet"),
  47472. weight: math.unit(170, "lb"),
  47473. name: "Back",
  47474. image: {
  47475. source: "./media/characters/synx-the-lynx/back.svg",
  47476. extra: 1903/1755,
  47477. bottom: 14/1917
  47478. }
  47479. },
  47480. },
  47481. [
  47482. {
  47483. name: "Normal",
  47484. height: math.unit(5 + 5/12, "feet"),
  47485. default: true
  47486. },
  47487. ]
  47488. ))
  47489. characterMakers.push(() => makeCharacter(
  47490. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47491. {
  47492. back: {
  47493. height: math.unit(15, "feet"),
  47494. name: "Back",
  47495. image: {
  47496. source: "./media/characters/nadezda-fex/back.svg",
  47497. extra: 1695/1481,
  47498. bottom: 25/1720
  47499. }
  47500. },
  47501. },
  47502. [
  47503. {
  47504. name: "Normal",
  47505. height: math.unit(15, "feet"),
  47506. default: true
  47507. },
  47508. {
  47509. name: "Macro",
  47510. height: math.unit(2.5, "miles")
  47511. },
  47512. {
  47513. name: "Goddess",
  47514. height: math.unit(2, "multiverses")
  47515. },
  47516. ]
  47517. ))
  47518. characterMakers.push(() => makeCharacter(
  47519. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47520. {
  47521. front: {
  47522. height: math.unit(216, "cm"),
  47523. name: "Front",
  47524. image: {
  47525. source: "./media/characters/lev/front.svg",
  47526. extra: 1728/1670,
  47527. bottom: 82/1810
  47528. }
  47529. },
  47530. back: {
  47531. height: math.unit(216, "cm"),
  47532. name: "Back",
  47533. image: {
  47534. source: "./media/characters/lev/back.svg",
  47535. extra: 1738/1675,
  47536. bottom: 24/1762
  47537. }
  47538. },
  47539. dressed: {
  47540. height: math.unit(216, "cm"),
  47541. name: "Dressed",
  47542. image: {
  47543. source: "./media/characters/lev/dressed.svg",
  47544. extra: 1397/1351,
  47545. bottom: 73/1470
  47546. }
  47547. },
  47548. head: {
  47549. height: math.unit(0.51, "meter"),
  47550. name: "Head",
  47551. image: {
  47552. source: "./media/characters/lev/head.svg"
  47553. }
  47554. },
  47555. },
  47556. [
  47557. {
  47558. name: "Normal",
  47559. height: math.unit(216, "cm"),
  47560. default: true
  47561. },
  47562. {
  47563. name: "Relatively Macro",
  47564. height: math.unit(80, "meters")
  47565. },
  47566. {
  47567. name: "Megamacro",
  47568. height: math.unit(21600, "meters")
  47569. },
  47570. {
  47571. name: "Megamacro+",
  47572. height: math.unit(64800, "meters")
  47573. },
  47574. ]
  47575. ))
  47576. characterMakers.push(() => makeCharacter(
  47577. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47578. {
  47579. front: {
  47580. height: math.unit(2, "meters"),
  47581. weight: math.unit(80, "kg"),
  47582. name: "Front",
  47583. image: {
  47584. source: "./media/characters/moka/front.svg",
  47585. extra: 1337/1255,
  47586. bottom: 58/1395
  47587. }
  47588. },
  47589. },
  47590. [
  47591. {
  47592. name: "Micro",
  47593. height: math.unit(15, "cm")
  47594. },
  47595. {
  47596. name: "Normal",
  47597. height: math.unit(2, "meters"),
  47598. default: true
  47599. },
  47600. {
  47601. name: "Macro",
  47602. height: math.unit(20, "meters"),
  47603. },
  47604. ]
  47605. ))
  47606. characterMakers.push(() => makeCharacter(
  47607. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47608. {
  47609. front: {
  47610. height: math.unit(9, "feet"),
  47611. weight: math.unit(240, "lb"),
  47612. name: "Front",
  47613. image: {
  47614. source: "./media/characters/kuzco/front.svg",
  47615. extra: 1593/1487,
  47616. bottom: 32/1625
  47617. }
  47618. },
  47619. side: {
  47620. height: math.unit(9, "feet"),
  47621. weight: math.unit(240, "lb"),
  47622. name: "Side",
  47623. image: {
  47624. source: "./media/characters/kuzco/side.svg",
  47625. extra: 1575/1485,
  47626. bottom: 30/1605
  47627. }
  47628. },
  47629. back: {
  47630. height: math.unit(9, "feet"),
  47631. weight: math.unit(240, "lb"),
  47632. name: "Back",
  47633. image: {
  47634. source: "./media/characters/kuzco/back.svg",
  47635. extra: 1603/1514,
  47636. bottom: 14/1617
  47637. }
  47638. },
  47639. },
  47640. [
  47641. {
  47642. name: "Normal",
  47643. height: math.unit(9, "feet"),
  47644. default: true
  47645. },
  47646. ]
  47647. ))
  47648. characterMakers.push(() => makeCharacter(
  47649. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47650. {
  47651. side: {
  47652. height: math.unit(2, "meters"),
  47653. weight: math.unit(300, "kg"),
  47654. name: "Side",
  47655. image: {
  47656. source: "./media/characters/ceruleus/side.svg",
  47657. extra: 1068/974,
  47658. bottom: 126/1194
  47659. }
  47660. },
  47661. maw: {
  47662. height: math.unit(0.8125, "meter"),
  47663. name: "Maw",
  47664. image: {
  47665. source: "./media/characters/ceruleus/maw.svg"
  47666. }
  47667. },
  47668. },
  47669. [
  47670. {
  47671. name: "Normal",
  47672. height: math.unit(16, "meters"),
  47673. default: true
  47674. },
  47675. ]
  47676. ))
  47677. characterMakers.push(() => makeCharacter(
  47678. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47679. {
  47680. front: {
  47681. height: math.unit(9, "feet"),
  47682. weight: math.unit(500, "kg"),
  47683. name: "Front",
  47684. image: {
  47685. source: "./media/characters/acouya/front.svg",
  47686. extra: 1660/1473,
  47687. bottom: 28/1688
  47688. }
  47689. },
  47690. },
  47691. [
  47692. {
  47693. name: "Normal",
  47694. height: math.unit(9, "feet"),
  47695. default: true
  47696. },
  47697. ]
  47698. ))
  47699. characterMakers.push(() => makeCharacter(
  47700. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47701. {
  47702. front: {
  47703. height: math.unit(5 + 6/12, "feet"),
  47704. weight: math.unit(195, "lb"),
  47705. name: "Front",
  47706. image: {
  47707. source: "./media/characters/vant/front.svg",
  47708. extra: 1396/1320,
  47709. bottom: 20/1416
  47710. }
  47711. },
  47712. back: {
  47713. height: math.unit(5 + 6/12, "feet"),
  47714. weight: math.unit(195, "lb"),
  47715. name: "Back",
  47716. image: {
  47717. source: "./media/characters/vant/back.svg",
  47718. extra: 1396/1320,
  47719. bottom: 20/1416
  47720. }
  47721. },
  47722. maw: {
  47723. height: math.unit(0.75, "feet"),
  47724. name: "Maw",
  47725. image: {
  47726. source: "./media/characters/vant/maw.svg"
  47727. }
  47728. },
  47729. paw: {
  47730. height: math.unit(1.07, "feet"),
  47731. name: "Paw",
  47732. image: {
  47733. source: "./media/characters/vant/paw.svg"
  47734. }
  47735. },
  47736. },
  47737. [
  47738. {
  47739. name: "Micro",
  47740. height: math.unit(0.25, "inches")
  47741. },
  47742. {
  47743. name: "Normal",
  47744. height: math.unit(5 + 6/12, "feet"),
  47745. default: true
  47746. },
  47747. {
  47748. name: "Macro",
  47749. height: math.unit(75, "feet")
  47750. },
  47751. ]
  47752. ))
  47753. characterMakers.push(() => makeCharacter(
  47754. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47755. {
  47756. front: {
  47757. height: math.unit(30, "meters"),
  47758. weight: math.unit(363, "tons"),
  47759. name: "Front",
  47760. image: {
  47761. source: "./media/characters/ahra/front.svg",
  47762. extra: 1914/1814,
  47763. bottom: 46/1960
  47764. }
  47765. },
  47766. },
  47767. [
  47768. {
  47769. name: "Macro",
  47770. height: math.unit(30, "meters"),
  47771. default: true
  47772. },
  47773. ]
  47774. ))
  47775. characterMakers.push(() => makeCharacter(
  47776. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47777. {
  47778. undressed: {
  47779. height: math.unit(2, "m"),
  47780. weight: math.unit(250, "kg"),
  47781. name: "Undressed",
  47782. image: {
  47783. source: "./media/characters/coriander/undressed.svg",
  47784. extra: 1757/1606,
  47785. bottom: 107/1864
  47786. }
  47787. },
  47788. dressed: {
  47789. height: math.unit(2, "m"),
  47790. weight: math.unit(250, "kg"),
  47791. name: "Dressed",
  47792. image: {
  47793. source: "./media/characters/coriander/dressed.svg",
  47794. extra: 1757/1606,
  47795. bottom: 107/1864
  47796. }
  47797. },
  47798. },
  47799. [
  47800. {
  47801. name: "Normal",
  47802. height: math.unit(4, "meters"),
  47803. default: true
  47804. },
  47805. {
  47806. name: "XL",
  47807. height: math.unit(6, "meters")
  47808. },
  47809. {
  47810. name: "XXL",
  47811. height: math.unit(8, "meters")
  47812. },
  47813. ]
  47814. ))
  47815. characterMakers.push(() => makeCharacter(
  47816. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47817. {
  47818. front: {
  47819. height: math.unit(6, "feet"),
  47820. name: "Front",
  47821. image: {
  47822. source: "./media/characters/syrinx/front.svg",
  47823. extra: 1557/1259,
  47824. bottom: 171/1728
  47825. }
  47826. },
  47827. },
  47828. [
  47829. {
  47830. name: "Normal",
  47831. height: math.unit(6 + 3/12, "feet"),
  47832. default: true
  47833. },
  47834. ]
  47835. ))
  47836. characterMakers.push(() => makeCharacter(
  47837. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47838. {
  47839. front: {
  47840. height: math.unit(11 + 6/12, "feet"),
  47841. weight: math.unit(1.5, "tons"),
  47842. name: "Front",
  47843. image: {
  47844. source: "./media/characters/bor/front.svg",
  47845. extra: 1189/1109,
  47846. bottom: 170/1359
  47847. }
  47848. },
  47849. },
  47850. [
  47851. {
  47852. name: "Normal",
  47853. height: math.unit(11 + 6/12, "feet"),
  47854. default: true
  47855. },
  47856. {
  47857. name: "Macro",
  47858. height: math.unit(32 + 9/12, "feet")
  47859. },
  47860. ]
  47861. ))
  47862. characterMakers.push(() => makeCharacter(
  47863. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47864. {
  47865. anthro: {
  47866. height: math.unit(9, "feet"),
  47867. weight: math.unit(2076, "lb"),
  47868. name: "Anthro",
  47869. image: {
  47870. source: "./media/characters/abacus/anthro.svg",
  47871. extra: 1540/1494,
  47872. bottom: 233/1773
  47873. }
  47874. },
  47875. pigeon: {
  47876. height: math.unit(1, "feet"),
  47877. name: "Pigeon",
  47878. image: {
  47879. source: "./media/characters/abacus/pigeon.svg",
  47880. extra: 528/525,
  47881. bottom: 46/574
  47882. }
  47883. },
  47884. },
  47885. [
  47886. {
  47887. name: "Normal",
  47888. height: math.unit(9, "feet"),
  47889. default: true
  47890. },
  47891. ]
  47892. ))
  47893. characterMakers.push(() => makeCharacter(
  47894. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47895. {
  47896. side: {
  47897. height: math.unit(6, "feet"),
  47898. name: "Side",
  47899. image: {
  47900. source: "./media/characters/delkhan/side.svg",
  47901. extra: 1884/1786,
  47902. bottom: 308/2192
  47903. }
  47904. },
  47905. head: {
  47906. height: math.unit(3.38, "feet"),
  47907. name: "Head",
  47908. image: {
  47909. source: "./media/characters/delkhan/head.svg"
  47910. }
  47911. },
  47912. },
  47913. [
  47914. {
  47915. name: "Normal",
  47916. height: math.unit(72, "feet"),
  47917. default: true
  47918. },
  47919. {
  47920. name: "Giant",
  47921. height: math.unit(172, "feet")
  47922. },
  47923. ]
  47924. ))
  47925. characterMakers.push(() => makeCharacter(
  47926. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47927. {
  47928. standing: {
  47929. height: math.unit(6, "feet"),
  47930. name: "Standing",
  47931. image: {
  47932. source: "./media/characters/euchidat/standing.svg",
  47933. extra: 1612/1553,
  47934. bottom: 116/1728
  47935. }
  47936. },
  47937. leaning: {
  47938. height: math.unit(6, "feet"),
  47939. name: "Leaning",
  47940. image: {
  47941. source: "./media/characters/euchidat/leaning.svg",
  47942. extra: 1719/1674,
  47943. bottom: 27/1746
  47944. }
  47945. },
  47946. },
  47947. [
  47948. {
  47949. name: "Normal",
  47950. height: math.unit(175, "feet"),
  47951. default: true
  47952. },
  47953. {
  47954. name: "Megamacro",
  47955. height: math.unit(190, "miles")
  47956. },
  47957. {
  47958. name: "Gigamacro",
  47959. height: math.unit(190000, "miles")
  47960. },
  47961. ]
  47962. ))
  47963. characterMakers.push(() => makeCharacter(
  47964. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47965. {
  47966. front: {
  47967. height: math.unit(6, "feet"),
  47968. weight: math.unit(150, "lb"),
  47969. name: "Front",
  47970. image: {
  47971. source: "./media/characters/rebecca-stack/front.svg",
  47972. extra: 1256/1201,
  47973. bottom: 18/1274
  47974. }
  47975. },
  47976. },
  47977. [
  47978. {
  47979. name: "Normal",
  47980. height: math.unit(5 + 8/12, "feet"),
  47981. default: true
  47982. },
  47983. {
  47984. name: "Demolitionist",
  47985. height: math.unit(200, "feet")
  47986. },
  47987. {
  47988. name: "Out of Control",
  47989. height: math.unit(2, "miles")
  47990. },
  47991. {
  47992. name: "Giga",
  47993. height: math.unit(7200, "miles")
  47994. },
  47995. ]
  47996. ))
  47997. characterMakers.push(() => makeCharacter(
  47998. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47999. {
  48000. front: {
  48001. height: math.unit(6, "feet"),
  48002. weight: math.unit(150, "lb"),
  48003. name: "Front",
  48004. image: {
  48005. source: "./media/characters/jenny-cartwright/front.svg",
  48006. extra: 1384/1376,
  48007. bottom: 58/1442
  48008. }
  48009. },
  48010. },
  48011. [
  48012. {
  48013. name: "Normal",
  48014. height: math.unit(6 + 7/12, "feet"),
  48015. default: true
  48016. },
  48017. {
  48018. name: "Librarian",
  48019. height: math.unit(55, "feet")
  48020. },
  48021. {
  48022. name: "Sightseer",
  48023. height: math.unit(50, "miles")
  48024. },
  48025. {
  48026. name: "Giga",
  48027. height: math.unit(30000, "miles")
  48028. },
  48029. ]
  48030. ))
  48031. characterMakers.push(() => makeCharacter(
  48032. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48033. {
  48034. nude: {
  48035. height: math.unit(8, "feet"),
  48036. weight: math.unit(225, "lb"),
  48037. name: "Nude",
  48038. image: {
  48039. source: "./media/characters/marvy/nude.svg",
  48040. extra: 1900/1683,
  48041. bottom: 89/1989
  48042. }
  48043. },
  48044. dressed: {
  48045. height: math.unit(8, "feet"),
  48046. weight: math.unit(225, "lb"),
  48047. name: "Dressed",
  48048. image: {
  48049. source: "./media/characters/marvy/dressed.svg",
  48050. extra: 1900/1683,
  48051. bottom: 89/1989
  48052. }
  48053. },
  48054. head: {
  48055. height: math.unit(2.85, "feet"),
  48056. name: "Head",
  48057. image: {
  48058. source: "./media/characters/marvy/head.svg"
  48059. }
  48060. },
  48061. },
  48062. [
  48063. {
  48064. name: "Normal",
  48065. height: math.unit(8, "feet"),
  48066. default: true
  48067. },
  48068. ]
  48069. ))
  48070. characterMakers.push(() => makeCharacter(
  48071. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48072. {
  48073. front: {
  48074. height: math.unit(8, "feet"),
  48075. weight: math.unit(250, "lb"),
  48076. name: "Front",
  48077. image: {
  48078. source: "./media/characters/leah/front.svg",
  48079. extra: 1257/1149,
  48080. bottom: 109/1366
  48081. }
  48082. },
  48083. },
  48084. [
  48085. {
  48086. name: "Normal",
  48087. height: math.unit(8, "feet"),
  48088. default: true
  48089. },
  48090. {
  48091. name: "Minimacro",
  48092. height: math.unit(40, "feet")
  48093. },
  48094. {
  48095. name: "Macro",
  48096. height: math.unit(124, "feet")
  48097. },
  48098. {
  48099. name: "Megamacro",
  48100. height: math.unit(850, "feet")
  48101. },
  48102. ]
  48103. ))
  48104. characterMakers.push(() => makeCharacter(
  48105. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48106. {
  48107. side: {
  48108. height: math.unit(13 + 6/12, "feet"),
  48109. weight: math.unit(3200, "lb"),
  48110. name: "Side",
  48111. image: {
  48112. source: "./media/characters/alvir/side.svg",
  48113. extra: 896/589,
  48114. bottom: 26/922
  48115. }
  48116. },
  48117. },
  48118. [
  48119. {
  48120. name: "Normal",
  48121. height: math.unit(13 + 6/12, "feet"),
  48122. default: true
  48123. },
  48124. ]
  48125. ))
  48126. characterMakers.push(() => makeCharacter(
  48127. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48128. {
  48129. front: {
  48130. height: math.unit(5 + 4/12, "feet"),
  48131. weight: math.unit(236, "lb"),
  48132. name: "Front",
  48133. image: {
  48134. source: "./media/characters/zaina-khalil/front.svg",
  48135. extra: 1533/1485,
  48136. bottom: 94/1627
  48137. }
  48138. },
  48139. side: {
  48140. height: math.unit(5 + 4/12, "feet"),
  48141. weight: math.unit(236, "lb"),
  48142. name: "Side",
  48143. image: {
  48144. source: "./media/characters/zaina-khalil/side.svg",
  48145. extra: 1537/1498,
  48146. bottom: 66/1603
  48147. }
  48148. },
  48149. back: {
  48150. height: math.unit(5 + 4/12, "feet"),
  48151. weight: math.unit(236, "lb"),
  48152. name: "Back",
  48153. image: {
  48154. source: "./media/characters/zaina-khalil/back.svg",
  48155. extra: 1546/1494,
  48156. bottom: 89/1635
  48157. }
  48158. },
  48159. },
  48160. [
  48161. {
  48162. name: "Normal",
  48163. height: math.unit(5 + 4/12, "feet"),
  48164. default: true
  48165. },
  48166. ]
  48167. ))
  48168. characterMakers.push(() => makeCharacter(
  48169. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48170. {
  48171. side: {
  48172. height: math.unit(12, "feet"),
  48173. weight: math.unit(4000, "lb"),
  48174. name: "Side",
  48175. image: {
  48176. source: "./media/characters/terry/side.svg",
  48177. extra: 1518/1439,
  48178. bottom: 149/1667
  48179. }
  48180. },
  48181. },
  48182. [
  48183. {
  48184. name: "Normal",
  48185. height: math.unit(12, "feet"),
  48186. default: true
  48187. },
  48188. ]
  48189. ))
  48190. characterMakers.push(() => makeCharacter(
  48191. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48192. {
  48193. front: {
  48194. height: math.unit(12, "feet"),
  48195. weight: math.unit(1500, "lb"),
  48196. name: "Front",
  48197. image: {
  48198. source: "./media/characters/kahea/front.svg",
  48199. extra: 1722/1617,
  48200. bottom: 179/1901
  48201. }
  48202. },
  48203. },
  48204. [
  48205. {
  48206. name: "Normal",
  48207. height: math.unit(12, "feet"),
  48208. default: true
  48209. },
  48210. ]
  48211. ))
  48212. characterMakers.push(() => makeCharacter(
  48213. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48214. {
  48215. demonFront: {
  48216. height: math.unit(36, "feet"),
  48217. name: "Front",
  48218. image: {
  48219. source: "./media/characters/alex-xuria/demon-front.svg",
  48220. extra: 1705/1673,
  48221. bottom: 198/1903
  48222. },
  48223. form: "demon",
  48224. default: true
  48225. },
  48226. demonBack: {
  48227. height: math.unit(36, "feet"),
  48228. name: "Back",
  48229. image: {
  48230. source: "./media/characters/alex-xuria/demon-back.svg",
  48231. extra: 1725/1693,
  48232. bottom: 70/1795
  48233. },
  48234. form: "demon"
  48235. },
  48236. demonHead: {
  48237. height: math.unit(2.14, "meters"),
  48238. name: "Head",
  48239. image: {
  48240. source: "./media/characters/alex-xuria/demon-head.svg"
  48241. },
  48242. form: "demon"
  48243. },
  48244. demonHand: {
  48245. height: math.unit(1.61, "meters"),
  48246. name: "Hand",
  48247. image: {
  48248. source: "./media/characters/alex-xuria/demon-hand.svg"
  48249. },
  48250. form: "demon"
  48251. },
  48252. demonPaw: {
  48253. height: math.unit(1.35, "meters"),
  48254. name: "Paw",
  48255. image: {
  48256. source: "./media/characters/alex-xuria/demon-paw.svg"
  48257. },
  48258. form: "demon"
  48259. },
  48260. demonFoot: {
  48261. height: math.unit(2.2, "meters"),
  48262. name: "Foot",
  48263. image: {
  48264. source: "./media/characters/alex-xuria/demon-foot.svg"
  48265. },
  48266. form: "demon"
  48267. },
  48268. demonCock: {
  48269. height: math.unit(1.74, "meters"),
  48270. name: "Cock",
  48271. image: {
  48272. source: "./media/characters/alex-xuria/demon-cock.svg"
  48273. },
  48274. form: "demon"
  48275. },
  48276. demonTailClosed: {
  48277. height: math.unit(1.47, "meters"),
  48278. name: "Tail (Closed)",
  48279. image: {
  48280. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48281. },
  48282. form: "demon"
  48283. },
  48284. demonTailOpen: {
  48285. height: math.unit(2.85, "meters"),
  48286. name: "Tail (Open)",
  48287. image: {
  48288. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48289. },
  48290. form: "demon"
  48291. },
  48292. incubusFront: {
  48293. height: math.unit(12, "feet"),
  48294. name: "Front",
  48295. image: {
  48296. source: "./media/characters/alex-xuria/incubus-front.svg",
  48297. extra: 1754/1677,
  48298. bottom: 125/1879
  48299. },
  48300. form: "incubus",
  48301. default: true
  48302. },
  48303. incubusBack: {
  48304. height: math.unit(12, "feet"),
  48305. name: "Back",
  48306. image: {
  48307. source: "./media/characters/alex-xuria/incubus-back.svg",
  48308. extra: 1702/1647,
  48309. bottom: 30/1732
  48310. },
  48311. form: "incubus"
  48312. },
  48313. incubusHead: {
  48314. height: math.unit(3.45, "feet"),
  48315. name: "Head",
  48316. image: {
  48317. source: "./media/characters/alex-xuria/incubus-head.svg"
  48318. },
  48319. form: "incubus"
  48320. },
  48321. rabbitFront: {
  48322. height: math.unit(6, "feet"),
  48323. name: "Front",
  48324. image: {
  48325. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48326. extra: 1369/1349,
  48327. bottom: 45/1414
  48328. },
  48329. form: "rabbit",
  48330. default: true
  48331. },
  48332. rabbitSide: {
  48333. height: math.unit(6, "feet"),
  48334. name: "Side",
  48335. image: {
  48336. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48337. extra: 1370/1356,
  48338. bottom: 37/1407
  48339. },
  48340. form: "rabbit"
  48341. },
  48342. rabbitBack: {
  48343. height: math.unit(6, "feet"),
  48344. name: "Back",
  48345. image: {
  48346. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48347. extra: 1375/1358,
  48348. bottom: 43/1418
  48349. },
  48350. form: "rabbit"
  48351. },
  48352. },
  48353. [
  48354. {
  48355. name: "Normal",
  48356. height: math.unit(6, "feet"),
  48357. default: true,
  48358. form: "rabbit"
  48359. },
  48360. {
  48361. name: "Incubus",
  48362. height: math.unit(12, "feet"),
  48363. default: true,
  48364. form: "incubus"
  48365. },
  48366. {
  48367. name: "Demon",
  48368. height: math.unit(36, "feet"),
  48369. default: true,
  48370. form: "demon"
  48371. }
  48372. ],
  48373. {
  48374. "demon": {
  48375. name: "Demon",
  48376. default: true
  48377. },
  48378. "incubus": {
  48379. name: "Incubus",
  48380. },
  48381. "rabbit": {
  48382. name: "Rabbit"
  48383. }
  48384. }
  48385. ))
  48386. characterMakers.push(() => makeCharacter(
  48387. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48388. {
  48389. front: {
  48390. height: math.unit(7 + 5/12, "feet"),
  48391. weight: math.unit(510, "lb"),
  48392. name: "Front",
  48393. image: {
  48394. source: "./media/characters/syrup/front.svg",
  48395. extra: 932/916,
  48396. bottom: 26/958
  48397. }
  48398. },
  48399. },
  48400. [
  48401. {
  48402. name: "Normal",
  48403. height: math.unit(7 + 5/12, "feet"),
  48404. default: true
  48405. },
  48406. {
  48407. name: "Big",
  48408. height: math.unit(50, "feet")
  48409. },
  48410. {
  48411. name: "Macro",
  48412. height: math.unit(300, "feet")
  48413. },
  48414. {
  48415. name: "Megamacro",
  48416. height: math.unit(1, "mile")
  48417. },
  48418. ]
  48419. ))
  48420. characterMakers.push(() => makeCharacter(
  48421. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48422. {
  48423. front: {
  48424. height: math.unit(6 + 9/12, "feet"),
  48425. name: "Front",
  48426. image: {
  48427. source: "./media/characters/zeimne/front.svg",
  48428. extra: 1969/1806,
  48429. bottom: 53/2022
  48430. }
  48431. },
  48432. },
  48433. [
  48434. {
  48435. name: "Normal",
  48436. height: math.unit(6 + 9/12, "feet"),
  48437. default: true
  48438. },
  48439. {
  48440. name: "Giant",
  48441. height: math.unit(550, "feet")
  48442. },
  48443. {
  48444. name: "Mega",
  48445. height: math.unit(3, "miles")
  48446. },
  48447. {
  48448. name: "Giga",
  48449. height: math.unit(250, "miles")
  48450. },
  48451. {
  48452. name: "Tera",
  48453. height: math.unit(1, "AU")
  48454. },
  48455. ]
  48456. ))
  48457. characterMakers.push(() => makeCharacter(
  48458. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48459. {
  48460. front: {
  48461. height: math.unit(5 + 2/12, "feet"),
  48462. name: "Front",
  48463. image: {
  48464. source: "./media/characters/grar/front.svg",
  48465. extra: 1331/1119,
  48466. bottom: 60/1391
  48467. }
  48468. },
  48469. back: {
  48470. height: math.unit(5 + 2/12, "feet"),
  48471. name: "Back",
  48472. image: {
  48473. source: "./media/characters/grar/back.svg",
  48474. extra: 1385/1169,
  48475. bottom: 23/1408
  48476. }
  48477. },
  48478. },
  48479. [
  48480. {
  48481. name: "Normal",
  48482. height: math.unit(5 + 2/12, "feet"),
  48483. default: true
  48484. },
  48485. ]
  48486. ))
  48487. characterMakers.push(() => makeCharacter(
  48488. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48489. {
  48490. front: {
  48491. height: math.unit(13 + 7/12, "feet"),
  48492. weight: math.unit(2200, "lb"),
  48493. name: "Front",
  48494. image: {
  48495. source: "./media/characters/endraya/front.svg",
  48496. extra: 1289/1215,
  48497. bottom: 50/1339
  48498. }
  48499. },
  48500. nude: {
  48501. height: math.unit(13 + 7/12, "feet"),
  48502. weight: math.unit(2200, "lb"),
  48503. name: "Nude",
  48504. image: {
  48505. source: "./media/characters/endraya/nude.svg",
  48506. extra: 1247/1171,
  48507. bottom: 40/1287
  48508. }
  48509. },
  48510. head: {
  48511. height: math.unit(2.6, "feet"),
  48512. name: "Head",
  48513. image: {
  48514. source: "./media/characters/endraya/head.svg"
  48515. }
  48516. },
  48517. slit: {
  48518. height: math.unit(3.4, "feet"),
  48519. name: "Slit",
  48520. image: {
  48521. source: "./media/characters/endraya/slit.svg"
  48522. }
  48523. },
  48524. },
  48525. [
  48526. {
  48527. name: "Normal",
  48528. height: math.unit(13 + 7/12, "feet"),
  48529. default: true
  48530. },
  48531. {
  48532. name: "Macro",
  48533. height: math.unit(200, "feet")
  48534. },
  48535. ]
  48536. ))
  48537. characterMakers.push(() => makeCharacter(
  48538. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48539. {
  48540. front: {
  48541. height: math.unit(1.81, "meters"),
  48542. weight: math.unit(69, "kg"),
  48543. name: "Front",
  48544. image: {
  48545. source: "./media/characters/rodryana/front.svg",
  48546. extra: 2002/1921,
  48547. bottom: 53/2055
  48548. }
  48549. },
  48550. back: {
  48551. height: math.unit(1.81, "meters"),
  48552. weight: math.unit(69, "kg"),
  48553. name: "Back",
  48554. image: {
  48555. source: "./media/characters/rodryana/back.svg",
  48556. extra: 1993/1926,
  48557. bottom: 48/2041
  48558. }
  48559. },
  48560. maw: {
  48561. height: math.unit(0.19769417475, "meters"),
  48562. name: "Maw",
  48563. image: {
  48564. source: "./media/characters/rodryana/maw.svg"
  48565. }
  48566. },
  48567. slit: {
  48568. height: math.unit(0.31631067961, "meters"),
  48569. name: "Slit",
  48570. image: {
  48571. source: "./media/characters/rodryana/slit.svg"
  48572. }
  48573. },
  48574. },
  48575. [
  48576. {
  48577. name: "Normal",
  48578. height: math.unit(1.81, "meters")
  48579. },
  48580. {
  48581. name: "Mini Macro",
  48582. height: math.unit(181, "meters")
  48583. },
  48584. {
  48585. name: "Macro",
  48586. height: math.unit(452, "meters"),
  48587. default: true
  48588. },
  48589. {
  48590. name: "Mega Macro",
  48591. height: math.unit(1.375, "km")
  48592. },
  48593. {
  48594. name: "Giga Macro",
  48595. height: math.unit(13.575, "km")
  48596. },
  48597. ]
  48598. ))
  48599. characterMakers.push(() => makeCharacter(
  48600. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48601. {
  48602. front: {
  48603. height: math.unit(6, "feet"),
  48604. weight: math.unit(1000, "lb"),
  48605. name: "Front",
  48606. image: {
  48607. source: "./media/characters/asaya/front.svg",
  48608. extra: 1460/1200,
  48609. bottom: 71/1531
  48610. }
  48611. },
  48612. },
  48613. [
  48614. {
  48615. name: "Normal",
  48616. height: math.unit(8, "km"),
  48617. default: true
  48618. },
  48619. ]
  48620. ))
  48621. characterMakers.push(() => makeCharacter(
  48622. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48623. {
  48624. front: {
  48625. height: math.unit(3.5, "meters"),
  48626. name: "Front",
  48627. image: {
  48628. source: "./media/characters/sarzu-and-israz/front.svg",
  48629. extra: 1570/1558,
  48630. bottom: 150/1720
  48631. },
  48632. },
  48633. back: {
  48634. height: math.unit(3.5, "meters"),
  48635. name: "Back",
  48636. image: {
  48637. source: "./media/characters/sarzu-and-israz/back.svg",
  48638. extra: 1523/1509,
  48639. bottom: 132/1655
  48640. },
  48641. },
  48642. frontFemale: {
  48643. height: math.unit(3.5, "meters"),
  48644. name: "Front (Female)",
  48645. image: {
  48646. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48647. extra: 1570/1558,
  48648. bottom: 150/1720
  48649. },
  48650. },
  48651. frontHerm: {
  48652. height: math.unit(3.5, "meters"),
  48653. name: "Front (Herm)",
  48654. image: {
  48655. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48656. extra: 1570/1558,
  48657. bottom: 150/1720
  48658. },
  48659. },
  48660. },
  48661. [
  48662. {
  48663. name: "Normal",
  48664. height: math.unit(3.5, "meters"),
  48665. default: true,
  48666. },
  48667. {
  48668. name: "Macro",
  48669. height: math.unit(65.5, "meters"),
  48670. },
  48671. ],
  48672. ))
  48673. characterMakers.push(() => makeCharacter(
  48674. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48675. {
  48676. front: {
  48677. height: math.unit(6, "feet"),
  48678. weight: math.unit(250, "lb"),
  48679. name: "Front",
  48680. image: {
  48681. source: "./media/characters/zenimma/front.svg",
  48682. extra: 1346/1320,
  48683. bottom: 58/1404
  48684. }
  48685. },
  48686. back: {
  48687. height: math.unit(6, "feet"),
  48688. weight: math.unit(250, "lb"),
  48689. name: "Back",
  48690. image: {
  48691. source: "./media/characters/zenimma/back.svg",
  48692. extra: 1324/1308,
  48693. bottom: 44/1368
  48694. }
  48695. },
  48696. dick: {
  48697. height: math.unit(1.44, "feet"),
  48698. name: "Dick",
  48699. image: {
  48700. source: "./media/characters/zenimma/dick.svg"
  48701. }
  48702. },
  48703. },
  48704. [
  48705. {
  48706. name: "Canon Height",
  48707. height: math.unit(66, "miles"),
  48708. default: true
  48709. },
  48710. ]
  48711. ))
  48712. characterMakers.push(() => makeCharacter(
  48713. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48714. {
  48715. nude: {
  48716. height: math.unit(6, "feet"),
  48717. weight: math.unit(150, "lb"),
  48718. name: "Nude",
  48719. image: {
  48720. source: "./media/characters/shavon/nude.svg",
  48721. extra: 1242/1096,
  48722. bottom: 98/1340
  48723. }
  48724. },
  48725. dressed: {
  48726. height: math.unit(6, "feet"),
  48727. weight: math.unit(150, "lb"),
  48728. name: "Dressed",
  48729. image: {
  48730. source: "./media/characters/shavon/dressed.svg",
  48731. extra: 1242/1096,
  48732. bottom: 98/1340
  48733. }
  48734. },
  48735. },
  48736. [
  48737. {
  48738. name: "Macro",
  48739. height: math.unit(255, "feet"),
  48740. default: true
  48741. },
  48742. ]
  48743. ))
  48744. characterMakers.push(() => makeCharacter(
  48745. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48746. {
  48747. front: {
  48748. height: math.unit(6, "feet"),
  48749. name: "Front",
  48750. image: {
  48751. source: "./media/characters/steph/front.svg",
  48752. extra: 1430/1330,
  48753. bottom: 54/1484
  48754. }
  48755. },
  48756. },
  48757. [
  48758. {
  48759. name: "Normal",
  48760. height: math.unit(6, "feet"),
  48761. default: true
  48762. },
  48763. ]
  48764. ))
  48765. characterMakers.push(() => makeCharacter(
  48766. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48767. {
  48768. front: {
  48769. height: math.unit(9, "feet"),
  48770. weight: math.unit(400, "lb"),
  48771. name: "Front",
  48772. image: {
  48773. source: "./media/characters/kil'aman/front.svg",
  48774. extra: 1210/1159,
  48775. bottom: 109/1319
  48776. }
  48777. },
  48778. head: {
  48779. height: math.unit(2.14, "feet"),
  48780. name: "Head",
  48781. image: {
  48782. source: "./media/characters/kil'aman/head.svg"
  48783. }
  48784. },
  48785. maw: {
  48786. height: math.unit(1.21, "feet"),
  48787. name: "Maw",
  48788. image: {
  48789. source: "./media/characters/kil'aman/maw.svg"
  48790. }
  48791. },
  48792. foot: {
  48793. height: math.unit(1.7, "feet"),
  48794. name: "Foot",
  48795. image: {
  48796. source: "./media/characters/kil'aman/foot.svg"
  48797. }
  48798. },
  48799. dick: {
  48800. height: math.unit(2.1, "feet"),
  48801. name: "Dick",
  48802. image: {
  48803. source: "./media/characters/kil'aman/dick.svg"
  48804. }
  48805. },
  48806. },
  48807. [
  48808. {
  48809. name: "Normal",
  48810. height: math.unit(9, "feet")
  48811. },
  48812. {
  48813. name: "Canon Height",
  48814. height: math.unit(10, "miles"),
  48815. default: true
  48816. },
  48817. {
  48818. name: "Maximum",
  48819. height: math.unit(6e9, "miles")
  48820. },
  48821. ]
  48822. ))
  48823. characterMakers.push(() => makeCharacter(
  48824. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48825. {
  48826. front: {
  48827. height: math.unit(90, "feet"),
  48828. weight: math.unit(675000, "lb"),
  48829. name: "Front",
  48830. image: {
  48831. source: "./media/characters/qadan/front.svg",
  48832. extra: 1012/1004,
  48833. bottom: 78/1090
  48834. }
  48835. },
  48836. back: {
  48837. height: math.unit(90, "feet"),
  48838. weight: math.unit(675000, "lb"),
  48839. name: "Back",
  48840. image: {
  48841. source: "./media/characters/qadan/back.svg",
  48842. extra: 1042/1031,
  48843. bottom: 55/1097
  48844. }
  48845. },
  48846. armored: {
  48847. height: math.unit(90, "feet"),
  48848. weight: math.unit(675000, "lb"),
  48849. name: "Armored",
  48850. image: {
  48851. source: "./media/characters/qadan/armored.svg",
  48852. extra: 1047/1037,
  48853. bottom: 48/1095
  48854. }
  48855. },
  48856. },
  48857. [
  48858. {
  48859. name: "Normal",
  48860. height: math.unit(90, "feet"),
  48861. default: true
  48862. },
  48863. ]
  48864. ))
  48865. characterMakers.push(() => makeCharacter(
  48866. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48867. {
  48868. front: {
  48869. height: math.unit(6, "feet"),
  48870. weight: math.unit(225, "lb"),
  48871. name: "Front",
  48872. image: {
  48873. source: "./media/characters/brooke/front.svg",
  48874. extra: 1050/1010,
  48875. bottom: 66/1116
  48876. }
  48877. },
  48878. back: {
  48879. height: math.unit(6, "feet"),
  48880. weight: math.unit(225, "lb"),
  48881. name: "Back",
  48882. image: {
  48883. source: "./media/characters/brooke/back.svg",
  48884. extra: 1053/1013,
  48885. bottom: 41/1094
  48886. }
  48887. },
  48888. dressed: {
  48889. height: math.unit(6, "feet"),
  48890. weight: math.unit(225, "lb"),
  48891. name: "Dressed",
  48892. image: {
  48893. source: "./media/characters/brooke/dressed.svg",
  48894. extra: 1050/1010,
  48895. bottom: 66/1116
  48896. }
  48897. },
  48898. },
  48899. [
  48900. {
  48901. name: "Canon Height",
  48902. height: math.unit(500, "miles"),
  48903. default: true
  48904. },
  48905. ]
  48906. ))
  48907. characterMakers.push(() => makeCharacter(
  48908. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48909. {
  48910. front: {
  48911. height: math.unit(6 + 2/12, "feet"),
  48912. weight: math.unit(210, "lb"),
  48913. name: "Front",
  48914. image: {
  48915. source: "./media/characters/wubs/front.svg",
  48916. extra: 1345/1325,
  48917. bottom: 70/1415
  48918. }
  48919. },
  48920. back: {
  48921. height: math.unit(6 + 2/12, "feet"),
  48922. weight: math.unit(210, "lb"),
  48923. name: "Back",
  48924. image: {
  48925. source: "./media/characters/wubs/back.svg",
  48926. extra: 1296/1275,
  48927. bottom: 58/1354
  48928. }
  48929. },
  48930. },
  48931. [
  48932. {
  48933. name: "Normal",
  48934. height: math.unit(6 + 2/12, "feet"),
  48935. default: true
  48936. },
  48937. {
  48938. name: "Macro",
  48939. height: math.unit(1000, "feet")
  48940. },
  48941. {
  48942. name: "Megamacro",
  48943. height: math.unit(1, "mile")
  48944. },
  48945. ]
  48946. ))
  48947. characterMakers.push(() => makeCharacter(
  48948. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48949. {
  48950. front: {
  48951. height: math.unit(4, "feet"),
  48952. weight: math.unit(120, "lb"),
  48953. name: "Front",
  48954. image: {
  48955. source: "./media/characters/blue/front.svg",
  48956. extra: 1636/1525,
  48957. bottom: 43/1679
  48958. }
  48959. },
  48960. back: {
  48961. height: math.unit(4, "feet"),
  48962. weight: math.unit(120, "lb"),
  48963. name: "Back",
  48964. image: {
  48965. source: "./media/characters/blue/back.svg",
  48966. extra: 1660/1560,
  48967. bottom: 57/1717
  48968. }
  48969. },
  48970. paws: {
  48971. height: math.unit(0.826, "feet"),
  48972. name: "Paws",
  48973. image: {
  48974. source: "./media/characters/blue/paws.svg"
  48975. }
  48976. },
  48977. },
  48978. [
  48979. {
  48980. name: "Micro",
  48981. height: math.unit(3, "inches")
  48982. },
  48983. {
  48984. name: "Normal",
  48985. height: math.unit(4, "feet"),
  48986. default: true
  48987. },
  48988. {
  48989. name: "Femenine Form",
  48990. height: math.unit(14, "feet")
  48991. },
  48992. {
  48993. name: "Werebat Form",
  48994. height: math.unit(18, "feet")
  48995. },
  48996. ]
  48997. ))
  48998. characterMakers.push(() => makeCharacter(
  48999. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49000. {
  49001. female: {
  49002. height: math.unit(7 + 4/12, "feet"),
  49003. weight: math.unit(243, "lb"),
  49004. name: "Female",
  49005. image: {
  49006. source: "./media/characters/kaya/female.svg",
  49007. extra: 975/898,
  49008. bottom: 34/1009
  49009. }
  49010. },
  49011. herm: {
  49012. height: math.unit(7 + 4/12, "feet"),
  49013. weight: math.unit(243, "lb"),
  49014. name: "Herm",
  49015. image: {
  49016. source: "./media/characters/kaya/herm.svg",
  49017. extra: 975/898,
  49018. bottom: 34/1009
  49019. }
  49020. },
  49021. },
  49022. [
  49023. {
  49024. name: "Normal",
  49025. height: math.unit(7 + 4/12, "feet"),
  49026. default: true
  49027. },
  49028. ]
  49029. ))
  49030. characterMakers.push(() => makeCharacter(
  49031. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49032. {
  49033. female: {
  49034. height: math.unit(9 + 4/12, "feet"),
  49035. weight: math.unit(398, "lb"),
  49036. name: "Female",
  49037. image: {
  49038. source: "./media/characters/kassandra/female.svg",
  49039. extra: 908/839,
  49040. bottom: 61/969
  49041. }
  49042. },
  49043. intersex: {
  49044. height: math.unit(9 + 4/12, "feet"),
  49045. weight: math.unit(398, "lb"),
  49046. name: "Intersex",
  49047. image: {
  49048. source: "./media/characters/kassandra/intersex.svg",
  49049. extra: 908/839,
  49050. bottom: 61/969
  49051. }
  49052. },
  49053. },
  49054. [
  49055. {
  49056. name: "Normal",
  49057. height: math.unit(9 + 4/12, "feet"),
  49058. default: true
  49059. },
  49060. ]
  49061. ))
  49062. characterMakers.push(() => makeCharacter(
  49063. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49064. {
  49065. front: {
  49066. height: math.unit(3, "meters"),
  49067. name: "Front",
  49068. image: {
  49069. source: "./media/characters/amy/front.svg",
  49070. extra: 1380/1343,
  49071. bottom: 70/1450
  49072. }
  49073. },
  49074. back: {
  49075. height: math.unit(3, "meters"),
  49076. name: "Back",
  49077. image: {
  49078. source: "./media/characters/amy/back.svg",
  49079. extra: 1380/1347,
  49080. bottom: 66/1446
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Normal",
  49087. height: math.unit(3, "meters"),
  49088. default: true
  49089. },
  49090. ]
  49091. ))
  49092. characterMakers.push(() => makeCharacter(
  49093. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49094. {
  49095. side: {
  49096. height: math.unit(47, "cm"),
  49097. weight: math.unit(10.8, "kg"),
  49098. name: "Side",
  49099. image: {
  49100. source: "./media/characters/alphaschakal/side.svg",
  49101. extra: 1058/568,
  49102. bottom: 62/1120
  49103. }
  49104. },
  49105. back: {
  49106. height: math.unit(78, "cm"),
  49107. weight: math.unit(10.8, "kg"),
  49108. name: "Back",
  49109. image: {
  49110. source: "./media/characters/alphaschakal/back.svg",
  49111. extra: 1102/942,
  49112. bottom: 185/1287
  49113. }
  49114. },
  49115. head: {
  49116. height: math.unit(28, "cm"),
  49117. name: "Head",
  49118. image: {
  49119. source: "./media/characters/alphaschakal/head.svg",
  49120. extra: 696/508,
  49121. bottom: 0/696
  49122. }
  49123. },
  49124. paw: {
  49125. height: math.unit(16, "cm"),
  49126. name: "Paw",
  49127. image: {
  49128. source: "./media/characters/alphaschakal/paw.svg"
  49129. }
  49130. },
  49131. },
  49132. [
  49133. {
  49134. name: "Normal",
  49135. height: math.unit(47, "cm"),
  49136. default: true
  49137. },
  49138. {
  49139. name: "Macro",
  49140. height: math.unit(340, "cm")
  49141. },
  49142. ]
  49143. ))
  49144. characterMakers.push(() => makeCharacter(
  49145. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49146. {
  49147. front: {
  49148. height: math.unit(36, "earths"),
  49149. name: "Front",
  49150. image: {
  49151. source: "./media/characters/ecobyss/front.svg",
  49152. extra: 1282/1215,
  49153. bottom: 11/1293
  49154. }
  49155. },
  49156. back: {
  49157. height: math.unit(36, "earths"),
  49158. name: "Back",
  49159. image: {
  49160. source: "./media/characters/ecobyss/back.svg",
  49161. extra: 1291/1222,
  49162. bottom: 8/1299
  49163. }
  49164. },
  49165. },
  49166. [
  49167. {
  49168. name: "Normal",
  49169. height: math.unit(36, "earths"),
  49170. default: true
  49171. },
  49172. ]
  49173. ))
  49174. characterMakers.push(() => makeCharacter(
  49175. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49176. {
  49177. front: {
  49178. height: math.unit(12, "feet"),
  49179. name: "Front",
  49180. image: {
  49181. source: "./media/characters/vasuk/front.svg",
  49182. extra: 1326/1207,
  49183. bottom: 64/1390
  49184. }
  49185. },
  49186. },
  49187. [
  49188. {
  49189. name: "Normal",
  49190. height: math.unit(12, "feet"),
  49191. default: true
  49192. },
  49193. ]
  49194. ))
  49195. characterMakers.push(() => makeCharacter(
  49196. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49197. {
  49198. side: {
  49199. height: math.unit(100, "feet"),
  49200. name: "Side",
  49201. image: {
  49202. source: "./media/characters/linneaus/side.svg",
  49203. extra: 987/807,
  49204. bottom: 47/1034
  49205. }
  49206. },
  49207. },
  49208. [
  49209. {
  49210. name: "Macro",
  49211. height: math.unit(100, "feet"),
  49212. default: true
  49213. },
  49214. ]
  49215. ))
  49216. characterMakers.push(() => makeCharacter(
  49217. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49218. {
  49219. front: {
  49220. height: math.unit(8, "feet"),
  49221. weight: math.unit(1200, "lb"),
  49222. name: "Front",
  49223. image: {
  49224. source: "./media/characters/nyterious-daligdig/front.svg",
  49225. extra: 1284/1094,
  49226. bottom: 84/1368
  49227. }
  49228. },
  49229. back: {
  49230. height: math.unit(8, "feet"),
  49231. weight: math.unit(1200, "lb"),
  49232. name: "Back",
  49233. image: {
  49234. source: "./media/characters/nyterious-daligdig/back.svg",
  49235. extra: 1301/1121,
  49236. bottom: 129/1430
  49237. }
  49238. },
  49239. mouth: {
  49240. height: math.unit(1.464, "feet"),
  49241. name: "Mouth",
  49242. image: {
  49243. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49244. }
  49245. },
  49246. },
  49247. [
  49248. {
  49249. name: "Small",
  49250. height: math.unit(8, "feet"),
  49251. default: true
  49252. },
  49253. {
  49254. name: "Normal",
  49255. height: math.unit(15, "feet")
  49256. },
  49257. {
  49258. name: "Macro",
  49259. height: math.unit(90, "feet")
  49260. },
  49261. ]
  49262. ))
  49263. characterMakers.push(() => makeCharacter(
  49264. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49265. {
  49266. front: {
  49267. height: math.unit(7 + 4/12, "feet"),
  49268. weight: math.unit(252, "lb"),
  49269. name: "Front",
  49270. image: {
  49271. source: "./media/characters/bandel/front.svg",
  49272. extra: 1946/1775,
  49273. bottom: 26/1972
  49274. }
  49275. },
  49276. back: {
  49277. height: math.unit(7 + 4/12, "feet"),
  49278. weight: math.unit(252, "lb"),
  49279. name: "Back",
  49280. image: {
  49281. source: "./media/characters/bandel/back.svg",
  49282. extra: 1940/1770,
  49283. bottom: 25/1965
  49284. }
  49285. },
  49286. maw: {
  49287. height: math.unit(2.15, "feet"),
  49288. name: "Maw",
  49289. image: {
  49290. source: "./media/characters/bandel/maw.svg"
  49291. }
  49292. },
  49293. stomach: {
  49294. height: math.unit(1.95, "feet"),
  49295. name: "Stomach",
  49296. image: {
  49297. source: "./media/characters/bandel/stomach.svg"
  49298. }
  49299. },
  49300. },
  49301. [
  49302. {
  49303. name: "Normal",
  49304. height: math.unit(7 + 4/12, "feet"),
  49305. default: true
  49306. },
  49307. ]
  49308. ))
  49309. characterMakers.push(() => makeCharacter(
  49310. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49311. {
  49312. front: {
  49313. height: math.unit(10 + 5/12, "feet"),
  49314. weight: math.unit(773.5, "kg"),
  49315. name: "Front",
  49316. image: {
  49317. source: "./media/characters/zed/front.svg",
  49318. extra: 987/941,
  49319. bottom: 52/1039
  49320. }
  49321. },
  49322. },
  49323. [
  49324. {
  49325. name: "Short",
  49326. height: math.unit(5 + 4/12, "feet")
  49327. },
  49328. {
  49329. name: "Average",
  49330. height: math.unit(10 + 5/12, "feet"),
  49331. default: true
  49332. },
  49333. {
  49334. name: "Mini-Macro",
  49335. height: math.unit(24 + 9/12, "feet")
  49336. },
  49337. {
  49338. name: "Macro",
  49339. height: math.unit(249, "feet")
  49340. },
  49341. {
  49342. name: "Mega-Macro",
  49343. height: math.unit(12490, "feet")
  49344. },
  49345. {
  49346. name: "Giga-Macro",
  49347. height: math.unit(24.9, "miles")
  49348. },
  49349. {
  49350. name: "Tera-Macro",
  49351. height: math.unit(24900, "miles")
  49352. },
  49353. {
  49354. name: "Cosmic Scale",
  49355. height: math.unit(38.9, "lightyears")
  49356. },
  49357. {
  49358. name: "Universal Scale",
  49359. height: math.unit(138e12, "lightyears")
  49360. },
  49361. ]
  49362. ))
  49363. characterMakers.push(() => makeCharacter(
  49364. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49365. {
  49366. front: {
  49367. height: math.unit(1561, "inches"),
  49368. name: "Front",
  49369. image: {
  49370. source: "./media/characters/ivan/front.svg",
  49371. extra: 1126/1071,
  49372. bottom: 26/1152
  49373. }
  49374. },
  49375. back: {
  49376. height: math.unit(1561, "inches"),
  49377. name: "Back",
  49378. image: {
  49379. source: "./media/characters/ivan/back.svg",
  49380. extra: 1134/1079,
  49381. bottom: 30/1164
  49382. }
  49383. },
  49384. },
  49385. [
  49386. {
  49387. name: "Normal",
  49388. height: math.unit(1561, "inches"),
  49389. default: true
  49390. },
  49391. ]
  49392. ))
  49393. characterMakers.push(() => makeCharacter(
  49394. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49395. {
  49396. front: {
  49397. height: math.unit(5 + 7/12, "feet"),
  49398. weight: math.unit(150, "lb"),
  49399. name: "Front",
  49400. image: {
  49401. source: "./media/characters/robin-arctic-hare/front.svg",
  49402. extra: 1148/974,
  49403. bottom: 20/1168
  49404. }
  49405. },
  49406. },
  49407. [
  49408. {
  49409. name: "Normal",
  49410. height: math.unit(5 + 7/12, "feet"),
  49411. default: true
  49412. },
  49413. ]
  49414. ))
  49415. characterMakers.push(() => makeCharacter(
  49416. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49417. {
  49418. side: {
  49419. height: math.unit(5, "feet"),
  49420. name: "Side",
  49421. image: {
  49422. source: "./media/characters/birch/side.svg",
  49423. extra: 985/796,
  49424. bottom: 111/1096
  49425. }
  49426. },
  49427. },
  49428. [
  49429. {
  49430. name: "Normal",
  49431. height: math.unit(5, "feet"),
  49432. default: true
  49433. },
  49434. ]
  49435. ))
  49436. characterMakers.push(() => makeCharacter(
  49437. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49438. {
  49439. front: {
  49440. height: math.unit(4, "feet"),
  49441. name: "Front",
  49442. image: {
  49443. source: "./media/characters/rasp/front.svg",
  49444. extra: 561/478,
  49445. bottom: 74/635
  49446. }
  49447. },
  49448. },
  49449. [
  49450. {
  49451. name: "Normal",
  49452. height: math.unit(4, "feet"),
  49453. default: true
  49454. },
  49455. ]
  49456. ))
  49457. characterMakers.push(() => makeCharacter(
  49458. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49459. {
  49460. front: {
  49461. height: math.unit(4 + 6/12, "feet"),
  49462. name: "Front",
  49463. image: {
  49464. source: "./media/characters/agatha/front.svg",
  49465. extra: 947/933,
  49466. bottom: 42/989
  49467. }
  49468. },
  49469. back: {
  49470. height: math.unit(4 + 6/12, "feet"),
  49471. name: "Back",
  49472. image: {
  49473. source: "./media/characters/agatha/back.svg",
  49474. extra: 935/922,
  49475. bottom: 48/983
  49476. }
  49477. },
  49478. },
  49479. [
  49480. {
  49481. name: "Normal",
  49482. height: math.unit(4 + 6 /12, "feet"),
  49483. default: true
  49484. },
  49485. {
  49486. name: "Max Size",
  49487. height: math.unit(500, "feet")
  49488. },
  49489. ]
  49490. ))
  49491. characterMakers.push(() => makeCharacter(
  49492. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49493. {
  49494. side: {
  49495. height: math.unit(30, "feet"),
  49496. name: "Side",
  49497. image: {
  49498. source: "./media/characters/roggy/side.svg",
  49499. extra: 909/643,
  49500. bottom: 63/972
  49501. }
  49502. },
  49503. lounging: {
  49504. height: math.unit(20, "feet"),
  49505. name: "Lounging",
  49506. image: {
  49507. source: "./media/characters/roggy/lounging.svg",
  49508. extra: 643/479,
  49509. bottom: 145/788
  49510. }
  49511. },
  49512. handpaw: {
  49513. height: math.unit(13.1, "feet"),
  49514. name: "Handpaw",
  49515. image: {
  49516. source: "./media/characters/roggy/handpaw.svg"
  49517. }
  49518. },
  49519. footpaw: {
  49520. height: math.unit(15.8, "feet"),
  49521. name: "Footpaw",
  49522. image: {
  49523. source: "./media/characters/roggy/footpaw.svg"
  49524. }
  49525. },
  49526. },
  49527. [
  49528. {
  49529. name: "Menacing",
  49530. height: math.unit(30, "feet"),
  49531. default: true
  49532. },
  49533. ]
  49534. ))
  49535. characterMakers.push(() => makeCharacter(
  49536. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49537. {
  49538. front: {
  49539. height: math.unit(5 + 7/12, "feet"),
  49540. weight: math.unit(135, "lb"),
  49541. name: "Front",
  49542. image: {
  49543. source: "./media/characters/naomi/front.svg",
  49544. extra: 1209/1154,
  49545. bottom: 129/1338
  49546. }
  49547. },
  49548. back: {
  49549. height: math.unit(5 + 7/12, "feet"),
  49550. weight: math.unit(135, "lb"),
  49551. name: "Back",
  49552. image: {
  49553. source: "./media/characters/naomi/back.svg",
  49554. extra: 1252/1190,
  49555. bottom: 23/1275
  49556. }
  49557. },
  49558. },
  49559. [
  49560. {
  49561. name: "Normal",
  49562. height: math.unit(5 + 7 /12, "feet"),
  49563. default: true
  49564. },
  49565. ]
  49566. ))
  49567. characterMakers.push(() => makeCharacter(
  49568. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49569. {
  49570. side: {
  49571. height: math.unit(35, "meters"),
  49572. name: "Side",
  49573. image: {
  49574. source: "./media/characters/kimpi/side.svg",
  49575. extra: 419/382,
  49576. bottom: 63/482
  49577. }
  49578. },
  49579. hand: {
  49580. height: math.unit(8.96, "meters"),
  49581. name: "Hand",
  49582. image: {
  49583. source: "./media/characters/kimpi/hand.svg"
  49584. }
  49585. },
  49586. },
  49587. [
  49588. {
  49589. name: "Normal",
  49590. height: math.unit(35, "meters"),
  49591. default: true
  49592. },
  49593. ]
  49594. ))
  49595. characterMakers.push(() => makeCharacter(
  49596. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49597. {
  49598. front: {
  49599. height: math.unit(4 + 4/12, "feet"),
  49600. name: "Front",
  49601. image: {
  49602. source: "./media/characters/pepper-purrloin/front.svg",
  49603. extra: 1141/1024,
  49604. bottom: 21/1162
  49605. }
  49606. },
  49607. },
  49608. [
  49609. {
  49610. name: "Normal",
  49611. height: math.unit(4 + 4/12, "feet"),
  49612. default: true
  49613. },
  49614. ]
  49615. ))
  49616. characterMakers.push(() => makeCharacter(
  49617. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49618. {
  49619. front: {
  49620. height: math.unit(6 + 2/12, "feet"),
  49621. name: "Front",
  49622. image: {
  49623. source: "./media/characters/raphael/front.svg",
  49624. extra: 1101/962,
  49625. bottom: 59/1160
  49626. }
  49627. },
  49628. },
  49629. [
  49630. {
  49631. name: "Normal",
  49632. height: math.unit(6 + 2/12, "feet"),
  49633. default: true
  49634. },
  49635. ]
  49636. ))
  49637. characterMakers.push(() => makeCharacter(
  49638. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49639. {
  49640. front: {
  49641. height: math.unit(6, "feet"),
  49642. weight: math.unit(150, "lb"),
  49643. name: "Front",
  49644. image: {
  49645. source: "./media/characters/victor-williams/front.svg",
  49646. extra: 1894/1825,
  49647. bottom: 67/1961
  49648. }
  49649. },
  49650. },
  49651. [
  49652. {
  49653. name: "Normal",
  49654. height: math.unit(6, "feet"),
  49655. default: true
  49656. },
  49657. ]
  49658. ))
  49659. characterMakers.push(() => makeCharacter(
  49660. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49661. {
  49662. front: {
  49663. height: math.unit(5 + 8/12, "feet"),
  49664. weight: math.unit(150, "lb"),
  49665. name: "Front",
  49666. image: {
  49667. source: "./media/characters/rachel/front.svg",
  49668. extra: 1902/1787,
  49669. bottom: 46/1948
  49670. }
  49671. },
  49672. },
  49673. [
  49674. {
  49675. name: "Base Height",
  49676. height: math.unit(5 + 8/12, "feet"),
  49677. default: true
  49678. },
  49679. {
  49680. name: "Macro",
  49681. height: math.unit(200, "feet")
  49682. },
  49683. {
  49684. name: "Mega Macro",
  49685. height: math.unit(1, "mile")
  49686. },
  49687. {
  49688. name: "Giga Macro",
  49689. height: math.unit(1500, "miles")
  49690. },
  49691. {
  49692. name: "Tera Macro",
  49693. height: math.unit(8000, "miles")
  49694. },
  49695. {
  49696. name: "Tera Macro+",
  49697. height: math.unit(2e5, "miles")
  49698. },
  49699. ]
  49700. ))
  49701. characterMakers.push(() => makeCharacter(
  49702. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49703. {
  49704. front: {
  49705. height: math.unit(6.5, "feet"),
  49706. name: "Front",
  49707. image: {
  49708. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49709. extra: 860/819,
  49710. bottom: 307/1167
  49711. }
  49712. },
  49713. back: {
  49714. height: math.unit(6.5, "feet"),
  49715. name: "Back",
  49716. image: {
  49717. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49718. extra: 880/837,
  49719. bottom: 395/1275
  49720. }
  49721. },
  49722. sleeping: {
  49723. height: math.unit(2.79, "feet"),
  49724. name: "Sleeping",
  49725. image: {
  49726. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49727. extra: 465/383,
  49728. bottom: 263/728
  49729. }
  49730. },
  49731. maw: {
  49732. height: math.unit(2.52, "feet"),
  49733. name: "Maw",
  49734. image: {
  49735. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49736. }
  49737. },
  49738. },
  49739. [
  49740. {
  49741. name: "Normal",
  49742. height: math.unit(6.5, "feet"),
  49743. default: true
  49744. },
  49745. ]
  49746. ))
  49747. characterMakers.push(() => makeCharacter(
  49748. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49749. {
  49750. front: {
  49751. height: math.unit(5, "feet"),
  49752. name: "Front",
  49753. image: {
  49754. source: "./media/characters/nova-nerium/front.svg",
  49755. extra: 1548/1392,
  49756. bottom: 374/1922
  49757. }
  49758. },
  49759. back: {
  49760. height: math.unit(5, "feet"),
  49761. name: "Back",
  49762. image: {
  49763. source: "./media/characters/nova-nerium/back.svg",
  49764. extra: 1658/1468,
  49765. bottom: 257/1915
  49766. }
  49767. },
  49768. },
  49769. [
  49770. {
  49771. name: "Normal",
  49772. height: math.unit(5, "feet"),
  49773. default: true
  49774. },
  49775. ]
  49776. ))
  49777. characterMakers.push(() => makeCharacter(
  49778. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49779. {
  49780. front: {
  49781. height: math.unit(5 + 4/12, "feet"),
  49782. name: "Front",
  49783. image: {
  49784. source: "./media/characters/ashe-pyriph/front.svg",
  49785. extra: 1935/1747,
  49786. bottom: 60/1995
  49787. }
  49788. },
  49789. },
  49790. [
  49791. {
  49792. name: "Normal",
  49793. height: math.unit(5 + 4/12, "feet"),
  49794. default: true
  49795. },
  49796. ]
  49797. ))
  49798. characterMakers.push(() => makeCharacter(
  49799. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49800. {
  49801. front: {
  49802. height: math.unit(8.7, "feet"),
  49803. name: "Front",
  49804. image: {
  49805. source: "./media/characters/flicker-wisp/front.svg",
  49806. extra: 1835/1613,
  49807. bottom: 449/2284
  49808. }
  49809. },
  49810. side: {
  49811. height: math.unit(8.7, "feet"),
  49812. name: "Side",
  49813. image: {
  49814. source: "./media/characters/flicker-wisp/side.svg",
  49815. extra: 1841/1642,
  49816. bottom: 336/2177
  49817. },
  49818. default: true
  49819. },
  49820. maw: {
  49821. height: math.unit(3.35, "feet"),
  49822. name: "Maw",
  49823. image: {
  49824. source: "./media/characters/flicker-wisp/maw.svg",
  49825. extra: 2338/1506,
  49826. bottom: 0/2338
  49827. }
  49828. },
  49829. ovipositor: {
  49830. height: math.unit(4.95, "feet"),
  49831. name: "Ovipositor",
  49832. image: {
  49833. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49834. }
  49835. },
  49836. egg: {
  49837. height: math.unit(0.385, "feet"),
  49838. weight: math.unit(2, "lb"),
  49839. name: "Egg",
  49840. image: {
  49841. source: "./media/characters/flicker-wisp/egg.svg"
  49842. }
  49843. },
  49844. },
  49845. [
  49846. {
  49847. name: "Normal",
  49848. height: math.unit(8.7, "feet"),
  49849. default: true
  49850. },
  49851. ]
  49852. ))
  49853. characterMakers.push(() => makeCharacter(
  49854. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49855. {
  49856. side: {
  49857. height: math.unit(11, "feet"),
  49858. name: "Side",
  49859. image: {
  49860. source: "./media/characters/faefnul/side.svg",
  49861. extra: 1100/1007,
  49862. bottom: 0/1100
  49863. }
  49864. },
  49865. },
  49866. [
  49867. {
  49868. name: "Normal",
  49869. height: math.unit(11, "feet"),
  49870. default: true
  49871. },
  49872. ]
  49873. ))
  49874. characterMakers.push(() => makeCharacter(
  49875. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49876. {
  49877. front: {
  49878. height: math.unit(6 + 2/12, "feet"),
  49879. name: "Front",
  49880. image: {
  49881. source: "./media/characters/shady/front.svg",
  49882. extra: 502/461,
  49883. bottom: 9/511
  49884. }
  49885. },
  49886. kneeling: {
  49887. height: math.unit(4.6, "feet"),
  49888. name: "Kneeling",
  49889. image: {
  49890. source: "./media/characters/shady/kneeling.svg",
  49891. extra: 1328/1219,
  49892. bottom: 117/1445
  49893. }
  49894. },
  49895. maw: {
  49896. height: math.unit(2, "feet"),
  49897. name: "Maw",
  49898. image: {
  49899. source: "./media/characters/shady/maw.svg"
  49900. }
  49901. },
  49902. },
  49903. [
  49904. {
  49905. name: "Nano",
  49906. height: math.unit(1, "mm")
  49907. },
  49908. {
  49909. name: "Micro",
  49910. height: math.unit(12, "mm")
  49911. },
  49912. {
  49913. name: "Tiny",
  49914. height: math.unit(3, "inches")
  49915. },
  49916. {
  49917. name: "Normal",
  49918. height: math.unit(6 + 2/12, "feet"),
  49919. default: true
  49920. },
  49921. {
  49922. name: "Big",
  49923. height: math.unit(15, "feet")
  49924. },
  49925. {
  49926. name: "Macro",
  49927. height: math.unit(150, "feet")
  49928. },
  49929. {
  49930. name: "Titanic",
  49931. height: math.unit(500, "feet")
  49932. },
  49933. ]
  49934. ))
  49935. characterMakers.push(() => makeCharacter(
  49936. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49937. {
  49938. front: {
  49939. height: math.unit(12, "feet"),
  49940. name: "Front",
  49941. image: {
  49942. source: "./media/characters/fenrir/front.svg",
  49943. extra: 968/875,
  49944. bottom: 22/990
  49945. }
  49946. },
  49947. },
  49948. [
  49949. {
  49950. name: "Big",
  49951. height: math.unit(12, "feet"),
  49952. default: true
  49953. },
  49954. ]
  49955. ))
  49956. characterMakers.push(() => makeCharacter(
  49957. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49958. {
  49959. front: {
  49960. height: math.unit(5 + 4/12, "feet"),
  49961. name: "Front",
  49962. image: {
  49963. source: "./media/characters/makar/front.svg",
  49964. extra: 1181/1112,
  49965. bottom: 78/1259
  49966. }
  49967. },
  49968. },
  49969. [
  49970. {
  49971. name: "Normal",
  49972. height: math.unit(5 + 4/12, "feet"),
  49973. default: true
  49974. },
  49975. ]
  49976. ))
  49977. characterMakers.push(() => makeCharacter(
  49978. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49979. {
  49980. front: {
  49981. height: math.unit(5 + 7/12, "feet"),
  49982. name: "Front",
  49983. image: {
  49984. source: "./media/characters/callow/front.svg",
  49985. extra: 1482/1304,
  49986. bottom: 23/1505
  49987. }
  49988. },
  49989. back: {
  49990. height: math.unit(5 + 7/12, "feet"),
  49991. name: "Back",
  49992. image: {
  49993. source: "./media/characters/callow/back.svg",
  49994. extra: 1484/1296,
  49995. bottom: 25/1509
  49996. }
  49997. },
  49998. },
  49999. [
  50000. {
  50001. name: "Micro",
  50002. height: math.unit(3, "inches"),
  50003. default: true
  50004. },
  50005. {
  50006. name: "Normal",
  50007. height: math.unit(5 + 7/12, "feet")
  50008. },
  50009. ]
  50010. ))
  50011. characterMakers.push(() => makeCharacter(
  50012. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50013. {
  50014. front: {
  50015. height: math.unit(6 + 2/12, "feet"),
  50016. name: "Front",
  50017. image: {
  50018. source: "./media/characters/natel/front.svg",
  50019. extra: 1833/1692,
  50020. bottom: 166/1999
  50021. }
  50022. },
  50023. },
  50024. [
  50025. {
  50026. name: "Normal",
  50027. height: math.unit(6 + 2/12, "feet"),
  50028. default: true
  50029. },
  50030. ]
  50031. ))
  50032. characterMakers.push(() => makeCharacter(
  50033. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50034. {
  50035. front: {
  50036. height: math.unit(1.75, "meters"),
  50037. name: "Front",
  50038. image: {
  50039. source: "./media/characters/misu/front.svg",
  50040. extra: 1690/1558,
  50041. bottom: 234/1924
  50042. }
  50043. },
  50044. back: {
  50045. height: math.unit(1.75, "meters"),
  50046. name: "Back",
  50047. image: {
  50048. source: "./media/characters/misu/back.svg",
  50049. extra: 1762/1618,
  50050. bottom: 146/1908
  50051. }
  50052. },
  50053. frontNude: {
  50054. height: math.unit(1.75, "meters"),
  50055. name: "Front (Nude)",
  50056. image: {
  50057. source: "./media/characters/misu/front-nude.svg",
  50058. extra: 1690/1558,
  50059. bottom: 234/1924
  50060. }
  50061. },
  50062. backNude: {
  50063. height: math.unit(1.75, "meters"),
  50064. name: "Back (Nude)",
  50065. image: {
  50066. source: "./media/characters/misu/back-nude.svg",
  50067. extra: 1762/1618,
  50068. bottom: 146/1908
  50069. }
  50070. },
  50071. frontErect: {
  50072. height: math.unit(1.75, "meters"),
  50073. name: "Front (Erect)",
  50074. image: {
  50075. source: "./media/characters/misu/front-erect.svg",
  50076. extra: 1690/1558,
  50077. bottom: 234/1924
  50078. }
  50079. },
  50080. maw: {
  50081. height: math.unit(0.47, "meters"),
  50082. name: "Maw",
  50083. image: {
  50084. source: "./media/characters/misu/maw.svg"
  50085. }
  50086. },
  50087. head: {
  50088. height: math.unit(0.35, "meters"),
  50089. name: "Head",
  50090. image: {
  50091. source: "./media/characters/misu/head.svg"
  50092. }
  50093. },
  50094. rear: {
  50095. height: math.unit(0.47, "meters"),
  50096. name: "Rear",
  50097. image: {
  50098. source: "./media/characters/misu/rear.svg"
  50099. }
  50100. },
  50101. },
  50102. [
  50103. {
  50104. name: "Normal",
  50105. height: math.unit(1.75, "meters")
  50106. },
  50107. {
  50108. name: "Not good for the people",
  50109. height: math.unit(42, "meters")
  50110. },
  50111. {
  50112. name: "Not good for the neighborhood",
  50113. height: math.unit(135, "meters")
  50114. },
  50115. {
  50116. name: "Bit bigger problem",
  50117. height: math.unit(380, "meters"),
  50118. default: true
  50119. },
  50120. {
  50121. name: "Not good for the city",
  50122. height: math.unit(1.5, "km")
  50123. },
  50124. {
  50125. name: "Not good for the county",
  50126. height: math.unit(5.5, "km")
  50127. },
  50128. {
  50129. name: "Not good for the state",
  50130. height: math.unit(25, "km")
  50131. },
  50132. {
  50133. name: "Not good for the country",
  50134. height: math.unit(125, "km")
  50135. },
  50136. {
  50137. name: "Not good for the continent",
  50138. height: math.unit(2100, "km")
  50139. },
  50140. {
  50141. name: "Not good for the planet",
  50142. height: math.unit(35000, "km")
  50143. },
  50144. {
  50145. name: "Just no",
  50146. height: math.unit(8.5e18, "km")
  50147. },
  50148. ]
  50149. ))
  50150. characterMakers.push(() => makeCharacter(
  50151. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50152. {
  50153. front: {
  50154. height: math.unit(6.5, "feet"),
  50155. name: "Front",
  50156. image: {
  50157. source: "./media/characters/poppy/front.svg",
  50158. extra: 1878/1812,
  50159. bottom: 43/1921
  50160. }
  50161. },
  50162. feet: {
  50163. height: math.unit(1.06, "feet"),
  50164. name: "Feet",
  50165. image: {
  50166. source: "./media/characters/poppy/feet.svg",
  50167. extra: 1083/1083,
  50168. bottom: 87/1170
  50169. }
  50170. },
  50171. },
  50172. [
  50173. {
  50174. name: "Human",
  50175. height: math.unit(6.5, "feet")
  50176. },
  50177. {
  50178. name: "Default",
  50179. height: math.unit(300, "feet"),
  50180. default: true
  50181. },
  50182. {
  50183. name: "Huge",
  50184. height: math.unit(850, "feet")
  50185. },
  50186. {
  50187. name: "Mega",
  50188. height: math.unit(8000, "feet")
  50189. },
  50190. {
  50191. name: "Giga",
  50192. height: math.unit(300, "miles")
  50193. },
  50194. ]
  50195. ))
  50196. characterMakers.push(() => makeCharacter(
  50197. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50198. {
  50199. bipedal: {
  50200. height: math.unit(7, "feet"),
  50201. name: "Bipedal",
  50202. image: {
  50203. source: "./media/characters/zener/bipedal.svg",
  50204. extra: 874/805,
  50205. bottom: 109/983
  50206. }
  50207. },
  50208. quadrupedal: {
  50209. height: math.unit(4.64, "feet"),
  50210. name: "Quadrupedal",
  50211. image: {
  50212. source: "./media/characters/zener/quadrupedal.svg",
  50213. extra: 638/507,
  50214. bottom: 190/828
  50215. }
  50216. },
  50217. cock: {
  50218. height: math.unit(18, "inches"),
  50219. name: "Cock",
  50220. image: {
  50221. source: "./media/characters/zener/cock.svg"
  50222. }
  50223. },
  50224. },
  50225. [
  50226. {
  50227. name: "Normal",
  50228. height: math.unit(7, "feet"),
  50229. default: true
  50230. },
  50231. ]
  50232. ))
  50233. characterMakers.push(() => makeCharacter(
  50234. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50235. {
  50236. nude: {
  50237. height: math.unit(5 + 6/12, "feet"),
  50238. name: "Nude",
  50239. image: {
  50240. source: "./media/characters/charlie-dog/nude.svg",
  50241. extra: 768/734,
  50242. bottom: 26/794
  50243. }
  50244. },
  50245. dressed: {
  50246. height: math.unit(5 + 6/12, "feet"),
  50247. name: "Dressed",
  50248. image: {
  50249. source: "./media/characters/charlie-dog/dressed.svg",
  50250. extra: 768/734,
  50251. bottom: 26/794
  50252. }
  50253. },
  50254. },
  50255. [
  50256. {
  50257. name: "Normal",
  50258. height: math.unit(5 + 6/12, "feet"),
  50259. default: true
  50260. },
  50261. ]
  50262. ))
  50263. characterMakers.push(() => makeCharacter(
  50264. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50265. {
  50266. front: {
  50267. height: math.unit(6 + 4/12, "feet"),
  50268. name: "Front",
  50269. image: {
  50270. source: "./media/characters/ir'istrasz/front.svg",
  50271. extra: 1014/977,
  50272. bottom: 65/1079
  50273. }
  50274. },
  50275. back: {
  50276. height: math.unit(6 + 4/12, "feet"),
  50277. name: "Back",
  50278. image: {
  50279. source: "./media/characters/ir'istrasz/back.svg",
  50280. extra: 1024/992,
  50281. bottom: 34/1058
  50282. }
  50283. },
  50284. },
  50285. [
  50286. {
  50287. name: "Normal",
  50288. height: math.unit(6 + 4/12, "feet"),
  50289. default: true
  50290. },
  50291. ]
  50292. ))
  50293. characterMakers.push(() => makeCharacter(
  50294. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50295. {
  50296. front: {
  50297. height: math.unit(5 + 8/12, "feet"),
  50298. name: "Front",
  50299. image: {
  50300. source: "./media/characters/dee-ditto/front.svg",
  50301. extra: 1874/1785,
  50302. bottom: 68/1942
  50303. }
  50304. },
  50305. back: {
  50306. height: math.unit(5 + 8/12, "feet"),
  50307. name: "Back",
  50308. image: {
  50309. source: "./media/characters/dee-ditto/back.svg",
  50310. extra: 1870/1783,
  50311. bottom: 77/1947
  50312. }
  50313. },
  50314. },
  50315. [
  50316. {
  50317. name: "Normal",
  50318. height: math.unit(5 + 8/12, "feet"),
  50319. default: true
  50320. },
  50321. ]
  50322. ))
  50323. characterMakers.push(() => makeCharacter(
  50324. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50325. {
  50326. front: {
  50327. height: math.unit(7 + 6/12, "feet"),
  50328. name: "Front",
  50329. image: {
  50330. source: "./media/characters/fey/front.svg",
  50331. extra: 995/979,
  50332. bottom: 30/1025
  50333. }
  50334. },
  50335. back: {
  50336. height: math.unit(7 + 6/12, "feet"),
  50337. name: "Back",
  50338. image: {
  50339. source: "./media/characters/fey/back.svg",
  50340. extra: 1079/1008,
  50341. bottom: 5/1084
  50342. }
  50343. },
  50344. dressed: {
  50345. height: math.unit(7 + 6/12, "feet"),
  50346. name: "Dressed",
  50347. image: {
  50348. source: "./media/characters/fey/dressed.svg",
  50349. extra: 995/979,
  50350. bottom: 30/1025
  50351. }
  50352. },
  50353. },
  50354. [
  50355. {
  50356. name: "Normal",
  50357. height: math.unit(7 + 6/12, "feet"),
  50358. default: true
  50359. },
  50360. ]
  50361. ))
  50362. characterMakers.push(() => makeCharacter(
  50363. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50364. {
  50365. standing: {
  50366. height: math.unit(17, "feet"),
  50367. name: "Standing",
  50368. image: {
  50369. source: "./media/characters/aster/standing.svg",
  50370. extra: 1798/1598,
  50371. bottom: 117/1915
  50372. }
  50373. },
  50374. },
  50375. [
  50376. {
  50377. name: "Normal",
  50378. height: math.unit(17, "feet"),
  50379. default: true
  50380. },
  50381. {
  50382. name: "Homewrecker",
  50383. height: math.unit(95, "feet")
  50384. },
  50385. {
  50386. name: "Planet Devourer",
  50387. height: math.unit(1008000, "miles")
  50388. },
  50389. ]
  50390. ))
  50391. characterMakers.push(() => makeCharacter(
  50392. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50393. {
  50394. front: {
  50395. height: math.unit(6 + 5/12, "feet"),
  50396. weight: math.unit(265, "lb"),
  50397. name: "Front",
  50398. image: {
  50399. source: "./media/characters/devon-childs/front.svg",
  50400. extra: 1795/1721,
  50401. bottom: 41/1836
  50402. }
  50403. },
  50404. side: {
  50405. height: math.unit(6 + 5/12, "feet"),
  50406. weight: math.unit(265, "lb"),
  50407. name: "Side",
  50408. image: {
  50409. source: "./media/characters/devon-childs/side.svg",
  50410. extra: 1812/1738,
  50411. bottom: 30/1842
  50412. }
  50413. },
  50414. back: {
  50415. height: math.unit(6 + 5/12, "feet"),
  50416. weight: math.unit(265, "lb"),
  50417. name: "Back",
  50418. image: {
  50419. source: "./media/characters/devon-childs/back.svg",
  50420. extra: 1808/1735,
  50421. bottom: 23/1831
  50422. }
  50423. },
  50424. hand: {
  50425. height: math.unit(1.464, "feet"),
  50426. name: "Hand",
  50427. image: {
  50428. source: "./media/characters/devon-childs/hand.svg"
  50429. }
  50430. },
  50431. foot: {
  50432. height: math.unit(1.6, "feet"),
  50433. name: "Foot",
  50434. image: {
  50435. source: "./media/characters/devon-childs/foot.svg"
  50436. }
  50437. },
  50438. },
  50439. [
  50440. {
  50441. name: "Micro",
  50442. height: math.unit(7, "cm")
  50443. },
  50444. {
  50445. name: "Normal",
  50446. height: math.unit(6 + 5/12, "feet"),
  50447. default: true
  50448. },
  50449. {
  50450. name: "Macro",
  50451. height: math.unit(154, "feet")
  50452. },
  50453. ]
  50454. ))
  50455. characterMakers.push(() => makeCharacter(
  50456. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50457. {
  50458. front: {
  50459. height: math.unit(6, "feet"),
  50460. weight: math.unit(180, "lb"),
  50461. name: "Front",
  50462. image: {
  50463. source: "./media/characters/lydemox-vir/front.svg",
  50464. extra: 1632/1435,
  50465. bottom: 58/1690
  50466. }
  50467. },
  50468. frontSFW: {
  50469. height: math.unit(6, "feet"),
  50470. weight: math.unit(180, "lb"),
  50471. name: "Front (SFW)",
  50472. image: {
  50473. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50474. extra: 1632/1435,
  50475. bottom: 58/1690
  50476. }
  50477. },
  50478. back: {
  50479. height: math.unit(6, "feet"),
  50480. weight: math.unit(180, "lb"),
  50481. name: "Back",
  50482. image: {
  50483. source: "./media/characters/lydemox-vir/back.svg",
  50484. extra: 1593/1408,
  50485. bottom: 31/1624
  50486. }
  50487. },
  50488. paw: {
  50489. height: math.unit(1.85, "feet"),
  50490. name: "Paw",
  50491. image: {
  50492. source: "./media/characters/lydemox-vir/paw.svg"
  50493. }
  50494. },
  50495. dick: {
  50496. height: math.unit(1.8, "feet"),
  50497. name: "Dick",
  50498. image: {
  50499. source: "./media/characters/lydemox-vir/dick.svg"
  50500. }
  50501. },
  50502. },
  50503. [
  50504. {
  50505. name: "Macro",
  50506. height: math.unit(100, "feet"),
  50507. default: true
  50508. },
  50509. {
  50510. name: "Teramacro",
  50511. height: math.unit(1, "earth")
  50512. },
  50513. {
  50514. name: "Planetary",
  50515. height: math.unit(20, "earths")
  50516. },
  50517. ]
  50518. ))
  50519. characterMakers.push(() => makeCharacter(
  50520. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50521. {
  50522. front: {
  50523. height: math.unit(15 + 8/12, "feet"),
  50524. weight: math.unit(1237, "kg"),
  50525. name: "Front",
  50526. image: {
  50527. source: "./media/characters/mia/front.svg",
  50528. extra: 1573/1446,
  50529. bottom: 58/1631
  50530. }
  50531. },
  50532. },
  50533. [
  50534. {
  50535. name: "Small",
  50536. height: math.unit(9 + 5/12, "feet")
  50537. },
  50538. {
  50539. name: "Normal",
  50540. height: math.unit(15 + 8/12, "feet"),
  50541. default: true
  50542. },
  50543. ]
  50544. ))
  50545. characterMakers.push(() => makeCharacter(
  50546. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50547. {
  50548. front: {
  50549. height: math.unit(10 + 6/12, "feet"),
  50550. weight: math.unit(1.3, "tons"),
  50551. name: "Front",
  50552. image: {
  50553. source: "./media/characters/mr-graves/front.svg",
  50554. extra: 1779/1695,
  50555. bottom: 198/1977
  50556. }
  50557. },
  50558. },
  50559. [
  50560. {
  50561. name: "Normal",
  50562. height: math.unit(10 + 6 /12, "feet"),
  50563. default: true
  50564. },
  50565. ]
  50566. ))
  50567. characterMakers.push(() => makeCharacter(
  50568. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50569. {
  50570. dressedFront: {
  50571. height: math.unit(5 + 8/12, "feet"),
  50572. weight: math.unit(125, "lb"),
  50573. name: "Dressed (Front)",
  50574. image: {
  50575. source: "./media/characters/jess/dressed-front.svg",
  50576. extra: 1176/1152,
  50577. bottom: 42/1218
  50578. }
  50579. },
  50580. dressedSide: {
  50581. height: math.unit(5 + 8/12, "feet"),
  50582. weight: math.unit(125, "lb"),
  50583. name: "Dressed (Side)",
  50584. image: {
  50585. source: "./media/characters/jess/dressed-side.svg",
  50586. extra: 1204/1190,
  50587. bottom: 6/1210
  50588. }
  50589. },
  50590. nudeFront: {
  50591. height: math.unit(5 + 8/12, "feet"),
  50592. weight: math.unit(125, "lb"),
  50593. name: "Nude (Front)",
  50594. image: {
  50595. source: "./media/characters/jess/nude-front.svg",
  50596. extra: 1176/1152,
  50597. bottom: 42/1218
  50598. }
  50599. },
  50600. nudeSide: {
  50601. height: math.unit(5 + 8/12, "feet"),
  50602. weight: math.unit(125, "lb"),
  50603. name: "Nude (Side)",
  50604. image: {
  50605. source: "./media/characters/jess/nude-side.svg",
  50606. extra: 1204/1190,
  50607. bottom: 6/1210
  50608. }
  50609. },
  50610. organsFront: {
  50611. height: math.unit(2.83799342105, "feet"),
  50612. name: "Organs (Front)",
  50613. image: {
  50614. source: "./media/characters/jess/organs-front.svg"
  50615. }
  50616. },
  50617. organsSide: {
  50618. height: math.unit(2.64225290474, "feet"),
  50619. name: "Organs (Side)",
  50620. image: {
  50621. source: "./media/characters/jess/organs-side.svg"
  50622. }
  50623. },
  50624. digestiveTractFront: {
  50625. height: math.unit(2.8106580871, "feet"),
  50626. name: "Digestive Tract (Front)",
  50627. image: {
  50628. source: "./media/characters/jess/digestive-tract-front.svg"
  50629. }
  50630. },
  50631. digestiveTractSide: {
  50632. height: math.unit(2.54365045014, "feet"),
  50633. name: "Digestive Tract (Side)",
  50634. image: {
  50635. source: "./media/characters/jess/digestive-tract-side.svg"
  50636. }
  50637. },
  50638. respiratorySystemFront: {
  50639. height: math.unit(1.11196233456, "feet"),
  50640. name: "Respiratory System (Front)",
  50641. image: {
  50642. source: "./media/characters/jess/respiratory-system-front.svg"
  50643. }
  50644. },
  50645. respiratorySystemSide: {
  50646. height: math.unit(0.89327966297, "feet"),
  50647. name: "Respiratory System (Side)",
  50648. image: {
  50649. source: "./media/characters/jess/respiratory-system-side.svg"
  50650. }
  50651. },
  50652. urinaryTractFront: {
  50653. height: math.unit(1.16126356186, "feet"),
  50654. name: "Urinary Tract (Front)",
  50655. image: {
  50656. source: "./media/characters/jess/urinary-tract-front.svg"
  50657. }
  50658. },
  50659. urinaryTractSide: {
  50660. height: math.unit(1.20910039627, "feet"),
  50661. name: "Urinary Tract (Side)",
  50662. image: {
  50663. source: "./media/characters/jess/urinary-tract-side.svg"
  50664. }
  50665. },
  50666. reproductiveOrgansFront: {
  50667. height: math.unit(0.48422591566, "feet"),
  50668. name: "Reproductive Organs (Front)",
  50669. image: {
  50670. source: "./media/characters/jess/reproductive-organs-front.svg"
  50671. }
  50672. },
  50673. reproductiveOrgansSide: {
  50674. height: math.unit(0.61553314481, "feet"),
  50675. name: "Reproductive Organs (Side)",
  50676. image: {
  50677. source: "./media/characters/jess/reproductive-organs-side.svg"
  50678. }
  50679. },
  50680. breastsFront: {
  50681. height: math.unit(0.47690395121, "feet"),
  50682. name: "Breasts (Front)",
  50683. image: {
  50684. source: "./media/characters/jess/breasts-front.svg"
  50685. }
  50686. },
  50687. breastsSide: {
  50688. height: math.unit(0.30556998307, "feet"),
  50689. name: "Breasts (Side)",
  50690. image: {
  50691. source: "./media/characters/jess/breasts-side.svg"
  50692. }
  50693. },
  50694. heartFront: {
  50695. height: math.unit(0.53011022622, "feet"),
  50696. name: "Heart (Front)",
  50697. image: {
  50698. source: "./media/characters/jess/heart-front.svg"
  50699. }
  50700. },
  50701. heartSide: {
  50702. height: math.unit(0.51790695213, "feet"),
  50703. name: "Heart (Side)",
  50704. image: {
  50705. source: "./media/characters/jess/heart-side.svg"
  50706. }
  50707. },
  50708. earsAndNoseFront: {
  50709. height: math.unit(0.29385483995, "feet"),
  50710. name: "Ears and Nose (Front)",
  50711. image: {
  50712. source: "./media/characters/jess/ears-and-nose-front.svg"
  50713. }
  50714. },
  50715. earsAndNoseSide: {
  50716. height: math.unit(0.18109658741, "feet"),
  50717. name: "Ears and Nose (Side)",
  50718. image: {
  50719. source: "./media/characters/jess/ears-and-nose-side.svg"
  50720. }
  50721. },
  50722. },
  50723. [
  50724. {
  50725. name: "Normal",
  50726. height: math.unit(5 + 8/12, "feet"),
  50727. default: true
  50728. },
  50729. ]
  50730. ))
  50731. characterMakers.push(() => makeCharacter(
  50732. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50733. {
  50734. front: {
  50735. height: math.unit(6, "feet"),
  50736. weight: math.unit(6.64467e-7, "grams"),
  50737. name: "Front",
  50738. image: {
  50739. source: "./media/characters/wimpering/front.svg",
  50740. extra: 597/587,
  50741. bottom: 34/631
  50742. }
  50743. },
  50744. },
  50745. [
  50746. {
  50747. name: "Micro",
  50748. height: math.unit(0.4, "mm"),
  50749. default: true
  50750. },
  50751. ]
  50752. ))
  50753. characterMakers.push(() => makeCharacter(
  50754. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50755. {
  50756. front: {
  50757. height: math.unit(5 + 2/12, "feet"),
  50758. weight: math.unit(110, "lb"),
  50759. name: "Front",
  50760. image: {
  50761. source: "./media/characters/keltre/front.svg",
  50762. extra: 1099/1057,
  50763. bottom: 22/1121
  50764. }
  50765. },
  50766. back: {
  50767. height: math.unit(5 + 2/12, "feet"),
  50768. weight: math.unit(110, "lb"),
  50769. name: "Back",
  50770. image: {
  50771. source: "./media/characters/keltre/back.svg",
  50772. extra: 1095/1053,
  50773. bottom: 17/1112
  50774. }
  50775. },
  50776. dressed: {
  50777. height: math.unit(5 + 2/12, "feet"),
  50778. weight: math.unit(110, "lb"),
  50779. name: "Dressed",
  50780. image: {
  50781. source: "./media/characters/keltre/dressed.svg",
  50782. extra: 1099/1057,
  50783. bottom: 22/1121
  50784. }
  50785. },
  50786. winter: {
  50787. height: math.unit(5 + 2/12, "feet"),
  50788. weight: math.unit(110, "lb"),
  50789. name: "Winter",
  50790. image: {
  50791. source: "./media/characters/keltre/winter.svg",
  50792. extra: 1099/1057,
  50793. bottom: 22/1121
  50794. }
  50795. },
  50796. head: {
  50797. height: math.unit(1.61 * 0.86, "feet"),
  50798. name: "Head",
  50799. image: {
  50800. source: "./media/characters/keltre/head.svg",
  50801. extra: 534/421,
  50802. bottom: 0/534
  50803. }
  50804. },
  50805. hand: {
  50806. height: math.unit(1.3 * 0.86, "feet"),
  50807. name: "Hand",
  50808. image: {
  50809. source: "./media/characters/keltre/hand.svg"
  50810. }
  50811. },
  50812. foot: {
  50813. height: math.unit(1.8 * 0.86, "feet"),
  50814. name: "Foot",
  50815. image: {
  50816. source: "./media/characters/keltre/foot.svg"
  50817. }
  50818. },
  50819. },
  50820. [
  50821. {
  50822. name: "Fine",
  50823. height: math.unit(1, "inch")
  50824. },
  50825. {
  50826. name: "Dimnutive",
  50827. height: math.unit(4, "inches")
  50828. },
  50829. {
  50830. name: "Tiny",
  50831. height: math.unit(1, "foot")
  50832. },
  50833. {
  50834. name: "Small",
  50835. height: math.unit(3, "feet")
  50836. },
  50837. {
  50838. name: "Normal",
  50839. height: math.unit(5 + 2/12, "feet"),
  50840. default: true
  50841. },
  50842. ]
  50843. ))
  50844. characterMakers.push(() => makeCharacter(
  50845. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50846. {
  50847. front: {
  50848. height: math.unit(6 + 2/12, "feet"),
  50849. name: "Front",
  50850. image: {
  50851. source: "./media/characters/nox/front.svg",
  50852. extra: 1917/1830,
  50853. bottom: 74/1991
  50854. }
  50855. },
  50856. back: {
  50857. height: math.unit(6 + 2/12, "feet"),
  50858. name: "Back",
  50859. image: {
  50860. source: "./media/characters/nox/back.svg",
  50861. extra: 1896/1815,
  50862. bottom: 21/1917
  50863. }
  50864. },
  50865. head: {
  50866. height: math.unit(1.1, "feet"),
  50867. name: "Head",
  50868. image: {
  50869. source: "./media/characters/nox/head.svg",
  50870. extra: 874/704,
  50871. bottom: 0/874
  50872. }
  50873. },
  50874. tattoo: {
  50875. height: math.unit(0.729, "feet"),
  50876. name: "Tattoo",
  50877. image: {
  50878. source: "./media/characters/nox/tattoo.svg"
  50879. }
  50880. },
  50881. },
  50882. [
  50883. {
  50884. name: "Normal",
  50885. height: math.unit(6 + 2/12, "feet")
  50886. },
  50887. {
  50888. name: "Gigamacro",
  50889. height: math.unit(2, "earths"),
  50890. default: true
  50891. },
  50892. {
  50893. name: "Cosmic",
  50894. height: math.unit(867, "yottameters")
  50895. },
  50896. ]
  50897. ))
  50898. characterMakers.push(() => makeCharacter(
  50899. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50900. {
  50901. front: {
  50902. height: math.unit(6, "feet"),
  50903. weight: math.unit(150, "lb"),
  50904. name: "Front",
  50905. image: {
  50906. source: "./media/characters/caspian/front.svg",
  50907. extra: 1443/1359,
  50908. bottom: 0/1443
  50909. }
  50910. },
  50911. back: {
  50912. height: math.unit(6, "feet"),
  50913. weight: math.unit(150, "lb"),
  50914. name: "Back",
  50915. image: {
  50916. source: "./media/characters/caspian/back.svg",
  50917. extra: 1379/1309,
  50918. bottom: 0/1379
  50919. }
  50920. },
  50921. head: {
  50922. height: math.unit(0.9, "feet"),
  50923. name: "Head",
  50924. image: {
  50925. source: "./media/characters/caspian/head.svg",
  50926. extra: 692/492,
  50927. bottom: 0/692
  50928. }
  50929. },
  50930. headAlt: {
  50931. height: math.unit(0.95, "feet"),
  50932. name: "Head (Alt)",
  50933. image: {
  50934. source: "./media/characters/caspian/head-alt.svg",
  50935. extra: 668/508,
  50936. bottom: 0/668
  50937. }
  50938. },
  50939. hand: {
  50940. height: math.unit(0.8, "feet"),
  50941. name: "Hand",
  50942. image: {
  50943. source: "./media/characters/caspian/hand.svg"
  50944. }
  50945. },
  50946. paw: {
  50947. height: math.unit(0.95, "feet"),
  50948. name: "Paw",
  50949. image: {
  50950. source: "./media/characters/caspian/paw.svg"
  50951. }
  50952. },
  50953. },
  50954. [
  50955. {
  50956. name: "Normal",
  50957. height: math.unit(162, "feet"),
  50958. default: true
  50959. },
  50960. ]
  50961. ))
  50962. characterMakers.push(() => makeCharacter(
  50963. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50964. {
  50965. front: {
  50966. height: math.unit(6, "feet"),
  50967. name: "Front",
  50968. image: {
  50969. source: "./media/characters/myra-aisling/front.svg",
  50970. extra: 1268/1166,
  50971. bottom: 73/1341
  50972. }
  50973. },
  50974. back: {
  50975. height: math.unit(6, "feet"),
  50976. name: "Back",
  50977. image: {
  50978. source: "./media/characters/myra-aisling/back.svg",
  50979. extra: 1249/1149,
  50980. bottom: 79/1328
  50981. }
  50982. },
  50983. dressed: {
  50984. height: math.unit(6, "feet"),
  50985. name: "Dressed",
  50986. image: {
  50987. source: "./media/characters/myra-aisling/dressed.svg",
  50988. extra: 1290/1189,
  50989. bottom: 47/1337
  50990. }
  50991. },
  50992. hand: {
  50993. height: math.unit(1.1, "feet"),
  50994. name: "Hand",
  50995. image: {
  50996. source: "./media/characters/myra-aisling/hand.svg"
  50997. }
  50998. },
  50999. paw: {
  51000. height: math.unit(1.23, "feet"),
  51001. name: "Paw",
  51002. image: {
  51003. source: "./media/characters/myra-aisling/paw.svg"
  51004. }
  51005. },
  51006. },
  51007. [
  51008. {
  51009. name: "Normal",
  51010. height: math.unit(160, "feet"),
  51011. default: true
  51012. },
  51013. ]
  51014. ))
  51015. characterMakers.push(() => makeCharacter(
  51016. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51017. {
  51018. front: {
  51019. height: math.unit(6, "feet"),
  51020. name: "Front",
  51021. image: {
  51022. source: "./media/characters/tenley-sidero/front.svg",
  51023. extra: 1365/1276,
  51024. bottom: 47/1412
  51025. }
  51026. },
  51027. back: {
  51028. height: math.unit(6, "feet"),
  51029. name: "Back",
  51030. image: {
  51031. source: "./media/characters/tenley-sidero/back.svg",
  51032. extra: 1383/1283,
  51033. bottom: 35/1418
  51034. }
  51035. },
  51036. dressed: {
  51037. height: math.unit(6, "feet"),
  51038. name: "Dressed",
  51039. image: {
  51040. source: "./media/characters/tenley-sidero/dressed.svg",
  51041. extra: 1364/1275,
  51042. bottom: 42/1406
  51043. }
  51044. },
  51045. head: {
  51046. height: math.unit(1.47, "feet"),
  51047. name: "Head",
  51048. image: {
  51049. source: "./media/characters/tenley-sidero/head.svg",
  51050. extra: 610/490,
  51051. bottom: 0/610
  51052. }
  51053. },
  51054. },
  51055. [
  51056. {
  51057. name: "Normal",
  51058. height: math.unit(154, "feet"),
  51059. default: true
  51060. },
  51061. ]
  51062. ))
  51063. characterMakers.push(() => makeCharacter(
  51064. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51065. {
  51066. front: {
  51067. height: math.unit(5, "inches"),
  51068. name: "Front",
  51069. image: {
  51070. source: "./media/characters/mallory/front.svg",
  51071. extra: 1919/1678,
  51072. bottom: 29/1948
  51073. }
  51074. },
  51075. hand: {
  51076. height: math.unit(0.73, "inches"),
  51077. name: "Hand",
  51078. image: {
  51079. source: "./media/characters/mallory/hand.svg"
  51080. }
  51081. },
  51082. paw: {
  51083. height: math.unit(0.68, "inches"),
  51084. name: "Paw",
  51085. image: {
  51086. source: "./media/characters/mallory/paw.svg"
  51087. }
  51088. },
  51089. },
  51090. [
  51091. {
  51092. name: "Small",
  51093. height: math.unit(5, "inches"),
  51094. default: true
  51095. },
  51096. ]
  51097. ))
  51098. characterMakers.push(() => makeCharacter(
  51099. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51100. {
  51101. naked: {
  51102. height: math.unit(6, "feet"),
  51103. name: "Naked",
  51104. image: {
  51105. source: "./media/characters/mab/naked.svg",
  51106. extra: 1855/1757,
  51107. bottom: 208/2063
  51108. }
  51109. },
  51110. outside: {
  51111. height: math.unit(6, "feet"),
  51112. name: "Outside",
  51113. image: {
  51114. source: "./media/characters/mab/outside.svg",
  51115. extra: 1855/1757,
  51116. bottom: 208/2063
  51117. }
  51118. },
  51119. party: {
  51120. height: math.unit(6, "feet"),
  51121. name: "Party",
  51122. image: {
  51123. source: "./media/characters/mab/party.svg",
  51124. extra: 1855/1757,
  51125. bottom: 208/2063
  51126. }
  51127. },
  51128. },
  51129. [
  51130. {
  51131. name: "Normal",
  51132. height: math.unit(165, "feet"),
  51133. default: true
  51134. },
  51135. ]
  51136. ))
  51137. characterMakers.push(() => makeCharacter(
  51138. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51139. {
  51140. feral: {
  51141. height: math.unit(12, "feet"),
  51142. weight: math.unit(20000, "lb"),
  51143. name: "Side",
  51144. image: {
  51145. source: "./media/characters/winter/feral.svg",
  51146. extra: 1286/943,
  51147. bottom: 112/1398
  51148. },
  51149. form: "feral",
  51150. default: true
  51151. },
  51152. feralNsfw: {
  51153. height: math.unit(12, "feet"),
  51154. weight: math.unit(20000, "lb"),
  51155. name: "Side (NSFW)",
  51156. image: {
  51157. source: "./media/characters/winter/feral-nsfw.svg",
  51158. extra: 1286/943,
  51159. bottom: 112/1398
  51160. },
  51161. form: "feral"
  51162. },
  51163. dick: {
  51164. height: math.unit(3.79, "feet"),
  51165. name: "Dick",
  51166. image: {
  51167. source: "./media/characters/winter/dick.svg"
  51168. },
  51169. form: "feral"
  51170. },
  51171. anthro: {
  51172. height: math.unit(12, "feet"),
  51173. weight: math.unit(10, "tons"),
  51174. name: "Anthro",
  51175. image: {
  51176. source: "./media/characters/winter/anthro.svg",
  51177. extra: 1701/1553,
  51178. bottom: 64/1765
  51179. },
  51180. form: "anthro",
  51181. default: true
  51182. },
  51183. },
  51184. [
  51185. {
  51186. name: "Big",
  51187. height: math.unit(12, "feet"),
  51188. default: true,
  51189. form: "feral"
  51190. },
  51191. {
  51192. name: "Big",
  51193. height: math.unit(12, "feet"),
  51194. default: true,
  51195. form: "anthro"
  51196. },
  51197. ],
  51198. {
  51199. "feral": {
  51200. name: "Feral",
  51201. default: true
  51202. },
  51203. "anthro": {
  51204. name: "Anthro"
  51205. }
  51206. }
  51207. ))
  51208. characterMakers.push(() => makeCharacter(
  51209. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51210. {
  51211. front: {
  51212. height: math.unit(4.1, "inches"),
  51213. name: "Front",
  51214. image: {
  51215. source: "./media/characters/alto/front.svg",
  51216. extra: 736/627,
  51217. bottom: 90/826
  51218. }
  51219. },
  51220. },
  51221. [
  51222. {
  51223. name: "Normal",
  51224. height: math.unit(4.1, "inches"),
  51225. default: true
  51226. },
  51227. ]
  51228. ))
  51229. characterMakers.push(() => makeCharacter(
  51230. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51231. {
  51232. sitting: {
  51233. height: math.unit(3, "feet"),
  51234. name: "Sitting",
  51235. image: {
  51236. source: "./media/characters/ratstrid-v/sitting.svg",
  51237. extra: 355/310,
  51238. bottom: 136/491
  51239. }
  51240. },
  51241. },
  51242. [
  51243. {
  51244. name: "Normal",
  51245. height: math.unit(3, "feet"),
  51246. default: true
  51247. },
  51248. ]
  51249. ))
  51250. characterMakers.push(() => makeCharacter(
  51251. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51252. {
  51253. back: {
  51254. height: math.unit(6, "feet"),
  51255. weight: math.unit(450, "lb"),
  51256. name: "Back",
  51257. image: {
  51258. source: "./media/characters/siz/back.svg",
  51259. extra: 1449/1274,
  51260. bottom: 13/1462
  51261. }
  51262. },
  51263. },
  51264. [
  51265. {
  51266. name: "Smallest",
  51267. height: math.unit(18 + 3/12, "feet")
  51268. },
  51269. {
  51270. name: "Modest",
  51271. height: math.unit(56 + 8/12, "feet"),
  51272. default: true
  51273. },
  51274. {
  51275. name: "Largest",
  51276. height: math.unit(3590, "feet")
  51277. },
  51278. ]
  51279. ))
  51280. characterMakers.push(() => makeCharacter(
  51281. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51282. {
  51283. front: {
  51284. height: math.unit(5 + 9/12, "feet"),
  51285. weight: math.unit(150, "lb"),
  51286. name: "Front",
  51287. image: {
  51288. source: "./media/characters/ven/front.svg",
  51289. extra: 1372/1320,
  51290. bottom: 73/1445
  51291. }
  51292. },
  51293. side: {
  51294. height: math.unit(5 + 9/12, "feet"),
  51295. weight: math.unit(1150, "lb"),
  51296. name: "Side",
  51297. image: {
  51298. source: "./media/characters/ven/side.svg",
  51299. extra: 1119/1070,
  51300. bottom: 42/1161
  51301. },
  51302. default: true
  51303. },
  51304. },
  51305. [
  51306. {
  51307. name: "Normal",
  51308. height: math.unit(5 + 9/12, "feet"),
  51309. default: true
  51310. },
  51311. ]
  51312. ))
  51313. characterMakers.push(() => makeCharacter(
  51314. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51315. {
  51316. front: {
  51317. height: math.unit(12, "feet"),
  51318. weight: math.unit(1000, "kg"),
  51319. name: "Front",
  51320. image: {
  51321. source: "./media/characters/maple/front.svg",
  51322. extra: 1193/1081,
  51323. bottom: 22/1215
  51324. }
  51325. },
  51326. },
  51327. [
  51328. {
  51329. name: "Compressed",
  51330. height: math.unit(7, "feet")
  51331. },
  51332. {
  51333. name: "Normal",
  51334. height: math.unit(12, "feet"),
  51335. default: true
  51336. },
  51337. ]
  51338. ))
  51339. characterMakers.push(() => makeCharacter(
  51340. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51341. {
  51342. front: {
  51343. height: math.unit(9, "feet"),
  51344. weight: math.unit(1500, "lb"),
  51345. name: "Front",
  51346. image: {
  51347. source: "./media/characters/nora/front.svg",
  51348. extra: 1348/1286,
  51349. bottom: 218/1566
  51350. }
  51351. },
  51352. erect: {
  51353. height: math.unit(9, "feet"),
  51354. weight: math.unit(11500, "lb"),
  51355. name: "Erect",
  51356. image: {
  51357. source: "./media/characters/nora/erect.svg",
  51358. extra: 1488/1433,
  51359. bottom: 133/1621
  51360. }
  51361. },
  51362. },
  51363. [
  51364. {
  51365. name: "Normal",
  51366. height: math.unit(9, "feet"),
  51367. default: true
  51368. },
  51369. ]
  51370. ))
  51371. characterMakers.push(() => makeCharacter(
  51372. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51373. {
  51374. front: {
  51375. height: math.unit(25, "feet"),
  51376. weight: math.unit(27500, "lb"),
  51377. name: "Front",
  51378. image: {
  51379. source: "./media/characters/north-caudin/front.svg",
  51380. extra: 1184/1082,
  51381. bottom: 23/1207
  51382. }
  51383. },
  51384. },
  51385. [
  51386. {
  51387. name: "Compressed",
  51388. height: math.unit(10, "feet")
  51389. },
  51390. {
  51391. name: "Normal",
  51392. height: math.unit(25, "feet"),
  51393. default: true
  51394. },
  51395. ]
  51396. ))
  51397. characterMakers.push(() => makeCharacter(
  51398. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51399. {
  51400. front: {
  51401. height: math.unit(9, "feet"),
  51402. weight: math.unit(1250, "lb"),
  51403. name: "Front",
  51404. image: {
  51405. source: "./media/characters/merrian/front.svg",
  51406. extra: 2393/2304,
  51407. bottom: 40/2433
  51408. }
  51409. },
  51410. },
  51411. [
  51412. {
  51413. name: "Normal",
  51414. height: math.unit(9, "feet"),
  51415. default: true
  51416. },
  51417. ]
  51418. ))
  51419. characterMakers.push(() => makeCharacter(
  51420. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51421. {
  51422. front: {
  51423. height: math.unit(9, "feet"),
  51424. weight: math.unit(1000, "lb"),
  51425. name: "Front",
  51426. image: {
  51427. source: "./media/characters/hazel/front.svg",
  51428. extra: 2351/2298,
  51429. bottom: 38/2389
  51430. }
  51431. },
  51432. },
  51433. [
  51434. {
  51435. name: "Normal",
  51436. height: math.unit(9, "feet"),
  51437. default: true
  51438. },
  51439. ]
  51440. ))
  51441. characterMakers.push(() => makeCharacter(
  51442. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51443. {
  51444. front: {
  51445. height: math.unit(13, "feet"),
  51446. weight: math.unit(3200, "lb"),
  51447. name: "Front",
  51448. image: {
  51449. source: "./media/characters/emma/front.svg",
  51450. extra: 2263/2029,
  51451. bottom: 68/2331
  51452. }
  51453. },
  51454. },
  51455. [
  51456. {
  51457. name: "Normal",
  51458. height: math.unit(13, "feet"),
  51459. default: true
  51460. },
  51461. ]
  51462. ))
  51463. characterMakers.push(() => makeCharacter(
  51464. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51465. {
  51466. front: {
  51467. height: math.unit(11 + 9/12, "feet"),
  51468. weight: math.unit(2500, "lb"),
  51469. name: "Front",
  51470. image: {
  51471. source: "./media/characters/ilumina/front.svg",
  51472. extra: 2248/2209,
  51473. bottom: 164/2412
  51474. }
  51475. },
  51476. },
  51477. [
  51478. {
  51479. name: "Normal",
  51480. height: math.unit(11 + 9/12, "feet"),
  51481. default: true
  51482. },
  51483. ]
  51484. ))
  51485. characterMakers.push(() => makeCharacter(
  51486. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51487. {
  51488. front: {
  51489. height: math.unit(8 + 10/12, "feet"),
  51490. weight: math.unit(1350, "lb"),
  51491. name: "Front",
  51492. image: {
  51493. source: "./media/characters/moonshine/front.svg",
  51494. extra: 2395/2288,
  51495. bottom: 40/2435
  51496. }
  51497. },
  51498. },
  51499. [
  51500. {
  51501. name: "Normal",
  51502. height: math.unit(8 + 10/12, "feet"),
  51503. default: true
  51504. },
  51505. ]
  51506. ))
  51507. characterMakers.push(() => makeCharacter(
  51508. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51509. {
  51510. front: {
  51511. height: math.unit(14, "feet"),
  51512. weight: math.unit(3400, "lb"),
  51513. name: "Front",
  51514. image: {
  51515. source: "./media/characters/aletia/front.svg",
  51516. extra: 1185/1052,
  51517. bottom: 21/1206
  51518. }
  51519. },
  51520. },
  51521. [
  51522. {
  51523. name: "Compressed",
  51524. height: math.unit(8, "feet")
  51525. },
  51526. {
  51527. name: "Normal",
  51528. height: math.unit(14, "feet"),
  51529. default: true
  51530. },
  51531. ]
  51532. ))
  51533. characterMakers.push(() => makeCharacter(
  51534. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51535. {
  51536. front: {
  51537. height: math.unit(17, "feet"),
  51538. weight: math.unit(6500, "lb"),
  51539. name: "Front",
  51540. image: {
  51541. source: "./media/characters/deidra/front.svg",
  51542. extra: 1201/1081,
  51543. bottom: 16/1217
  51544. }
  51545. },
  51546. },
  51547. [
  51548. {
  51549. name: "Compressed",
  51550. height: math.unit(9 + 6/12, "feet")
  51551. },
  51552. {
  51553. name: "Normal",
  51554. height: math.unit(17, "feet"),
  51555. default: true
  51556. },
  51557. ]
  51558. ))
  51559. characterMakers.push(() => makeCharacter(
  51560. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51561. {
  51562. front: {
  51563. height: math.unit(7 + 4/12, "feet"),
  51564. weight: math.unit(280, "lb"),
  51565. name: "Front",
  51566. image: {
  51567. source: "./media/characters/freki-yrmori/front.svg",
  51568. extra: 1286/1182,
  51569. bottom: 29/1315
  51570. }
  51571. },
  51572. maw: {
  51573. height: math.unit(0.9, "feet"),
  51574. name: "Maw",
  51575. image: {
  51576. source: "./media/characters/freki-yrmori/maw.svg"
  51577. }
  51578. },
  51579. },
  51580. [
  51581. {
  51582. name: "Normal",
  51583. height: math.unit(7 + 4/12, "feet"),
  51584. default: true
  51585. },
  51586. {
  51587. name: "Macro",
  51588. height: math.unit(38.5, "meters")
  51589. },
  51590. ]
  51591. ))
  51592. characterMakers.push(() => makeCharacter(
  51593. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51594. {
  51595. side: {
  51596. height: math.unit(47.2, "meters"),
  51597. weight: math.unit(10000, "tons"),
  51598. name: "Side",
  51599. image: {
  51600. source: "./media/characters/aetherios/side.svg",
  51601. extra: 2363/642,
  51602. bottom: 221/2584
  51603. }
  51604. },
  51605. top: {
  51606. height: math.unit(240, "meters"),
  51607. weight: math.unit(10000, "tons"),
  51608. name: "Top",
  51609. image: {
  51610. source: "./media/characters/aetherios/top.svg"
  51611. }
  51612. },
  51613. bottom: {
  51614. height: math.unit(240, "meters"),
  51615. weight: math.unit(10000, "tons"),
  51616. name: "Bottom",
  51617. image: {
  51618. source: "./media/characters/aetherios/bottom.svg"
  51619. }
  51620. },
  51621. head: {
  51622. height: math.unit(38.6, "meters"),
  51623. name: "Head",
  51624. image: {
  51625. source: "./media/characters/aetherios/head.svg",
  51626. extra: 1335/1112,
  51627. bottom: 0/1335
  51628. }
  51629. },
  51630. front: {
  51631. height: math.unit(29, "meters"),
  51632. name: "Front",
  51633. image: {
  51634. source: "./media/characters/aetherios/front.svg",
  51635. extra: 1266/953,
  51636. bottom: 158/1424
  51637. }
  51638. },
  51639. maw: {
  51640. height: math.unit(16.37, "meters"),
  51641. name: "Maw",
  51642. image: {
  51643. source: "./media/characters/aetherios/maw.svg",
  51644. extra: 748/637,
  51645. bottom: 0/748
  51646. },
  51647. extraAttributes: {
  51648. preyCapacity: {
  51649. name: "Capacity",
  51650. power: 3,
  51651. type: "volume",
  51652. base: math.unit(1000, "people")
  51653. },
  51654. tongueSize: {
  51655. name: "Tongue Size",
  51656. power: 2,
  51657. type: "area",
  51658. base: math.unit(21, "m^2")
  51659. }
  51660. }
  51661. },
  51662. forepaw: {
  51663. height: math.unit(18, "meters"),
  51664. name: "Forepaw",
  51665. image: {
  51666. source: "./media/characters/aetherios/forepaw.svg"
  51667. }
  51668. },
  51669. hindpaw: {
  51670. height: math.unit(23, "meters"),
  51671. name: "Hindpaw",
  51672. image: {
  51673. source: "./media/characters/aetherios/hindpaw.svg"
  51674. }
  51675. },
  51676. genitals: {
  51677. height: math.unit(42, "meters"),
  51678. name: "Genitals",
  51679. image: {
  51680. source: "./media/characters/aetherios/genitals.svg"
  51681. }
  51682. },
  51683. },
  51684. [
  51685. {
  51686. name: "Normal",
  51687. height: math.unit(47.2, "meters"),
  51688. default: true
  51689. },
  51690. {
  51691. name: "Macro",
  51692. height: math.unit(160, "meters")
  51693. },
  51694. {
  51695. name: "Mega",
  51696. height: math.unit(1.87, "km")
  51697. },
  51698. {
  51699. name: "Giga",
  51700. height: math.unit(40000, "km")
  51701. },
  51702. {
  51703. name: "Stellar",
  51704. height: math.unit(158000000, "km")
  51705. },
  51706. {
  51707. name: "Cosmic",
  51708. height: math.unit(9.46e12, "km")
  51709. },
  51710. ]
  51711. ))
  51712. characterMakers.push(() => makeCharacter(
  51713. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51714. {
  51715. front: {
  51716. height: math.unit(5 + 4/12, "feet"),
  51717. weight: math.unit(80, "lb"),
  51718. name: "Front",
  51719. image: {
  51720. source: "./media/characters/mizu-gieeg/front.svg",
  51721. extra: 850/709,
  51722. bottom: 52/902
  51723. }
  51724. },
  51725. back: {
  51726. height: math.unit(5 + 4/12, "feet"),
  51727. weight: math.unit(80, "lb"),
  51728. name: "Back",
  51729. image: {
  51730. source: "./media/characters/mizu-gieeg/back.svg",
  51731. extra: 882/745,
  51732. bottom: 25/907
  51733. }
  51734. },
  51735. },
  51736. [
  51737. {
  51738. name: "Normal",
  51739. height: math.unit(5 + 4/12, "feet"),
  51740. default: true
  51741. },
  51742. ]
  51743. ))
  51744. characterMakers.push(() => makeCharacter(
  51745. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51746. {
  51747. front: {
  51748. height: math.unit(6, "feet"),
  51749. name: "Front",
  51750. image: {
  51751. source: "./media/characters/roselle-st-papier/front.svg",
  51752. extra: 1430/1280,
  51753. bottom: 37/1467
  51754. }
  51755. },
  51756. back: {
  51757. height: math.unit(6, "feet"),
  51758. name: "Back",
  51759. image: {
  51760. source: "./media/characters/roselle-st-papier/back.svg",
  51761. extra: 1491/1296,
  51762. bottom: 23/1514
  51763. }
  51764. },
  51765. ear: {
  51766. height: math.unit(1.26, "feet"),
  51767. name: "Ear",
  51768. image: {
  51769. source: "./media/characters/roselle-st-papier/ear.svg"
  51770. }
  51771. },
  51772. },
  51773. [
  51774. {
  51775. name: "Normal",
  51776. height: math.unit(150, "feet"),
  51777. default: true
  51778. },
  51779. ]
  51780. ))
  51781. characterMakers.push(() => makeCharacter(
  51782. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51783. {
  51784. front: {
  51785. height: math.unit(1, "inches"),
  51786. name: "Front",
  51787. image: {
  51788. source: "./media/characters/valargent/front.svg",
  51789. extra: 1825/1694,
  51790. bottom: 62/1887
  51791. }
  51792. },
  51793. back: {
  51794. height: math.unit(1, "inches"),
  51795. name: "Back",
  51796. image: {
  51797. source: "./media/characters/valargent/back.svg",
  51798. extra: 1775/1682,
  51799. bottom: 88/1863
  51800. }
  51801. },
  51802. },
  51803. [
  51804. {
  51805. name: "Micro",
  51806. height: math.unit(1, "inch"),
  51807. default: true
  51808. },
  51809. ]
  51810. ))
  51811. characterMakers.push(() => makeCharacter(
  51812. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51813. {
  51814. front: {
  51815. height: math.unit(3.4, "meters"),
  51816. name: "Front",
  51817. image: {
  51818. source: "./media/characters/zarina/front.svg",
  51819. extra: 1733/1425,
  51820. bottom: 93/1826
  51821. }
  51822. },
  51823. squatting: {
  51824. height: math.unit(2.14, "meters"),
  51825. name: "Squatting",
  51826. image: {
  51827. source: "./media/characters/zarina/squatting.svg",
  51828. extra: 1073/788,
  51829. bottom: 63/1136
  51830. }
  51831. },
  51832. back: {
  51833. height: math.unit(2.14, "meters"),
  51834. name: "Back",
  51835. image: {
  51836. source: "./media/characters/zarina/back.svg",
  51837. extra: 1128/885,
  51838. bottom: 0/1128
  51839. }
  51840. },
  51841. },
  51842. [
  51843. {
  51844. name: "Normal",
  51845. height: math.unit(3.4, "meters"),
  51846. default: true
  51847. },
  51848. {
  51849. name: "Big",
  51850. height: math.unit(5, "meters")
  51851. },
  51852. {
  51853. name: "Macro",
  51854. height: math.unit(110, "meters")
  51855. },
  51856. ]
  51857. ))
  51858. characterMakers.push(() => makeCharacter(
  51859. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51860. {
  51861. front: {
  51862. height: math.unit(7, "feet"),
  51863. name: "Front",
  51864. image: {
  51865. source: "./media/characters/ventus-astro-fox/front.svg",
  51866. extra: 1792/1623,
  51867. bottom: 28/1820
  51868. }
  51869. },
  51870. back: {
  51871. height: math.unit(7, "feet"),
  51872. name: "Back",
  51873. image: {
  51874. source: "./media/characters/ventus-astro-fox/back.svg",
  51875. extra: 1789/1620,
  51876. bottom: 31/1820
  51877. }
  51878. },
  51879. outfit: {
  51880. height: math.unit(7, "feet"),
  51881. name: "Outfit",
  51882. image: {
  51883. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51884. extra: 1054/925,
  51885. bottom: 15/1069
  51886. }
  51887. },
  51888. head: {
  51889. height: math.unit(1.12, "feet"),
  51890. name: "Head",
  51891. image: {
  51892. source: "./media/characters/ventus-astro-fox/head.svg",
  51893. extra: 866/504,
  51894. bottom: 0/866
  51895. }
  51896. },
  51897. hand: {
  51898. height: math.unit(1, "feet"),
  51899. name: "Hand",
  51900. image: {
  51901. source: "./media/characters/ventus-astro-fox/hand.svg"
  51902. }
  51903. },
  51904. paw: {
  51905. height: math.unit(1.5, "feet"),
  51906. name: "Paw",
  51907. image: {
  51908. source: "./media/characters/ventus-astro-fox/paw.svg"
  51909. }
  51910. },
  51911. },
  51912. [
  51913. {
  51914. name: "Normal",
  51915. height: math.unit(7, "feet"),
  51916. default: true
  51917. },
  51918. {
  51919. name: "Macro",
  51920. height: math.unit(200, "feet")
  51921. },
  51922. {
  51923. name: "Cosmic",
  51924. height: math.unit(3, "universes")
  51925. },
  51926. ]
  51927. ))
  51928. characterMakers.push(() => makeCharacter(
  51929. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51930. {
  51931. front: {
  51932. height: math.unit(3, "meters"),
  51933. weight: math.unit(7000, "lb"),
  51934. name: "Front",
  51935. image: {
  51936. source: "./media/characters/core-t/front.svg",
  51937. extra: 5729/4941,
  51938. bottom: 1129/6858
  51939. }
  51940. },
  51941. },
  51942. [
  51943. {
  51944. name: "Big",
  51945. height: math.unit(3, "meters"),
  51946. default: true
  51947. },
  51948. ]
  51949. ))
  51950. characterMakers.push(() => makeCharacter(
  51951. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51952. {
  51953. normal: {
  51954. height: math.unit(6 + 6/12, "feet"),
  51955. weight: math.unit(275, "lb"),
  51956. name: "Front",
  51957. image: {
  51958. source: "./media/characters/cadbunny/normal.svg",
  51959. extra: 1129/947,
  51960. bottom: 93/1222
  51961. },
  51962. default: true,
  51963. form: "normal"
  51964. },
  51965. gigantamax: {
  51966. height: math.unit(26, "feet"),
  51967. weight: math.unit(16000, "lb"),
  51968. name: "Front",
  51969. image: {
  51970. source: "./media/characters/cadbunny/gigantamax.svg",
  51971. extra: 1133/944,
  51972. bottom: 90/1223
  51973. },
  51974. default: true,
  51975. form: "gigantamax"
  51976. },
  51977. },
  51978. [
  51979. {
  51980. name: "Normal",
  51981. height: math.unit(6 + 6/12, "feet"),
  51982. default: true,
  51983. form: "normal"
  51984. },
  51985. {
  51986. name: "Small",
  51987. height: math.unit(26, "feet"),
  51988. default: true,
  51989. form: "gigantamax"
  51990. },
  51991. {
  51992. name: "Large",
  51993. height: math.unit(78, "feet"),
  51994. form: "gigantamax"
  51995. },
  51996. ],
  51997. {
  51998. "normal": {
  51999. name: "Normal",
  52000. default: true
  52001. },
  52002. "gigantamax": {
  52003. name: "Gigantamax"
  52004. }
  52005. }
  52006. ))
  52007. characterMakers.push(() => makeCharacter(
  52008. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52009. {
  52010. anthroFront: {
  52011. height: math.unit(8, "feet"),
  52012. weight: math.unit(300, "lb"),
  52013. name: "Front",
  52014. image: {
  52015. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52016. extra: 1272/1176,
  52017. bottom: 53/1325
  52018. },
  52019. form: "anthro",
  52020. default: true
  52021. },
  52022. feralSide: {
  52023. height: math.unit(4, "feet"),
  52024. weight: math.unit(250, "lb"),
  52025. name: "Side",
  52026. image: {
  52027. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52028. extra: 731/621,
  52029. bottom: 0/731
  52030. },
  52031. form: "feral",
  52032. default: true
  52033. },
  52034. },
  52035. [
  52036. {
  52037. name: "Regular",
  52038. height: math.unit(8, "feet"),
  52039. form: "anthro"
  52040. },
  52041. {
  52042. name: "Macro",
  52043. height: math.unit(250, "feet"),
  52044. form: "anthro",
  52045. default: true
  52046. },
  52047. {
  52048. name: "Regular",
  52049. height: math.unit(4, "feet"),
  52050. form: "feral"
  52051. },
  52052. {
  52053. name: "Macro",
  52054. height: math.unit(125, "feet"),
  52055. form: "feral",
  52056. default: true
  52057. },
  52058. ],
  52059. {
  52060. "anthro": {
  52061. name: "Anthro",
  52062. default: true
  52063. },
  52064. "feral": {
  52065. name: "Feral",
  52066. },
  52067. }
  52068. ))
  52069. characterMakers.push(() => makeCharacter(
  52070. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52071. {
  52072. front: {
  52073. height: math.unit(11 + 10/12, "feet"),
  52074. weight: math.unit(1587, "kg"),
  52075. name: "Front",
  52076. image: {
  52077. source: "./media/characters/maple-javira-dragon/front.svg",
  52078. extra: 1136/744,
  52079. bottom: 73/1209
  52080. }
  52081. },
  52082. side: {
  52083. height: math.unit(11 + 10/12, "feet"),
  52084. weight: math.unit(1587, "kg"),
  52085. name: "Side",
  52086. image: {
  52087. source: "./media/characters/maple-javira-dragon/side.svg",
  52088. extra: 712/505,
  52089. bottom: 17/729
  52090. }
  52091. },
  52092. head: {
  52093. height: math.unit(8.05, "feet"),
  52094. name: "Head",
  52095. image: {
  52096. source: "./media/characters/maple-javira-dragon/head.svg",
  52097. extra: 1420/1344,
  52098. bottom: 0/1420
  52099. }
  52100. },
  52101. },
  52102. [
  52103. {
  52104. name: "Normal",
  52105. height: math.unit(11 + 10/12, "feet"),
  52106. default: true
  52107. },
  52108. ]
  52109. ))
  52110. characterMakers.push(() => makeCharacter(
  52111. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52112. {
  52113. front: {
  52114. height: math.unit(117, "cm"),
  52115. weight: math.unit(50, "kg"),
  52116. name: "Front",
  52117. image: {
  52118. source: "./media/characters/sonia-wyverntail/front.svg",
  52119. extra: 708/592,
  52120. bottom: 25/733
  52121. }
  52122. },
  52123. },
  52124. [
  52125. {
  52126. name: "Normal",
  52127. height: math.unit(117, "cm"),
  52128. default: true
  52129. },
  52130. ]
  52131. ))
  52132. characterMakers.push(() => makeCharacter(
  52133. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52134. {
  52135. front: {
  52136. height: math.unit(6 + 5/12, "feet"),
  52137. name: "Front",
  52138. image: {
  52139. source: "./media/characters/micah/front.svg",
  52140. extra: 1758/1546,
  52141. bottom: 214/1972
  52142. }
  52143. },
  52144. },
  52145. [
  52146. {
  52147. name: "Normal",
  52148. height: math.unit(6 + 5/12, "feet"),
  52149. default: true
  52150. },
  52151. ]
  52152. ))
  52153. characterMakers.push(() => makeCharacter(
  52154. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52155. {
  52156. front: {
  52157. height: math.unit(1.75, "meters"),
  52158. weight: math.unit(100, "kg"),
  52159. name: "Front",
  52160. image: {
  52161. source: "./media/characters/zarya/front.svg",
  52162. extra: 741/735,
  52163. bottom: 44/785
  52164. },
  52165. extraAttributes: {
  52166. "tailLength": {
  52167. name: "Tail Length",
  52168. power: 1,
  52169. type: "length",
  52170. base: math.unit(180, "cm")
  52171. },
  52172. "pawLength": {
  52173. name: "Paw Length",
  52174. power: 1,
  52175. type: "length",
  52176. base: math.unit(31, "cm")
  52177. },
  52178. }
  52179. },
  52180. side: {
  52181. height: math.unit(1.75, "meters"),
  52182. weight: math.unit(100, "kg"),
  52183. name: "Side",
  52184. image: {
  52185. source: "./media/characters/zarya/side.svg",
  52186. extra: 776/770,
  52187. bottom: 17/793
  52188. },
  52189. extraAttributes: {
  52190. "tailLength": {
  52191. name: "Tail Length",
  52192. power: 1,
  52193. type: "length",
  52194. base: math.unit(180, "cm")
  52195. },
  52196. "pawLength": {
  52197. name: "Paw Length",
  52198. power: 1,
  52199. type: "length",
  52200. base: math.unit(31, "cm")
  52201. },
  52202. }
  52203. },
  52204. back: {
  52205. height: math.unit(1.75, "meters"),
  52206. weight: math.unit(100, "kg"),
  52207. name: "Back",
  52208. image: {
  52209. source: "./media/characters/zarya/back.svg",
  52210. extra: 741/735,
  52211. bottom: 44/785
  52212. },
  52213. extraAttributes: {
  52214. "tailLength": {
  52215. name: "Tail Length",
  52216. power: 1,
  52217. type: "length",
  52218. base: math.unit(180, "cm")
  52219. },
  52220. "pawLength": {
  52221. name: "Paw Length",
  52222. power: 1,
  52223. type: "length",
  52224. base: math.unit(31, "cm")
  52225. },
  52226. }
  52227. },
  52228. frontNoTail: {
  52229. height: math.unit(1.75, "meters"),
  52230. weight: math.unit(100, "kg"),
  52231. name: "Front (No Tail)",
  52232. image: {
  52233. source: "./media/characters/zarya/front-no-tail.svg",
  52234. extra: 741/735,
  52235. bottom: 44/785
  52236. },
  52237. extraAttributes: {
  52238. "tailLength": {
  52239. name: "Tail Length",
  52240. power: 1,
  52241. type: "length",
  52242. base: math.unit(180, "cm")
  52243. },
  52244. "pawLength": {
  52245. name: "Paw Length",
  52246. power: 1,
  52247. type: "length",
  52248. base: math.unit(31, "cm")
  52249. },
  52250. }
  52251. },
  52252. dressed: {
  52253. height: math.unit(1.75, "meters"),
  52254. weight: math.unit(100, "kg"),
  52255. name: "Dressed",
  52256. image: {
  52257. source: "./media/characters/zarya/dressed.svg",
  52258. extra: 683/672,
  52259. bottom: 79/762
  52260. },
  52261. extraAttributes: {
  52262. "tailLength": {
  52263. name: "Tail Length",
  52264. power: 1,
  52265. type: "length",
  52266. base: math.unit(180, "cm")
  52267. },
  52268. "pawLength": {
  52269. name: "Paw Length",
  52270. power: 1,
  52271. type: "length",
  52272. base: math.unit(31, "cm")
  52273. },
  52274. }
  52275. },
  52276. },
  52277. [
  52278. {
  52279. name: "Micro",
  52280. height: math.unit(5, "cm")
  52281. },
  52282. {
  52283. name: "Normal",
  52284. height: math.unit(1.75, "meters"),
  52285. default: true
  52286. },
  52287. {
  52288. name: "Macro",
  52289. height: math.unit(122, "meters")
  52290. },
  52291. ]
  52292. ))
  52293. characterMakers.push(() => makeCharacter(
  52294. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52295. {
  52296. front: {
  52297. height: math.unit(7.5, "feet"),
  52298. name: "Front",
  52299. image: {
  52300. source: "./media/characters/sven-hatisson/front.svg",
  52301. extra: 917/857,
  52302. bottom: 42/959
  52303. }
  52304. },
  52305. back: {
  52306. height: math.unit(7.5, "feet"),
  52307. name: "Back",
  52308. image: {
  52309. source: "./media/characters/sven-hatisson/back.svg",
  52310. extra: 903/856,
  52311. bottom: 15/918
  52312. }
  52313. },
  52314. },
  52315. [
  52316. {
  52317. name: "Base Height",
  52318. height: math.unit(7.5, "feet")
  52319. },
  52320. {
  52321. name: "Usual Height",
  52322. height: math.unit(13.5, "feet"),
  52323. default: true
  52324. },
  52325. {
  52326. name: "Smaller Macro",
  52327. height: math.unit(85, "feet")
  52328. },
  52329. {
  52330. name: "Moderate Macro",
  52331. height: math.unit(320, "feet")
  52332. },
  52333. {
  52334. name: "Large Macro",
  52335. height: math.unit(1000, "feet")
  52336. },
  52337. {
  52338. name: "Largest Size",
  52339. height: math.unit(2, "miles")
  52340. },
  52341. ]
  52342. ))
  52343. characterMakers.push(() => makeCharacter(
  52344. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52345. {
  52346. side: {
  52347. height: math.unit(1.8, "meters"),
  52348. weight: math.unit(275, "kg"),
  52349. name: "Side",
  52350. image: {
  52351. source: "./media/characters/terra/side.svg",
  52352. extra: 1273/1147,
  52353. bottom: 0/1273
  52354. }
  52355. },
  52356. },
  52357. [
  52358. {
  52359. name: "Normal",
  52360. height: math.unit(16.2, "meters"),
  52361. default: true
  52362. },
  52363. ]
  52364. ))
  52365. characterMakers.push(() => makeCharacter(
  52366. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52367. {
  52368. borzoiFront: {
  52369. height: math.unit(6 + 9/12, "feet"),
  52370. name: "Front",
  52371. image: {
  52372. source: "./media/characters/rae/borzoi-front.svg",
  52373. extra: 1161/1098,
  52374. bottom: 31/1192
  52375. },
  52376. form: "borzoi",
  52377. default: true
  52378. },
  52379. werewolfFront: {
  52380. height: math.unit(8 + 7/12, "feet"),
  52381. name: "Front",
  52382. image: {
  52383. source: "./media/characters/rae/werewolf-front.svg",
  52384. extra: 1411/1334,
  52385. bottom: 127/1538
  52386. },
  52387. form: "werewolf",
  52388. default: true
  52389. },
  52390. },
  52391. [
  52392. {
  52393. name: "Normal",
  52394. height: math.unit(6 + 9/12, "feet"),
  52395. default: true,
  52396. form: "borzoi"
  52397. },
  52398. {
  52399. name: "Normal",
  52400. height: math.unit(8 + 7/12, "feet"),
  52401. default: true,
  52402. form: "werewolf"
  52403. },
  52404. ],
  52405. {
  52406. "borzoi": {
  52407. name: "Borzoi",
  52408. default: true
  52409. },
  52410. "werewolf": {
  52411. name: "Werewolf",
  52412. },
  52413. }
  52414. ))
  52415. characterMakers.push(() => makeCharacter(
  52416. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52417. {
  52418. front: {
  52419. height: math.unit(8 + 7/12, "feet"),
  52420. weight: math.unit(482, "lb"),
  52421. name: "Front",
  52422. image: {
  52423. source: "./media/characters/kit/front.svg",
  52424. extra: 1247/1103,
  52425. bottom: 41/1288
  52426. }
  52427. },
  52428. back: {
  52429. height: math.unit(8 + 7/12, "feet"),
  52430. weight: math.unit(482, "lb"),
  52431. name: "Back",
  52432. image: {
  52433. source: "./media/characters/kit/back.svg",
  52434. extra: 1252/1123,
  52435. bottom: 21/1273
  52436. }
  52437. },
  52438. paw: {
  52439. height: math.unit(1.46, "feet"),
  52440. name: "Paw",
  52441. image: {
  52442. source: "./media/characters/kit/paw.svg"
  52443. }
  52444. },
  52445. },
  52446. [
  52447. {
  52448. name: "Normal",
  52449. height: math.unit(2.61, "meters"),
  52450. default: true
  52451. },
  52452. {
  52453. name: "\"Tall\"",
  52454. height: math.unit(8.21, "meters")
  52455. },
  52456. {
  52457. name: "Tall",
  52458. height: math.unit(19.6, "meters")
  52459. },
  52460. {
  52461. name: "Very Tall",
  52462. height: math.unit(57.91, "meters")
  52463. },
  52464. {
  52465. name: "Semi-Macro",
  52466. height: math.unit(138.64, "meters")
  52467. },
  52468. {
  52469. name: "Macro",
  52470. height: math.unit(831.99, "meters")
  52471. },
  52472. {
  52473. name: "EX-Macro",
  52474. height: math.unit(96451121, "meters")
  52475. },
  52476. {
  52477. name: "S1-Omnipotent",
  52478. height: math.unit(4.42074e+9, "meters")
  52479. },
  52480. {
  52481. name: "S2-Omnipotent",
  52482. height: math.unit(9.42074e+17, "meters")
  52483. },
  52484. {
  52485. name: "Omnipotent",
  52486. height: math.unit(4.23112e+24, "meters")
  52487. },
  52488. {
  52489. name: "Hypergod",
  52490. height: math.unit(5.05176e+27, "meters")
  52491. },
  52492. {
  52493. name: "Hypergod-EX",
  52494. height: math.unit(9.45532e+49, "meters")
  52495. },
  52496. {
  52497. name: "Hypergod-SP",
  52498. height: math.unit(9.45532e+195, "meters")
  52499. },
  52500. ]
  52501. ))
  52502. characterMakers.push(() => makeCharacter(
  52503. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52504. {
  52505. side: {
  52506. height: math.unit(0.6, "meters"),
  52507. weight: math.unit(24, "kg"),
  52508. name: "Side",
  52509. image: {
  52510. source: "./media/characters/celeste/side.svg",
  52511. extra: 810/517,
  52512. bottom: 53/863
  52513. }
  52514. },
  52515. },
  52516. [
  52517. {
  52518. name: "Velociraptor",
  52519. height: math.unit(0.6, "meters"),
  52520. default: true
  52521. },
  52522. {
  52523. name: "Utahraptor",
  52524. height: math.unit(1.8, "meters")
  52525. },
  52526. {
  52527. name: "Gallimimus",
  52528. height: math.unit(4.0, "meters")
  52529. },
  52530. {
  52531. name: "Large",
  52532. height: math.unit(20, "meters")
  52533. },
  52534. {
  52535. name: "Planetary",
  52536. height: math.unit(50, "megameters")
  52537. },
  52538. {
  52539. name: "Stellar",
  52540. height: math.unit(1.5, "gigameters")
  52541. },
  52542. {
  52543. name: "Galactic",
  52544. height: math.unit(100, "exameters")
  52545. },
  52546. ]
  52547. ))
  52548. characterMakers.push(() => makeCharacter(
  52549. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52550. {
  52551. front: {
  52552. height: math.unit(6, "feet"),
  52553. weight: math.unit(210, "lb"),
  52554. name: "Front",
  52555. image: {
  52556. source: "./media/characters/glacia/front.svg",
  52557. extra: 958/901,
  52558. bottom: 45/1003
  52559. }
  52560. },
  52561. },
  52562. [
  52563. {
  52564. name: "Macro",
  52565. height: math.unit(1000, "meters"),
  52566. default: true
  52567. },
  52568. ]
  52569. ))
  52570. characterMakers.push(() => makeCharacter(
  52571. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52572. {
  52573. front: {
  52574. height: math.unit(4, "meters"),
  52575. name: "Front",
  52576. image: {
  52577. source: "./media/characters/giri/front.svg",
  52578. extra: 966/894,
  52579. bottom: 21/987
  52580. }
  52581. },
  52582. },
  52583. [
  52584. {
  52585. name: "Normal",
  52586. height: math.unit(4, "meters"),
  52587. default: true
  52588. },
  52589. ]
  52590. ))
  52591. characterMakers.push(() => makeCharacter(
  52592. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52593. {
  52594. back: {
  52595. height: math.unit(4, "feet"),
  52596. weight: math.unit(37, "lb"),
  52597. name: "Back",
  52598. image: {
  52599. source: "./media/characters/tin/back.svg",
  52600. extra: 845/780,
  52601. bottom: 28/873
  52602. }
  52603. },
  52604. },
  52605. [
  52606. {
  52607. name: "Normal",
  52608. height: math.unit(4, "feet"),
  52609. default: true
  52610. },
  52611. ]
  52612. ))
  52613. characterMakers.push(() => makeCharacter(
  52614. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52615. {
  52616. front: {
  52617. height: math.unit(25, "feet"),
  52618. name: "Front",
  52619. image: {
  52620. source: "./media/characters/cadenza-vivace/front.svg",
  52621. extra: 1842/1578,
  52622. bottom: 30/1872
  52623. }
  52624. },
  52625. },
  52626. [
  52627. {
  52628. name: "Macro",
  52629. height: math.unit(25, "feet"),
  52630. default: true
  52631. },
  52632. ]
  52633. ))
  52634. characterMakers.push(() => makeCharacter(
  52635. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52636. {
  52637. front: {
  52638. height: math.unit(10, "feet"),
  52639. weight: math.unit(625, "kg"),
  52640. name: "Front",
  52641. image: {
  52642. source: "./media/characters/zain/front.svg",
  52643. extra: 1682/1498,
  52644. bottom: 223/1905
  52645. }
  52646. },
  52647. back: {
  52648. height: math.unit(10, "feet"),
  52649. weight: math.unit(625, "kg"),
  52650. name: "Back",
  52651. image: {
  52652. source: "./media/characters/zain/back.svg",
  52653. extra: 1814/1657,
  52654. bottom: 152/1966
  52655. }
  52656. },
  52657. head: {
  52658. height: math.unit(10, "feet"),
  52659. weight: math.unit(625, "kg"),
  52660. name: "Head",
  52661. image: {
  52662. source: "./media/characters/zain/head.svg",
  52663. extra: 1059/762,
  52664. bottom: 0/1059
  52665. }
  52666. },
  52667. },
  52668. [
  52669. {
  52670. name: "Normal",
  52671. height: math.unit(10, "feet"),
  52672. default: true
  52673. },
  52674. ]
  52675. ))
  52676. characterMakers.push(() => makeCharacter(
  52677. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52678. {
  52679. front: {
  52680. height: math.unit(6 + 5/12, "feet"),
  52681. weight: math.unit(750, "lb"),
  52682. name: "Front",
  52683. image: {
  52684. source: "./media/characters/ruchex/front.svg",
  52685. extra: 877/820,
  52686. bottom: 17/894
  52687. },
  52688. extraAttributes: {
  52689. "width": {
  52690. name: "Width",
  52691. power: 1,
  52692. type: "length",
  52693. base: math.unit(4.757, "feet")
  52694. },
  52695. }
  52696. },
  52697. },
  52698. [
  52699. {
  52700. name: "Normal",
  52701. height: math.unit(6 + 5/12, "feet"),
  52702. default: true
  52703. },
  52704. ]
  52705. ))
  52706. characterMakers.push(() => makeCharacter(
  52707. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52708. {
  52709. dressedFront: {
  52710. height: math.unit(191, "cm"),
  52711. weight: math.unit(80, "kg"),
  52712. name: "Front",
  52713. image: {
  52714. source: "./media/characters/buster/dressed-front.svg",
  52715. extra: 1022/973,
  52716. bottom: 69/1091
  52717. }
  52718. },
  52719. dressedBack: {
  52720. height: math.unit(191, "cm"),
  52721. weight: math.unit(80, "kg"),
  52722. name: "Back",
  52723. image: {
  52724. source: "./media/characters/buster/dressed-back.svg",
  52725. extra: 1018/970,
  52726. bottom: 55/1073
  52727. }
  52728. },
  52729. nudeFront: {
  52730. height: math.unit(191, "cm"),
  52731. weight: math.unit(80, "kg"),
  52732. name: "Front (Nude)",
  52733. image: {
  52734. source: "./media/characters/buster/nude-front.svg",
  52735. extra: 1022/973,
  52736. bottom: 69/1091
  52737. }
  52738. },
  52739. nudeBack: {
  52740. height: math.unit(191, "cm"),
  52741. weight: math.unit(80, "kg"),
  52742. name: "Back (Nude)",
  52743. image: {
  52744. source: "./media/characters/buster/nude-back.svg",
  52745. extra: 1018/970,
  52746. bottom: 55/1073
  52747. }
  52748. },
  52749. dick: {
  52750. height: math.unit(2.59, "feet"),
  52751. name: "Dick",
  52752. image: {
  52753. source: "./media/characters/buster/dick.svg"
  52754. }
  52755. },
  52756. ass: {
  52757. height: math.unit(1.2, "feet"),
  52758. name: "Ass",
  52759. image: {
  52760. source: "./media/characters/buster/ass.svg"
  52761. }
  52762. },
  52763. },
  52764. [
  52765. {
  52766. name: "Normal",
  52767. height: math.unit(191, "cm"),
  52768. default: true
  52769. },
  52770. ]
  52771. ))
  52772. characterMakers.push(() => makeCharacter(
  52773. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52774. {
  52775. side: {
  52776. height: math.unit(8.1, "feet"),
  52777. weight: math.unit(3500, "lb"),
  52778. name: "Side",
  52779. image: {
  52780. source: "./media/characters/sonya/side.svg",
  52781. extra: 1730/1317,
  52782. bottom: 86/1816
  52783. }
  52784. },
  52785. },
  52786. [
  52787. {
  52788. name: "Normal",
  52789. height: math.unit(8.1, "feet"),
  52790. default: true
  52791. },
  52792. ]
  52793. ))
  52794. characterMakers.push(() => makeCharacter(
  52795. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52796. {
  52797. front: {
  52798. height: math.unit(6, "feet"),
  52799. weight: math.unit(150, "lb"),
  52800. name: "Front",
  52801. image: {
  52802. source: "./media/characters/cadence-andrysiak/front.svg",
  52803. extra: 1164/1121,
  52804. bottom: 60/1224
  52805. }
  52806. },
  52807. back: {
  52808. height: math.unit(6, "feet"),
  52809. weight: math.unit(150, "lb"),
  52810. name: "Back",
  52811. image: {
  52812. source: "./media/characters/cadence-andrysiak/back.svg",
  52813. extra: 1200/1165,
  52814. bottom: 9/1209
  52815. }
  52816. },
  52817. dressed: {
  52818. height: math.unit(6, "feet"),
  52819. weight: math.unit(150, "lb"),
  52820. name: "Dressed",
  52821. image: {
  52822. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52823. extra: 1164/1121,
  52824. bottom: 60/1224
  52825. }
  52826. },
  52827. },
  52828. [
  52829. {
  52830. name: "Micro",
  52831. height: math.unit(1, "mm")
  52832. },
  52833. {
  52834. name: "Normal",
  52835. height: math.unit(6, "feet"),
  52836. default: true
  52837. },
  52838. ]
  52839. ))
  52840. characterMakers.push(() => makeCharacter(
  52841. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52842. {
  52843. front: {
  52844. height: math.unit(60, "inches"),
  52845. weight: math.unit(16, "lb"),
  52846. preyCapacity: math.unit(80, "liters"),
  52847. name: "Front",
  52848. image: {
  52849. source: "./media/characters/penny-lynx/front.svg",
  52850. extra: 1959/1769,
  52851. bottom: 49/2008
  52852. }
  52853. },
  52854. },
  52855. [
  52856. {
  52857. name: "Nokia",
  52858. height: math.unit(2, "inches")
  52859. },
  52860. {
  52861. name: "Desktop",
  52862. height: math.unit(24, "inches")
  52863. },
  52864. {
  52865. name: "TV",
  52866. height: math.unit(60, "inches")
  52867. },
  52868. {
  52869. name: "Jumbotron",
  52870. height: math.unit(12, "feet")
  52871. },
  52872. {
  52873. name: "Billboard",
  52874. height: math.unit(48, "feet"),
  52875. default: true
  52876. },
  52877. {
  52878. name: "IMAX",
  52879. height: math.unit(96, "feet")
  52880. },
  52881. {
  52882. name: "SINGULARITY",
  52883. height: math.unit(864938, "miles")
  52884. },
  52885. ]
  52886. ))
  52887. characterMakers.push(() => makeCharacter(
  52888. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52889. {
  52890. front: {
  52891. height: math.unit(5 + 4/12, "feet"),
  52892. weight: math.unit(230, "lb"),
  52893. name: "Front",
  52894. image: {
  52895. source: "./media/characters/sukebe/front.svg",
  52896. extra: 2130/2038,
  52897. bottom: 90/2220
  52898. }
  52899. },
  52900. back: {
  52901. height: math.unit(3.48, "feet"),
  52902. weight: math.unit(230, "lb"),
  52903. name: "Back",
  52904. image: {
  52905. source: "./media/characters/sukebe/back.svg",
  52906. extra: 1670/1604,
  52907. bottom: 0/1670
  52908. }
  52909. },
  52910. },
  52911. [
  52912. {
  52913. name: "Normal",
  52914. height: math.unit(5 + 4/12, "feet"),
  52915. default: true
  52916. },
  52917. ]
  52918. ))
  52919. characterMakers.push(() => makeCharacter(
  52920. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52921. {
  52922. front: {
  52923. height: math.unit(6, "feet"),
  52924. name: "Front",
  52925. image: {
  52926. source: "./media/characters/nylla/front.svg",
  52927. extra: 1868/1699,
  52928. bottom: 97/1965
  52929. }
  52930. },
  52931. back: {
  52932. height: math.unit(6, "feet"),
  52933. name: "Back",
  52934. image: {
  52935. source: "./media/characters/nylla/back.svg",
  52936. extra: 1889/1712,
  52937. bottom: 93/1982
  52938. }
  52939. },
  52940. frontNsfw: {
  52941. height: math.unit(6, "feet"),
  52942. name: "Front (NSFW)",
  52943. image: {
  52944. source: "./media/characters/nylla/front-nsfw.svg",
  52945. extra: 1868/1699,
  52946. bottom: 97/1965
  52947. },
  52948. extraAttributes: {
  52949. "dickLength": {
  52950. name: "Dick Length",
  52951. power: 1,
  52952. type: "length",
  52953. base: math.unit(1.4, "feet")
  52954. },
  52955. "cumVolume": {
  52956. name: "Cum Volume",
  52957. power: 3,
  52958. type: "volume",
  52959. base: math.unit(100, "mL")
  52960. },
  52961. }
  52962. },
  52963. backNsfw: {
  52964. height: math.unit(6, "feet"),
  52965. name: "Back (NSFW)",
  52966. image: {
  52967. source: "./media/characters/nylla/back-nsfw.svg",
  52968. extra: 1889/1712,
  52969. bottom: 93/1982
  52970. }
  52971. },
  52972. maw: {
  52973. height: math.unit(2.10, "feet"),
  52974. name: "Maw",
  52975. image: {
  52976. source: "./media/characters/nylla/maw.svg"
  52977. }
  52978. },
  52979. paws: {
  52980. height: math.unit(2.06, "feet"),
  52981. name: "Paws",
  52982. image: {
  52983. source: "./media/characters/nylla/paws.svg"
  52984. }
  52985. },
  52986. muzzle: {
  52987. height: math.unit(0.61, "feet"),
  52988. name: "Muzzle",
  52989. image: {
  52990. source: "./media/characters/nylla/muzzle.svg"
  52991. }
  52992. },
  52993. sheath: {
  52994. height: math.unit(1.305, "feet"),
  52995. name: "Sheath",
  52996. image: {
  52997. source: "./media/characters/nylla/sheath.svg"
  52998. }
  52999. },
  53000. },
  53001. [
  53002. {
  53003. name: "Micro",
  53004. height: math.unit(7.5, "inches")
  53005. },
  53006. {
  53007. name: "Normal",
  53008. height: math.unit(7, "feet"),
  53009. default: true
  53010. },
  53011. {
  53012. name: "Macro",
  53013. height: math.unit(60, "feet")
  53014. },
  53015. {
  53016. name: "Mega",
  53017. height: math.unit(200, "feet")
  53018. },
  53019. ]
  53020. ))
  53021. characterMakers.push(() => makeCharacter(
  53022. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53023. {
  53024. front: {
  53025. height: math.unit(10, "feet"),
  53026. weight: math.unit(2300, "lb"),
  53027. name: "Front",
  53028. image: {
  53029. source: "./media/characters/hunt3r/front.svg",
  53030. extra: 1909/1742,
  53031. bottom: 46/1955
  53032. }
  53033. },
  53034. },
  53035. [
  53036. {
  53037. name: "Normal",
  53038. height: math.unit(10, "feet"),
  53039. default: true
  53040. },
  53041. ]
  53042. ))
  53043. characterMakers.push(() => makeCharacter(
  53044. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53045. {
  53046. dressed: {
  53047. height: math.unit(11, "feet"),
  53048. weight: math.unit(18500, "lb"),
  53049. preyCapacity: math.unit(9, "people"),
  53050. name: "Dressed",
  53051. image: {
  53052. source: "./media/characters/cylphis/dressed.svg",
  53053. extra: 1028/1003,
  53054. bottom: 75/1103
  53055. },
  53056. },
  53057. undressed: {
  53058. height: math.unit(11, "feet"),
  53059. weight: math.unit(18500, "lb"),
  53060. preyCapacity: math.unit(9, "people"),
  53061. name: "Undressed",
  53062. image: {
  53063. source: "./media/characters/cylphis/undressed.svg",
  53064. extra: 1028/1003,
  53065. bottom: 75/1103
  53066. }
  53067. },
  53068. full: {
  53069. height: math.unit(11, "feet"),
  53070. weight: math.unit(18500 + 150*9, "lb"),
  53071. preyCapacity: math.unit(9, "people"),
  53072. name: "Full",
  53073. image: {
  53074. source: "./media/characters/cylphis/full.svg",
  53075. extra: 1028/1003,
  53076. bottom: 75/1103
  53077. }
  53078. },
  53079. },
  53080. [
  53081. {
  53082. name: "Small",
  53083. height: math.unit(8, "feet")
  53084. },
  53085. {
  53086. name: "Normal",
  53087. height: math.unit(11, "feet"),
  53088. default: true
  53089. },
  53090. ]
  53091. ))
  53092. characterMakers.push(() => makeCharacter(
  53093. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53094. {
  53095. front: {
  53096. height: math.unit(2 + 7/12, "feet"),
  53097. name: "Front",
  53098. image: {
  53099. source: "./media/characters/orishan/front.svg",
  53100. extra: 1058/1023,
  53101. bottom: 23/1081
  53102. }
  53103. },
  53104. back: {
  53105. height: math.unit(2 + 7/12, "feet"),
  53106. name: "Back",
  53107. image: {
  53108. source: "./media/characters/orishan/back.svg",
  53109. extra: 1058/1023,
  53110. bottom: 23/1081
  53111. }
  53112. },
  53113. },
  53114. [
  53115. {
  53116. name: "Micro",
  53117. height: math.unit(2, "cm")
  53118. },
  53119. {
  53120. name: "Normal",
  53121. height: math.unit(2 + 7/12, "feet"),
  53122. default: true
  53123. },
  53124. ]
  53125. ))
  53126. characterMakers.push(() => makeCharacter(
  53127. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53128. {
  53129. front: {
  53130. height: math.unit(3, "meters"),
  53131. weight: math.unit(508, "kg"),
  53132. name: "Front",
  53133. image: {
  53134. source: "./media/characters/seranis/front.svg",
  53135. extra: 1478/1454,
  53136. bottom: 41/1519
  53137. }
  53138. },
  53139. },
  53140. [
  53141. {
  53142. name: "Normal",
  53143. height: math.unit(3, "meters"),
  53144. default: true
  53145. },
  53146. {
  53147. name: "Macro",
  53148. height: math.unit(108, "meters")
  53149. },
  53150. {
  53151. name: "Megamacro",
  53152. height: math.unit(1250, "meters")
  53153. },
  53154. ]
  53155. ))
  53156. characterMakers.push(() => makeCharacter(
  53157. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53158. {
  53159. undressed: {
  53160. height: math.unit(5 + 3/12, "feet"),
  53161. name: "Undressed",
  53162. image: {
  53163. source: "./media/characters/ankou/undressed.svg",
  53164. extra: 1301/1213,
  53165. bottom: 87/1388
  53166. }
  53167. },
  53168. dressed: {
  53169. height: math.unit(5 + 3/12, "feet"),
  53170. name: "Dressed",
  53171. image: {
  53172. source: "./media/characters/ankou/dressed.svg",
  53173. extra: 1301/1213,
  53174. bottom: 87/1388
  53175. }
  53176. },
  53177. head: {
  53178. height: math.unit(1.61, "feet"),
  53179. name: "Head",
  53180. image: {
  53181. source: "./media/characters/ankou/head.svg"
  53182. }
  53183. },
  53184. },
  53185. [
  53186. {
  53187. name: "Normal",
  53188. height: math.unit(5 + 3/12, "feet"),
  53189. default: true
  53190. },
  53191. ]
  53192. ))
  53193. characterMakers.push(() => makeCharacter(
  53194. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53195. {
  53196. side: {
  53197. height: math.unit(6 + 3/12, "feet"),
  53198. weight: math.unit(200, "kg"),
  53199. name: "Side",
  53200. image: {
  53201. source: "./media/characters/juniper-skunktaur/side.svg",
  53202. extra: 1574/1229,
  53203. bottom: 38/1612
  53204. }
  53205. },
  53206. front: {
  53207. height: math.unit(6 + 3/12, "feet"),
  53208. weight: math.unit(200, "kg"),
  53209. name: "Front",
  53210. image: {
  53211. source: "./media/characters/juniper-skunktaur/front.svg",
  53212. extra: 1337/1278,
  53213. bottom: 22/1359
  53214. }
  53215. },
  53216. back: {
  53217. height: math.unit(6 + 3/12, "feet"),
  53218. weight: math.unit(200, "kg"),
  53219. name: "Back",
  53220. image: {
  53221. source: "./media/characters/juniper-skunktaur/back.svg",
  53222. extra: 1618/1273,
  53223. bottom: 13/1631
  53224. }
  53225. },
  53226. top: {
  53227. height: math.unit(2.62, "feet"),
  53228. weight: math.unit(200, "kg"),
  53229. name: "Top",
  53230. image: {
  53231. source: "./media/characters/juniper-skunktaur/top.svg"
  53232. }
  53233. },
  53234. },
  53235. [
  53236. {
  53237. name: "Normal",
  53238. height: math.unit(6 + 3/12, "feet"),
  53239. default: true
  53240. },
  53241. ]
  53242. ))
  53243. characterMakers.push(() => makeCharacter(
  53244. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53245. {
  53246. front: {
  53247. height: math.unit(20.5, "feet"),
  53248. name: "Front",
  53249. image: {
  53250. source: "./media/characters/rei/front.svg",
  53251. extra: 1349/1195,
  53252. bottom: 31/1380
  53253. }
  53254. },
  53255. back: {
  53256. height: math.unit(20.5, "feet"),
  53257. name: "Back",
  53258. image: {
  53259. source: "./media/characters/rei/back.svg",
  53260. extra: 1358/1204,
  53261. bottom: 22/1380
  53262. }
  53263. },
  53264. pawsDigi: {
  53265. height: math.unit(3.45, "feet"),
  53266. name: "Paws (Digi)",
  53267. image: {
  53268. source: "./media/characters/rei/paws-digi.svg"
  53269. }
  53270. },
  53271. pawsPlanti: {
  53272. height: math.unit(3.45, "feet"),
  53273. name: "Paws (Planti)",
  53274. image: {
  53275. source: "./media/characters/rei/paws-planti.svg"
  53276. }
  53277. },
  53278. },
  53279. [
  53280. {
  53281. name: "Normal",
  53282. height: math.unit(20.5, "feet"),
  53283. default: true
  53284. },
  53285. ]
  53286. ))
  53287. characterMakers.push(() => makeCharacter(
  53288. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53289. {
  53290. front: {
  53291. height: math.unit(5 + 11/12, "feet"),
  53292. name: "Front",
  53293. image: {
  53294. source: "./media/characters/carina/front.svg",
  53295. extra: 1720/1449,
  53296. bottom: 14/1734
  53297. }
  53298. },
  53299. back: {
  53300. height: math.unit(5 + 11/12, "feet"),
  53301. name: "Back",
  53302. image: {
  53303. source: "./media/characters/carina/back.svg",
  53304. extra: 1493/1445,
  53305. bottom: 17/1510
  53306. }
  53307. },
  53308. paw: {
  53309. height: math.unit(0.92, "feet"),
  53310. name: "Paw",
  53311. image: {
  53312. source: "./media/characters/carina/paw.svg"
  53313. }
  53314. },
  53315. },
  53316. [
  53317. {
  53318. name: "Normal",
  53319. height: math.unit(5 + 11/12, "feet"),
  53320. default: true
  53321. },
  53322. ]
  53323. ))
  53324. characterMakers.push(() => makeCharacter(
  53325. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53326. {
  53327. normal_front: {
  53328. height: math.unit(4.88, "meters"),
  53329. name: "Front",
  53330. image: {
  53331. source: "./media/characters/maya/normal-front.svg",
  53332. extra: 1222/1145,
  53333. bottom: 57/1279
  53334. },
  53335. form: "normal",
  53336. default: true
  53337. },
  53338. monstrous_front: {
  53339. height: math.unit(10, "meters"),
  53340. name: "Front",
  53341. image: {
  53342. source: "./media/characters/maya/monstrous-front.svg",
  53343. extra: 1523/1109,
  53344. bottom: 113/1636
  53345. },
  53346. form: "monstrous",
  53347. extraAttributes: {
  53348. "swallowSize": {
  53349. name: "Tailmaw Bite Size",
  53350. power: 3,
  53351. type: "volume",
  53352. base: math.unit(43000, "liters")
  53353. },
  53354. }
  53355. },
  53356. taur_front: {
  53357. height: math.unit(10, "meters"),
  53358. name: "Front",
  53359. image: {
  53360. source: "./media/characters/maya/taur-front.svg",
  53361. extra: 743/506,
  53362. bottom: 101/844
  53363. },
  53364. form: "taur",
  53365. },
  53366. },
  53367. [
  53368. {
  53369. name: "Normal",
  53370. height: math.unit(4.88, "meters"),
  53371. default: true,
  53372. form: "normal"
  53373. },
  53374. {
  53375. name: "Macro",
  53376. height: math.unit(38.1, "meters"),
  53377. form: "normal"
  53378. },
  53379. {
  53380. name: "Macro+",
  53381. height: math.unit(152.4, "meters"),
  53382. form: "normal"
  53383. },
  53384. {
  53385. name: "Macro++",
  53386. height: math.unit(16.09, "km"),
  53387. form: "normal"
  53388. },
  53389. {
  53390. name: "Mega-macro",
  53391. height: math.unit(700, "megameters"),
  53392. form: "normal"
  53393. },
  53394. {
  53395. name: "Satiated",
  53396. height: math.unit(10, "meters"),
  53397. default: true,
  53398. form: "monstrous"
  53399. },
  53400. {
  53401. name: "Hungry",
  53402. height: math.unit(75, "meters"),
  53403. form: "monstrous"
  53404. },
  53405. {
  53406. name: "Ravenous",
  53407. height: math.unit(500, "meters"),
  53408. form: "monstrous"
  53409. },
  53410. {
  53411. name: "\"Normal\"",
  53412. height: math.unit(10, "meters"),
  53413. form: "taur"
  53414. },
  53415. {
  53416. name: "Macro",
  53417. height: math.unit(50, "meters"),
  53418. form: "taur"
  53419. },
  53420. ],
  53421. {
  53422. "normal": {
  53423. name: "Normal",
  53424. default: true
  53425. },
  53426. "monstrous": {
  53427. name: "Monstrous",
  53428. },
  53429. "taur": {
  53430. name: "Taur",
  53431. },
  53432. }
  53433. ))
  53434. characterMakers.push(() => makeCharacter(
  53435. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53436. {
  53437. front: {
  53438. height: math.unit(6 + 2/12, "feet"),
  53439. weight: math.unit(500, "lb"),
  53440. preyCapacity: math.unit(4, "people"),
  53441. name: "Front",
  53442. image: {
  53443. source: "./media/characters/yepir/front.svg"
  53444. }
  53445. },
  53446. side: {
  53447. height: math.unit(6 + 2/12, "feet"),
  53448. weight: math.unit(500, "lb"),
  53449. preyCapacity: math.unit(4, "people"),
  53450. name: "Side",
  53451. image: {
  53452. source: "./media/characters/yepir/side.svg"
  53453. }
  53454. },
  53455. paw: {
  53456. height: math.unit(1.05, "feet"),
  53457. name: "Paw",
  53458. image: {
  53459. source: "./media/characters/yepir/paw.svg"
  53460. }
  53461. },
  53462. },
  53463. [
  53464. {
  53465. name: "Normal",
  53466. height: math.unit(6 + 2/12, "feet"),
  53467. default: true
  53468. },
  53469. ]
  53470. ))
  53471. characterMakers.push(() => makeCharacter(
  53472. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53473. {
  53474. front: {
  53475. height: math.unit(5 + 4/12, "feet"),
  53476. name: "Front",
  53477. image: {
  53478. source: "./media/characters/russec/front.svg",
  53479. extra: 1926/1626,
  53480. bottom: 72/1998
  53481. }
  53482. },
  53483. back: {
  53484. height: math.unit(5 + 4/12, "feet"),
  53485. name: "Back",
  53486. image: {
  53487. source: "./media/characters/russec/back.svg",
  53488. extra: 1910/1591,
  53489. bottom: 48/1958
  53490. }
  53491. },
  53492. },
  53493. [
  53494. {
  53495. name: "Small",
  53496. height: math.unit(5 + 4/12, "feet")
  53497. },
  53498. {
  53499. name: "Normal",
  53500. height: math.unit(72, "feet"),
  53501. default: true
  53502. },
  53503. ]
  53504. ))
  53505. characterMakers.push(() => makeCharacter(
  53506. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53507. {
  53508. side: {
  53509. height: math.unit(12, "feet"),
  53510. name: "Side",
  53511. image: {
  53512. source: "./media/characters/cianus/side.svg",
  53513. extra: 808/526,
  53514. bottom: 61/869
  53515. }
  53516. },
  53517. },
  53518. [
  53519. {
  53520. name: "Normal",
  53521. height: math.unit(12, "feet"),
  53522. default: true
  53523. },
  53524. ]
  53525. ))
  53526. characterMakers.push(() => makeCharacter(
  53527. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53528. {
  53529. front: {
  53530. height: math.unit(9 + 6/12, "feet"),
  53531. weight: math.unit(300, "lb"),
  53532. name: "Front",
  53533. image: {
  53534. source: "./media/characters/ahab/front.svg",
  53535. extra: 1897/1868,
  53536. bottom: 121/2018
  53537. }
  53538. },
  53539. frontNsfw: {
  53540. height: math.unit(9 + 6/12, "feet"),
  53541. weight: math.unit(300, "lb"),
  53542. name: "Front-nsfw",
  53543. image: {
  53544. source: "./media/characters/ahab/front-nsfw.svg",
  53545. extra: 1897/1868,
  53546. bottom: 121/2018
  53547. }
  53548. },
  53549. },
  53550. [
  53551. {
  53552. name: "Normal",
  53553. height: math.unit(9 + 6/12, "feet")
  53554. },
  53555. {
  53556. name: "Macro",
  53557. height: math.unit(657, "feet"),
  53558. default: true
  53559. },
  53560. ]
  53561. ))
  53562. characterMakers.push(() => makeCharacter(
  53563. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53564. {
  53565. front: {
  53566. height: math.unit(2.69, "meters"),
  53567. weight: math.unit(132, "kg"),
  53568. name: "Front",
  53569. image: {
  53570. source: "./media/characters/aarkus/front.svg",
  53571. extra: 1400/1231,
  53572. bottom: 34/1434
  53573. }
  53574. },
  53575. back: {
  53576. height: math.unit(2.69, "meters"),
  53577. weight: math.unit(132, "kg"),
  53578. name: "Back",
  53579. image: {
  53580. source: "./media/characters/aarkus/back.svg",
  53581. extra: 1381/1218,
  53582. bottom: 30/1411
  53583. }
  53584. },
  53585. frontNsfw: {
  53586. height: math.unit(2.69, "meters"),
  53587. weight: math.unit(132, "kg"),
  53588. name: "Front (NSFW)",
  53589. image: {
  53590. source: "./media/characters/aarkus/front-nsfw.svg",
  53591. extra: 1400/1231,
  53592. bottom: 34/1434
  53593. }
  53594. },
  53595. foot: {
  53596. height: math.unit(1.45, "feet"),
  53597. name: "Foot",
  53598. image: {
  53599. source: "./media/characters/aarkus/foot.svg"
  53600. }
  53601. },
  53602. head: {
  53603. height: math.unit(2.85, "feet"),
  53604. name: "Head",
  53605. image: {
  53606. source: "./media/characters/aarkus/head.svg"
  53607. }
  53608. },
  53609. headAlt: {
  53610. height: math.unit(3.07, "feet"),
  53611. name: "Head (Alt)",
  53612. image: {
  53613. source: "./media/characters/aarkus/head-alt.svg"
  53614. }
  53615. },
  53616. mouth: {
  53617. height: math.unit(1.25, "feet"),
  53618. name: "Mouth",
  53619. image: {
  53620. source: "./media/characters/aarkus/mouth.svg"
  53621. }
  53622. },
  53623. dick: {
  53624. height: math.unit(1.77, "feet"),
  53625. name: "Dick",
  53626. image: {
  53627. source: "./media/characters/aarkus/dick.svg"
  53628. }
  53629. },
  53630. },
  53631. [
  53632. {
  53633. name: "Normal",
  53634. height: math.unit(2.69, "meters"),
  53635. default: true
  53636. },
  53637. {
  53638. name: "Macro",
  53639. height: math.unit(269, "meters")
  53640. },
  53641. {
  53642. name: "Macro+",
  53643. height: math.unit(672.5, "meters")
  53644. },
  53645. {
  53646. name: "Megamacro",
  53647. height: math.unit(2.017, "km")
  53648. },
  53649. ]
  53650. ))
  53651. characterMakers.push(() => makeCharacter(
  53652. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53653. {
  53654. front: {
  53655. height: math.unit(23.47, "cm"),
  53656. weight: math.unit(600, "grams"),
  53657. name: "Front",
  53658. image: {
  53659. source: "./media/characters/diode/front.svg",
  53660. extra: 1778/1396,
  53661. bottom: 95/1873
  53662. }
  53663. },
  53664. side: {
  53665. height: math.unit(23.47, "cm"),
  53666. weight: math.unit(600, "grams"),
  53667. name: "Side",
  53668. image: {
  53669. source: "./media/characters/diode/side.svg",
  53670. extra: 1831/1404,
  53671. bottom: 86/1917
  53672. }
  53673. },
  53674. wings: {
  53675. height: math.unit(0.683, "feet"),
  53676. name: "Wings",
  53677. image: {
  53678. source: "./media/characters/diode/wings.svg"
  53679. }
  53680. },
  53681. },
  53682. [
  53683. {
  53684. name: "Normal",
  53685. height: math.unit(23.47, "cm"),
  53686. default: true
  53687. },
  53688. ]
  53689. ))
  53690. characterMakers.push(() => makeCharacter(
  53691. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53692. {
  53693. front: {
  53694. height: math.unit(6 + 3/12, "feet"),
  53695. weight: math.unit(250, "lb"),
  53696. name: "Front",
  53697. image: {
  53698. source: "./media/characters/reika/front.svg",
  53699. extra: 1120/1078,
  53700. bottom: 86/1206
  53701. }
  53702. },
  53703. },
  53704. [
  53705. {
  53706. name: "Normal",
  53707. height: math.unit(6 + 3/12, "feet"),
  53708. default: true
  53709. },
  53710. ]
  53711. ))
  53712. characterMakers.push(() => makeCharacter(
  53713. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53714. {
  53715. front: {
  53716. height: math.unit(16 + 8/12, "feet"),
  53717. weight: math.unit(9000, "lb"),
  53718. name: "Front",
  53719. image: {
  53720. source: "./media/characters/lokuto-takama/front.svg",
  53721. extra: 1774/1632,
  53722. bottom: 147/1921
  53723. },
  53724. extraAttributes: {
  53725. "bustWidth": {
  53726. name: "Bust Width",
  53727. power: 1,
  53728. type: "length",
  53729. base: math.unit(2.4, "meters")
  53730. },
  53731. "breastWeight": {
  53732. name: "Breast Weight",
  53733. power: 3,
  53734. type: "mass",
  53735. base: math.unit(1000, "kg")
  53736. },
  53737. }
  53738. },
  53739. },
  53740. [
  53741. {
  53742. name: "Normal",
  53743. height: math.unit(16 + 8/12, "feet"),
  53744. default: true
  53745. },
  53746. ]
  53747. ))
  53748. characterMakers.push(() => makeCharacter(
  53749. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53750. {
  53751. front: {
  53752. height: math.unit(10, "cm"),
  53753. weight: math.unit(850, "grams"),
  53754. name: "Front",
  53755. image: {
  53756. source: "./media/characters/owak-bone/front.svg",
  53757. extra: 1965/1801,
  53758. bottom: 31/1996
  53759. }
  53760. },
  53761. },
  53762. [
  53763. {
  53764. name: "Normal",
  53765. height: math.unit(10, "cm"),
  53766. default: true
  53767. },
  53768. ]
  53769. ))
  53770. characterMakers.push(() => makeCharacter(
  53771. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53772. {
  53773. front: {
  53774. height: math.unit(2 + 6/12, "feet"),
  53775. weight: math.unit(9, "lb"),
  53776. name: "Front",
  53777. image: {
  53778. source: "./media/characters/muffin/front.svg",
  53779. extra: 1220/1195,
  53780. bottom: 84/1304
  53781. }
  53782. },
  53783. },
  53784. [
  53785. {
  53786. name: "Normal",
  53787. height: math.unit(2 + 6/12, "feet"),
  53788. default: true
  53789. },
  53790. ]
  53791. ))
  53792. characterMakers.push(() => makeCharacter(
  53793. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53794. {
  53795. front: {
  53796. height: math.unit(7, "feet"),
  53797. name: "Front",
  53798. image: {
  53799. source: "./media/characters/chimera/front.svg",
  53800. extra: 1752/1614,
  53801. bottom: 68/1820
  53802. }
  53803. },
  53804. },
  53805. [
  53806. {
  53807. name: "Normal",
  53808. height: math.unit(7, "feet")
  53809. },
  53810. {
  53811. name: "Gigamacro",
  53812. height: math.unit(2.9, "gigameters"),
  53813. default: true
  53814. },
  53815. {
  53816. name: "Universal",
  53817. height: math.unit(1.56e26, "yottameters")
  53818. },
  53819. ]
  53820. ))
  53821. characterMakers.push(() => makeCharacter(
  53822. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53823. {
  53824. front: {
  53825. height: math.unit(3, "feet"),
  53826. weight: math.unit(20, "lb"),
  53827. name: "Front",
  53828. image: {
  53829. source: "./media/characters/kit-fennec-fox/front.svg",
  53830. extra: 1027/932,
  53831. bottom: 16/1043
  53832. }
  53833. },
  53834. back: {
  53835. height: math.unit(3, "feet"),
  53836. weight: math.unit(20, "lb"),
  53837. name: "Back",
  53838. image: {
  53839. source: "./media/characters/kit-fennec-fox/back.svg",
  53840. extra: 1027/932,
  53841. bottom: 16/1043
  53842. }
  53843. },
  53844. },
  53845. [
  53846. {
  53847. name: "Normal",
  53848. height: math.unit(3, "feet"),
  53849. default: true
  53850. },
  53851. ]
  53852. ))
  53853. characterMakers.push(() => makeCharacter(
  53854. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53855. {
  53856. front: {
  53857. height: math.unit(167, "cm"),
  53858. name: "Front",
  53859. image: {
  53860. source: "./media/characters/blue-otter/front.svg",
  53861. extra: 1951/1920,
  53862. bottom: 31/1982
  53863. }
  53864. },
  53865. },
  53866. [
  53867. {
  53868. name: "Otter-Sized",
  53869. height: math.unit(100, "cm")
  53870. },
  53871. {
  53872. name: "Normal",
  53873. height: math.unit(167, "cm"),
  53874. default: true
  53875. },
  53876. ]
  53877. ))
  53878. characterMakers.push(() => makeCharacter(
  53879. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53880. {
  53881. front: {
  53882. height: math.unit(4 + 4/12, "feet"),
  53883. name: "Front",
  53884. image: {
  53885. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53886. extra: 1072/1067,
  53887. bottom: 117/1189
  53888. }
  53889. },
  53890. back: {
  53891. height: math.unit(4 + 4/12, "feet"),
  53892. name: "Back",
  53893. image: {
  53894. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53895. extra: 1135/1129,
  53896. bottom: 57/1192
  53897. }
  53898. },
  53899. head: {
  53900. height: math.unit(1.77, "feet"),
  53901. name: "Head",
  53902. image: {
  53903. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53904. }
  53905. },
  53906. },
  53907. [
  53908. {
  53909. name: "Normal",
  53910. height: math.unit(4 + 4/12, "feet"),
  53911. default: true
  53912. },
  53913. ]
  53914. ))
  53915. characterMakers.push(() => makeCharacter(
  53916. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53917. {
  53918. front: {
  53919. height: math.unit(2, "inches"),
  53920. name: "Front",
  53921. image: {
  53922. source: "./media/characters/carley-hartford/front.svg",
  53923. extra: 1035/988,
  53924. bottom: 23/1058
  53925. }
  53926. },
  53927. back: {
  53928. height: math.unit(2, "inches"),
  53929. name: "Back",
  53930. image: {
  53931. source: "./media/characters/carley-hartford/back.svg",
  53932. extra: 1035/988,
  53933. bottom: 23/1058
  53934. }
  53935. },
  53936. dressed: {
  53937. height: math.unit(2, "inches"),
  53938. name: "Dressed",
  53939. image: {
  53940. source: "./media/characters/carley-hartford/dressed.svg",
  53941. extra: 651/620,
  53942. bottom: 0/651
  53943. }
  53944. },
  53945. },
  53946. [
  53947. {
  53948. name: "Micro",
  53949. height: math.unit(2, "inches"),
  53950. default: true
  53951. },
  53952. {
  53953. name: "Macro",
  53954. height: math.unit(6 + 3/12, "feet")
  53955. },
  53956. ]
  53957. ))
  53958. characterMakers.push(() => makeCharacter(
  53959. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53960. {
  53961. front: {
  53962. height: math.unit(2 + 3/12, "feet"),
  53963. weight: math.unit(15 + 7/16, "lb"),
  53964. name: "Front",
  53965. image: {
  53966. source: "./media/characters/duke/front.svg",
  53967. extra: 910/815,
  53968. bottom: 30/940
  53969. }
  53970. },
  53971. },
  53972. [
  53973. {
  53974. name: "Normal",
  53975. height: math.unit(2 + 3/12, "feet"),
  53976. default: true
  53977. },
  53978. ]
  53979. ))
  53980. characterMakers.push(() => makeCharacter(
  53981. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53982. {
  53983. front: {
  53984. height: math.unit(5 + 4/12, "feet"),
  53985. weight: math.unit(156, "lb"),
  53986. name: "Front",
  53987. image: {
  53988. source: "./media/characters/dein/front.svg",
  53989. extra: 855/815,
  53990. bottom: 48/903
  53991. }
  53992. },
  53993. side: {
  53994. height: math.unit(5 + 4/12, "feet"),
  53995. weight: math.unit(156, "lb"),
  53996. name: "side",
  53997. image: {
  53998. source: "./media/characters/dein/side.svg",
  53999. extra: 846/803,
  54000. bottom: 25/871
  54001. }
  54002. },
  54003. maw: {
  54004. height: math.unit(1.45, "feet"),
  54005. name: "Maw",
  54006. image: {
  54007. source: "./media/characters/dein/maw.svg"
  54008. }
  54009. },
  54010. },
  54011. [
  54012. {
  54013. name: "Ferret Sized",
  54014. height: math.unit(2 + 5/12, "feet")
  54015. },
  54016. {
  54017. name: "Normal",
  54018. height: math.unit(5 + 4/12, "feet"),
  54019. default: true
  54020. },
  54021. ]
  54022. ))
  54023. characterMakers.push(() => makeCharacter(
  54024. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54025. {
  54026. front: {
  54027. height: math.unit(84 + 8/12, "feet"),
  54028. weight: math.unit(942180, "lb"),
  54029. name: "Front",
  54030. image: {
  54031. source: "./media/characters/daurine-arima/front.svg",
  54032. extra: 1989/1782,
  54033. bottom: 37/2026
  54034. }
  54035. },
  54036. side: {
  54037. height: math.unit(84 + 8/12, "feet"),
  54038. weight: math.unit(942180, "lb"),
  54039. name: "Side",
  54040. image: {
  54041. source: "./media/characters/daurine-arima/side.svg",
  54042. extra: 1997/1790,
  54043. bottom: 21/2018
  54044. }
  54045. },
  54046. back: {
  54047. height: math.unit(84 + 8/12, "feet"),
  54048. weight: math.unit(942180, "lb"),
  54049. name: "Back",
  54050. image: {
  54051. source: "./media/characters/daurine-arima/back.svg",
  54052. extra: 1992/1800,
  54053. bottom: 12/2004
  54054. }
  54055. },
  54056. head: {
  54057. height: math.unit(15.5, "feet"),
  54058. name: "Head",
  54059. image: {
  54060. source: "./media/characters/daurine-arima/head.svg"
  54061. }
  54062. },
  54063. headAlt: {
  54064. height: math.unit(19.19, "feet"),
  54065. name: "Head (Alt)",
  54066. image: {
  54067. source: "./media/characters/daurine-arima/head-alt.svg"
  54068. }
  54069. },
  54070. },
  54071. [
  54072. {
  54073. name: "Minimum height",
  54074. height: math.unit(8 + 10/12, "feet")
  54075. },
  54076. {
  54077. name: "Comfort height",
  54078. height: math.unit(19 + 6 /12, "feet")
  54079. },
  54080. {
  54081. name: "\"Normal\" height",
  54082. height: math.unit(28 + 10/12, "feet")
  54083. },
  54084. {
  54085. name: "Base height",
  54086. height: math.unit(84 + 8/12, "feet"),
  54087. default: true
  54088. },
  54089. {
  54090. name: "Mini-macro",
  54091. height: math.unit(2360, "feet")
  54092. },
  54093. {
  54094. name: "Macro",
  54095. height: math.unit(10, "miles")
  54096. },
  54097. {
  54098. name: "Goddess",
  54099. height: math.unit(9.99e40, "yottameters")
  54100. },
  54101. ]
  54102. ))
  54103. characterMakers.push(() => makeCharacter(
  54104. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54105. {
  54106. front: {
  54107. height: math.unit(2.3, "meters"),
  54108. name: "Front",
  54109. image: {
  54110. source: "./media/characters/cilenomon/front.svg",
  54111. extra: 1963/1778,
  54112. bottom: 54/2017
  54113. }
  54114. },
  54115. },
  54116. [
  54117. {
  54118. name: "Normal",
  54119. height: math.unit(2.3, "meters"),
  54120. default: true
  54121. },
  54122. {
  54123. name: "Big",
  54124. height: math.unit(5, "meters")
  54125. },
  54126. {
  54127. name: "Macro",
  54128. height: math.unit(30, "meters")
  54129. },
  54130. {
  54131. name: "True",
  54132. height: math.unit(1, "universe")
  54133. },
  54134. ]
  54135. ))
  54136. characterMakers.push(() => makeCharacter(
  54137. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54138. {
  54139. front: {
  54140. height: math.unit(5, "feet"),
  54141. name: "Front",
  54142. image: {
  54143. source: "./media/characters/sen-mink/front.svg",
  54144. extra: 1727/1675,
  54145. bottom: 35/1762
  54146. }
  54147. },
  54148. },
  54149. [
  54150. {
  54151. name: "Normal",
  54152. height: math.unit(5, "feet"),
  54153. default: true
  54154. },
  54155. ]
  54156. ))
  54157. characterMakers.push(() => makeCharacter(
  54158. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54159. {
  54160. front: {
  54161. height: math.unit(5.42999, "feet"),
  54162. weight: math.unit(100, "lb"),
  54163. name: "Front",
  54164. image: {
  54165. source: "./media/characters/ophois/front.svg",
  54166. extra: 1429/1286,
  54167. bottom: 60/1489
  54168. }
  54169. },
  54170. },
  54171. [
  54172. {
  54173. name: "Normal",
  54174. height: math.unit(5.42999, "feet"),
  54175. default: true
  54176. },
  54177. ]
  54178. ))
  54179. characterMakers.push(() => makeCharacter(
  54180. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54181. {
  54182. front: {
  54183. height: math.unit(2, "meters"),
  54184. name: "Front",
  54185. image: {
  54186. source: "./media/characters/riley/front.svg",
  54187. extra: 1779/1754,
  54188. bottom: 139/1918
  54189. }
  54190. },
  54191. },
  54192. [
  54193. {
  54194. name: "Normal",
  54195. height: math.unit(2, "meters"),
  54196. default: true
  54197. },
  54198. ]
  54199. ))
  54200. characterMakers.push(() => makeCharacter(
  54201. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54202. {
  54203. front: {
  54204. height: math.unit(6 + 2/12, "feet"),
  54205. weight: math.unit(195, "lb"),
  54206. preyCapacity: math.unit(6, "people"),
  54207. name: "Front",
  54208. image: {
  54209. source: "./media/characters/shuken-flash/front.svg",
  54210. extra: 1905/1739,
  54211. bottom: 65/1970
  54212. }
  54213. },
  54214. back: {
  54215. height: math.unit(6 + 2/12, "feet"),
  54216. weight: math.unit(195, "lb"),
  54217. preyCapacity: math.unit(6, "people"),
  54218. name: "Back",
  54219. image: {
  54220. source: "./media/characters/shuken-flash/back.svg",
  54221. extra: 1912/1751,
  54222. bottom: 13/1925
  54223. }
  54224. },
  54225. },
  54226. [
  54227. {
  54228. name: "Normal",
  54229. height: math.unit(6 + 2/12, "feet"),
  54230. default: true
  54231. },
  54232. ]
  54233. ))
  54234. characterMakers.push(() => makeCharacter(
  54235. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54236. {
  54237. front: {
  54238. height: math.unit(5 + 9/12, "feet"),
  54239. weight: math.unit(150, "lb"),
  54240. name: "Front",
  54241. image: {
  54242. source: "./media/characters/plat/front.svg",
  54243. extra: 1816/1703,
  54244. bottom: 43/1859
  54245. }
  54246. },
  54247. side: {
  54248. height: math.unit(5 + 9/12, "feet"),
  54249. weight: math.unit(300, "lb"),
  54250. name: "Side",
  54251. image: {
  54252. source: "./media/characters/plat/side.svg",
  54253. extra: 1824/1699,
  54254. bottom: 18/1842
  54255. }
  54256. },
  54257. },
  54258. [
  54259. {
  54260. name: "Normal",
  54261. height: math.unit(5 + 9/12, "feet"),
  54262. default: true
  54263. },
  54264. ]
  54265. ))
  54266. characterMakers.push(() => makeCharacter(
  54267. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54268. {
  54269. front: {
  54270. height: math.unit(9, "feet"),
  54271. weight: math.unit(1800, "lb"),
  54272. name: "Front",
  54273. image: {
  54274. source: "./media/characters/elaine/front.svg",
  54275. extra: 1833/1354,
  54276. bottom: 25/1858
  54277. }
  54278. },
  54279. back: {
  54280. height: math.unit(8.8, "feet"),
  54281. weight: math.unit(1800, "lb"),
  54282. name: "Back",
  54283. image: {
  54284. source: "./media/characters/elaine/back.svg",
  54285. extra: 1641/1233,
  54286. bottom: 53/1694
  54287. }
  54288. },
  54289. },
  54290. [
  54291. {
  54292. name: "Normal",
  54293. height: math.unit(9, "feet"),
  54294. default: true
  54295. },
  54296. ]
  54297. ))
  54298. characterMakers.push(() => makeCharacter(
  54299. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54300. {
  54301. front: {
  54302. height: math.unit(17 + 9/12, "feet"),
  54303. weight: math.unit(8000, "lb"),
  54304. name: "Front",
  54305. image: {
  54306. source: "./media/characters/vera-raven/front.svg",
  54307. extra: 1457/1412,
  54308. bottom: 121/1578
  54309. }
  54310. },
  54311. side: {
  54312. height: math.unit(17 + 9/12, "feet"),
  54313. weight: math.unit(8000, "lb"),
  54314. name: "Side",
  54315. image: {
  54316. source: "./media/characters/vera-raven/side.svg",
  54317. extra: 1510/1464,
  54318. bottom: 54/1564
  54319. }
  54320. },
  54321. },
  54322. [
  54323. {
  54324. name: "Normal",
  54325. height: math.unit(17 + 9/12, "feet"),
  54326. default: true
  54327. },
  54328. ]
  54329. ))
  54330. characterMakers.push(() => makeCharacter(
  54331. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54332. {
  54333. dressed: {
  54334. height: math.unit(6 + 9/12, "feet"),
  54335. name: "Dressed",
  54336. image: {
  54337. source: "./media/characters/nakisha/dressed.svg",
  54338. extra: 1909/1757,
  54339. bottom: 48/1957
  54340. }
  54341. },
  54342. nude: {
  54343. height: math.unit(6 + 9/12, "feet"),
  54344. name: "Nude",
  54345. image: {
  54346. source: "./media/characters/nakisha/nude.svg",
  54347. extra: 1917/1765,
  54348. bottom: 34/1951
  54349. }
  54350. },
  54351. },
  54352. [
  54353. {
  54354. name: "Normal",
  54355. height: math.unit(6 + 9/12, "feet"),
  54356. default: true
  54357. },
  54358. ]
  54359. ))
  54360. characterMakers.push(() => makeCharacter(
  54361. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54362. {
  54363. front: {
  54364. height: math.unit(87, "meters"),
  54365. name: "Front",
  54366. image: {
  54367. source: "./media/characters/serafin/front.svg",
  54368. extra: 1919/1776,
  54369. bottom: 65/1984
  54370. }
  54371. },
  54372. },
  54373. [
  54374. {
  54375. name: "Normal",
  54376. height: math.unit(87, "meters"),
  54377. default: true
  54378. },
  54379. ]
  54380. ))
  54381. characterMakers.push(() => makeCharacter(
  54382. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54383. {
  54384. front: {
  54385. height: math.unit(6, "feet"),
  54386. weight: math.unit(200, "lb"),
  54387. name: "Front",
  54388. image: {
  54389. source: "./media/characters/poptart/front.svg",
  54390. extra: 615/583,
  54391. bottom: 23/638
  54392. }
  54393. },
  54394. back: {
  54395. height: math.unit(6, "feet"),
  54396. weight: math.unit(200, "lb"),
  54397. name: "Back",
  54398. image: {
  54399. source: "./media/characters/poptart/back.svg",
  54400. extra: 617/584,
  54401. bottom: 22/639
  54402. }
  54403. },
  54404. frontNsfw: {
  54405. height: math.unit(6, "feet"),
  54406. weight: math.unit(200, "lb"),
  54407. name: "Front (NSFW)",
  54408. image: {
  54409. source: "./media/characters/poptart/front-nsfw.svg",
  54410. extra: 615/583,
  54411. bottom: 23/638
  54412. }
  54413. },
  54414. backNsfw: {
  54415. height: math.unit(6, "feet"),
  54416. weight: math.unit(200, "lb"),
  54417. name: "Back (NSFW)",
  54418. image: {
  54419. source: "./media/characters/poptart/back-nsfw.svg",
  54420. extra: 617/584,
  54421. bottom: 22/639
  54422. }
  54423. },
  54424. hand: {
  54425. height: math.unit(1.14, "feet"),
  54426. name: "Hand",
  54427. image: {
  54428. source: "./media/characters/poptart/hand.svg"
  54429. }
  54430. },
  54431. foot: {
  54432. height: math.unit(1.5, "feet"),
  54433. name: "Foot",
  54434. image: {
  54435. source: "./media/characters/poptart/foot.svg"
  54436. }
  54437. },
  54438. },
  54439. [
  54440. {
  54441. name: "Normal",
  54442. height: math.unit(6, "feet"),
  54443. default: true
  54444. },
  54445. {
  54446. name: "Grande",
  54447. height: math.unit(350, "feet")
  54448. },
  54449. {
  54450. name: "Massif",
  54451. height: math.unit(967, "feet")
  54452. },
  54453. ]
  54454. ))
  54455. characterMakers.push(() => makeCharacter(
  54456. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54457. {
  54458. hyenaSide: {
  54459. height: math.unit(120, "cm"),
  54460. weight: math.unit(120, "lb"),
  54461. name: "Side",
  54462. image: {
  54463. source: "./media/characters/trance/hyena-side.svg",
  54464. extra: 998/904,
  54465. bottom: 76/1074
  54466. }
  54467. },
  54468. },
  54469. [
  54470. {
  54471. name: "Normal",
  54472. height: math.unit(120, "cm"),
  54473. default: true
  54474. },
  54475. {
  54476. name: "Dire",
  54477. height: math.unit(230, "cm")
  54478. },
  54479. {
  54480. name: "Macro",
  54481. height: math.unit(37, "feet")
  54482. },
  54483. ]
  54484. ))
  54485. characterMakers.push(() => makeCharacter(
  54486. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54487. {
  54488. front: {
  54489. height: math.unit(6 + 3/12, "feet"),
  54490. name: "Front",
  54491. image: {
  54492. source: "./media/characters/michael-berretta/front.svg",
  54493. extra: 515/494,
  54494. bottom: 20/535
  54495. }
  54496. },
  54497. back: {
  54498. height: math.unit(6 + 3/12, "feet"),
  54499. name: "Back",
  54500. image: {
  54501. source: "./media/characters/michael-berretta/back.svg",
  54502. extra: 520/497,
  54503. bottom: 21/541
  54504. }
  54505. },
  54506. frontNsfw: {
  54507. height: math.unit(6 + 3/12, "feet"),
  54508. name: "Front (NSFW)",
  54509. image: {
  54510. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54511. extra: 515/494,
  54512. bottom: 20/535
  54513. }
  54514. },
  54515. dick: {
  54516. height: math.unit(1, "feet"),
  54517. name: "Dick",
  54518. image: {
  54519. source: "./media/characters/michael-berretta/dick.svg"
  54520. }
  54521. },
  54522. },
  54523. [
  54524. {
  54525. name: "Normal",
  54526. height: math.unit(6 + 3/12, "feet"),
  54527. default: true
  54528. },
  54529. {
  54530. name: "Big",
  54531. height: math.unit(12, "feet")
  54532. },
  54533. {
  54534. name: "Macro",
  54535. height: math.unit(187.5, "feet")
  54536. },
  54537. ]
  54538. ))
  54539. characterMakers.push(() => makeCharacter(
  54540. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54541. {
  54542. front: {
  54543. height: math.unit(9 + 9/12, "feet"),
  54544. weight: math.unit(1244, "lb"),
  54545. name: "Front",
  54546. image: {
  54547. source: "./media/characters/stella-edgecomb/front.svg",
  54548. extra: 1835/1706,
  54549. bottom: 49/1884
  54550. }
  54551. },
  54552. pen: {
  54553. height: math.unit(0.95, "feet"),
  54554. name: "Pen",
  54555. image: {
  54556. source: "./media/characters/stella-edgecomb/pen.svg"
  54557. }
  54558. },
  54559. },
  54560. [
  54561. {
  54562. name: "Cozy Bear",
  54563. height: math.unit(0.5, "inches")
  54564. },
  54565. {
  54566. name: "Normal",
  54567. height: math.unit(9 + 9/12, "feet"),
  54568. default: true
  54569. },
  54570. {
  54571. name: "Giga Bear",
  54572. height: math.unit(1, "mile")
  54573. },
  54574. {
  54575. name: "Great Bear",
  54576. height: math.unit(53, "miles")
  54577. },
  54578. {
  54579. name: "Goddess Bear",
  54580. height: math.unit(40000, "miles")
  54581. },
  54582. {
  54583. name: "Sun Bear",
  54584. height: math.unit(900000, "miles")
  54585. },
  54586. ]
  54587. ))
  54588. characterMakers.push(() => makeCharacter(
  54589. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54590. {
  54591. anthroFront: {
  54592. height: math.unit(556, "cm"),
  54593. weight: math.unit(2650, "kg"),
  54594. preyCapacity: math.unit(3, "people"),
  54595. name: "Front",
  54596. image: {
  54597. source: "./media/characters/ash´iika/front.svg",
  54598. extra: 710/673,
  54599. bottom: 15/725
  54600. },
  54601. form: "anthro",
  54602. default: true
  54603. },
  54604. anthroSide: {
  54605. height: math.unit(556, "cm"),
  54606. weight: math.unit(2650, "kg"),
  54607. preyCapacity: math.unit(3, "people"),
  54608. name: "Side",
  54609. image: {
  54610. source: "./media/characters/ash´iika/side.svg",
  54611. extra: 696/676,
  54612. bottom: 13/709
  54613. },
  54614. form: "anthro"
  54615. },
  54616. anthroDressed: {
  54617. height: math.unit(556, "cm"),
  54618. weight: math.unit(2650, "kg"),
  54619. preyCapacity: math.unit(3, "people"),
  54620. name: "Dressed",
  54621. image: {
  54622. source: "./media/characters/ash´iika/dressed.svg",
  54623. extra: 710/673,
  54624. bottom: 15/725
  54625. },
  54626. form: "anthro"
  54627. },
  54628. anthroHead: {
  54629. height: math.unit(3.5, "feet"),
  54630. name: "Head",
  54631. image: {
  54632. source: "./media/characters/ash´iika/head.svg",
  54633. extra: 348/291,
  54634. bottom: 45/393
  54635. },
  54636. form: "anthro"
  54637. },
  54638. feralSide: {
  54639. height: math.unit(870, "cm"),
  54640. weight: math.unit(17500, "kg"),
  54641. preyCapacity: math.unit(15, "people"),
  54642. name: "Side",
  54643. image: {
  54644. source: "./media/characters/ash´iika/feral.svg",
  54645. extra: 595/199,
  54646. bottom: 7/602
  54647. },
  54648. form: "feral",
  54649. default: true,
  54650. },
  54651. },
  54652. [
  54653. {
  54654. name: "Normal",
  54655. height: math.unit(556, "cm"),
  54656. default: true,
  54657. form: "anthro"
  54658. },
  54659. {
  54660. name: "Macro",
  54661. height: math.unit(88, "meters"),
  54662. form: "anthro"
  54663. },
  54664. {
  54665. name: "Normal",
  54666. height: math.unit(870, "cm"),
  54667. default: true,
  54668. form: "feral"
  54669. },
  54670. {
  54671. name: "Large",
  54672. height: math.unit(25, "meters"),
  54673. form: "feral"
  54674. },
  54675. ],
  54676. {
  54677. "anthro": {
  54678. name: "Anthro",
  54679. default: true
  54680. },
  54681. "feral": {
  54682. name: "Feral",
  54683. },
  54684. }
  54685. ))
  54686. characterMakers.push(() => makeCharacter(
  54687. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54688. {
  54689. front: {
  54690. height: math.unit(10, "feet"),
  54691. weight: math.unit(800, "lb"),
  54692. name: "Front",
  54693. image: {
  54694. source: "./media/characters/yen/front.svg",
  54695. extra: 443/411,
  54696. bottom: 6/449
  54697. }
  54698. },
  54699. sleeping: {
  54700. height: math.unit(10, "feet"),
  54701. weight: math.unit(800, "lb"),
  54702. name: "Sleeping",
  54703. image: {
  54704. source: "./media/characters/yen/sleeping.svg",
  54705. extra: 470/422,
  54706. bottom: 0/470
  54707. }
  54708. },
  54709. head: {
  54710. height: math.unit(2.2, "feet"),
  54711. name: "Head",
  54712. image: {
  54713. source: "./media/characters/yen/head.svg"
  54714. }
  54715. },
  54716. headAlt: {
  54717. height: math.unit(2.1, "feet"),
  54718. name: "Head (Alt)",
  54719. image: {
  54720. source: "./media/characters/yen/head-alt.svg"
  54721. }
  54722. },
  54723. },
  54724. [
  54725. {
  54726. name: "Normal",
  54727. height: math.unit(10, "feet"),
  54728. default: true
  54729. },
  54730. ]
  54731. ))
  54732. characterMakers.push(() => makeCharacter(
  54733. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54734. {
  54735. front: {
  54736. height: math.unit(12, "feet"),
  54737. name: "Front",
  54738. image: {
  54739. source: "./media/characters/citra/front.svg",
  54740. extra: 1950/1710,
  54741. bottom: 47/1997
  54742. }
  54743. },
  54744. },
  54745. [
  54746. {
  54747. name: "Normal",
  54748. height: math.unit(12, "feet"),
  54749. default: true
  54750. },
  54751. ]
  54752. ))
  54753. characterMakers.push(() => makeCharacter(
  54754. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54755. {
  54756. side: {
  54757. height: math.unit(7 + 10/12, "feet"),
  54758. name: "Side",
  54759. image: {
  54760. source: "./media/characters/sholstim/side.svg",
  54761. extra: 786/682,
  54762. bottom: 40/826
  54763. }
  54764. },
  54765. },
  54766. [
  54767. {
  54768. name: "Normal",
  54769. height: math.unit(7 + 10/12, "feet"),
  54770. default: true
  54771. },
  54772. ]
  54773. ))
  54774. characterMakers.push(() => makeCharacter(
  54775. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54776. {
  54777. front: {
  54778. height: math.unit(3.10, "meters"),
  54779. name: "Front",
  54780. image: {
  54781. source: "./media/characters/aggyn/front.svg",
  54782. extra: 1188/963,
  54783. bottom: 24/1212
  54784. }
  54785. },
  54786. },
  54787. [
  54788. {
  54789. name: "Normal",
  54790. height: math.unit(3.10, "meters"),
  54791. default: true
  54792. },
  54793. ]
  54794. ))
  54795. characterMakers.push(() => makeCharacter(
  54796. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54797. {
  54798. front: {
  54799. height: math.unit(7 + 5/12, "feet"),
  54800. weight: math.unit(687, "lb"),
  54801. name: "Front",
  54802. image: {
  54803. source: "./media/characters/alsandair-hergenroether/front.svg",
  54804. extra: 1251/1186,
  54805. bottom: 75/1326
  54806. }
  54807. },
  54808. back: {
  54809. height: math.unit(7 + 5/12, "feet"),
  54810. weight: math.unit(687, "lb"),
  54811. name: "Back",
  54812. image: {
  54813. source: "./media/characters/alsandair-hergenroether/back.svg",
  54814. extra: 1290/1229,
  54815. bottom: 17/1307
  54816. }
  54817. },
  54818. },
  54819. [
  54820. {
  54821. name: "Max Compression",
  54822. height: math.unit(7 + 5/12, "feet"),
  54823. default: true
  54824. },
  54825. {
  54826. name: "\"Normal\"",
  54827. height: math.unit(2, "universes")
  54828. },
  54829. ]
  54830. ))
  54831. characterMakers.push(() => makeCharacter(
  54832. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54833. {
  54834. front: {
  54835. height: math.unit(4 + 1/12, "feet"),
  54836. weight: math.unit(92, "lb"),
  54837. name: "Front",
  54838. image: {
  54839. source: "./media/characters/ie/front.svg",
  54840. extra: 1585/1352,
  54841. bottom: 91/1676
  54842. }
  54843. },
  54844. },
  54845. [
  54846. {
  54847. name: "Normal",
  54848. height: math.unit(4 + 1/12, "feet"),
  54849. default: true
  54850. },
  54851. ]
  54852. ))
  54853. characterMakers.push(() => makeCharacter(
  54854. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54855. {
  54856. anthro: {
  54857. height: math.unit(6, "feet"),
  54858. weight: math.unit(150, "lb"),
  54859. name: "Front",
  54860. image: {
  54861. source: "./media/characters/willow/anthro.svg",
  54862. extra: 1073/986,
  54863. bottom: 34/1107
  54864. },
  54865. form: "anthro",
  54866. default: true
  54867. },
  54868. taur: {
  54869. height: math.unit(6, "feet"),
  54870. weight: math.unit(150, "lb"),
  54871. name: "Side",
  54872. image: {
  54873. source: "./media/characters/willow/taur.svg",
  54874. extra: 647/512,
  54875. bottom: 136/783
  54876. },
  54877. form: "taur",
  54878. default: true
  54879. },
  54880. },
  54881. [
  54882. {
  54883. name: "Humanoid",
  54884. height: math.unit(2.7, "meters"),
  54885. form: "anthro"
  54886. },
  54887. {
  54888. name: "Normal",
  54889. height: math.unit(9, "meters"),
  54890. form: "anthro",
  54891. default: true
  54892. },
  54893. {
  54894. name: "Humanoid",
  54895. height: math.unit(2.1, "meters"),
  54896. form: "taur"
  54897. },
  54898. {
  54899. name: "Normal",
  54900. height: math.unit(7, "meters"),
  54901. form: "taur",
  54902. default: true
  54903. },
  54904. ],
  54905. {
  54906. "anthro": {
  54907. name: "Anthro",
  54908. default: true
  54909. },
  54910. "taur": {
  54911. name: "Taur",
  54912. },
  54913. }
  54914. ))
  54915. characterMakers.push(() => makeCharacter(
  54916. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54917. {
  54918. front: {
  54919. height: math.unit(2 + 5/12, "feet"),
  54920. name: "Front",
  54921. image: {
  54922. source: "./media/characters/kyan/front.svg",
  54923. extra: 460/334,
  54924. bottom: 23/483
  54925. },
  54926. extraAttributes: {
  54927. "toeLength": {
  54928. name: "Toe Length",
  54929. power: 1,
  54930. type: "length",
  54931. base: math.unit(7, "cm")
  54932. },
  54933. "toeclawLength": {
  54934. name: "Toeclaw Length",
  54935. power: 1,
  54936. type: "length",
  54937. base: math.unit(4.7, "cm")
  54938. },
  54939. "earHeight": {
  54940. name: "Ear Height",
  54941. power: 1,
  54942. type: "length",
  54943. base: math.unit(14.1, "cm")
  54944. },
  54945. }
  54946. },
  54947. paws: {
  54948. height: math.unit(0.45, "feet"),
  54949. name: "Paws",
  54950. image: {
  54951. source: "./media/characters/kyan/paws.svg",
  54952. extra: 581/581,
  54953. bottom: 114/695
  54954. }
  54955. },
  54956. },
  54957. [
  54958. {
  54959. name: "Normal",
  54960. height: math.unit(2 + 5/12, "feet"),
  54961. default: true
  54962. },
  54963. ]
  54964. ))
  54965. characterMakers.push(() => makeCharacter(
  54966. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54967. {
  54968. front: {
  54969. height: math.unit(2 + 2/3, "feet"),
  54970. name: "Front",
  54971. image: {
  54972. source: "./media/characters/xazzon/front.svg",
  54973. extra: 1109/984,
  54974. bottom: 42/1151
  54975. }
  54976. },
  54977. back: {
  54978. height: math.unit(2 + 2/3, "feet"),
  54979. name: "Back",
  54980. image: {
  54981. source: "./media/characters/xazzon/back.svg",
  54982. extra: 1095/971,
  54983. bottom: 23/1118
  54984. }
  54985. },
  54986. },
  54987. [
  54988. {
  54989. name: "Normal",
  54990. height: math.unit(2 + 2/3, "feet"),
  54991. default: true
  54992. },
  54993. ]
  54994. ))
  54995. characterMakers.push(() => makeCharacter(
  54996. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54997. {
  54998. front: {
  54999. height: math.unit(8, "feet"),
  55000. weight: math.unit(300, "lb"),
  55001. name: "Front",
  55002. image: {
  55003. source: "./media/characters/khyla-shadowsong/front.svg",
  55004. extra: 861/798,
  55005. bottom: 32/893
  55006. }
  55007. },
  55008. side: {
  55009. height: math.unit(8, "feet"),
  55010. weight: math.unit(300, "lb"),
  55011. name: "Side",
  55012. image: {
  55013. source: "./media/characters/khyla-shadowsong/side.svg",
  55014. extra: 790/750,
  55015. bottom: 87/877
  55016. }
  55017. },
  55018. back: {
  55019. height: math.unit(8, "feet"),
  55020. weight: math.unit(300, "lb"),
  55021. name: "Back",
  55022. image: {
  55023. source: "./media/characters/khyla-shadowsong/back.svg",
  55024. extra: 855/808,
  55025. bottom: 14/869
  55026. }
  55027. },
  55028. head: {
  55029. height: math.unit(2.7, "feet"),
  55030. name: "Head",
  55031. image: {
  55032. source: "./media/characters/khyla-shadowsong/head.svg"
  55033. }
  55034. },
  55035. },
  55036. [
  55037. {
  55038. name: "Micro",
  55039. height: math.unit(6, "inches")
  55040. },
  55041. {
  55042. name: "Normal",
  55043. height: math.unit(8, "feet"),
  55044. default: true
  55045. },
  55046. ]
  55047. ))
  55048. characterMakers.push(() => makeCharacter(
  55049. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55050. {
  55051. hyperFront: {
  55052. height: math.unit(9 + 4/12, "feet"),
  55053. weight: math.unit(2000, "lb"),
  55054. name: "Front",
  55055. image: {
  55056. source: "./media/characters/tiden/hyper-front.svg",
  55057. extra: 400/382,
  55058. bottom: 6/406
  55059. },
  55060. form: "hyper",
  55061. },
  55062. regularFront: {
  55063. height: math.unit(7 + 10/12, "feet"),
  55064. weight: math.unit(470, "lb"),
  55065. name: "Front",
  55066. image: {
  55067. source: "./media/characters/tiden/regular-front.svg",
  55068. extra: 468/442,
  55069. bottom: 6/474
  55070. },
  55071. form: "regular",
  55072. },
  55073. },
  55074. [
  55075. {
  55076. name: "Normal",
  55077. height: math.unit(9 + 4/12, "feet"),
  55078. default: true,
  55079. form: "hyper"
  55080. },
  55081. {
  55082. name: "Normal",
  55083. height: math.unit(7 + 10/12, "feet"),
  55084. default: true,
  55085. form: "regular"
  55086. },
  55087. ],
  55088. {
  55089. "hyper": {
  55090. name: "Hyper",
  55091. default: true
  55092. },
  55093. "regular": {
  55094. name: "Regular",
  55095. },
  55096. }
  55097. ))
  55098. characterMakers.push(() => makeCharacter(
  55099. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55100. {
  55101. side: {
  55102. height: math.unit(6, "feet"),
  55103. weight: math.unit(150, "lb"),
  55104. name: "Side",
  55105. image: {
  55106. source: "./media/characters/jason-crowe/side.svg",
  55107. extra: 1771/766,
  55108. bottom: 219/1990
  55109. }
  55110. },
  55111. },
  55112. [
  55113. {
  55114. name: "Pocket Gryphon",
  55115. height: math.unit(6, "cm")
  55116. },
  55117. {
  55118. name: "Raven",
  55119. height: math.unit(60, "cm")
  55120. },
  55121. {
  55122. name: "Normal",
  55123. height: math.unit(1, "meter"),
  55124. default: true
  55125. },
  55126. ]
  55127. ))
  55128. characterMakers.push(() => makeCharacter(
  55129. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55130. {
  55131. front: {
  55132. height: math.unit(9 + 6/12, "feet"),
  55133. weight: math.unit(1100, "lb"),
  55134. name: "Front",
  55135. image: {
  55136. source: "./media/characters/django/front.svg",
  55137. extra: 1231/1136,
  55138. bottom: 34/1265
  55139. }
  55140. },
  55141. side: {
  55142. height: math.unit(9 + 6/12, "feet"),
  55143. weight: math.unit(1100, "lb"),
  55144. name: "Side",
  55145. image: {
  55146. source: "./media/characters/django/side.svg",
  55147. extra: 1267/1174,
  55148. bottom: 9/1276
  55149. }
  55150. },
  55151. },
  55152. [
  55153. {
  55154. name: "Normal",
  55155. height: math.unit(9 + 6/12, "feet"),
  55156. default: true
  55157. },
  55158. {
  55159. name: "Macro 1",
  55160. height: math.unit(50, "feet")
  55161. },
  55162. {
  55163. name: "Macro 2",
  55164. height: math.unit(500, "feet")
  55165. },
  55166. {
  55167. name: "Mega Macro",
  55168. height: math.unit(5300, "feet")
  55169. },
  55170. ]
  55171. ))
  55172. characterMakers.push(() => makeCharacter(
  55173. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55174. {
  55175. frontSfw: {
  55176. height: math.unit(120, "cm"),
  55177. weight: math.unit(15, "kg"),
  55178. name: "Front (SFW)",
  55179. image: {
  55180. source: "./media/characters/eri/front-sfw.svg",
  55181. extra: 1014/939,
  55182. bottom: 37/1051
  55183. },
  55184. form: "moth",
  55185. },
  55186. frontNsfw: {
  55187. height: math.unit(120, "cm"),
  55188. weight: math.unit(15, "kg"),
  55189. name: "Front (NSFW)",
  55190. image: {
  55191. source: "./media/characters/eri/front-nsfw.svg",
  55192. extra: 1014/939,
  55193. bottom: 37/1051
  55194. },
  55195. form: "moth",
  55196. default: true
  55197. },
  55198. egg: {
  55199. height: math.unit(10, "cm"),
  55200. name: "Egg",
  55201. image: {
  55202. source: "./media/characters/eri/egg.svg"
  55203. },
  55204. form: "egg",
  55205. default: true
  55206. },
  55207. },
  55208. [
  55209. {
  55210. name: "Normal",
  55211. height: math.unit(120, "cm"),
  55212. default: true,
  55213. form: "moth"
  55214. },
  55215. {
  55216. name: "Normal",
  55217. height: math.unit(10, "cm"),
  55218. default: true,
  55219. form: "egg"
  55220. },
  55221. ],
  55222. {
  55223. "moth": {
  55224. name: "Moth",
  55225. default: true
  55226. },
  55227. "egg": {
  55228. name: "Egg",
  55229. },
  55230. }
  55231. ))
  55232. characterMakers.push(() => makeCharacter(
  55233. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55234. {
  55235. front: {
  55236. height: math.unit(200, "feet"),
  55237. name: "Front",
  55238. image: {
  55239. source: "./media/characters/bishop-dowser/front.svg",
  55240. extra: 933/868,
  55241. bottom: 106/1039
  55242. }
  55243. },
  55244. },
  55245. [
  55246. {
  55247. name: "Giant",
  55248. height: math.unit(200, "feet"),
  55249. default: true
  55250. },
  55251. ]
  55252. ))
  55253. characterMakers.push(() => makeCharacter(
  55254. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55255. {
  55256. front: {
  55257. height: math.unit(2, "meters"),
  55258. preyCapacity: math.unit(3, "people"),
  55259. name: "Front",
  55260. image: {
  55261. source: "./media/characters/fryra/front.svg",
  55262. extra: 1025/948,
  55263. bottom: 30/1055
  55264. },
  55265. extraAttributes: {
  55266. "breastVolume": {
  55267. name: "Breast Volume",
  55268. power: 3,
  55269. type: "volume",
  55270. base: math.unit(8, "liters")
  55271. },
  55272. }
  55273. },
  55274. back: {
  55275. height: math.unit(2, "meters"),
  55276. preyCapacity: math.unit(3, "people"),
  55277. name: "Back",
  55278. image: {
  55279. source: "./media/characters/fryra/back.svg",
  55280. extra: 993/938,
  55281. bottom: 38/1031
  55282. },
  55283. extraAttributes: {
  55284. "breastVolume": {
  55285. name: "Breast Volume",
  55286. power: 3,
  55287. type: "volume",
  55288. base: math.unit(8, "liters")
  55289. },
  55290. }
  55291. },
  55292. head: {
  55293. height: math.unit(1.33, "feet"),
  55294. name: "Head",
  55295. image: {
  55296. source: "./media/characters/fryra/head.svg"
  55297. }
  55298. },
  55299. maw: {
  55300. height: math.unit(0.56, "feet"),
  55301. name: "Maw",
  55302. image: {
  55303. source: "./media/characters/fryra/maw.svg"
  55304. }
  55305. },
  55306. },
  55307. [
  55308. {
  55309. name: "Micro",
  55310. height: math.unit(5, "cm")
  55311. },
  55312. {
  55313. name: "Normal",
  55314. height: math.unit(2, "meters"),
  55315. default: true
  55316. },
  55317. {
  55318. name: "Small Macro",
  55319. height: math.unit(8, "meters")
  55320. },
  55321. {
  55322. name: "Macro",
  55323. height: math.unit(50, "meters")
  55324. },
  55325. {
  55326. name: "Megamacro",
  55327. height: math.unit(1, "km")
  55328. },
  55329. {
  55330. name: "Planetary",
  55331. height: math.unit(300000, "km")
  55332. },
  55333. {
  55334. name: "Universal",
  55335. height: math.unit(250, "lightyears")
  55336. },
  55337. {
  55338. name: "Fabric of Reality",
  55339. height: math.unit(1000, "multiverses")
  55340. },
  55341. ]
  55342. ))
  55343. characterMakers.push(() => makeCharacter(
  55344. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55345. {
  55346. frontDressed: {
  55347. height: math.unit(6 + 2/12, "feet"),
  55348. name: "Front (Dressed)",
  55349. image: {
  55350. source: "./media/characters/fiera/front-dressed.svg",
  55351. extra: 1883/1793,
  55352. bottom: 70/1953
  55353. }
  55354. },
  55355. backDressed: {
  55356. height: math.unit(6 + 2/12, "feet"),
  55357. name: "Back (Dressed)",
  55358. image: {
  55359. source: "./media/characters/fiera/back-dressed.svg",
  55360. extra: 1847/1780,
  55361. bottom: 70/1917
  55362. }
  55363. },
  55364. frontNude: {
  55365. height: math.unit(6 + 2/12, "feet"),
  55366. name: "Front (Nude)",
  55367. image: {
  55368. source: "./media/characters/fiera/front-nude.svg",
  55369. extra: 1875/1785,
  55370. bottom: 66/1941
  55371. }
  55372. },
  55373. backNude: {
  55374. height: math.unit(6 + 2/12, "feet"),
  55375. name: "Back (Nude)",
  55376. image: {
  55377. source: "./media/characters/fiera/back-nude.svg",
  55378. extra: 1855/1788,
  55379. bottom: 44/1899
  55380. }
  55381. },
  55382. maw: {
  55383. height: math.unit(1.3, "feet"),
  55384. name: "Maw",
  55385. image: {
  55386. source: "./media/characters/fiera/maw.svg"
  55387. }
  55388. },
  55389. paw: {
  55390. height: math.unit(1, "feet"),
  55391. name: "Paw",
  55392. image: {
  55393. source: "./media/characters/fiera/paw.svg"
  55394. }
  55395. },
  55396. shoe: {
  55397. height: math.unit(1.05, "feet"),
  55398. name: "Shoe",
  55399. image: {
  55400. source: "./media/characters/fiera/shoe.svg"
  55401. }
  55402. },
  55403. },
  55404. [
  55405. {
  55406. name: "Normal",
  55407. height: math.unit(6 + 2/12, "feet"),
  55408. default: true
  55409. },
  55410. {
  55411. name: "Size Difference",
  55412. height: math.unit(13, "feet")
  55413. },
  55414. {
  55415. name: "Macro",
  55416. height: math.unit(60, "feet")
  55417. },
  55418. {
  55419. name: "Mega Macro",
  55420. height: math.unit(200, "feet")
  55421. },
  55422. ]
  55423. ))
  55424. characterMakers.push(() => makeCharacter(
  55425. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55426. {
  55427. back: {
  55428. height: math.unit(6, "feet"),
  55429. name: "Back",
  55430. image: {
  55431. source: "./media/characters/flare/back.svg",
  55432. extra: 1883/1765,
  55433. bottom: 32/1915
  55434. }
  55435. },
  55436. },
  55437. [
  55438. {
  55439. name: "Normal",
  55440. height: math.unit(6 + 2/12, "feet"),
  55441. default: true
  55442. },
  55443. {
  55444. name: "Size Difference",
  55445. height: math.unit(13, "feet")
  55446. },
  55447. {
  55448. name: "Macro",
  55449. height: math.unit(60, "feet")
  55450. },
  55451. {
  55452. name: "Macro 2",
  55453. height: math.unit(100, "feet")
  55454. },
  55455. {
  55456. name: "Mega Macro",
  55457. height: math.unit(200, "feet")
  55458. },
  55459. ]
  55460. ))
  55461. characterMakers.push(() => makeCharacter(
  55462. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55463. {
  55464. front: {
  55465. height: math.unit(2.2, "m"),
  55466. weight: math.unit(300, "kg"),
  55467. name: "Front",
  55468. image: {
  55469. source: "./media/characters/hanna/front.svg",
  55470. extra: 1696/1502,
  55471. bottom: 206/1902
  55472. }
  55473. },
  55474. },
  55475. [
  55476. {
  55477. name: "Humanoid",
  55478. height: math.unit(2.2, "meters")
  55479. },
  55480. {
  55481. name: "Normal",
  55482. height: math.unit(4.8, "meters"),
  55483. default: true
  55484. },
  55485. ]
  55486. ))
  55487. characterMakers.push(() => makeCharacter(
  55488. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55489. {
  55490. front: {
  55491. height: math.unit(2.8, "meters"),
  55492. name: "Front",
  55493. image: {
  55494. source: "./media/characters/argo/front.svg",
  55495. extra: 731/518,
  55496. bottom: 84/815
  55497. }
  55498. },
  55499. },
  55500. [
  55501. {
  55502. name: "Normal",
  55503. height: math.unit(3, "meters"),
  55504. default: true
  55505. },
  55506. ]
  55507. ))
  55508. characterMakers.push(() => makeCharacter(
  55509. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55510. {
  55511. side: {
  55512. height: math.unit(3.8, "meters"),
  55513. name: "Side",
  55514. image: {
  55515. source: "./media/characters/sybil/side.svg",
  55516. extra: 382/361,
  55517. bottom: 25/407
  55518. }
  55519. },
  55520. },
  55521. [
  55522. {
  55523. name: "Normal",
  55524. height: math.unit(3.8, "meters"),
  55525. default: true
  55526. },
  55527. ]
  55528. ))
  55529. characterMakers.push(() => makeCharacter(
  55530. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55531. {
  55532. side: {
  55533. height: math.unit(6, "meters"),
  55534. name: "Side",
  55535. image: {
  55536. source: "./media/characters/plum/side.svg",
  55537. extra: 858/755,
  55538. bottom: 45/903
  55539. },
  55540. form: "taur",
  55541. default: true
  55542. },
  55543. back: {
  55544. height: math.unit(6.3, "meters"),
  55545. name: "Back",
  55546. image: {
  55547. source: "./media/characters/plum/back.svg",
  55548. extra: 887/813,
  55549. bottom: 32/919
  55550. },
  55551. form: "taur",
  55552. },
  55553. feral: {
  55554. height: math.unit(5.5, "meter"),
  55555. name: "Front",
  55556. image: {
  55557. source: "./media/characters/plum/feral.svg",
  55558. extra: 568/403,
  55559. bottom: 51/619
  55560. },
  55561. form: "feral",
  55562. default: true
  55563. },
  55564. head: {
  55565. height: math.unit(1.46, "meter"),
  55566. name: "Head",
  55567. image: {
  55568. source: "./media/characters/plum/head.svg"
  55569. },
  55570. form: "taur"
  55571. },
  55572. tailTop: {
  55573. height: math.unit(5.6, "meter"),
  55574. name: "Tail (Top)",
  55575. image: {
  55576. source: "./media/characters/plum/tail-top.svg"
  55577. },
  55578. form: "taur",
  55579. },
  55580. tailBottom: {
  55581. height: math.unit(5.6, "meter"),
  55582. name: "Tail (Bottom)",
  55583. image: {
  55584. source: "./media/characters/plum/tail-bottom.svg"
  55585. },
  55586. form: "taur",
  55587. },
  55588. feralHead: {
  55589. height: math.unit(2.56549521, "meter"),
  55590. name: "Head",
  55591. image: {
  55592. source: "./media/characters/plum/head.svg"
  55593. },
  55594. form: "feral"
  55595. },
  55596. feralTailTop: {
  55597. height: math.unit(5.44728435, "meter"),
  55598. name: "Tail (Top)",
  55599. image: {
  55600. source: "./media/characters/plum/tail-top.svg"
  55601. },
  55602. form: "feral",
  55603. },
  55604. feralTailBottom: {
  55605. height: math.unit(5.44728435, "meter"),
  55606. name: "Tail (Bottom)",
  55607. image: {
  55608. source: "./media/characters/plum/tail-bottom.svg"
  55609. },
  55610. form: "feral",
  55611. },
  55612. },
  55613. [
  55614. {
  55615. name: "Normal",
  55616. height: math.unit(6, "meters"),
  55617. default: true,
  55618. form: "taur"
  55619. },
  55620. {
  55621. name: "Normal",
  55622. height: math.unit(5.5, "meters"),
  55623. default: true,
  55624. form: "feral"
  55625. },
  55626. ],
  55627. {
  55628. "taur": {
  55629. name: "Taur",
  55630. default: true
  55631. },
  55632. "feral": {
  55633. name: "Feral",
  55634. },
  55635. }
  55636. ))
  55637. characterMakers.push(() => makeCharacter(
  55638. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55639. {
  55640. front: {
  55641. height: math.unit(6, "feet"),
  55642. weight: math.unit(115, "lb"),
  55643. name: "Front",
  55644. image: {
  55645. source: "./media/characters/celeste-kitsune/front.svg",
  55646. extra: 393/366,
  55647. bottom: 7/400
  55648. }
  55649. },
  55650. side: {
  55651. height: math.unit(6, "feet"),
  55652. weight: math.unit(115, "lb"),
  55653. name: "Side",
  55654. image: {
  55655. source: "./media/characters/celeste-kitsune/side.svg",
  55656. extra: 818/765,
  55657. bottom: 40/858
  55658. }
  55659. },
  55660. },
  55661. [
  55662. {
  55663. name: "Megamacro",
  55664. height: math.unit(1500, "miles"),
  55665. default: true
  55666. },
  55667. ]
  55668. ))
  55669. characterMakers.push(() => makeCharacter(
  55670. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55671. {
  55672. front: {
  55673. height: math.unit(8, "meters"),
  55674. name: "Front",
  55675. image: {
  55676. source: "./media/characters/io/front.svg",
  55677. extra: 865/722,
  55678. bottom: 58/923
  55679. }
  55680. },
  55681. back: {
  55682. height: math.unit(8, "meters"),
  55683. name: "Back",
  55684. image: {
  55685. source: "./media/characters/io/back.svg",
  55686. extra: 920/776,
  55687. bottom: 42/962
  55688. }
  55689. },
  55690. head: {
  55691. height: math.unit(5.09, "meters"),
  55692. name: "Head",
  55693. image: {
  55694. source: "./media/characters/io/head.svg"
  55695. }
  55696. },
  55697. hand: {
  55698. height: math.unit(1.6, "meters"),
  55699. name: "Hand",
  55700. image: {
  55701. source: "./media/characters/io/hand.svg"
  55702. }
  55703. },
  55704. foot: {
  55705. height: math.unit(2.4, "meters"),
  55706. name: "Foot",
  55707. image: {
  55708. source: "./media/characters/io/foot.svg"
  55709. }
  55710. },
  55711. },
  55712. [
  55713. {
  55714. name: "Normal",
  55715. height: math.unit(8, "meters"),
  55716. default: true
  55717. },
  55718. ]
  55719. ))
  55720. characterMakers.push(() => makeCharacter(
  55721. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55722. {
  55723. side: {
  55724. height: math.unit(6 + 3/12, "feet"),
  55725. weight: math.unit(225, "lb"),
  55726. name: "Side",
  55727. image: {
  55728. source: "./media/characters/silas/side.svg",
  55729. extra: 703/653,
  55730. bottom: 23/726
  55731. },
  55732. extraAttributes: {
  55733. "pawLength": {
  55734. name: "Paw Length",
  55735. power: 1,
  55736. type: "length",
  55737. base: math.unit(12, "inches")
  55738. },
  55739. "pawWidth": {
  55740. name: "Paw Width",
  55741. power: 1,
  55742. type: "length",
  55743. base: math.unit(4.5, "inches")
  55744. },
  55745. "pawArea": {
  55746. name: "Paw Area",
  55747. power: 2,
  55748. type: "area",
  55749. base: math.unit(12 * 4.5, "inches^2")
  55750. },
  55751. }
  55752. },
  55753. },
  55754. [
  55755. {
  55756. name: "Normal",
  55757. height: math.unit(6 + 3/12, "feet"),
  55758. default: true
  55759. },
  55760. ]
  55761. ))
  55762. characterMakers.push(() => makeCharacter(
  55763. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55764. {
  55765. back: {
  55766. height: math.unit(1.6, "meters"),
  55767. weight: math.unit(150, "lb"),
  55768. name: "Back",
  55769. image: {
  55770. source: "./media/characters/zari/back.svg",
  55771. extra: 424/411,
  55772. bottom: 32/456
  55773. },
  55774. extraAttributes: {
  55775. "bladderCapacity": {
  55776. name: "Bladder Size",
  55777. power: 3,
  55778. type: "volume",
  55779. base: math.unit(500, "mL")
  55780. },
  55781. "bladderFlow": {
  55782. name: "Flow Rate",
  55783. power: 3,
  55784. type: "volume",
  55785. base: math.unit(25, "mL")
  55786. },
  55787. }
  55788. },
  55789. },
  55790. [
  55791. {
  55792. name: "Normal",
  55793. height: math.unit(1.6, "meters"),
  55794. default: true
  55795. },
  55796. ]
  55797. ))
  55798. characterMakers.push(() => makeCharacter(
  55799. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55800. {
  55801. front: {
  55802. height: math.unit(25, "feet"),
  55803. weight: math.unit(5, "tons"),
  55804. name: "Front",
  55805. image: {
  55806. source: "./media/characters/charlie-human/front.svg",
  55807. extra: 1870/1740,
  55808. bottom: 102/1972
  55809. },
  55810. extraAttributes: {
  55811. "dickLength": {
  55812. name: "Dick Length",
  55813. power: 1,
  55814. type: "length",
  55815. base: math.unit(9, "feet")
  55816. },
  55817. }
  55818. },
  55819. back: {
  55820. height: math.unit(25, "feet"),
  55821. weight: math.unit(5, "tons"),
  55822. name: "Back",
  55823. image: {
  55824. source: "./media/characters/charlie-human/back.svg",
  55825. extra: 1858/1733,
  55826. bottom: 105/1963
  55827. },
  55828. extraAttributes: {
  55829. "dickLength": {
  55830. name: "Dick Length",
  55831. power: 1,
  55832. type: "length",
  55833. base: math.unit(9, "feet")
  55834. },
  55835. }
  55836. },
  55837. },
  55838. [
  55839. {
  55840. name: "\"Normal\"",
  55841. height: math.unit(6 + 4/12, "feet")
  55842. },
  55843. {
  55844. name: "Big",
  55845. height: math.unit(25, "feet"),
  55846. default: true
  55847. },
  55848. ]
  55849. ))
  55850. characterMakers.push(() => makeCharacter(
  55851. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55852. {
  55853. front: {
  55854. height: math.unit(6 + 4/12, "feet"),
  55855. weight: math.unit(320, "lb"),
  55856. name: "Front",
  55857. image: {
  55858. source: "./media/characters/ookitsu/front.svg",
  55859. extra: 1160/976,
  55860. bottom: 38/1198
  55861. }
  55862. },
  55863. frontNsfw: {
  55864. height: math.unit(6 + 4/12, "feet"),
  55865. weight: math.unit(320, "lb"),
  55866. name: "Front (NSFW)",
  55867. image: {
  55868. source: "./media/characters/ookitsu/front-nsfw.svg",
  55869. extra: 1160/976,
  55870. bottom: 38/1198
  55871. }
  55872. },
  55873. back: {
  55874. height: math.unit(6 + 4/12, "feet"),
  55875. weight: math.unit(320, "lb"),
  55876. name: "Back",
  55877. image: {
  55878. source: "./media/characters/ookitsu/back.svg",
  55879. extra: 1030/975,
  55880. bottom: 70/1100
  55881. }
  55882. },
  55883. head: {
  55884. height: math.unit(1.79, "feet"),
  55885. name: "Head",
  55886. image: {
  55887. source: "./media/characters/ookitsu/head.svg"
  55888. }
  55889. },
  55890. hand: {
  55891. height: math.unit(0.92, "feet"),
  55892. name: "Hand",
  55893. image: {
  55894. source: "./media/characters/ookitsu/hand.svg"
  55895. }
  55896. },
  55897. tails: {
  55898. height: math.unit(3.3, "feet"),
  55899. name: "Tails",
  55900. image: {
  55901. source: "./media/characters/ookitsu/tails.svg"
  55902. }
  55903. },
  55904. dick: {
  55905. height: math.unit(1.10833, "feet"),
  55906. name: "Dick",
  55907. image: {
  55908. source: "./media/characters/ookitsu/dick.svg"
  55909. }
  55910. },
  55911. },
  55912. [
  55913. {
  55914. name: "Normal",
  55915. height: math.unit(6 + 4/12, "feet"),
  55916. default: true
  55917. },
  55918. {
  55919. name: "Macro",
  55920. height: math.unit(30, "feet")
  55921. },
  55922. ]
  55923. ))
  55924. characterMakers.push(() => makeCharacter(
  55925. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55926. {
  55927. anthroFront: {
  55928. height: math.unit(6, "feet"),
  55929. weight: math.unit(250, "lb"),
  55930. name: "Front",
  55931. image: {
  55932. source: "./media/characters/jhusky/anthro-front.svg",
  55933. extra: 474/439,
  55934. bottom: 7/481
  55935. },
  55936. form: "anthro",
  55937. default: true
  55938. },
  55939. taurSideSfw: {
  55940. height: math.unit(6 + 4/12, "feet"),
  55941. weight: math.unit(500, "lb"),
  55942. name: "Side (SFW)",
  55943. image: {
  55944. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55945. extra: 1741/1629,
  55946. bottom: 196/1937
  55947. },
  55948. form: "taur",
  55949. default: true
  55950. },
  55951. taurSideNsfw: {
  55952. height: math.unit(6 + 4/12, "feet"),
  55953. weight: math.unit(500, "lb"),
  55954. name: "Taur (NSFW)",
  55955. image: {
  55956. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55957. extra: 1741/1629,
  55958. bottom: 196/1937
  55959. },
  55960. form: "taur",
  55961. },
  55962. },
  55963. [
  55964. {
  55965. name: "Huge",
  55966. height: math.unit(500, "feet"),
  55967. form: "anthro"
  55968. },
  55969. {
  55970. name: "Macro",
  55971. height: math.unit(1000, "feet"),
  55972. default: true,
  55973. form: "anthro"
  55974. },
  55975. {
  55976. name: "Megamacro",
  55977. height: math.unit(10000, "feet"),
  55978. form: "anthro"
  55979. },
  55980. {
  55981. name: "Huge",
  55982. height: math.unit(528, "feet"),
  55983. form: "taur"
  55984. },
  55985. {
  55986. name: "Macro",
  55987. height: math.unit(1056, "feet"),
  55988. default: true,
  55989. form: "taur"
  55990. },
  55991. {
  55992. name: "Megamacro",
  55993. height: math.unit(10556, "feet"),
  55994. form: "taur"
  55995. },
  55996. ],
  55997. {
  55998. "anthro": {
  55999. name: "Anthro",
  56000. default: true
  56001. },
  56002. "taur": {
  56003. name: "Taur",
  56004. },
  56005. }
  56006. ))
  56007. characterMakers.push(() => makeCharacter(
  56008. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56009. {
  56010. front: {
  56011. height: math.unit(8, "feet"),
  56012. weight: math.unit(500, "lb"),
  56013. name: "Front",
  56014. image: {
  56015. source: "./media/characters/armail/front.svg",
  56016. extra: 1753/1669,
  56017. bottom: 155/1908
  56018. }
  56019. },
  56020. back: {
  56021. height: math.unit(8, "feet"),
  56022. weight: math.unit(500, "lb"),
  56023. name: "Back",
  56024. image: {
  56025. source: "./media/characters/armail/back.svg",
  56026. extra: 1872/1803,
  56027. bottom: 63/1935
  56028. }
  56029. },
  56030. },
  56031. [
  56032. {
  56033. name: "Micro",
  56034. height: math.unit(0.25, "feet")
  56035. },
  56036. {
  56037. name: "Normal",
  56038. height: math.unit(8, "feet"),
  56039. default: true
  56040. },
  56041. {
  56042. name: "Mini-macro",
  56043. height: math.unit(30, "feet")
  56044. },
  56045. {
  56046. name: "Macro",
  56047. height: math.unit(400, "feet")
  56048. },
  56049. {
  56050. name: "Mega-macro",
  56051. height: math.unit(6000, "feet")
  56052. },
  56053. ]
  56054. ))
  56055. characterMakers.push(() => makeCharacter(
  56056. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56057. {
  56058. front: {
  56059. height: math.unit(6 + 7/12, "feet"),
  56060. weight: math.unit(210, "lb"),
  56061. name: "Front",
  56062. image: {
  56063. source: "./media/characters/wilfred-t-buxton/front.svg",
  56064. extra: 1068/882,
  56065. bottom: 28/1096
  56066. }
  56067. },
  56068. },
  56069. [
  56070. {
  56071. name: "Normal",
  56072. height: math.unit(6 + 7/12, "feet"),
  56073. default: true
  56074. },
  56075. ]
  56076. ))
  56077. characterMakers.push(() => makeCharacter(
  56078. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56079. {
  56080. front: {
  56081. height: math.unit(5 + 2/12, "feet"),
  56082. weight: math.unit(120, "lb"),
  56083. name: "Front",
  56084. image: {
  56085. source: "./media/characters/leighton-marrow/front.svg",
  56086. extra: 441/409,
  56087. bottom: 37/478
  56088. }
  56089. },
  56090. },
  56091. [
  56092. {
  56093. name: "Normal",
  56094. height: math.unit(5 + 2/12, "feet"),
  56095. default: true
  56096. },
  56097. ]
  56098. ))
  56099. characterMakers.push(() => makeCharacter(
  56100. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56101. {
  56102. front: {
  56103. height: math.unit(4, "meters"),
  56104. weight: math.unit(1200, "kg"),
  56105. name: "Front",
  56106. image: {
  56107. source: "./media/characters/licos/front.svg",
  56108. extra: 1727/1604,
  56109. bottom: 101/1828
  56110. },
  56111. form: "anthro",
  56112. default: true
  56113. },
  56114. taur_side: {
  56115. height: math.unit(20, "meters"),
  56116. weight: math.unit(1100000, "kg"),
  56117. name: "Side",
  56118. image: {
  56119. source: "./media/characters/licos/taur.svg",
  56120. extra: 1158/1091,
  56121. bottom: 80/1238
  56122. },
  56123. form: "taur",
  56124. default: true
  56125. },
  56126. },
  56127. [
  56128. {
  56129. name: "Normal",
  56130. height: math.unit(4, "meters"),
  56131. default: true,
  56132. form: "anthro"
  56133. },
  56134. {
  56135. name: "Normal",
  56136. height: math.unit(20, "meters"),
  56137. default: true,
  56138. form: "taur"
  56139. },
  56140. ],
  56141. {
  56142. "anthro": {
  56143. name: "Anthro",
  56144. default: true
  56145. },
  56146. "taur": {
  56147. name: "Taur",
  56148. },
  56149. }
  56150. ))
  56151. characterMakers.push(() => makeCharacter(
  56152. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56153. {
  56154. front: {
  56155. height: math.unit(10 + 3/12, "feet"),
  56156. name: "Front",
  56157. image: {
  56158. source: "./media/characters/theo-monkey/front.svg",
  56159. extra: 1735/1658,
  56160. bottom: 73/1808
  56161. }
  56162. },
  56163. back: {
  56164. height: math.unit(10 + 3/12, "feet"),
  56165. name: "Back",
  56166. image: {
  56167. source: "./media/characters/theo-monkey/back.svg",
  56168. extra: 1742/1664,
  56169. bottom: 33/1775
  56170. }
  56171. },
  56172. head: {
  56173. height: math.unit(2.29, "feet"),
  56174. name: "Head",
  56175. image: {
  56176. source: "./media/characters/theo-monkey/head.svg"
  56177. }
  56178. },
  56179. handPalm: {
  56180. height: math.unit(1.73, "feet"),
  56181. name: "Hand (Palm)",
  56182. image: {
  56183. source: "./media/characters/theo-monkey/hand-palm.svg"
  56184. }
  56185. },
  56186. handBack: {
  56187. height: math.unit(1.63, "feet"),
  56188. name: "Hand (Back)",
  56189. image: {
  56190. source: "./media/characters/theo-monkey/hand-back.svg"
  56191. }
  56192. },
  56193. footSole: {
  56194. height: math.unit(2.15, "feet"),
  56195. name: "Foot (Sole)",
  56196. image: {
  56197. source: "./media/characters/theo-monkey/foot-sole.svg"
  56198. }
  56199. },
  56200. footSide: {
  56201. height: math.unit(1.6, "feet"),
  56202. name: "Foot (Side)",
  56203. image: {
  56204. source: "./media/characters/theo-monkey/foot-side.svg"
  56205. }
  56206. },
  56207. },
  56208. [
  56209. {
  56210. name: "Normal",
  56211. height: math.unit(10 + 3/12, "feet"),
  56212. default: true
  56213. },
  56214. ]
  56215. ))
  56216. characterMakers.push(() => makeCharacter(
  56217. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56218. {
  56219. front: {
  56220. height: math.unit(11, "feet"),
  56221. weight: math.unit(3000, "lb"),
  56222. preyCapacity: math.unit(10, "people"),
  56223. name: "Front",
  56224. image: {
  56225. source: "./media/characters/brook/front.svg",
  56226. extra: 909/835,
  56227. bottom: 108/1017
  56228. }
  56229. },
  56230. back: {
  56231. height: math.unit(11, "feet"),
  56232. weight: math.unit(3000, "lb"),
  56233. preyCapacity: math.unit(10, "people"),
  56234. name: "Back",
  56235. image: {
  56236. source: "./media/characters/brook/back.svg",
  56237. extra: 976/916,
  56238. bottom: 34/1010
  56239. }
  56240. },
  56241. backAlt: {
  56242. height: math.unit(11, "feet"),
  56243. weight: math.unit(3000, "lb"),
  56244. preyCapacity: math.unit(10, "people"),
  56245. name: "Back (Alt)",
  56246. image: {
  56247. source: "./media/characters/brook/back-alt.svg",
  56248. extra: 1283/1213,
  56249. bottom: 35/1318
  56250. }
  56251. },
  56252. bust: {
  56253. height: math.unit(9.0859030837, "feet"),
  56254. weight: math.unit(3000, "lb"),
  56255. preyCapacity: math.unit(10, "people"),
  56256. name: "Bust",
  56257. image: {
  56258. source: "./media/characters/brook/bust.svg",
  56259. extra: 2043/1923,
  56260. bottom: 0/2043
  56261. }
  56262. },
  56263. },
  56264. [
  56265. {
  56266. name: "Small",
  56267. height: math.unit(11, "feet"),
  56268. default: true
  56269. },
  56270. {
  56271. name: "Towering",
  56272. height: math.unit(5, "km")
  56273. },
  56274. {
  56275. name: "Enormous",
  56276. height: math.unit(25, "earths")
  56277. },
  56278. ]
  56279. ))
  56280. characterMakers.push(() => makeCharacter(
  56281. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56282. {
  56283. front: {
  56284. height: math.unit(4, "feet"),
  56285. weight: math.unit(150, "lb"),
  56286. name: "Front",
  56287. image: {
  56288. source: "./media/characters/squishi/front.svg",
  56289. extra: 1428/1271,
  56290. bottom: 30/1458
  56291. },
  56292. extraAttributes: {
  56293. "pawSize": {
  56294. name: "Paw Size",
  56295. power: 1,
  56296. type: "length",
  56297. base: math.unit(14, "ShoeSizeMensUS"),
  56298. defaultUnit: "ShoeSizeMensUS"
  56299. },
  56300. }
  56301. },
  56302. side: {
  56303. height: math.unit(4, "feet"),
  56304. weight: math.unit(150, "lb"),
  56305. name: "Side",
  56306. image: {
  56307. source: "./media/characters/squishi/side.svg",
  56308. extra: 1428/1271,
  56309. bottom: 30/1458
  56310. },
  56311. extraAttributes: {
  56312. "pawSize": {
  56313. name: "Paw Size",
  56314. power: 1,
  56315. type: "length",
  56316. base: math.unit(14, "ShoeSizeMensUS"),
  56317. defaultUnit: "ShoeSizeMensUS"
  56318. },
  56319. }
  56320. },
  56321. back: {
  56322. height: math.unit(4, "feet"),
  56323. weight: math.unit(150, "lb"),
  56324. name: "Back",
  56325. image: {
  56326. source: "./media/characters/squishi/back.svg",
  56327. extra: 1428/1271,
  56328. bottom: 30/1458
  56329. },
  56330. extraAttributes: {
  56331. "pawSize": {
  56332. name: "Paw Size",
  56333. power: 1,
  56334. type: "length",
  56335. base: math.unit(14, "ShoeSizeMensUS"),
  56336. defaultUnit: "ShoeSizeMensUS"
  56337. },
  56338. }
  56339. },
  56340. },
  56341. [
  56342. {
  56343. name: "Normal",
  56344. height: math.unit(4, "feet"),
  56345. default: true
  56346. },
  56347. ]
  56348. ))
  56349. characterMakers.push(() => makeCharacter(
  56350. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56351. {
  56352. front: {
  56353. height: math.unit(7 + 8/12, "feet"),
  56354. weight: math.unit(333, "lb"),
  56355. name: "Front",
  56356. image: {
  56357. source: "./media/characters/vincent-vasroc/front.svg",
  56358. extra: 1962/1860,
  56359. bottom: 41/2003
  56360. }
  56361. },
  56362. back: {
  56363. height: math.unit(7 + 8/12, "feet"),
  56364. weight: math.unit(333, "lb"),
  56365. name: "Back",
  56366. image: {
  56367. source: "./media/characters/vincent-vasroc/back.svg",
  56368. extra: 1952/1815,
  56369. bottom: 33/1985
  56370. }
  56371. },
  56372. paw: {
  56373. height: math.unit(1.24, "feet"),
  56374. name: "Paw",
  56375. image: {
  56376. source: "./media/characters/vincent-vasroc/paw.svg"
  56377. }
  56378. },
  56379. ear: {
  56380. height: math.unit(0.75, "feet"),
  56381. name: "Ear",
  56382. image: {
  56383. source: "./media/characters/vincent-vasroc/ear.svg"
  56384. }
  56385. },
  56386. },
  56387. [
  56388. {
  56389. name: "Nano",
  56390. height: math.unit(92, "micrometers")
  56391. },
  56392. {
  56393. name: "Normal",
  56394. height: math.unit(7 + 8/12, "feet"),
  56395. default: true
  56396. },
  56397. ]
  56398. ))
  56399. characterMakers.push(() => makeCharacter(
  56400. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56401. {
  56402. frontNsfw: {
  56403. height: math.unit(40, "feet"),
  56404. weight: math.unit(58, "tons"),
  56405. name: "Front (NSFW)",
  56406. image: {
  56407. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56408. extra: 1265/965,
  56409. bottom: 155/1420
  56410. }
  56411. },
  56412. frontSfw: {
  56413. height: math.unit(40, "feet"),
  56414. weight: math.unit(58, "tons"),
  56415. name: "Front (SFW)",
  56416. image: {
  56417. source: "./media/characters/ru-kahn/front-sfw.svg",
  56418. extra: 1265/965,
  56419. bottom: 80/1345
  56420. }
  56421. },
  56422. },
  56423. [
  56424. {
  56425. name: "Small",
  56426. height: math.unit(4, "feet")
  56427. },
  56428. {
  56429. name: "Normal",
  56430. height: math.unit(40, "feet"),
  56431. default: true
  56432. },
  56433. {
  56434. name: "Macro",
  56435. height: math.unit(400, "feet")
  56436. },
  56437. ]
  56438. ))
  56439. characterMakers.push(() => makeCharacter(
  56440. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56441. {
  56442. frontNude: {
  56443. height: math.unit(6 + 5/12, "feet"),
  56444. name: "Front (Nude)",
  56445. image: {
  56446. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56447. extra: 1369/1366,
  56448. bottom: 68/1437
  56449. }
  56450. },
  56451. frontDressed: {
  56452. height: math.unit(6 + 5/12, "feet"),
  56453. name: "Front (Dressed)",
  56454. image: {
  56455. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56456. extra: 1369/1366,
  56457. bottom: 68/1437
  56458. }
  56459. },
  56460. },
  56461. [
  56462. {
  56463. name: "Normal",
  56464. height: math.unit(6 + 5/12, "feet"),
  56465. default: true
  56466. },
  56467. {
  56468. name: "Maximum",
  56469. height: math.unit(1930, "feet")
  56470. },
  56471. ]
  56472. ))
  56473. characterMakers.push(() => makeCharacter(
  56474. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56475. {
  56476. front: {
  56477. height: math.unit(5 + 6/12, "feet"),
  56478. name: "Front",
  56479. image: {
  56480. source: "./media/characters/kaja/front.svg",
  56481. extra: 1874/1514,
  56482. bottom: 117/1991
  56483. }
  56484. },
  56485. },
  56486. [
  56487. {
  56488. name: "Normal",
  56489. height: math.unit(5 + 6/12, "feet"),
  56490. default: true
  56491. },
  56492. ]
  56493. ))
  56494. characterMakers.push(() => makeCharacter(
  56495. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56496. {
  56497. front: {
  56498. height: math.unit(5 + 9/12, "feet"),
  56499. weight: math.unit(200, "lb"),
  56500. name: "Front",
  56501. image: {
  56502. source: "./media/characters/mark-smith/front.svg",
  56503. extra: 1004/943,
  56504. bottom: 58/1062
  56505. }
  56506. },
  56507. back: {
  56508. height: math.unit(5 + 9/12, "feet"),
  56509. weight: math.unit(200, "lb"),
  56510. name: "Back",
  56511. image: {
  56512. source: "./media/characters/mark-smith/back.svg",
  56513. extra: 1023/953,
  56514. bottom: 24/1047
  56515. }
  56516. },
  56517. head: {
  56518. height: math.unit(1.82, "feet"),
  56519. name: "Head",
  56520. image: {
  56521. source: "./media/characters/mark-smith/head.svg"
  56522. }
  56523. },
  56524. hand: {
  56525. height: math.unit(1.4, "feet"),
  56526. name: "Hand",
  56527. image: {
  56528. source: "./media/characters/mark-smith/hand.svg"
  56529. }
  56530. },
  56531. paw: {
  56532. height: math.unit(1.69, "feet"),
  56533. name: "Paw",
  56534. image: {
  56535. source: "./media/characters/mark-smith/paw.svg"
  56536. }
  56537. },
  56538. },
  56539. [
  56540. {
  56541. name: "Micro",
  56542. height: math.unit(0.25, "inches")
  56543. },
  56544. {
  56545. name: "Normal",
  56546. height: math.unit(5 + 9/12, "feet"),
  56547. default: true
  56548. },
  56549. {
  56550. name: "Macro",
  56551. height: math.unit(500, "feet")
  56552. },
  56553. ]
  56554. ))
  56555. characterMakers.push(() => makeCharacter(
  56556. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56557. {
  56558. frontNude: {
  56559. height: math.unit(6, "feet"),
  56560. name: "Front (Nude)",
  56561. image: {
  56562. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56563. extra: 1384/1321,
  56564. bottom: 57/1441
  56565. }
  56566. },
  56567. frontDressed: {
  56568. height: math.unit(6, "feet"),
  56569. name: "Front (Dressed)",
  56570. image: {
  56571. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56572. extra: 1384/1321,
  56573. bottom: 57/1441
  56574. }
  56575. },
  56576. },
  56577. [
  56578. {
  56579. name: "Normal",
  56580. height: math.unit(6, "feet"),
  56581. default: true
  56582. },
  56583. {
  56584. name: "Maximum",
  56585. height: math.unit(1776, "feet")
  56586. },
  56587. ]
  56588. ))
  56589. characterMakers.push(() => makeCharacter(
  56590. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56591. {
  56592. front: {
  56593. height: math.unit(2 + 4/12, "feet"),
  56594. weight: math.unit(350, "lb"),
  56595. name: "Front",
  56596. image: {
  56597. source: "./media/characters/devos/front.svg",
  56598. extra: 958/852,
  56599. bottom: 143/1101
  56600. }
  56601. },
  56602. },
  56603. [
  56604. {
  56605. name: "Base",
  56606. height: math.unit(2 + 4/12, "feet"),
  56607. default: true
  56608. },
  56609. ]
  56610. ))
  56611. characterMakers.push(() => makeCharacter(
  56612. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56613. {
  56614. front: {
  56615. height: math.unit(9 + 2/12, "feet"),
  56616. name: "Front",
  56617. image: {
  56618. source: "./media/characters/hiveheart/front.svg",
  56619. extra: 394/364,
  56620. bottom: 65/459
  56621. }
  56622. },
  56623. back: {
  56624. height: math.unit(9 + 2/12, "feet"),
  56625. name: "Back",
  56626. image: {
  56627. source: "./media/characters/hiveheart/back.svg",
  56628. extra: 374/357,
  56629. bottom: 63/437
  56630. }
  56631. },
  56632. },
  56633. [
  56634. {
  56635. name: "Base",
  56636. height: math.unit(9 + 2/12, "feet"),
  56637. default: true
  56638. },
  56639. ]
  56640. ))
  56641. characterMakers.push(() => makeCharacter(
  56642. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56643. {
  56644. front: {
  56645. height: math.unit(2.5, "inches"),
  56646. weight: math.unit(0.6, "oz"),
  56647. name: "Front",
  56648. image: {
  56649. source: "./media/characters/bryn/front.svg",
  56650. extra: 1480/1205,
  56651. bottom: 27/1507
  56652. }
  56653. },
  56654. back: {
  56655. height: math.unit(2.5, "inches"),
  56656. weight: math.unit(0.6, "oz"),
  56657. name: "Back",
  56658. image: {
  56659. source: "./media/characters/bryn/back.svg",
  56660. extra: 1475/1201,
  56661. bottom: 39/1514
  56662. }
  56663. },
  56664. foot: {
  56665. height: math.unit(0.4, "inches"),
  56666. name: "Foot",
  56667. image: {
  56668. source: "./media/characters/bryn/foot.svg"
  56669. }
  56670. },
  56671. },
  56672. [
  56673. {
  56674. name: "Normal",
  56675. height: math.unit(2.5, "inches"),
  56676. default: true
  56677. },
  56678. ]
  56679. ))
  56680. characterMakers.push(() => makeCharacter(
  56681. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56682. {
  56683. side: {
  56684. height: math.unit(7, "feet"),
  56685. weight: math.unit(657, "kg"),
  56686. name: "Side",
  56687. image: {
  56688. source: "./media/characters/delta/side.svg",
  56689. extra: 781/212,
  56690. bottom: 7/788
  56691. },
  56692. extraAttributes: {
  56693. "wingspan": {
  56694. name: "Wingspan",
  56695. power: 1,
  56696. type: "length",
  56697. base: math.unit(48, "feet")
  56698. },
  56699. "length": {
  56700. name: "Length",
  56701. power: 1,
  56702. type: "length",
  56703. base: math.unit(21, "feet")
  56704. },
  56705. "pawSize": {
  56706. name: "Paw Size",
  56707. power: 2,
  56708. type: "area",
  56709. base: math.unit(1.5*1.4, "feet^2")
  56710. },
  56711. }
  56712. },
  56713. },
  56714. [
  56715. {
  56716. name: "Normal",
  56717. height: math.unit(6, "feet"),
  56718. default: true
  56719. },
  56720. ]
  56721. ))
  56722. characterMakers.push(() => makeCharacter(
  56723. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56724. {
  56725. front: {
  56726. height: math.unit(6, "feet"),
  56727. name: "Front",
  56728. image: {
  56729. source: "./media/characters/pyrow/front.svg",
  56730. extra: 513/486,
  56731. bottom: 14/527
  56732. }
  56733. },
  56734. frontWing: {
  56735. height: math.unit(6, "feet"),
  56736. name: "Front (Wing)",
  56737. image: {
  56738. source: "./media/characters/pyrow/front-wing.svg",
  56739. extra: 539/383,
  56740. bottom: 20/559
  56741. }
  56742. },
  56743. back: {
  56744. height: math.unit(6, "feet"),
  56745. name: "Back",
  56746. image: {
  56747. source: "./media/characters/pyrow/back.svg",
  56748. extra: 500/473,
  56749. bottom: 9/509
  56750. }
  56751. },
  56752. },
  56753. [
  56754. {
  56755. name: "Normal",
  56756. height: math.unit(6, "feet"),
  56757. default: true
  56758. },
  56759. ]
  56760. ))
  56761. characterMakers.push(() => makeCharacter(
  56762. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56763. {
  56764. front: {
  56765. height: math.unit(5, "meters"),
  56766. weight: math.unit(3, "tonnes"),
  56767. name: "Front",
  56768. image: {
  56769. source: "./media/characters/velikan/front.svg",
  56770. extra: 867/744,
  56771. bottom: 71/938
  56772. },
  56773. extraAttributes: {
  56774. "shoeSize": {
  56775. name: "Shoe Size",
  56776. power: 1,
  56777. type: "length",
  56778. base: math.unit(135, "ShoeSizeUK"),
  56779. defaultUnit: "ShoeSizeUK"
  56780. },
  56781. }
  56782. },
  56783. },
  56784. [
  56785. {
  56786. name: "Normal",
  56787. height: math.unit(5, "meters"),
  56788. default: true
  56789. },
  56790. {
  56791. name: "Macro",
  56792. height: math.unit(1, "km")
  56793. },
  56794. {
  56795. name: "Mega Macro",
  56796. height: math.unit(100, "km")
  56797. },
  56798. {
  56799. name: "Giga Macro",
  56800. height: math.unit(2, "megameters")
  56801. },
  56802. {
  56803. name: "Planetary",
  56804. height: math.unit(22, "megameters")
  56805. },
  56806. {
  56807. name: "Solar",
  56808. height: math.unit(8, "gigameters")
  56809. },
  56810. {
  56811. name: "Cosmic",
  56812. height: math.unit(10, "zettameters")
  56813. },
  56814. {
  56815. name: "Omni",
  56816. height: math.unit(9e260, "multiverses")
  56817. },
  56818. ]
  56819. ))
  56820. characterMakers.push(() => makeCharacter(
  56821. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56822. {
  56823. front: {
  56824. height: math.unit(4 + 3/12, "feet"),
  56825. weight: math.unit(90, "lb"),
  56826. name: "Front",
  56827. image: {
  56828. source: "./media/characters/sabiki/front.svg",
  56829. extra: 1662/1423,
  56830. bottom: 65/1727
  56831. }
  56832. },
  56833. },
  56834. [
  56835. {
  56836. name: "Normal",
  56837. height: math.unit(4 + 3/12, "feet"),
  56838. default: true
  56839. },
  56840. ]
  56841. ))
  56842. characterMakers.push(() => makeCharacter(
  56843. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56844. {
  56845. frontSfw: {
  56846. height: math.unit(2, "mm"),
  56847. name: "Front (SFW)",
  56848. image: {
  56849. source: "./media/characters/carmel/front-sfw.svg",
  56850. extra: 1131/1006,
  56851. bottom: 66/1197
  56852. }
  56853. },
  56854. frontNsfw: {
  56855. height: math.unit(2, "mm"),
  56856. name: "Front (NSFW)",
  56857. image: {
  56858. source: "./media/characters/carmel/front-nsfw.svg",
  56859. extra: 1131/1006,
  56860. bottom: 66/1197
  56861. }
  56862. },
  56863. foot: {
  56864. height: math.unit(0.3, "mm"),
  56865. name: "Foot",
  56866. image: {
  56867. source: "./media/characters/carmel/foot.svg"
  56868. }
  56869. },
  56870. tongue: {
  56871. height: math.unit(0.71, "mm"),
  56872. name: "Tongue",
  56873. image: {
  56874. source: "./media/characters/carmel/tongue.svg"
  56875. }
  56876. },
  56877. dick: {
  56878. height: math.unit(0.085, "mm"),
  56879. name: "Dick",
  56880. image: {
  56881. source: "./media/characters/carmel/dick.svg"
  56882. }
  56883. },
  56884. },
  56885. [
  56886. {
  56887. name: "Micro",
  56888. height: math.unit(2, "mm"),
  56889. default: true
  56890. },
  56891. {
  56892. name: "Normal",
  56893. height: math.unit(4 + 8/12, "feet")
  56894. },
  56895. {
  56896. name: "Mega Macro",
  56897. height: math.unit(250, "feet")
  56898. },
  56899. {
  56900. name: "BIGGER",
  56901. height: math.unit(1000, "feet")
  56902. },
  56903. {
  56904. name: "BIGGEST",
  56905. height: math.unit(2, "miles")
  56906. },
  56907. ]
  56908. ))
  56909. characterMakers.push(() => makeCharacter(
  56910. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56911. {
  56912. front: {
  56913. height: math.unit(6.5, "feet"),
  56914. weight: math.unit(198, "lb"),
  56915. name: "Front",
  56916. image: {
  56917. source: "./media/characters/tamani/anthro.svg",
  56918. extra: 930/890,
  56919. bottom: 34/964
  56920. },
  56921. form: "anthro",
  56922. default: true
  56923. },
  56924. side: {
  56925. height: math.unit(6, "feet"),
  56926. weight: math.unit(198*2, "lb"),
  56927. name: "Side",
  56928. image: {
  56929. source: "./media/characters/tamani/feral.svg",
  56930. extra: 559/519,
  56931. bottom: 43/602
  56932. },
  56933. form: "feral"
  56934. },
  56935. },
  56936. [
  56937. {
  56938. name: "Normal",
  56939. height: math.unit(6.5, "feet"),
  56940. default: true,
  56941. form: "anthro"
  56942. },
  56943. {
  56944. name: "Normal",
  56945. height: math.unit(6, "feet"),
  56946. default: true,
  56947. form: "feral"
  56948. },
  56949. ],
  56950. {
  56951. "anthro": {
  56952. name: "Anthro",
  56953. default: true
  56954. },
  56955. "feral": {
  56956. name: "Feral",
  56957. },
  56958. }
  56959. ))
  56960. characterMakers.push(() => makeCharacter(
  56961. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56962. {
  56963. front: {
  56964. height: math.unit(4 + 1/12, "feet"),
  56965. weight: math.unit(114, "lb"),
  56966. name: "Front",
  56967. image: {
  56968. source: "./media/characters/dex/front.svg",
  56969. extra: 787/680,
  56970. bottom: 18/805
  56971. }
  56972. },
  56973. side: {
  56974. height: math.unit(4 + 1/12, "feet"),
  56975. weight: math.unit(114, "lb"),
  56976. name: "Side",
  56977. image: {
  56978. source: "./media/characters/dex/side.svg",
  56979. extra: 785/680,
  56980. bottom: 12/797
  56981. }
  56982. },
  56983. back: {
  56984. height: math.unit(4 + 1/12, "feet"),
  56985. weight: math.unit(114, "lb"),
  56986. name: "Back",
  56987. image: {
  56988. source: "./media/characters/dex/back.svg",
  56989. extra: 785/681,
  56990. bottom: 17/802
  56991. }
  56992. },
  56993. loungewear: {
  56994. height: math.unit(4 + 1/12, "feet"),
  56995. weight: math.unit(114, "lb"),
  56996. name: "Loungewear",
  56997. image: {
  56998. source: "./media/characters/dex/loungewear.svg",
  56999. extra: 787/680,
  57000. bottom: 18/805
  57001. }
  57002. },
  57003. workout: {
  57004. height: math.unit(4 + 1/12, "feet"),
  57005. weight: math.unit(114, "lb"),
  57006. name: "Workout",
  57007. image: {
  57008. source: "./media/characters/dex/workout.svg",
  57009. extra: 787/680,
  57010. bottom: 18/805
  57011. }
  57012. },
  57013. schoolUniform: {
  57014. height: math.unit(4 + 1/12, "feet"),
  57015. weight: math.unit(114, "lb"),
  57016. name: "School-uniform",
  57017. image: {
  57018. source: "./media/characters/dex/school-uniform.svg",
  57019. extra: 787/680,
  57020. bottom: 18/805
  57021. }
  57022. },
  57023. maw: {
  57024. height: math.unit(0.55, "feet"),
  57025. name: "Maw",
  57026. image: {
  57027. source: "./media/characters/dex/maw.svg"
  57028. }
  57029. },
  57030. paw: {
  57031. height: math.unit(0.87, "feet"),
  57032. name: "Paw",
  57033. image: {
  57034. source: "./media/characters/dex/paw.svg"
  57035. }
  57036. },
  57037. bust: {
  57038. height: math.unit(1.67, "feet"),
  57039. name: "Bust",
  57040. image: {
  57041. source: "./media/characters/dex/bust.svg"
  57042. }
  57043. },
  57044. },
  57045. [
  57046. {
  57047. name: "Normal",
  57048. height: math.unit(4 + 1/12, "feet"),
  57049. default: true
  57050. },
  57051. ]
  57052. ))
  57053. characterMakers.push(() => makeCharacter(
  57054. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57055. {
  57056. front: {
  57057. height: math.unit(4 + 3/12, "feet"),
  57058. weight: math.unit(60, "lb"),
  57059. name: "Front",
  57060. image: {
  57061. source: "./media/characters/silke/front.svg",
  57062. extra: 1334/1122,
  57063. bottom: 21/1355
  57064. }
  57065. },
  57066. back: {
  57067. height: math.unit(4 + 3/12, "feet"),
  57068. weight: math.unit(60, "lb"),
  57069. name: "Back",
  57070. image: {
  57071. source: "./media/characters/silke/back.svg",
  57072. extra: 1328/1092,
  57073. bottom: 16/1344
  57074. }
  57075. },
  57076. dressed: {
  57077. height: math.unit(4 + 3/12, "feet"),
  57078. weight: math.unit(60, "lb"),
  57079. name: "Dressed",
  57080. image: {
  57081. source: "./media/characters/silke/dressed.svg",
  57082. extra: 1334/1122,
  57083. bottom: 43/1377
  57084. }
  57085. },
  57086. },
  57087. [
  57088. {
  57089. name: "Normal",
  57090. height: math.unit(4 + 3/12, "feet"),
  57091. default: true
  57092. },
  57093. ]
  57094. ))
  57095. characterMakers.push(() => makeCharacter(
  57096. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57097. {
  57098. front: {
  57099. height: math.unit(1.58, "meters"),
  57100. weight: math.unit(47, "kg"),
  57101. name: "Front",
  57102. image: {
  57103. source: "./media/characters/wireshark/front.svg",
  57104. extra: 883/838,
  57105. bottom: 66/949
  57106. }
  57107. },
  57108. },
  57109. [
  57110. {
  57111. name: "Normal",
  57112. height: math.unit(1.58, "meters"),
  57113. default: true
  57114. },
  57115. ]
  57116. ))
  57117. characterMakers.push(() => makeCharacter(
  57118. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57119. {
  57120. front: {
  57121. height: math.unit(6, "meters"),
  57122. weight: math.unit(15000, "kg"),
  57123. name: "Front",
  57124. image: {
  57125. source: "./media/characters/gallagher/front.svg",
  57126. extra: 532/493,
  57127. bottom: 0/532
  57128. }
  57129. },
  57130. },
  57131. [
  57132. {
  57133. name: "Normal",
  57134. height: math.unit(6, "meters"),
  57135. default: true
  57136. },
  57137. ]
  57138. ))
  57139. characterMakers.push(() => makeCharacter(
  57140. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57141. {
  57142. front: {
  57143. height: math.unit(2.4, "meters"),
  57144. weight: math.unit(270, "kg"),
  57145. name: "Front",
  57146. image: {
  57147. source: "./media/characters/alice/front.svg",
  57148. extra: 950/900,
  57149. bottom: 36/986
  57150. }
  57151. },
  57152. side: {
  57153. height: math.unit(2.4, "meters"),
  57154. weight: math.unit(270, "kg"),
  57155. name: "Side",
  57156. image: {
  57157. source: "./media/characters/alice/side.svg",
  57158. extra: 921/876,
  57159. bottom: 19/940
  57160. }
  57161. },
  57162. dressed: {
  57163. height: math.unit(2.4, "meters"),
  57164. weight: math.unit(270, "kg"),
  57165. name: "Dressed",
  57166. image: {
  57167. source: "./media/characters/alice/dressed.svg",
  57168. extra: 905/850,
  57169. bottom: 81/986
  57170. }
  57171. },
  57172. fishnet: {
  57173. height: math.unit(2.4, "meters"),
  57174. weight: math.unit(270, "kg"),
  57175. name: "Fishnet",
  57176. image: {
  57177. source: "./media/characters/alice/fishnet.svg",
  57178. extra: 905/850,
  57179. bottom: 81/986
  57180. }
  57181. },
  57182. },
  57183. [
  57184. {
  57185. name: "Normal",
  57186. height: math.unit(2.4, "meters"),
  57187. default: true
  57188. },
  57189. ]
  57190. ))
  57191. characterMakers.push(() => makeCharacter(
  57192. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57193. {
  57194. front: {
  57195. height: math.unit(175.25, "feet"),
  57196. name: "Front",
  57197. image: {
  57198. source: "./media/characters/fio/front.svg",
  57199. extra: 1883/1591,
  57200. bottom: 34/1917
  57201. }
  57202. },
  57203. },
  57204. [
  57205. {
  57206. name: "Normal",
  57207. height: math.unit(175.25, "cm"),
  57208. default: true
  57209. },
  57210. ]
  57211. ))
  57212. characterMakers.push(() => makeCharacter(
  57213. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57214. {
  57215. side: {
  57216. height: math.unit(6, "meters"),
  57217. weight: math.unit(3400, "kg"),
  57218. preyCapacity: math.unit(1700, "liters"),
  57219. name: "Side",
  57220. image: {
  57221. source: "./media/characters/hass/side.svg",
  57222. extra: 1058/997,
  57223. bottom: 177/1235
  57224. }
  57225. },
  57226. feeding: {
  57227. height: math.unit(6*0.63, "meters"),
  57228. weight: math.unit(3400, "kg"),
  57229. preyCapacity: math.unit(1700, "liters"),
  57230. name: "Feeding",
  57231. image: {
  57232. source: "./media/characters/hass/feeding.svg",
  57233. extra: 689/579,
  57234. bottom: 146/835
  57235. }
  57236. },
  57237. guts: {
  57238. height: math.unit(6, "meters"),
  57239. weight: math.unit(3400, "kg"),
  57240. name: "Guts",
  57241. image: {
  57242. source: "./media/characters/hass/guts.svg",
  57243. extra: 1223/1198,
  57244. bottom: 182/1405
  57245. }
  57246. },
  57247. dickFront: {
  57248. height: math.unit(1.4, "meters"),
  57249. name: "Dick (Front)",
  57250. image: {
  57251. source: "./media/characters/hass/dick-front.svg"
  57252. }
  57253. },
  57254. dickSide: {
  57255. height: math.unit(1.3, "meters"),
  57256. name: "Dick (Side)",
  57257. image: {
  57258. source: "./media/characters/hass/dick-side.svg"
  57259. }
  57260. },
  57261. dickBack: {
  57262. height: math.unit(1.4, "meters"),
  57263. name: "Dick (Back)",
  57264. image: {
  57265. source: "./media/characters/hass/dick-back.svg"
  57266. }
  57267. },
  57268. },
  57269. [
  57270. {
  57271. name: "Normal",
  57272. height: math.unit(6, "meters"),
  57273. default: true
  57274. },
  57275. ]
  57276. ))
  57277. characterMakers.push(() => makeCharacter(
  57278. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57279. {
  57280. front: {
  57281. height: math.unit(4, "feet"),
  57282. weight: math.unit(60, "lb"),
  57283. name: "Front",
  57284. image: {
  57285. source: "./media/characters/hickory-finnegan/front.svg",
  57286. extra: 444/411,
  57287. bottom: 10/454
  57288. }
  57289. },
  57290. side: {
  57291. height: math.unit(4, "feet"),
  57292. weight: math.unit(60, "lb"),
  57293. name: "Side",
  57294. image: {
  57295. source: "./media/characters/hickory-finnegan/side.svg",
  57296. extra: 444/411,
  57297. bottom: 10/454
  57298. }
  57299. },
  57300. back: {
  57301. height: math.unit(4, "feet"),
  57302. weight: math.unit(60, "lb"),
  57303. name: "Back",
  57304. image: {
  57305. source: "./media/characters/hickory-finnegan/back.svg",
  57306. extra: 444/411,
  57307. bottom: 10/454
  57308. }
  57309. },
  57310. },
  57311. [
  57312. {
  57313. name: "Normal",
  57314. height: math.unit(4, "feet"),
  57315. default: true
  57316. },
  57317. ]
  57318. ))
  57319. characterMakers.push(() => makeCharacter(
  57320. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57321. {
  57322. snivy_front: {
  57323. height: math.unit(2, "feet"),
  57324. weight: math.unit(17.9, "lb"),
  57325. name: "Front",
  57326. image: {
  57327. source: "./media/characters/robin-phox/snivy-front.svg",
  57328. extra: 569/504,
  57329. bottom: 33/602
  57330. },
  57331. form: "snivy",
  57332. default: true
  57333. },
  57334. snivy_frontNsfw: {
  57335. height: math.unit(2, "feet"),
  57336. weight: math.unit(17.9, "lb"),
  57337. name: "Front (NSFW)",
  57338. image: {
  57339. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57340. extra: 569/504,
  57341. bottom: 33/602
  57342. },
  57343. form: "snivy",
  57344. },
  57345. snivy_back: {
  57346. height: math.unit(2, "feet"),
  57347. weight: math.unit(17.9, "lb"),
  57348. name: "Back",
  57349. image: {
  57350. source: "./media/characters/robin-phox/snivy-back.svg",
  57351. extra: 577/508,
  57352. bottom: 21/598
  57353. },
  57354. form: "snivy",
  57355. },
  57356. snivy_foot: {
  57357. height: math.unit(0.68, "feet"),
  57358. name: "Foot",
  57359. image: {
  57360. source: "./media/characters/robin-phox/snivy-foot.svg"
  57361. },
  57362. form: "snivy",
  57363. },
  57364. snivy_sole: {
  57365. height: math.unit(0.68, "feet"),
  57366. name: "Sole",
  57367. image: {
  57368. source: "./media/characters/robin-phox/snivy-sole.svg"
  57369. },
  57370. form: "snivy",
  57371. },
  57372. yoshi_front: {
  57373. height: math.unit(6, "feet"),
  57374. weight: math.unit(150, "lb"),
  57375. name: "Front",
  57376. image: {
  57377. source: "./media/characters/robin-phox/yoshi-front.svg",
  57378. extra: 890/792,
  57379. bottom: 29/919
  57380. },
  57381. form: "yoshi",
  57382. default: true
  57383. },
  57384. yoshi_frontNsfw: {
  57385. height: math.unit(6, "feet"),
  57386. weight: math.unit(150, "lb"),
  57387. name: "Front (NSFW)",
  57388. image: {
  57389. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57390. extra: 890/792,
  57391. bottom: 29/919
  57392. },
  57393. form: "yoshi",
  57394. },
  57395. yoshi_back: {
  57396. height: math.unit(6, "feet"),
  57397. weight: math.unit(150, "lb"),
  57398. name: "Back",
  57399. image: {
  57400. source: "./media/characters/robin-phox/yoshi-back.svg",
  57401. extra: 890/792,
  57402. bottom: 29/919
  57403. },
  57404. form: "yoshi",
  57405. },
  57406. yoshi_foot: {
  57407. height: math.unit(1.5, "feet"),
  57408. name: "Foot",
  57409. image: {
  57410. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57411. },
  57412. form: "yoshi",
  57413. },
  57414. delphox_front: {
  57415. height: math.unit(4 + 11/12, "feet"),
  57416. weight: math.unit(86, "lb"),
  57417. name: "Front",
  57418. image: {
  57419. source: "./media/characters/robin-phox/delphox-front.svg",
  57420. extra: 1266/1069,
  57421. bottom: 32/1298
  57422. },
  57423. form: "delphox",
  57424. default: true
  57425. },
  57426. delphox_frontNsfw: {
  57427. height: math.unit(4 + 11/12, "feet"),
  57428. weight: math.unit(86, "lb"),
  57429. name: "Front (NSFW)",
  57430. image: {
  57431. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57432. extra: 1266/1069,
  57433. bottom: 32/1298
  57434. },
  57435. form: "delphox",
  57436. },
  57437. delphox_back: {
  57438. height: math.unit(4 + 11/12, "feet"),
  57439. weight: math.unit(86, "lb"),
  57440. name: "Back",
  57441. image: {
  57442. source: "./media/characters/robin-phox/delphox-back.svg",
  57443. extra: 1269/1083,
  57444. bottom: 15/1284
  57445. },
  57446. form: "delphox",
  57447. },
  57448. mienshao_front: {
  57449. height: math.unit(4 + 7/12, "feet"),
  57450. weight: math.unit(78.3, "lb"),
  57451. name: "Front",
  57452. image: {
  57453. source: "./media/characters/robin-phox/mienshao-front.svg",
  57454. extra: 1052/970,
  57455. bottom: 108/1160
  57456. },
  57457. form: "mienshao",
  57458. default: true
  57459. },
  57460. mienshao_frontNsfw: {
  57461. height: math.unit(4 + 7/12, "feet"),
  57462. weight: math.unit(78.3, "lb"),
  57463. name: "Front (NSFW)",
  57464. image: {
  57465. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57466. extra: 1052/970,
  57467. bottom: 108/1160
  57468. },
  57469. form: "mienshao",
  57470. },
  57471. mienshao_back: {
  57472. height: math.unit(4 + 7/12, "feet"),
  57473. weight: math.unit(78.3, "lb"),
  57474. name: "Back",
  57475. image: {
  57476. source: "./media/characters/robin-phox/mienshao-back.svg",
  57477. extra: 1102/982,
  57478. bottom: 32/1134
  57479. },
  57480. form: "mienshao",
  57481. },
  57482. inteleon_front: {
  57483. height: math.unit(6 + 3/12, "feet"),
  57484. weight: math.unit(99.6, "lb"),
  57485. name: "Front",
  57486. image: {
  57487. source: "./media/characters/robin-phox/inteleon-front.svg",
  57488. extra: 910/799,
  57489. bottom: 76/986
  57490. },
  57491. form: "inteleon",
  57492. default: true
  57493. },
  57494. inteleon_frontNsfw: {
  57495. height: math.unit(6 + 3/12, "feet"),
  57496. weight: math.unit(99.6, "lb"),
  57497. name: "Front (NSFW)",
  57498. image: {
  57499. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57500. extra: 910/799,
  57501. bottom: 76/986
  57502. },
  57503. form: "inteleon",
  57504. },
  57505. inteleon_back: {
  57506. height: math.unit(6 + 3/12, "feet"),
  57507. weight: math.unit(99.6, "lb"),
  57508. name: "Back",
  57509. image: {
  57510. source: "./media/characters/robin-phox/inteleon-back.svg",
  57511. extra: 907/796,
  57512. bottom: 25/932
  57513. },
  57514. form: "inteleon",
  57515. },
  57516. reshiram_front: {
  57517. height: math.unit(10 + 6/12, "feet"),
  57518. weight: math.unit(727.5, "lb"),
  57519. name: "Front",
  57520. image: {
  57521. source: "./media/characters/robin-phox/reshiram-front.svg",
  57522. extra: 1198/940,
  57523. bottom: 123/1321
  57524. },
  57525. form: "reshiram",
  57526. },
  57527. reshiram_frontNsfw: {
  57528. height: math.unit(10 + 6/12, "feet"),
  57529. weight: math.unit(727.5, "lb"),
  57530. name: "Front-nsfw",
  57531. image: {
  57532. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57533. extra: 1198/940,
  57534. bottom: 123/1321
  57535. },
  57536. form: "reshiram",
  57537. },
  57538. reshiram_back: {
  57539. height: math.unit(10 + 6/12, "feet"),
  57540. weight: math.unit(727.5, "lb"),
  57541. name: "Back",
  57542. image: {
  57543. source: "./media/characters/robin-phox/reshiram-back.svg",
  57544. extra: 1024/904,
  57545. bottom: 85/1109
  57546. },
  57547. form: "reshiram",
  57548. },
  57549. samurott_front: {
  57550. height: math.unit(8, "feet"),
  57551. weight: math.unit(208.6, "lb"),
  57552. name: "Front",
  57553. image: {
  57554. source: "./media/characters/robin-phox/samurott-front.svg",
  57555. extra: 1048/984,
  57556. bottom: 100/1148
  57557. },
  57558. form: "samurott",
  57559. },
  57560. samurott_frontNsfw: {
  57561. height: math.unit(8, "feet"),
  57562. weight: math.unit(208.6, "lb"),
  57563. name: "Front-nsfw",
  57564. image: {
  57565. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57566. extra: 1048/984,
  57567. bottom: 100/1148
  57568. },
  57569. form: "samurott",
  57570. },
  57571. samurott_back: {
  57572. height: math.unit(8, "feet"),
  57573. weight: math.unit(208.6, "lb"),
  57574. name: "Back",
  57575. image: {
  57576. source: "./media/characters/robin-phox/samurott-back.svg",
  57577. extra: 1110/1042,
  57578. bottom: 12/1122
  57579. },
  57580. form: "samurott",
  57581. },
  57582. samurott_feral: {
  57583. height: math.unit(4 + 11/12, "feet"),
  57584. weight: math.unit(208.6, "lb"),
  57585. name: "Feral",
  57586. image: {
  57587. source: "./media/characters/robin-phox/samurott-feral.svg",
  57588. extra: 766/681,
  57589. bottom: 108/874
  57590. },
  57591. form: "samurott",
  57592. },
  57593. },
  57594. [
  57595. {
  57596. name: "Normal",
  57597. height: math.unit(2, "feet"),
  57598. default: true,
  57599. form: "snivy"
  57600. },
  57601. {
  57602. name: "Normal",
  57603. height: math.unit(6, "feet"),
  57604. default: true,
  57605. form: "yoshi"
  57606. },
  57607. {
  57608. name: "Normal",
  57609. height: math.unit(4 + 11/12, "feet"),
  57610. default: true,
  57611. form: "delphox"
  57612. },
  57613. {
  57614. name: "Normal",
  57615. height: math.unit(4 + 7/12, "feet"),
  57616. default: true,
  57617. form: "mienshao"
  57618. },
  57619. {
  57620. name: "Normal",
  57621. height: math.unit(6 + 3/12, "feet"),
  57622. default: true,
  57623. form: "inteleon"
  57624. },
  57625. {
  57626. name: "Normal",
  57627. height: math.unit(10 + 6/12, "feet"),
  57628. default: true,
  57629. form: "reshiram"
  57630. },
  57631. {
  57632. name: "Normal",
  57633. height: math.unit(8, "feet"),
  57634. default: true,
  57635. form: "samurott"
  57636. },
  57637. {
  57638. name: "Macro",
  57639. height: math.unit(500, "feet"),
  57640. allForms: true
  57641. },
  57642. {
  57643. name: "Mega Macro",
  57644. height: math.unit(10, "earths"),
  57645. allForms: true
  57646. },
  57647. {
  57648. name: "Giga Macro",
  57649. height: math.unit(1, "galaxy"),
  57650. allForms: true
  57651. },
  57652. {
  57653. name: "Godly Macro",
  57654. height: math.unit(1e10, "multiverses"),
  57655. allForms: true
  57656. },
  57657. ],
  57658. {
  57659. "snivy": {
  57660. name: "Snivy",
  57661. default: true
  57662. },
  57663. "yoshi": {
  57664. name: "Yoshi",
  57665. },
  57666. "delphox": {
  57667. name: "Delphox",
  57668. },
  57669. "mienshao": {
  57670. name: "Mienshao",
  57671. },
  57672. "inteleon": {
  57673. name: "Inteleon",
  57674. },
  57675. "reshiram": {
  57676. name: "Reshiram",
  57677. },
  57678. "samurott": {
  57679. name: "Samurott",
  57680. },
  57681. }
  57682. ))
  57683. characterMakers.push(() => makeCharacter(
  57684. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57685. {
  57686. front: {
  57687. height: math.unit(4, "feet"),
  57688. name: "Front",
  57689. image: {
  57690. source: "./media/characters/ash-leung/front.svg",
  57691. extra: 1916/1792,
  57692. bottom: 50/1966
  57693. }
  57694. },
  57695. },
  57696. [
  57697. {
  57698. name: "Atomic",
  57699. height: math.unit(1, "angstrom")
  57700. },
  57701. {
  57702. name: "Microscopic",
  57703. height: math.unit(4000, "angstroms")
  57704. },
  57705. {
  57706. name: "Speck",
  57707. height: math.unit(1, "mm")
  57708. },
  57709. {
  57710. name: "Small",
  57711. height: math.unit(1, "inch")
  57712. },
  57713. {
  57714. name: "Normal",
  57715. height: math.unit(4, "feet"),
  57716. default: true
  57717. },
  57718. ]
  57719. ))
  57720. characterMakers.push(() => makeCharacter(
  57721. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57722. {
  57723. frontDressed: {
  57724. height: math.unit(2.08, "meters"),
  57725. weight: math.unit(175, "lb"),
  57726. name: "Front (Dressed)",
  57727. image: {
  57728. source: "./media/characters/carie/front-dressed.svg",
  57729. extra: 456/417,
  57730. bottom: 7/463
  57731. }
  57732. },
  57733. backDressed: {
  57734. height: math.unit(2.08, "meters"),
  57735. weight: math.unit(175, "lb"),
  57736. name: "Back (Dressed)",
  57737. image: {
  57738. source: "./media/characters/carie/back-dressed.svg",
  57739. extra: 455/414,
  57740. bottom: 11/466
  57741. }
  57742. },
  57743. front: {
  57744. height: math.unit(2, "meters"),
  57745. weight: math.unit(175, "lb"),
  57746. name: "Front",
  57747. image: {
  57748. source: "./media/characters/carie/front.svg",
  57749. extra: 438/399,
  57750. bottom: 12/450
  57751. }
  57752. },
  57753. back: {
  57754. height: math.unit(2, "meters"),
  57755. weight: math.unit(175, "lb"),
  57756. name: "Back",
  57757. image: {
  57758. source: "./media/characters/carie/back.svg",
  57759. extra: 438/397,
  57760. bottom: 7/445
  57761. }
  57762. },
  57763. },
  57764. [
  57765. {
  57766. name: "Normal",
  57767. height: math.unit(2.08, "meters"),
  57768. default: true
  57769. },
  57770. {
  57771. name: "Macro",
  57772. height: math.unit(2.08e3, "meters")
  57773. },
  57774. {
  57775. name: "Mega Macro",
  57776. height: math.unit(2.08e6, "meters")
  57777. },
  57778. {
  57779. name: "Giga Macro",
  57780. height: math.unit(2.08e9, "meters")
  57781. },
  57782. {
  57783. name: "Tera Macro",
  57784. height: math.unit(2.08e12, "meters")
  57785. },
  57786. {
  57787. name: "Peta Macro",
  57788. height: math.unit(2.08e15, "meters")
  57789. },
  57790. {
  57791. name: "Exa Macro",
  57792. height: math.unit(2.08e18, "meters")
  57793. },
  57794. {
  57795. name: "Zetta Macro",
  57796. height: math.unit(2.08e21, "meters")
  57797. },
  57798. {
  57799. name: "Yotta Macro",
  57800. height: math.unit(2.08e24, "meters")
  57801. },
  57802. ]
  57803. ))
  57804. characterMakers.push(() => makeCharacter(
  57805. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57806. {
  57807. front: {
  57808. height: math.unit(5 + 2/12, "feet"),
  57809. weight: math.unit(120, "lb"),
  57810. name: "Front",
  57811. image: {
  57812. source: "./media/characters/sai-bree/front.svg",
  57813. extra: 1843/1702,
  57814. bottom: 91/1934
  57815. }
  57816. },
  57817. back: {
  57818. height: math.unit(5 + 2/12, "feet"),
  57819. weight: math.unit(120, "lb"),
  57820. name: "Back",
  57821. image: {
  57822. source: "./media/characters/sai-bree/back.svg",
  57823. extra: 1809/1637,
  57824. bottom: 56/1865
  57825. }
  57826. },
  57827. },
  57828. [
  57829. {
  57830. name: "Normal",
  57831. height: math.unit(5 + 2/12, "feet"),
  57832. default: true
  57833. },
  57834. {
  57835. name: "Macro",
  57836. height: math.unit(500, "feet")
  57837. },
  57838. ]
  57839. ))
  57840. characterMakers.push(() => makeCharacter(
  57841. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57842. {
  57843. side: {
  57844. height: math.unit(0.77, "meters"),
  57845. weight: math.unit(120, "lb"),
  57846. name: "Side",
  57847. image: {
  57848. source: "./media/characters/davwyn/side.svg",
  57849. extra: 1557/1225,
  57850. bottom: 131/1688
  57851. }
  57852. },
  57853. front: {
  57854. height: math.unit(0.835410, "meters"),
  57855. weight: math.unit(120, "lb"),
  57856. name: "Front",
  57857. image: {
  57858. source: "./media/characters/davwyn/front.svg",
  57859. extra: 870/843,
  57860. bottom: 175/1045
  57861. }
  57862. },
  57863. },
  57864. [
  57865. {
  57866. name: "Minidrake",
  57867. height: math.unit(0.77/4, "meters")
  57868. },
  57869. {
  57870. name: "Normal",
  57871. height: math.unit(0.77, "meters"),
  57872. default: true
  57873. },
  57874. ]
  57875. ))
  57876. characterMakers.push(() => makeCharacter(
  57877. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57878. {
  57879. front: {
  57880. height: math.unit(10 + 3/12, "feet"),
  57881. weight: math.unit(2857, "lb"),
  57882. name: "Front",
  57883. image: {
  57884. source: "./media/characters/balans/front.svg",
  57885. extra: 427/402,
  57886. bottom: 26/453
  57887. }
  57888. },
  57889. side: {
  57890. height: math.unit(10 + 3/12, "feet"),
  57891. weight: math.unit(2857, "lb"),
  57892. name: "Side",
  57893. image: {
  57894. source: "./media/characters/balans/side.svg",
  57895. extra: 397/371,
  57896. bottom: 17/414
  57897. }
  57898. },
  57899. back: {
  57900. height: math.unit(10 + 3/12, "feet"),
  57901. weight: math.unit(2857, "lb"),
  57902. name: "Back",
  57903. image: {
  57904. source: "./media/characters/balans/back.svg",
  57905. extra: 408/381,
  57906. bottom: 14/422
  57907. }
  57908. },
  57909. hand: {
  57910. height: math.unit(1.15, "feet"),
  57911. name: "Hand",
  57912. image: {
  57913. source: "./media/characters/balans/hand.svg"
  57914. }
  57915. },
  57916. footRest: {
  57917. height: math.unit(3.1, "feet"),
  57918. name: "Foot (Rest)",
  57919. image: {
  57920. source: "./media/characters/balans/foot-rest.svg"
  57921. }
  57922. },
  57923. footActive: {
  57924. height: math.unit(3.5, "feet"),
  57925. name: "Foot (Active)",
  57926. image: {
  57927. source: "./media/characters/balans/foot-active.svg"
  57928. }
  57929. },
  57930. },
  57931. [
  57932. {
  57933. name: "Normal",
  57934. height: math.unit(10 + 3/12, "feet"),
  57935. default: true
  57936. },
  57937. ]
  57938. ))
  57939. characterMakers.push(() => makeCharacter(
  57940. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57941. {
  57942. side: {
  57943. height: math.unit(9, "meters"),
  57944. weight: math.unit(114, "tonnes"),
  57945. name: "Side",
  57946. image: {
  57947. source: "./media/characters/eldkveikir/side.svg",
  57948. extra: 1927/338,
  57949. bottom: 42/1969
  57950. }
  57951. },
  57952. sitting: {
  57953. height: math.unit(13.4, "meters"),
  57954. weight: math.unit(114, "tonnes"),
  57955. name: "Sitting",
  57956. image: {
  57957. source: "./media/characters/eldkveikir/sitting.svg",
  57958. extra: 1108/963,
  57959. bottom: 610/1718
  57960. }
  57961. },
  57962. maw: {
  57963. height: math.unit(8.36, "meters"),
  57964. name: "Maw",
  57965. image: {
  57966. source: "./media/characters/eldkveikir/maw.svg"
  57967. }
  57968. },
  57969. hand: {
  57970. height: math.unit(4.84, "meters"),
  57971. name: "Hand",
  57972. image: {
  57973. source: "./media/characters/eldkveikir/hand.svg"
  57974. }
  57975. },
  57976. foot: {
  57977. height: math.unit(6.9, "meters"),
  57978. name: "Foot",
  57979. image: {
  57980. source: "./media/characters/eldkveikir/foot.svg"
  57981. }
  57982. },
  57983. genitals: {
  57984. height: math.unit(9.6, "meters"),
  57985. name: "Genitals",
  57986. image: {
  57987. source: "./media/characters/eldkveikir/genitals.svg"
  57988. }
  57989. },
  57990. },
  57991. [
  57992. {
  57993. name: "Normal",
  57994. height: math.unit(9, "meters"),
  57995. default: true
  57996. },
  57997. ]
  57998. ))
  57999. characterMakers.push(() => makeCharacter(
  58000. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58001. {
  58002. front: {
  58003. height: math.unit(14, "feet"),
  58004. weight: math.unit(4100, "lb"),
  58005. name: "Front",
  58006. image: {
  58007. source: "./media/characters/arrow/front.svg",
  58008. extra: 330/318,
  58009. bottom: 56/386
  58010. }
  58011. },
  58012. },
  58013. [
  58014. {
  58015. name: "Normal",
  58016. height: math.unit(14, "feet"),
  58017. default: true
  58018. },
  58019. {
  58020. name: "Minimacro",
  58021. height: math.unit(63, "feet")
  58022. },
  58023. {
  58024. name: "Macro",
  58025. height: math.unit(630, "feet")
  58026. },
  58027. {
  58028. name: "Megamacro",
  58029. height: math.unit(12600, "feet")
  58030. },
  58031. {
  58032. name: "Gigamacro",
  58033. height: math.unit(18000, "miles")
  58034. },
  58035. ]
  58036. ))
  58037. characterMakers.push(() => makeCharacter(
  58038. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58039. {
  58040. front: {
  58041. height: math.unit(10, "feet"),
  58042. weight: math.unit(2.4, "tons"),
  58043. name: "Front",
  58044. image: {
  58045. source: "./media/characters/3yk-k0-unit/front.svg",
  58046. extra: 573/561,
  58047. bottom: 33/606
  58048. }
  58049. },
  58050. back: {
  58051. height: math.unit(10, "feet"),
  58052. weight: math.unit(2.4, "tons"),
  58053. name: "Back",
  58054. image: {
  58055. source: "./media/characters/3yk-k0-unit/back.svg",
  58056. extra: 614/573,
  58057. bottom: 32/646
  58058. }
  58059. },
  58060. maw: {
  58061. height: math.unit(2.15, "feet"),
  58062. name: "Maw",
  58063. image: {
  58064. source: "./media/characters/3yk-k0-unit/maw.svg"
  58065. }
  58066. },
  58067. },
  58068. [
  58069. {
  58070. name: "Normal",
  58071. height: math.unit(10, "feet"),
  58072. default: true
  58073. },
  58074. ]
  58075. ))
  58076. characterMakers.push(() => makeCharacter(
  58077. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58078. {
  58079. front: {
  58080. height: math.unit(8 + 8/12, "feet"),
  58081. name: "Front",
  58082. image: {
  58083. source: "./media/characters/nemo/front.svg",
  58084. extra: 1308/1217,
  58085. bottom: 57/1365
  58086. }
  58087. },
  58088. },
  58089. [
  58090. {
  58091. name: "Normal",
  58092. height: math.unit(8 + 8/12, "feet"),
  58093. default: true
  58094. },
  58095. ]
  58096. ))
  58097. characterMakers.push(() => makeCharacter(
  58098. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58099. {
  58100. front: {
  58101. height: math.unit(8, "feet"),
  58102. weight: math.unit(760, "lb"),
  58103. name: "Front",
  58104. image: {
  58105. source: "./media/characters/rexx/front.svg",
  58106. extra: 786/750,
  58107. bottom: 17/803
  58108. },
  58109. extraAttributes: {
  58110. "pawLength": {
  58111. name: "Paw Length",
  58112. power: 1,
  58113. type: "length",
  58114. base: math.unit(27, "inches")
  58115. },
  58116. }
  58117. },
  58118. },
  58119. [
  58120. {
  58121. name: "Micro",
  58122. height: math.unit(2, "inches")
  58123. },
  58124. {
  58125. name: "Normal",
  58126. height: math.unit(8, "feet"),
  58127. default: true
  58128. },
  58129. {
  58130. name: "Macro",
  58131. height: math.unit(150, "feet")
  58132. },
  58133. ]
  58134. ))
  58135. characterMakers.push(() => makeCharacter(
  58136. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58137. {
  58138. front: {
  58139. height: math.unit(18, "feet"),
  58140. weight: math.unit(1975, "lb"),
  58141. name: "Front",
  58142. image: {
  58143. source: "./media/characters/draco/front.svg",
  58144. extra: 1325/1241,
  58145. bottom: 83/1408
  58146. }
  58147. },
  58148. back: {
  58149. height: math.unit(18, "feet"),
  58150. weight: math.unit(1975, "lb"),
  58151. name: "Back",
  58152. image: {
  58153. source: "./media/characters/draco/back.svg",
  58154. extra: 1332/1250,
  58155. bottom: 43/1375
  58156. }
  58157. },
  58158. dick: {
  58159. height: math.unit(7.5, "feet"),
  58160. name: "Dick",
  58161. image: {
  58162. source: "./media/characters/draco/dick.svg"
  58163. }
  58164. },
  58165. },
  58166. [
  58167. {
  58168. name: "Normal",
  58169. height: math.unit(18, "feet"),
  58170. default: true
  58171. },
  58172. ]
  58173. ))
  58174. characterMakers.push(() => makeCharacter(
  58175. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58176. {
  58177. front: {
  58178. height: math.unit(3.2, "meters"),
  58179. name: "Front",
  58180. image: {
  58181. source: "./media/characters/harriett/front.svg",
  58182. extra: 1966/1915,
  58183. bottom: 9/1975
  58184. }
  58185. },
  58186. },
  58187. [
  58188. {
  58189. name: "Normal",
  58190. height: math.unit(3.2, "meters"),
  58191. default: true
  58192. },
  58193. ]
  58194. ))
  58195. characterMakers.push(() => makeCharacter(
  58196. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58197. {
  58198. sitting: {
  58199. height: math.unit(0.8, "meter"),
  58200. name: "Sitting",
  58201. image: {
  58202. source: "./media/characters/serpentus/sitting.svg",
  58203. extra: 293/290,
  58204. bottom: 140/433
  58205. }
  58206. },
  58207. },
  58208. [
  58209. {
  58210. name: "Normal",
  58211. height: math.unit(0.8, "meter"),
  58212. default: true
  58213. },
  58214. ]
  58215. ))
  58216. characterMakers.push(() => makeCharacter(
  58217. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58218. {
  58219. front: {
  58220. height: math.unit(5.7174385736, "feet"),
  58221. name: "Front",
  58222. image: {
  58223. source: "./media/characters/nova-polecat/front.svg",
  58224. extra: 1317/1216,
  58225. bottom: 92/1409
  58226. }
  58227. },
  58228. },
  58229. [
  58230. {
  58231. name: "Normal",
  58232. height: math.unit(5.7174385736, "feet"),
  58233. default: true
  58234. },
  58235. ]
  58236. ))
  58237. characterMakers.push(() => makeCharacter(
  58238. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58239. {
  58240. front: {
  58241. height: math.unit(5 + 4/12, "feet"),
  58242. weight: math.unit(250, "lb"),
  58243. name: "Front",
  58244. image: {
  58245. source: "./media/characters/mook/front.svg",
  58246. extra: 1088/1037,
  58247. bottom: 132/1220
  58248. }
  58249. },
  58250. back: {
  58251. height: math.unit(5 + 1/12, "feet"),
  58252. weight: math.unit(250, "lb"),
  58253. name: "Back",
  58254. image: {
  58255. source: "./media/characters/mook/back.svg",
  58256. extra: 1184/905,
  58257. bottom: 96/1280
  58258. }
  58259. },
  58260. head: {
  58261. height: math.unit(1.85, "feet"),
  58262. name: "Head",
  58263. image: {
  58264. source: "./media/characters/mook/head.svg"
  58265. }
  58266. },
  58267. hand: {
  58268. height: math.unit(1.9, "feet"),
  58269. name: "Hand",
  58270. image: {
  58271. source: "./media/characters/mook/hand.svg"
  58272. }
  58273. },
  58274. palm: {
  58275. height: math.unit(1.84, "feet"),
  58276. name: "Palm",
  58277. image: {
  58278. source: "./media/characters/mook/palm.svg"
  58279. }
  58280. },
  58281. foot: {
  58282. height: math.unit(1.44, "feet"),
  58283. name: "Foot",
  58284. image: {
  58285. source: "./media/characters/mook/foot.svg"
  58286. }
  58287. },
  58288. sole: {
  58289. height: math.unit(1.44, "feet"),
  58290. name: "Sole",
  58291. image: {
  58292. source: "./media/characters/mook/sole.svg"
  58293. }
  58294. },
  58295. },
  58296. [
  58297. {
  58298. name: "Normal",
  58299. height: math.unit(5 + 4/12, "feet"),
  58300. default: true
  58301. },
  58302. {
  58303. name: "Big",
  58304. height: math.unit(12, "feet")
  58305. },
  58306. ]
  58307. ))
  58308. characterMakers.push(() => makeCharacter(
  58309. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58310. {
  58311. front: {
  58312. height: math.unit(6 + 10/12, "feet"),
  58313. weight: math.unit(233, "lb"),
  58314. name: "Front",
  58315. image: {
  58316. source: "./media/characters/kayla/front.svg",
  58317. extra: 1850/1775,
  58318. bottom: 65/1915
  58319. }
  58320. },
  58321. },
  58322. [
  58323. {
  58324. name: "Normal",
  58325. height: math.unit(6 + 10/12, "feet"),
  58326. default: true
  58327. },
  58328. {
  58329. name: "Amazonian",
  58330. height: math.unit(12 + 5/12, "feet")
  58331. },
  58332. {
  58333. name: "Mini Giantess",
  58334. height: math.unit(26, "feet")
  58335. },
  58336. {
  58337. name: "Giantess",
  58338. height: math.unit(200, "feet")
  58339. },
  58340. {
  58341. name: "Mega Giantess",
  58342. height: math.unit(2500, "feet")
  58343. },
  58344. {
  58345. name: "City Sized",
  58346. height: math.unit(50, "miles")
  58347. },
  58348. {
  58349. name: "Country Sized",
  58350. height: math.unit(500, "miles")
  58351. },
  58352. {
  58353. name: "Continent Sized",
  58354. height: math.unit(2500, "miles")
  58355. },
  58356. {
  58357. name: "Planet Sized",
  58358. height: math.unit(10000, "miles")
  58359. },
  58360. {
  58361. name: "Star Sized",
  58362. height: math.unit(5e6, "miles")
  58363. },
  58364. {
  58365. name: "Solar System Sized",
  58366. height: math.unit(125, "AU")
  58367. },
  58368. {
  58369. name: "Galaxy Sized",
  58370. height: math.unit(300e3, "lightyears")
  58371. },
  58372. {
  58373. name: "Universe Sized",
  58374. height: math.unit(200e9, "lightyears")
  58375. },
  58376. {
  58377. name: "Multiverse Sized",
  58378. height: math.unit(20, "exauniverses")
  58379. },
  58380. {
  58381. name: "Mother of Existence",
  58382. height: math.unit(1e6, "yottauniverses")
  58383. },
  58384. ]
  58385. ))
  58386. characterMakers.push(() => makeCharacter(
  58387. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58388. {
  58389. side: {
  58390. height: math.unit(9.5, "meters"),
  58391. name: "Side",
  58392. image: {
  58393. source: "./media/characters/kulve-ragnarok/side.svg",
  58394. extra: 364/326,
  58395. bottom: 50/414
  58396. }
  58397. },
  58398. },
  58399. [
  58400. {
  58401. name: "Normal",
  58402. height: math.unit(9.5, "meters"),
  58403. default: true
  58404. },
  58405. ]
  58406. ))
  58407. characterMakers.push(() => makeCharacter(
  58408. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58409. {
  58410. front: {
  58411. height: math.unit(8 + 9/12, "feet"),
  58412. name: "Front",
  58413. image: {
  58414. source: "./media/characters/atlas-goat/front.svg",
  58415. extra: 1462/1323,
  58416. bottom: 12/1474
  58417. }
  58418. },
  58419. },
  58420. [
  58421. {
  58422. name: "Normal",
  58423. height: math.unit(8 + 9/12, "feet"),
  58424. default: true
  58425. },
  58426. {
  58427. name: "Skyline",
  58428. height: math.unit(845, "feet")
  58429. },
  58430. {
  58431. name: "Orbital",
  58432. height: math.unit(93000, "miles")
  58433. },
  58434. {
  58435. name: "Constellation",
  58436. height: math.unit(27000, "lightyears")
  58437. },
  58438. ]
  58439. ))
  58440. characterMakers.push(() => makeCharacter(
  58441. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58442. {
  58443. side: {
  58444. height: math.unit(1.8, "meters"),
  58445. weight: math.unit(120, "kg"),
  58446. name: "Side",
  58447. image: {
  58448. source: "./media/characters/xie-ling/side.svg",
  58449. extra: 646/574,
  58450. bottom: 44/690
  58451. }
  58452. },
  58453. },
  58454. [
  58455. {
  58456. name: "Tiny",
  58457. height: math.unit(1.80, "meters")
  58458. },
  58459. {
  58460. name: "Small",
  58461. height: math.unit(6, "meters")
  58462. },
  58463. {
  58464. name: "Medium",
  58465. height: math.unit(15, "meters")
  58466. },
  58467. {
  58468. name: "Normal",
  58469. height: math.unit(30, "meters"),
  58470. default: true
  58471. },
  58472. {
  58473. name: "Above Normal",
  58474. height: math.unit(60, "meters")
  58475. },
  58476. {
  58477. name: "Big",
  58478. height: math.unit(220, "meters")
  58479. },
  58480. {
  58481. name: "Giant",
  58482. height: math.unit(2.2, "km")
  58483. },
  58484. {
  58485. name: "Macro",
  58486. height: math.unit(25, "km")
  58487. },
  58488. {
  58489. name: "Mega Macro",
  58490. height: math.unit(350, "km")
  58491. },
  58492. {
  58493. name: "Mega Macro+",
  58494. height: math.unit(5000, "km")
  58495. },
  58496. {
  58497. name: "Goddess",
  58498. height: math.unit(3, "multiverses")
  58499. },
  58500. ]
  58501. ))
  58502. characterMakers.push(() => makeCharacter(
  58503. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58504. {
  58505. frontSfw: {
  58506. height: math.unit(5 + 11/12, "feet"),
  58507. weight: math.unit(210, "lb"),
  58508. name: "Front",
  58509. image: {
  58510. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58511. extra: 1928/1821,
  58512. bottom: 45/1973
  58513. }
  58514. },
  58515. backSfw: {
  58516. height: math.unit(5 + 11/12, "feet"),
  58517. weight: math.unit(210, "lb"),
  58518. name: "Back",
  58519. image: {
  58520. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58521. extra: 1920/1813,
  58522. bottom: 34/1954
  58523. }
  58524. },
  58525. frontNsfw: {
  58526. height: math.unit(5 + 11/12, "feet"),
  58527. weight: math.unit(210, "lb"),
  58528. name: "Front (NSFW)",
  58529. image: {
  58530. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58531. extra: 1928/1821,
  58532. bottom: 45/1973
  58533. }
  58534. },
  58535. backNsfw: {
  58536. height: math.unit(5 + 11/12, "feet"),
  58537. weight: math.unit(210, "lb"),
  58538. name: "Back (NSFW)",
  58539. image: {
  58540. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58541. extra: 1920/1813,
  58542. bottom: 34/1954
  58543. }
  58544. },
  58545. },
  58546. [
  58547. {
  58548. name: "Normal",
  58549. height: math.unit(5 + 11/12, "feet"),
  58550. default: true
  58551. },
  58552. {
  58553. name: "Goddess",
  58554. height: math.unit(20 + 3/12, "feet")
  58555. },
  58556. {
  58557. name: "Breaker of Man",
  58558. height: math.unit(329 + 9/12, "feet")
  58559. },
  58560. {
  58561. name: "Solar Justice",
  58562. height: math.unit(0.6, "solarradii")
  58563. },
  58564. {
  58565. name: "She Who Judges",
  58566. height: math.unit(1, "universe")
  58567. },
  58568. ]
  58569. ))
  58570. characterMakers.push(() => makeCharacter(
  58571. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58572. {
  58573. casual_front: {
  58574. height: math.unit(6 + 1/12, "feet"),
  58575. weight: math.unit(190, "lb"),
  58576. preyCapacity: math.unit(1, "people"),
  58577. name: "Front",
  58578. image: {
  58579. source: "./media/characters/managarmr/casual-front.svg",
  58580. extra: 411/381,
  58581. bottom: 15/426
  58582. },
  58583. extraAttributes: {
  58584. "pawSize": {
  58585. name: "Paw Size",
  58586. power: 1,
  58587. type: "length",
  58588. base: math.unit(0.2, "meters")
  58589. },
  58590. },
  58591. form: "casual",
  58592. },
  58593. casual_back: {
  58594. height: math.unit(6 + 1/12, "feet"),
  58595. weight: math.unit(190, "lb"),
  58596. preyCapacity: math.unit(1, "people"),
  58597. name: "Back",
  58598. image: {
  58599. source: "./media/characters/managarmr/casual-back.svg",
  58600. extra: 413/383,
  58601. bottom: 13/426
  58602. },
  58603. extraAttributes: {
  58604. "pawSize": {
  58605. name: "Paw Size",
  58606. power: 1,
  58607. type: "length",
  58608. base: math.unit(0.2, "meters")
  58609. },
  58610. },
  58611. form: "casual",
  58612. },
  58613. base_front: {
  58614. height: math.unit(7, "feet"),
  58615. weight: math.unit(210, "lb"),
  58616. preyCapacity: math.unit(2, "people"),
  58617. name: "Front",
  58618. image: {
  58619. source: "./media/characters/managarmr/base-front.svg",
  58620. extra: 580/485,
  58621. bottom: 32/612
  58622. },
  58623. extraAttributes: {
  58624. "wingspan": {
  58625. name: "Wingspan",
  58626. power: 1,
  58627. type: "length",
  58628. base: math.unit(4, "meters")
  58629. },
  58630. "pawSize": {
  58631. name: "Paw Size",
  58632. power: 1,
  58633. type: "length",
  58634. base: math.unit(0.2, "meters")
  58635. },
  58636. },
  58637. form: "base",
  58638. },
  58639. "true-divine_front": {
  58640. height: math.unit(40, "feet"),
  58641. weight: math.unit(39000, "lb"),
  58642. preyCapacity: math.unit(375, "people"),
  58643. name: "Front",
  58644. image: {
  58645. source: "./media/characters/managarmr/true-divine-front.svg",
  58646. extra: 725/573,
  58647. bottom: 120/845
  58648. },
  58649. extraAttributes: {
  58650. "wingspan": {
  58651. name: "Wingspan",
  58652. power: 1,
  58653. type: "length",
  58654. base: math.unit(20, "meters")
  58655. },
  58656. "pawSize": {
  58657. name: "Paw Size",
  58658. power: 1,
  58659. type: "length",
  58660. base: math.unit(1.5, "meters")
  58661. },
  58662. },
  58663. form: "true-divine",
  58664. },
  58665. },
  58666. [
  58667. {
  58668. name: "Normal",
  58669. height: math.unit(6 + 1/12, "feet"),
  58670. form: "casual",
  58671. default: true
  58672. },
  58673. {
  58674. name: "Normal",
  58675. height: math.unit(7, "feet"),
  58676. form: "base",
  58677. default: true
  58678. },
  58679. ],
  58680. {
  58681. "casual": {
  58682. name: "Casual",
  58683. default: true
  58684. },
  58685. "base": {
  58686. name: "Base",
  58687. },
  58688. "true-divine": {
  58689. name: "True Divine",
  58690. },
  58691. }
  58692. ))
  58693. characterMakers.push(() => makeCharacter(
  58694. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58695. {
  58696. front: {
  58697. height: math.unit(1.8, "meters"),
  58698. weight: math.unit(110, "kg"),
  58699. name: "Front",
  58700. image: {
  58701. source: "./media/characters/mystra/front.svg",
  58702. extra: 529/442,
  58703. bottom: 31/560
  58704. }
  58705. },
  58706. frontLewd: {
  58707. height: math.unit(1.8, "meters"),
  58708. weight: math.unit(110, "kg"),
  58709. name: "Front (Lewd)",
  58710. image: {
  58711. source: "./media/characters/mystra/front-lewd.svg",
  58712. extra: 529/442,
  58713. bottom: 31/560
  58714. }
  58715. },
  58716. head: {
  58717. height: math.unit(1.63, "feet"),
  58718. name: "Head",
  58719. image: {
  58720. source: "./media/characters/mystra/head.svg"
  58721. }
  58722. },
  58723. paw: {
  58724. height: math.unit(1.9, "feet"),
  58725. name: "Paw",
  58726. image: {
  58727. source: "./media/characters/mystra/paw.svg"
  58728. }
  58729. },
  58730. },
  58731. [
  58732. {
  58733. name: "Incognito",
  58734. height: math.unit(2.3, "meters")
  58735. },
  58736. {
  58737. name: "Small Macro",
  58738. height: math.unit(300, "meters")
  58739. },
  58740. {
  58741. name: "Small Mega",
  58742. height: math.unit(2, "km")
  58743. },
  58744. {
  58745. name: "Mega",
  58746. height: math.unit(30, "km")
  58747. },
  58748. {
  58749. name: "Small Giga",
  58750. height: math.unit(100, "km")
  58751. },
  58752. {
  58753. name: "Giga",
  58754. height: math.unit(1000, "km"),
  58755. default: true
  58756. },
  58757. {
  58758. name: "Continental",
  58759. height: math.unit(5000, "km")
  58760. },
  58761. {
  58762. name: "Terra",
  58763. height: math.unit(20000, "km")
  58764. },
  58765. {
  58766. name: "Solar",
  58767. height: math.unit(2e6, "km")
  58768. },
  58769. {
  58770. name: "Galactic",
  58771. height: math.unit(528502, "lightyears")
  58772. },
  58773. {
  58774. name: "Universal",
  58775. height: math.unit(20, "universes")
  58776. },
  58777. ]
  58778. ))
  58779. characterMakers.push(() => makeCharacter(
  58780. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58781. {
  58782. front: {
  58783. height: math.unit(2, "meters"),
  58784. weight: math.unit(140, "kg"),
  58785. name: "Front",
  58786. image: {
  58787. source: "./media/characters/caleb/front.svg",
  58788. extra: 873/817,
  58789. bottom: 47/920
  58790. }
  58791. },
  58792. back: {
  58793. height: math.unit(2, "meters"),
  58794. weight: math.unit(140, "kg"),
  58795. name: "Back",
  58796. image: {
  58797. source: "./media/characters/caleb/back.svg",
  58798. extra: 877/828,
  58799. bottom: 24/901
  58800. }
  58801. },
  58802. snakeTail: {
  58803. height: math.unit(1.44, "feet"),
  58804. name: "Snake Tail",
  58805. image: {
  58806. source: "./media/characters/caleb/snake-tail.svg"
  58807. }
  58808. },
  58809. dick: {
  58810. height: math.unit(2.6, "feet"),
  58811. name: "Dick",
  58812. image: {
  58813. source: "./media/characters/caleb/dick.svg"
  58814. }
  58815. },
  58816. },
  58817. [
  58818. {
  58819. name: "Incognito",
  58820. height: math.unit(3, "meters")
  58821. },
  58822. {
  58823. name: "Home Size",
  58824. height: math.unit(200, "meters"),
  58825. default: true
  58826. },
  58827. {
  58828. name: "Macro",
  58829. height: math.unit(500, "meters")
  58830. },
  58831. {
  58832. name: "Big Macro",
  58833. height: math.unit(5, "km")
  58834. },
  58835. {
  58836. name: "Giga",
  58837. height: math.unit(250, "km")
  58838. },
  58839. {
  58840. name: "Giga+",
  58841. height: math.unit(5000, "km")
  58842. },
  58843. {
  58844. name: "Small Terra",
  58845. height: math.unit(35e3, "km")
  58846. },
  58847. {
  58848. name: "Terra",
  58849. height: math.unit(2e6, "km")
  58850. },
  58851. {
  58852. name: "Terra+",
  58853. height: math.unit(1.5e6, "km")
  58854. },
  58855. ]
  58856. ))
  58857. characterMakers.push(() => makeCharacter(
  58858. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58859. {
  58860. front: {
  58861. height: math.unit(2, "meters"),
  58862. weight: math.unit(120, "kg"),
  58863. name: "Front",
  58864. image: {
  58865. source: "./media/characters/gilirian/front.svg",
  58866. extra: 805/737,
  58867. bottom: 13/818
  58868. }
  58869. },
  58870. side: {
  58871. height: math.unit(2, "meters"),
  58872. weight: math.unit(120, "kg"),
  58873. name: "Side",
  58874. image: {
  58875. source: "./media/characters/gilirian/side.svg",
  58876. extra: 810/746,
  58877. bottom: 6/816
  58878. }
  58879. },
  58880. back: {
  58881. height: math.unit(2, "meters"),
  58882. weight: math.unit(120, "kg"),
  58883. name: "Back",
  58884. image: {
  58885. source: "./media/characters/gilirian/back.svg",
  58886. extra: 815/745,
  58887. bottom: 15/830
  58888. }
  58889. },
  58890. frontNsfw: {
  58891. height: math.unit(2, "meters"),
  58892. weight: math.unit(120, "kg"),
  58893. name: "Front (NSFW)",
  58894. image: {
  58895. source: "./media/characters/gilirian/front-nsfw.svg",
  58896. extra: 805/737,
  58897. bottom: 13/818
  58898. }
  58899. },
  58900. sideNsfw: {
  58901. height: math.unit(2, "meters"),
  58902. weight: math.unit(120, "kg"),
  58903. name: "Side (NSFW)",
  58904. image: {
  58905. source: "./media/characters/gilirian/side-nsfw.svg",
  58906. extra: 810/746,
  58907. bottom: 6/816
  58908. }
  58909. },
  58910. },
  58911. [
  58912. {
  58913. name: "Incognito",
  58914. height: math.unit(2, "meters"),
  58915. default: true
  58916. },
  58917. {
  58918. name: "Macro",
  58919. height: math.unit(250, "meters")
  58920. },
  58921. {
  58922. name: "Big Macro",
  58923. height: math.unit(1500, "meters")
  58924. },
  58925. {
  58926. name: "Mega",
  58927. height: math.unit(40, "km")
  58928. },
  58929. {
  58930. name: "Giga",
  58931. height: math.unit(300, "km")
  58932. },
  58933. {
  58934. name: "Extra Giga",
  58935. height: math.unit(5000, "km")
  58936. },
  58937. {
  58938. name: "Small Terra",
  58939. height: math.unit(10e3, "km")
  58940. },
  58941. {
  58942. name: "Terra",
  58943. height: math.unit(3e5, "km")
  58944. },
  58945. {
  58946. name: "Galactic",
  58947. height: math.unit(369950, "lightyears")
  58948. },
  58949. ]
  58950. ))
  58951. characterMakers.push(() => makeCharacter(
  58952. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58953. {
  58954. front: {
  58955. height: math.unit(2.5, "meters"),
  58956. weight: math.unit(230, "lb"),
  58957. name: "Front",
  58958. image: {
  58959. source: "./media/characters/tarken/front.svg",
  58960. extra: 764/720,
  58961. bottom: 49/813
  58962. }
  58963. },
  58964. back: {
  58965. height: math.unit(2.5, "meters"),
  58966. weight: math.unit(230, "lb"),
  58967. name: "Back",
  58968. image: {
  58969. source: "./media/characters/tarken/back.svg",
  58970. extra: 756/720,
  58971. bottom: 35/791
  58972. }
  58973. },
  58974. frontNsfw: {
  58975. height: math.unit(2.5, "meters"),
  58976. weight: math.unit(230, "lb"),
  58977. name: "Front (NSFW)",
  58978. image: {
  58979. source: "./media/characters/tarken/front-nsfw.svg",
  58980. extra: 764/720,
  58981. bottom: 49/813
  58982. }
  58983. },
  58984. backNsfw: {
  58985. height: math.unit(2.5, "meters"),
  58986. weight: math.unit(230, "lb"),
  58987. name: "Back (NSFW)",
  58988. image: {
  58989. source: "./media/characters/tarken/back-nsfw.svg",
  58990. extra: 756/720,
  58991. bottom: 35/791
  58992. }
  58993. },
  58994. head: {
  58995. height: math.unit(2.22, "feet"),
  58996. name: "Head",
  58997. image: {
  58998. source: "./media/characters/tarken/head.svg"
  58999. }
  59000. },
  59001. tail: {
  59002. height: math.unit(5.25, "feet"),
  59003. name: "Tail",
  59004. image: {
  59005. source: "./media/characters/tarken/tail.svg"
  59006. }
  59007. },
  59008. dick: {
  59009. height: math.unit(1.95, "feet"),
  59010. name: "Dick",
  59011. image: {
  59012. source: "./media/characters/tarken/dick.svg"
  59013. }
  59014. },
  59015. hand: {
  59016. height: math.unit(1.78, "feet"),
  59017. name: "Hand",
  59018. image: {
  59019. source: "./media/characters/tarken/hand.svg"
  59020. }
  59021. },
  59022. beam: {
  59023. height: math.unit(1.5, "feet"),
  59024. name: "Beam",
  59025. image: {
  59026. source: "./media/characters/tarken/beam.svg"
  59027. }
  59028. },
  59029. },
  59030. [
  59031. {
  59032. name: "Original Size",
  59033. height: math.unit(2.5, "meters")
  59034. },
  59035. {
  59036. name: "Macro",
  59037. height: math.unit(150, "meters"),
  59038. default: true
  59039. },
  59040. {
  59041. name: "Macro+",
  59042. height: math.unit(300, "meters")
  59043. },
  59044. {
  59045. name: "Mega",
  59046. height: math.unit(2, "km")
  59047. },
  59048. {
  59049. name: "Mega+",
  59050. height: math.unit(35, "km")
  59051. },
  59052.  {
  59053. name: "Mega++",
  59054. height: math.unit(60, "km")
  59055. },
  59056. {
  59057. name: "Giga",
  59058. height: math.unit(200, "km")
  59059. },
  59060. {
  59061. name: "Giga+",
  59062. height: math.unit(2500, "km")
  59063. },
  59064. {
  59065. name: "Giga++",
  59066. height: math.unit(6600, "km")
  59067. },
  59068. {
  59069. name: "Terra",
  59070. height: math.unit(20000, "km")
  59071. },
  59072. {
  59073. name: "Terra+",
  59074. height: math.unit(300000, "km")
  59075. },
  59076. ]
  59077. ))
  59078. characterMakers.push(() => makeCharacter(
  59079. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59080. {
  59081. magpie_dressed: {
  59082. height: math.unit(1.7, "meters"),
  59083. weight: math.unit(70, "kg"),
  59084. name: "Dressed",
  59085. image: {
  59086. source: "./media/characters/otreus/magpie-dressed.svg",
  59087. extra: 691/672,
  59088. bottom: 116/807
  59089. },
  59090. form: "magpie",
  59091. default: true
  59092. },
  59093. magpie_nude: {
  59094. height: math.unit(1.7, "meters"),
  59095. weight: math.unit(70, "kg"),
  59096. name: "Nude",
  59097. image: {
  59098. source: "./media/characters/otreus/magpie-nude.svg",
  59099. extra: 691/672,
  59100. bottom: 116/807
  59101. },
  59102. form: "magpie",
  59103. },
  59104. magpie_dressedLewd: {
  59105. height: math.unit(1.7, "meters"),
  59106. weight: math.unit(70, "kg"),
  59107. name: "Dressed (Lewd)",
  59108. image: {
  59109. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59110. extra: 691/672,
  59111. bottom: 116/807
  59112. },
  59113. form: "magpie",
  59114. },
  59115. magpie_nudeLewd: {
  59116. height: math.unit(1.7, "meters"),
  59117. weight: math.unit(70, "kg"),
  59118. name: "Nude (Lewd)",
  59119. image: {
  59120. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59121. extra: 691/672,
  59122. bottom: 116/807
  59123. },
  59124. form: "magpie",
  59125. },
  59126. magpie_leftFoot: {
  59127. height: math.unit(1.58, "feet"),
  59128. name: "Left Foot",
  59129. image: {
  59130. source: "./media/characters/otreus/magpie-left-foot.svg"
  59131. },
  59132. form: "magpie",
  59133. },
  59134. magpie_rightFoot: {
  59135. height: math.unit(1.58, "feet"),
  59136. name: "Right Foot",
  59137. image: {
  59138. source: "./media/characters/otreus/magpie-right-foot.svg"
  59139. },
  59140. form: "magpie",
  59141. },
  59142. magpie_wingspan: {
  59143. height: math.unit(2, "meters"),
  59144. weight: math.unit(70, "kg"),
  59145. name: "Wingspan",
  59146. image: {
  59147. source: "./media/characters/otreus/magpie-wingspan.svg"
  59148. },
  59149. extraAttributes: {
  59150. "wingspan": {
  59151. name: "Wingspan",
  59152. power: 1,
  59153. type: "length",
  59154. base: math.unit(3.35, "meters")
  59155. },
  59156. },
  59157. form: "magpie",
  59158. },
  59159. hippogriff_dressed: {
  59160. height: math.unit(1.7, "meters"),
  59161. weight: math.unit(70, "kg"),
  59162. name: "Dressed",
  59163. image: {
  59164. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59165. extra: 710/689,
  59166. bottom: 67/777
  59167. },
  59168. form: "hippogriff",
  59169. default: true
  59170. },
  59171. hippogriff_nude: {
  59172. height: math.unit(1.7, "meters"),
  59173. weight: math.unit(70, "kg"),
  59174. name: "Nude",
  59175. image: {
  59176. source: "./media/characters/otreus/hippogriff-nude.svg",
  59177. extra: 710/689,
  59178. bottom: 67/777
  59179. },
  59180. form: "hippogriff",
  59181. },
  59182. hippogriff_dressedLewd: {
  59183. height: math.unit(1.7, "meters"),
  59184. weight: math.unit(70, "kg"),
  59185. name: "Dressed (Lewd)",
  59186. image: {
  59187. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59188. extra: 710/689,
  59189. bottom: 67/777
  59190. },
  59191. form: "hippogriff",
  59192. },
  59193. hippogriff_nudeLewd: {
  59194. height: math.unit(1.7, "meters"),
  59195. weight: math.unit(70, "kg"),
  59196. name: "Nude (Lewd)",
  59197. image: {
  59198. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59199. extra: 710/689,
  59200. bottom: 67/777
  59201. },
  59202. form: "hippogriff",
  59203. },
  59204. },
  59205. [
  59206. {
  59207. name: "Original Size",
  59208. height: math.unit(1.7, "meters"),
  59209. allForms: true
  59210. },
  59211. {
  59212. name: "Incognito Size",
  59213. height: math.unit(2, "meters"),
  59214. allForms: true
  59215. },
  59216. {
  59217. name: "Mega",
  59218. height: math.unit(2, "km"),
  59219. allForms: true
  59220. },
  59221. {
  59222. name: "Mega+",
  59223. height: math.unit(40, "km"),
  59224. allForms: true
  59225. },
  59226. {
  59227. name: "Giga",
  59228. height: math.unit(250, "km"),
  59229. allForms: true
  59230. },
  59231. {
  59232. name: "Giga+",
  59233. height: math.unit(3000, "km"),
  59234. allForms: true
  59235. },
  59236. {
  59237. name: "Terra",
  59238. height: math.unit(20000, "km"),
  59239. allForms: true
  59240. },
  59241. {
  59242. name: "Solar (Home Size)",
  59243. height: math.unit(3e6, "km"),
  59244. allForms: true,
  59245. default: true
  59246. },
  59247. ],
  59248. {
  59249. "magpie": {
  59250. name: "Magpie",
  59251. default: true
  59252. },
  59253. "hippogriff": {
  59254. name: "Hippogriff",
  59255. },
  59256. }
  59257. ))
  59258. characterMakers.push(() => makeCharacter(
  59259. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59260. {
  59261. frontDressed: {
  59262. height: math.unit(1.8, "meters"),
  59263. weight: math.unit(90, "kg"),
  59264. name: "Front (Dressed)",
  59265. image: {
  59266. source: "./media/characters/thalia/front-dressed.svg",
  59267. extra: 478/402,
  59268. bottom: 55/533
  59269. }
  59270. },
  59271. backDressed: {
  59272. height: math.unit(1.8, "meters"),
  59273. weight: math.unit(90, "kg"),
  59274. name: "Back (Dressed)",
  59275. image: {
  59276. source: "./media/characters/thalia/back-dressed.svg",
  59277. extra: 500/424,
  59278. bottom: 15/515
  59279. }
  59280. },
  59281. frontNude: {
  59282. height: math.unit(1.8, "meters"),
  59283. weight: math.unit(90, "kg"),
  59284. name: "Front (Nude)",
  59285. image: {
  59286. source: "./media/characters/thalia/front-nude.svg",
  59287. extra: 478/402,
  59288. bottom: 55/533
  59289. }
  59290. },
  59291. backNude: {
  59292. height: math.unit(1.8, "meters"),
  59293. weight: math.unit(90, "kg"),
  59294. name: "Back (Nude)",
  59295. image: {
  59296. source: "./media/characters/thalia/back-nude.svg",
  59297. extra: 500/424,
  59298. bottom: 15/515
  59299. }
  59300. },
  59301. },
  59302. [
  59303. {
  59304. name: "Incognito",
  59305. height: math.unit(3, "meters")
  59306. },
  59307. {
  59308. name: "Macro",
  59309. height: math.unit(500, "meters")
  59310. },
  59311. {
  59312. name: "Mega",
  59313. height: math.unit(5, "km")
  59314. },
  59315. {
  59316. name: "Mega+",
  59317. height: math.unit(30, "km")
  59318. },
  59319. {
  59320. name: "Giga",
  59321. height: math.unit(350, "km")
  59322. },
  59323. {
  59324. name: "Giga+",
  59325. height: math.unit(4000, "km")
  59326. },
  59327. {
  59328. name: "Terra",
  59329. height: math.unit(35000, "km")
  59330. },
  59331. {
  59332. name: "Original Size",
  59333. height: math.unit(130000, "km")
  59334. },
  59335. {
  59336. name: "Solar (Home Size)",
  59337. height: math.unit(4e6, "km"),
  59338. default: true
  59339. },
  59340. ]
  59341. ))
  59342. characterMakers.push(() => makeCharacter(
  59343. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59344. {
  59345. front: {
  59346. height: math.unit(1.8, "meters"),
  59347. weight: math.unit(95, "kg"),
  59348. name: "Front",
  59349. image: {
  59350. source: "./media/characters/shango/front.svg",
  59351. extra: 1925/1774,
  59352. bottom: 67/1992
  59353. }
  59354. },
  59355. back: {
  59356. height: math.unit(1.8, "meters"),
  59357. weight: math.unit(95, "kg"),
  59358. name: "Back",
  59359. image: {
  59360. source: "./media/characters/shango/back.svg",
  59361. extra: 1915/1766,
  59362. bottom: 52/1967
  59363. }
  59364. },
  59365. frontLewd: {
  59366. height: math.unit(1.8, "meters"),
  59367. weight: math.unit(95, "kg"),
  59368. name: "Front (Lewd)",
  59369. image: {
  59370. source: "./media/characters/shango/front-lewd.svg",
  59371. extra: 1925/1774,
  59372. bottom: 67/1992
  59373. }
  59374. },
  59375. backLewd: {
  59376. height: math.unit(1.8, "meters"),
  59377. weight: math.unit(95, "kg"),
  59378. name: "Back (Lewd)",
  59379. image: {
  59380. source: "./media/characters/shango/back-lewd.svg",
  59381. extra: 1915/1766,
  59382. bottom: 52/1967
  59383. }
  59384. },
  59385. maw: {
  59386. height: math.unit(1.64, "feet"),
  59387. name: "Maw",
  59388. image: {
  59389. source: "./media/characters/shango/maw.svg"
  59390. }
  59391. },
  59392. dick: {
  59393. height: math.unit(2.14, "feet"),
  59394. name: "Dick",
  59395. image: {
  59396. source: "./media/characters/shango/dick.svg"
  59397. }
  59398. },
  59399. },
  59400. [
  59401. {
  59402. name: "Incognito",
  59403. height: math.unit(1.8, "meters")
  59404. },
  59405. {
  59406. name: "Home Size",
  59407. height: math.unit(60, "meters"),
  59408. default: true
  59409. },
  59410. {
  59411. name: "Macro",
  59412. height: math.unit(450, "meters")
  59413. },
  59414. {
  59415. name: "Mega",
  59416. height: math.unit(6, "km")
  59417. },
  59418. {
  59419. name: "Mega+",
  59420. height: math.unit(35, "km")
  59421. },
  59422. {
  59423. name: "Giga",
  59424. height: math.unit(500, "km")
  59425. },
  59426. {
  59427. name: "Giga+",
  59428. height: math.unit(5000, "km")
  59429. },
  59430. {
  59431. name: "Terra",
  59432. height: math.unit(60000, "km")
  59433. },
  59434. {
  59435. name: "Terra+",
  59436. height: math.unit(400000, "km")
  59437. },
  59438. ]
  59439. ))
  59440. characterMakers.push(() => makeCharacter(
  59441. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59442. {
  59443. front: {
  59444. height: math.unit(2, "meters"),
  59445. weight: math.unit(95, "kg"),
  59446. name: "Front",
  59447. image: {
  59448. source: "./media/characters/osiris-gryphon/front.svg",
  59449. extra: 1508/1313,
  59450. bottom: 87/1595
  59451. }
  59452. },
  59453. back: {
  59454. height: math.unit(2, "meters"),
  59455. weight: math.unit(95, "kg"),
  59456. name: "Back",
  59457. image: {
  59458. source: "./media/characters/osiris-gryphon/back.svg",
  59459. extra: 1436/1309,
  59460. bottom: 64/1500
  59461. }
  59462. },
  59463. frontLewd: {
  59464. height: math.unit(2, "meters"),
  59465. weight: math.unit(95, "kg"),
  59466. name: "Front-lewd",
  59467. image: {
  59468. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59469. extra: 1508/1313,
  59470. bottom: 87/1595
  59471. }
  59472. },
  59473. wing: {
  59474. height: math.unit(6.3333, "feet"),
  59475. name: "Wing",
  59476. image: {
  59477. source: "./media/characters/osiris-gryphon/wing.svg"
  59478. }
  59479. },
  59480. },
  59481. [
  59482. {
  59483. name: "Incognito",
  59484. height: math.unit(2, "meters")
  59485. },
  59486. {
  59487. name: "Home Size",
  59488. height: math.unit(30, "meters"),
  59489. default: true
  59490. },
  59491. {
  59492. name: "Macro",
  59493. height: math.unit(100, "meters")
  59494. },
  59495. {
  59496. name: "Macro+",
  59497. height: math.unit(350, "meters")
  59498. },
  59499. {
  59500. name: "Mega",
  59501. height: math.unit(40, "km")
  59502. },
  59503. {
  59504. name: "Giga",
  59505. height: math.unit(300, "km")
  59506. },
  59507. {
  59508. name: "Giga+",
  59509. height: math.unit(2000, "km")
  59510. },
  59511. {
  59512. name: "Terra",
  59513. height: math.unit(30000, "km")
  59514. },
  59515. ]
  59516. ))
  59517. characterMakers.push(() => makeCharacter(
  59518. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59519. {
  59520. front: {
  59521. height: math.unit(2.5, "meters"),
  59522. weight: math.unit(200, "kg"),
  59523. name: "Front",
  59524. image: {
  59525. source: "./media/characters/atlas-dragon/front.svg",
  59526. extra: 745/462,
  59527. bottom: 36/781
  59528. }
  59529. },
  59530. back: {
  59531. height: math.unit(2.5, "meters"),
  59532. weight: math.unit(200, "kg"),
  59533. name: "Back",
  59534. image: {
  59535. source: "./media/characters/atlas-dragon/back.svg",
  59536. extra: 848/822,
  59537. bottom: 57/905
  59538. }
  59539. },
  59540. frontLewd: {
  59541. height: math.unit(2.5, "meters"),
  59542. weight: math.unit(200, "kg"),
  59543. name: "Front (Lewd)",
  59544. image: {
  59545. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59546. extra: 745/462,
  59547. bottom: 36/781
  59548. }
  59549. },
  59550. backLewd: {
  59551. height: math.unit(2.5, "meters"),
  59552. weight: math.unit(200, "kg"),
  59553. name: "Back (Lewd)",
  59554. image: {
  59555. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59556. extra: 848/822,
  59557. bottom: 57/905
  59558. }
  59559. },
  59560. },
  59561. [
  59562. {
  59563. name: "Incognito",
  59564. height: math.unit(2.5, "meters")
  59565. },
  59566. {
  59567. name: "Small Macro",
  59568. height: math.unit(50, "meters")
  59569. },
  59570. {
  59571. name: "Macro",
  59572. height: math.unit(350, "meters")
  59573. },
  59574. {
  59575. name: "Mega",
  59576. height: math.unit(5.5, "kilometers")
  59577. },
  59578. {
  59579. name: "Mega+",
  59580. height: math.unit(50, "km")
  59581. },
  59582. {
  59583. name: "Giga",
  59584. height: math.unit(350, "km")
  59585. },
  59586. {
  59587. name: "Giga+",
  59588. height: math.unit(2000, "km")
  59589. },
  59590. {
  59591. name: "Giga++",
  59592. height: math.unit(6500, "km")
  59593. },
  59594. {
  59595. name: "Terra",
  59596. height: math.unit(30000, "km")
  59597. },
  59598. {
  59599. name: "Terra+",
  59600. height: math.unit(250000, "km")
  59601. },
  59602. {
  59603. name: "True Size",
  59604. height: math.unit(100, "multiverses"),
  59605. default: true
  59606. },
  59607. ]
  59608. ))
  59609. characterMakers.push(() => makeCharacter(
  59610. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59611. {
  59612. front: {
  59613. height: math.unit(1.8, "m"),
  59614. weight: math.unit(120, "kg"),
  59615. name: "Front",
  59616. image: {
  59617. source: "./media/characters/chey/front.svg",
  59618. extra: 1359/1270,
  59619. bottom: 18/1377
  59620. }
  59621. },
  59622. arm: {
  59623. height: math.unit(2.05, "feet"),
  59624. name: "Arm",
  59625. image: {
  59626. source: "./media/characters/chey/arm.svg"
  59627. }
  59628. },
  59629. head: {
  59630. height: math.unit(1.89, "feet"),
  59631. name: "Head",
  59632. image: {
  59633. source: "./media/characters/chey/head.svg"
  59634. }
  59635. },
  59636. },
  59637. [
  59638. {
  59639. name: "Original Size",
  59640. height: math.unit(5, "cm")
  59641. },
  59642. {
  59643. name: "Incognito Size",
  59644. height: math.unit(2.4, "m")
  59645. },
  59646. {
  59647. name: "Home Size",
  59648. height: math.unit(200, "meters"),
  59649. default: true
  59650. },
  59651. {
  59652. name: "Mega",
  59653. height: math.unit(2, "km")
  59654. },
  59655. {
  59656. name: "Giga (Preferred Size)",
  59657. height: math.unit(2000, "km")
  59658. },
  59659. {
  59660. name: "Giga+",
  59661. height: math.unit(6000, "km")
  59662. },
  59663. {
  59664. name: "Terra",
  59665. height: math.unit(17000, "km")
  59666. },
  59667. {
  59668. name: "Terra+",
  59669. height: math.unit(75000, "km")
  59670. },
  59671. {
  59672. name: "Terra++",
  59673. height: math.unit(225000, "km")
  59674. },
  59675. ]
  59676. ))
  59677. characterMakers.push(() => makeCharacter(
  59678. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59679. {
  59680. side: {
  59681. height: math.unit(7.8, "meters"),
  59682. name: "Side",
  59683. image: {
  59684. source: "./media/characters/ragnarok/side.svg",
  59685. extra: 725/621,
  59686. bottom: 72/797
  59687. }
  59688. },
  59689. },
  59690. [
  59691. {
  59692. name: "Normal",
  59693. height: math.unit(7.8, "meters"),
  59694. default: true
  59695. },
  59696. ]
  59697. ))
  59698. characterMakers.push(() => makeCharacter(
  59699. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59700. {
  59701. hyena_front: {
  59702. height: math.unit(2.1, "meters"),
  59703. weight: math.unit(110, "kg"),
  59704. name: "Front",
  59705. image: {
  59706. source: "./media/characters/nima/hyena-front.svg",
  59707. extra: 1904/1796,
  59708. bottom: 67/1971
  59709. },
  59710. form: "hyena",
  59711. },
  59712. hyena_back: {
  59713. height: math.unit(2.1, "meters"),
  59714. weight: math.unit(110, "kg"),
  59715. name: "Back",
  59716. image: {
  59717. source: "./media/characters/nima/hyena-back.svg",
  59718. extra: 1964/1884,
  59719. bottom: 35/1999
  59720. },
  59721. form: "hyena",
  59722. },
  59723. shark_front: {
  59724. height: math.unit(1.95, "meters"),
  59725. weight: math.unit(110, "kg"),
  59726. name: "Front",
  59727. image: {
  59728. source: "./media/characters/nima/shark-front.svg",
  59729. extra: 2238/2013,
  59730. bottom: 0/223
  59731. },
  59732. form: "shark",
  59733. },
  59734. paw: {
  59735. height: math.unit(1, "feet"),
  59736. name: "Paw",
  59737. image: {
  59738. source: "./media/characters/nima/paw.svg"
  59739. }
  59740. },
  59741. circlet: {
  59742. height: math.unit(0.3, "feet"),
  59743. name: "Circlet",
  59744. image: {
  59745. source: "./media/characters/nima/circlet.svg"
  59746. }
  59747. },
  59748. necklace: {
  59749. height: math.unit(1.2, "feet"),
  59750. name: "Necklace",
  59751. image: {
  59752. source: "./media/characters/nima/necklace.svg"
  59753. }
  59754. },
  59755. bracelet: {
  59756. height: math.unit(0.51, "feet"),
  59757. name: "Bracelet",
  59758. image: {
  59759. source: "./media/characters/nima/bracelet.svg"
  59760. }
  59761. },
  59762. armband: {
  59763. height: math.unit(1.3, "feet"),
  59764. name: "Armband",
  59765. image: {
  59766. source: "./media/characters/nima/armband.svg"
  59767. }
  59768. },
  59769. },
  59770. [
  59771. {
  59772. name: "Incognito",
  59773. height: math.unit(2.1, "meters"),
  59774. allForms: true
  59775. },
  59776. {
  59777. name: "Small Macro",
  59778. height: math.unit(50, "meters"),
  59779. allForms: true
  59780. },
  59781. {
  59782. name: "Macro",
  59783. height: math.unit(200, "meters"),
  59784. allForms: true
  59785. },
  59786. {
  59787. name: "Mega",
  59788. height: math.unit(2.5, "km"),
  59789. allForms: true
  59790. },
  59791. {
  59792. name: "Mega+",
  59793. height: math.unit(30, "km"),
  59794. allForms: true
  59795. },
  59796. {
  59797. name: "Giga (Home Size)",
  59798. height: math.unit(400, "km"),
  59799. allForms: true,
  59800. default: true
  59801. },
  59802. {
  59803. name: "Giga+",
  59804. height: math.unit(2500, "km"),
  59805. allForms: true
  59806. },
  59807. {
  59808. name: "Giga++",
  59809. height: math.unit(8000, "km"),
  59810. allForms: true
  59811. },
  59812. {
  59813. name: "Terra",
  59814. height: math.unit(20000, "km"),
  59815. allForms: true
  59816. },
  59817. {
  59818. name: "Terra+",
  59819. height: math.unit(70000, "km"),
  59820. allForms: true
  59821. },
  59822. {
  59823. name: "Terra++",
  59824. height: math.unit(600000, "km"),
  59825. allForms: true
  59826. },
  59827. {
  59828. name: "Galactic",
  59829. height: math.unit(40, "galaxies"),
  59830. allForms: true
  59831. },
  59832. {
  59833. name: "Universal",
  59834. height: math.unit(40, "universes"),
  59835. allForms: true
  59836. },
  59837. ],
  59838. {
  59839. "hyena": {
  59840. name: "Hyena",
  59841. default: true
  59842. },
  59843. "shark": {
  59844. name: "Shark",
  59845. },
  59846. }
  59847. ))
  59848. characterMakers.push(() => makeCharacter(
  59849. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59850. {
  59851. anthro_front: {
  59852. height: math.unit(1.5, "meters"),
  59853. name: "Front",
  59854. image: {
  59855. source: "./media/characters/adelaide/anthro-front.svg",
  59856. extra: 860/783,
  59857. bottom: 60/920
  59858. },
  59859. form: "anthro",
  59860. default: true
  59861. },
  59862. hand: {
  59863. height: math.unit(0.65, "feet"),
  59864. name: "Hand",
  59865. image: {
  59866. source: "./media/characters/adelaide/hand.svg"
  59867. },
  59868. form: "anthro"
  59869. },
  59870. foot: {
  59871. height: math.unit(1.38 * 259 / 314, "feet"),
  59872. name: "Foot",
  59873. image: {
  59874. source: "./media/characters/adelaide/foot.svg",
  59875. extra: 259/259,
  59876. bottom: 55/314
  59877. },
  59878. form: "anthro"
  59879. },
  59880. feather: {
  59881. height: math.unit(0.85, "feet"),
  59882. name: "Feather",
  59883. image: {
  59884. source: "./media/characters/adelaide/feather.svg"
  59885. },
  59886. form: "anthro"
  59887. },
  59888. feral_side: {
  59889. height: math.unit(1, "meters"),
  59890. name: "Side",
  59891. image: {
  59892. source: "./media/characters/adelaide/feral-side.svg",
  59893. extra: 550/467,
  59894. bottom: 37/587
  59895. },
  59896. form: "feral",
  59897. default: true
  59898. },
  59899. feral_hand: {
  59900. height: math.unit(0.58, "feet"),
  59901. name: "Hand",
  59902. image: {
  59903. source: "./media/characters/adelaide/hand.svg"
  59904. },
  59905. form: "feral"
  59906. },
  59907. feral_foot: {
  59908. height: math.unit(1.2 * 259 / 314, "feet"),
  59909. name: "Foot",
  59910. image: {
  59911. source: "./media/characters/adelaide/foot.svg",
  59912. extra: 259/259,
  59913. bottom: 55/314
  59914. },
  59915. form: "feral"
  59916. },
  59917. feral_feather: {
  59918. height: math.unit(0.63, "feet"),
  59919. name: "Feather",
  59920. image: {
  59921. source: "./media/characters/adelaide/feather.svg"
  59922. },
  59923. form: "feral"
  59924. },
  59925. },
  59926. [
  59927. {
  59928. name: "Normal",
  59929. height: math.unit(1.5, "meters"),
  59930. form: "anthro",
  59931. default: true
  59932. },
  59933. {
  59934. name: "Normal",
  59935. height: math.unit(1, "meters"),
  59936. form: "feral",
  59937. default: true
  59938. },
  59939. ],
  59940. {
  59941. "anthro": {
  59942. name: "Anthro",
  59943. default: true
  59944. },
  59945. "feral": {
  59946. name: "Feral",
  59947. },
  59948. }
  59949. ))
  59950. characterMakers.push(() => makeCharacter(
  59951. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59952. {
  59953. front: {
  59954. height: math.unit(2.5, "meters"),
  59955. name: "Front",
  59956. image: {
  59957. source: "./media/characters/goa/front.svg",
  59958. extra: 1109/1013,
  59959. bottom: 150/1259
  59960. }
  59961. },
  59962. },
  59963. [
  59964. {
  59965. name: "Normal",
  59966. height: math.unit(2.5, "meters"),
  59967. default: true
  59968. },
  59969. ]
  59970. ))
  59971. characterMakers.push(() => makeCharacter(
  59972. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59973. {
  59974. front: {
  59975. height: math.unit(2, "meters"),
  59976. weight: math.unit(100, "kg"),
  59977. name: "Front",
  59978. image: {
  59979. source: "./media/characters/kiki-weavile/front.svg",
  59980. extra: 357/332,
  59981. bottom: 60/417
  59982. }
  59983. },
  59984. },
  59985. [
  59986. {
  59987. name: "Normal",
  59988. height: math.unit(2, "meters"),
  59989. default: true
  59990. },
  59991. ]
  59992. ))
  59993. characterMakers.push(() => makeCharacter(
  59994. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59995. {
  59996. side: {
  59997. height: math.unit(1.6, "meters"),
  59998. name: "Side",
  59999. image: {
  60000. source: "./media/characters/liza/side.svg",
  60001. extra: 943/915,
  60002. bottom: 72/1015
  60003. }
  60004. },
  60005. },
  60006. [
  60007. {
  60008. name: "Normal",
  60009. height: math.unit(1.6, "meters"),
  60010. default: true
  60011. },
  60012. ]
  60013. ))
  60014. characterMakers.push(() => makeCharacter(
  60015. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60016. {
  60017. side: {
  60018. height: math.unit(2.5, "meters"),
  60019. preyCapacity: math.unit(1, "people"),
  60020. name: "Side",
  60021. image: {
  60022. source: "./media/characters/persephone-sweetbreath/side.svg",
  60023. extra: 796/700,
  60024. bottom: 44/840
  60025. }
  60026. },
  60027. sideVore: {
  60028. height: math.unit(2.5, "meters"),
  60029. preyCapacity: math.unit(1, "people"),
  60030. name: "Side (Full)",
  60031. image: {
  60032. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60033. extra: 796/700,
  60034. bottom: 44/840
  60035. }
  60036. },
  60037. },
  60038. [
  60039. {
  60040. name: "Normal",
  60041. height: math.unit(2.5, "meters"),
  60042. default: true
  60043. },
  60044. ]
  60045. ))
  60046. characterMakers.push(() => makeCharacter(
  60047. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60048. {
  60049. front: {
  60050. height: math.unit(32, "meters"),
  60051. name: "Front",
  60052. image: {
  60053. source: "./media/characters/pierce/front.svg",
  60054. extra: 1695/1475,
  60055. bottom: 185/1880
  60056. }
  60057. },
  60058. side: {
  60059. height: math.unit(32, "meters"),
  60060. name: "Side",
  60061. image: {
  60062. source: "./media/characters/pierce/side.svg",
  60063. extra: 974/859,
  60064. bottom: 43/1017
  60065. }
  60066. },
  60067. frontWingless: {
  60068. height: math.unit(32, "meters"),
  60069. name: "Front (Wingless)",
  60070. image: {
  60071. source: "./media/characters/pierce/front-wingless.svg",
  60072. extra: 1695/1475,
  60073. bottom: 185/1880
  60074. }
  60075. },
  60076. sideWingless: {
  60077. height: math.unit(32, "meters"),
  60078. name: "Side (Wingless)",
  60079. image: {
  60080. source: "./media/characters/pierce/side-wingless.svg",
  60081. extra: 974/859,
  60082. bottom: 43/1017
  60083. }
  60084. },
  60085. maw: {
  60086. height: math.unit(19.3, "meters"),
  60087. name: "Maw",
  60088. image: {
  60089. source: "./media/characters/pierce/maw.svg"
  60090. }
  60091. },
  60092. },
  60093. [
  60094. {
  60095. name: "Small",
  60096. height: math.unit(8.5, "meters")
  60097. },
  60098. {
  60099. name: "Normal",
  60100. height: math.unit(32, "meters"),
  60101. default: true
  60102. },
  60103. ]
  60104. ))
  60105. characterMakers.push(() => makeCharacter(
  60106. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60107. {
  60108. front: {
  60109. height: math.unit(2.3, "meters"),
  60110. weight: math.unit(165, "kg"),
  60111. name: "Front",
  60112. image: {
  60113. source: "./media/characters/shira/front.svg",
  60114. extra: 924/919,
  60115. bottom: 17/941
  60116. },
  60117. form: "cobra",
  60118. default: true
  60119. },
  60120. back: {
  60121. height: math.unit(2.3, "meters"),
  60122. weight: math.unit(165, "kg"),
  60123. name: "Back",
  60124. image: {
  60125. source: "./media/characters/shira/back.svg",
  60126. extra: 928/922,
  60127. bottom: 18/946
  60128. },
  60129. form: "cobra"
  60130. },
  60131. frontLewd: {
  60132. height: math.unit(2.3, "meters"),
  60133. weight: math.unit(165, "kg"),
  60134. name: "Front (Lewd)",
  60135. image: {
  60136. source: "./media/characters/shira/front-lewd.svg",
  60137. extra: 924/919,
  60138. bottom: 17/941
  60139. },
  60140. form: "cobra"
  60141. },
  60142. backLewd: {
  60143. height: math.unit(2.3, "meters"),
  60144. weight: math.unit(165, "kg"),
  60145. name: "Back (Lewd)",
  60146. image: {
  60147. source: "./media/characters/shira/back-lewd.svg",
  60148. extra: 928/922,
  60149. bottom: 18/946
  60150. },
  60151. form: "cobra"
  60152. },
  60153. maw: {
  60154. height: math.unit(1.14, "feet"),
  60155. name: "Maw",
  60156. image: {
  60157. source: "./media/characters/shira/maw.svg"
  60158. },
  60159. form: "cobra"
  60160. },
  60161. magma_front: {
  60162. height: math.unit(2.3, "meters"),
  60163. weight: math.unit(165, "kg"),
  60164. name: "Front",
  60165. image: {
  60166. source: "./media/characters/shira/magma-front.svg",
  60167. extra: 1870/1693,
  60168. bottom: 24/1894
  60169. },
  60170. form: "magma",
  60171. },
  60172. magma_back: {
  60173. height: math.unit(2.3, "meters"),
  60174. weight: math.unit(165, "kg"),
  60175. name: "Back",
  60176. image: {
  60177. source: "./media/characters/shira/magma-back.svg",
  60178. extra: 1918/1756,
  60179. bottom: 46/1964
  60180. },
  60181. form: "magma",
  60182. },
  60183. },
  60184. [
  60185. {
  60186. name: "Incognito",
  60187. height: math.unit(2.3, "meters"),
  60188. allForms: true
  60189. },
  60190. {
  60191. name: "Home Size",
  60192. height: math.unit(150, "meters"),
  60193. default: true,
  60194. allForms: true
  60195. },
  60196. {
  60197. name: "Macro",
  60198. height: math.unit(2, "km"),
  60199. allForms: true
  60200. },
  60201. {
  60202. name: "Mega",
  60203. height: math.unit(30, "km"),
  60204. allForms: true
  60205. },
  60206. {
  60207. name: "Giga",
  60208. height: math.unit(450, "km"),
  60209. allForms: true
  60210. },
  60211. {
  60212. name: "Giga+",
  60213. height: math.unit(3000, "km"),
  60214. allForms: true
  60215. },
  60216. {
  60217. name: "Giga++",
  60218. height: math.unit(6000, "km"),
  60219. allForms: true
  60220. },
  60221. {
  60222. name: "Terra",
  60223. height: math.unit(80000, "km"),
  60224. allForms: true
  60225. },
  60226. {
  60227. name: "Terra+",
  60228. height: math.unit(350000, "km"),
  60229. allForms: true
  60230. },
  60231. {
  60232. name: "Solar",
  60233. height: math.unit(1e6, "km"),
  60234. allForms: true
  60235. },
  60236. ],
  60237. {
  60238. "cobra": {
  60239. name: "Cobra",
  60240. default: true
  60241. },
  60242. "magma": {
  60243. name: "Magma Dragon",
  60244. },
  60245. }
  60246. ))
  60247. characterMakers.push(() => makeCharacter(
  60248. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60249. {
  60250. front: {
  60251. height: math.unit(2, "meters"),
  60252. weight: math.unit(160, "kg"),
  60253. name: "Front",
  60254. image: {
  60255. source: "./media/characters/daxerios/front.svg",
  60256. extra: 1334/1277,
  60257. bottom: 45/1379
  60258. }
  60259. },
  60260. frontLewd: {
  60261. height: math.unit(2, "meters"),
  60262. weight: math.unit(160, "kg"),
  60263. name: "Front (Lewd)",
  60264. image: {
  60265. source: "./media/characters/daxerios/front-lewd.svg",
  60266. extra: 1334/1277,
  60267. bottom: 45/1379
  60268. }
  60269. },
  60270. dick: {
  60271. height: math.unit(2.35, "feet"),
  60272. name: "Dick",
  60273. image: {
  60274. source: "./media/characters/daxerios/dick.svg"
  60275. }
  60276. },
  60277. },
  60278. [
  60279. {
  60280. name: "\"Small\"",
  60281. height: math.unit(5, "meters")
  60282. },
  60283. {
  60284. name: "Original Size",
  60285. height: math.unit(500, "meters"),
  60286. default: true
  60287. },
  60288. {
  60289. name: "Mega",
  60290. height: math.unit(2, "km")
  60291. },
  60292. {
  60293. name: "Mega+",
  60294. height: math.unit(35, "km")
  60295. },
  60296. {
  60297. name: "Giga",
  60298. height: math.unit(250, "km")
  60299. },
  60300. {
  60301. name: "Giga+",
  60302. height: math.unit(3000, "km")
  60303. },
  60304. {
  60305. name: "Terra",
  60306. height: math.unit(25000, "km")
  60307. },
  60308. {
  60309. name: "Terra+",
  60310. height: math.unit(300000, "km")
  60311. },
  60312. {
  60313. name: "Solar",
  60314. height: math.unit(1e6, "km")
  60315. },
  60316. ]
  60317. ))
  60318. characterMakers.push(() => makeCharacter(
  60319. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60320. {
  60321. front: {
  60322. height: math.unit(8 + 4/12, "feet"),
  60323. weight: math.unit(464, "lb"),
  60324. name: "Front",
  60325. image: {
  60326. source: "./media/characters/caveat/front.svg",
  60327. extra: 1861/1678,
  60328. bottom: 40/1901
  60329. }
  60330. },
  60331. },
  60332. [
  60333. {
  60334. name: "Normal",
  60335. height: math.unit(8 + 4/12, "feet"),
  60336. default: true
  60337. },
  60338. ]
  60339. ))
  60340. characterMakers.push(() => makeCharacter(
  60341. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60342. {
  60343. front: {
  60344. height: math.unit(12, "feet"),
  60345. weight: math.unit(1800, "lb"),
  60346. name: "Front",
  60347. image: {
  60348. source: "./media/characters/centbair/front.svg",
  60349. extra: 781/663,
  60350. bottom: 25/806
  60351. }
  60352. },
  60353. frontNsfw: {
  60354. height: math.unit(12, "feet"),
  60355. weight: math.unit(1800, "lb"),
  60356. name: "Front (NSFW)",
  60357. image: {
  60358. source: "./media/characters/centbair/front-nsfw.svg",
  60359. extra: 781/663,
  60360. bottom: 25/806
  60361. }
  60362. },
  60363. back: {
  60364. height: math.unit(12, "feet"),
  60365. weight: math.unit(1800, "lb"),
  60366. name: "Back",
  60367. image: {
  60368. source: "./media/characters/centbair/back.svg",
  60369. extra: 808/761,
  60370. bottom: 19/827
  60371. }
  60372. },
  60373. dick: {
  60374. height: math.unit(6.5, "feet"),
  60375. name: "Dick",
  60376. image: {
  60377. source: "./media/characters/centbair/dick.svg"
  60378. }
  60379. },
  60380. slit: {
  60381. height: math.unit(3.25, "feet"),
  60382. name: "Slit",
  60383. image: {
  60384. source: "./media/characters/centbair/slit.svg"
  60385. }
  60386. },
  60387. },
  60388. [
  60389. {
  60390. name: "Normal",
  60391. height: math.unit(12, "feet"),
  60392. default: true
  60393. },
  60394. ]
  60395. ))
  60396. characterMakers.push(() => makeCharacter(
  60397. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60398. {
  60399. front: {
  60400. height: math.unit(5 + 7/12, "feet"),
  60401. name: "Front",
  60402. image: {
  60403. source: "./media/characters/andy/front.svg",
  60404. extra: 634/588,
  60405. bottom: 36/670
  60406. },
  60407. extraAttributes: {
  60408. "pawLength": {
  60409. name: "Paw Length",
  60410. power: 1,
  60411. type: "length",
  60412. base: math.unit(1, "feet")
  60413. },
  60414. }
  60415. },
  60416. side: {
  60417. height: math.unit(5 + 7/12, "feet"),
  60418. name: "Side",
  60419. image: {
  60420. source: "./media/characters/andy/side.svg",
  60421. extra: 641/596,
  60422. bottom: 34/675
  60423. },
  60424. extraAttributes: {
  60425. "pawLength": {
  60426. name: "Paw Length",
  60427. power: 1,
  60428. type: "length",
  60429. base: math.unit(1, "feet")
  60430. },
  60431. }
  60432. },
  60433. back: {
  60434. height: math.unit(5 + 7/12, "feet"),
  60435. name: "Back",
  60436. image: {
  60437. source: "./media/characters/andy/back.svg",
  60438. extra: 618/583,
  60439. bottom: 39/657
  60440. },
  60441. extraAttributes: {
  60442. "pawLength": {
  60443. name: "Paw Length",
  60444. power: 1,
  60445. type: "length",
  60446. base: math.unit(1, "feet")
  60447. },
  60448. }
  60449. },
  60450. paw: {
  60451. height: math.unit(1.13, "feet"),
  60452. name: "Paw",
  60453. image: {
  60454. source: "./media/characters/andy/paw.svg"
  60455. }
  60456. },
  60457. },
  60458. [
  60459. {
  60460. name: "Micro",
  60461. height: math.unit(4, "inches")
  60462. },
  60463. {
  60464. name: "Normal",
  60465. height: math.unit(5 + 7/12, "feet"),
  60466. default: true
  60467. },
  60468. {
  60469. name: "Macro",
  60470. height: math.unit(390.42, "feet")
  60471. },
  60472. ]
  60473. ))
  60474. characterMakers.push(() => makeCharacter(
  60475. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60476. {
  60477. front: {
  60478. height: math.unit(7, "feet"),
  60479. weight: math.unit(250, "lb"),
  60480. name: "Front",
  60481. image: {
  60482. source: "./media/characters/vix-titan/front.svg",
  60483. extra: 460/428,
  60484. bottom: 15/475
  60485. },
  60486. extraAttributes: {
  60487. "pawWidth": {
  60488. name: "Paw Width",
  60489. power: 1,
  60490. type: "length",
  60491. base: math.unit(0.75, "feet")
  60492. },
  60493. }
  60494. },
  60495. },
  60496. [
  60497. {
  60498. name: "Normal",
  60499. height: math.unit(7, "feet"),
  60500. default: true
  60501. },
  60502. {
  60503. name: "Giant",
  60504. height: math.unit(1500, "feet")
  60505. },
  60506. {
  60507. name: "Mega",
  60508. height: math.unit(10, "miles")
  60509. },
  60510. {
  60511. name: "Giga",
  60512. height: math.unit(150, "miles")
  60513. },
  60514. {
  60515. name: "Tera",
  60516. height: math.unit(144000, "miles")
  60517. },
  60518. ]
  60519. ))
  60520. characterMakers.push(() => makeCharacter(
  60521. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60522. {
  60523. front: {
  60524. height: math.unit(6 + 2/12, "feet"),
  60525. name: "Front",
  60526. image: {
  60527. source: "./media/characters/reiku/front.svg",
  60528. extra: 1910/1757,
  60529. bottom: 103/2013
  60530. },
  60531. extraAttributes: {
  60532. "thighThickness": {
  60533. name: "Thigh Thickness",
  60534. power: 1,
  60535. type: "length",
  60536. base: math.unit(1.12, "feet")
  60537. },
  60538. "assThickness": {
  60539. name: "Ass Thickness",
  60540. power: 1,
  60541. type: "length",
  60542. base: math.unit(1.12*2, "feet")
  60543. },
  60544. }
  60545. },
  60546. side: {
  60547. height: math.unit(6 + 2/12, "feet"),
  60548. name: "Side",
  60549. image: {
  60550. source: "./media/characters/reiku/side.svg",
  60551. extra: 1846/1748,
  60552. bottom: 99/1945
  60553. },
  60554. extraAttributes: {
  60555. "thighThickness": {
  60556. name: "Thigh Thickness",
  60557. power: 1,
  60558. type: "length",
  60559. base: math.unit(1.12, "feet")
  60560. },
  60561. "assThickness": {
  60562. name: "Ass Thickness",
  60563. power: 1,
  60564. type: "length",
  60565. base: math.unit(1.12*2, "feet")
  60566. },
  60567. }
  60568. },
  60569. back: {
  60570. height: math.unit(6 + 2/12, "feet"),
  60571. name: "Back",
  60572. image: {
  60573. source: "./media/characters/reiku/back.svg",
  60574. extra: 1941/1786,
  60575. bottom: 34/1975
  60576. },
  60577. extraAttributes: {
  60578. "thighThickness": {
  60579. name: "Thigh Thickness",
  60580. power: 1,
  60581. type: "length",
  60582. base: math.unit(1.12, "feet")
  60583. },
  60584. "assThickness": {
  60585. name: "Ass Thickness",
  60586. power: 1,
  60587. type: "length",
  60588. base: math.unit(1.12*2, "feet")
  60589. },
  60590. }
  60591. },
  60592. head: {
  60593. height: math.unit(1.8, "feet"),
  60594. name: "Head",
  60595. image: {
  60596. source: "./media/characters/reiku/head.svg"
  60597. }
  60598. },
  60599. tailTop: {
  60600. height: math.unit(8.4, "feet"),
  60601. name: "Tail (Top)",
  60602. image: {
  60603. source: "./media/characters/reiku/tail-top.svg"
  60604. }
  60605. },
  60606. tailBottom: {
  60607. height: math.unit(8.4, "feet"),
  60608. name: "Tail (Bottom)",
  60609. image: {
  60610. source: "./media/characters/reiku/tail-bottom.svg"
  60611. }
  60612. },
  60613. foot: {
  60614. height: math.unit(2.6, "feet"),
  60615. name: "Foot",
  60616. image: {
  60617. source: "./media/characters/reiku/foot.svg"
  60618. }
  60619. },
  60620. footCurled: {
  60621. height: math.unit(2.3, "feet"),
  60622. name: "Foot (Curled)",
  60623. image: {
  60624. source: "./media/characters/reiku/foot-curled.svg"
  60625. }
  60626. },
  60627. footSide: {
  60628. height: math.unit(1.26, "feet"),
  60629. name: "Foot (Side)",
  60630. image: {
  60631. source: "./media/characters/reiku/foot-side.svg"
  60632. }
  60633. },
  60634. },
  60635. [
  60636. {
  60637. name: "Normal",
  60638. height: math.unit(6 + 2/12, "feet"),
  60639. default: true
  60640. },
  60641. ]
  60642. ))
  60643. characterMakers.push(() => makeCharacter(
  60644. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60645. {
  60646. front: {
  60647. height: math.unit(7, "feet"),
  60648. weight: math.unit(500, "kg"),
  60649. name: "Front",
  60650. image: {
  60651. source: "./media/characters/cialda/front.svg",
  60652. extra: 912/745,
  60653. bottom: 55/967
  60654. }
  60655. },
  60656. },
  60657. [
  60658. {
  60659. name: "Normal",
  60660. height: math.unit(7, "feet"),
  60661. default: true
  60662. },
  60663. ]
  60664. ))
  60665. characterMakers.push(() => makeCharacter(
  60666. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60667. {
  60668. side: {
  60669. height: math.unit(6, "feet"),
  60670. weight: math.unit(600, "lb"),
  60671. preyCapacity: math.unit(25, "liters"),
  60672. name: "Side",
  60673. image: {
  60674. source: "./media/characters/darkkin/side.svg",
  60675. extra: 1597/1447,
  60676. bottom: 101/1698
  60677. }
  60678. },
  60679. },
  60680. [
  60681. {
  60682. name: "Canon Height",
  60683. height: math.unit(568, "feet"),
  60684. default: true
  60685. },
  60686. ]
  60687. ))
  60688. characterMakers.push(() => makeCharacter(
  60689. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60690. {
  60691. front: {
  60692. height: math.unit(6, "feet"),
  60693. weight: math.unit(1500, "lb"),
  60694. preyCapacity: math.unit(3, "people"),
  60695. name: "Front",
  60696. image: {
  60697. source: "./media/characters/livnia/front.svg",
  60698. extra: 934/932,
  60699. bottom: 83/1017
  60700. }
  60701. },
  60702. back: {
  60703. height: math.unit(6, "feet"),
  60704. weight: math.unit(1500, "lb"),
  60705. preyCapacity: math.unit(3, "people"),
  60706. name: "Back",
  60707. image: {
  60708. source: "./media/characters/livnia/back.svg",
  60709. extra: 916/915,
  60710. bottom: 58/974
  60711. }
  60712. },
  60713. head: {
  60714. height: math.unit(1.53, "feet"),
  60715. name: "Head",
  60716. image: {
  60717. source: "./media/characters/livnia/head.svg"
  60718. }
  60719. },
  60720. maw: {
  60721. height: math.unit(0.78, "feet"),
  60722. name: "Maw",
  60723. image: {
  60724. source: "./media/characters/livnia/maw.svg"
  60725. }
  60726. },
  60727. genitals: {
  60728. height: math.unit(0.35, "feet"),
  60729. name: "Genitals",
  60730. image: {
  60731. source: "./media/characters/livnia/genitals.svg"
  60732. }
  60733. },
  60734. },
  60735. [
  60736. {
  60737. name: "Normal",
  60738. height: math.unit(1000, "feet"),
  60739. default: true
  60740. },
  60741. ]
  60742. ))
  60743. characterMakers.push(() => makeCharacter(
  60744. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60745. {
  60746. front: {
  60747. height: math.unit(4, "feet"),
  60748. weight: math.unit(73, "lb"),
  60749. name: "Front",
  60750. image: {
  60751. source: "./media/characters/hayaku/front.svg",
  60752. extra: 1011/888,
  60753. bottom: 33/1044
  60754. }
  60755. },
  60756. back: {
  60757. height: math.unit(4, "feet"),
  60758. weight: math.unit(73, "lb"),
  60759. name: "Back",
  60760. image: {
  60761. source: "./media/characters/hayaku/back.svg",
  60762. extra: 1040/930,
  60763. bottom: 20/1060
  60764. }
  60765. },
  60766. },
  60767. [
  60768. {
  60769. name: "Normal",
  60770. height: math.unit(4, "feet"),
  60771. default: true
  60772. },
  60773. ]
  60774. ))
  60775. characterMakers.push(() => makeCharacter(
  60776. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60777. {
  60778. front: {
  60779. height: math.unit(6 + 7/12, "feet"),
  60780. weight: math.unit(300, "lb"),
  60781. name: "Front",
  60782. image: {
  60783. source: "./media/characters/athena-bryzant/front.svg",
  60784. extra: 870/835,
  60785. bottom: 33/903
  60786. }
  60787. },
  60788. back: {
  60789. height: math.unit(6 + 7/12, "feet"),
  60790. weight: math.unit(300, "lb"),
  60791. name: "Back",
  60792. image: {
  60793. source: "./media/characters/athena-bryzant/back.svg",
  60794. extra: 858/823,
  60795. bottom: 30/888
  60796. }
  60797. },
  60798. head: {
  60799. height: math.unit(2.38, "feet"),
  60800. name: "Head",
  60801. image: {
  60802. source: "./media/characters/athena-bryzant/head.svg"
  60803. }
  60804. },
  60805. wings: {
  60806. height: math.unit(2.85, "feet"),
  60807. name: "Wings",
  60808. image: {
  60809. source: "./media/characters/athena-bryzant/wings.svg"
  60810. }
  60811. },
  60812. },
  60813. [
  60814. {
  60815. name: "Normal",
  60816. height: math.unit(6 + 7/12, "feet"),
  60817. default: true
  60818. },
  60819. {
  60820. name: "Big",
  60821. height: math.unit(8, "feet")
  60822. },
  60823. {
  60824. name: "Very Big",
  60825. height: math.unit(11, "feet")
  60826. },
  60827. ]
  60828. ))
  60829. characterMakers.push(() => makeCharacter(
  60830. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60831. {
  60832. side: {
  60833. height: math.unit(3, "meters"),
  60834. weight: math.unit(7500, "kg"),
  60835. preyCapacity: math.unit(1e12, "people"),
  60836. name: "Side",
  60837. image: {
  60838. source: "./media/characters/zel-kesh/side.svg",
  60839. extra: 910/407,
  60840. bottom: 147/1057
  60841. }
  60842. },
  60843. },
  60844. [
  60845. {
  60846. name: "Normal",
  60847. height: math.unit(3, "meters"),
  60848. default: true
  60849. },
  60850. ]
  60851. ))
  60852. characterMakers.push(() => makeCharacter(
  60853. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60854. {
  60855. front: {
  60856. height: math.unit(2, "meters"),
  60857. weight: math.unit(95, "kg"),
  60858. name: "Front",
  60859. image: {
  60860. source: "./media/characters/kane-fox/front.svg",
  60861. extra: 945/888,
  60862. bottom: 27/972
  60863. }
  60864. },
  60865. back: {
  60866. height: math.unit(2, "meters"),
  60867. weight: math.unit(95, "kg"),
  60868. name: "Back",
  60869. image: {
  60870. source: "./media/characters/kane-fox/back.svg",
  60871. extra: 959/914,
  60872. bottom: 15/974
  60873. }
  60874. },
  60875. frontLewd: {
  60876. height: math.unit(2, "meters"),
  60877. weight: math.unit(95, "kg"),
  60878. name: "Front (Lewd)",
  60879. image: {
  60880. source: "./media/characters/kane-fox/front-lewd.svg",
  60881. extra: 945/888,
  60882. bottom: 27/972
  60883. }
  60884. },
  60885. },
  60886. [
  60887. {
  60888. name: "Home Size",
  60889. height: math.unit(2, "meters"),
  60890. default: true
  60891. },
  60892. {
  60893. name: "Macro",
  60894. height: math.unit(200, "meters")
  60895. },
  60896. {
  60897. name: "Small Mega",
  60898. height: math.unit(3, "km")
  60899. },
  60900. {
  60901. name: "Mega",
  60902. height: math.unit(50, "km")
  60903. },
  60904. {
  60905. name: "Giga",
  60906. height: math.unit(200, "km")
  60907. },
  60908. {
  60909. name: "Giga+",
  60910. height: math.unit(2500, "km")
  60911. },
  60912. {
  60913. name: "Terra",
  60914. height: math.unit(70000, "km")
  60915. },
  60916. {
  60917. name: "Terra+",
  60918. height: math.unit(150000, "km")
  60919. },
  60920. {
  60921. name: "Terra++",
  60922. height: math.unit(400000, "km")
  60923. },
  60924. ]
  60925. ))
  60926. characterMakers.push(() => makeCharacter(
  60927. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60928. {
  60929. otter_front: {
  60930. height: math.unit(1.8, "meters"),
  60931. weight: math.unit(90, "kg"),
  60932. name: "Front",
  60933. image: {
  60934. source: "./media/characters/ayranus/otter-front.svg",
  60935. extra: 468/452,
  60936. bottom: 43/511
  60937. },
  60938. form: "otter",
  60939. },
  60940. otter_frontLewd: {
  60941. height: math.unit(1.8, "meters"),
  60942. weight: math.unit(90, "kg"),
  60943. name: "Front (Lewd)",
  60944. image: {
  60945. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60946. extra: 468/452,
  60947. bottom: 43/511
  60948. },
  60949. form: "otter",
  60950. },
  60951. lionbat_front: {
  60952. height: math.unit(1.8, "meters"),
  60953. weight: math.unit(90, "kg"),
  60954. name: "Front (Lewd)",
  60955. image: {
  60956. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60957. extra: 797/740,
  60958. bottom: 78/875
  60959. },
  60960. form: "lionbat",
  60961. },
  60962. paw: {
  60963. height: math.unit(1.5, "feet"),
  60964. name: "Paw",
  60965. image: {
  60966. source: "./media/characters/ayranus/paw.svg"
  60967. },
  60968. },
  60969. },
  60970. [
  60971. {
  60972. name: "Incognito",
  60973. height: math.unit(1.8, "meters"),
  60974. allForms: true
  60975. },
  60976. {
  60977. name: "Macro",
  60978. height: math.unit(60, "meters"),
  60979. allForms: true
  60980. },
  60981. {
  60982. name: "Macro+",
  60983. height: math.unit(200, "meters"),
  60984. allForms: true
  60985. },
  60986. {
  60987. name: "Mega",
  60988. height: math.unit(35, "km"),
  60989. allForms: true
  60990. },
  60991. {
  60992. name: "Giga",
  60993. height: math.unit(220, "km"),
  60994. allForms: true
  60995. },
  60996. {
  60997. name: "Giga+",
  60998. height: math.unit(1500, "km"),
  60999. allForms: true
  61000. },
  61001. {
  61002. name: "Terra",
  61003. height: math.unit(13000, "km"),
  61004. allForms: true
  61005. },
  61006. {
  61007. name: "Terra+",
  61008. height: math.unit(500000, "km"),
  61009. allForms: true
  61010. },
  61011. {
  61012. name: "Galactic",
  61013. height: math.unit(486080, "parsecs"),
  61014. default: true,
  61015. allForms: true
  61016. },
  61017. ],
  61018. {
  61019. "otter": {
  61020. name: "Otter",
  61021. default: true
  61022. },
  61023. "lionbat": {
  61024. name: "Lionbat",
  61025. },
  61026. }
  61027. ))
  61028. characterMakers.push(() => makeCharacter(
  61029. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61030. {
  61031. front: {
  61032. height: math.unit(7 + 4/12, "feet"),
  61033. weight: math.unit(400, "lb"),
  61034. name: "Front",
  61035. image: {
  61036. source: "./media/characters/proxy/front.svg",
  61037. extra: 1605/1542,
  61038. bottom: 55/1660
  61039. }
  61040. },
  61041. side: {
  61042. height: math.unit(7 + 4/12, "feet"),
  61043. weight: math.unit(400, "lb"),
  61044. name: "Side",
  61045. image: {
  61046. source: "./media/characters/proxy/side.svg",
  61047. extra: 794/759,
  61048. bottom: 6/800
  61049. }
  61050. },
  61051. hand: {
  61052. height: math.unit(1.54, "feet"),
  61053. name: "Hand",
  61054. image: {
  61055. source: "./media/characters/proxy/hand.svg"
  61056. }
  61057. },
  61058. paw: {
  61059. height: math.unit(1.53, "feet"),
  61060. name: "Paw",
  61061. image: {
  61062. source: "./media/characters/proxy/paw.svg"
  61063. }
  61064. },
  61065. maw: {
  61066. height: math.unit(1.9, "feet"),
  61067. name: "Maw",
  61068. image: {
  61069. source: "./media/characters/proxy/maw.svg"
  61070. }
  61071. },
  61072. },
  61073. [
  61074. {
  61075. name: "Normal",
  61076. height: math.unit(7 + 4/12, "feet"),
  61077. default: true
  61078. },
  61079. ]
  61080. ))
  61081. characterMakers.push(() => makeCharacter(
  61082. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61083. {
  61084. front: {
  61085. height: math.unit(4, "meters"),
  61086. name: "Front",
  61087. image: {
  61088. source: "./media/characters/crocozilla/front.svg",
  61089. extra: 1790/1742,
  61090. bottom: 78/1868
  61091. }
  61092. },
  61093. },
  61094. [
  61095. {
  61096. name: "Normal",
  61097. height: math.unit(4, "meters"),
  61098. default: true
  61099. },
  61100. ]
  61101. ))
  61102. characterMakers.push(() => makeCharacter(
  61103. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61104. {
  61105. front: {
  61106. height: math.unit(1.8, "meters"),
  61107. weight: math.unit(120, "kg"),
  61108. name: "Front",
  61109. image: {
  61110. source: "./media/characters/kurz/front.svg",
  61111. extra: 1960/1824,
  61112. bottom: 41/2001
  61113. }
  61114. },
  61115. back: {
  61116. height: math.unit(1.8, "meters"),
  61117. weight: math.unit(120, "kg"),
  61118. name: "Back",
  61119. image: {
  61120. source: "./media/characters/kurz/back.svg",
  61121. extra: 1906/1787,
  61122. bottom: 60/1966
  61123. }
  61124. },
  61125. frontLewd: {
  61126. height: math.unit(1.8, "meters"),
  61127. weight: math.unit(120, "kg"),
  61128. name: "Front (Lewd)",
  61129. image: {
  61130. source: "./media/characters/kurz/front-lewd.svg",
  61131. extra: 1960/1824,
  61132. bottom: 41/2001
  61133. }
  61134. },
  61135. maw: {
  61136. height: math.unit(0.69, "meters"),
  61137. name: "Maw",
  61138. image: {
  61139. source: "./media/characters/kurz/maw.svg"
  61140. }
  61141. },
  61142. },
  61143. [
  61144. {
  61145. name: "Original Size",
  61146. height: math.unit(1.8, "meters")
  61147. },
  61148. {
  61149. name: "Incognito Size",
  61150. height: math.unit(2.4, "meters"),
  61151. default: true
  61152. },
  61153. {
  61154. name: "Macro",
  61155. height: math.unit(30, "meters")
  61156. },
  61157. {
  61158. name: "Macro+",
  61159. height: math.unit(250, "meters")
  61160. },
  61161. {
  61162. name: "Mega",
  61163. height: math.unit(2, "km")
  61164. },
  61165. {
  61166. name: "Mega+",
  61167. height: math.unit(35, "km")
  61168. },
  61169. {
  61170. name: "Mega++",
  61171. height: math.unit(75, "km")
  61172. },
  61173. {
  61174. name: "Giga",
  61175. height: math.unit(250, "km")
  61176. },
  61177. {
  61178. name: "Terra",
  61179. height: math.unit(15000, "km")
  61180. },
  61181. {
  61182. name: "Terra+",
  61183. height: math.unit(2250000, "km")
  61184. },
  61185. ]
  61186. ))
  61187. characterMakers.push(() => makeCharacter(
  61188. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61189. {
  61190. front: {
  61191. height: math.unit(16 + 3/12, "feet"),
  61192. weight: math.unit(3575, "lb"),
  61193. name: "Front",
  61194. image: {
  61195. source: "./media/characters/nikita/front.svg",
  61196. extra: 1064/955,
  61197. bottom: 47/1111
  61198. }
  61199. },
  61200. },
  61201. [
  61202. {
  61203. name: "Normal",
  61204. height: math.unit(16 + 3/12, "feet"),
  61205. default: true
  61206. },
  61207. {
  61208. name: "Big",
  61209. height: math.unit(21, "feet")
  61210. },
  61211. {
  61212. name: "Biggest",
  61213. height: math.unit(50, "feet")
  61214. },
  61215. ]
  61216. ))
  61217. characterMakers.push(() => makeCharacter(
  61218. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61219. {
  61220. front: {
  61221. height: math.unit(1.92, "m"),
  61222. weight: math.unit(76, "kg"),
  61223. name: "Front",
  61224. image: {
  61225. source: "./media/characters/kyara/front.svg",
  61226. extra: 1550/1438,
  61227. bottom: 139/1689
  61228. }
  61229. },
  61230. back: {
  61231. height: math.unit(1.92, "m"),
  61232. weight: math.unit(76, "kg"),
  61233. name: "Back",
  61234. image: {
  61235. source: "./media/characters/kyara/back.svg",
  61236. extra: 1523/1427,
  61237. bottom: 83/1606
  61238. }
  61239. },
  61240. head: {
  61241. height: math.unit(1.22, "feet"),
  61242. name: "Head",
  61243. image: {
  61244. source: "./media/characters/kyara/head.svg"
  61245. }
  61246. },
  61247. maw: {
  61248. height: math.unit(0.73, "feet"),
  61249. name: "Maw",
  61250. image: {
  61251. source: "./media/characters/kyara/maw.svg"
  61252. }
  61253. },
  61254. paws: {
  61255. height: math.unit(0.95, "feet"),
  61256. name: "Paws",
  61257. image: {
  61258. source: "./media/characters/kyara/paws.svg"
  61259. }
  61260. },
  61261. },
  61262. [
  61263. {
  61264. name: "Normal",
  61265. height: math.unit(1.92, "meters"),
  61266. default: true
  61267. },
  61268. {
  61269. name: "Mini Macro",
  61270. height: math.unit(192, "meters")
  61271. },
  61272. {
  61273. name: "Macro",
  61274. height: math.unit(480, "meters")
  61275. },
  61276. {
  61277. name: "Mega Macro",
  61278. height: math.unit(1440, "meters")
  61279. },
  61280. ]
  61281. ))
  61282. characterMakers.push(() => makeCharacter(
  61283. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61284. {
  61285. front: {
  61286. height: math.unit(6, "feet"),
  61287. weight: math.unit(160, "lbs"),
  61288. preyCapacity: math.unit(0.05, "people"),
  61289. name: "Front",
  61290. image: {
  61291. source: "./media/characters/layla-amari/front.svg",
  61292. extra: 1922/1723,
  61293. bottom: 90/2012
  61294. }
  61295. },
  61296. back: {
  61297. height: math.unit(6, "feet"),
  61298. weight: math.unit(160, "lbs"),
  61299. preyCapacity: math.unit(0.05, "people"),
  61300. name: "Back",
  61301. image: {
  61302. source: "./media/characters/layla-amari/back.svg",
  61303. extra: 1917/1718,
  61304. bottom: 50/1967
  61305. }
  61306. },
  61307. frontDressed: {
  61308. height: math.unit(6, "feet"),
  61309. weight: math.unit(160, "lbs"),
  61310. preyCapacity: math.unit(0.05, "people"),
  61311. name: "Front (Dressed)",
  61312. image: {
  61313. source: "./media/characters/layla-amari/front-dressed.svg",
  61314. extra: 1922/1723,
  61315. bottom: 90/2012
  61316. }
  61317. },
  61318. face: {
  61319. height: math.unit(0.93, "feet"),
  61320. name: "Face",
  61321. image: {
  61322. source: "./media/characters/layla-amari/face.svg"
  61323. }
  61324. },
  61325. hand: {
  61326. height: math.unit(0.66 , "feet"),
  61327. name: "Hand",
  61328. image: {
  61329. source: "./media/characters/layla-amari/hand.svg"
  61330. }
  61331. },
  61332. foot: {
  61333. height: math.unit(1, "feet"),
  61334. name: "Foot",
  61335. image: {
  61336. source: "./media/characters/layla-amari/foot.svg"
  61337. }
  61338. },
  61339. necklace: {
  61340. height: math.unit(0.32, "feet"),
  61341. name: "Necklace",
  61342. image: {
  61343. source: "./media/characters/layla-amari/necklace.svg"
  61344. }
  61345. },
  61346. nipple: {
  61347. height: math.unit(0.2, "feet"),
  61348. name: "Nipple",
  61349. image: {
  61350. source: "./media/characters/layla-amari/nipple.svg"
  61351. }
  61352. },
  61353. slit: {
  61354. height: math.unit(0.26, "feet"),
  61355. name: "Slit",
  61356. image: {
  61357. source: "./media/characters/layla-amari/slit.svg"
  61358. }
  61359. },
  61360. },
  61361. [
  61362. {
  61363. name: "Natural",
  61364. height: math.unit(825, "feet"),
  61365. default: true
  61366. },
  61367. {
  61368. name: "Enhanced",
  61369. height: math.unit(8250, "feet")
  61370. },
  61371. {
  61372. name: "Apparent Size",
  61373. height: math.unit(9.04363e+8, "meters")
  61374. },
  61375. ]
  61376. ))
  61377. characterMakers.push(() => makeCharacter(
  61378. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61379. {
  61380. front: {
  61381. height: math.unit(1.3, "meters"),
  61382. name: "Front",
  61383. image: {
  61384. source: "./media/characters/percy/front.svg",
  61385. extra: 1444/1289,
  61386. bottom: 54/1498
  61387. }
  61388. },
  61389. },
  61390. [
  61391. {
  61392. name: "Normal",
  61393. height: math.unit(1.3, "meters"),
  61394. default: true
  61395. },
  61396. ]
  61397. ))
  61398. characterMakers.push(() => makeCharacter(
  61399. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61400. {
  61401. side: {
  61402. height: math.unit(10, "meters"),
  61403. name: "Side",
  61404. image: {
  61405. source: "./media/characters/grev/side.svg",
  61406. extra: 653/266,
  61407. bottom: 77/730
  61408. }
  61409. },
  61410. head: {
  61411. height: math.unit(16.2, "m"),
  61412. name: "Head",
  61413. image: {
  61414. source: "./media/characters/grev/head.svg"
  61415. }
  61416. },
  61417. dick: {
  61418. height: math.unit(2.8135932034, "m"),
  61419. name: "Dick",
  61420. image: {
  61421. source: "./media/characters/grev/dick.svg"
  61422. }
  61423. },
  61424. },
  61425. [
  61426. {
  61427. name: "Friend-Sized",
  61428. height: math.unit(80, "cm")
  61429. },
  61430. {
  61431. name: "Normal",
  61432. height: math.unit(10, "meters"),
  61433. default: true
  61434. },
  61435. {
  61436. name: "Macro",
  61437. height: math.unit(200, "meters")
  61438. },
  61439. ]
  61440. ))
  61441. characterMakers.push(() => makeCharacter(
  61442. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61443. {
  61444. front: {
  61445. height: math.unit(19.75, "feet"),
  61446. weight: math.unit(20000, "lb"),
  61447. name: "Front",
  61448. image: {
  61449. source: "./media/characters/azuuca/front.svg",
  61450. extra: 1593/1511,
  61451. bottom: 55/1648
  61452. }
  61453. },
  61454. },
  61455. [
  61456. {
  61457. name: "Normal",
  61458. height: math.unit(19.75, "feet"),
  61459. default: true
  61460. },
  61461. ]
  61462. ))
  61463. characterMakers.push(() => makeCharacter(
  61464. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61465. {
  61466. front: {
  61467. height: math.unit(15, "feet"),
  61468. weight: math.unit(1500, "lb"),
  61469. name: "Front",
  61470. image: {
  61471. source: "./media/characters/valuria/front.svg",
  61472. extra: 1588/1486,
  61473. bottom: 31/1619
  61474. }
  61475. },
  61476. },
  61477. [
  61478. {
  61479. name: "Normal",
  61480. height: math.unit(15, "feet"),
  61481. default: true
  61482. },
  61483. {
  61484. name: "Small",
  61485. height: math.unit(500, "feet")
  61486. },
  61487. {
  61488. name: "Macro",
  61489. height: math.unit(4000, "feet")
  61490. },
  61491. {
  61492. name: "Mega Macro",
  61493. height: math.unit(2000, "miles")
  61494. },
  61495. {
  61496. name: "Giga Macro",
  61497. height: math.unit(3e6, "miles")
  61498. },
  61499. ]
  61500. ))
  61501. characterMakers.push(() => makeCharacter(
  61502. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61503. {
  61504. front: {
  61505. height: math.unit(3500, "solarradii"),
  61506. name: "Front",
  61507. image: {
  61508. source: "./media/characters/terigaia/front.svg",
  61509. extra: 1531/1451,
  61510. bottom: 98/1629
  61511. }
  61512. },
  61513. },
  61514. [
  61515. {
  61516. name: "Normal",
  61517. height: math.unit(3500, "solarradii"),
  61518. default: true
  61519. },
  61520. ]
  61521. ))
  61522. characterMakers.push(() => makeCharacter(
  61523. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61524. {
  61525. front: {
  61526. height: math.unit(9.34, "feet"),
  61527. weight: math.unit(600, "lb"),
  61528. name: "Front",
  61529. image: {
  61530. source: "./media/characters/blair-blaziken/front.svg",
  61531. extra: 1557/1462,
  61532. bottom: 55/1612
  61533. }
  61534. },
  61535. },
  61536. [
  61537. {
  61538. name: "Normal",
  61539. height: math.unit(9.34, "feet"),
  61540. default: true
  61541. },
  61542. ]
  61543. ))
  61544. characterMakers.push(() => makeCharacter(
  61545. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61546. {
  61547. pistrogre_front: {
  61548. height: math.unit(10, "feet"),
  61549. weight: math.unit(10, "tons"),
  61550. name: "Front",
  61551. image: {
  61552. source: "./media/characters/braxia/pistrogre-front.svg",
  61553. extra: 1531/1334,
  61554. bottom: 114/1645
  61555. },
  61556. form: "pistrogre",
  61557. default: true
  61558. },
  61559. human_front: {
  61560. height: math.unit(10, "feet"),
  61561. weight: math.unit(10, "tons"),
  61562. name: "Front",
  61563. image: {
  61564. source: "./media/characters/braxia/human-front.svg",
  61565. extra: 1574/1501,
  61566. bottom: 37/1611
  61567. },
  61568. form: "human",
  61569. default: true
  61570. },
  61571. },
  61572. [
  61573. {
  61574. name: "Normal",
  61575. height: math.unit(10, "feet"),
  61576. default: true,
  61577. allForms: true
  61578. },
  61579. {
  61580. name: "Macro",
  61581. height: math.unit(1000, "feet"),
  61582. allForms: true
  61583. },
  61584. {
  61585. name: "Mega Macro",
  61586. height: math.unit(100, "miles"),
  61587. allForms: true
  61588. },
  61589. {
  61590. name: "Cosmic",
  61591. height: math.unit(1000000, "lightyears"),
  61592. allForms: true
  61593. },
  61594. {
  61595. name: "ϐѮԆԬӁꭍϞԢ",
  61596. height: math.unit(1000, "multiverses"),
  61597. allForms: true
  61598. },
  61599. ],
  61600. {
  61601. "pistrogre": {
  61602. name: "Pistrogre",
  61603. default: true
  61604. },
  61605. "human": {
  61606. name: "Human",
  61607. },
  61608. }
  61609. ))
  61610. characterMakers.push(() => makeCharacter(
  61611. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61612. {
  61613. front: {
  61614. height: math.unit(6 + 1/12, "feet"),
  61615. weight: math.unit(280, "lb"),
  61616. name: "Front",
  61617. image: {
  61618. source: "./media/characters/kiriga-yato/front.svg",
  61619. extra: 445/394,
  61620. bottom: 11/456
  61621. }
  61622. },
  61623. },
  61624. [
  61625. {
  61626. name: "Descended",
  61627. height: math.unit(3, "feet")
  61628. },
  61629. {
  61630. name: "Average",
  61631. height: math.unit(6 + 1/12, "feet"),
  61632. default: true
  61633. },
  61634. {
  61635. name: "Ascended",
  61636. height: math.unit(9 + 2/12, "feet")
  61637. },
  61638. ]
  61639. ))
  61640. characterMakers.push(() => makeCharacter(
  61641. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61642. {
  61643. front: {
  61644. height: math.unit(6, "feet"),
  61645. weight: math.unit(150, "lb"),
  61646. name: "Front",
  61647. image: {
  61648. source: "./media/characters/kylie/front.svg",
  61649. extra: 1114/1046,
  61650. bottom: 65/1179
  61651. },
  61652. extraAttributes: {
  61653. "hoofSize": {
  61654. name: "Hoof Size",
  61655. power: 2,
  61656. type: "area",
  61657. base: math.unit(0.034, "m^2")
  61658. },
  61659. "footSize": {
  61660. name: "Foot Size",
  61661. power: 2,
  61662. type: "area",
  61663. base: math.unit(0.75, "m^2")
  61664. },
  61665. }
  61666. },
  61667. side: {
  61668. height: math.unit(6, "feet"),
  61669. weight: math.unit(150, "lb"),
  61670. name: "Side",
  61671. image: {
  61672. source: "./media/characters/kylie/side.svg",
  61673. extra: 1178/1110,
  61674. bottom: 21/1199
  61675. },
  61676. extraAttributes: {
  61677. "hoofSize": {
  61678. name: "Hoof Size",
  61679. power: 2,
  61680. type: "area",
  61681. base: math.unit(0.034, "m^2")
  61682. },
  61683. "footSize": {
  61684. name: "Foot Size",
  61685. power: 2,
  61686. type: "area",
  61687. base: math.unit(0.75, "m^2")
  61688. },
  61689. }
  61690. },
  61691. back: {
  61692. height: math.unit(6, "feet"),
  61693. weight: math.unit(150, "lb"),
  61694. name: "Back",
  61695. image: {
  61696. source: "./media/characters/kylie/back.svg",
  61697. extra: 1115/1047,
  61698. bottom: 66/1181
  61699. },
  61700. extraAttributes: {
  61701. "hoofSize": {
  61702. name: "Hoof Size",
  61703. power: 2,
  61704. type: "area",
  61705. base: math.unit(0.034, "m^2")
  61706. },
  61707. "footSize": {
  61708. name: "Foot Size",
  61709. power: 2,
  61710. type: "area",
  61711. base: math.unit(0.75, "m^2")
  61712. },
  61713. }
  61714. },
  61715. head: {
  61716. height: math.unit(1.85, "feet"),
  61717. name: "Head",
  61718. image: {
  61719. source: "./media/characters/kylie/head.svg"
  61720. }
  61721. },
  61722. },
  61723. [
  61724. {
  61725. name: "Normal",
  61726. height: math.unit(90, "meters"),
  61727. default: true
  61728. },
  61729. ]
  61730. ))
  61731. characterMakers.push(() => makeCharacter(
  61732. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61733. {
  61734. front: {
  61735. height: math.unit(245, "feet"),
  61736. weight: math.unit(400000, "lb"),
  61737. name: "Front",
  61738. image: {
  61739. source: "./media/characters/sabado/front.svg",
  61740. extra: 1309/1164,
  61741. bottom: 29/1338
  61742. }
  61743. },
  61744. },
  61745. [
  61746. {
  61747. name: "Normal",
  61748. height: math.unit(245, "feet"),
  61749. default: true
  61750. },
  61751. ]
  61752. ))
  61753. characterMakers.push(() => makeCharacter(
  61754. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61755. {
  61756. shark_front: {
  61757. height: math.unit(2, "meters"),
  61758. weight: math.unit(200, "kg"),
  61759. name: "Front",
  61760. image: {
  61761. source: "./media/characters/zechal/shark-front.svg",
  61762. extra: 969/925,
  61763. bottom: 74/1043
  61764. },
  61765. form: "shark",
  61766. },
  61767. shark_back: {
  61768. height: math.unit(2, "meters"),
  61769. weight: math.unit(200, "kg"),
  61770. name: "Back",
  61771. image: {
  61772. source: "./media/characters/zechal/shark-back.svg",
  61773. extra: 994/949,
  61774. bottom: 176/1170
  61775. },
  61776. form: "shark",
  61777. },
  61778. shark_frontLewd: {
  61779. height: math.unit(2, "meters"),
  61780. weight: math.unit(200, "kg"),
  61781. name: "Front (Lewd)",
  61782. image: {
  61783. source: "./media/characters/zechal/shark-front-lewd.svg",
  61784. extra: 969/925,
  61785. bottom: 74/1043
  61786. },
  61787. form: "shark",
  61788. },
  61789. shark_side: {
  61790. height: math.unit(1.56, "meters"),
  61791. weight: math.unit(200, "kg"),
  61792. name: "Side",
  61793. image: {
  61794. source: "./media/characters/zechal/shark-side.svg"
  61795. },
  61796. form: "shark",
  61797. },
  61798. dragon_front: {
  61799. height: math.unit(2, "meters"),
  61800. weight: math.unit(200, "kg"),
  61801. name: "Front",
  61802. image: {
  61803. source: "./media/characters/zechal/dragon-front.svg",
  61804. extra: 1041/925,
  61805. bottom: 74/1115
  61806. },
  61807. form: "dragon",
  61808. },
  61809. dragon_back: {
  61810. height: math.unit(2, "meters"),
  61811. weight: math.unit(200, "kg"),
  61812. name: "Back",
  61813. image: {
  61814. source: "./media/characters/zechal/dragon-back.svg",
  61815. extra: 1061/949,
  61816. bottom: 176/1237
  61817. },
  61818. form: "dragon",
  61819. },
  61820. dragon_frontLewd: {
  61821. height: math.unit(2, "meters"),
  61822. weight: math.unit(200, "kg"),
  61823. name: "Front (Lewd)",
  61824. image: {
  61825. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61826. extra: 1041/925,
  61827. bottom: 74/1115
  61828. },
  61829. form: "dragon",
  61830. },
  61831. dragon_side: {
  61832. height: math.unit(1.56, "meters"),
  61833. weight: math.unit(200, "kg"),
  61834. name: "Side",
  61835. image: {
  61836. source: "./media/characters/zechal/dragon-side.svg"
  61837. },
  61838. form: "dragon",
  61839. },
  61840. foot: {
  61841. height: math.unit(0.5, "meters"),
  61842. name: "Foot",
  61843. image: {
  61844. source: "./media/characters/zechal/foot.svg"
  61845. }
  61846. },
  61847. sheathFront: {
  61848. height: math.unit(0.45, "meters"),
  61849. name: "Sheath (Front)",
  61850. image: {
  61851. source: "./media/characters/zechal/sheath-front.svg"
  61852. }
  61853. },
  61854. sheathSide: {
  61855. height: math.unit(0.45, "meters"),
  61856. name: "Sheath (Side)",
  61857. image: {
  61858. source: "./media/characters/zechal/sheath-side.svg"
  61859. }
  61860. },
  61861. },
  61862. [
  61863. {
  61864. name: "Incognito",
  61865. height: math.unit(2, "meters"),
  61866. allForms: true
  61867. },
  61868. {
  61869. name: "Small Rampage",
  61870. height: math.unit(25, "meters"),
  61871. allForms: true
  61872. },
  61873. {
  61874. name: "Home Size",
  61875. height: math.unit(250, "meters"),
  61876. allForms: true,
  61877. default: true
  61878. },
  61879. {
  61880. name: "Macro+",
  61881. height: math.unit(700, "meters"),
  61882. allForms: true
  61883. },
  61884. {
  61885. name: "Small Mega",
  61886. height: math.unit(3, "km"),
  61887. allForms: true
  61888. },
  61889. {
  61890. name: "Mega",
  61891. height: math.unit(15, "km"),
  61892. allForms: true
  61893. },
  61894. {
  61895. name: "Giga",
  61896. height: math.unit(300, "km"),
  61897. allForms: true
  61898. },
  61899. {
  61900. name: "Giga+",
  61901. height: math.unit(1750, "km"),
  61902. allForms: true
  61903. },
  61904. {
  61905. name: "Continental",
  61906. height: math.unit(5000, "km"),
  61907. allForms: true
  61908. },
  61909. {
  61910. name: "Terra",
  61911. height: math.unit(20000, "km"),
  61912. allForms: true
  61913. },
  61914. {
  61915. name: "Terra+",
  61916. height: math.unit(300000, "km"),
  61917. allForms: true
  61918. },
  61919. {
  61920. name: "Solar",
  61921. height: math.unit(40000000, "km"),
  61922. allForms: true
  61923. },
  61924. {
  61925. name: "Galactic",
  61926. height: math.unit(810133, "parsecs"),
  61927. allForms: true
  61928. },
  61929. {
  61930. name: "Universal",
  61931. height: math.unit(25, "universes"),
  61932. allForms: true
  61933. },
  61934. ],
  61935. {
  61936. "shark": {
  61937. name: "Shark",
  61938. default: true
  61939. },
  61940. "dragon": {
  61941. name: "Dragon",
  61942. },
  61943. }
  61944. ))
  61945. characterMakers.push(() => makeCharacter(
  61946. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61947. {
  61948. front: {
  61949. height: math.unit(2.2, "meters"),
  61950. weight: math.unit(150, "kg"),
  61951. name: "Front",
  61952. image: {
  61953. source: "./media/characters/sergis/front.svg",
  61954. extra: 1314/1312,
  61955. bottom: 112/1426
  61956. }
  61957. },
  61958. back: {
  61959. height: math.unit(2.2, "meters"),
  61960. weight: math.unit(150, "kg"),
  61961. name: "Back",
  61962. image: {
  61963. source: "./media/characters/sergis/back.svg",
  61964. extra: 1335/1333,
  61965. bottom: 19/1354
  61966. }
  61967. },
  61968. frontLewd: {
  61969. height: math.unit(2.2, "meters"),
  61970. weight: math.unit(150, "kg"),
  61971. name: "Front (Lewd)",
  61972. image: {
  61973. source: "./media/characters/sergis/front-lewd.svg",
  61974. extra: 1314/1312,
  61975. bottom: 112/1426
  61976. }
  61977. },
  61978. frontDressed: {
  61979. height: math.unit(2.2, "meters"),
  61980. weight: math.unit(150, "kg"),
  61981. name: "Front (Dressed)",
  61982. image: {
  61983. source: "./media/characters/sergis/front-dressed.svg",
  61984. extra: 1330/1328,
  61985. bottom: 95/1425
  61986. }
  61987. },
  61988. frontDressedLewd: {
  61989. height: math.unit(2.2, "meters"),
  61990. weight: math.unit(150, "kg"),
  61991. name: "Front (Dressed, Lewd)",
  61992. image: {
  61993. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61994. extra: 1330/1328,
  61995. bottom: 95/1425
  61996. }
  61997. },
  61998. maw: {
  61999. height: math.unit(0.48, "meters"),
  62000. name: "Maw",
  62001. image: {
  62002. source: "./media/characters/sergis/maw.svg"
  62003. }
  62004. },
  62005. sheath: {
  62006. height: math.unit(0.38, "meters"),
  62007. name: "Sheath",
  62008. image: {
  62009. source: "./media/characters/sergis/sheath.svg"
  62010. }
  62011. },
  62012. },
  62013. [
  62014. {
  62015. name: "Incognito Size",
  62016. height: math.unit(2.2, "meters")
  62017. },
  62018. {
  62019. name: "Small Macro",
  62020. height: math.unit(40, "meters")
  62021. },
  62022. {
  62023. name: "Macro",
  62024. height: math.unit(150, "meters")
  62025. },
  62026. {
  62027. name: "Macro+",
  62028. height: math.unit(300, "meters")
  62029. },
  62030. {
  62031. name: "Mega",
  62032. height: math.unit(2.5, "km")
  62033. },
  62034. {
  62035. name: "Mega+",
  62036. height: math.unit(30, "km")
  62037. },
  62038. {
  62039. name: "Home Size",
  62040. height: math.unit(300, "km"),
  62041. default: true
  62042. },
  62043. {
  62044. name: "Giga+",
  62045. height: math.unit(1000, "km")
  62046. },
  62047. {
  62048. name: "Giga++",
  62049. height: math.unit(6000, "km")
  62050. },
  62051. {
  62052. name: "Terra",
  62053. height: math.unit(70000, "km")
  62054. },
  62055. {
  62056. name: "Terra+",
  62057. height: math.unit(200000, "km")
  62058. },
  62059. {
  62060. name: "Galactic",
  62061. height: math.unit(634200, "lightyears")
  62062. },
  62063. ]
  62064. ))
  62065. characterMakers.push(() => makeCharacter(
  62066. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62067. {
  62068. standard: {
  62069. height: math.unit(1 + 5/12, "feet"),
  62070. name: "Standard",
  62071. image: {
  62072. source: "./media/characters/spade/standard.svg",
  62073. extra: 1794/1703,
  62074. bottom: 115/1909
  62075. }
  62076. },
  62077. disguised: {
  62078. height: math.unit(1 + 5/12, "feet"),
  62079. name: "Disguised",
  62080. image: {
  62081. source: "./media/characters/spade/disguised.svg",
  62082. extra: 1794/1700,
  62083. bottom: 98/1892
  62084. }
  62085. },
  62086. },
  62087. [
  62088. {
  62089. name: "Normal",
  62090. height: math.unit(1 + 5/12, "feet"),
  62091. default: true
  62092. },
  62093. ]
  62094. ))
  62095. characterMakers.push(() => makeCharacter(
  62096. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62097. {
  62098. frontNsfw: {
  62099. height: math.unit(5, "meters"),
  62100. weight: math.unit(2000, "kg"),
  62101. preyCapacity: math.unit(5, "people"),
  62102. name: "Front (NSFW)",
  62103. image: {
  62104. source: "./media/characters/zeanlain/front-nsfw.svg",
  62105. extra: 1087/938,
  62106. bottom: 93/1180
  62107. },
  62108. extraAttributes: {
  62109. "wingspan": {
  62110. name: "Wingspan",
  62111. power: 1,
  62112. type: "length",
  62113. base: math.unit(10, "meters")
  62114. },
  62115. "footSize": {
  62116. name: "Foot Size",
  62117. power: 1,
  62118. type: "length",
  62119. base: math.unit(0.68, "meters")
  62120. },
  62121. "cockLength": {
  62122. name: "Cock Length",
  62123. power: 1,
  62124. type: "length",
  62125. base: math.unit(1.69, "meters")
  62126. },
  62127. "ballVolume": {
  62128. name: "Ball Volume",
  62129. power: 3,
  62130. type: "volume",
  62131. base: math.unit(0.028, "m^3")
  62132. },
  62133. }
  62134. },
  62135. front: {
  62136. height: math.unit(5, "meters"),
  62137. weight: math.unit(2000, "kg"),
  62138. preyCapacity: math.unit(3, "people"),
  62139. name: "Front",
  62140. image: {
  62141. source: "./media/characters/zeanlain/front.svg",
  62142. extra: 1087/938,
  62143. bottom: 93/1180
  62144. },
  62145. extraAttributes: {
  62146. "wingspan": {
  62147. name: "Wingspan",
  62148. power: 1,
  62149. type: "length",
  62150. base: math.unit(10, "meters")
  62151. },
  62152. "footSize": {
  62153. name: "Foot Size",
  62154. power: 1,
  62155. type: "length",
  62156. base: math.unit(0.68, "meters")
  62157. },
  62158. }
  62159. },
  62160. },
  62161. [
  62162. {
  62163. name: "Normal",
  62164. height: math.unit(5, "meters"),
  62165. default: true
  62166. },
  62167. ]
  62168. ))
  62169. characterMakers.push(() => makeCharacter(
  62170. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62171. {
  62172. front: {
  62173. height: math.unit(10, "meters"),
  62174. weight: math.unit(250000, "kg"),
  62175. name: "Front",
  62176. image: {
  62177. source: "./media/characters/airamis/front.svg",
  62178. extra: 865/835,
  62179. bottom: 13/878
  62180. }
  62181. },
  62182. },
  62183. [
  62184. {
  62185. name: "Normal",
  62186. height: math.unit(10, "meters"),
  62187. default: true
  62188. },
  62189. ]
  62190. ))
  62191. characterMakers.push(() => makeCharacter(
  62192. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62193. {
  62194. front: {
  62195. height: math.unit(3 + 3/12, "feet"),
  62196. weight: math.unit(75, "lb"),
  62197. name: "Front",
  62198. image: {
  62199. source: "./media/characters/corra-tourmaline/front.svg",
  62200. extra: 1037/864,
  62201. bottom: 39/1076
  62202. }
  62203. },
  62204. back: {
  62205. height: math.unit(3 + 3/12, "feet"),
  62206. weight: math.unit(75, "lb"),
  62207. name: "Back",
  62208. image: {
  62209. source: "./media/characters/corra-tourmaline/back.svg",
  62210. extra: 1022/849,
  62211. bottom: 26/1048
  62212. }
  62213. },
  62214. dressed: {
  62215. height: math.unit(3 + 3/12, "feet"),
  62216. weight: math.unit(75, "lb"),
  62217. name: "Dressed",
  62218. image: {
  62219. source: "./media/characters/corra-tourmaline/dressed.svg",
  62220. extra: 1037/864,
  62221. bottom: 39/1076
  62222. }
  62223. },
  62224. beans: {
  62225. height: math.unit(0.37, "feet"),
  62226. name: "Beans",
  62227. image: {
  62228. source: "./media/characters/corra-tourmaline/beans.svg"
  62229. }
  62230. },
  62231. },
  62232. [
  62233. {
  62234. name: "Normal",
  62235. height: math.unit(3 + 3/12, "feet"),
  62236. default: true
  62237. },
  62238. {
  62239. name: "Macro",
  62240. height: math.unit(32, "feet")
  62241. },
  62242. ]
  62243. ))
  62244. characterMakers.push(() => makeCharacter(
  62245. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62246. {
  62247. front: {
  62248. height: math.unit(6 + 2/12, "feet"),
  62249. weight: math.unit(203, "lb"),
  62250. name: "Front",
  62251. image: {
  62252. source: "./media/characters/maki-kawa/front.svg",
  62253. extra: 950/890,
  62254. bottom: 62/1012
  62255. }
  62256. },
  62257. back: {
  62258. height: math.unit(6 + 2/12, "feet"),
  62259. weight: math.unit(203, "lb"),
  62260. name: "Back",
  62261. image: {
  62262. source: "./media/characters/maki-kawa/back.svg",
  62263. extra: 953/878,
  62264. bottom: 49/1002
  62265. }
  62266. },
  62267. frontBarista: {
  62268. height: math.unit(6 + 2/12, "feet"),
  62269. weight: math.unit(203, "lb"),
  62270. name: "Front (Barista)",
  62271. image: {
  62272. source: "./media/characters/maki-kawa/front-barista.svg",
  62273. extra: 943/883,
  62274. bottom: 69/1012
  62275. }
  62276. },
  62277. backBarista: {
  62278. height: math.unit(6 + 2/12, "feet"),
  62279. weight: math.unit(203, "lb"),
  62280. name: "Back (Barista)",
  62281. image: {
  62282. source: "./media/characters/maki-kawa/back-barista.svg",
  62283. extra: 953/878,
  62284. bottom: 49/1002
  62285. }
  62286. },
  62287. frontWrestler: {
  62288. height: math.unit(6 + 2/12, "feet"),
  62289. weight: math.unit(203, "lb"),
  62290. name: "Front (Wrestler)",
  62291. image: {
  62292. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62293. extra: 950/890,
  62294. bottom: 62/1012
  62295. }
  62296. },
  62297. backWrestler: {
  62298. height: math.unit(6 + 2/12, "feet"),
  62299. weight: math.unit(203, "lb"),
  62300. name: "Back (Wrestler)",
  62301. image: {
  62302. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62303. extra: 953/878,
  62304. bottom: 49/1002
  62305. }
  62306. },
  62307. headFront: {
  62308. height: math.unit(1.64, "feet"),
  62309. name: "Head (Front)",
  62310. image: {
  62311. source: "./media/characters/maki-kawa/head-front.svg"
  62312. }
  62313. },
  62314. headSide: {
  62315. height: math.unit(1.59, "feet"),
  62316. name: "Head (Side)",
  62317. image: {
  62318. source: "./media/characters/maki-kawa/head-side.svg"
  62319. }
  62320. },
  62321. paw: {
  62322. height: math.unit(0.9, "feet"),
  62323. name: "Paw",
  62324. image: {
  62325. source: "./media/characters/maki-kawa/paw.svg"
  62326. }
  62327. },
  62328. },
  62329. [
  62330. {
  62331. name: "Normal",
  62332. height: math.unit(6 + 2/12, "feet"),
  62333. default: true
  62334. },
  62335. {
  62336. name: "Macro",
  62337. height: math.unit(617, "feet")
  62338. },
  62339. ]
  62340. ))
  62341. characterMakers.push(() => makeCharacter(
  62342. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62343. {
  62344. front: {
  62345. height: math.unit(10, "feet"),
  62346. weight: math.unit(1500, "lb"),
  62347. name: "Front",
  62348. image: {
  62349. source: "./media/characters/lennox/front.svg",
  62350. extra: 1623/1496,
  62351. bottom: 18/1641
  62352. }
  62353. },
  62354. back: {
  62355. height: math.unit(10, "feet"),
  62356. weight: math.unit(1500, "lb"),
  62357. name: "Back",
  62358. image: {
  62359. source: "./media/characters/lennox/back.svg",
  62360. extra: 1641/1481,
  62361. bottom: 13/1654
  62362. }
  62363. },
  62364. maw: {
  62365. height: math.unit(2.94, "feet"),
  62366. name: "Maw",
  62367. image: {
  62368. source: "./media/characters/lennox/maw.svg"
  62369. }
  62370. },
  62371. },
  62372. [
  62373. {
  62374. name: "Micro",
  62375. height: math.unit(1, "inch")
  62376. },
  62377. {
  62378. name: "Normal",
  62379. height: math.unit(10, "feet"),
  62380. default: true
  62381. },
  62382. {
  62383. name: "Macro",
  62384. height: math.unit(200, "feet")
  62385. },
  62386. ]
  62387. ))
  62388. characterMakers.push(() => makeCharacter(
  62389. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62390. {
  62391. frontDressed: {
  62392. height: math.unit(15 + 7/12, "feet"),
  62393. weight: math.unit(5000, "lb"),
  62394. name: "Front (Dressed)",
  62395. image: {
  62396. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62397. extra: 1136/1023,
  62398. bottom: 51/1187
  62399. }
  62400. },
  62401. backDressed: {
  62402. height: math.unit(15 + 7/12, "feet"),
  62403. weight: math.unit(5000, "lb"),
  62404. name: "Back (Dressed)",
  62405. image: {
  62406. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62407. extra: 2359/2143,
  62408. bottom: 103/2462
  62409. }
  62410. },
  62411. front: {
  62412. height: math.unit(15 + 7/12, "feet"),
  62413. weight: math.unit(5000, "lb"),
  62414. name: "Front",
  62415. image: {
  62416. source: "./media/characters/vyse-iron-thunder/front.svg",
  62417. extra: 1136/1023,
  62418. bottom: 51/1187
  62419. }
  62420. },
  62421. hand: {
  62422. height: math.unit(2.36, "feet"),
  62423. name: "Hand",
  62424. image: {
  62425. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62426. }
  62427. },
  62428. foot: {
  62429. height: math.unit(1.72, "feet"),
  62430. name: "Foot",
  62431. image: {
  62432. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62433. }
  62434. },
  62435. mouth: {
  62436. height: math.unit(2, "feet"),
  62437. name: "Mouth",
  62438. image: {
  62439. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62440. }
  62441. },
  62442. eye: {
  62443. height: math.unit(0.58, "feet"),
  62444. name: "Eye",
  62445. image: {
  62446. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62447. }
  62448. },
  62449. },
  62450. [
  62451. {
  62452. name: "Normal",
  62453. height: math.unit(15 + 7/12, "feet"),
  62454. default: true
  62455. },
  62456. {
  62457. name: "Macro",
  62458. height: math.unit(157, "feet")
  62459. },
  62460. {
  62461. name: "Macro+",
  62462. height: math.unit(1570, "feet")
  62463. },
  62464. {
  62465. name: "Macro++",
  62466. height: math.unit(15700, "feet")
  62467. },
  62468. {
  62469. name: "Macro+++",
  62470. height: math.unit(157000, "feet")
  62471. },
  62472. {
  62473. name: "Macro++++",
  62474. height: math.unit(1570000, "feet")
  62475. },
  62476. ]
  62477. ))
  62478. characterMakers.push(() => makeCharacter(
  62479. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62480. {
  62481. side: {
  62482. height: math.unit(6, "feet"),
  62483. weight: math.unit(115, "lb"),
  62484. name: "Side",
  62485. image: {
  62486. source: "./media/characters/moonbeam/side.svg",
  62487. extra: 839/485,
  62488. bottom: 60/899
  62489. }
  62490. },
  62491. },
  62492. [
  62493. {
  62494. name: "Normal",
  62495. height: math.unit(6, "feet"),
  62496. default: true
  62497. },
  62498. ]
  62499. ))
  62500. characterMakers.push(() => makeCharacter(
  62501. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62502. {
  62503. front: {
  62504. height: math.unit(3500, "miles"),
  62505. weight: math.unit(1659, "petatonnes"),
  62506. name: "Front",
  62507. image: {
  62508. source: "./media/characters/baltica/front.svg",
  62509. extra: 429/428,
  62510. bottom: 41/470
  62511. }
  62512. },
  62513. back: {
  62514. height: math.unit(3500, "miles"),
  62515. weight: math.unit(1659, "petatonnes"),
  62516. name: "Back",
  62517. image: {
  62518. source: "./media/characters/baltica/back.svg",
  62519. extra: 452/451,
  62520. bottom: 8/460
  62521. }
  62522. },
  62523. },
  62524. [
  62525. {
  62526. name: "Gigamacro",
  62527. height: math.unit(3500, "miles"),
  62528. default: true
  62529. },
  62530. ]
  62531. ))
  62532. characterMakers.push(() => makeCharacter(
  62533. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62534. {
  62535. front: {
  62536. height: math.unit(6 + 10/12, "feet"),
  62537. weight: math.unit(200, "lb"),
  62538. name: "Front",
  62539. image: {
  62540. source: "./media/characters/shadow-wolf/front.svg",
  62541. extra: 1931/1760,
  62542. bottom: 88/2019
  62543. }
  62544. },
  62545. },
  62546. [
  62547. {
  62548. name: "Normal",
  62549. height: math.unit(6 + 10/12, "feet"),
  62550. default: true
  62551. },
  62552. ]
  62553. ))
  62554. characterMakers.push(() => makeCharacter(
  62555. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62556. {
  62557. front: {
  62558. height: math.unit(5 + 10/12, "feet"),
  62559. name: "Front",
  62560. image: {
  62561. source: "./media/characters/quincy-praying-mantis/front.svg",
  62562. extra: 1055/891,
  62563. bottom: 92/1147
  62564. }
  62565. },
  62566. soles: {
  62567. height: math.unit(0.85, "feet"),
  62568. name: "Soles",
  62569. image: {
  62570. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62571. extra: 429/324,
  62572. bottom: 89/518
  62573. },
  62574. extraAttributes: {
  62575. "shoeSize": {
  62576. name: "Shoe Size",
  62577. power: 1,
  62578. type: "length",
  62579. base: math.unit(23, "ShoeSizeMensUS"),
  62580. defaultUnit: "ShoeSizeMensUS"
  62581. },
  62582. }
  62583. },
  62584. foot: {
  62585. height: math.unit(0.72, "feet"),
  62586. name: "Foot",
  62587. image: {
  62588. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62589. extra: 349/349,
  62590. bottom: 76/425
  62591. }
  62592. },
  62593. },
  62594. [
  62595. {
  62596. name: "Normal",
  62597. height: math.unit(5 + 10/12, "feet"),
  62598. default: true
  62599. },
  62600. ]
  62601. ))
  62602. characterMakers.push(() => makeCharacter(
  62603. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62604. {
  62605. front: {
  62606. height: math.unit(6, "feet"),
  62607. name: "Front",
  62608. image: {
  62609. source: "./media/characters/christopher-redwood/front.svg",
  62610. extra: 1402/1341,
  62611. bottom: 23/1425
  62612. }
  62613. },
  62614. back: {
  62615. height: math.unit(6, "feet"),
  62616. name: "Back",
  62617. image: {
  62618. source: "./media/characters/christopher-redwood/back.svg",
  62619. extra: 1406/1345,
  62620. bottom: 36/1442
  62621. }
  62622. },
  62623. head: {
  62624. height: math.unit(1.685, "feet"),
  62625. name: "Head",
  62626. image: {
  62627. source: "./media/characters/christopher-redwood/head.svg"
  62628. }
  62629. },
  62630. },
  62631. [
  62632. {
  62633. name: "Normal",
  62634. height: math.unit(6, "feet"),
  62635. default: true
  62636. },
  62637. ]
  62638. ))
  62639. characterMakers.push(() => makeCharacter(
  62640. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62641. {
  62642. front: {
  62643. height: math.unit(1.9, "meters"),
  62644. weight: math.unit(140, "lb"),
  62645. name: "Front",
  62646. image: {
  62647. source: "./media/characters/kara-fox/front.svg",
  62648. extra: 766/711,
  62649. bottom: 41/807
  62650. }
  62651. },
  62652. back: {
  62653. height: math.unit(1.9, "meters"),
  62654. weight: math.unit(140, "lb"),
  62655. name: "Back",
  62656. image: {
  62657. source: "./media/characters/kara-fox/back.svg",
  62658. extra: 766/596,
  62659. bottom: 29/795
  62660. }
  62661. },
  62662. maw: {
  62663. height: math.unit(0.78, "feet"),
  62664. name: "Maw",
  62665. image: {
  62666. source: "./media/characters/kara-fox/maw.svg"
  62667. }
  62668. },
  62669. pawpads: {
  62670. height: math.unit(0.96, "feet"),
  62671. name: "Pawpads",
  62672. image: {
  62673. source: "./media/characters/kara-fox/pawpads.svg"
  62674. }
  62675. },
  62676. },
  62677. [
  62678. {
  62679. name: "Normal",
  62680. height: math.unit(1.9, "meters"),
  62681. default: true
  62682. },
  62683. {
  62684. name: "Giantess",
  62685. height: math.unit(80, "meters")
  62686. },
  62687. ]
  62688. ))
  62689. characterMakers.push(() => makeCharacter(
  62690. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62691. {
  62692. front: {
  62693. height: math.unit(12, "feet"),
  62694. name: "Front",
  62695. image: {
  62696. source: "./media/characters/naomi-espeon/front.svg",
  62697. extra: 892/797,
  62698. bottom: 5/897
  62699. }
  62700. },
  62701. back: {
  62702. height: math.unit(12, "feet"),
  62703. name: "Back",
  62704. image: {
  62705. source: "./media/characters/naomi-espeon/back.svg",
  62706. extra: 890/785,
  62707. bottom: 12/902
  62708. }
  62709. },
  62710. },
  62711. [
  62712. {
  62713. name: "Normal",
  62714. height: math.unit(12, "feet"),
  62715. default: true
  62716. },
  62717. ]
  62718. ))
  62719. characterMakers.push(() => makeCharacter(
  62720. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62721. {
  62722. anthro_front: {
  62723. height: math.unit(8, "feet"),
  62724. weight: math.unit(625, "lb"),
  62725. name: "Front",
  62726. image: {
  62727. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62728. extra: 638/574,
  62729. bottom: 73/711
  62730. },
  62731. form: "anthro",
  62732. default: true
  62733. },
  62734. anthro_back: {
  62735. height: math.unit(8, "feet"),
  62736. weight: math.unit(625, "lb"),
  62737. name: "Back",
  62738. image: {
  62739. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62740. extra: 674/614,
  62741. bottom: 7/681
  62742. },
  62743. form: "anthro",
  62744. },
  62745. taur_side: {
  62746. height: math.unit(16, "feet"),
  62747. weight: math.unit(4.5, "tons"),
  62748. name: "Side",
  62749. image: {
  62750. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62751. extra: 704/646,
  62752. bottom: 132/836
  62753. },
  62754. form: "taur",
  62755. default: true
  62756. },
  62757. },
  62758. [
  62759. {
  62760. name: "Normal",
  62761. height: math.unit(8, "feet"),
  62762. default: true,
  62763. form: "anthro"
  62764. },
  62765. {
  62766. name: "Normal",
  62767. height: math.unit(16, "feet"),
  62768. default: true,
  62769. form: "taur"
  62770. },
  62771. ],
  62772. {
  62773. "anthro": {
  62774. name: "Anthro",
  62775. default: true
  62776. },
  62777. "taur": {
  62778. name: "Taur",
  62779. },
  62780. }
  62781. ))
  62782. characterMakers.push(() => makeCharacter(
  62783. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62784. {
  62785. front: {
  62786. height: math.unit(190, "cm"),
  62787. weight: math.unit(110, "kg"),
  62788. name: "Front",
  62789. image: {
  62790. source: "./media/characters/amelie/front.svg",
  62791. extra: 530/442,
  62792. bottom: 35/565
  62793. }
  62794. },
  62795. },
  62796. [
  62797. {
  62798. name: "Normal",
  62799. height: math.unit(190, "cm"),
  62800. default: true
  62801. },
  62802. ]
  62803. ))
  62804. characterMakers.push(() => makeCharacter(
  62805. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62806. {
  62807. front: {
  62808. height: math.unit(21, "feet"),
  62809. weight: math.unit(30000, "lb"),
  62810. name: "Front",
  62811. image: {
  62812. source: "./media/characters/valence/front.svg",
  62813. extra: 1430/1306,
  62814. bottom: 51/1481
  62815. }
  62816. },
  62817. },
  62818. [
  62819. {
  62820. name: "Normal",
  62821. height: math.unit(21, "feet"),
  62822. default: true
  62823. },
  62824. ]
  62825. ))
  62826. characterMakers.push(() => makeCharacter(
  62827. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62828. {
  62829. front: {
  62830. height: math.unit(5 + 9/12, "feet"),
  62831. weight: math.unit(170, "lb"),
  62832. name: "Front",
  62833. image: {
  62834. source: "./media/characters/aurora-adkins/front.svg",
  62835. extra: 1141/1089,
  62836. bottom: 41/1182
  62837. }
  62838. },
  62839. },
  62840. [
  62841. {
  62842. name: "Tiny",
  62843. height: math.unit(7, "mm")
  62844. },
  62845. {
  62846. name: "Small",
  62847. height: math.unit(3.4, "inches")
  62848. },
  62849. {
  62850. name: "Normal",
  62851. height: math.unit(5 + 9/12, "feet"),
  62852. default: true
  62853. },
  62854. {
  62855. name: "Big",
  62856. height: math.unit(31, "feet")
  62857. },
  62858. {
  62859. name: "Giant",
  62860. height: math.unit(300, "feet")
  62861. },
  62862. ]
  62863. ))
  62864. characterMakers.push(() => makeCharacter(
  62865. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62866. {
  62867. front: {
  62868. height: math.unit(5 + 6/12, "feet"),
  62869. weight: math.unit(210, "lb"),
  62870. name: "Front",
  62871. image: {
  62872. source: "./media/characters/cyber/front.svg",
  62873. extra: 1968/1798,
  62874. bottom: 10/1978
  62875. },
  62876. extraAttributes: {
  62877. "shoeSize": {
  62878. name: "Shoe Size",
  62879. power: 1,
  62880. type: "length",
  62881. base: math.unit(30, "ShoeSizeMensUS")
  62882. },
  62883. }
  62884. },
  62885. },
  62886. [
  62887. {
  62888. name: "Normal",
  62889. height: math.unit(5 + 6/12, "feet"),
  62890. default: true
  62891. },
  62892. ]
  62893. ))
  62894. characterMakers.push(() => makeCharacter(
  62895. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62896. {
  62897. front: {
  62898. height: math.unit(6 + 6/12, "feet"),
  62899. weight: math.unit(140, "lb"),
  62900. name: "Front",
  62901. image: {
  62902. source: "./media/characters/sapphire-wairimea/front.svg",
  62903. extra: 475/458,
  62904. bottom: 14/489
  62905. }
  62906. },
  62907. },
  62908. [
  62909. {
  62910. name: "Normal",
  62911. height: math.unit(6 + 6/12, "feet")
  62912. },
  62913. {
  62914. name: "Macro",
  62915. height: math.unit(132, "feet"),
  62916. default: true
  62917. },
  62918. ]
  62919. ))
  62920. characterMakers.push(() => makeCharacter(
  62921. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62922. {
  62923. front: {
  62924. height: math.unit(1.6, "meters"),
  62925. weight: math.unit(100, "lb"),
  62926. name: "Front",
  62927. image: {
  62928. source: "./media/characters/cirkazi/front.svg",
  62929. extra: 489/477,
  62930. bottom: 0/489
  62931. }
  62932. },
  62933. },
  62934. [
  62935. {
  62936. name: "Normal",
  62937. height: math.unit(1.6, "meters")
  62938. },
  62939. {
  62940. name: "Macro",
  62941. height: math.unit(800, "feet"),
  62942. default: true
  62943. },
  62944. ]
  62945. ))
  62946. characterMakers.push(() => makeCharacter(
  62947. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62948. {
  62949. front: {
  62950. height: math.unit(5 + 10/12, "feet"),
  62951. weight: math.unit(145, "lb"),
  62952. name: "Front",
  62953. image: {
  62954. source: "./media/characters/corrin-cavelli/front.svg",
  62955. extra: 483/464,
  62956. bottom: 6/489
  62957. }
  62958. },
  62959. },
  62960. [
  62961. {
  62962. name: "Human",
  62963. height: math.unit(5 + 10/12, "feet")
  62964. },
  62965. {
  62966. name: "Giant",
  62967. height: math.unit(210, "feet"),
  62968. default: true
  62969. },
  62970. ]
  62971. ))
  62972. characterMakers.push(() => makeCharacter(
  62973. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62974. {
  62975. back: {
  62976. height: math.unit(5 + 6/12, "feet"),
  62977. weight: math.unit(115, "lb"),
  62978. name: "Back",
  62979. image: {
  62980. source: "./media/characters/lori-lopez/back.svg",
  62981. extra: 483/474,
  62982. bottom: 6/489
  62983. }
  62984. },
  62985. },
  62986. [
  62987. {
  62988. name: "Human",
  62989. height: math.unit(5 + 6/12, "feet")
  62990. },
  62991. {
  62992. name: "Macro",
  62993. height: math.unit(198, "feet"),
  62994. default: true
  62995. },
  62996. ]
  62997. ))
  62998. characterMakers.push(() => makeCharacter(
  62999. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63000. {
  63001. front: {
  63002. height: math.unit(6, "feet"),
  63003. weight: math.unit(220, "lb"),
  63004. name: "Front",
  63005. image: {
  63006. source: "./media/characters/sylvia-beauregard/front.svg",
  63007. extra: 483/479,
  63008. bottom: 6/489
  63009. }
  63010. },
  63011. },
  63012. [
  63013. {
  63014. name: "Macro",
  63015. height: math.unit(2071, "feet"),
  63016. default: true
  63017. },
  63018. ]
  63019. ))
  63020. characterMakers.push(() => makeCharacter(
  63021. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63022. {
  63023. back: {
  63024. height: math.unit(5 + 6/12, "feet"),
  63025. weight: math.unit(160, "lb"),
  63026. name: "Back",
  63027. image: {
  63028. source: "./media/characters/akiko-takahashi/back.svg",
  63029. extra: 459/454,
  63030. bottom: 27/486
  63031. }
  63032. },
  63033. },
  63034. [
  63035. {
  63036. name: "Human",
  63037. height: math.unit(5 + 6/12, "feet")
  63038. },
  63039. {
  63040. name: "Macro",
  63041. height: math.unit(198, "feet"),
  63042. default: true
  63043. },
  63044. {
  63045. name: "Megamacro",
  63046. height: math.unit(7128, "feet")
  63047. },
  63048. ]
  63049. ))
  63050. characterMakers.push(() => makeCharacter(
  63051. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63052. {
  63053. front: {
  63054. height: math.unit(6, "feet"),
  63055. weight: math.unit(140, "lb"),
  63056. name: "Front",
  63057. image: {
  63058. source: "./media/characters/velvet-garza/front.svg",
  63059. extra: 480/462,
  63060. bottom: 7/487
  63061. }
  63062. },
  63063. },
  63064. [
  63065. {
  63066. name: "Macro",
  63067. height: math.unit(37, "feet"),
  63068. default: true
  63069. },
  63070. ]
  63071. ))
  63072. characterMakers.push(() => makeCharacter(
  63073. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63074. {
  63075. front: {
  63076. height: math.unit(7 + 6/12, "feet"),
  63077. weight: math.unit(400, "lb"),
  63078. name: "Front",
  63079. image: {
  63080. source: "./media/characters/gaia/front.svg",
  63081. extra: 474/463,
  63082. bottom: 13/487
  63083. }
  63084. },
  63085. },
  63086. [
  63087. {
  63088. name: "MiniMacro",
  63089. height: math.unit(7 + 6/12, "feet")
  63090. },
  63091. {
  63092. name: "GigaMacro",
  63093. height: math.unit(14500, "feet"),
  63094. default: true
  63095. },
  63096. ]
  63097. ))
  63098. characterMakers.push(() => makeCharacter(
  63099. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63100. {
  63101. front: {
  63102. height: math.unit(6, "feet"),
  63103. weight: math.unit(150, "lb"),
  63104. name: "Front",
  63105. image: {
  63106. source: "./media/characters/tim/front.svg",
  63107. extra: 1878/1743,
  63108. bottom: 9/1887
  63109. }
  63110. },
  63111. frontDressed: {
  63112. height: math.unit(6, "feet"),
  63113. weight: math.unit(150, "lb"),
  63114. name: "Front (Dressed)",
  63115. image: {
  63116. source: "./media/characters/tim/front-dressed.svg",
  63117. extra: 1765/1485,
  63118. bottom: 48/1813
  63119. }
  63120. },
  63121. backDressed: {
  63122. height: math.unit(6, "feet"),
  63123. weight: math.unit(150, "lb"),
  63124. name: "Back (Dressed)",
  63125. image: {
  63126. source: "./media/characters/tim/back-dressed.svg",
  63127. extra: 1750/1465,
  63128. bottom: 25/1775
  63129. }
  63130. },
  63131. dick: {
  63132. height: math.unit(1.5, "feet"),
  63133. weight: math.unit(6, "lb"),
  63134. name: "Dick",
  63135. image: {
  63136. source: "./media/characters/tim/dick.svg"
  63137. }
  63138. },
  63139. hand: {
  63140. height: math.unit(0.522, "feet"),
  63141. name: "Hand",
  63142. image: {
  63143. source: "./media/characters/tim/hand.svg"
  63144. }
  63145. },
  63146. palm: {
  63147. height: math.unit(0.48, "feet"),
  63148. name: "Palm",
  63149. image: {
  63150. source: "./media/characters/tim/palm.svg"
  63151. }
  63152. },
  63153. paw: {
  63154. height: math.unit(0.9, "feet"),
  63155. name: "Paw",
  63156. image: {
  63157. source: "./media/characters/tim/paw.svg"
  63158. }
  63159. },
  63160. sole: {
  63161. height: math.unit(0.88, "feet"),
  63162. name: "Sole",
  63163. image: {
  63164. source: "./media/characters/tim/sole.svg"
  63165. }
  63166. },
  63167. },
  63168. [
  63169. {
  63170. name: "Macro",
  63171. height: math.unit(1000, "feet")
  63172. },
  63173. {
  63174. name: "Megamacro",
  63175. height: math.unit(10000, "feet"),
  63176. default: true
  63177. },
  63178. {
  63179. name: "Megamacro+",
  63180. height: math.unit(50000, "feet")
  63181. },
  63182. {
  63183. name: "Gigamacro",
  63184. height: math.unit(150000, "km")
  63185. },
  63186. ]
  63187. ))
  63188. characterMakers.push(() => makeCharacter(
  63189. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63190. {
  63191. front: {
  63192. height: math.unit(5 + 8/12, "feet"),
  63193. weight: math.unit(170, "lb"),
  63194. name: "Front",
  63195. image: {
  63196. source: "./media/characters/abel-delreoux/front.svg",
  63197. extra: 1615/1500,
  63198. bottom: 82/1697
  63199. }
  63200. },
  63201. back: {
  63202. height: math.unit(5 + 8/12, "feet"),
  63203. weight: math.unit(170, "lb"),
  63204. name: "Back",
  63205. image: {
  63206. source: "./media/characters/abel-delreoux/back.svg",
  63207. extra: 1644/1534,
  63208. bottom: 24/1668
  63209. }
  63210. },
  63211. casual: {
  63212. height: math.unit(5 + 8/12, "feet"),
  63213. weight: math.unit(170, "lb"),
  63214. name: "Casual",
  63215. image: {
  63216. source: "./media/characters/abel-delreoux/casual.svg",
  63217. extra: 1716/1598,
  63218. bottom: 29/1745
  63219. }
  63220. },
  63221. sleepy: {
  63222. height: math.unit(5 + 8/12, "feet"),
  63223. weight: math.unit(170, "lb"),
  63224. name: "Sleepy",
  63225. image: {
  63226. source: "./media/characters/abel-delreoux/sleepy.svg",
  63227. extra: 1649/1573,
  63228. bottom: 22/1671
  63229. }
  63230. },
  63231. fem: {
  63232. height: math.unit(5 + 8/12, "feet"),
  63233. weight: math.unit(170, "lb"),
  63234. name: "Fem",
  63235. image: {
  63236. source: "./media/characters/abel-delreoux/fem.svg",
  63237. extra: 1680/1564,
  63238. bottom: 17/1697
  63239. }
  63240. },
  63241. hand: {
  63242. height: math.unit(0.78, "feet"),
  63243. name: "Hand",
  63244. image: {
  63245. source: "./media/characters/abel-delreoux/hand.svg"
  63246. }
  63247. },
  63248. paw: {
  63249. height: math.unit(0.78, "feet"),
  63250. name: "Paw",
  63251. image: {
  63252. source: "./media/characters/abel-delreoux/paw.svg"
  63253. }
  63254. },
  63255. },
  63256. [
  63257. {
  63258. name: "Normal",
  63259. height: math.unit(5 + 8/12, "feet"),
  63260. default: true
  63261. },
  63262. ]
  63263. ))
  63264. characterMakers.push(() => makeCharacter(
  63265. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63266. {
  63267. front: {
  63268. height: math.unit(6, "feet"),
  63269. weight: math.unit(159, "lb"),
  63270. name: "Front",
  63271. image: {
  63272. source: "./media/characters/meus/front.svg",
  63273. extra: 938/843,
  63274. bottom: 37/975
  63275. }
  63276. },
  63277. back: {
  63278. height: math.unit(6, "feet"),
  63279. weight: math.unit(159, "lb"),
  63280. name: "Back",
  63281. image: {
  63282. source: "./media/characters/meus/back.svg",
  63283. extra: 967/873,
  63284. bottom: 12/979
  63285. }
  63286. },
  63287. },
  63288. [
  63289. {
  63290. name: "Micro",
  63291. height: math.unit(2, "inches")
  63292. },
  63293. {
  63294. name: "Mini",
  63295. height: math.unit(6, "inches")
  63296. },
  63297. {
  63298. name: "Normal",
  63299. height: math.unit(6, "feet"),
  63300. default: true
  63301. },
  63302. {
  63303. name: "Macro",
  63304. height: math.unit(84, "feet")
  63305. },
  63306. ]
  63307. ))
  63308. characterMakers.push(() => makeCharacter(
  63309. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63310. {
  63311. front: {
  63312. height: math.unit(60, "cm"),
  63313. weight: math.unit(18, "kg"),
  63314. name: "Front",
  63315. image: {
  63316. source: "./media/characters/yamato/front.svg",
  63317. extra: 733/688,
  63318. bottom: 29/762
  63319. }
  63320. },
  63321. },
  63322. [
  63323. {
  63324. name: "Micro",
  63325. height: math.unit(6, "cm")
  63326. },
  63327. {
  63328. name: "Normal",
  63329. height: math.unit(60, "cm"),
  63330. default: true
  63331. },
  63332. ]
  63333. ))
  63334. characterMakers.push(() => makeCharacter(
  63335. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63336. {
  63337. front: {
  63338. height: math.unit(9, "feet"),
  63339. weight: math.unit(518, "lb"),
  63340. name: "Front",
  63341. image: {
  63342. source: "./media/characters/barus/front.svg",
  63343. extra: 1877/1795,
  63344. bottom: 55/1932
  63345. }
  63346. },
  63347. },
  63348. [
  63349. {
  63350. name: "Base Height",
  63351. height: math.unit(9, "feet"),
  63352. default: true
  63353. },
  63354. {
  63355. name: "Large",
  63356. height: math.unit(18, "feet")
  63357. },
  63358. {
  63359. name: "Giant",
  63360. height: math.unit(100, "feet")
  63361. },
  63362. {
  63363. name: "Huge",
  63364. height: math.unit(500, "feet")
  63365. },
  63366. {
  63367. name: "Enormous",
  63368. height: math.unit(300, "meters")
  63369. },
  63370. {
  63371. name: "Deity Among Man",
  63372. height: math.unit(3000, "meters")
  63373. },
  63374. ]
  63375. ))
  63376. characterMakers.push(() => makeCharacter(
  63377. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63378. {
  63379. front: {
  63380. height: math.unit(1.7, "meters"),
  63381. name: "Front",
  63382. image: {
  63383. source: "./media/characters/yari/front.svg",
  63384. extra: 1210/1125,
  63385. bottom: 283/1493
  63386. }
  63387. },
  63388. back: {
  63389. height: math.unit(1.7, "meters"),
  63390. name: "Back",
  63391. image: {
  63392. source: "./media/characters/yari/back.svg",
  63393. extra: 1240/1195,
  63394. bottom: 180/1420
  63395. }
  63396. },
  63397. head: {
  63398. height: math.unit(1.26, "feet"),
  63399. name: "Head",
  63400. image: {
  63401. source: "./media/characters/yari/head.svg"
  63402. }
  63403. },
  63404. },
  63405. [
  63406. {
  63407. name: "Nano",
  63408. height: math.unit(0.5, "mm")
  63409. },
  63410. {
  63411. name: "Micro",
  63412. height: math.unit(3, "inches")
  63413. },
  63414. {
  63415. name: "Short",
  63416. height: math.unit(1.5, "meters")
  63417. },
  63418. {
  63419. name: "Norm",
  63420. height: math.unit(1.7, "meters"),
  63421. default: true
  63422. },
  63423. ]
  63424. ))
  63425. characterMakers.push(() => makeCharacter(
  63426. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63427. {
  63428. front: {
  63429. height: math.unit(5 + 2/12, "feet"),
  63430. weight: math.unit(110, "lb"),
  63431. name: "Front",
  63432. image: {
  63433. source: "./media/characters/salem/front.svg",
  63434. extra: 1895/1800,
  63435. bottom: 23/1918
  63436. }
  63437. },
  63438. back: {
  63439. height: math.unit(5 + 2/12, "feet"),
  63440. weight: math.unit(110, "lb"),
  63441. name: "Back",
  63442. image: {
  63443. source: "./media/characters/salem/back.svg",
  63444. extra: 1875/1802,
  63445. bottom: 20/1895
  63446. }
  63447. },
  63448. head: {
  63449. height: math.unit(1, "feet"),
  63450. name: "Head",
  63451. image: {
  63452. source: "./media/characters/salem/head.svg"
  63453. }
  63454. },
  63455. paw: {
  63456. height: math.unit(0.59, "feet"),
  63457. name: "Paw",
  63458. image: {
  63459. source: "./media/characters/salem/paw.svg"
  63460. }
  63461. },
  63462. beans: {
  63463. height: math.unit(0.66, "feet"),
  63464. name: "Beans",
  63465. image: {
  63466. source: "./media/characters/salem/beans.svg"
  63467. }
  63468. },
  63469. eye: {
  63470. height: math.unit(0.224, "feet"),
  63471. name: "Eye",
  63472. image: {
  63473. source: "./media/characters/salem/eye.svg"
  63474. }
  63475. },
  63476. semiferal: {
  63477. height: math.unit(2.3, "feet"),
  63478. name: "Semiferal",
  63479. image: {
  63480. source: "./media/characters/salem/semiferal.svg",
  63481. extra: 914/839,
  63482. bottom: 32/946
  63483. }
  63484. },
  63485. },
  63486. [
  63487. {
  63488. name: "Micro",
  63489. height: math.unit(4, "inches")
  63490. },
  63491. {
  63492. name: "Normal",
  63493. height: math.unit(5 + 2/12, "feet"),
  63494. default: true
  63495. },
  63496. {
  63497. name: "Macro",
  63498. height: math.unit(108, "feet")
  63499. },
  63500. {
  63501. name: "Macro+",
  63502. height: math.unit(1500, "feet")
  63503. },
  63504. ]
  63505. ))
  63506. characterMakers.push(() => makeCharacter(
  63507. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63508. {
  63509. front: {
  63510. height: math.unit(7 + 6/12, "feet"),
  63511. weight: math.unit(600, "kg"),
  63512. preyCapacity: math.unit(10, "people"),
  63513. name: "Front",
  63514. image: {
  63515. source: "./media/characters/kii/front.svg",
  63516. extra: 3296/3087,
  63517. bottom: 130/3426
  63518. }
  63519. },
  63520. },
  63521. [
  63522. {
  63523. name: "Normal",
  63524. height: math.unit(7 + 6/12, "feet"),
  63525. default: true
  63526. },
  63527. ]
  63528. ))
  63529. characterMakers.push(() => makeCharacter(
  63530. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63531. {
  63532. front: {
  63533. height: math.unit(2, "meters"),
  63534. weight: math.unit(200, "lb"),
  63535. name: "Front",
  63536. image: {
  63537. source: "./media/characters/taffy/front.svg",
  63538. extra: 1666/1618,
  63539. bottom: 157/1823
  63540. }
  63541. },
  63542. back: {
  63543. height: math.unit(2, "meters"),
  63544. weight: math.unit(200, "lb"),
  63545. name: "Back",
  63546. image: {
  63547. source: "./media/characters/taffy/back.svg",
  63548. extra: 1635/1583,
  63549. bottom: 153/1788
  63550. }
  63551. },
  63552. },
  63553. [
  63554. {
  63555. name: "Normal",
  63556. height: math.unit(2, "meters"),
  63557. default: true
  63558. },
  63559. ]
  63560. ))
  63561. characterMakers.push(() => makeCharacter(
  63562. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63563. {
  63564. front: {
  63565. height: math.unit(1.55, "meters"),
  63566. weight: math.unit(60, "kg"),
  63567. name: "Front",
  63568. image: {
  63569. source: "./media/characters/barley/front.svg",
  63570. extra: 1520/1340,
  63571. bottom: 47/1567
  63572. }
  63573. },
  63574. back: {
  63575. height: math.unit(1.55, "meters"),
  63576. weight: math.unit(60, "kg"),
  63577. name: "Back",
  63578. image: {
  63579. source: "./media/characters/barley/back.svg",
  63580. extra: 1543/1341,
  63581. bottom: 12/1555
  63582. }
  63583. },
  63584. feet: {
  63585. height: math.unit(2.18, "feet"),
  63586. name: "Feet",
  63587. image: {
  63588. source: "./media/characters/barley/feet.svg"
  63589. }
  63590. },
  63591. },
  63592. [
  63593. {
  63594. name: "Normal",
  63595. height: math.unit(1.55, "meters"),
  63596. default: true
  63597. },
  63598. ]
  63599. ))
  63600. characterMakers.push(() => makeCharacter(
  63601. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63602. {
  63603. dressed: {
  63604. height: math.unit(6, "feet"),
  63605. name: "Dressed",
  63606. image: {
  63607. source: "./media/characters/lydia-lopez/dressed.svg",
  63608. extra: 1319/1277,
  63609. bottom: 90/1409
  63610. }
  63611. },
  63612. nude: {
  63613. height: math.unit(6, "feet"),
  63614. name: "Nude",
  63615. image: {
  63616. source: "./media/characters/lydia-lopez/nude.svg",
  63617. extra: 1319/1277,
  63618. bottom: 90/1409
  63619. }
  63620. },
  63621. },
  63622. [
  63623. {
  63624. name: "Normal",
  63625. height: math.unit(6, "feet"),
  63626. default: true
  63627. },
  63628. {
  63629. name: "Maximum",
  63630. height: math.unit(2101, "feet")
  63631. },
  63632. ]
  63633. ))
  63634. characterMakers.push(() => makeCharacter(
  63635. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63636. {
  63637. front: {
  63638. height: math.unit(5 + 4/12, "feet"),
  63639. weight: math.unit(250, "lb"),
  63640. volume: math.unit(20, "gallons"),
  63641. name: "Front",
  63642. image: {
  63643. source: "./media/characters/kira-slime/front.svg",
  63644. extra: 442/403,
  63645. bottom: 18/460
  63646. }
  63647. },
  63648. frontNsfw: {
  63649. height: math.unit(5 + 4/12, "feet"),
  63650. weight: math.unit(250, "lb"),
  63651. volume: math.unit(20, "gallons"),
  63652. name: "Front (NSFW)",
  63653. image: {
  63654. source: "./media/characters/kira-slime/front-nsfw.svg",
  63655. extra: 442/403,
  63656. bottom: 18/460
  63657. }
  63658. },
  63659. },
  63660. [
  63661. {
  63662. name: "Droplet",
  63663. height: math.unit(0.0464452, "feet")
  63664. },
  63665. {
  63666. name: "Pint",
  63667. height: math.unit(0.9824, "feet")
  63668. },
  63669. {
  63670. name: "Bucket",
  63671. height: math.unit(2.83, "feet")
  63672. },
  63673. {
  63674. name: "Normal",
  63675. height: math.unit(5 + 4/12, "feet"),
  63676. default: true
  63677. },
  63678. {
  63679. name: "Tub",
  63680. height: math.unit(8.46614, "feet")
  63681. },
  63682. {
  63683. name: "Pool",
  63684. height: math.unit(31.1895, "feet")
  63685. },
  63686. {
  63687. name: "Pond",
  63688. height: math.unit(170.349, "feet")
  63689. },
  63690. {
  63691. name: "Lake",
  63692. height: math.unit(289334, "feet")
  63693. },
  63694. {
  63695. name: "Ocean",
  63696. height: math.unit(1.11940e+7, "feet")
  63697. },
  63698. ]
  63699. ))
  63700. characterMakers.push(() => makeCharacter(
  63701. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63702. {
  63703. front: {
  63704. height: math.unit(5 + 6/12, "feet"),
  63705. weight: math.unit(120, "lb"),
  63706. name: "Front",
  63707. image: {
  63708. source: "./media/characters/holiday/front.svg",
  63709. extra: 456/403,
  63710. bottom: 4/460
  63711. }
  63712. },
  63713. back: {
  63714. height: math.unit(5 + 6/12, "feet"),
  63715. weight: math.unit(120, "lb"),
  63716. name: "Back",
  63717. image: {
  63718. source: "./media/characters/holiday/back.svg",
  63719. extra: 450/404,
  63720. bottom: 12/462
  63721. }
  63722. },
  63723. head: {
  63724. height: math.unit(2.3, "feet"),
  63725. name: "Head",
  63726. image: {
  63727. source: "./media/characters/holiday/head.svg"
  63728. }
  63729. },
  63730. },
  63731. [
  63732. {
  63733. name: "Normal",
  63734. height: math.unit(5 + 6/12, "feet"),
  63735. default: true
  63736. },
  63737. {
  63738. name: "Macro",
  63739. height: math.unit(6574.25, "feet")
  63740. },
  63741. ]
  63742. ))
  63743. characterMakers.push(() => makeCharacter(
  63744. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  63745. {
  63746. front: {
  63747. height: math.unit(6 + 2/12, "feet"),
  63748. weight: math.unit(200, "lb"),
  63749. name: "Front",
  63750. image: {
  63751. source: "./media/characters/camina/front.svg",
  63752. extra: 1048/985,
  63753. bottom: 30/1078
  63754. }
  63755. },
  63756. },
  63757. [
  63758. {
  63759. name: "Normal",
  63760. height: math.unit(6 + 2/12, "feet"),
  63761. default: true
  63762. },
  63763. ]
  63764. ))
  63765. characterMakers.push(() => makeCharacter(
  63766. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  63767. {
  63768. front: {
  63769. height: math.unit(30, "cm"),
  63770. weight: math.unit(420, "grams"),
  63771. name: "Front",
  63772. image: {
  63773. source: "./media/characters/smuck/front.svg",
  63774. extra: 379/345,
  63775. bottom: 36/415
  63776. }
  63777. },
  63778. },
  63779. [
  63780. {
  63781. name: "Smuck-Sized",
  63782. height: math.unit(30, "cm"),
  63783. default: true
  63784. },
  63785. ]
  63786. ))
  63787. characterMakers.push(() => makeCharacter(
  63788. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  63789. {
  63790. frontSfw: {
  63791. height: math.unit(10, "feet"),
  63792. weight: math.unit(1000, "kg"),
  63793. preyCapacity: math.unit(2, "people"),
  63794. name: "Front (SFW)",
  63795. image: {
  63796. source: "./media/characters/bylur/front-sfw.svg",
  63797. extra: 419/343,
  63798. bottom: 3/422
  63799. },
  63800. default: true
  63801. },
  63802. frontSheath: {
  63803. height: math.unit(10, "feet"),
  63804. weight: math.unit(1000, "kg"),
  63805. preyCapacity: math.unit(2, "people"),
  63806. name: "Front (Sheath)",
  63807. image: {
  63808. source: "./media/characters/bylur/front-sheath.svg",
  63809. extra: 419/343,
  63810. bottom: 3/422
  63811. }
  63812. },
  63813. frontErect: {
  63814. height: math.unit(10, "feet"),
  63815. weight: math.unit(1000, "kg"),
  63816. preyCapacity: math.unit(2, "people"),
  63817. name: "Front (Erect)",
  63818. image: {
  63819. source: "./media/characters/bylur/front-erect.svg",
  63820. extra: 419/343,
  63821. bottom: 3/422
  63822. }
  63823. },
  63824. back: {
  63825. height: math.unit(10, "feet"),
  63826. weight: math.unit(1000, "kg"),
  63827. preyCapacity: math.unit(2, "people"),
  63828. name: "Back",
  63829. image: {
  63830. source: "./media/characters/bylur/back.svg",
  63831. extra: 392/315,
  63832. bottom: 3/395
  63833. }
  63834. },
  63835. maw: {
  63836. height: math.unit(3.65, "feet"),
  63837. name: "Maw",
  63838. image: {
  63839. source: "./media/characters/bylur/maw.svg"
  63840. }
  63841. },
  63842. },
  63843. [
  63844. {
  63845. name: "Slightly Human Sized",
  63846. height: math.unit(10, "feet")
  63847. },
  63848. {
  63849. name: "Normal",
  63850. height: math.unit(35, "feet"),
  63851. default: true
  63852. },
  63853. {
  63854. name: "Macro",
  63855. height: math.unit(130, "feet")
  63856. },
  63857. ]
  63858. ))
  63859. characterMakers.push(() => makeCharacter(
  63860. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  63861. {
  63862. frontNsfw: {
  63863. height: math.unit(6, "feet"),
  63864. weight: math.unit(250, "lb"),
  63865. preyCapacity: math.unit(0.05, "people"),
  63866. name: "Front (NSFW)",
  63867. image: {
  63868. source: "./media/characters/oarven/front-nsfw.svg",
  63869. extra: 1795/1783,
  63870. bottom: 142/1937
  63871. }
  63872. },
  63873. frontSfw: {
  63874. height: math.unit(6, "feet"),
  63875. weight: math.unit(250, "lb"),
  63876. preyCapacity: math.unit(0.05, "people"),
  63877. name: "Front (SFW)",
  63878. image: {
  63879. source: "./media/characters/oarven/front-sfw.svg",
  63880. extra: 1795/1783,
  63881. bottom: 142/1937
  63882. }
  63883. },
  63884. },
  63885. [
  63886. {
  63887. name: "Megamacro",
  63888. height: math.unit(5, "miles"),
  63889. default: true
  63890. },
  63891. {
  63892. name: "Maximum Height",
  63893. height: math.unit(5, "AUs")
  63894. },
  63895. ]
  63896. ))
  63897. characterMakers.push(() => makeCharacter(
  63898. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  63899. {
  63900. side: {
  63901. height: math.unit(1065, "meters"),
  63902. weight: math.unit(1e12, "kg"),
  63903. volume: math.unit(3265000000, "m^3"),
  63904. name: "Side",
  63905. image: {
  63906. source: "./media/characters/solidarity/side.svg"
  63907. }
  63908. },
  63909. front: {
  63910. height: math.unit(1065, "meters"),
  63911. weight: math.unit(3265000000000, "kg"),
  63912. volume: math.unit(3265000000, "m^3"),
  63913. name: "Front",
  63914. image: {
  63915. source: "./media/characters/solidarity/front.svg"
  63916. }
  63917. },
  63918. top: {
  63919. height: math.unit(5823, "meters"),
  63920. weight: math.unit(3265000000000, "kg"),
  63921. volume: math.unit(3265000000, "m^3"),
  63922. name: "Top",
  63923. image: {
  63924. source: "./media/characters/solidarity/top.svg"
  63925. }
  63926. },
  63927. },
  63928. [
  63929. {
  63930. name: "Normal",
  63931. height: math.unit(1065, "meters"),
  63932. default: true
  63933. },
  63934. ]
  63935. ))
  63936. characterMakers.push(() => makeCharacter(
  63937. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  63938. {
  63939. side: {
  63940. height: math.unit(18 + 4/12, "feet"),
  63941. weight: math.unit(13000, "kg"),
  63942. name: "Side",
  63943. image: {
  63944. source: "./media/characters/ani'szi/side.svg",
  63945. extra: 468/459,
  63946. bottom: 60/528
  63947. }
  63948. },
  63949. head: {
  63950. height: math.unit(4.8, "feet"),
  63951. name: "Head",
  63952. image: {
  63953. source: "./media/characters/ani'szi/head.svg"
  63954. }
  63955. },
  63956. jaws: {
  63957. height: math.unit(2.25, "feet"),
  63958. name: "Jaws",
  63959. image: {
  63960. source: "./media/characters/ani'szi/jaws.svg"
  63961. }
  63962. },
  63963. bust: {
  63964. height: math.unit(8.9, "feet"),
  63965. name: "Bust",
  63966. image: {
  63967. source: "./media/characters/ani'szi/bust.svg"
  63968. }
  63969. },
  63970. back: {
  63971. height: math.unit(13.53, "feet"),
  63972. name: "Back",
  63973. image: {
  63974. source: "./media/characters/ani'szi/back.svg"
  63975. }
  63976. },
  63977. eye: {
  63978. height: math.unit(0.44, "feet"),
  63979. name: "Eye",
  63980. image: {
  63981. source: "./media/characters/ani'szi/eye.svg"
  63982. }
  63983. },
  63984. },
  63985. [
  63986. {
  63987. name: "Normal",
  63988. height: math.unit(18 + 4/12, "feet"),
  63989. default: true
  63990. },
  63991. ]
  63992. ))
  63993. //characters
  63994. function makeCharacters() {
  63995. const results = [];
  63996. characterMakers.forEach(character => {
  63997. results.push(character());
  63998. });
  63999. return results;
  64000. }