less copy protection, more size visualization
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

66165 Zeilen
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. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. }
  2427. //species
  2428. function getSpeciesInfo(speciesList) {
  2429. let result = new Set();
  2430. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2431. result.add(entry)
  2432. });
  2433. return Array.from(result);
  2434. };
  2435. function getSpeciesInfoHelper(species) {
  2436. if (!speciesData[species]) {
  2437. console.warn(species + " doesn't exist");
  2438. return [];
  2439. }
  2440. if (speciesData[species].parents) {
  2441. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2442. } else {
  2443. return [species];
  2444. }
  2445. }
  2446. characterMakers.push(() => makeCharacter(
  2447. {
  2448. name: "Fen",
  2449. species: ["crux"],
  2450. description: {
  2451. title: "Bio",
  2452. text: "Very furry. Sheds on everything."
  2453. },
  2454. tags: [
  2455. "anthro",
  2456. "goo"
  2457. ]
  2458. },
  2459. {
  2460. front: {
  2461. height: math.unit(12, "feet"),
  2462. weight: math.unit(2400, "lb"),
  2463. preyCapacity: math.unit(1, "people"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/fen/front.svg",
  2467. extra: 1804/1562,
  2468. bottom: 205/2009
  2469. },
  2470. extraAttributes: {
  2471. pawSize: {
  2472. name: "Paw Size",
  2473. power: 2,
  2474. type: "area",
  2475. base: math.unit(0.35, "m^2")
  2476. }
  2477. }
  2478. },
  2479. diving: {
  2480. height: math.unit(4.9, "meters"),
  2481. weight: math.unit(2400, "lb"),
  2482. name: "Diving",
  2483. image: {
  2484. source: "./media/characters/fen/diving.svg"
  2485. }
  2486. },
  2487. sleeby: {
  2488. height: math.unit(3.45, "meters"),
  2489. weight: math.unit(2400, "lb"),
  2490. name: "Sleeby",
  2491. image: {
  2492. source: "./media/characters/fen/sleeby.svg"
  2493. }
  2494. },
  2495. goo: {
  2496. height: math.unit(12, "feet"),
  2497. weight: math.unit(3600, "lb"),
  2498. volume: math.unit(1000, "liters"),
  2499. preyCapacity: math.unit(6, "people"),
  2500. name: "Goo",
  2501. image: {
  2502. source: "./media/characters/fen/goo.svg",
  2503. extra: 1307/1071,
  2504. bottom: 134/1441
  2505. }
  2506. },
  2507. horror: {
  2508. height: math.unit(13.6, "feet"),
  2509. weight: math.unit(2400, "lb"),
  2510. preyCapacity: math.unit(1, "people"),
  2511. name: "Horror",
  2512. image: {
  2513. source: "./media/characters/fen/horror.svg",
  2514. extra: 893/797,
  2515. bottom: 0/893
  2516. }
  2517. },
  2518. gooNsfw: {
  2519. height: math.unit(12, "feet"),
  2520. weight: math.unit(3750, "lb"),
  2521. volume: math.unit(1000, "liters"),
  2522. preyCapacity: math.unit(6, "people"),
  2523. name: "Goo (NSFW)",
  2524. image: {
  2525. source: "./media/characters/fen/goo-nsfw.svg",
  2526. extra: 1875/1734,
  2527. bottom: 122/1997
  2528. }
  2529. },
  2530. maw: {
  2531. height: math.unit(5.03, "feet"),
  2532. name: "Maw",
  2533. image: {
  2534. source: "./media/characters/fen/maw.svg"
  2535. }
  2536. },
  2537. gooCeiling: {
  2538. height: math.unit(6.6, "feet"),
  2539. weight: math.unit(3000, "lb"),
  2540. volume: math.unit(1000, "liters"),
  2541. preyCapacity: math.unit(6, "people"),
  2542. name: "Maw (Goo)",
  2543. image: {
  2544. source: "./media/characters/fen/goo-maw.svg"
  2545. }
  2546. },
  2547. paw: {
  2548. height: math.unit(3.77, "feet"),
  2549. name: "Paw",
  2550. image: {
  2551. source: "./media/characters/fen/paw.svg"
  2552. },
  2553. extraAttributes: {
  2554. "toeSize": {
  2555. name: "Toe Size",
  2556. power: 2,
  2557. type: "area",
  2558. base: math.unit(0.02875, "m^2")
  2559. },
  2560. "pawSize": {
  2561. name: "Paw Size",
  2562. power: 2,
  2563. type: "area",
  2564. base: math.unit(0.378, "m^2")
  2565. },
  2566. }
  2567. },
  2568. tail: {
  2569. height: math.unit(12.1, "feet"),
  2570. name: "Tail",
  2571. image: {
  2572. source: "./media/characters/fen/tail.svg"
  2573. }
  2574. },
  2575. tailFull: {
  2576. height: math.unit(12.1, "feet"),
  2577. name: "Full Tail",
  2578. image: {
  2579. source: "./media/characters/fen/tail-full.svg"
  2580. }
  2581. },
  2582. back: {
  2583. height: math.unit(12, "feet"),
  2584. weight: math.unit(2400, "lb"),
  2585. name: "Back",
  2586. image: {
  2587. source: "./media/characters/fen/back.svg",
  2588. },
  2589. info: {
  2590. description: {
  2591. mode: "append",
  2592. text: "\n\nHe is not currently looking at you."
  2593. }
  2594. }
  2595. },
  2596. full: {
  2597. height: math.unit(1.85, "meter"),
  2598. weight: math.unit(3200, "lb"),
  2599. preyCapacity: math.unit(3, "people"),
  2600. name: "Full",
  2601. image: {
  2602. source: "./media/characters/fen/full.svg",
  2603. extra: 1133/859,
  2604. bottom: 145/1278
  2605. },
  2606. info: {
  2607. description: {
  2608. mode: "append",
  2609. text: "\n\nMunch."
  2610. }
  2611. }
  2612. },
  2613. gooLounging: {
  2614. height: math.unit(4.53, "feet"),
  2615. weight: math.unit(3000, "lb"),
  2616. preyCapacity: math.unit(6, "people"),
  2617. name: "Goo (Lounging)",
  2618. image: {
  2619. source: "./media/characters/fen/goo-lounging.svg",
  2620. bottom: 116 / 613
  2621. }
  2622. },
  2623. lounging: {
  2624. height: math.unit(10.52, "feet"),
  2625. weight: math.unit(2400, "lb"),
  2626. name: "Lounging",
  2627. image: {
  2628. source: "./media/characters/fen/lounging.svg"
  2629. }
  2630. },
  2631. },
  2632. [
  2633. {
  2634. name: "Small",
  2635. height: math.unit(2.2428, "meter")
  2636. },
  2637. {
  2638. name: "Normal",
  2639. height: math.unit(12, "feet"),
  2640. default: true,
  2641. },
  2642. {
  2643. name: "Big",
  2644. height: math.unit(20, "feet")
  2645. },
  2646. {
  2647. name: "Minimacro",
  2648. height: math.unit(40, "feet"),
  2649. info: {
  2650. description: {
  2651. mode: "append",
  2652. text: "\n\nTOO DAMN BIG"
  2653. }
  2654. }
  2655. },
  2656. {
  2657. name: "Macro",
  2658. height: math.unit(100, "feet"),
  2659. info: {
  2660. description: {
  2661. mode: "append",
  2662. text: "\n\nTOO DAMN BIG"
  2663. }
  2664. }
  2665. },
  2666. {
  2667. name: "Megamacro",
  2668. height: math.unit(2, "miles")
  2669. },
  2670. {
  2671. name: "Gigamacro",
  2672. height: math.unit(10, "earths")
  2673. },
  2674. ]
  2675. ))
  2676. characterMakers.push(() => makeCharacter(
  2677. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2678. {
  2679. front: {
  2680. height: math.unit(183, "cm"),
  2681. weight: math.unit(80, "kg"),
  2682. name: "Front",
  2683. image: {
  2684. source: "./media/characters/sofia-fluttertail/front.svg",
  2685. bottom: 0.01,
  2686. extra: 2154 / 2081
  2687. }
  2688. },
  2689. frontAlt: {
  2690. height: math.unit(183, "cm"),
  2691. weight: math.unit(80, "kg"),
  2692. name: "Front (alt)",
  2693. image: {
  2694. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2695. }
  2696. },
  2697. back: {
  2698. height: math.unit(183, "cm"),
  2699. weight: math.unit(80, "kg"),
  2700. name: "Back",
  2701. image: {
  2702. source: "./media/characters/sofia-fluttertail/back.svg"
  2703. }
  2704. },
  2705. kneeling: {
  2706. height: math.unit(125, "cm"),
  2707. weight: math.unit(80, "kg"),
  2708. name: "Kneeling",
  2709. image: {
  2710. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2711. extra: 1033 / 977,
  2712. bottom: 23.7 / 1057
  2713. }
  2714. },
  2715. maw: {
  2716. height: math.unit(183 / 5, "cm"),
  2717. name: "Maw",
  2718. image: {
  2719. source: "./media/characters/sofia-fluttertail/maw.svg"
  2720. }
  2721. },
  2722. mawcloseup: {
  2723. height: math.unit(183 / 5 * 0.41, "cm"),
  2724. name: "Maw (Closeup)",
  2725. image: {
  2726. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2727. }
  2728. },
  2729. paws: {
  2730. height: math.unit(1.17, "feet"),
  2731. name: "Paws",
  2732. image: {
  2733. source: "./media/characters/sofia-fluttertail/paws.svg",
  2734. extra: 851 / 851,
  2735. bottom: 17 / 868
  2736. }
  2737. },
  2738. },
  2739. [
  2740. {
  2741. name: "Normal",
  2742. height: math.unit(1.83, "meter")
  2743. },
  2744. {
  2745. name: "Size Thief",
  2746. height: math.unit(18, "feet")
  2747. },
  2748. {
  2749. name: "50 Foot Collie",
  2750. height: math.unit(50, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(96, "feet"),
  2755. default: true
  2756. },
  2757. {
  2758. name: "Megamerger",
  2759. height: math.unit(650, "feet")
  2760. },
  2761. ]
  2762. ))
  2763. characterMakers.push(() => makeCharacter(
  2764. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2765. {
  2766. front: {
  2767. height: math.unit(7, "feet"),
  2768. weight: math.unit(100, "kg"),
  2769. name: "Front",
  2770. image: {
  2771. source: "./media/characters/march/front.svg",
  2772. extra: 1992/1851,
  2773. bottom: 39/2031
  2774. }
  2775. },
  2776. foot: {
  2777. height: math.unit(0.9, "feet"),
  2778. name: "Foot",
  2779. image: {
  2780. source: "./media/characters/march/foot.svg"
  2781. }
  2782. },
  2783. },
  2784. [
  2785. {
  2786. name: "Normal",
  2787. height: math.unit(7.9, "feet")
  2788. },
  2789. {
  2790. name: "Macro",
  2791. height: math.unit(220, "meters")
  2792. },
  2793. {
  2794. name: "Megamacro",
  2795. height: math.unit(2.98, "km"),
  2796. default: true
  2797. },
  2798. {
  2799. name: "Gigamacro",
  2800. height: math.unit(15963, "km")
  2801. },
  2802. {
  2803. name: "Teramacro",
  2804. height: math.unit(2980000000, "km")
  2805. },
  2806. {
  2807. name: "Examacro",
  2808. height: math.unit(250, "parsecs")
  2809. },
  2810. ]
  2811. ))
  2812. characterMakers.push(() => makeCharacter(
  2813. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2814. {
  2815. front: {
  2816. height: math.unit(6, "feet"),
  2817. weight: math.unit(60, "kg"),
  2818. name: "Front",
  2819. image: {
  2820. source: "./media/characters/noir/front.svg",
  2821. extra: 1,
  2822. bottom: 0.032
  2823. }
  2824. },
  2825. },
  2826. [
  2827. {
  2828. name: "Normal",
  2829. height: math.unit(6.6, "feet")
  2830. },
  2831. {
  2832. name: "Macro",
  2833. height: math.unit(500, "feet")
  2834. },
  2835. {
  2836. name: "Megamacro",
  2837. height: math.unit(2.5, "km"),
  2838. default: true
  2839. },
  2840. {
  2841. name: "Gigamacro",
  2842. height: math.unit(22500, "km")
  2843. },
  2844. {
  2845. name: "Teramacro",
  2846. height: math.unit(2500000000, "km")
  2847. },
  2848. {
  2849. name: "Examacro",
  2850. height: math.unit(200, "parsecs")
  2851. },
  2852. ]
  2853. ))
  2854. characterMakers.push(() => makeCharacter(
  2855. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2856. {
  2857. front: {
  2858. height: math.unit(7, "feet"),
  2859. weight: math.unit(100, "kg"),
  2860. name: "Front",
  2861. image: {
  2862. source: "./media/characters/okuri/front.svg",
  2863. extra: 739/665,
  2864. bottom: 39/778
  2865. }
  2866. },
  2867. back: {
  2868. height: math.unit(7, "feet"),
  2869. weight: math.unit(100, "kg"),
  2870. name: "Back",
  2871. image: {
  2872. source: "./media/characters/okuri/back.svg",
  2873. extra: 734/653,
  2874. bottom: 13/747
  2875. }
  2876. },
  2877. sitting: {
  2878. height: math.unit(2.95, "feet"),
  2879. weight: math.unit(100, "kg"),
  2880. name: "Sitting",
  2881. image: {
  2882. source: "./media/characters/okuri/sitting.svg",
  2883. extra: 370/318,
  2884. bottom: 99/469
  2885. }
  2886. },
  2887. },
  2888. [
  2889. {
  2890. name: "Smallest",
  2891. height: math.unit(5 + 2/12, "feet")
  2892. },
  2893. {
  2894. name: "Smaller",
  2895. height: math.unit(300, "feet")
  2896. },
  2897. {
  2898. name: "Small",
  2899. height: math.unit(1000, "feet")
  2900. },
  2901. {
  2902. name: "Macro",
  2903. height: math.unit(1, "mile")
  2904. },
  2905. {
  2906. name: "Mega Macro (Small)",
  2907. height: math.unit(20, "km")
  2908. },
  2909. {
  2910. name: "Mega Macro (Large)",
  2911. height: math.unit(600, "km")
  2912. },
  2913. {
  2914. name: "Giga Macro",
  2915. height: math.unit(10000, "km")
  2916. },
  2917. {
  2918. name: "Normal",
  2919. height: math.unit(577560, "km"),
  2920. default: true
  2921. },
  2922. {
  2923. name: "Large",
  2924. height: math.unit(4, "galaxies")
  2925. },
  2926. {
  2927. name: "Largest",
  2928. height: math.unit(15, "multiverses")
  2929. },
  2930. ]
  2931. ))
  2932. characterMakers.push(() => makeCharacter(
  2933. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2934. {
  2935. front: {
  2936. height: math.unit(7, "feet"),
  2937. weight: math.unit(100, "kg"),
  2938. name: "Front",
  2939. image: {
  2940. source: "./media/characters/manny/front.svg",
  2941. extra: 1,
  2942. bottom: 0.06
  2943. }
  2944. },
  2945. back: {
  2946. height: math.unit(7, "feet"),
  2947. weight: math.unit(100, "kg"),
  2948. name: "Back",
  2949. image: {
  2950. source: "./media/characters/manny/back.svg",
  2951. extra: 1,
  2952. bottom: 0.014
  2953. }
  2954. },
  2955. },
  2956. [
  2957. {
  2958. name: "Normal",
  2959. height: math.unit(7, "feet"),
  2960. },
  2961. {
  2962. name: "Macro",
  2963. height: math.unit(78, "feet"),
  2964. default: true
  2965. },
  2966. {
  2967. name: "Macro+",
  2968. height: math.unit(300, "meters")
  2969. },
  2970. {
  2971. name: "Macro++",
  2972. height: math.unit(2400, "meters")
  2973. },
  2974. {
  2975. name: "Megamacro",
  2976. height: math.unit(5167, "meters")
  2977. },
  2978. {
  2979. name: "Gigamacro",
  2980. height: math.unit(41769, "miles")
  2981. },
  2982. ]
  2983. ))
  2984. characterMakers.push(() => makeCharacter(
  2985. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2986. {
  2987. front: {
  2988. height: math.unit(7, "feet"),
  2989. weight: math.unit(100, "kg"),
  2990. name: "Front",
  2991. image: {
  2992. source: "./media/characters/adake/front-1.svg"
  2993. }
  2994. },
  2995. frontAlt: {
  2996. height: math.unit(7, "feet"),
  2997. weight: math.unit(100, "kg"),
  2998. name: "Front (Alt)",
  2999. image: {
  3000. source: "./media/characters/adake/front-2.svg",
  3001. extra: 1,
  3002. bottom: 0.01
  3003. }
  3004. },
  3005. back: {
  3006. height: math.unit(7, "feet"),
  3007. weight: math.unit(100, "kg"),
  3008. name: "Back",
  3009. image: {
  3010. source: "./media/characters/adake/back.svg",
  3011. }
  3012. },
  3013. kneel: {
  3014. height: math.unit(5.385, "feet"),
  3015. weight: math.unit(100, "kg"),
  3016. name: "Kneeling",
  3017. image: {
  3018. source: "./media/characters/adake/kneel.svg",
  3019. bottom: 0.052
  3020. }
  3021. },
  3022. },
  3023. [
  3024. {
  3025. name: "Normal",
  3026. height: math.unit(7, "feet"),
  3027. },
  3028. {
  3029. name: "Macro",
  3030. height: math.unit(78, "feet"),
  3031. default: true
  3032. },
  3033. {
  3034. name: "Macro+",
  3035. height: math.unit(300, "meters")
  3036. },
  3037. {
  3038. name: "Macro++",
  3039. height: math.unit(2400, "meters")
  3040. },
  3041. {
  3042. name: "Megamacro",
  3043. height: math.unit(5167, "meters")
  3044. },
  3045. {
  3046. name: "Gigamacro",
  3047. height: math.unit(41769, "miles")
  3048. },
  3049. ]
  3050. ))
  3051. characterMakers.push(() => makeCharacter(
  3052. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3053. {
  3054. front: {
  3055. height: math.unit(1.65, "meters"),
  3056. weight: math.unit(50, "kg"),
  3057. name: "Front",
  3058. image: {
  3059. source: "./media/characters/elijah/front.svg",
  3060. extra: 858 / 830,
  3061. bottom: 95.5 / 953.8559
  3062. }
  3063. },
  3064. back: {
  3065. height: math.unit(1.65, "meters"),
  3066. weight: math.unit(50, "kg"),
  3067. name: "Back",
  3068. image: {
  3069. source: "./media/characters/elijah/back.svg",
  3070. extra: 895 / 850,
  3071. bottom: 5.3 / 897.956
  3072. }
  3073. },
  3074. frontNsfw: {
  3075. height: math.unit(1.65, "meters"),
  3076. weight: math.unit(50, "kg"),
  3077. name: "Front (NSFW)",
  3078. image: {
  3079. source: "./media/characters/elijah/front-nsfw.svg",
  3080. extra: 858 / 830,
  3081. bottom: 95.5 / 953.8559
  3082. }
  3083. },
  3084. backNsfw: {
  3085. height: math.unit(1.65, "meters"),
  3086. weight: math.unit(50, "kg"),
  3087. name: "Back (NSFW)",
  3088. image: {
  3089. source: "./media/characters/elijah/back-nsfw.svg",
  3090. extra: 895 / 850,
  3091. bottom: 5.3 / 897.956
  3092. }
  3093. },
  3094. dick: {
  3095. height: math.unit(1, "feet"),
  3096. name: "Dick",
  3097. image: {
  3098. source: "./media/characters/elijah/dick.svg"
  3099. }
  3100. },
  3101. beakOpen: {
  3102. height: math.unit(1.25, "feet"),
  3103. name: "Beak (Open)",
  3104. image: {
  3105. source: "./media/characters/elijah/beak-open.svg"
  3106. }
  3107. },
  3108. beakShut: {
  3109. height: math.unit(1.25, "feet"),
  3110. name: "Beak (Shut)",
  3111. image: {
  3112. source: "./media/characters/elijah/beak-shut.svg"
  3113. }
  3114. },
  3115. footFlexing: {
  3116. height: math.unit(1.61, "feet"),
  3117. name: "Foot (Flexing)",
  3118. image: {
  3119. source: "./media/characters/elijah/foot-flexing.svg"
  3120. }
  3121. },
  3122. footStepping: {
  3123. height: math.unit(1.44, "feet"),
  3124. name: "Foot (Stepping)",
  3125. image: {
  3126. source: "./media/characters/elijah/foot-stepping.svg"
  3127. }
  3128. },
  3129. plantigradeLeg: {
  3130. height: math.unit(2.34, "feet"),
  3131. name: "Plantigrade Leg",
  3132. image: {
  3133. source: "./media/characters/elijah/plantigrade-leg.svg"
  3134. }
  3135. },
  3136. plantigradeFootLeft: {
  3137. height: math.unit(0.9, "feet"),
  3138. name: "Plantigrade Foot (Left)",
  3139. image: {
  3140. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3141. }
  3142. },
  3143. plantigradeFootRight: {
  3144. height: math.unit(0.9, "feet"),
  3145. name: "Plantigrade Foot (Right)",
  3146. image: {
  3147. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3148. }
  3149. },
  3150. },
  3151. [
  3152. {
  3153. name: "Normal",
  3154. height: math.unit(1.65, "meters")
  3155. },
  3156. {
  3157. name: "Macro",
  3158. height: math.unit(55, "meters"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Macro+",
  3163. height: math.unit(105, "meters")
  3164. },
  3165. ]
  3166. ))
  3167. characterMakers.push(() => makeCharacter(
  3168. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3169. {
  3170. front: {
  3171. height: math.unit(7 + 2/12, "feet"),
  3172. weight: math.unit(320, "kg"),
  3173. preyCapacity: math.unit(0.276549935, "people"),
  3174. name: "Front",
  3175. image: {
  3176. source: "./media/characters/rai/front.svg",
  3177. extra: 1802/1696,
  3178. bottom: 68/1870
  3179. },
  3180. form: "anthro",
  3181. default: true
  3182. },
  3183. frontDressed: {
  3184. height: math.unit(7 + 2/12, "feet"),
  3185. weight: math.unit(320, "kg"),
  3186. preyCapacity: math.unit(0.276549935, "people"),
  3187. name: "Front (Dressed)",
  3188. image: {
  3189. source: "./media/characters/rai/front-dressed.svg",
  3190. extra: 1802/1696,
  3191. bottom: 68/1870
  3192. },
  3193. form: "anthro"
  3194. },
  3195. side: {
  3196. height: math.unit(7 + 2/12, "feet"),
  3197. weight: math.unit(320, "kg"),
  3198. preyCapacity: math.unit(0.276549935, "people"),
  3199. name: "Side",
  3200. image: {
  3201. source: "./media/characters/rai/side.svg",
  3202. extra: 1789/1710,
  3203. bottom: 115/1904
  3204. },
  3205. form: "anthro"
  3206. },
  3207. back: {
  3208. height: math.unit(7 + 2/12, "feet"),
  3209. weight: math.unit(320, "kg"),
  3210. preyCapacity: math.unit(0.276549935, "people"),
  3211. name: "Back",
  3212. image: {
  3213. source: "./media/characters/rai/back.svg",
  3214. extra: 1770/1707,
  3215. bottom: 28/1798
  3216. },
  3217. form: "anthro"
  3218. },
  3219. feral: {
  3220. height: math.unit(9.5, "feet"),
  3221. weight: math.unit(640, "kg"),
  3222. preyCapacity: math.unit(4, "people"),
  3223. name: "Feral",
  3224. image: {
  3225. source: "./media/characters/rai/feral.svg",
  3226. extra: 945/553,
  3227. bottom: 176/1121
  3228. },
  3229. form: "feral",
  3230. default: true
  3231. },
  3232. dragon: {
  3233. height: math.unit(23, "feet"),
  3234. weight: math.unit(50000, "lb"),
  3235. name: "Dragon",
  3236. image: {
  3237. source: "./media/characters/rai/dragon.svg",
  3238. extra: 2498 / 2030,
  3239. bottom: 85.2 / 2584
  3240. },
  3241. form: "dragon",
  3242. default: true
  3243. },
  3244. maw: {
  3245. height: math.unit(1.69, "feet"),
  3246. name: "Maw",
  3247. image: {
  3248. source: "./media/characters/rai/maw.svg"
  3249. },
  3250. form: "anthro"
  3251. },
  3252. },
  3253. [
  3254. {
  3255. name: "Normal",
  3256. height: math.unit(7 + 2/12, "feet"),
  3257. form: "anthro"
  3258. },
  3259. {
  3260. name: "Big",
  3261. height: math.unit(11, "feet"),
  3262. form: "anthro"
  3263. },
  3264. {
  3265. name: "Minimacro",
  3266. height: math.unit(77, "feet"),
  3267. form: "anthro"
  3268. },
  3269. {
  3270. name: "Macro",
  3271. height: math.unit(302, "feet"),
  3272. default: true,
  3273. form: "anthro"
  3274. },
  3275. {
  3276. name: "Normal",
  3277. height: math.unit(9.5, "feet"),
  3278. form: "feral",
  3279. default: true
  3280. },
  3281. {
  3282. name: "Normal",
  3283. height: math.unit(23, "feet"),
  3284. form: "dragon",
  3285. default: true
  3286. }
  3287. ],
  3288. {
  3289. "anthro": {
  3290. name: "Anthro",
  3291. default: true
  3292. },
  3293. "feral": {
  3294. name: "Feral",
  3295. },
  3296. "dragon": {
  3297. name: "Dragon",
  3298. },
  3299. }
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3303. {
  3304. frontDressed: {
  3305. height: math.unit(216, "feet"),
  3306. weight: math.unit(7000000, "lb"),
  3307. preyCapacity: math.unit(1321, "people"),
  3308. name: "Front (Dressed)",
  3309. image: {
  3310. source: "./media/characters/jazzy/front-dressed.svg",
  3311. extra: 2738 / 2651,
  3312. bottom: 41.8 / 2786
  3313. }
  3314. },
  3315. backDressed: {
  3316. height: math.unit(216, "feet"),
  3317. weight: math.unit(7000000, "lb"),
  3318. preyCapacity: math.unit(1321, "people"),
  3319. name: "Back (Dressed)",
  3320. image: {
  3321. source: "./media/characters/jazzy/back-dressed.svg",
  3322. extra: 2775 / 2673,
  3323. bottom: 36.8 / 2817
  3324. }
  3325. },
  3326. front: {
  3327. height: math.unit(216, "feet"),
  3328. weight: math.unit(7000000, "lb"),
  3329. preyCapacity: math.unit(1321, "people"),
  3330. name: "Front",
  3331. image: {
  3332. source: "./media/characters/jazzy/front.svg",
  3333. extra: 2738 / 2651,
  3334. bottom: 41.8 / 2786
  3335. }
  3336. },
  3337. back: {
  3338. height: math.unit(216, "feet"),
  3339. weight: math.unit(7000000, "lb"),
  3340. preyCapacity: math.unit(1321, "people"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/jazzy/back.svg",
  3344. extra: 2775 / 2673,
  3345. bottom: 36.8 / 2817
  3346. }
  3347. },
  3348. maw: {
  3349. height: math.unit(20, "feet"),
  3350. name: "Maw",
  3351. image: {
  3352. source: "./media/characters/jazzy/maw.svg"
  3353. }
  3354. },
  3355. paws: {
  3356. height: math.unit(27.5, "feet"),
  3357. name: "Paws",
  3358. image: {
  3359. source: "./media/characters/jazzy/paws.svg"
  3360. }
  3361. },
  3362. eye: {
  3363. height: math.unit(4.4, "feet"),
  3364. name: "Eye",
  3365. image: {
  3366. source: "./media/characters/jazzy/eye.svg"
  3367. }
  3368. },
  3369. droneOffense: {
  3370. height: math.unit(9.5, "inches"),
  3371. name: "Drone (Offense)",
  3372. image: {
  3373. source: "./media/characters/jazzy/drone-offense.svg"
  3374. }
  3375. },
  3376. droneRecon: {
  3377. height: math.unit(9.5, "inches"),
  3378. name: "Drone (Recon)",
  3379. image: {
  3380. source: "./media/characters/jazzy/drone-recon.svg"
  3381. }
  3382. },
  3383. droneDefense: {
  3384. height: math.unit(9.5, "inches"),
  3385. name: "Drone (Defense)",
  3386. image: {
  3387. source: "./media/characters/jazzy/drone-defense.svg"
  3388. }
  3389. },
  3390. },
  3391. [
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(216, "feet"),
  3395. default: true
  3396. },
  3397. ]
  3398. ))
  3399. characterMakers.push(() => makeCharacter(
  3400. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3401. {
  3402. front: {
  3403. height: math.unit(9 + 6/12, "feet"),
  3404. weight: math.unit(700, "lb"),
  3405. name: "Front",
  3406. image: {
  3407. source: "./media/characters/flamm/front.svg",
  3408. extra: 1736/1596,
  3409. bottom: 93/1829
  3410. }
  3411. },
  3412. buff: {
  3413. height: math.unit(9 + 6/12, "feet"),
  3414. weight: math.unit(950, "lb"),
  3415. name: "Buff",
  3416. image: {
  3417. source: "./media/characters/flamm/buff.svg",
  3418. extra: 3018/2874,
  3419. bottom: 221/3239
  3420. }
  3421. },
  3422. },
  3423. [
  3424. {
  3425. name: "Normal",
  3426. height: math.unit(9.5, "feet")
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(200, "feet"),
  3431. default: true
  3432. },
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3437. {
  3438. front: {
  3439. height: math.unit(5 + 3/12, "feet"),
  3440. weight: math.unit(60, "kg"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/zephiro/front.svg",
  3444. extra: 1873/1761,
  3445. bottom: 147/2020
  3446. }
  3447. },
  3448. side: {
  3449. height: math.unit(5 + 3/12, "feet"),
  3450. weight: math.unit(60, "kg"),
  3451. name: "Side",
  3452. image: {
  3453. source: "./media/characters/zephiro/side.svg",
  3454. extra: 1929/1827,
  3455. bottom: 65/1994
  3456. }
  3457. },
  3458. back: {
  3459. height: math.unit(5 + 3/12, "feet"),
  3460. weight: math.unit(60, "kg"),
  3461. name: "Back",
  3462. image: {
  3463. source: "./media/characters/zephiro/back.svg",
  3464. extra: 1926/1816,
  3465. bottom: 41/1967
  3466. }
  3467. },
  3468. hand: {
  3469. height: math.unit(0.68, "feet"),
  3470. name: "Hand",
  3471. image: {
  3472. source: "./media/characters/zephiro/hand.svg"
  3473. }
  3474. },
  3475. paw: {
  3476. height: math.unit(1, "feet"),
  3477. name: "Paw",
  3478. image: {
  3479. source: "./media/characters/zephiro/paw.svg"
  3480. }
  3481. },
  3482. beans: {
  3483. height: math.unit(0.93, "feet"),
  3484. name: "Beans",
  3485. image: {
  3486. source: "./media/characters/zephiro/beans.svg"
  3487. }
  3488. },
  3489. },
  3490. [
  3491. {
  3492. name: "Micro",
  3493. height: math.unit(3, "inches")
  3494. },
  3495. {
  3496. name: "Normal",
  3497. height: math.unit(5 + 3 / 12, "feet"),
  3498. default: true
  3499. },
  3500. {
  3501. name: "Macro",
  3502. height: math.unit(118, "feet")
  3503. },
  3504. ]
  3505. ))
  3506. characterMakers.push(() => makeCharacter(
  3507. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3508. {
  3509. front: {
  3510. height: math.unit(5, "feet"),
  3511. weight: math.unit(90, "kg"),
  3512. preyCapacity: math.unit(14, "people"),
  3513. name: "Front",
  3514. image: {
  3515. source: "./media/characters/fory/front.svg",
  3516. extra: 2862 / 2674,
  3517. bottom: 180 / 3043.8
  3518. },
  3519. form: "weaselbun",
  3520. default: true,
  3521. extraAttributes: {
  3522. "pawSize": {
  3523. name: "Paw Size",
  3524. power: 2,
  3525. type: "area",
  3526. base: math.unit(0.1596, "m^2")
  3527. },
  3528. "pawLength": {
  3529. name: "Paw Length",
  3530. power: 1,
  3531. type: "length",
  3532. base: math.unit(0.7, "m")
  3533. }
  3534. }
  3535. },
  3536. back: {
  3537. height: math.unit(5, "feet"),
  3538. weight: math.unit(90, "kg"),
  3539. preyCapacity: math.unit(14, "people"),
  3540. name: "Back",
  3541. image: {
  3542. source: "./media/characters/fory/back.svg",
  3543. extra: 1790/1672,
  3544. bottom: 84/1874
  3545. },
  3546. form: "weaselbun",
  3547. extraAttributes: {
  3548. "pawSize": {
  3549. name: "Paw Size",
  3550. power: 2,
  3551. type: "area",
  3552. base: math.unit(0.1596, "m^2")
  3553. },
  3554. "pawLength": {
  3555. name: "Paw Length",
  3556. power: 1,
  3557. type: "length",
  3558. base: math.unit(0.7, "m")
  3559. }
  3560. }
  3561. },
  3562. paw: {
  3563. height: math.unit(2.14, "feet"),
  3564. name: "Paw",
  3565. image: {
  3566. source: "./media/characters/fory/paw.svg"
  3567. },
  3568. form: "weaselbun",
  3569. extraAttributes: {
  3570. "pawSize": {
  3571. name: "Paw Size",
  3572. power: 2,
  3573. type: "area",
  3574. base: math.unit(0.1596, "m^2")
  3575. },
  3576. "pawLength": {
  3577. name: "Paw Length",
  3578. power: 1,
  3579. type: "length",
  3580. base: math.unit(0.48, "m")
  3581. }
  3582. }
  3583. },
  3584. bunBack: {
  3585. height: math.unit(3, "feet"),
  3586. weight: math.unit(20, "kg"),
  3587. preyCapacity: math.unit(3, "people"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/fory/bun-back.svg",
  3591. extra: 1749/1564,
  3592. bottom: 246/1995
  3593. },
  3594. form: "bun",
  3595. default: true,
  3596. extraAttributes: {
  3597. "pawSize": {
  3598. name: "Paw Size",
  3599. power: 2,
  3600. type: "area",
  3601. base: math.unit(0.072, "m^2")
  3602. },
  3603. "pawLength": {
  3604. name: "Paw Length",
  3605. power: 1,
  3606. type: "length",
  3607. base: math.unit(0.45, "m")
  3608. }
  3609. }
  3610. },
  3611. },
  3612. [
  3613. {
  3614. name: "Normal",
  3615. height: math.unit(5, "feet"),
  3616. form: "weaselbun"
  3617. },
  3618. {
  3619. name: "Macro",
  3620. height: math.unit(50, "feet"),
  3621. default: true,
  3622. form: "weaselbun"
  3623. },
  3624. {
  3625. name: "Megamacro",
  3626. height: math.unit(10, "miles"),
  3627. form: "weaselbun"
  3628. },
  3629. {
  3630. name: "Gigamacro",
  3631. height: math.unit(5, "earths"),
  3632. form: "weaselbun"
  3633. },
  3634. {
  3635. name: "Normal",
  3636. height: math.unit(3, "feet"),
  3637. default: true,
  3638. form: "bun"
  3639. },
  3640. {
  3641. name: "Fun-Size",
  3642. height: math.unit(12, "feet"),
  3643. form: "bun"
  3644. },
  3645. {
  3646. name: "Macro",
  3647. height: math.unit(100, "feet"),
  3648. form: "bun"
  3649. },
  3650. {
  3651. name: "Planetary",
  3652. height: math.unit(3, "earths"),
  3653. form: "bun"
  3654. },
  3655. ],
  3656. {
  3657. "weaselbun": {
  3658. name: "Weaselbun",
  3659. default: true
  3660. },
  3661. "bun": {
  3662. name: "Bun",
  3663. },
  3664. }
  3665. ))
  3666. characterMakers.push(() => makeCharacter(
  3667. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3668. {
  3669. front: {
  3670. height: math.unit(7, "feet"),
  3671. weight: math.unit(90, "kg"),
  3672. name: "Front",
  3673. image: {
  3674. source: "./media/characters/kurrikage/front.svg",
  3675. extra: 1845/1733,
  3676. bottom: 119/1964
  3677. }
  3678. },
  3679. back: {
  3680. height: math.unit(7, "feet"),
  3681. weight: math.unit(90, "kg"),
  3682. name: "Back",
  3683. image: {
  3684. source: "./media/characters/kurrikage/back.svg",
  3685. extra: 1790/1677,
  3686. bottom: 61/1851
  3687. }
  3688. },
  3689. dressed: {
  3690. height: math.unit(7, "feet"),
  3691. weight: math.unit(90, "kg"),
  3692. name: "Dressed",
  3693. image: {
  3694. source: "./media/characters/kurrikage/dressed.svg",
  3695. extra: 1845/1733,
  3696. bottom: 119/1964
  3697. }
  3698. },
  3699. foot: {
  3700. height: math.unit(1.5, "feet"),
  3701. name: "Foot",
  3702. image: {
  3703. source: "./media/characters/kurrikage/foot.svg"
  3704. }
  3705. },
  3706. staff: {
  3707. height: math.unit(6.7, "feet"),
  3708. name: "Staff",
  3709. image: {
  3710. source: "./media/characters/kurrikage/staff.svg"
  3711. }
  3712. },
  3713. peek: {
  3714. height: math.unit(1.05, "feet"),
  3715. name: "Peeking",
  3716. image: {
  3717. source: "./media/characters/kurrikage/peek.svg",
  3718. bottom: 0.08
  3719. }
  3720. },
  3721. },
  3722. [
  3723. {
  3724. name: "Normal",
  3725. height: math.unit(12, "feet"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "Big",
  3730. height: math.unit(20, "feet")
  3731. },
  3732. {
  3733. name: "Macro",
  3734. height: math.unit(500, "feet")
  3735. },
  3736. {
  3737. name: "Megamacro",
  3738. height: math.unit(20, "miles")
  3739. },
  3740. ]
  3741. ))
  3742. characterMakers.push(() => makeCharacter(
  3743. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3744. {
  3745. front: {
  3746. height: math.unit(6, "feet"),
  3747. weight: math.unit(75, "kg"),
  3748. name: "Front",
  3749. image: {
  3750. source: "./media/characters/shingo/front.svg",
  3751. extra: 1900/1825,
  3752. bottom: 82/1982
  3753. }
  3754. },
  3755. side: {
  3756. height: math.unit(6, "feet"),
  3757. weight: math.unit(75, "kg"),
  3758. name: "Side",
  3759. image: {
  3760. source: "./media/characters/shingo/side.svg",
  3761. extra: 1930/1865,
  3762. bottom: 16/1946
  3763. }
  3764. },
  3765. back: {
  3766. height: math.unit(6, "feet"),
  3767. weight: math.unit(75, "kg"),
  3768. name: "Back",
  3769. image: {
  3770. source: "./media/characters/shingo/back.svg",
  3771. extra: 1922/1852,
  3772. bottom: 16/1938
  3773. }
  3774. },
  3775. frontDressed: {
  3776. height: math.unit(6, "feet"),
  3777. weight: math.unit(150, "lb"),
  3778. name: "Front-dressed",
  3779. image: {
  3780. source: "./media/characters/shingo/front-dressed.svg",
  3781. extra: 1900/1825,
  3782. bottom: 82/1982
  3783. }
  3784. },
  3785. paw: {
  3786. height: math.unit(1.29, "feet"),
  3787. name: "Paw",
  3788. image: {
  3789. source: "./media/characters/shingo/paw.svg"
  3790. }
  3791. },
  3792. hand: {
  3793. height: math.unit(1.07, "feet"),
  3794. name: "Hand",
  3795. image: {
  3796. source: "./media/characters/shingo/hand.svg"
  3797. }
  3798. },
  3799. frontAlt: {
  3800. height: math.unit(6, "feet"),
  3801. weight: math.unit(75, "kg"),
  3802. name: "Front (Alt)",
  3803. image: {
  3804. source: "./media/characters/shingo/front-alt.svg",
  3805. extra: 3511 / 3338,
  3806. bottom: 0.005
  3807. }
  3808. },
  3809. frontAlt2: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(75, "kg"),
  3812. name: "Front (Alt 2)",
  3813. image: {
  3814. source: "./media/characters/shingo/front-alt-2.svg",
  3815. extra: 706/681,
  3816. bottom: 11/717
  3817. }
  3818. },
  3819. pawAlt: {
  3820. height: math.unit(1, "feet"),
  3821. name: "Paw (Alt)",
  3822. image: {
  3823. source: "./media/characters/shingo/paw-alt.svg"
  3824. }
  3825. },
  3826. },
  3827. [
  3828. {
  3829. name: "Micro",
  3830. height: math.unit(4, "inches")
  3831. },
  3832. {
  3833. name: "Normal",
  3834. height: math.unit(6, "feet"),
  3835. default: true
  3836. },
  3837. {
  3838. name: "Macro",
  3839. height: math.unit(108, "feet")
  3840. },
  3841. {
  3842. name: "Macro+",
  3843. height: math.unit(1500, "feet")
  3844. },
  3845. ]
  3846. ))
  3847. characterMakers.push(() => makeCharacter(
  3848. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3849. {
  3850. side: {
  3851. height: math.unit(6, "feet"),
  3852. weight: math.unit(75, "kg"),
  3853. name: "Side",
  3854. image: {
  3855. source: "./media/characters/aigey/side.svg"
  3856. }
  3857. },
  3858. },
  3859. [
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(200, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Megamacro",
  3867. height: math.unit(100, "miles")
  3868. },
  3869. ]
  3870. )
  3871. )
  3872. characterMakers.push(() => makeCharacter(
  3873. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3874. {
  3875. front: {
  3876. height: math.unit(13, "feet"),
  3877. weight: math.unit(1036.80, "kg"),
  3878. name: "Front",
  3879. image: {
  3880. source: "./media/characters/natasha/front.svg",
  3881. extra: 1301/1210,
  3882. bottom: 39/1340
  3883. }
  3884. },
  3885. back: {
  3886. height: math.unit(13, "feet"),
  3887. weight: math.unit(1036.80, "kg"),
  3888. name: "Back",
  3889. image: {
  3890. source: "./media/characters/natasha/back.svg",
  3891. extra: 1342/1252,
  3892. bottom: 20/1362
  3893. }
  3894. },
  3895. head: {
  3896. height: math.unit(3.48, "feet"),
  3897. name: "Head",
  3898. image: {
  3899. source: "./media/characters/natasha/head.svg"
  3900. }
  3901. },
  3902. jaws: {
  3903. height: math.unit(3.52, "feet"),
  3904. name: "Jaws",
  3905. image: {
  3906. source: "./media/characters/natasha/jaws.svg"
  3907. }
  3908. },
  3909. paws: {
  3910. height: math.unit(2.7, "feet"),
  3911. name: "Paws",
  3912. image: {
  3913. source: "./media/characters/natasha/paws.svg"
  3914. }
  3915. },
  3916. collar: {
  3917. height: math.unit(0.89, "feet"),
  3918. name: "Collar",
  3919. image: {
  3920. source: "./media/characters/natasha/collar.svg"
  3921. }
  3922. },
  3923. gauge: {
  3924. height: math.unit(0.36, "feet"),
  3925. name: "Gauge",
  3926. image: {
  3927. source: "./media/characters/natasha/gauge.svg"
  3928. }
  3929. },
  3930. },
  3931. [
  3932. {
  3933. name: "Shortstack",
  3934. height: math.unit(3, "feet")
  3935. },
  3936. {
  3937. name: "Normal",
  3938. height: math.unit(13, "feet"),
  3939. default: true
  3940. },
  3941. {
  3942. name: "Macro",
  3943. height: math.unit(100, "feet")
  3944. },
  3945. {
  3946. name: "Macro+",
  3947. height: math.unit(260, "feet")
  3948. },
  3949. {
  3950. name: "Macro++",
  3951. height: math.unit(1, "mile")
  3952. },
  3953. ]
  3954. ))
  3955. characterMakers.push(() => makeCharacter(
  3956. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3957. {
  3958. front: {
  3959. height: math.unit(6, "feet"),
  3960. weight: math.unit(75, "kg"),
  3961. name: "Front",
  3962. image: {
  3963. source: "./media/characters/malik/front.svg",
  3964. extra: 1750/1561,
  3965. bottom: 80/1830
  3966. },
  3967. extraAttributes: {
  3968. "toeSize": {
  3969. name: "Toe Size",
  3970. power: 2,
  3971. type: "area",
  3972. base: math.unit(0.0159, "m^2")
  3973. },
  3974. "pawSize": {
  3975. name: "Paw Size",
  3976. power: 2,
  3977. type: "area",
  3978. base: math.unit(0.09834, "m^2")
  3979. },
  3980. }
  3981. },
  3982. side: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(75, "kg"),
  3985. name: "Side",
  3986. image: {
  3987. source: "./media/characters/malik/side.svg",
  3988. extra: 1802/1685,
  3989. bottom: 42/1844
  3990. },
  3991. extraAttributes: {
  3992. "toeSize": {
  3993. name: "Toe Size",
  3994. power: 2,
  3995. type: "area",
  3996. base: math.unit(0.0159, "m^2")
  3997. },
  3998. "pawSize": {
  3999. name: "Paw Size",
  4000. power: 2,
  4001. type: "area",
  4002. base: math.unit(0.09834, "m^2")
  4003. },
  4004. }
  4005. },
  4006. back: {
  4007. height: math.unit(6, "feet"),
  4008. weight: math.unit(75, "kg"),
  4009. name: "Back",
  4010. image: {
  4011. source: "./media/characters/malik/back.svg",
  4012. extra: 1803/1607,
  4013. bottom: 33/1836
  4014. },
  4015. extraAttributes: {
  4016. "toeSize": {
  4017. name: "Toe Size",
  4018. power: 2,
  4019. type: "area",
  4020. base: math.unit(0.0159, "m^2")
  4021. },
  4022. "pawSize": {
  4023. name: "Paw Size",
  4024. power: 2,
  4025. type: "area",
  4026. base: math.unit(0.09834, "m^2")
  4027. },
  4028. }
  4029. },
  4030. },
  4031. [
  4032. {
  4033. name: "Macro",
  4034. height: math.unit(156, "feet"),
  4035. default: true
  4036. },
  4037. {
  4038. name: "Macro+",
  4039. height: math.unit(1188, "feet")
  4040. },
  4041. ]
  4042. ))
  4043. characterMakers.push(() => makeCharacter(
  4044. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4045. {
  4046. front: {
  4047. height: math.unit(6, "feet"),
  4048. weight: math.unit(75, "kg"),
  4049. name: "Front",
  4050. image: {
  4051. source: "./media/characters/sefer/front.svg",
  4052. extra: 848 / 659,
  4053. bottom: 28.3 / 876.442
  4054. }
  4055. },
  4056. back: {
  4057. height: math.unit(6, "feet"),
  4058. weight: math.unit(75, "kg"),
  4059. name: "Back",
  4060. image: {
  4061. source: "./media/characters/sefer/back.svg",
  4062. extra: 864 / 695,
  4063. bottom: 10 / 871
  4064. }
  4065. },
  4066. frontDressed: {
  4067. height: math.unit(6, "feet"),
  4068. weight: math.unit(75, "kg"),
  4069. name: "Dressed",
  4070. image: {
  4071. source: "./media/characters/sefer/dressed.svg",
  4072. extra: 839 / 653,
  4073. bottom: 37.6 / 878
  4074. }
  4075. },
  4076. },
  4077. [
  4078. {
  4079. name: "Normal",
  4080. height: math.unit(6, "feet"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Big",
  4085. height: math.unit(8, "meters")
  4086. },
  4087. ]
  4088. ))
  4089. characterMakers.push(() => makeCharacter(
  4090. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4091. {
  4092. body: {
  4093. height: math.unit(2.2428, "meter"),
  4094. weight: math.unit(124.738, "kg"),
  4095. name: "Body",
  4096. image: {
  4097. extra: 1225 / 1050,
  4098. source: "./media/characters/north/front.svg"
  4099. }
  4100. }
  4101. },
  4102. [
  4103. {
  4104. name: "Micro",
  4105. height: math.unit(4, "inches")
  4106. },
  4107. {
  4108. name: "Macro",
  4109. height: math.unit(63, "meters")
  4110. },
  4111. {
  4112. name: "Megamacro",
  4113. height: math.unit(101, "miles"),
  4114. default: true
  4115. }
  4116. ]
  4117. ))
  4118. characterMakers.push(() => makeCharacter(
  4119. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4120. {
  4121. angled: {
  4122. height: math.unit(4, "meter"),
  4123. weight: math.unit(150, "kg"),
  4124. name: "Angled",
  4125. image: {
  4126. source: "./media/characters/talan/angled-sfw.svg",
  4127. bottom: 29 / 3734
  4128. }
  4129. },
  4130. angledNsfw: {
  4131. height: math.unit(4, "meter"),
  4132. weight: math.unit(150, "kg"),
  4133. name: "Angled (NSFW)",
  4134. image: {
  4135. source: "./media/characters/talan/angled-nsfw.svg",
  4136. bottom: 29 / 3734
  4137. }
  4138. },
  4139. frontNsfw: {
  4140. height: math.unit(4, "meter"),
  4141. weight: math.unit(150, "kg"),
  4142. name: "Front (NSFW)",
  4143. image: {
  4144. source: "./media/characters/talan/front-nsfw.svg",
  4145. bottom: 29 / 3734
  4146. }
  4147. },
  4148. sideNsfw: {
  4149. height: math.unit(4, "meter"),
  4150. weight: math.unit(150, "kg"),
  4151. name: "Side (NSFW)",
  4152. image: {
  4153. source: "./media/characters/talan/side-nsfw.svg",
  4154. bottom: 29 / 3734
  4155. }
  4156. },
  4157. back: {
  4158. height: math.unit(4, "meter"),
  4159. weight: math.unit(150, "kg"),
  4160. name: "Back",
  4161. image: {
  4162. source: "./media/characters/talan/back.svg"
  4163. }
  4164. },
  4165. dickBottom: {
  4166. height: math.unit(0.621, "meter"),
  4167. name: "Dick (Bottom)",
  4168. image: {
  4169. source: "./media/characters/talan/dick-bottom.svg"
  4170. }
  4171. },
  4172. dickTop: {
  4173. height: math.unit(0.621, "meter"),
  4174. name: "Dick (Top)",
  4175. image: {
  4176. source: "./media/characters/talan/dick-top.svg"
  4177. }
  4178. },
  4179. dickSide: {
  4180. height: math.unit(0.305, "meter"),
  4181. name: "Dick (Side)",
  4182. image: {
  4183. source: "./media/characters/talan/dick-side.svg"
  4184. }
  4185. },
  4186. dickFront: {
  4187. height: math.unit(0.305, "meter"),
  4188. name: "Dick (Front)",
  4189. image: {
  4190. source: "./media/characters/talan/dick-front.svg"
  4191. }
  4192. },
  4193. },
  4194. [
  4195. {
  4196. name: "Normal",
  4197. height: math.unit(4, "meters")
  4198. },
  4199. {
  4200. name: "Macro",
  4201. height: math.unit(100, "meters")
  4202. },
  4203. {
  4204. name: "Megamacro",
  4205. height: math.unit(2, "miles"),
  4206. default: true
  4207. },
  4208. {
  4209. name: "Gigamacro",
  4210. height: math.unit(5000, "miles")
  4211. },
  4212. {
  4213. name: "Teramacro",
  4214. height: math.unit(100, "parsecs")
  4215. }
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4220. {
  4221. front: {
  4222. height: math.unit(2, "meter"),
  4223. weight: math.unit(90, "kg"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/gael'rathus/front.svg"
  4227. }
  4228. },
  4229. frontAlt: {
  4230. height: math.unit(2, "meter"),
  4231. weight: math.unit(90, "kg"),
  4232. name: "Front (alt)",
  4233. image: {
  4234. source: "./media/characters/gael'rathus/front-alt.svg"
  4235. }
  4236. },
  4237. frontAlt2: {
  4238. height: math.unit(2, "meter"),
  4239. weight: math.unit(90, "kg"),
  4240. name: "Front (alt 2)",
  4241. image: {
  4242. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4243. }
  4244. }
  4245. },
  4246. [
  4247. {
  4248. name: "Normal",
  4249. height: math.unit(9, "feet"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "Large",
  4254. height: math.unit(25, "feet")
  4255. },
  4256. {
  4257. name: "Macro",
  4258. height: math.unit(0.25, "miles")
  4259. },
  4260. {
  4261. name: "Megamacro",
  4262. height: math.unit(10, "miles")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4268. {
  4269. side: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(140, "kg"),
  4272. name: "Side",
  4273. image: {
  4274. source: "./media/characters/sosha/side.svg",
  4275. extra: 1170/1006,
  4276. bottom: 94/1264
  4277. }
  4278. },
  4279. maw: {
  4280. height: math.unit(2.87, "feet"),
  4281. name: "Maw",
  4282. image: {
  4283. source: "./media/characters/sosha/maw.svg",
  4284. extra: 966/865,
  4285. bottom: 0/966
  4286. }
  4287. },
  4288. cooch: {
  4289. height: math.unit(5.6, "feet"),
  4290. name: "Cooch",
  4291. image: {
  4292. source: "./media/characters/sosha/cooch.svg"
  4293. }
  4294. },
  4295. },
  4296. [
  4297. {
  4298. name: "Normal",
  4299. height: math.unit(12, "feet"),
  4300. default: true
  4301. }
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4306. {
  4307. side: {
  4308. height: math.unit(5 + 5 / 12, "feet"),
  4309. weight: math.unit(170, "kg"),
  4310. name: "Side",
  4311. image: {
  4312. source: "./media/characters/runnola/side.svg",
  4313. extra: 741 / 448,
  4314. bottom: 0.05
  4315. }
  4316. },
  4317. },
  4318. [
  4319. {
  4320. name: "Small",
  4321. height: math.unit(3, "feet")
  4322. },
  4323. {
  4324. name: "Normal",
  4325. height: math.unit(5 + 5 / 12, "feet"),
  4326. default: true
  4327. },
  4328. {
  4329. name: "Big",
  4330. height: math.unit(10, "feet")
  4331. },
  4332. ]
  4333. ))
  4334. characterMakers.push(() => makeCharacter(
  4335. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4336. {
  4337. front: {
  4338. height: math.unit(2, "meter"),
  4339. weight: math.unit(50, "kg"),
  4340. name: "Front",
  4341. image: {
  4342. source: "./media/characters/kurribird/front.svg",
  4343. bottom: 0.015
  4344. }
  4345. },
  4346. frontAlt: {
  4347. height: math.unit(1.5, "meter"),
  4348. weight: math.unit(50, "kg"),
  4349. name: "Front (Alt)",
  4350. image: {
  4351. source: "./media/characters/kurribird/front-alt.svg",
  4352. extra: 1.45
  4353. }
  4354. },
  4355. },
  4356. [
  4357. {
  4358. name: "Normal",
  4359. height: math.unit(7, "feet")
  4360. },
  4361. {
  4362. name: "Big",
  4363. height: math.unit(12, "feet"),
  4364. default: true
  4365. },
  4366. {
  4367. name: "Macro",
  4368. height: math.unit(1500, "feet")
  4369. },
  4370. {
  4371. name: "Megamacro",
  4372. height: math.unit(2, "miles")
  4373. }
  4374. ]
  4375. ))
  4376. characterMakers.push(() => makeCharacter(
  4377. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4378. {
  4379. front: {
  4380. height: math.unit(2, "meter"),
  4381. weight: math.unit(80, "kg"),
  4382. name: "Front",
  4383. image: {
  4384. source: "./media/characters/elbial/front.svg",
  4385. extra: 1643 / 1556,
  4386. bottom: 60.2 / 1696
  4387. }
  4388. },
  4389. side: {
  4390. height: math.unit(2, "meter"),
  4391. weight: math.unit(80, "kg"),
  4392. name: "Side",
  4393. image: {
  4394. source: "./media/characters/elbial/side.svg",
  4395. extra: 1601/1528,
  4396. bottom: 97/1698
  4397. }
  4398. },
  4399. back: {
  4400. height: math.unit(2, "meter"),
  4401. weight: math.unit(80, "kg"),
  4402. name: "Back",
  4403. image: {
  4404. source: "./media/characters/elbial/back.svg",
  4405. extra: 1653/1569,
  4406. bottom: 20/1673
  4407. }
  4408. },
  4409. frontDressed: {
  4410. height: math.unit(2, "meter"),
  4411. weight: math.unit(80, "kg"),
  4412. name: "Front (Dressed)",
  4413. image: {
  4414. source: "./media/characters/elbial/front-dressed.svg",
  4415. extra: 1638/1569,
  4416. bottom: 70/1708
  4417. }
  4418. },
  4419. genitals: {
  4420. height: math.unit(2 / 3.367, "meter"),
  4421. name: "Genitals",
  4422. image: {
  4423. source: "./media/characters/elbial/genitals.svg"
  4424. }
  4425. },
  4426. },
  4427. [
  4428. {
  4429. name: "Large",
  4430. height: math.unit(100, "feet")
  4431. },
  4432. {
  4433. name: "Macro",
  4434. height: math.unit(500, "feet"),
  4435. default: true
  4436. },
  4437. {
  4438. name: "Megamacro",
  4439. height: math.unit(10, "miles")
  4440. },
  4441. {
  4442. name: "Gigamacro",
  4443. height: math.unit(25000, "miles")
  4444. },
  4445. {
  4446. name: "Full-Size",
  4447. height: math.unit(8000000, "gigaparsecs")
  4448. }
  4449. ]
  4450. ))
  4451. characterMakers.push(() => makeCharacter(
  4452. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4453. {
  4454. front: {
  4455. height: math.unit(2, "meter"),
  4456. weight: math.unit(60, "kg"),
  4457. name: "Front",
  4458. image: {
  4459. source: "./media/characters/noah/front.svg",
  4460. extra: 1383/1313,
  4461. bottom: 104/1487
  4462. }
  4463. },
  4464. hand: {
  4465. height: math.unit(0.6, "feet"),
  4466. name: "Hand",
  4467. image: {
  4468. source: "./media/characters/noah/hand.svg"
  4469. }
  4470. },
  4471. talons: {
  4472. height: math.unit(1.385, "feet"),
  4473. name: "Talons",
  4474. image: {
  4475. source: "./media/characters/noah/talons.svg"
  4476. }
  4477. },
  4478. beak: {
  4479. height: math.unit(0.43, "feet"),
  4480. name: "Beak",
  4481. image: {
  4482. source: "./media/characters/noah/beak.svg"
  4483. }
  4484. },
  4485. collar: {
  4486. height: math.unit(0.88, "feet"),
  4487. name: "Collar",
  4488. image: {
  4489. source: "./media/characters/noah/collar.svg"
  4490. }
  4491. },
  4492. eyeNarrow: {
  4493. height: math.unit(0.18, "feet"),
  4494. name: "Eye (Narrow)",
  4495. image: {
  4496. source: "./media/characters/noah/eye-narrow.svg"
  4497. }
  4498. },
  4499. eyeNormal: {
  4500. height: math.unit(0.18, "feet"),
  4501. name: "Eye (Normal)",
  4502. image: {
  4503. source: "./media/characters/noah/eye-normal.svg"
  4504. }
  4505. },
  4506. eyeWide: {
  4507. height: math.unit(0.18, "feet"),
  4508. name: "Eye (Wide)",
  4509. image: {
  4510. source: "./media/characters/noah/eye-wide.svg"
  4511. }
  4512. },
  4513. ear: {
  4514. height: math.unit(0.64, "feet"),
  4515. name: "Ear",
  4516. image: {
  4517. source: "./media/characters/noah/ear.svg"
  4518. }
  4519. },
  4520. },
  4521. [
  4522. {
  4523. name: "Large",
  4524. height: math.unit(50, "feet")
  4525. },
  4526. {
  4527. name: "Macro",
  4528. height: math.unit(750, "feet"),
  4529. default: true
  4530. },
  4531. {
  4532. name: "Megamacro",
  4533. height: math.unit(50, "miles")
  4534. },
  4535. {
  4536. name: "Gigamacro",
  4537. height: math.unit(100000, "miles")
  4538. },
  4539. {
  4540. name: "Full-Size",
  4541. height: math.unit(3000000000, "miles")
  4542. }
  4543. ]
  4544. ))
  4545. characterMakers.push(() => makeCharacter(
  4546. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4547. {
  4548. front: {
  4549. height: math.unit(2, "meter"),
  4550. weight: math.unit(80, "kg"),
  4551. name: "Front",
  4552. image: {
  4553. source: "./media/characters/natalya/front.svg"
  4554. }
  4555. },
  4556. back: {
  4557. height: math.unit(2, "meter"),
  4558. weight: math.unit(80, "kg"),
  4559. name: "Back",
  4560. image: {
  4561. source: "./media/characters/natalya/back.svg"
  4562. }
  4563. }
  4564. },
  4565. [
  4566. {
  4567. name: "Normal",
  4568. height: math.unit(150, "feet"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Megamacro",
  4573. height: math.unit(5, "miles")
  4574. },
  4575. {
  4576. name: "Full-Size",
  4577. height: math.unit(600, "kiloparsecs")
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4583. {
  4584. front: {
  4585. height: math.unit(2, "meter"),
  4586. weight: math.unit(50, "kg"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/erestrebah/front.svg",
  4590. extra: 1262/1162,
  4591. bottom: 96/1358
  4592. }
  4593. },
  4594. back: {
  4595. height: math.unit(2, "meter"),
  4596. weight: math.unit(50, "kg"),
  4597. name: "Back",
  4598. image: {
  4599. source: "./media/characters/erestrebah/back.svg",
  4600. extra: 1257/1139,
  4601. bottom: 13/1270
  4602. }
  4603. },
  4604. wing: {
  4605. height: math.unit(2, "meter"),
  4606. weight: math.unit(50, "kg"),
  4607. name: "Wing",
  4608. image: {
  4609. source: "./media/characters/erestrebah/wing.svg",
  4610. extra: 1262/1162,
  4611. bottom: 96/1358
  4612. }
  4613. },
  4614. mouth: {
  4615. height: math.unit(0.39, "feet"),
  4616. name: "Mouth",
  4617. image: {
  4618. source: "./media/characters/erestrebah/mouth.svg"
  4619. }
  4620. }
  4621. },
  4622. [
  4623. {
  4624. name: "Normal",
  4625. height: math.unit(10, "feet")
  4626. },
  4627. {
  4628. name: "Large",
  4629. height: math.unit(50, "feet"),
  4630. default: true
  4631. },
  4632. {
  4633. name: "Macro",
  4634. height: math.unit(300, "feet")
  4635. },
  4636. {
  4637. name: "Macro+",
  4638. height: math.unit(750, "feet")
  4639. },
  4640. {
  4641. name: "Megamacro",
  4642. height: math.unit(3, "miles")
  4643. }
  4644. ]
  4645. ))
  4646. characterMakers.push(() => makeCharacter(
  4647. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4648. {
  4649. front: {
  4650. height: math.unit(2, "meter"),
  4651. weight: math.unit(80, "kg"),
  4652. name: "Front",
  4653. image: {
  4654. source: "./media/characters/jennifer/front.svg",
  4655. bottom: 0.11,
  4656. extra: 1.16
  4657. }
  4658. },
  4659. frontAlt: {
  4660. height: math.unit(2, "meter"),
  4661. weight: math.unit(80, "kg"),
  4662. name: "Front (Alt)",
  4663. image: {
  4664. source: "./media/characters/jennifer/front-alt.svg"
  4665. }
  4666. }
  4667. },
  4668. [
  4669. {
  4670. name: "Canon Height",
  4671. height: math.unit(120, "feet"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Macro+",
  4676. height: math.unit(300, "feet")
  4677. },
  4678. {
  4679. name: "Megamacro",
  4680. height: math.unit(20000, "feet")
  4681. }
  4682. ]
  4683. ))
  4684. characterMakers.push(() => makeCharacter(
  4685. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4686. {
  4687. front: {
  4688. height: math.unit(2, "meter"),
  4689. weight: math.unit(50, "kg"),
  4690. name: "Front",
  4691. image: {
  4692. source: "./media/characters/kalista/front.svg",
  4693. extra: 1314/1145,
  4694. bottom: 101/1415
  4695. }
  4696. },
  4697. back: {
  4698. height: math.unit(2, "meter"),
  4699. weight: math.unit(50, "kg"),
  4700. name: "Back",
  4701. image: {
  4702. source: "./media/characters/kalista/back.svg",
  4703. extra: 1366 / 1156,
  4704. bottom: 33.9 / 1362.78
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Uncomfortably Small",
  4711. height: math.unit(10, "feet")
  4712. },
  4713. {
  4714. name: "Small",
  4715. height: math.unit(30, "feet")
  4716. },
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(100, "feet"),
  4720. default: true
  4721. },
  4722. {
  4723. name: "Macro+",
  4724. height: math.unit(2000, "feet")
  4725. },
  4726. {
  4727. name: "True Form",
  4728. height: math.unit(8924, "miles")
  4729. }
  4730. ]
  4731. ))
  4732. characterMakers.push(() => makeCharacter(
  4733. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4734. {
  4735. front: {
  4736. height: math.unit(2, "meter"),
  4737. weight: math.unit(120, "kg"),
  4738. name: "Front",
  4739. image: {
  4740. source: "./media/characters/ggv/front.svg"
  4741. }
  4742. },
  4743. side: {
  4744. height: math.unit(2, "meter"),
  4745. weight: math.unit(120, "kg"),
  4746. name: "Side",
  4747. image: {
  4748. source: "./media/characters/ggv/side.svg"
  4749. }
  4750. }
  4751. },
  4752. [
  4753. {
  4754. name: "Extremely Puny",
  4755. height: math.unit(9 + 5 / 12, "feet")
  4756. },
  4757. {
  4758. name: "Horribly Small",
  4759. height: math.unit(47.7, "miles"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "Reasonably Sized",
  4764. height: math.unit(25000, "parsecs")
  4765. },
  4766. {
  4767. name: "Slightly Uncompressed",
  4768. height: math.unit(7.77e31, "parsecs")
  4769. },
  4770. {
  4771. name: "Omniversal",
  4772. height: math.unit(1e300, "meters")
  4773. },
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(2, "meter"),
  4781. weight: math.unit(75, "lb"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/napalm/front.svg"
  4785. }
  4786. },
  4787. back: {
  4788. height: math.unit(2, "meter"),
  4789. weight: math.unit(75, "lb"),
  4790. name: "Back",
  4791. image: {
  4792. source: "./media/characters/napalm/back.svg"
  4793. }
  4794. }
  4795. },
  4796. [
  4797. {
  4798. name: "Standard",
  4799. height: math.unit(55, "feet"),
  4800. default: true
  4801. }
  4802. ]
  4803. ))
  4804. characterMakers.push(() => makeCharacter(
  4805. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4806. {
  4807. front: {
  4808. height: math.unit(7 + 5 / 6, "feet"),
  4809. weight: math.unit(325, "lb"),
  4810. name: "Front",
  4811. image: {
  4812. source: "./media/characters/asana/front.svg",
  4813. extra: 1133 / 1060,
  4814. bottom: 15.2 / 1148.6
  4815. }
  4816. },
  4817. back: {
  4818. height: math.unit(7 + 5 / 6, "feet"),
  4819. weight: math.unit(325, "lb"),
  4820. name: "Back",
  4821. image: {
  4822. source: "./media/characters/asana/back.svg",
  4823. extra: 1114 / 1043,
  4824. bottom: 5 / 1120
  4825. }
  4826. },
  4827. dressedDark: {
  4828. height: math.unit(7 + 5 / 6, "feet"),
  4829. weight: math.unit(325, "lb"),
  4830. name: "Dressed (Dark)",
  4831. image: {
  4832. source: "./media/characters/asana/dressed-dark.svg",
  4833. extra: 1133 / 1060,
  4834. bottom: 15.2 / 1148.6
  4835. }
  4836. },
  4837. dressedLight: {
  4838. height: math.unit(7 + 5 / 6, "feet"),
  4839. weight: math.unit(325, "lb"),
  4840. name: "Dressed (Light)",
  4841. image: {
  4842. source: "./media/characters/asana/dressed-light.svg",
  4843. extra: 1133 / 1060,
  4844. bottom: 15.2 / 1148.6
  4845. }
  4846. },
  4847. },
  4848. [
  4849. {
  4850. name: "Standard",
  4851. height: math.unit(7 + 5 / 6, "feet"),
  4852. default: true
  4853. },
  4854. {
  4855. name: "Large",
  4856. height: math.unit(10, "meters")
  4857. },
  4858. {
  4859. name: "Macro",
  4860. height: math.unit(2500, "meters")
  4861. },
  4862. {
  4863. name: "Megamacro",
  4864. height: math.unit(5e6, "meters")
  4865. },
  4866. {
  4867. name: "Examacro",
  4868. height: math.unit(5e12, "lightyears")
  4869. },
  4870. {
  4871. name: "Max Size",
  4872. height: math.unit(1e31, "lightyears")
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4878. {
  4879. front: {
  4880. height: math.unit(2, "meter"),
  4881. weight: math.unit(60, "kg"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/ebony/front.svg",
  4885. bottom: 0.03,
  4886. extra: 1045 / 810 + 0.03
  4887. }
  4888. },
  4889. side: {
  4890. height: math.unit(2, "meter"),
  4891. weight: math.unit(60, "kg"),
  4892. name: "Side",
  4893. image: {
  4894. source: "./media/characters/ebony/side.svg",
  4895. bottom: 0.03,
  4896. extra: 1045 / 810 + 0.03
  4897. }
  4898. },
  4899. back: {
  4900. height: math.unit(2, "meter"),
  4901. weight: math.unit(60, "kg"),
  4902. name: "Back",
  4903. image: {
  4904. source: "./media/characters/ebony/back.svg",
  4905. bottom: 0.01,
  4906. extra: 1045 / 810 + 0.01
  4907. }
  4908. },
  4909. },
  4910. [
  4911. // TODO check why I did this lol
  4912. {
  4913. name: "Standard",
  4914. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4915. default: true
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(200, "feet")
  4920. },
  4921. {
  4922. name: "Gigamacro",
  4923. height: math.unit(13000, "km")
  4924. }
  4925. ]
  4926. ))
  4927. characterMakers.push(() => makeCharacter(
  4928. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4929. {
  4930. front: {
  4931. height: math.unit(6, "feet"),
  4932. weight: math.unit(175, "lb"),
  4933. name: "Front",
  4934. image: {
  4935. source: "./media/characters/mountain/front.svg",
  4936. extra: 972 / 955,
  4937. bottom: 64 / 1036.6
  4938. }
  4939. },
  4940. back: {
  4941. height: math.unit(6, "feet"),
  4942. weight: math.unit(175, "lb"),
  4943. name: "Back",
  4944. image: {
  4945. source: "./media/characters/mountain/back.svg",
  4946. extra: 970 / 950,
  4947. bottom: 28.25 / 999
  4948. }
  4949. },
  4950. },
  4951. [
  4952. {
  4953. name: "Large",
  4954. height: math.unit(20, "meters")
  4955. },
  4956. {
  4957. name: "Macro",
  4958. height: math.unit(300, "meters")
  4959. },
  4960. {
  4961. name: "Gigamacro",
  4962. height: math.unit(10000, "km"),
  4963. default: true
  4964. },
  4965. {
  4966. name: "Examacro",
  4967. height: math.unit(10e9, "lightyears")
  4968. }
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(8, "feet"),
  4976. weight: math.unit(500, "lb"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/rick/front.svg"
  4980. }
  4981. }
  4982. },
  4983. [
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(8, "feet"),
  4987. default: true
  4988. },
  4989. {
  4990. name: "Macro",
  4991. height: math.unit(5, "km")
  4992. }
  4993. ]
  4994. ))
  4995. characterMakers.push(() => makeCharacter(
  4996. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4997. {
  4998. front: {
  4999. height: math.unit(8, "feet"),
  5000. weight: math.unit(120, "lb"),
  5001. name: "Front",
  5002. image: {
  5003. source: "./media/characters/ona/front.svg"
  5004. }
  5005. },
  5006. frontAlt: {
  5007. height: math.unit(8, "feet"),
  5008. weight: math.unit(120, "lb"),
  5009. name: "Front (Alt)",
  5010. image: {
  5011. source: "./media/characters/ona/front-alt.svg"
  5012. }
  5013. },
  5014. back: {
  5015. height: math.unit(8, "feet"),
  5016. weight: math.unit(120, "lb"),
  5017. name: "Back",
  5018. image: {
  5019. source: "./media/characters/ona/back.svg"
  5020. }
  5021. },
  5022. foot: {
  5023. height: math.unit(1.1, "feet"),
  5024. name: "Foot",
  5025. image: {
  5026. source: "./media/characters/ona/foot.svg"
  5027. }
  5028. }
  5029. },
  5030. [
  5031. {
  5032. name: "Megamacro",
  5033. height: math.unit(70, "km"),
  5034. default: true
  5035. },
  5036. {
  5037. name: "Gigamacro",
  5038. height: math.unit(681818, "miles")
  5039. },
  5040. {
  5041. name: "Examacro",
  5042. height: math.unit(3800000, "lightyears")
  5043. },
  5044. ]
  5045. ))
  5046. characterMakers.push(() => makeCharacter(
  5047. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5048. {
  5049. front: {
  5050. height: math.unit(12, "feet"),
  5051. weight: math.unit(3000, "lb"),
  5052. name: "Front",
  5053. image: {
  5054. source: "./media/characters/mech/front.svg",
  5055. extra: 2900 / 2770,
  5056. bottom: 110 / 3010
  5057. }
  5058. },
  5059. back: {
  5060. height: math.unit(12, "feet"),
  5061. weight: math.unit(3000, "lb"),
  5062. name: "Back",
  5063. image: {
  5064. source: "./media/characters/mech/back.svg",
  5065. extra: 3011 / 2890,
  5066. bottom: 94 / 3105
  5067. }
  5068. },
  5069. maw: {
  5070. height: math.unit(3.07, "feet"),
  5071. name: "Maw",
  5072. image: {
  5073. source: "./media/characters/mech/maw.svg"
  5074. }
  5075. },
  5076. head: {
  5077. height: math.unit(3.07, "feet"),
  5078. name: "Head",
  5079. image: {
  5080. source: "./media/characters/mech/head.svg"
  5081. }
  5082. },
  5083. dick: {
  5084. height: math.unit(1.43, "feet"),
  5085. name: "Dick",
  5086. image: {
  5087. source: "./media/characters/mech/dick.svg"
  5088. }
  5089. },
  5090. },
  5091. [
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(12, "feet")
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(300, "feet"),
  5099. default: true
  5100. },
  5101. {
  5102. name: "Macro+",
  5103. height: math.unit(1500, "feet")
  5104. },
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5109. {
  5110. front: {
  5111. height: math.unit(1.3, "meter"),
  5112. weight: math.unit(30, "kg"),
  5113. name: "Front",
  5114. image: {
  5115. source: "./media/characters/gregory/front.svg",
  5116. }
  5117. }
  5118. },
  5119. [
  5120. {
  5121. name: "Normal",
  5122. height: math.unit(1.3, "meter"),
  5123. default: true
  5124. },
  5125. {
  5126. name: "Macro",
  5127. height: math.unit(20, "meter")
  5128. }
  5129. ]
  5130. ))
  5131. characterMakers.push(() => makeCharacter(
  5132. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5133. {
  5134. front: {
  5135. height: math.unit(2.8, "meter"),
  5136. weight: math.unit(200, "kg"),
  5137. name: "Front",
  5138. image: {
  5139. source: "./media/characters/elory/front.svg",
  5140. }
  5141. }
  5142. },
  5143. [
  5144. {
  5145. name: "Normal",
  5146. height: math.unit(2.8, "meter"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Macro",
  5151. height: math.unit(38, "meter")
  5152. }
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5157. {
  5158. front: {
  5159. height: math.unit(470, "feet"),
  5160. weight: math.unit(924, "tons"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/angelpatamon/front.svg",
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(470, "feet"),
  5171. default: true
  5172. },
  5173. {
  5174. name: "Deity Size I",
  5175. height: math.unit(28651.2, "km")
  5176. },
  5177. {
  5178. name: "Deity Size II",
  5179. height: math.unit(171907.2, "km")
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5185. {
  5186. side: {
  5187. height: math.unit(7.2, "meter"),
  5188. weight: math.unit(8.2, "tons"),
  5189. name: "Side",
  5190. image: {
  5191. source: "./media/characters/cryae/side.svg",
  5192. extra: 3500 / 1500
  5193. }
  5194. }
  5195. },
  5196. [
  5197. {
  5198. name: "Normal",
  5199. height: math.unit(7.2, "meter"),
  5200. default: true
  5201. }
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5206. {
  5207. front: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(175, "lb"),
  5210. name: "Front",
  5211. image: {
  5212. source: "./media/characters/xera/front.svg",
  5213. extra: 2377 / 1972,
  5214. bottom: 75.5 / 2452
  5215. }
  5216. },
  5217. side: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(175, "lb"),
  5220. name: "Side",
  5221. image: {
  5222. source: "./media/characters/xera/side.svg",
  5223. extra: 2345 / 2019,
  5224. bottom: 39.7 / 2384
  5225. }
  5226. },
  5227. back: {
  5228. height: math.unit(6, "feet"),
  5229. weight: math.unit(175, "lb"),
  5230. name: "Back",
  5231. image: {
  5232. source: "./media/characters/xera/back.svg",
  5233. extra: 2095 / 1984,
  5234. bottom: 67 / 2166
  5235. }
  5236. },
  5237. },
  5238. [
  5239. {
  5240. name: "Small",
  5241. height: math.unit(10, "feet")
  5242. },
  5243. {
  5244. name: "Macro",
  5245. height: math.unit(500, "meters"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Macro+",
  5250. height: math.unit(10, "km")
  5251. },
  5252. {
  5253. name: "Gigamacro",
  5254. height: math.unit(25000, "km")
  5255. },
  5256. {
  5257. name: "Teramacro",
  5258. height: math.unit(3e6, "km")
  5259. }
  5260. ]
  5261. ))
  5262. characterMakers.push(() => makeCharacter(
  5263. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5264. {
  5265. front: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(175, "lb"),
  5268. name: "Front",
  5269. image: {
  5270. source: "./media/characters/nebula/front.svg",
  5271. extra: 2566 / 2362,
  5272. bottom: 81 / 2644
  5273. }
  5274. }
  5275. },
  5276. [
  5277. {
  5278. name: "Small",
  5279. height: math.unit(4.5, "meters")
  5280. },
  5281. {
  5282. name: "Macro",
  5283. height: math.unit(1500, "meters"),
  5284. default: true
  5285. },
  5286. {
  5287. name: "Megamacro",
  5288. height: math.unit(150, "km")
  5289. },
  5290. {
  5291. name: "Gigamacro",
  5292. height: math.unit(27000, "km")
  5293. }
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5298. {
  5299. front: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(225, "lb"),
  5302. name: "Front",
  5303. image: {
  5304. source: "./media/characters/abysgar/front.svg",
  5305. extra: 1739/1614,
  5306. bottom: 71/1810
  5307. }
  5308. },
  5309. frontNsfw: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(225, "lb"),
  5312. name: "Front (NSFW)",
  5313. image: {
  5314. source: "./media/characters/abysgar/front-nsfw.svg",
  5315. extra: 1739/1614,
  5316. bottom: 71/1810
  5317. }
  5318. },
  5319. back: {
  5320. height: math.unit(4.6, "feet"),
  5321. weight: math.unit(225, "lb"),
  5322. name: "Back",
  5323. image: {
  5324. source: "./media/characters/abysgar/back.svg",
  5325. extra: 1384/1327,
  5326. bottom: 0/1384
  5327. }
  5328. },
  5329. head: {
  5330. height: math.unit(1.25, "feet"),
  5331. name: "Head",
  5332. image: {
  5333. source: "./media/characters/abysgar/head.svg",
  5334. extra: 669/569,
  5335. bottom: 0/669
  5336. }
  5337. },
  5338. },
  5339. [
  5340. {
  5341. name: "Small",
  5342. height: math.unit(4.5, "meters")
  5343. },
  5344. {
  5345. name: "Macro",
  5346. height: math.unit(1250, "meters"),
  5347. default: true
  5348. },
  5349. {
  5350. name: "Megamacro",
  5351. height: math.unit(125, "km")
  5352. },
  5353. {
  5354. name: "Gigamacro",
  5355. height: math.unit(26000, "km")
  5356. }
  5357. ]
  5358. ))
  5359. characterMakers.push(() => makeCharacter(
  5360. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5361. {
  5362. front: {
  5363. height: math.unit(6, "feet"),
  5364. weight: math.unit(180, "lb"),
  5365. name: "Front",
  5366. image: {
  5367. source: "./media/characters/yakuz/front.svg"
  5368. }
  5369. }
  5370. },
  5371. [
  5372. {
  5373. name: "Small",
  5374. height: math.unit(5, "meters")
  5375. },
  5376. {
  5377. name: "Macro",
  5378. height: math.unit(1500, "meters"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Megamacro",
  5383. height: math.unit(200, "km")
  5384. },
  5385. {
  5386. name: "Gigamacro",
  5387. height: math.unit(100000, "km")
  5388. }
  5389. ]
  5390. ))
  5391. characterMakers.push(() => makeCharacter(
  5392. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5393. {
  5394. front: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(175, "lb"),
  5397. name: "Front",
  5398. image: {
  5399. source: "./media/characters/mirova/front.svg",
  5400. extra: 3334 / 3071,
  5401. bottom: 42 / 3375.6
  5402. }
  5403. }
  5404. },
  5405. [
  5406. {
  5407. name: "Small",
  5408. height: math.unit(5, "meters")
  5409. },
  5410. {
  5411. name: "Macro",
  5412. height: math.unit(900, "meters"),
  5413. default: true
  5414. },
  5415. {
  5416. name: "Megamacro",
  5417. height: math.unit(135, "km")
  5418. },
  5419. {
  5420. name: "Gigamacro",
  5421. height: math.unit(20000, "km")
  5422. }
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5427. {
  5428. side: {
  5429. height: math.unit(28.35, "feet"),
  5430. weight: math.unit(99.75, "tons"),
  5431. name: "Side",
  5432. image: {
  5433. source: "./media/characters/asana-mech/side.svg",
  5434. extra: 923 / 699,
  5435. bottom: 50 / 975
  5436. }
  5437. },
  5438. chaingun: {
  5439. height: math.unit(7, "feet"),
  5440. weight: math.unit(2400, "lb"),
  5441. name: "Chaingun",
  5442. image: {
  5443. source: "./media/characters/asana-mech/chaingun.svg"
  5444. }
  5445. },
  5446. laser: {
  5447. height: math.unit(7.12, "feet"),
  5448. weight: math.unit(2000, "lb"),
  5449. name: "Laser",
  5450. image: {
  5451. source: "./media/characters/asana-mech/laser.svg"
  5452. }
  5453. },
  5454. },
  5455. [
  5456. {
  5457. name: "Normal",
  5458. height: math.unit(28.35, "feet"),
  5459. default: true
  5460. },
  5461. {
  5462. name: "Macro",
  5463. height: math.unit(2500, "feet")
  5464. },
  5465. {
  5466. name: "Megamacro",
  5467. height: math.unit(25, "miles")
  5468. },
  5469. {
  5470. name: "Examacro",
  5471. height: math.unit(6e8, "lightyears")
  5472. },
  5473. ]
  5474. ))
  5475. characterMakers.push(() => makeCharacter(
  5476. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5477. {
  5478. front: {
  5479. height: math.unit(5, "meters"),
  5480. weight: math.unit(1000, "kg"),
  5481. name: "Front",
  5482. image: {
  5483. source: "./media/characters/asche/front.svg",
  5484. extra: 1258 / 1190,
  5485. bottom: 47 / 1305
  5486. }
  5487. },
  5488. frontUnderwear: {
  5489. height: math.unit(5, "meters"),
  5490. weight: math.unit(1000, "kg"),
  5491. name: "Front (Underwear)",
  5492. image: {
  5493. source: "./media/characters/asche/front-underwear.svg",
  5494. extra: 1258 / 1190,
  5495. bottom: 47 / 1305
  5496. }
  5497. },
  5498. frontDressed: {
  5499. height: math.unit(5, "meters"),
  5500. weight: math.unit(1000, "kg"),
  5501. name: "Front (Dressed)",
  5502. image: {
  5503. source: "./media/characters/asche/front-dressed.svg",
  5504. extra: 1258 / 1190,
  5505. bottom: 47 / 1305
  5506. }
  5507. },
  5508. frontArmor: {
  5509. height: math.unit(5, "meters"),
  5510. weight: math.unit(1000, "kg"),
  5511. name: "Front (Armored)",
  5512. image: {
  5513. source: "./media/characters/asche/front-armored.svg",
  5514. extra: 1374 / 1308,
  5515. bottom: 23 / 1397
  5516. }
  5517. },
  5518. mp724: {
  5519. height: math.unit(0.96, "meters"),
  5520. weight: math.unit(38, "kg"),
  5521. name: "H&K MP724",
  5522. image: {
  5523. source: "./media/characters/asche/h&k-mp724.svg"
  5524. }
  5525. },
  5526. side: {
  5527. height: math.unit(5, "meters"),
  5528. weight: math.unit(1000, "kg"),
  5529. name: "Side",
  5530. image: {
  5531. source: "./media/characters/asche/side.svg",
  5532. extra: 1717 / 1609,
  5533. bottom: 0.005
  5534. }
  5535. },
  5536. back: {
  5537. height: math.unit(5, "meters"),
  5538. weight: math.unit(1000, "kg"),
  5539. name: "Back",
  5540. image: {
  5541. source: "./media/characters/asche/back.svg",
  5542. extra: 1570 / 1501
  5543. }
  5544. },
  5545. },
  5546. [
  5547. {
  5548. name: "DEFCON 5",
  5549. height: math.unit(5, "meters")
  5550. },
  5551. {
  5552. name: "DEFCON 4",
  5553. height: math.unit(500, "meters"),
  5554. default: true
  5555. },
  5556. {
  5557. name: "DEFCON 3",
  5558. height: math.unit(5, "km")
  5559. },
  5560. {
  5561. name: "DEFCON 2",
  5562. height: math.unit(500, "km")
  5563. },
  5564. {
  5565. name: "DEFCON 1",
  5566. height: math.unit(500000, "km")
  5567. },
  5568. {
  5569. name: "DEFCON 0",
  5570. height: math.unit(3, "gigaparsecs")
  5571. },
  5572. ]
  5573. ))
  5574. characterMakers.push(() => makeCharacter(
  5575. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5576. {
  5577. front: {
  5578. height: math.unit(7, "feet"),
  5579. weight: math.unit(92.7, "kg"),
  5580. name: "Front",
  5581. image: {
  5582. source: "./media/characters/gale/front.svg",
  5583. extra: 977/919,
  5584. bottom: 105/1082
  5585. }
  5586. },
  5587. side: {
  5588. height: math.unit(6.7, "feet"),
  5589. weight: math.unit(92.7, "kg"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/gale/side.svg",
  5593. extra: 978/922,
  5594. bottom: 140/1118
  5595. }
  5596. },
  5597. back: {
  5598. height: math.unit(7, "feet"),
  5599. weight: math.unit(92.7, "kg"),
  5600. name: "Back",
  5601. image: {
  5602. source: "./media/characters/gale/back.svg",
  5603. extra: 966/920,
  5604. bottom: 61/1027
  5605. }
  5606. },
  5607. maw: {
  5608. height: math.unit(2.23, "feet"),
  5609. name: "Maw",
  5610. image: {
  5611. source: "./media/characters/gale/maw.svg"
  5612. }
  5613. },
  5614. foot: {
  5615. height: math.unit(2.1, "feet"),
  5616. name: "Foot",
  5617. image: {
  5618. source: "./media/characters/gale/foot.svg"
  5619. }
  5620. },
  5621. },
  5622. [
  5623. {
  5624. name: "Normal",
  5625. height: math.unit(7, "feet")
  5626. },
  5627. {
  5628. name: "Macro",
  5629. height: math.unit(150, "feet"),
  5630. default: true
  5631. },
  5632. {
  5633. name: "Macro+",
  5634. height: math.unit(300, "feet")
  5635. },
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5640. {
  5641. front: {
  5642. height: math.unit(5 + 10/12, "feet"),
  5643. weight: math.unit(67, "kg"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/draylen/front.svg",
  5647. extra: 832/777,
  5648. bottom: 85/917
  5649. }
  5650. }
  5651. },
  5652. [
  5653. {
  5654. name: "Normal",
  5655. height: math.unit(5 + 10/12, "feet")
  5656. },
  5657. {
  5658. name: "Macro",
  5659. height: math.unit(150, "feet"),
  5660. default: true
  5661. }
  5662. ]
  5663. ))
  5664. characterMakers.push(() => makeCharacter(
  5665. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5666. {
  5667. front: {
  5668. height: math.unit(7 + 9 / 12, "feet"),
  5669. weight: math.unit(379, "lbs"),
  5670. name: "Front",
  5671. image: {
  5672. source: "./media/characters/chez/front.svg"
  5673. }
  5674. },
  5675. side: {
  5676. height: math.unit(7 + 9 / 12, "feet"),
  5677. weight: math.unit(379, "lbs"),
  5678. name: "Side",
  5679. image: {
  5680. source: "./media/characters/chez/side.svg"
  5681. }
  5682. }
  5683. },
  5684. [
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(7 + 9 / 12, "feet"),
  5688. default: true
  5689. },
  5690. {
  5691. name: "God King",
  5692. height: math.unit(9750000, "meters")
  5693. }
  5694. ]
  5695. ))
  5696. characterMakers.push(() => makeCharacter(
  5697. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5698. {
  5699. front: {
  5700. height: math.unit(6, "feet"),
  5701. weight: math.unit(275, "lbs"),
  5702. name: "Front",
  5703. image: {
  5704. source: "./media/characters/kaylum/front.svg",
  5705. bottom: 0.01,
  5706. extra: 1166 / 1031
  5707. }
  5708. },
  5709. frontWingless: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(275, "lbs"),
  5712. name: "Front (Wingless)",
  5713. image: {
  5714. source: "./media/characters/kaylum/front-wingless.svg",
  5715. bottom: 0.01,
  5716. extra: 1117 / 1031
  5717. }
  5718. }
  5719. },
  5720. [
  5721. {
  5722. name: "Normal",
  5723. height: math.unit(3.05, "meters")
  5724. },
  5725. {
  5726. name: "Master",
  5727. height: math.unit(5.5, "meters")
  5728. },
  5729. {
  5730. name: "Rampage",
  5731. height: math.unit(19, "meters")
  5732. },
  5733. {
  5734. name: "Macro Lite",
  5735. height: math.unit(37, "meters")
  5736. },
  5737. {
  5738. name: "Hyper Predator",
  5739. height: math.unit(61, "meters")
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(138, "meters"),
  5744. default: true
  5745. }
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5750. {
  5751. front: {
  5752. height: math.unit(5 + 5 / 12, "feet"),
  5753. weight: math.unit(120, "lbs"),
  5754. name: "Front",
  5755. image: {
  5756. source: "./media/characters/geta/front.svg",
  5757. extra: 1003/933,
  5758. bottom: 21/1024
  5759. }
  5760. },
  5761. paw: {
  5762. height: math.unit(0.35, "feet"),
  5763. name: "Paw",
  5764. image: {
  5765. source: "./media/characters/geta/paw.svg"
  5766. }
  5767. },
  5768. },
  5769. [
  5770. {
  5771. name: "Micro",
  5772. height: math.unit(3, "inches"),
  5773. default: true
  5774. },
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(5 + 5 / 12, "feet")
  5778. }
  5779. ]
  5780. ))
  5781. characterMakers.push(() => makeCharacter(
  5782. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5783. {
  5784. front: {
  5785. height: math.unit(6, "feet"),
  5786. weight: math.unit(300, "lbs"),
  5787. name: "Front",
  5788. image: {
  5789. source: "./media/characters/tyrnn/front.svg"
  5790. }
  5791. }
  5792. },
  5793. [
  5794. {
  5795. name: "Main Height",
  5796. height: math.unit(355, "feet"),
  5797. default: true
  5798. },
  5799. {
  5800. name: "Fave. Height",
  5801. height: math.unit(2400, "feet")
  5802. }
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(300, "lbs"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/appledectomy/front.svg"
  5814. }
  5815. }
  5816. },
  5817. [
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(2500, "feet")
  5821. },
  5822. {
  5823. name: "Megamacro",
  5824. height: math.unit(50, "miles"),
  5825. default: true
  5826. },
  5827. {
  5828. name: "Gigamacro",
  5829. height: math.unit(5000, "miles")
  5830. },
  5831. {
  5832. name: "Teramacro",
  5833. height: math.unit(250000, "miles")
  5834. },
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(200, "lbs"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/vulpes/front.svg",
  5846. extra: 573 / 543,
  5847. bottom: 0.033
  5848. }
  5849. },
  5850. side: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(200, "lbs"),
  5853. name: "Side",
  5854. image: {
  5855. source: "./media/characters/vulpes/side.svg",
  5856. extra: 577 / 549,
  5857. bottom: 11 / 588
  5858. }
  5859. },
  5860. back: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(200, "lbs"),
  5863. name: "Back",
  5864. image: {
  5865. source: "./media/characters/vulpes/back.svg",
  5866. extra: 573 / 549,
  5867. bottom: 20 / 593
  5868. }
  5869. },
  5870. feet: {
  5871. height: math.unit(1.276, "feet"),
  5872. name: "Feet",
  5873. image: {
  5874. source: "./media/characters/vulpes/feet.svg"
  5875. }
  5876. },
  5877. maw: {
  5878. height: math.unit(1.18, "feet"),
  5879. name: "Maw",
  5880. image: {
  5881. source: "./media/characters/vulpes/maw.svg"
  5882. }
  5883. },
  5884. },
  5885. [
  5886. {
  5887. name: "Micro",
  5888. height: math.unit(2, "inches")
  5889. },
  5890. {
  5891. name: "Normal",
  5892. height: math.unit(6.3, "feet")
  5893. },
  5894. {
  5895. name: "Macro",
  5896. height: math.unit(850, "feet")
  5897. },
  5898. {
  5899. name: "Megamacro",
  5900. height: math.unit(7500, "feet"),
  5901. default: true
  5902. },
  5903. {
  5904. name: "Gigamacro",
  5905. height: math.unit(570000, "miles")
  5906. }
  5907. ]
  5908. ))
  5909. characterMakers.push(() => makeCharacter(
  5910. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5911. {
  5912. front: {
  5913. height: math.unit(6, "feet"),
  5914. weight: math.unit(210, "lbs"),
  5915. name: "Front",
  5916. image: {
  5917. source: "./media/characters/rain-fallen/front.svg"
  5918. }
  5919. },
  5920. side: {
  5921. height: math.unit(6, "feet"),
  5922. weight: math.unit(210, "lbs"),
  5923. name: "Side",
  5924. image: {
  5925. source: "./media/characters/rain-fallen/side.svg"
  5926. }
  5927. },
  5928. back: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(210, "lbs"),
  5931. name: "Back",
  5932. image: {
  5933. source: "./media/characters/rain-fallen/back.svg"
  5934. }
  5935. },
  5936. feral: {
  5937. height: math.unit(9, "feet"),
  5938. weight: math.unit(700, "lbs"),
  5939. name: "Feral",
  5940. image: {
  5941. source: "./media/characters/rain-fallen/feral.svg"
  5942. }
  5943. },
  5944. },
  5945. [
  5946. {
  5947. name: "Meddling with Mortals",
  5948. height: math.unit(8 + 8/12, "feet")
  5949. },
  5950. {
  5951. name: "Normal",
  5952. height: math.unit(5, "meter")
  5953. },
  5954. {
  5955. name: "Macro",
  5956. height: math.unit(150, "meter"),
  5957. default: true
  5958. },
  5959. {
  5960. name: "Megamacro",
  5961. height: math.unit(278e6, "meter")
  5962. },
  5963. {
  5964. name: "Gigamacro",
  5965. height: math.unit(2e9, "meter")
  5966. },
  5967. {
  5968. name: "Teramacro",
  5969. height: math.unit(8e12, "meter")
  5970. },
  5971. {
  5972. name: "Devourer",
  5973. height: math.unit(14, "zettameters")
  5974. },
  5975. {
  5976. name: "Scarlet King",
  5977. height: math.unit(18, "yottameters")
  5978. },
  5979. {
  5980. name: "Void",
  5981. height: math.unit(1e88, "yottameters")
  5982. }
  5983. ]
  5984. ))
  5985. characterMakers.push(() => makeCharacter(
  5986. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5987. {
  5988. standing: {
  5989. height: math.unit(6, "feet"),
  5990. weight: math.unit(180, "lbs"),
  5991. name: "Standing",
  5992. image: {
  5993. source: "./media/characters/zaakira/standing.svg",
  5994. extra: 1599/1504,
  5995. bottom: 39/1638
  5996. }
  5997. },
  5998. laying: {
  5999. height: math.unit(3.3, "feet"),
  6000. weight: math.unit(180, "lbs"),
  6001. name: "Laying",
  6002. image: {
  6003. source: "./media/characters/zaakira/laying.svg"
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(12, "feet")
  6011. },
  6012. {
  6013. name: "Macro",
  6014. height: math.unit(279, "feet"),
  6015. default: true
  6016. }
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6021. {
  6022. femSfw: {
  6023. height: math.unit(8, "feet"),
  6024. weight: math.unit(350, "lb"),
  6025. name: "Fem",
  6026. image: {
  6027. source: "./media/characters/sigvald/fem-sfw.svg",
  6028. extra: 182 / 164,
  6029. bottom: 8.7 / 190.5
  6030. }
  6031. },
  6032. femNsfw: {
  6033. height: math.unit(8, "feet"),
  6034. weight: math.unit(350, "lb"),
  6035. name: "Fem (NSFW)",
  6036. image: {
  6037. source: "./media/characters/sigvald/fem-nsfw.svg",
  6038. extra: 182 / 164,
  6039. bottom: 8.7 / 190.5
  6040. }
  6041. },
  6042. maleNsfw: {
  6043. height: math.unit(8, "feet"),
  6044. weight: math.unit(350, "lb"),
  6045. name: "Male (NSFW)",
  6046. image: {
  6047. source: "./media/characters/sigvald/male-nsfw.svg",
  6048. extra: 182 / 164,
  6049. bottom: 8.7 / 190.5
  6050. }
  6051. },
  6052. hermNsfw: {
  6053. height: math.unit(8, "feet"),
  6054. weight: math.unit(350, "lb"),
  6055. name: "Herm (NSFW)",
  6056. image: {
  6057. source: "./media/characters/sigvald/herm-nsfw.svg",
  6058. extra: 182 / 164,
  6059. bottom: 8.7 / 190.5
  6060. }
  6061. },
  6062. dick: {
  6063. height: math.unit(2.36, "feet"),
  6064. name: "Dick",
  6065. image: {
  6066. source: "./media/characters/sigvald/dick.svg"
  6067. }
  6068. },
  6069. eye: {
  6070. height: math.unit(0.31, "feet"),
  6071. name: "Eye",
  6072. image: {
  6073. source: "./media/characters/sigvald/eye.svg"
  6074. }
  6075. },
  6076. mouth: {
  6077. height: math.unit(0.92, "feet"),
  6078. name: "Mouth",
  6079. image: {
  6080. source: "./media/characters/sigvald/mouth.svg"
  6081. }
  6082. },
  6083. paws: {
  6084. height: math.unit(2.2, "feet"),
  6085. name: "Paws",
  6086. image: {
  6087. source: "./media/characters/sigvald/paws.svg"
  6088. }
  6089. }
  6090. },
  6091. [
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(8, "feet")
  6095. },
  6096. {
  6097. name: "Large",
  6098. height: math.unit(12, "feet")
  6099. },
  6100. {
  6101. name: "Larger",
  6102. height: math.unit(20, "feet")
  6103. },
  6104. {
  6105. name: "Macro",
  6106. height: math.unit(150, "feet")
  6107. },
  6108. {
  6109. name: "Macro+",
  6110. height: math.unit(200, "feet"),
  6111. default: true
  6112. },
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6117. {
  6118. side: {
  6119. height: math.unit(12, "feet"),
  6120. weight: math.unit(2000, "kg"),
  6121. name: "Side",
  6122. image: {
  6123. source: "./media/characters/scott/side.svg",
  6124. extra: 754 / 724,
  6125. bottom: 0.069
  6126. }
  6127. },
  6128. upright: {
  6129. height: math.unit(12, "feet"),
  6130. weight: math.unit(2000, "kg"),
  6131. name: "Upright",
  6132. image: {
  6133. source: "./media/characters/scott/upright.svg",
  6134. extra: 3881 / 3722,
  6135. bottom: 0.05
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(12, "feet"),
  6143. default: true
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6149. {
  6150. side: {
  6151. height: math.unit(8, "meters"),
  6152. weight: math.unit(84755, "lbs"),
  6153. name: "Side",
  6154. image: {
  6155. source: "./media/characters/tobias/side.svg",
  6156. extra: 1474 / 1096,
  6157. bottom: 38.9 / 1513.1235
  6158. }
  6159. },
  6160. maw: {
  6161. height: math.unit(2.3, "meters"),
  6162. name: "Maw",
  6163. image: {
  6164. source: "./media/characters/tobias/maw.svg"
  6165. }
  6166. },
  6167. burp: {
  6168. height: math.unit(2.85, "meters"),
  6169. name: "Burp",
  6170. image: {
  6171. source: "./media/characters/tobias/burp.svg"
  6172. }
  6173. },
  6174. },
  6175. [
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(8, "meters"),
  6179. default: true
  6180. },
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6185. {
  6186. front: {
  6187. height: math.unit(5.5, "feet"),
  6188. weight: math.unit(400, "lbs"),
  6189. name: "Front",
  6190. image: {
  6191. source: "./media/characters/kieran/front.svg",
  6192. extra: 2694 / 2364,
  6193. bottom: 217 / 2908
  6194. }
  6195. },
  6196. side: {
  6197. height: math.unit(5.5, "feet"),
  6198. weight: math.unit(400, "lbs"),
  6199. name: "Side",
  6200. image: {
  6201. source: "./media/characters/kieran/side.svg",
  6202. extra: 875 / 777,
  6203. bottom: 84.6 / 959
  6204. }
  6205. },
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(5.5, "feet"),
  6211. default: true
  6212. },
  6213. ]
  6214. ))
  6215. characterMakers.push(() => makeCharacter(
  6216. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6217. {
  6218. side: {
  6219. height: math.unit(2, "meters"),
  6220. weight: math.unit(70, "kg"),
  6221. name: "Side",
  6222. image: {
  6223. source: "./media/characters/sanya/side.svg",
  6224. bottom: 0.02,
  6225. extra: 1.02
  6226. }
  6227. },
  6228. },
  6229. [
  6230. {
  6231. name: "Small",
  6232. height: math.unit(2, "meters")
  6233. },
  6234. {
  6235. name: "Normal",
  6236. height: math.unit(3, "meters")
  6237. },
  6238. {
  6239. name: "Macro",
  6240. height: math.unit(16, "meters"),
  6241. default: true
  6242. },
  6243. ]
  6244. ))
  6245. characterMakers.push(() => makeCharacter(
  6246. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6247. {
  6248. front: {
  6249. height: math.unit(2, "meters"),
  6250. weight: math.unit(120, "kg"),
  6251. name: "Front",
  6252. image: {
  6253. source: "./media/characters/miranda/front.svg",
  6254. extra: 195 / 185,
  6255. bottom: 10.9 / 206.5
  6256. }
  6257. },
  6258. back: {
  6259. height: math.unit(2, "meters"),
  6260. weight: math.unit(120, "kg"),
  6261. name: "Back",
  6262. image: {
  6263. source: "./media/characters/miranda/back.svg",
  6264. extra: 201 / 193,
  6265. bottom: 2.3 / 203.7
  6266. }
  6267. },
  6268. },
  6269. [
  6270. {
  6271. name: "Normal",
  6272. height: math.unit(10, "feet"),
  6273. default: true
  6274. }
  6275. ]
  6276. ))
  6277. characterMakers.push(() => makeCharacter(
  6278. { name: "James", species: ["deer"], tags: ["anthro"] },
  6279. {
  6280. side: {
  6281. height: math.unit(2, "meters"),
  6282. weight: math.unit(100, "kg"),
  6283. name: "Front",
  6284. image: {
  6285. source: "./media/characters/james/front.svg",
  6286. extra: 10 / 8.5
  6287. }
  6288. },
  6289. },
  6290. [
  6291. {
  6292. name: "Normal",
  6293. height: math.unit(8.5, "feet"),
  6294. default: true
  6295. }
  6296. ]
  6297. ))
  6298. characterMakers.push(() => makeCharacter(
  6299. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6300. {
  6301. side: {
  6302. height: math.unit(9.5, "feet"),
  6303. weight: math.unit(2500, "lbs"),
  6304. name: "Side",
  6305. image: {
  6306. source: "./media/characters/heather/side.svg"
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(9.5, "feet"),
  6314. default: true
  6315. }
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6320. {
  6321. side: {
  6322. height: math.unit(6.5, "feet"),
  6323. weight: math.unit(400, "lbs"),
  6324. name: "Side",
  6325. image: {
  6326. source: "./media/characters/lukas/side.svg",
  6327. extra: 7.25 / 6.5
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(6.5, "feet"),
  6335. default: true
  6336. }
  6337. ]
  6338. ))
  6339. characterMakers.push(() => makeCharacter(
  6340. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6341. {
  6342. side: {
  6343. height: math.unit(5, "feet"),
  6344. weight: math.unit(3000, "lbs"),
  6345. name: "Side",
  6346. image: {
  6347. source: "./media/characters/louise/side.svg"
  6348. }
  6349. },
  6350. },
  6351. [
  6352. {
  6353. name: "Normal",
  6354. height: math.unit(5, "feet"),
  6355. default: true
  6356. }
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6361. {
  6362. side: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(150, "lbs"),
  6365. name: "Side",
  6366. image: {
  6367. source: "./media/characters/ramona/side.svg",
  6368. extra: 871/854,
  6369. bottom: 41/912
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Normal",
  6376. height: math.unit(6 + 4/12, "feet")
  6377. },
  6378. {
  6379. name: "Minimacro",
  6380. height: math.unit(5.3, "meters"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(20, "stories")
  6386. },
  6387. {
  6388. name: "Macro+",
  6389. height: math.unit(50, "stories")
  6390. },
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6395. {
  6396. standing: {
  6397. height: math.unit(5.75, "feet"),
  6398. weight: math.unit(160, "lbs"),
  6399. name: "Standing",
  6400. image: {
  6401. source: "./media/characters/deerpuff/standing.svg",
  6402. extra: 682 / 624
  6403. }
  6404. },
  6405. sitting: {
  6406. height: math.unit(5.75 / 1.79, "feet"),
  6407. weight: math.unit(160, "lbs"),
  6408. name: "Sitting",
  6409. image: {
  6410. source: "./media/characters/deerpuff/sitting.svg",
  6411. bottom: 44 / 400,
  6412. extra: 1
  6413. }
  6414. },
  6415. taurLaying: {
  6416. height: math.unit(6, "feet"),
  6417. weight: math.unit(400, "lbs"),
  6418. name: "Taur (Laying)",
  6419. image: {
  6420. source: "./media/characters/deerpuff/taur-laying.svg"
  6421. }
  6422. },
  6423. },
  6424. [
  6425. {
  6426. name: "Puffball",
  6427. height: math.unit(6, "inches")
  6428. },
  6429. {
  6430. name: "Normalpuff",
  6431. height: math.unit(5.75, "feet")
  6432. },
  6433. {
  6434. name: "Macropuff",
  6435. height: math.unit(1500, "feet"),
  6436. default: true
  6437. },
  6438. {
  6439. name: "Megapuff",
  6440. height: math.unit(500, "miles")
  6441. },
  6442. {
  6443. name: "Gigapuff",
  6444. height: math.unit(250000, "miles")
  6445. },
  6446. {
  6447. name: "Omegapuff",
  6448. height: math.unit(1000, "lightyears")
  6449. },
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6454. {
  6455. stomping: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(170, "lbs"),
  6458. name: "Stomping",
  6459. image: {
  6460. source: "./media/characters/vivian/stomping.svg"
  6461. }
  6462. },
  6463. sitting: {
  6464. height: math.unit(6 / 1.75, "feet"),
  6465. weight: math.unit(170, "lbs"),
  6466. name: "Sitting",
  6467. image: {
  6468. source: "./media/characters/vivian/sitting.svg",
  6469. bottom: 1 / 6.4,
  6470. extra: 1,
  6471. }
  6472. },
  6473. },
  6474. [
  6475. {
  6476. name: "Normal",
  6477. height: math.unit(7, "feet"),
  6478. default: true
  6479. },
  6480. {
  6481. name: "Macro",
  6482. height: math.unit(10, "stories")
  6483. },
  6484. {
  6485. name: "Macro+",
  6486. height: math.unit(30, "stories")
  6487. },
  6488. {
  6489. name: "Megamacro",
  6490. height: math.unit(10, "miles")
  6491. },
  6492. {
  6493. name: "Megamacro+",
  6494. height: math.unit(2750000, "meters")
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6500. {
  6501. front: {
  6502. height: math.unit(6, "feet"),
  6503. weight: math.unit(160, "lbs"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/prince/front.svg",
  6507. extra: 1938/1682,
  6508. bottom: 45/1983
  6509. }
  6510. },
  6511. back: {
  6512. height: math.unit(6, "feet"),
  6513. weight: math.unit(160, "lbs"),
  6514. name: "Back",
  6515. image: {
  6516. source: "./media/characters/prince/back.svg",
  6517. extra: 1955/1726,
  6518. bottom: 6/1961
  6519. }
  6520. },
  6521. },
  6522. [
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(7.75, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Not cute",
  6530. height: math.unit(17, "feet")
  6531. },
  6532. {
  6533. name: "I said NOT",
  6534. height: math.unit(91, "feet")
  6535. },
  6536. {
  6537. name: "Please stop",
  6538. height: math.unit(560, "feet")
  6539. },
  6540. {
  6541. name: "What have you done",
  6542. height: math.unit(2200, "feet")
  6543. },
  6544. {
  6545. name: "Deer God",
  6546. height: math.unit(3.6, "miles")
  6547. },
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6552. {
  6553. standing: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(300, "lbs"),
  6556. name: "Standing",
  6557. image: {
  6558. source: "./media/characters/psymon/standing.svg",
  6559. extra: 1888 / 1810,
  6560. bottom: 0.05
  6561. }
  6562. },
  6563. slithering: {
  6564. height: math.unit(6, "feet"),
  6565. weight: math.unit(300, "lbs"),
  6566. name: "Slithering",
  6567. image: {
  6568. source: "./media/characters/psymon/slithering.svg",
  6569. extra: 1330 / 1224
  6570. }
  6571. },
  6572. slitheringAlt: {
  6573. height: math.unit(6, "feet"),
  6574. weight: math.unit(300, "lbs"),
  6575. name: "Slithering (Alt)",
  6576. image: {
  6577. source: "./media/characters/psymon/slithering-alt.svg",
  6578. extra: 1330 / 1224
  6579. }
  6580. },
  6581. },
  6582. [
  6583. {
  6584. name: "Normal",
  6585. height: math.unit(11.25, "feet"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Large",
  6590. height: math.unit(27, "feet")
  6591. },
  6592. {
  6593. name: "Giant",
  6594. height: math.unit(87, "feet")
  6595. },
  6596. {
  6597. name: "Macro",
  6598. height: math.unit(365, "feet")
  6599. },
  6600. {
  6601. name: "Megamacro",
  6602. height: math.unit(3, "miles")
  6603. },
  6604. {
  6605. name: "World Serpent",
  6606. height: math.unit(8000, "miles")
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(180, "lbs"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/daimos/front.svg",
  6619. extra: 4160 / 3897,
  6620. bottom: 0.021
  6621. }
  6622. }
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(8, "feet"),
  6628. default: true
  6629. },
  6630. {
  6631. name: "Big Dog",
  6632. height: math.unit(22, "feet")
  6633. },
  6634. {
  6635. name: "Macro",
  6636. height: math.unit(127, "feet")
  6637. },
  6638. {
  6639. name: "Megamacro",
  6640. height: math.unit(3600, "feet")
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6646. {
  6647. side: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(180, "lbs"),
  6650. name: "Side",
  6651. image: {
  6652. source: "./media/characters/blake/side.svg",
  6653. extra: 1212 / 1120,
  6654. bottom: 0.05
  6655. }
  6656. },
  6657. crouched: {
  6658. height: math.unit(6 * 0.57, "feet"),
  6659. weight: math.unit(180, "lbs"),
  6660. name: "Crouched",
  6661. image: {
  6662. source: "./media/characters/blake/crouched.svg",
  6663. extra: 840 / 587,
  6664. bottom: 0.04
  6665. }
  6666. },
  6667. bent: {
  6668. height: math.unit(6 * 0.75, "feet"),
  6669. weight: math.unit(180, "lbs"),
  6670. name: "Bent",
  6671. image: {
  6672. source: "./media/characters/blake/bent.svg",
  6673. extra: 592 / 544,
  6674. bottom: 0.035
  6675. }
  6676. },
  6677. },
  6678. [
  6679. {
  6680. name: "Normal",
  6681. height: math.unit(8 + 1 / 6, "feet"),
  6682. default: true
  6683. },
  6684. {
  6685. name: "Big Backside",
  6686. height: math.unit(37, "feet")
  6687. },
  6688. {
  6689. name: "Subway Shredder",
  6690. height: math.unit(72, "feet")
  6691. },
  6692. {
  6693. name: "City Carver",
  6694. height: math.unit(1675, "feet")
  6695. },
  6696. {
  6697. name: "Tectonic Tweaker",
  6698. height: math.unit(2300, "miles")
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(180, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/guisetto/front.svg",
  6711. extra: 856 / 817,
  6712. bottom: 0.06
  6713. }
  6714. },
  6715. airborne: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(180, "lbs"),
  6718. name: "Airborne",
  6719. image: {
  6720. source: "./media/characters/guisetto/airborne.svg",
  6721. extra: 584 / 525
  6722. }
  6723. },
  6724. },
  6725. [
  6726. {
  6727. name: "Normal",
  6728. height: math.unit(10 + 11 / 12, "feet"),
  6729. default: true
  6730. },
  6731. {
  6732. name: "Large",
  6733. height: math.unit(35, "feet")
  6734. },
  6735. {
  6736. name: "Macro",
  6737. height: math.unit(475, "feet")
  6738. },
  6739. ]
  6740. ))
  6741. characterMakers.push(() => makeCharacter(
  6742. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6743. {
  6744. front: {
  6745. height: math.unit(6, "feet"),
  6746. weight: math.unit(180, "lbs"),
  6747. name: "Front",
  6748. image: {
  6749. source: "./media/characters/luxor/front.svg",
  6750. extra: 2940 / 2152
  6751. }
  6752. },
  6753. back: {
  6754. height: math.unit(6, "feet"),
  6755. weight: math.unit(180, "lbs"),
  6756. name: "Back",
  6757. image: {
  6758. source: "./media/characters/luxor/back.svg",
  6759. extra: 1083 / 960
  6760. }
  6761. },
  6762. },
  6763. [
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(5 + 5 / 6, "feet"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Lamp",
  6771. height: math.unit(50, "feet")
  6772. },
  6773. {
  6774. name: "Lämp",
  6775. height: math.unit(300, "feet")
  6776. },
  6777. {
  6778. name: "The sun is a lamp",
  6779. height: math.unit(250000, "miles")
  6780. },
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6785. {
  6786. front: {
  6787. height: math.unit(6, "feet"),
  6788. weight: math.unit(50, "lbs"),
  6789. name: "Front",
  6790. image: {
  6791. source: "./media/characters/huoyan/front.svg"
  6792. }
  6793. },
  6794. side: {
  6795. height: math.unit(6, "feet"),
  6796. weight: math.unit(180, "lbs"),
  6797. name: "Side",
  6798. image: {
  6799. source: "./media/characters/huoyan/side.svg"
  6800. }
  6801. },
  6802. },
  6803. [
  6804. {
  6805. name: "Chef",
  6806. height: math.unit(9, "feet")
  6807. },
  6808. {
  6809. name: "Normal",
  6810. height: math.unit(65, "feet"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Macro",
  6815. height: math.unit(780, "feet")
  6816. },
  6817. {
  6818. name: "Flaming Mountain",
  6819. height: math.unit(4.8, "miles")
  6820. },
  6821. {
  6822. name: "Celestial",
  6823. height: math.unit(765000, "miles")
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(5 + 3 / 4, "feet"),
  6832. weight: math.unit(120, "lbs"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/tails/front.svg"
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(5 + 3 / 4, "feet"),
  6843. default: true
  6844. }
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(4, "feet"),
  6852. weight: math.unit(50, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/rainy/front.svg"
  6856. }
  6857. }
  6858. },
  6859. [
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(800, "feet"),
  6863. default: true
  6864. }
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6869. {
  6870. front: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(150, "lbs"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/rainier/front.svg"
  6876. }
  6877. }
  6878. },
  6879. [
  6880. {
  6881. name: "Micro",
  6882. height: math.unit(2, "mm"),
  6883. default: true
  6884. }
  6885. ]
  6886. ))
  6887. characterMakers.push(() => makeCharacter(
  6888. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6889. {
  6890. front: {
  6891. height: math.unit(8 + 4/12, "feet"),
  6892. weight: math.unit(450, "kilograms"),
  6893. name: "Front",
  6894. image: {
  6895. source: "./media/characters/andy-renard/front.svg",
  6896. extra: 862/809,
  6897. bottom: 85/947
  6898. },
  6899. extraAttributes: {
  6900. "pawSize": {
  6901. name: "Paw Size",
  6902. power: 2,
  6903. type: "area",
  6904. base: math.unit(0.45*0.3, "meters^2")
  6905. },
  6906. "handSize": {
  6907. name: "Hand Size",
  6908. power: 2,
  6909. type: "area",
  6910. base: math.unit(0.4 * 0.3, "meters^2")
  6911. },
  6912. "cockSize": {
  6913. name: "Cock Length",
  6914. power: 1,
  6915. type: "length",
  6916. base: math.unit(0.75, "meters")
  6917. },
  6918. "ballDiameter": {
  6919. name: "Ball Diameter",
  6920. power: 1,
  6921. type: "length",
  6922. base: math.unit(0.3, "meters")
  6923. },
  6924. "ballVolume": {
  6925. name: "Ball Volume",
  6926. power: 3,
  6927. type: "volume",
  6928. base: math.unit(0.01413716694, "meters^3")
  6929. },
  6930. }
  6931. },
  6932. back: {
  6933. height: math.unit(8 + 4/12, "feet"),
  6934. weight: math.unit(450, "kilograms"),
  6935. name: "Back",
  6936. image: {
  6937. source: "./media/characters/andy-renard/back.svg",
  6938. extra: 1112/1033,
  6939. bottom: 64/1176
  6940. },
  6941. extraAttributes: {
  6942. "pawSize": {
  6943. name: "Paw Size",
  6944. power: 2,
  6945. type: "area",
  6946. base: math.unit(0.45*0.3, "meters^2")
  6947. },
  6948. "handSize": {
  6949. name: "Hand Size",
  6950. power: 2,
  6951. type: "area",
  6952. base: math.unit(0.4 * 0.3, "meters^2")
  6953. },
  6954. "cockSize": {
  6955. name: "Cock Length",
  6956. power: 1,
  6957. type: "length",
  6958. base: math.unit(0.75, "meters")
  6959. },
  6960. "ballDiameter": {
  6961. name: "Ball Diameter",
  6962. power: 1,
  6963. type: "length",
  6964. base: math.unit(0.3, "meters")
  6965. },
  6966. "ballVolume": {
  6967. name: "Ball Volume",
  6968. power: 3,
  6969. type: "volume",
  6970. base: math.unit(0.01413716694, "meters^3")
  6971. },
  6972. }
  6973. },
  6974. },
  6975. [
  6976. {
  6977. name: "Tall",
  6978. height: math.unit(6 + 8/12, "feet")
  6979. },
  6980. {
  6981. name: "Very Tall",
  6982. height: math.unit(8 + 4/12, "feet")
  6983. },
  6984. {
  6985. name: "Mini Macro",
  6986. height: math.unit(15, "feet"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Giant",
  6991. height: math.unit(50, "feet")
  6992. },
  6993. {
  6994. name: "Nice",
  6995. height: math.unit(69, "feet")
  6996. },
  6997. {
  6998. name: "Macro",
  6999. height: math.unit(100, "feet")
  7000. },
  7001. {
  7002. name: "Enormous",
  7003. height: math.unit(500, "feet")
  7004. },
  7005. {
  7006. name: "Gargantuan",
  7007. height: math.unit(1000, "feet")
  7008. },
  7009. {
  7010. name: "Mega",
  7011. height: math.unit(1, "mile")
  7012. },
  7013. {
  7014. name: "Giga",
  7015. height: math.unit(50, "miles")
  7016. },
  7017. {
  7018. name: "Tera",
  7019. height: math.unit(1000, "miles")
  7020. },
  7021. {
  7022. name: "Cosmic",
  7023. height: math.unit(1.5, "galaxies")
  7024. },
  7025. {
  7026. name: "God",
  7027. height: math.unit(1.5, "universes")
  7028. },
  7029. {
  7030. name: "Chief Execute God",
  7031. height: math.unit(1.5, "multiverses")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(210, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/cimmaron/front-sfw.svg",
  7044. extra: 701 / 676,
  7045. bottom: 0.046
  7046. }
  7047. },
  7048. back: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(210, "lbs"),
  7051. name: "Back",
  7052. image: {
  7053. source: "./media/characters/cimmaron/back-sfw.svg",
  7054. extra: 701 / 676,
  7055. bottom: 0.046
  7056. }
  7057. },
  7058. frontNsfw: {
  7059. height: math.unit(6, "feet"),
  7060. weight: math.unit(210, "lbs"),
  7061. name: "Front (NSFW)",
  7062. image: {
  7063. source: "./media/characters/cimmaron/front-nsfw.svg",
  7064. extra: 701 / 676,
  7065. bottom: 0.046
  7066. }
  7067. },
  7068. backNsfw: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(210, "lbs"),
  7071. name: "Back (NSFW)",
  7072. image: {
  7073. source: "./media/characters/cimmaron/back-nsfw.svg",
  7074. extra: 701 / 676,
  7075. bottom: 0.046
  7076. }
  7077. },
  7078. dick: {
  7079. height: math.unit(1.714, "feet"),
  7080. name: "Dick",
  7081. image: {
  7082. source: "./media/characters/cimmaron/dick.svg"
  7083. }
  7084. },
  7085. },
  7086. [
  7087. {
  7088. name: "Normal",
  7089. height: math.unit(6, "feet"),
  7090. default: true
  7091. },
  7092. {
  7093. name: "Macro Mayor",
  7094. height: math.unit(350, "meters")
  7095. },
  7096. ]
  7097. ))
  7098. characterMakers.push(() => makeCharacter(
  7099. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7100. {
  7101. front: {
  7102. height: math.unit(6, "feet"),
  7103. weight: math.unit(200, "lbs"),
  7104. name: "Front",
  7105. image: {
  7106. source: "./media/characters/akari/front.svg",
  7107. extra: 962 / 901,
  7108. bottom: 0.04
  7109. }
  7110. }
  7111. },
  7112. [
  7113. {
  7114. name: "Micro",
  7115. height: math.unit(5, "inches"),
  7116. default: true
  7117. },
  7118. {
  7119. name: "Normal",
  7120. height: math.unit(7, "feet")
  7121. },
  7122. ]
  7123. ))
  7124. characterMakers.push(() => makeCharacter(
  7125. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7126. {
  7127. front: {
  7128. height: math.unit(6, "feet"),
  7129. weight: math.unit(140, "lbs"),
  7130. name: "Front",
  7131. image: {
  7132. source: "./media/characters/cynosura/front.svg",
  7133. extra: 437/410,
  7134. bottom: 9/446
  7135. }
  7136. },
  7137. back: {
  7138. height: math.unit(6, "feet"),
  7139. weight: math.unit(140, "lbs"),
  7140. name: "Back",
  7141. image: {
  7142. source: "./media/characters/cynosura/back.svg",
  7143. extra: 1304/1160,
  7144. bottom: 71/1375
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Micro",
  7151. height: math.unit(4, "inches")
  7152. },
  7153. {
  7154. name: "Normal",
  7155. height: math.unit(5.75, "feet"),
  7156. default: true
  7157. },
  7158. {
  7159. name: "Tall",
  7160. height: math.unit(10, "feet")
  7161. },
  7162. {
  7163. name: "Big",
  7164. height: math.unit(20, "feet")
  7165. },
  7166. {
  7167. name: "Macro",
  7168. height: math.unit(50, "feet")
  7169. },
  7170. ]
  7171. ))
  7172. characterMakers.push(() => makeCharacter(
  7173. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7174. {
  7175. front: {
  7176. height: math.unit(13 + 2/12, "feet"),
  7177. weight: math.unit(800, "kg"),
  7178. name: "Front",
  7179. image: {
  7180. source: "./media/characters/gin/front.svg",
  7181. extra: 1312/1191,
  7182. bottom: 45/1357
  7183. }
  7184. },
  7185. mouth: {
  7186. height: math.unit(2.39 * 1.8, "feet"),
  7187. name: "Mouth",
  7188. image: {
  7189. source: "./media/characters/gin/mouth.svg"
  7190. }
  7191. },
  7192. hand: {
  7193. height: math.unit(1.57 * 2.19, "feet"),
  7194. name: "Hand",
  7195. image: {
  7196. source: "./media/characters/gin/hand.svg"
  7197. }
  7198. },
  7199. foot: {
  7200. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7201. name: "Foot",
  7202. image: {
  7203. source: "./media/characters/gin/foot.svg"
  7204. }
  7205. },
  7206. sole: {
  7207. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7208. name: "Sole",
  7209. image: {
  7210. source: "./media/characters/gin/sole.svg"
  7211. }
  7212. },
  7213. },
  7214. [
  7215. {
  7216. name: "Very Small",
  7217. height: math.unit(13 + 2 / 12, "feet")
  7218. },
  7219. {
  7220. name: "Micro",
  7221. height: math.unit(600, "miles")
  7222. },
  7223. {
  7224. name: "Regular",
  7225. height: math.unit(20, "earths"),
  7226. default: true
  7227. },
  7228. {
  7229. name: "Macro",
  7230. height: math.unit(2.2, "solarradii")
  7231. },
  7232. {
  7233. name: "Teramacro",
  7234. height: math.unit(1.2, "galaxies")
  7235. },
  7236. {
  7237. name: "Omegamacro",
  7238. height: math.unit(200, "universes")
  7239. },
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7244. {
  7245. front: {
  7246. height: math.unit(6 + 1 / 6, "feet"),
  7247. weight: math.unit(178, "lbs"),
  7248. name: "Front",
  7249. image: {
  7250. source: "./media/characters/guy/front.svg"
  7251. }
  7252. }
  7253. },
  7254. [
  7255. {
  7256. name: "Normal",
  7257. height: math.unit(6 + 1 / 6, "feet"),
  7258. default: true
  7259. },
  7260. {
  7261. name: "Large",
  7262. height: math.unit(25 + 7 / 12, "feet")
  7263. },
  7264. {
  7265. name: "Macro",
  7266. height: math.unit(60 + 9 / 12, "feet")
  7267. },
  7268. {
  7269. name: "Macro+",
  7270. height: math.unit(246, "feet")
  7271. },
  7272. {
  7273. name: "Macro++",
  7274. height: math.unit(878, "feet")
  7275. }
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7280. {
  7281. front: {
  7282. height: math.unit(9, "feet"),
  7283. weight: math.unit(800, "lbs"),
  7284. name: "Front",
  7285. image: {
  7286. source: "./media/characters/tiberius/front.svg",
  7287. extra: 2295 / 2071
  7288. }
  7289. },
  7290. back: {
  7291. height: math.unit(9, "feet"),
  7292. weight: math.unit(800, "lbs"),
  7293. name: "Back",
  7294. image: {
  7295. source: "./media/characters/tiberius/back.svg",
  7296. extra: 2373 / 2160
  7297. }
  7298. },
  7299. },
  7300. [
  7301. {
  7302. name: "Normal",
  7303. height: math.unit(9, "feet"),
  7304. default: true
  7305. }
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7310. {
  7311. front: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(600, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/surgo/front.svg",
  7317. extra: 3591 / 2227
  7318. }
  7319. },
  7320. back: {
  7321. height: math.unit(6, "feet"),
  7322. weight: math.unit(600, "lbs"),
  7323. name: "Back",
  7324. image: {
  7325. source: "./media/characters/surgo/back.svg",
  7326. extra: 3557 / 2228
  7327. }
  7328. },
  7329. laying: {
  7330. height: math.unit(6 * 0.85, "feet"),
  7331. weight: math.unit(600, "lbs"),
  7332. name: "Laying",
  7333. image: {
  7334. source: "./media/characters/surgo/laying.svg"
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(6, "feet"),
  7342. default: true
  7343. }
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7348. {
  7349. side: {
  7350. height: math.unit(6, "feet"),
  7351. weight: math.unit(150, "lbs"),
  7352. name: "Side",
  7353. image: {
  7354. source: "./media/characters/cibus/side.svg",
  7355. extra: 800 / 400
  7356. }
  7357. },
  7358. },
  7359. [
  7360. {
  7361. name: "Normal",
  7362. height: math.unit(6, "feet"),
  7363. default: true
  7364. }
  7365. ]
  7366. ))
  7367. characterMakers.push(() => makeCharacter(
  7368. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7369. {
  7370. front: {
  7371. height: math.unit(6, "feet"),
  7372. weight: math.unit(240, "lbs"),
  7373. name: "Front",
  7374. image: {
  7375. source: "./media/characters/nibbles/front.svg"
  7376. }
  7377. },
  7378. side: {
  7379. height: math.unit(6, "feet"),
  7380. weight: math.unit(240, "lbs"),
  7381. name: "Side",
  7382. image: {
  7383. source: "./media/characters/nibbles/side.svg"
  7384. }
  7385. },
  7386. },
  7387. [
  7388. {
  7389. name: "Normal",
  7390. height: math.unit(9, "feet"),
  7391. default: true
  7392. }
  7393. ]
  7394. ))
  7395. characterMakers.push(() => makeCharacter(
  7396. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7397. {
  7398. side: {
  7399. height: math.unit(5 + 1 / 6, "feet"),
  7400. weight: math.unit(130, "lbs"),
  7401. name: "Side",
  7402. image: {
  7403. source: "./media/characters/rikky/side.svg",
  7404. extra: 851 / 801
  7405. }
  7406. },
  7407. },
  7408. [
  7409. {
  7410. name: "Normal",
  7411. height: math.unit(5 + 1 / 6, "feet")
  7412. },
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(152, "feet"),
  7416. default: true
  7417. },
  7418. {
  7419. name: "Megamacro",
  7420. height: math.unit(7, "miles")
  7421. }
  7422. ]
  7423. ))
  7424. characterMakers.push(() => makeCharacter(
  7425. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7426. {
  7427. side: {
  7428. height: math.unit(370, "cm"),
  7429. weight: math.unit(350, "lbs"),
  7430. name: "Side",
  7431. image: {
  7432. source: "./media/characters/malfressa/side.svg"
  7433. }
  7434. },
  7435. walking: {
  7436. height: math.unit(370, "cm"),
  7437. weight: math.unit(350, "lbs"),
  7438. name: "Walking",
  7439. image: {
  7440. source: "./media/characters/malfressa/walking.svg"
  7441. }
  7442. },
  7443. feral: {
  7444. height: math.unit(2500, "cm"),
  7445. weight: math.unit(100000, "lbs"),
  7446. name: "Feral",
  7447. image: {
  7448. source: "./media/characters/malfressa/feral.svg",
  7449. extra: 2108 / 837,
  7450. bottom: 0.02
  7451. }
  7452. },
  7453. },
  7454. [
  7455. {
  7456. name: "Normal",
  7457. height: math.unit(370, "cm")
  7458. },
  7459. {
  7460. name: "Macro",
  7461. height: math.unit(300, "meters"),
  7462. default: true
  7463. }
  7464. ]
  7465. ))
  7466. characterMakers.push(() => makeCharacter(
  7467. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7468. {
  7469. front: {
  7470. height: math.unit(6, "feet"),
  7471. weight: math.unit(60, "kg"),
  7472. name: "Front",
  7473. image: {
  7474. source: "./media/characters/jaro/front.svg",
  7475. extra: 845/817,
  7476. bottom: 45/890
  7477. }
  7478. },
  7479. back: {
  7480. height: math.unit(6, "feet"),
  7481. weight: math.unit(60, "kg"),
  7482. name: "Back",
  7483. image: {
  7484. source: "./media/characters/jaro/back.svg",
  7485. extra: 847/817,
  7486. bottom: 34/881
  7487. }
  7488. },
  7489. },
  7490. [
  7491. {
  7492. name: "Micro",
  7493. height: math.unit(7, "inches")
  7494. },
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(5.5, "feet"),
  7498. default: true
  7499. },
  7500. {
  7501. name: "Minimacro",
  7502. height: math.unit(20, "feet")
  7503. },
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(200, "meters")
  7507. }
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(6, "feet"),
  7515. weight: math.unit(195, "lb"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/rogue/front.svg"
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(90, "feet"),
  7526. default: true
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7532. {
  7533. standing: {
  7534. height: math.unit(5 + 8 / 12, "feet"),
  7535. weight: math.unit(140, "lb"),
  7536. name: "Standing",
  7537. image: {
  7538. source: "./media/characters/piper/standing.svg",
  7539. extra: 1440/1284,
  7540. bottom: 66/1506
  7541. }
  7542. },
  7543. running: {
  7544. height: math.unit(5 + 8 / 12, "feet"),
  7545. weight: math.unit(140, "lb"),
  7546. name: "Running",
  7547. image: {
  7548. source: "./media/characters/piper/running.svg",
  7549. extra: 3948/3655,
  7550. bottom: 0/3948
  7551. }
  7552. },
  7553. sole: {
  7554. height: math.unit(0.81, "feet"),
  7555. weight: math.unit(2, "kg"),
  7556. name: "Sole",
  7557. image: {
  7558. source: "./media/characters/piper/sole.svg"
  7559. }
  7560. },
  7561. nipple: {
  7562. height: math.unit(0.25, "feet"),
  7563. weight: math.unit(1.5, "lb"),
  7564. name: "Nipple",
  7565. image: {
  7566. source: "./media/characters/piper/nipple.svg"
  7567. }
  7568. },
  7569. head: {
  7570. height: math.unit(1.1, "feet"),
  7571. name: "Head",
  7572. image: {
  7573. source: "./media/characters/piper/head.svg"
  7574. }
  7575. },
  7576. },
  7577. [
  7578. {
  7579. name: "Micro",
  7580. height: math.unit(2, "inches")
  7581. },
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(5 + 8 / 12, "feet")
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(250, "feet"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Megamacro",
  7593. height: math.unit(7, "miles")
  7594. },
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(6, "feet"),
  7602. weight: math.unit(220, "lb"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/gemini/front.svg"
  7606. }
  7607. },
  7608. back: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(220, "lb"),
  7611. name: "Back",
  7612. image: {
  7613. source: "./media/characters/gemini/back.svg"
  7614. }
  7615. },
  7616. kneeling: {
  7617. height: math.unit(6 / 1.5, "feet"),
  7618. weight: math.unit(220, "lb"),
  7619. name: "Kneeling",
  7620. image: {
  7621. source: "./media/characters/gemini/kneeling.svg",
  7622. bottom: 0.02
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(300, "meters"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Megamacro",
  7634. height: math.unit(6900, "meters")
  7635. },
  7636. ]
  7637. ))
  7638. characterMakers.push(() => makeCharacter(
  7639. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7640. {
  7641. anthro: {
  7642. height: math.unit(2.35, "meters"),
  7643. weight: math.unit(73, "kg"),
  7644. name: "Anthro",
  7645. image: {
  7646. source: "./media/characters/alicia/anthro.svg",
  7647. extra: 2571 / 2385,
  7648. bottom: 75 / 2648
  7649. }
  7650. },
  7651. paw: {
  7652. height: math.unit(1.32, "feet"),
  7653. name: "Paw",
  7654. image: {
  7655. source: "./media/characters/alicia/paw.svg"
  7656. }
  7657. },
  7658. feral: {
  7659. height: math.unit(1.69, "meters"),
  7660. weight: math.unit(73, "kg"),
  7661. name: "Feral",
  7662. image: {
  7663. source: "./media/characters/alicia/feral.svg",
  7664. extra: 2123 / 1715,
  7665. bottom: 222 / 2349
  7666. }
  7667. },
  7668. },
  7669. [
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(2.35, "meters")
  7673. },
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(60, "meters"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Megamacro",
  7681. height: math.unit(10000, "kilometers")
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(7, "feet"),
  7690. weight: math.unit(250, "lbs"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/archy/front.svg"
  7694. }
  7695. }
  7696. },
  7697. [
  7698. {
  7699. name: "Micro",
  7700. height: math.unit(1, "inch")
  7701. },
  7702. {
  7703. name: "Shorty",
  7704. height: math.unit(5, "feet")
  7705. },
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(7, "feet")
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(600, "meters"),
  7713. default: true
  7714. },
  7715. {
  7716. name: "Megamacro",
  7717. height: math.unit(1, "mile")
  7718. },
  7719. ]
  7720. ))
  7721. characterMakers.push(() => makeCharacter(
  7722. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7723. {
  7724. front: {
  7725. height: math.unit(1.65, "meters"),
  7726. weight: math.unit(74, "kg"),
  7727. name: "Front",
  7728. image: {
  7729. source: "./media/characters/berri/front.svg",
  7730. extra: 857 / 837,
  7731. bottom: 18 / 877
  7732. }
  7733. },
  7734. bum: {
  7735. height: math.unit(1.46, "feet"),
  7736. name: "Bum",
  7737. image: {
  7738. source: "./media/characters/berri/bum.svg"
  7739. }
  7740. },
  7741. mouth: {
  7742. height: math.unit(0.44, "feet"),
  7743. name: "Mouth",
  7744. image: {
  7745. source: "./media/characters/berri/mouth.svg"
  7746. }
  7747. },
  7748. paw: {
  7749. height: math.unit(0.826, "feet"),
  7750. name: "Paw",
  7751. image: {
  7752. source: "./media/characters/berri/paw.svg"
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(1.65, "meters")
  7760. },
  7761. {
  7762. name: "Macro",
  7763. height: math.unit(60, "m"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Megamacro",
  7768. height: math.unit(9.213, "km")
  7769. },
  7770. {
  7771. name: "Planet Eater",
  7772. height: math.unit(489, "megameters")
  7773. },
  7774. {
  7775. name: "Teramacro",
  7776. height: math.unit(2471635000000, "meters")
  7777. },
  7778. {
  7779. name: "Examacro",
  7780. height: math.unit(8.0624e+26, "meters")
  7781. }
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(1.72, "meters"),
  7789. weight: math.unit(68, "kg"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/lexi/front.svg"
  7793. }
  7794. }
  7795. },
  7796. [
  7797. {
  7798. name: "Very Smol",
  7799. height: math.unit(10, "mm")
  7800. },
  7801. {
  7802. name: "Micro",
  7803. height: math.unit(6.8, "cm"),
  7804. default: true
  7805. },
  7806. {
  7807. name: "Normal",
  7808. height: math.unit(1.72, "m")
  7809. }
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(1.69, "meters"),
  7817. weight: math.unit(68, "kg"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/martin/front.svg",
  7821. extra: 596 / 581
  7822. }
  7823. }
  7824. },
  7825. [
  7826. {
  7827. name: "Micro",
  7828. height: math.unit(6.85, "cm"),
  7829. default: true
  7830. },
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(1.69, "m")
  7834. }
  7835. ]
  7836. ))
  7837. characterMakers.push(() => makeCharacter(
  7838. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7839. {
  7840. front: {
  7841. height: math.unit(1.69, "meters"),
  7842. weight: math.unit(68, "kg"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/juno/front.svg"
  7846. }
  7847. }
  7848. },
  7849. [
  7850. {
  7851. name: "Micro",
  7852. height: math.unit(7, "cm")
  7853. },
  7854. {
  7855. name: "Normal",
  7856. height: math.unit(1.89, "m")
  7857. },
  7858. {
  7859. name: "Macro",
  7860. height: math.unit(353, "meters"),
  7861. default: true
  7862. }
  7863. ]
  7864. ))
  7865. characterMakers.push(() => makeCharacter(
  7866. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7867. {
  7868. front: {
  7869. height: math.unit(1.93, "meters"),
  7870. weight: math.unit(83, "kg"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/samantha/front.svg"
  7874. }
  7875. },
  7876. frontClothed: {
  7877. height: math.unit(1.93, "meters"),
  7878. weight: math.unit(83, "kg"),
  7879. name: "Front (Clothed)",
  7880. image: {
  7881. source: "./media/characters/samantha/front-clothed.svg"
  7882. }
  7883. },
  7884. back: {
  7885. height: math.unit(1.93, "meters"),
  7886. weight: math.unit(83, "kg"),
  7887. name: "Back",
  7888. image: {
  7889. source: "./media/characters/samantha/back.svg"
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Normal",
  7896. height: math.unit(1.93, "m")
  7897. },
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(74, "meters"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Macro+",
  7905. height: math.unit(223, "meters"),
  7906. },
  7907. {
  7908. name: "Megamacro",
  7909. height: math.unit(8381, "meters"),
  7910. },
  7911. {
  7912. name: "Megamacro+",
  7913. height: math.unit(12000, "kilometers")
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(1.92, "meters"),
  7922. weight: math.unit(80, "kg"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/dr-clay/front.svg"
  7926. }
  7927. },
  7928. frontClothed: {
  7929. height: math.unit(1.92, "meters"),
  7930. weight: math.unit(80, "kg"),
  7931. name: "Front (Clothed)",
  7932. image: {
  7933. source: "./media/characters/dr-clay/front-clothed.svg"
  7934. }
  7935. }
  7936. },
  7937. [
  7938. {
  7939. name: "Normal",
  7940. height: math.unit(1.92, "m")
  7941. },
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(214, "meters"),
  7945. default: true
  7946. },
  7947. {
  7948. name: "Macro+",
  7949. height: math.unit(12.237, "meters"),
  7950. },
  7951. {
  7952. name: "Megamacro",
  7953. height: math.unit(557, "megameters"),
  7954. },
  7955. {
  7956. name: "Unimaginable",
  7957. height: math.unit(120e9, "lightyears")
  7958. },
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7963. {
  7964. front: {
  7965. height: math.unit(2, "meters"),
  7966. weight: math.unit(80, "kg"),
  7967. name: "Front",
  7968. image: {
  7969. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7970. }
  7971. }
  7972. },
  7973. [
  7974. {
  7975. name: "Teramacro",
  7976. height: math.unit(500000, "lightyears"),
  7977. default: true
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7983. {
  7984. crux: {
  7985. height: math.unit(2, "meters"),
  7986. weight: math.unit(150, "kg"),
  7987. name: "Crux",
  7988. image: {
  7989. source: "./media/characters/vemus/crux.svg",
  7990. extra: 1074/936,
  7991. bottom: 23/1097
  7992. }
  7993. },
  7994. skunkTanuki: {
  7995. height: math.unit(2, "meters"),
  7996. weight: math.unit(150, "kg"),
  7997. name: "Skunk-Tanuki",
  7998. image: {
  7999. source: "./media/characters/vemus/skunk-tanuki.svg",
  8000. extra: 926/893,
  8001. bottom: 20/946
  8002. }
  8003. },
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(4, "meters"),
  8009. default: true
  8010. },
  8011. {
  8012. name: "Big",
  8013. height: math.unit(8, "meters")
  8014. },
  8015. {
  8016. name: "Macro",
  8017. height: math.unit(100, "meters")
  8018. },
  8019. {
  8020. name: "Macro+",
  8021. height: math.unit(1500, "meters")
  8022. },
  8023. {
  8024. name: "Stellar",
  8025. height: math.unit(14e8, "meters")
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(2, "meters"),
  8034. weight: math.unit(70, "kg"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/beherit/front.svg",
  8038. extra: 1234/1109,
  8039. bottom: 55/1289
  8040. }
  8041. }
  8042. },
  8043. [
  8044. {
  8045. name: "Normal",
  8046. height: math.unit(6, "feet")
  8047. },
  8048. {
  8049. name: "Lorg",
  8050. height: math.unit(25, "feet"),
  8051. default: true
  8052. },
  8053. {
  8054. name: "Lorger",
  8055. height: math.unit(75, "feet")
  8056. },
  8057. {
  8058. name: "Macro",
  8059. height: math.unit(200, "meters")
  8060. },
  8061. ]
  8062. ))
  8063. characterMakers.push(() => makeCharacter(
  8064. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8065. {
  8066. front: {
  8067. height: math.unit(2, "meters"),
  8068. weight: math.unit(150, "kg"),
  8069. name: "Front",
  8070. image: {
  8071. source: "./media/characters/everett/front.svg",
  8072. extra: 1017/866,
  8073. bottom: 86/1103
  8074. }
  8075. },
  8076. paw: {
  8077. height: math.unit(2 / 3.6, "meters"),
  8078. name: "Paw",
  8079. image: {
  8080. source: "./media/characters/everett/paw.svg"
  8081. }
  8082. },
  8083. },
  8084. [
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(15, "feet"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Lorg",
  8092. height: math.unit(70, "feet"),
  8093. default: true
  8094. },
  8095. {
  8096. name: "Lorger",
  8097. height: math.unit(250, "feet")
  8098. },
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(500, "meters")
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(2, "meters"),
  8110. weight: math.unit(86, "kg"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/rose/front.svg",
  8114. extra: 1785/1636,
  8115. bottom: 30/1815
  8116. },
  8117. form: "liom",
  8118. default: true
  8119. },
  8120. frontSporty: {
  8121. height: math.unit(2, "meters"),
  8122. weight: math.unit(86, "kg"),
  8123. name: "Front (Sporty)",
  8124. image: {
  8125. source: "./media/characters/rose/front-sporty.svg",
  8126. extra: 350/335,
  8127. bottom: 10/360
  8128. },
  8129. form: "liom"
  8130. },
  8131. frontAlt: {
  8132. height: math.unit(1.6, "meters"),
  8133. weight: math.unit(86, "kg"),
  8134. name: "Front (Alt)",
  8135. image: {
  8136. source: "./media/characters/rose/front-alt.svg",
  8137. extra: 299/283,
  8138. bottom: 3/302
  8139. },
  8140. form: "liom"
  8141. },
  8142. plush: {
  8143. height: math.unit(2, "meters"),
  8144. weight: math.unit(86/3, "kg"),
  8145. name: "Plush",
  8146. image: {
  8147. source: "./media/characters/rose/plush.svg",
  8148. extra: 361/337,
  8149. bottom: 11/372
  8150. },
  8151. form: "plush",
  8152. default: true
  8153. },
  8154. faeStanding: {
  8155. height: math.unit(10, "cm"),
  8156. weight: math.unit(10, "grams"),
  8157. name: "Standing",
  8158. image: {
  8159. source: "./media/characters/rose/fae-standing.svg",
  8160. extra: 1189/1060,
  8161. bottom: 27/1216
  8162. },
  8163. form: "fae",
  8164. default: true
  8165. },
  8166. faeSitting: {
  8167. height: math.unit(5, "cm"),
  8168. weight: math.unit(10, "grams"),
  8169. name: "Sitting",
  8170. image: {
  8171. source: "./media/characters/rose/fae-sitting.svg",
  8172. extra: 737/577,
  8173. bottom: 356/1093
  8174. },
  8175. form: "fae"
  8176. },
  8177. faePaw: {
  8178. height: math.unit(1.35, "cm"),
  8179. name: "Paw",
  8180. image: {
  8181. source: "./media/characters/rose/fae-paw.svg"
  8182. },
  8183. form: "fae"
  8184. },
  8185. },
  8186. [
  8187. {
  8188. name: "True Micro",
  8189. height: math.unit(9, "cm"),
  8190. form: "liom"
  8191. },
  8192. {
  8193. name: "Micro",
  8194. height: math.unit(16, "cm"),
  8195. form: "liom"
  8196. },
  8197. {
  8198. name: "Normal",
  8199. height: math.unit(1.85, "meters"),
  8200. default: true,
  8201. form: "liom"
  8202. },
  8203. {
  8204. name: "Mini-Macro",
  8205. height: math.unit(5, "meters"),
  8206. form: "liom"
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(15, "meters"),
  8211. form: "liom"
  8212. },
  8213. {
  8214. name: "True Macro",
  8215. height: math.unit(40, "meters"),
  8216. form: "liom"
  8217. },
  8218. {
  8219. name: "City Scale",
  8220. height: math.unit(1, "km"),
  8221. form: "liom"
  8222. },
  8223. {
  8224. name: "Plushie",
  8225. height: math.unit(9, "cm"),
  8226. form: "plush",
  8227. default: true
  8228. },
  8229. {
  8230. name: "Fae",
  8231. height: math.unit(10, "cm"),
  8232. form: "fae",
  8233. default: true
  8234. },
  8235. ],
  8236. {
  8237. "liom": {
  8238. name: "Liom"
  8239. },
  8240. "plush": {
  8241. name: "Plush"
  8242. },
  8243. "fae": {
  8244. name: "Fae Fox",
  8245. default: true
  8246. }
  8247. }
  8248. ))
  8249. characterMakers.push(() => makeCharacter(
  8250. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8251. {
  8252. front: {
  8253. height: math.unit(2, "meters"),
  8254. weight: math.unit(350, "lbs"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/regal/front.svg"
  8258. }
  8259. },
  8260. back: {
  8261. height: math.unit(2, "meters"),
  8262. weight: math.unit(350, "lbs"),
  8263. name: "Back",
  8264. image: {
  8265. source: "./media/characters/regal/back.svg"
  8266. }
  8267. },
  8268. },
  8269. [
  8270. {
  8271. name: "Macro",
  8272. height: math.unit(350, "feet"),
  8273. default: true
  8274. }
  8275. ]
  8276. ))
  8277. characterMakers.push(() => makeCharacter(
  8278. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8279. {
  8280. standing: {
  8281. height: math.unit(4 + 11/12, "feet"),
  8282. weight: math.unit(100, "lb"),
  8283. name: "Standing",
  8284. image: {
  8285. source: "./media/characters/opal/standing.svg",
  8286. extra: 1588/1513,
  8287. bottom: 23/1611
  8288. }
  8289. },
  8290. sitting: {
  8291. height: math.unit(2.3, "feet"),
  8292. weight: math.unit(100, "lb"),
  8293. name: "Sitting",
  8294. image: {
  8295. source: "./media/characters/opal/sitting.svg",
  8296. extra: 1031/892,
  8297. bottom: 142/1173
  8298. }
  8299. },
  8300. hand: {
  8301. height: math.unit(0.59, "feet"),
  8302. name: "Hand",
  8303. image: {
  8304. source: "./media/characters/opal/hand.svg"
  8305. }
  8306. },
  8307. foot: {
  8308. height: math.unit(0.61, "feet"),
  8309. name: "Foot",
  8310. image: {
  8311. source: "./media/characters/opal/foot.svg"
  8312. }
  8313. },
  8314. },
  8315. [
  8316. {
  8317. name: "Small",
  8318. height: math.unit(4 + 11 / 12, "feet")
  8319. },
  8320. {
  8321. name: "Normal",
  8322. height: math.unit(20, "feet"),
  8323. default: true
  8324. },
  8325. {
  8326. name: "Macro",
  8327. height: math.unit(120, "feet")
  8328. },
  8329. {
  8330. name: "Megamacro",
  8331. height: math.unit(80, "miles")
  8332. },
  8333. {
  8334. name: "True Size",
  8335. height: math.unit(100000, "lightyears")
  8336. },
  8337. ]
  8338. ))
  8339. characterMakers.push(() => makeCharacter(
  8340. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8341. {
  8342. front: {
  8343. height: math.unit(6, "feet"),
  8344. weight: math.unit(200, "lbs"),
  8345. name: "Front",
  8346. image: {
  8347. source: "./media/characters/vector-wuff/front.svg"
  8348. }
  8349. }
  8350. },
  8351. [
  8352. {
  8353. name: "Normal",
  8354. height: math.unit(2.8, "meters")
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(450, "meters"),
  8359. default: true
  8360. },
  8361. {
  8362. name: "Megamacro",
  8363. height: math.unit(15, "kilometers")
  8364. }
  8365. ]
  8366. ))
  8367. characterMakers.push(() => makeCharacter(
  8368. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8369. {
  8370. front: {
  8371. height: math.unit(6, "feet"),
  8372. weight: math.unit(256, "lbs"),
  8373. name: "Front",
  8374. image: {
  8375. source: "./media/characters/dannik/front.svg"
  8376. }
  8377. }
  8378. },
  8379. [
  8380. {
  8381. name: "Macro",
  8382. height: math.unit(69.57, "meters"),
  8383. default: true
  8384. },
  8385. ]
  8386. ))
  8387. characterMakers.push(() => makeCharacter(
  8388. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8389. {
  8390. front: {
  8391. height: math.unit(6, "feet"),
  8392. weight: math.unit(120, "lbs"),
  8393. name: "Front",
  8394. image: {
  8395. source: "./media/characters/azura-saharah/front.svg"
  8396. }
  8397. },
  8398. back: {
  8399. height: math.unit(6, "feet"),
  8400. weight: math.unit(120, "lbs"),
  8401. name: "Back",
  8402. image: {
  8403. source: "./media/characters/azura-saharah/back.svg"
  8404. }
  8405. },
  8406. },
  8407. [
  8408. {
  8409. name: "Macro",
  8410. height: math.unit(100, "feet"),
  8411. default: true
  8412. },
  8413. ]
  8414. ))
  8415. characterMakers.push(() => makeCharacter(
  8416. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8417. {
  8418. side: {
  8419. height: math.unit(5 + 4 / 12, "feet"),
  8420. weight: math.unit(163, "lbs"),
  8421. name: "Side",
  8422. image: {
  8423. source: "./media/characters/kennedy/side.svg"
  8424. }
  8425. }
  8426. },
  8427. [
  8428. {
  8429. name: "Standard Doggo",
  8430. height: math.unit(5 + 4 / 12, "feet")
  8431. },
  8432. {
  8433. name: "Big Doggo",
  8434. height: math.unit(25 + 3 / 12, "feet"),
  8435. default: true
  8436. },
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8441. {
  8442. front: {
  8443. height: math.unit(5 + 5/12, "feet"),
  8444. weight: math.unit(100, "lbs"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/odios-de-lunar/front.svg",
  8448. extra: 1468/1323,
  8449. bottom: 22/1490
  8450. }
  8451. }
  8452. },
  8453. [
  8454. {
  8455. name: "Micro",
  8456. height: math.unit(3, "inches")
  8457. },
  8458. {
  8459. name: "Normal",
  8460. height: math.unit(5.5, "feet"),
  8461. default: true
  8462. },
  8463. {
  8464. name: "Macro",
  8465. height: math.unit(100, "feet")
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8471. {
  8472. back: {
  8473. height: math.unit(6, "feet"),
  8474. weight: math.unit(220, "lbs"),
  8475. name: "Back",
  8476. image: {
  8477. source: "./media/characters/mandake/back.svg"
  8478. }
  8479. }
  8480. },
  8481. [
  8482. {
  8483. name: "Normal",
  8484. height: math.unit(7, "feet"),
  8485. default: true
  8486. },
  8487. {
  8488. name: "Macro",
  8489. height: math.unit(78, "feet")
  8490. },
  8491. {
  8492. name: "Macro+",
  8493. height: math.unit(300, "meters")
  8494. },
  8495. {
  8496. name: "Macro++",
  8497. height: math.unit(2400, "feet")
  8498. },
  8499. {
  8500. name: "Megamacro",
  8501. height: math.unit(5167, "meters")
  8502. },
  8503. {
  8504. name: "Gigamacro",
  8505. height: math.unit(41769, "miles")
  8506. },
  8507. ]
  8508. ))
  8509. characterMakers.push(() => makeCharacter(
  8510. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8511. {
  8512. front: {
  8513. height: math.unit(6, "feet"),
  8514. weight: math.unit(120, "lbs"),
  8515. name: "Front",
  8516. image: {
  8517. source: "./media/characters/yozey/front.svg"
  8518. }
  8519. },
  8520. frontAlt: {
  8521. height: math.unit(6, "feet"),
  8522. weight: math.unit(120, "lbs"),
  8523. name: "Front (Alt)",
  8524. image: {
  8525. source: "./media/characters/yozey/front-alt.svg"
  8526. }
  8527. },
  8528. side: {
  8529. height: math.unit(6, "feet"),
  8530. weight: math.unit(120, "lbs"),
  8531. name: "Side",
  8532. image: {
  8533. source: "./media/characters/yozey/side.svg"
  8534. }
  8535. },
  8536. },
  8537. [
  8538. {
  8539. name: "Micro",
  8540. height: math.unit(3, "inches"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Normal",
  8545. height: math.unit(6, "feet")
  8546. }
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(6, "feet"),
  8554. weight: math.unit(103, "lbs"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/valeska-voss/front.svg"
  8558. }
  8559. }
  8560. },
  8561. [
  8562. {
  8563. name: "Mini-Sized Sub",
  8564. height: math.unit(3.1, "inches")
  8565. },
  8566. {
  8567. name: "Mid-Sized Sub",
  8568. height: math.unit(6.2, "inches")
  8569. },
  8570. {
  8571. name: "Full-Sized Sub",
  8572. height: math.unit(9.3, "inches")
  8573. },
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(5 + 2 / 12, "foot"),
  8577. default: true
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(6, "feet"),
  8586. weight: math.unit(160, "lbs"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/gene-zeta/front.svg",
  8590. extra: 3006 / 2826,
  8591. bottom: 182 / 3188
  8592. }
  8593. }
  8594. },
  8595. [
  8596. {
  8597. name: "Micro",
  8598. height: math.unit(6, "inches")
  8599. },
  8600. {
  8601. name: "Normal",
  8602. height: math.unit(5 + 11 / 12, "foot"),
  8603. default: true
  8604. },
  8605. {
  8606. name: "Macro",
  8607. height: math.unit(140, "feet")
  8608. },
  8609. {
  8610. name: "Supercharged",
  8611. height: math.unit(2500, "feet")
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8617. {
  8618. front: {
  8619. height: math.unit(6, "feet"),
  8620. weight: math.unit(350, "lbs"),
  8621. name: "Front",
  8622. image: {
  8623. source: "./media/characters/razinox/front.svg",
  8624. extra: 1686 / 1548,
  8625. bottom: 28.2 / 1868
  8626. }
  8627. },
  8628. back: {
  8629. height: math.unit(6, "feet"),
  8630. weight: math.unit(350, "lbs"),
  8631. name: "Back",
  8632. image: {
  8633. source: "./media/characters/razinox/back.svg",
  8634. extra: 1660 / 1590,
  8635. bottom: 15 / 1665
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Normal",
  8642. height: math.unit(10 + 8 / 12, "foot")
  8643. },
  8644. {
  8645. name: "Minimacro",
  8646. height: math.unit(15, "foot")
  8647. },
  8648. {
  8649. name: "Macro",
  8650. height: math.unit(60, "foot"),
  8651. default: true
  8652. },
  8653. {
  8654. name: "Megamacro",
  8655. height: math.unit(5, "miles")
  8656. },
  8657. {
  8658. name: "Gigamacro",
  8659. height: math.unit(6000, "miles")
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(6, "feet"),
  8668. weight: math.unit(150, "lbs"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/cobalt/front.svg"
  8672. }
  8673. }
  8674. },
  8675. [
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(8 + 1 / 12, "foot")
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(111, "foot"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Supracosmic",
  8687. height: math.unit(1e42, "feet")
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8693. {
  8694. front: {
  8695. height: math.unit(5, "inches"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/amanda/front.svg",
  8699. extra: 926/791,
  8700. bottom: 38/964
  8701. }
  8702. },
  8703. back: {
  8704. height: math.unit(5, "inches"),
  8705. name: "Back",
  8706. image: {
  8707. source: "./media/characters/amanda/back.svg",
  8708. extra: 909/805,
  8709. bottom: 43/952
  8710. }
  8711. },
  8712. },
  8713. [
  8714. {
  8715. name: "Micro",
  8716. height: math.unit(5, "inches"),
  8717. default: true
  8718. },
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8723. {
  8724. front: {
  8725. height: math.unit(2.75, "meters"),
  8726. weight: math.unit(1200, "lb"),
  8727. name: "Front",
  8728. image: {
  8729. source: "./media/characters/teal/front.svg",
  8730. extra: 2463 / 2320,
  8731. bottom: 166 / 2629
  8732. }
  8733. },
  8734. back: {
  8735. height: math.unit(2.75, "meters"),
  8736. weight: math.unit(1200, "lb"),
  8737. name: "Back",
  8738. image: {
  8739. source: "./media/characters/teal/back.svg",
  8740. extra: 2580 / 2489,
  8741. bottom: 151 / 2731
  8742. }
  8743. },
  8744. sitting: {
  8745. height: math.unit(1.9, "meters"),
  8746. weight: math.unit(1200, "lb"),
  8747. name: "Sitting",
  8748. image: {
  8749. source: "./media/characters/teal/sitting.svg",
  8750. extra: 623 / 590,
  8751. bottom: 121 / 744
  8752. }
  8753. },
  8754. standing: {
  8755. height: math.unit(2.75, "meters"),
  8756. weight: math.unit(1200, "lb"),
  8757. name: "Standing",
  8758. image: {
  8759. source: "./media/characters/teal/standing.svg",
  8760. extra: 923 / 893,
  8761. bottom: 60 / 983
  8762. }
  8763. },
  8764. stretching: {
  8765. height: math.unit(3.65, "meters"),
  8766. weight: math.unit(1200, "lb"),
  8767. name: "Stretching",
  8768. image: {
  8769. source: "./media/characters/teal/stretching.svg",
  8770. extra: 1276 / 1244,
  8771. bottom: 0 / 1276
  8772. }
  8773. },
  8774. legged: {
  8775. height: math.unit(1.3, "meters"),
  8776. weight: math.unit(100, "lb"),
  8777. name: "Legged",
  8778. image: {
  8779. source: "./media/characters/teal/legged.svg",
  8780. extra: 462 / 437,
  8781. bottom: 24 / 486
  8782. }
  8783. },
  8784. naga: {
  8785. height: math.unit(5.4, "meters"),
  8786. weight: math.unit(4000, "lb"),
  8787. name: "Naga",
  8788. image: {
  8789. source: "./media/characters/teal/naga.svg",
  8790. extra: 1902 / 1858,
  8791. bottom: 0 / 1902
  8792. }
  8793. },
  8794. hand: {
  8795. height: math.unit(0.52, "meters"),
  8796. name: "Hand",
  8797. image: {
  8798. source: "./media/characters/teal/hand.svg"
  8799. }
  8800. },
  8801. maw: {
  8802. height: math.unit(0.43, "meters"),
  8803. name: "Maw",
  8804. image: {
  8805. source: "./media/characters/teal/maw.svg"
  8806. }
  8807. },
  8808. slit: {
  8809. height: math.unit(0.25, "meters"),
  8810. name: "Slit",
  8811. image: {
  8812. source: "./media/characters/teal/slit.svg"
  8813. }
  8814. },
  8815. },
  8816. [
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(2.75, "meters"),
  8820. default: true
  8821. },
  8822. {
  8823. name: "Macro",
  8824. height: math.unit(300, "feet")
  8825. },
  8826. {
  8827. name: "Macro+",
  8828. height: math.unit(2000, "feet")
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8834. {
  8835. frontCat: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(180, "lbs"),
  8838. name: "Front (Cat)",
  8839. image: {
  8840. source: "./media/characters/ravin-amulet/front-cat.svg"
  8841. }
  8842. },
  8843. frontCatAlt: {
  8844. height: math.unit(6, "feet"),
  8845. weight: math.unit(180, "lbs"),
  8846. name: "Front (Alt, Cat)",
  8847. image: {
  8848. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8849. }
  8850. },
  8851. frontWerewolf: {
  8852. height: math.unit(6 * 1.2, "feet"),
  8853. weight: math.unit(225, "lbs"),
  8854. name: "Front (Werewolf)",
  8855. image: {
  8856. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8857. }
  8858. },
  8859. backWerewolf: {
  8860. height: math.unit(6 * 1.2, "feet"),
  8861. weight: math.unit(225, "lbs"),
  8862. name: "Back (Werewolf)",
  8863. image: {
  8864. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Nano",
  8871. height: math.unit(1, "micrometer")
  8872. },
  8873. {
  8874. name: "Micro",
  8875. height: math.unit(1, "inch")
  8876. },
  8877. {
  8878. name: "Normal",
  8879. height: math.unit(6, "feet"),
  8880. default: true
  8881. },
  8882. {
  8883. name: "Macro",
  8884. height: math.unit(60, "feet")
  8885. }
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8890. {
  8891. front: {
  8892. height: math.unit(6, "feet"),
  8893. weight: math.unit(165, "lbs"),
  8894. name: "Front",
  8895. image: {
  8896. source: "./media/characters/fluoresce/front.svg"
  8897. }
  8898. }
  8899. },
  8900. [
  8901. {
  8902. name: "Micro",
  8903. height: math.unit(6, "cm")
  8904. },
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(5 + 7 / 12, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Macro",
  8912. height: math.unit(56, "feet")
  8913. },
  8914. {
  8915. name: "Megamacro",
  8916. height: math.unit(1.9, "miles")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8922. {
  8923. front: {
  8924. height: math.unit(9 + 6 / 12, "feet"),
  8925. weight: math.unit(523, "lbs"),
  8926. name: "Side",
  8927. image: {
  8928. source: "./media/characters/aurora/side.svg",
  8929. extra: 474/393,
  8930. bottom: 5/479
  8931. }
  8932. }
  8933. },
  8934. [
  8935. {
  8936. name: "Normal",
  8937. height: math.unit(9 + 6 / 12, "feet")
  8938. },
  8939. {
  8940. name: "Macro",
  8941. height: math.unit(96, "feet"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Macro+",
  8946. height: math.unit(243, "feet")
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(194, "cm"),
  8955. weight: math.unit(90, "kg"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/ranek/front.svg",
  8959. extra: 1862/1791,
  8960. bottom: 80/1942
  8961. }
  8962. },
  8963. back: {
  8964. height: math.unit(194, "cm"),
  8965. weight: math.unit(90, "kg"),
  8966. name: "Back",
  8967. image: {
  8968. source: "./media/characters/ranek/back.svg",
  8969. extra: 1853/1787,
  8970. bottom: 74/1927
  8971. }
  8972. },
  8973. feral: {
  8974. height: math.unit(30, "cm"),
  8975. weight: math.unit(1.6, "lbs"),
  8976. name: "Feral",
  8977. image: {
  8978. source: "./media/characters/ranek/feral.svg",
  8979. extra: 990/631,
  8980. bottom: 29/1019
  8981. }
  8982. },
  8983. },
  8984. [
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(194, "cm"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Macro",
  8992. height: math.unit(100, "meters")
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(5 + 6 / 12, "feet"),
  9001. weight: math.unit(153, "lbs"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/andrew-cooper/front.svg"
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Nano",
  9011. height: math.unit(1, "mm")
  9012. },
  9013. {
  9014. name: "Micro",
  9015. height: math.unit(2, "inches")
  9016. },
  9017. {
  9018. name: "Normal",
  9019. height: math.unit(5 + 6 / 12, "feet"),
  9020. default: true
  9021. }
  9022. ]
  9023. ))
  9024. characterMakers.push(() => makeCharacter(
  9025. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9026. {
  9027. front: {
  9028. height: math.unit(6, "feet"),
  9029. weight: math.unit(180, "lbs"),
  9030. name: "Front",
  9031. image: {
  9032. source: "./media/characters/akane-sato/front.svg",
  9033. extra: 1219 / 1140
  9034. }
  9035. },
  9036. back: {
  9037. height: math.unit(6, "feet"),
  9038. weight: math.unit(180, "lbs"),
  9039. name: "Back",
  9040. image: {
  9041. source: "./media/characters/akane-sato/back.svg",
  9042. extra: 1219 / 1170
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(2.5, "meters")
  9050. },
  9051. {
  9052. name: "Macro",
  9053. height: math.unit(250, "meters"),
  9054. default: true
  9055. },
  9056. {
  9057. name: "Megamacro",
  9058. height: math.unit(25, "km")
  9059. },
  9060. ]
  9061. ))
  9062. characterMakers.push(() => makeCharacter(
  9063. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9064. {
  9065. front: {
  9066. height: math.unit(6, "feet"),
  9067. weight: math.unit(65, "kg"),
  9068. name: "Front",
  9069. image: {
  9070. source: "./media/characters/rook/front.svg",
  9071. extra: 960 / 950
  9072. }
  9073. }
  9074. },
  9075. [
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(8.8, "feet")
  9079. },
  9080. {
  9081. name: "Macro",
  9082. height: math.unit(88, "feet"),
  9083. default: true
  9084. },
  9085. {
  9086. name: "Megamacro",
  9087. height: math.unit(8, "miles")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(12 + 2 / 12, "feet"),
  9096. weight: math.unit(808, "lbs"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/prodigy/front.svg"
  9100. }
  9101. }
  9102. },
  9103. [
  9104. {
  9105. name: "Normal",
  9106. height: math.unit(12 + 2 / 12, "feet"),
  9107. default: true
  9108. },
  9109. {
  9110. name: "Macro",
  9111. height: math.unit(143, "feet")
  9112. },
  9113. {
  9114. name: "Macro+",
  9115. height: math.unit(400, "feet")
  9116. },
  9117. ]
  9118. ))
  9119. characterMakers.push(() => makeCharacter(
  9120. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9121. {
  9122. front: {
  9123. height: math.unit(6, "feet"),
  9124. weight: math.unit(225, "lbs"),
  9125. name: "Front",
  9126. image: {
  9127. source: "./media/characters/daniel/front.svg"
  9128. }
  9129. },
  9130. leaning: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(225, "lbs"),
  9133. name: "Leaning",
  9134. image: {
  9135. source: "./media/characters/daniel/leaning.svg"
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Macro",
  9142. height: math.unit(1000, "feet"),
  9143. default: true
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(6, "feet"),
  9152. weight: math.unit(88, "lbs"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/chiros/front.svg",
  9156. extra: 306 / 226
  9157. }
  9158. },
  9159. side: {
  9160. height: math.unit(6, "feet"),
  9161. weight: math.unit(88, "lbs"),
  9162. name: "Side",
  9163. image: {
  9164. source: "./media/characters/chiros/side.svg",
  9165. extra: 306 / 226
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(6, "cm"),
  9173. default: true
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9179. {
  9180. front: {
  9181. height: math.unit(6, "feet"),
  9182. weight: math.unit(100, "lbs"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/selka/front.svg",
  9186. extra: 947 / 887
  9187. }
  9188. }
  9189. },
  9190. [
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(5, "cm"),
  9194. default: true
  9195. },
  9196. ]
  9197. ))
  9198. characterMakers.push(() => makeCharacter(
  9199. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9200. {
  9201. front: {
  9202. height: math.unit(8 + 3 / 12, "feet"),
  9203. weight: math.unit(424, "lbs"),
  9204. name: "Front",
  9205. image: {
  9206. source: "./media/characters/verin/front.svg",
  9207. extra: 1845 / 1550
  9208. }
  9209. },
  9210. frontArmored: {
  9211. height: math.unit(8 + 3 / 12, "feet"),
  9212. weight: math.unit(424, "lbs"),
  9213. name: "Front (Armored)",
  9214. image: {
  9215. source: "./media/characters/verin/front-armor.svg",
  9216. extra: 1845 / 1550,
  9217. bottom: 0.01
  9218. }
  9219. },
  9220. back: {
  9221. height: math.unit(8 + 3 / 12, "feet"),
  9222. weight: math.unit(424, "lbs"),
  9223. name: "Back",
  9224. image: {
  9225. source: "./media/characters/verin/back.svg",
  9226. bottom: 0.1,
  9227. extra: 1
  9228. }
  9229. },
  9230. foot: {
  9231. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9232. name: "Foot",
  9233. image: {
  9234. source: "./media/characters/verin/foot.svg"
  9235. }
  9236. },
  9237. },
  9238. [
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(8 + 3 / 12, "feet")
  9242. },
  9243. {
  9244. name: "Minimacro",
  9245. height: math.unit(21, "feet"),
  9246. default: true
  9247. },
  9248. {
  9249. name: "Macro",
  9250. height: math.unit(626, "feet")
  9251. },
  9252. ]
  9253. ))
  9254. characterMakers.push(() => makeCharacter(
  9255. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9256. {
  9257. front: {
  9258. height: math.unit(2.718, "meters"),
  9259. weight: math.unit(150, "lbs"),
  9260. name: "Front",
  9261. image: {
  9262. source: "./media/characters/sovrim-terraquian/front.svg",
  9263. extra: 1752/1689,
  9264. bottom: 36/1788
  9265. }
  9266. },
  9267. back: {
  9268. height: math.unit(2.718, "meters"),
  9269. weight: math.unit(150, "lbs"),
  9270. name: "Back",
  9271. image: {
  9272. source: "./media/characters/sovrim-terraquian/back.svg",
  9273. extra: 1698/1657,
  9274. bottom: 58/1756
  9275. }
  9276. },
  9277. tongue: {
  9278. height: math.unit(2.865, "feet"),
  9279. name: "Tongue",
  9280. image: {
  9281. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9282. }
  9283. },
  9284. hand: {
  9285. height: math.unit(1.61, "feet"),
  9286. name: "Hand",
  9287. image: {
  9288. source: "./media/characters/sovrim-terraquian/hand.svg"
  9289. }
  9290. },
  9291. foot: {
  9292. height: math.unit(1.05, "feet"),
  9293. name: "Foot",
  9294. image: {
  9295. source: "./media/characters/sovrim-terraquian/foot.svg"
  9296. }
  9297. },
  9298. footAlt: {
  9299. height: math.unit(0.88, "feet"),
  9300. name: "Foot (Alt)",
  9301. image: {
  9302. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Micro",
  9309. height: math.unit(2, "inches")
  9310. },
  9311. {
  9312. name: "Small",
  9313. height: math.unit(1, "meter")
  9314. },
  9315. {
  9316. name: "Normal",
  9317. height: math.unit(Math.E, "meters"),
  9318. default: true
  9319. },
  9320. {
  9321. name: "Macro",
  9322. height: math.unit(20, "meters")
  9323. },
  9324. {
  9325. name: "Macro+",
  9326. height: math.unit(400, "meters")
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9332. {
  9333. front: {
  9334. height: math.unit(7, "feet"),
  9335. weight: math.unit(489, "lbs"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/reece-silvermane/front.svg",
  9339. bottom: 0.02,
  9340. extra: 1
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Macro",
  9347. height: math.unit(1.5, "miles"),
  9348. default: true
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(78, "kg"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/kane/front.svg",
  9361. extra: 978 / 899
  9362. }
  9363. },
  9364. back: {
  9365. height: math.unit(6, "feet"),
  9366. weight: math.unit(78, "kg"),
  9367. name: "Back",
  9368. image: {
  9369. source: "./media/characters/kane/back.svg",
  9370. extra: 1966/1800,
  9371. bottom: 0/1966
  9372. }
  9373. },
  9374. head: {
  9375. height: math.unit(1.4, "feet"),
  9376. name: "Head",
  9377. image: {
  9378. source: "./media/characters/kane/head.svg"
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(2.1, "m"),
  9386. },
  9387. {
  9388. name: "Macro",
  9389. height: math.unit(1, "km"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(200, "kg"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/tegon/front.svg",
  9403. bottom: 0.01,
  9404. extra: 1
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Micro",
  9411. height: math.unit(1, "inch")
  9412. },
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(6 + 3 / 12, "feet"),
  9416. default: true
  9417. },
  9418. {
  9419. name: "Macro",
  9420. height: math.unit(300, "feet")
  9421. },
  9422. {
  9423. name: "Megamacro",
  9424. height: math.unit(69, "miles")
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9430. {
  9431. side: {
  9432. height: math.unit(6, "feet"),
  9433. weight: math.unit(2304, "lbs"),
  9434. name: "Side",
  9435. image: {
  9436. source: "./media/characters/arcturax/side.svg",
  9437. extra: 790 / 376,
  9438. bottom: 0.01
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Micro",
  9445. height: math.unit(2, "inch")
  9446. },
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(6, "feet")
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(39, "feet"),
  9454. default: true
  9455. },
  9456. {
  9457. name: "Megamacro",
  9458. height: math.unit(7, "miles")
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(6, "feet"),
  9467. weight: math.unit(50, "lbs"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/sentri/front.svg",
  9471. extra: 1750 / 1570,
  9472. bottom: 0.025
  9473. }
  9474. },
  9475. frontAlt: {
  9476. height: math.unit(6, "feet"),
  9477. weight: math.unit(50, "lbs"),
  9478. name: "Front (Alt)",
  9479. image: {
  9480. source: "./media/characters/sentri/front-alt.svg",
  9481. extra: 1750 / 1570,
  9482. bottom: 0.025
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Normal",
  9489. height: math.unit(15, "feet"),
  9490. default: true
  9491. },
  9492. {
  9493. name: "Macro",
  9494. height: math.unit(2500, "feet")
  9495. }
  9496. ]
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9500. {
  9501. front: {
  9502. height: math.unit(5 + 8 / 12, "feet"),
  9503. weight: math.unit(130, "lbs"),
  9504. name: "Front",
  9505. image: {
  9506. source: "./media/characters/corvin/front.svg",
  9507. extra: 1803 / 1629
  9508. }
  9509. },
  9510. frontShirt: {
  9511. height: math.unit(5 + 8 / 12, "feet"),
  9512. weight: math.unit(130, "lbs"),
  9513. name: "Front (Shirt)",
  9514. image: {
  9515. source: "./media/characters/corvin/front-shirt.svg",
  9516. extra: 1803 / 1629
  9517. }
  9518. },
  9519. frontPoncho: {
  9520. height: math.unit(5 + 8 / 12, "feet"),
  9521. weight: math.unit(130, "lbs"),
  9522. name: "Front (Poncho)",
  9523. image: {
  9524. source: "./media/characters/corvin/front-poncho.svg",
  9525. extra: 1803 / 1629
  9526. }
  9527. },
  9528. side: {
  9529. height: math.unit(5 + 8 / 12, "feet"),
  9530. weight: math.unit(130, "lbs"),
  9531. name: "Side",
  9532. image: {
  9533. source: "./media/characters/corvin/side.svg",
  9534. extra: 1012 / 945
  9535. }
  9536. },
  9537. back: {
  9538. height: math.unit(5 + 8 / 12, "feet"),
  9539. weight: math.unit(130, "lbs"),
  9540. name: "Back",
  9541. image: {
  9542. source: "./media/characters/corvin/back.svg",
  9543. extra: 1803 / 1629
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Micro",
  9550. height: math.unit(3, "inches")
  9551. },
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(5 + 8 / 12, "feet")
  9555. },
  9556. {
  9557. name: "Macro",
  9558. height: math.unit(300, "feet"),
  9559. default: true
  9560. },
  9561. {
  9562. name: "Megamacro",
  9563. height: math.unit(500, "miles")
  9564. }
  9565. ]
  9566. ))
  9567. characterMakers.push(() => makeCharacter(
  9568. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9569. {
  9570. front: {
  9571. height: math.unit(6, "feet"),
  9572. weight: math.unit(135, "lbs"),
  9573. name: "Front",
  9574. image: {
  9575. source: "./media/characters/q/front.svg",
  9576. extra: 854 / 752,
  9577. bottom: 0.005
  9578. }
  9579. },
  9580. back: {
  9581. height: math.unit(6, "feet"),
  9582. weight: math.unit(130, "lbs"),
  9583. name: "Back",
  9584. image: {
  9585. source: "./media/characters/q/back.svg",
  9586. extra: 854 / 752
  9587. }
  9588. },
  9589. },
  9590. [
  9591. {
  9592. name: "Macro",
  9593. height: math.unit(90, "feet"),
  9594. default: true
  9595. },
  9596. {
  9597. name: "Extra Macro",
  9598. height: math.unit(300, "feet"),
  9599. },
  9600. {
  9601. name: "BIG WALF",
  9602. height: math.unit(750, "feet"),
  9603. },
  9604. ]
  9605. ))
  9606. characterMakers.push(() => makeCharacter(
  9607. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9608. {
  9609. front: {
  9610. height: math.unit(3, "feet"),
  9611. weight: math.unit(28, "lbs"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/citrine/front.svg"
  9615. }
  9616. }
  9617. },
  9618. [
  9619. {
  9620. name: "Normal",
  9621. height: math.unit(3, "feet"),
  9622. default: true
  9623. }
  9624. ]
  9625. ))
  9626. characterMakers.push(() => makeCharacter(
  9627. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9628. {
  9629. front: {
  9630. height: math.unit(14, "feet"),
  9631. weight: math.unit(1450, "kg"),
  9632. preyCapacity: math.unit(15, "people"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/aura-starwind/front.svg",
  9636. extra: 1440/1327,
  9637. bottom: 11/1451
  9638. }
  9639. },
  9640. side: {
  9641. height: math.unit(14, "feet"),
  9642. weight: math.unit(1450, "kg"),
  9643. preyCapacity: math.unit(15, "people"),
  9644. name: "Side",
  9645. image: {
  9646. source: "./media/characters/aura-starwind/side.svg",
  9647. extra: 1654 / 1497
  9648. }
  9649. },
  9650. taur: {
  9651. height: math.unit(18, "feet"),
  9652. weight: math.unit(5500, "kg"),
  9653. preyCapacity: math.unit(50, "people"),
  9654. name: "Taur",
  9655. image: {
  9656. source: "./media/characters/aura-starwind/taur.svg",
  9657. extra: 1760 / 1650
  9658. }
  9659. },
  9660. feral: {
  9661. height: math.unit(46, "feet"),
  9662. weight: math.unit(25000, "kg"),
  9663. preyCapacity: math.unit(120, "people"),
  9664. name: "Feral",
  9665. image: {
  9666. source: "./media/characters/aura-starwind/feral.svg"
  9667. }
  9668. },
  9669. },
  9670. [
  9671. {
  9672. name: "Normal",
  9673. height: math.unit(14, "feet"),
  9674. default: true
  9675. },
  9676. {
  9677. name: "Macro",
  9678. height: math.unit(50, "meters")
  9679. },
  9680. {
  9681. name: "Megamacro",
  9682. height: math.unit(5000, "meters")
  9683. },
  9684. {
  9685. name: "Gigamacro",
  9686. height: math.unit(100000, "kilometers")
  9687. },
  9688. ]
  9689. ))
  9690. characterMakers.push(() => makeCharacter(
  9691. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9692. {
  9693. front: {
  9694. height: math.unit(2 + 7 / 12, "feet"),
  9695. weight: math.unit(32, "lbs"),
  9696. name: "Front",
  9697. image: {
  9698. source: "./media/characters/rivet/front.svg",
  9699. extra: 1716 / 1658,
  9700. bottom: 0.03
  9701. }
  9702. },
  9703. foot: {
  9704. height: math.unit(0.551, "feet"),
  9705. name: "Rivet's Foot",
  9706. image: {
  9707. source: "./media/characters/rivet/foot.svg"
  9708. },
  9709. rename: true
  9710. }
  9711. },
  9712. [
  9713. {
  9714. name: "Micro",
  9715. height: math.unit(1.5, "inches"),
  9716. },
  9717. {
  9718. name: "Normal",
  9719. height: math.unit(2 + 7 / 12, "feet"),
  9720. default: true
  9721. },
  9722. {
  9723. name: "Macro",
  9724. height: math.unit(85, "feet")
  9725. },
  9726. {
  9727. name: "Megamacro",
  9728. height: math.unit(2.2, "km")
  9729. }
  9730. ]
  9731. ))
  9732. characterMakers.push(() => makeCharacter(
  9733. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9734. {
  9735. front: {
  9736. height: math.unit(5 + 9 / 12, "feet"),
  9737. weight: math.unit(150, "lbs"),
  9738. name: "Front",
  9739. image: {
  9740. source: "./media/characters/coffee/front.svg",
  9741. extra: 946/880,
  9742. bottom: 66/1012
  9743. }
  9744. },
  9745. foot: {
  9746. height: math.unit(1.29, "feet"),
  9747. name: "Foot",
  9748. image: {
  9749. source: "./media/characters/coffee/foot.svg"
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(2, "inches"),
  9757. },
  9758. {
  9759. name: "Normal",
  9760. height: math.unit(5 + 9 / 12, "feet"),
  9761. default: true
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(800, "feet")
  9766. },
  9767. {
  9768. name: "Megamacro",
  9769. height: math.unit(25, "miles")
  9770. }
  9771. ]
  9772. ))
  9773. characterMakers.push(() => makeCharacter(
  9774. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9775. {
  9776. front: {
  9777. height: math.unit(6, "feet"),
  9778. weight: math.unit(200, "lbs"),
  9779. name: "Front",
  9780. image: {
  9781. source: "./media/characters/chari-gal/front.svg",
  9782. extra: 735/649,
  9783. bottom: 55/790
  9784. },
  9785. form: "normal",
  9786. default: true
  9787. },
  9788. back: {
  9789. height: math.unit(6, "feet"),
  9790. weight: math.unit(200, "lb"),
  9791. name: "Back",
  9792. image: {
  9793. source: "./media/characters/chari-gal/back.svg",
  9794. extra: 762/666,
  9795. bottom: 31/793
  9796. },
  9797. form: "normal"
  9798. },
  9799. mouth: {
  9800. height: math.unit(1.35, "feet"),
  9801. name: "Mouth",
  9802. image: {
  9803. source: "./media/characters/chari-gal/mouth.svg"
  9804. },
  9805. form: "normal"
  9806. },
  9807. gigantamax: {
  9808. height: math.unit(6 * 16, "feet"),
  9809. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9810. name: "Gigantamax",
  9811. image: {
  9812. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9813. extra: 1507/1149,
  9814. bottom: 254/1761
  9815. },
  9816. form: "gigantamax",
  9817. default: true
  9818. },
  9819. },
  9820. [
  9821. {
  9822. name: "Normal",
  9823. height: math.unit(5 + 7 / 12, "feet"),
  9824. form: "normal",
  9825. },
  9826. {
  9827. name: "Macro",
  9828. height: math.unit(200, "feet"),
  9829. default: true,
  9830. form: "normal"
  9831. },
  9832. {
  9833. name: "Normal",
  9834. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9835. form: "gigantamax",
  9836. },
  9837. {
  9838. name: "Macro",
  9839. height: math.unit(16 * 200, "feet"),
  9840. default: true,
  9841. form: "gigantamax"
  9842. },
  9843. ],
  9844. {
  9845. "normal": {
  9846. name: "Normal",
  9847. default: true
  9848. },
  9849. "gigantamax": {
  9850. name: "Gigantamax",
  9851. },
  9852. }
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(6, "feet"),
  9859. weight: math.unit(150, "lbs"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/nova/front.svg",
  9863. extra: 5000 / 4722,
  9864. bottom: 0.02
  9865. }
  9866. }
  9867. },
  9868. [
  9869. {
  9870. name: "Micro-",
  9871. height: math.unit(0.8, "inches")
  9872. },
  9873. {
  9874. name: "Micro",
  9875. height: math.unit(2, "inches"),
  9876. default: true
  9877. },
  9878. ]
  9879. ))
  9880. characterMakers.push(() => makeCharacter(
  9881. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9882. {
  9883. koboldFront: {
  9884. height: math.unit(3 + 1 / 12, "feet"),
  9885. weight: math.unit(21.7, "lbs"),
  9886. name: "Front",
  9887. image: {
  9888. source: "./media/characters/argent/kobold-front.svg",
  9889. extra: 1471 / 1331,
  9890. bottom: 100.8 / 1575.5
  9891. },
  9892. form: "kobold",
  9893. default: true
  9894. },
  9895. dragonFront: {
  9896. height: math.unit(75, "inches"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/argent/dragon-front.svg",
  9900. extra: 1389/1248,
  9901. bottom: 54/1443
  9902. },
  9903. form: "dragon",
  9904. },
  9905. dragonBack: {
  9906. height: math.unit(75, "inches"),
  9907. name: "Back",
  9908. image: {
  9909. source: "./media/characters/argent/dragon-back.svg",
  9910. extra: 1399/1271,
  9911. bottom: 23/1422
  9912. },
  9913. form: "dragon",
  9914. },
  9915. dragonDressed: {
  9916. height: math.unit(75, "inches"),
  9917. name: "Dressed",
  9918. image: {
  9919. source: "./media/characters/argent/dragon-dressed.svg",
  9920. extra: 1350/1215,
  9921. bottom: 26/1376
  9922. },
  9923. form: "dragon"
  9924. },
  9925. dragonHead: {
  9926. height: math.unit(23.5, "inches"),
  9927. name: "Head",
  9928. image: {
  9929. source: "./media/characters/argent/dragon-head.svg"
  9930. },
  9931. form: "dragon",
  9932. },
  9933. },
  9934. [
  9935. {
  9936. name: "Micro",
  9937. height: math.unit(2, "inches"),
  9938. form: "kobold",
  9939. },
  9940. {
  9941. name: "Normal",
  9942. height: math.unit(3 + 1 / 12, "feet"),
  9943. form: "kobold",
  9944. default: true
  9945. },
  9946. {
  9947. name: "Macro",
  9948. height: math.unit(120, "feet"),
  9949. form: "kobold",
  9950. },
  9951. {
  9952. name: "Speck",
  9953. height: math.unit(1, "mm"),
  9954. form: "dragon",
  9955. },
  9956. {
  9957. name: "Tiny",
  9958. height: math.unit(1, "cm"),
  9959. form: "dragon",
  9960. },
  9961. {
  9962. name: "Micro",
  9963. height: math.unit(5, "cm"),
  9964. form: "dragon",
  9965. },
  9966. {
  9967. name: "Normal",
  9968. height: math.unit(75, "inches"),
  9969. form: "dragon",
  9970. default: true
  9971. },
  9972. {
  9973. name: "Extra Tall",
  9974. height: math.unit(9, "feet"),
  9975. form: "dragon",
  9976. },
  9977. {
  9978. name: "Inconvenient",
  9979. height: math.unit(5, "meters"),
  9980. form: "dragon",
  9981. },
  9982. {
  9983. name: "Macro",
  9984. height: math.unit(70, "meters"),
  9985. form: "dragon",
  9986. },
  9987. {
  9988. name: "Macro+",
  9989. height: math.unit(250, "meters"),
  9990. form: "dragon",
  9991. },
  9992. {
  9993. name: "Megamacro",
  9994. height: math.unit(20, "km"),
  9995. form: "dragon",
  9996. },
  9997. {
  9998. name: "Mountainous",
  9999. height: math.unit(100, "km"),
  10000. form: "dragon",
  10001. },
  10002. {
  10003. name: "Continental",
  10004. height: math.unit(2, "megameters"),
  10005. form: "dragon",
  10006. },
  10007. {
  10008. name: "Too Big",
  10009. height: math.unit(900, "megameters"),
  10010. form: "dragon",
  10011. },
  10012. ],
  10013. {
  10014. "kobold": {
  10015. name: "Kobold",
  10016. default: true
  10017. },
  10018. "dragon": {
  10019. name: "Dragon",
  10020. },
  10021. }
  10022. ))
  10023. characterMakers.push(() => makeCharacter(
  10024. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10025. {
  10026. lamp: {
  10027. height: math.unit(7 * 1559 / 989, "feet"),
  10028. name: "Magic Lamp",
  10029. image: {
  10030. source: "./media/characters/mira-al-cul/lamp.svg",
  10031. extra: 1617 / 1559
  10032. }
  10033. },
  10034. front: {
  10035. height: math.unit(7, "feet"),
  10036. name: "Front",
  10037. image: {
  10038. source: "./media/characters/mira-al-cul/front.svg",
  10039. extra: 1044 / 990
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Heavily Restricted",
  10046. height: math.unit(7 * 1559 / 989, "feet")
  10047. },
  10048. {
  10049. name: "Freshly Freed",
  10050. height: math.unit(50 * 1559 / 989, "feet")
  10051. },
  10052. {
  10053. name: "World Encompassing",
  10054. height: math.unit(10000 * 1559 / 989, "miles")
  10055. },
  10056. {
  10057. name: "Galactic",
  10058. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10059. },
  10060. {
  10061. name: "Palmed Universe",
  10062. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10063. default: true
  10064. },
  10065. {
  10066. name: "Multiversal Matriarch",
  10067. height: math.unit(8.87e10, "yottameters")
  10068. },
  10069. {
  10070. name: "Void Mother",
  10071. height: math.unit(3.14e110, "yottaparsecs")
  10072. },
  10073. {
  10074. name: "Toying with Transcendence",
  10075. height: math.unit(1e307, "meters")
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10081. {
  10082. front: {
  10083. height: math.unit(17 + 1 / 12, "feet"),
  10084. weight: math.unit(476.2 * 5, "lbs"),
  10085. name: "Front",
  10086. image: {
  10087. source: "./media/characters/kuro-shi-uchū/front.svg",
  10088. extra: 2329 / 1835,
  10089. bottom: 0.02
  10090. }
  10091. },
  10092. },
  10093. [
  10094. {
  10095. name: "Micro",
  10096. height: math.unit(2, "inches")
  10097. },
  10098. {
  10099. name: "Normal",
  10100. height: math.unit(12, "meters")
  10101. },
  10102. {
  10103. name: "Planetary",
  10104. height: math.unit(0.00929, "AU"),
  10105. default: true
  10106. },
  10107. {
  10108. name: "Universal",
  10109. height: math.unit(20, "gigaparsecs")
  10110. },
  10111. ]
  10112. ))
  10113. characterMakers.push(() => makeCharacter(
  10114. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10115. {
  10116. front: {
  10117. height: math.unit(5 + 2 / 12, "feet"),
  10118. weight: math.unit(120, "lbs"),
  10119. name: "Front",
  10120. image: {
  10121. source: "./media/characters/katherine/front.svg",
  10122. extra: 2075 / 1969
  10123. }
  10124. },
  10125. dress: {
  10126. height: math.unit(5 + 2 / 12, "feet"),
  10127. weight: math.unit(120, "lbs"),
  10128. name: "Dress",
  10129. image: {
  10130. source: "./media/characters/katherine/dress.svg",
  10131. extra: 2258 / 2064
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Micro",
  10138. height: math.unit(1, "inches"),
  10139. default: true
  10140. },
  10141. {
  10142. name: "Normal",
  10143. height: math.unit(5 + 2 / 12, "feet")
  10144. },
  10145. {
  10146. name: "Macro",
  10147. height: math.unit(100, "meters")
  10148. },
  10149. {
  10150. name: "Megamacro",
  10151. height: math.unit(80, "miles")
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(7 + 8 / 12, "feet"),
  10160. weight: math.unit(250, "lbs"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/yevis/front.svg",
  10164. extra: 1938 / 1755
  10165. }
  10166. }
  10167. },
  10168. [
  10169. {
  10170. name: "Mortal",
  10171. height: math.unit(7 + 8 / 12, "feet")
  10172. },
  10173. {
  10174. name: "Battle",
  10175. height: math.unit(25 + 11 / 12, "feet")
  10176. },
  10177. {
  10178. name: "Wrath",
  10179. height: math.unit(1654 + 11 / 12, "feet")
  10180. },
  10181. {
  10182. name: "Planet Destroyer",
  10183. height: math.unit(12000, "miles")
  10184. },
  10185. {
  10186. name: "Galaxy Conqueror",
  10187. height: math.unit(1.45, "zettameters"),
  10188. default: true
  10189. },
  10190. {
  10191. name: "Universal War",
  10192. height: math.unit(184, "gigaparsecs")
  10193. },
  10194. {
  10195. name: "Eternity War",
  10196. height: math.unit(1.98e55, "yottaparsecs")
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(5 + 8 / 12, "feet"),
  10205. weight: math.unit(63, "kg"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/xavier/front.svg",
  10209. extra: 944 / 883
  10210. }
  10211. },
  10212. frontStretch: {
  10213. height: math.unit(5 + 8 / 12, "feet"),
  10214. weight: math.unit(63, "kg"),
  10215. name: "Stretching",
  10216. image: {
  10217. source: "./media/characters/xavier/front-stretch.svg",
  10218. extra: 962 / 820
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(5 + 8 / 12, "feet")
  10226. },
  10227. {
  10228. name: "Macro",
  10229. height: math.unit(100, "meters"),
  10230. default: true
  10231. },
  10232. {
  10233. name: "McLargeHuge",
  10234. height: math.unit(10, "miles")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(5 + 5 / 12, "feet"),
  10243. weight: math.unit(150, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/joshii/front.svg",
  10247. extra: 765 / 653,
  10248. bottom: 51 / 816
  10249. }
  10250. },
  10251. foot: {
  10252. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10253. name: "Foot",
  10254. image: {
  10255. source: "./media/characters/joshii/foot.svg"
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Micro",
  10262. height: math.unit(2, "inches")
  10263. },
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(5 + 5 / 12, "feet")
  10267. },
  10268. {
  10269. name: "Macro",
  10270. height: math.unit(785, "feet"),
  10271. default: true
  10272. },
  10273. {
  10274. name: "Megamacro",
  10275. height: math.unit(24.5, "miles")
  10276. },
  10277. ]
  10278. ))
  10279. characterMakers.push(() => makeCharacter(
  10280. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10281. {
  10282. front: {
  10283. height: math.unit(6, "feet"),
  10284. weight: math.unit(150, "lb"),
  10285. name: "Front",
  10286. image: {
  10287. source: "./media/characters/goddess-elizabeth/front.svg",
  10288. extra: 1800 / 1525,
  10289. bottom: 0.005
  10290. }
  10291. },
  10292. foot: {
  10293. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10294. name: "Foot",
  10295. image: {
  10296. source: "./media/characters/goddess-elizabeth/foot.svg"
  10297. }
  10298. },
  10299. mouth: {
  10300. height: math.unit(6, "feet"),
  10301. name: "Mouth",
  10302. image: {
  10303. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10304. }
  10305. },
  10306. },
  10307. [
  10308. {
  10309. name: "Micro",
  10310. height: math.unit(12, "feet")
  10311. },
  10312. {
  10313. name: "Normal",
  10314. height: math.unit(80, "miles"),
  10315. default: true
  10316. },
  10317. {
  10318. name: "Macro",
  10319. height: math.unit(15000, "parsecs")
  10320. },
  10321. ]
  10322. ))
  10323. characterMakers.push(() => makeCharacter(
  10324. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10325. {
  10326. front: {
  10327. height: math.unit(5 + 9 / 12, "feet"),
  10328. weight: math.unit(144, "lb"),
  10329. name: "Front",
  10330. image: {
  10331. source: "./media/characters/kara/front.svg"
  10332. }
  10333. },
  10334. feet: {
  10335. height: math.unit(6 / 6.765, "feet"),
  10336. name: "Kara's Feet",
  10337. rename: true,
  10338. image: {
  10339. source: "./media/characters/kara/feet.svg"
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(5 + 9 / 12, "feet")
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(174, "feet"),
  10351. default: true
  10352. },
  10353. ]
  10354. ))
  10355. characterMakers.push(() => makeCharacter(
  10356. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10357. {
  10358. front: {
  10359. height: math.unit(18, "feet"),
  10360. weight: math.unit(4050, "lb"),
  10361. name: "Front",
  10362. image: {
  10363. source: "./media/characters/tyrone/front.svg",
  10364. extra: 2405 / 2270,
  10365. bottom: 182 / 2587
  10366. }
  10367. },
  10368. },
  10369. [
  10370. {
  10371. name: "Normal",
  10372. height: math.unit(18, "feet"),
  10373. default: true
  10374. },
  10375. {
  10376. name: "Macro",
  10377. height: math.unit(300, "feet")
  10378. },
  10379. {
  10380. name: "Megamacro",
  10381. height: math.unit(15, "km")
  10382. },
  10383. {
  10384. name: "Gigamacro",
  10385. height: math.unit(500, "km")
  10386. },
  10387. {
  10388. name: "Teramacro",
  10389. height: math.unit(0.5, "gigameters")
  10390. },
  10391. {
  10392. name: "Omnimacro",
  10393. height: math.unit(1e252, "yottauniverse")
  10394. },
  10395. ]
  10396. ))
  10397. characterMakers.push(() => makeCharacter(
  10398. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10399. {
  10400. front: {
  10401. height: math.unit(7 + 8 / 12, "feet"),
  10402. weight: math.unit(120, "lb"),
  10403. name: "Front",
  10404. image: {
  10405. source: "./media/characters/danny/front.svg",
  10406. extra: 1490 / 1350
  10407. }
  10408. },
  10409. back: {
  10410. height: math.unit(7 + 8 / 12, "feet"),
  10411. weight: math.unit(120, "lb"),
  10412. name: "Back",
  10413. image: {
  10414. source: "./media/characters/danny/back.svg",
  10415. extra: 1490 / 1350
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Normal",
  10422. height: math.unit(7 + 8 / 12, "feet"),
  10423. default: true
  10424. },
  10425. ]
  10426. ))
  10427. characterMakers.push(() => makeCharacter(
  10428. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10429. {
  10430. front: {
  10431. height: math.unit(3.5, "inches"),
  10432. weight: math.unit(19, "grams"),
  10433. name: "Front",
  10434. image: {
  10435. source: "./media/characters/mallow/front.svg",
  10436. extra: 471 / 431
  10437. }
  10438. },
  10439. back: {
  10440. height: math.unit(3.5, "inches"),
  10441. weight: math.unit(19, "grams"),
  10442. name: "Back",
  10443. image: {
  10444. source: "./media/characters/mallow/back.svg",
  10445. extra: 471 / 431
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Normal",
  10452. height: math.unit(3.5, "inches"),
  10453. default: true
  10454. },
  10455. ]
  10456. ))
  10457. characterMakers.push(() => makeCharacter(
  10458. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10459. {
  10460. front: {
  10461. height: math.unit(9, "feet"),
  10462. weight: math.unit(230, "kg"),
  10463. name: "Front",
  10464. image: {
  10465. source: "./media/characters/starry-aqua/front.svg"
  10466. }
  10467. },
  10468. back: {
  10469. height: math.unit(9, "feet"),
  10470. weight: math.unit(230, "kg"),
  10471. name: "Back",
  10472. image: {
  10473. source: "./media/characters/starry-aqua/back.svg"
  10474. }
  10475. },
  10476. hand: {
  10477. height: math.unit(9 * 0.1168, "feet"),
  10478. name: "Hand",
  10479. image: {
  10480. source: "./media/characters/starry-aqua/hand.svg"
  10481. }
  10482. },
  10483. foot: {
  10484. height: math.unit(9 * 0.18, "feet"),
  10485. name: "Foot",
  10486. image: {
  10487. source: "./media/characters/starry-aqua/foot.svg"
  10488. }
  10489. }
  10490. },
  10491. [
  10492. {
  10493. name: "Micro",
  10494. height: math.unit(3, "inches")
  10495. },
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(9, "feet")
  10499. },
  10500. {
  10501. name: "Macro",
  10502. height: math.unit(300, "feet"),
  10503. default: true
  10504. },
  10505. {
  10506. name: "Megamacro",
  10507. height: math.unit(3200, "feet")
  10508. }
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10513. {
  10514. front: {
  10515. height: math.unit(15, "feet"),
  10516. weight: math.unit(5026, "lb"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/luka-towers/front.svg",
  10520. extra: 1269/1133,
  10521. bottom: 51/1320
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(15, "feet"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Minimacro",
  10533. height: math.unit(25, "feet")
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(320, "feet")
  10538. },
  10539. {
  10540. name: "Megamacro",
  10541. height: math.unit(35000, "feet")
  10542. },
  10543. {
  10544. name: "Gigamacro",
  10545. height: math.unit(4000, "miles")
  10546. },
  10547. {
  10548. name: "Teramacro",
  10549. height: math.unit(15000, "miles")
  10550. },
  10551. ]
  10552. ))
  10553. characterMakers.push(() => makeCharacter(
  10554. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10555. {
  10556. front: {
  10557. height: math.unit(6, "feet"),
  10558. weight: math.unit(150, "lb"),
  10559. name: "Front",
  10560. image: {
  10561. source: "./media/characters/natalie-nightring/front.svg",
  10562. extra: 1,
  10563. bottom: 0.06
  10564. }
  10565. },
  10566. },
  10567. [
  10568. {
  10569. name: "Uh Oh",
  10570. height: math.unit(0.1, "mm")
  10571. },
  10572. {
  10573. name: "Small",
  10574. height: math.unit(3, "inches")
  10575. },
  10576. {
  10577. name: "Human Scale",
  10578. height: math.unit(6, "feet")
  10579. },
  10580. {
  10581. name: "Librarian",
  10582. height: math.unit(50, "feet"),
  10583. default: true
  10584. },
  10585. {
  10586. name: "Immense",
  10587. height: math.unit(200, "miles")
  10588. },
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10593. {
  10594. front: {
  10595. height: math.unit(6, "feet"),
  10596. weight: math.unit(180, "lbs"),
  10597. name: "Front",
  10598. image: {
  10599. source: "./media/characters/danni-rosie/front.svg",
  10600. extra: 1260 / 1128,
  10601. bottom: 0.022
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Micro",
  10608. height: math.unit(2, "inches"),
  10609. default: true
  10610. },
  10611. ]
  10612. ))
  10613. characterMakers.push(() => makeCharacter(
  10614. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10615. {
  10616. front: {
  10617. height: math.unit(5 + 9 / 12, "feet"),
  10618. weight: math.unit(220, "lb"),
  10619. name: "Front",
  10620. image: {
  10621. source: "./media/characters/samantha-kruse/front.svg",
  10622. extra: (985 / 935),
  10623. bottom: 0.03
  10624. }
  10625. },
  10626. frontUndressed: {
  10627. height: math.unit(5 + 9 / 12, "feet"),
  10628. weight: math.unit(220, "lb"),
  10629. name: "Front (Undressed)",
  10630. image: {
  10631. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10632. extra: (973 / 923),
  10633. bottom: 0.025
  10634. }
  10635. },
  10636. fat: {
  10637. height: math.unit(5 + 9 / 12, "feet"),
  10638. weight: math.unit(900, "lb"),
  10639. name: "Front (Fat)",
  10640. image: {
  10641. source: "./media/characters/samantha-kruse/fat.svg",
  10642. extra: 2688 / 2561
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(5 + 9 / 12, "feet"),
  10650. default: true
  10651. }
  10652. ]
  10653. ))
  10654. characterMakers.push(() => makeCharacter(
  10655. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10656. {
  10657. back: {
  10658. height: math.unit(5 + 4 / 12, "feet"),
  10659. weight: math.unit(4963, "lb"),
  10660. name: "Back",
  10661. image: {
  10662. source: "./media/characters/amelia-rosie/back.svg",
  10663. extra: 1113 / 963,
  10664. bottom: 0.01
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Level 0",
  10671. height: math.unit(5 + 4 / 12, "feet")
  10672. },
  10673. {
  10674. name: "Level 1",
  10675. height: math.unit(164597, "feet"),
  10676. default: true
  10677. },
  10678. {
  10679. name: "Level 2",
  10680. height: math.unit(956243, "miles")
  10681. },
  10682. {
  10683. name: "Level 3",
  10684. height: math.unit(29421709423, "miles")
  10685. },
  10686. {
  10687. name: "Level 4",
  10688. height: math.unit(154, "lightyears")
  10689. },
  10690. {
  10691. name: "Level 5",
  10692. height: math.unit(4738272, "lightyears")
  10693. },
  10694. {
  10695. name: "Level 6",
  10696. height: math.unit(145787152896, "lightyears")
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10702. {
  10703. front: {
  10704. height: math.unit(5 + 11 / 12, "feet"),
  10705. weight: math.unit(65, "kg"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/rook-kitara/front.svg",
  10709. extra: 1347 / 1274,
  10710. bottom: 0.005
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Totally Unfair",
  10717. height: math.unit(1.8, "mm")
  10718. },
  10719. {
  10720. name: "Lap Rookie",
  10721. height: math.unit(1.4, "feet")
  10722. },
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(5 + 11 / 12, "feet"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "How Did This Happen",
  10730. height: math.unit(80, "miles")
  10731. }
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(7, "feet"),
  10739. weight: math.unit(300, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/pisces/front.svg",
  10743. extra: 2255 / 2115,
  10744. bottom: 0.03
  10745. }
  10746. },
  10747. back: {
  10748. height: math.unit(7, "feet"),
  10749. weight: math.unit(300, "lb"),
  10750. name: "Back",
  10751. image: {
  10752. source: "./media/characters/pisces/back.svg",
  10753. extra: 2146 / 2055,
  10754. bottom: 0.04
  10755. }
  10756. },
  10757. },
  10758. [
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(7, "feet"),
  10762. default: true
  10763. },
  10764. {
  10765. name: "Swimming Pool",
  10766. height: math.unit(12.2, "meters")
  10767. },
  10768. {
  10769. name: "Olympic Swimming Pool",
  10770. height: math.unit(56.3, "meters")
  10771. },
  10772. {
  10773. name: "Lake Superior",
  10774. height: math.unit(93900, "meters")
  10775. },
  10776. {
  10777. name: "Mediterranean Sea",
  10778. height: math.unit(644457, "meters")
  10779. },
  10780. {
  10781. name: "World's Oceans",
  10782. height: math.unit(4567491, "meters")
  10783. },
  10784. ]
  10785. ))
  10786. characterMakers.push(() => makeCharacter(
  10787. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10788. {
  10789. front: {
  10790. height: math.unit(2.3, "meters"),
  10791. weight: math.unit(120, "kg"),
  10792. name: "Front",
  10793. image: {
  10794. source: "./media/characters/zelas/front.svg"
  10795. }
  10796. },
  10797. side: {
  10798. height: math.unit(2.3, "meters"),
  10799. weight: math.unit(120, "kg"),
  10800. name: "Side",
  10801. image: {
  10802. source: "./media/characters/zelas/side.svg"
  10803. }
  10804. },
  10805. back: {
  10806. height: math.unit(2.3, "meters"),
  10807. weight: math.unit(120, "kg"),
  10808. name: "Back",
  10809. image: {
  10810. source: "./media/characters/zelas/back.svg"
  10811. }
  10812. },
  10813. foot: {
  10814. height: math.unit(1.116, "feet"),
  10815. name: "Foot",
  10816. image: {
  10817. source: "./media/characters/zelas/foot.svg"
  10818. }
  10819. },
  10820. },
  10821. [
  10822. {
  10823. name: "Normal",
  10824. height: math.unit(2.3, "meters")
  10825. },
  10826. {
  10827. name: "Macro",
  10828. height: math.unit(30, "meters"),
  10829. default: true
  10830. },
  10831. ]
  10832. ))
  10833. characterMakers.push(() => makeCharacter(
  10834. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10835. {
  10836. front: {
  10837. height: math.unit(1, "inch"),
  10838. weight: math.unit(0.21, "grams"),
  10839. name: "Front",
  10840. image: {
  10841. source: "./media/characters/talbot/front.svg",
  10842. extra: 594 / 544
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Micro",
  10849. height: math.unit(1, "inch"),
  10850. default: true
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10856. {
  10857. front: {
  10858. height: math.unit(3 + 3 / 12, "feet"),
  10859. weight: math.unit(51.8, "lb"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/fliss/front.svg",
  10863. extra: 840 / 640
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Teeny Tiny",
  10870. height: math.unit(1, "mm")
  10871. },
  10872. {
  10873. name: "Small",
  10874. height: math.unit(1, "inch"),
  10875. default: true
  10876. },
  10877. {
  10878. name: "Standard Sylveon",
  10879. height: math.unit(3 + 3 / 12, "feet")
  10880. },
  10881. {
  10882. name: "Large Nuisance",
  10883. height: math.unit(33, "feet")
  10884. },
  10885. {
  10886. name: "City Filler",
  10887. height: math.unit(3000, "feet")
  10888. },
  10889. {
  10890. name: "New Horizon",
  10891. height: math.unit(6000, "miles")
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10897. {
  10898. front: {
  10899. height: math.unit(5, "cm"),
  10900. weight: math.unit(1.94, "g"),
  10901. name: "Front",
  10902. image: {
  10903. source: "./media/characters/fleta/front.svg",
  10904. extra: 835 / 803
  10905. }
  10906. },
  10907. back: {
  10908. height: math.unit(5, "cm"),
  10909. weight: math.unit(1.94, "g"),
  10910. name: "Back",
  10911. image: {
  10912. source: "./media/characters/fleta/back.svg",
  10913. extra: 835 / 803
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Micro",
  10920. height: math.unit(5, "cm"),
  10921. default: true
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10927. {
  10928. front: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(225, "lb"),
  10931. name: "Front",
  10932. image: {
  10933. source: "./media/characters/dominic/front.svg",
  10934. extra: 1770 / 1620,
  10935. bottom: 0.025
  10936. }
  10937. },
  10938. back: {
  10939. height: math.unit(6, "feet"),
  10940. weight: math.unit(225, "lb"),
  10941. name: "Back",
  10942. image: {
  10943. source: "./media/characters/dominic/back.svg",
  10944. extra: 1745 / 1620,
  10945. bottom: 0.065
  10946. }
  10947. },
  10948. },
  10949. [
  10950. {
  10951. name: "Nano",
  10952. height: math.unit(0.1, "mm")
  10953. },
  10954. {
  10955. name: "Micro-",
  10956. height: math.unit(1, "mm")
  10957. },
  10958. {
  10959. name: "Micro",
  10960. height: math.unit(4, "inches")
  10961. },
  10962. {
  10963. name: "Normal",
  10964. height: math.unit(6 + 4 / 12, "feet"),
  10965. default: true
  10966. },
  10967. {
  10968. name: "Macro",
  10969. height: math.unit(115, "feet")
  10970. },
  10971. {
  10972. name: "Macro+",
  10973. height: math.unit(955, "feet")
  10974. },
  10975. {
  10976. name: "Megamacro",
  10977. height: math.unit(8990, "feet")
  10978. },
  10979. {
  10980. name: "Gigmacro",
  10981. height: math.unit(9310, "miles")
  10982. },
  10983. {
  10984. name: "Teramacro",
  10985. height: math.unit(1567005010, "miles")
  10986. },
  10987. {
  10988. name: "Examacro",
  10989. height: math.unit(1425, "parsecs")
  10990. },
  10991. ]
  10992. ))
  10993. characterMakers.push(() => makeCharacter(
  10994. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10995. {
  10996. front: {
  10997. height: math.unit(400, "feet"),
  10998. weight: math.unit(44444444, "lb"),
  10999. name: "Front",
  11000. image: {
  11001. source: "./media/characters/major-colonel/front.svg"
  11002. }
  11003. },
  11004. back: {
  11005. height: math.unit(400, "feet"),
  11006. weight: math.unit(44444444, "lb"),
  11007. name: "Back",
  11008. image: {
  11009. source: "./media/characters/major-colonel/back.svg"
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Macro",
  11016. height: math.unit(400, "feet"),
  11017. default: true
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11023. {
  11024. catFront: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(120, "lb"),
  11027. name: "Front (Cat Side)",
  11028. image: {
  11029. source: "./media/characters/axel-lycan/cat-front.svg",
  11030. extra: 430 / 402,
  11031. bottom: 43 / 472.35
  11032. }
  11033. },
  11034. catBack: {
  11035. height: math.unit(6, "feet"),
  11036. weight: math.unit(120, "lb"),
  11037. name: "Back (Cat Side)",
  11038. image: {
  11039. source: "./media/characters/axel-lycan/cat-back.svg",
  11040. extra: 447 / 419,
  11041. bottom: 23.3 / 469
  11042. }
  11043. },
  11044. wolfFront: {
  11045. height: math.unit(6, "feet"),
  11046. weight: math.unit(120, "lb"),
  11047. name: "Front (Wolf Side)",
  11048. image: {
  11049. source: "./media/characters/axel-lycan/wolf-front.svg",
  11050. extra: 485 / 456,
  11051. bottom: 19 / 504
  11052. }
  11053. },
  11054. wolfBack: {
  11055. height: math.unit(6, "feet"),
  11056. weight: math.unit(120, "lb"),
  11057. name: "Back (Wolf Side)",
  11058. image: {
  11059. source: "./media/characters/axel-lycan/wolf-back.svg",
  11060. extra: 475 / 438,
  11061. bottom: 39.2 / 514
  11062. }
  11063. },
  11064. },
  11065. [
  11066. {
  11067. name: "Macro",
  11068. height: math.unit(1, "km"),
  11069. default: true
  11070. },
  11071. ]
  11072. ))
  11073. characterMakers.push(() => makeCharacter(
  11074. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11075. {
  11076. front: {
  11077. height: math.unit(5 + 9 / 12, "feet"),
  11078. weight: math.unit(175, "lb"),
  11079. name: "Front",
  11080. image: {
  11081. source: "./media/characters/vanrel-hyena/front.svg",
  11082. extra: 1086 / 1010,
  11083. bottom: 0.04
  11084. }
  11085. },
  11086. },
  11087. [
  11088. {
  11089. name: "Normal",
  11090. height: math.unit(5 + 9 / 12, "feet"),
  11091. default: true
  11092. },
  11093. ]
  11094. ))
  11095. characterMakers.push(() => makeCharacter(
  11096. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11097. {
  11098. front: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(103, "lb"),
  11101. name: "Front",
  11102. image: {
  11103. source: "./media/characters/abbott-absol/front.svg",
  11104. extra: 765/694,
  11105. bottom: 47/812
  11106. }
  11107. },
  11108. },
  11109. [
  11110. {
  11111. name: "Megamicro",
  11112. height: math.unit(0.1, "mm")
  11113. },
  11114. {
  11115. name: "Micro",
  11116. height: math.unit(1, "inch")
  11117. },
  11118. {
  11119. name: "Normal",
  11120. height: math.unit(6, "feet"),
  11121. default: true
  11122. },
  11123. ]
  11124. ))
  11125. characterMakers.push(() => makeCharacter(
  11126. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11127. {
  11128. front: {
  11129. height: math.unit(6, "feet"),
  11130. weight: math.unit(264, "lb"),
  11131. name: "Front",
  11132. image: {
  11133. source: "./media/characters/hector/front.svg",
  11134. extra: 2280 / 2130,
  11135. bottom: 0.07
  11136. }
  11137. },
  11138. },
  11139. [
  11140. {
  11141. name: "Normal",
  11142. height: math.unit(12.25, "foot"),
  11143. default: true
  11144. },
  11145. {
  11146. name: "Macro",
  11147. height: math.unit(160, "feet")
  11148. },
  11149. ]
  11150. ))
  11151. characterMakers.push(() => makeCharacter(
  11152. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11153. {
  11154. front: {
  11155. height: math.unit(6, "feet"),
  11156. weight: math.unit(150, "lb"),
  11157. name: "Front",
  11158. image: {
  11159. source: "./media/characters/sal/front.svg",
  11160. extra: 1846 / 1699,
  11161. bottom: 0.04
  11162. }
  11163. },
  11164. },
  11165. [
  11166. {
  11167. name: "Megamacro",
  11168. height: math.unit(10, "miles"),
  11169. default: true
  11170. },
  11171. ]
  11172. ))
  11173. characterMakers.push(() => makeCharacter(
  11174. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11175. {
  11176. front: {
  11177. height: math.unit(3, "meters"),
  11178. weight: math.unit(450, "kg"),
  11179. name: "front",
  11180. image: {
  11181. source: "./media/characters/ranger/front.svg",
  11182. extra: 2401 / 2243,
  11183. bottom: 0.05
  11184. }
  11185. },
  11186. },
  11187. [
  11188. {
  11189. name: "Normal",
  11190. height: math.unit(3, "meters"),
  11191. default: true
  11192. },
  11193. ]
  11194. ))
  11195. characterMakers.push(() => makeCharacter(
  11196. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11197. {
  11198. front: {
  11199. height: math.unit(14, "feet"),
  11200. weight: math.unit(800, "kg"),
  11201. name: "Front",
  11202. image: {
  11203. source: "./media/characters/theresa/front.svg",
  11204. extra: 3575 / 3346,
  11205. bottom: 0.03
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Normal",
  11212. height: math.unit(14, "feet"),
  11213. default: true
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11219. {
  11220. front: {
  11221. height: math.unit(6, "feet"),
  11222. weight: math.unit(3, "kg"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/ine/front.svg",
  11226. extra: 678 / 539,
  11227. bottom: 0.023
  11228. }
  11229. },
  11230. },
  11231. [
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(2.265, "feet"),
  11235. default: true
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11241. {
  11242. front: {
  11243. height: math.unit(5, "feet"),
  11244. weight: math.unit(30, "kg"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/vial/front.svg",
  11248. extra: 1365 / 1277,
  11249. bottom: 0.04
  11250. }
  11251. },
  11252. },
  11253. [
  11254. {
  11255. name: "Normal",
  11256. height: math.unit(5, "feet"),
  11257. default: true
  11258. },
  11259. ]
  11260. ))
  11261. characterMakers.push(() => makeCharacter(
  11262. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11263. {
  11264. side: {
  11265. height: math.unit(3.4, "meters"),
  11266. weight: math.unit(1000, "lb"),
  11267. name: "Side",
  11268. image: {
  11269. source: "./media/characters/rovoska/side.svg",
  11270. extra: 4403 / 1515
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(3.4, "meters"),
  11278. default: true
  11279. },
  11280. ]
  11281. ))
  11282. characterMakers.push(() => makeCharacter(
  11283. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11284. {
  11285. front: {
  11286. height: math.unit(8, "feet"),
  11287. weight: math.unit(315, "lb"),
  11288. name: "Front",
  11289. image: {
  11290. source: "./media/characters/gunner-rotthbauer/front.svg"
  11291. }
  11292. },
  11293. back: {
  11294. height: math.unit(8, "feet"),
  11295. weight: math.unit(315, "lb"),
  11296. name: "Back",
  11297. image: {
  11298. source: "./media/characters/gunner-rotthbauer/back.svg"
  11299. }
  11300. },
  11301. },
  11302. [
  11303. {
  11304. name: "Micro",
  11305. height: math.unit(3.5, "inches")
  11306. },
  11307. {
  11308. name: "Normal",
  11309. height: math.unit(8, "feet"),
  11310. default: true
  11311. },
  11312. {
  11313. name: "Macro",
  11314. height: math.unit(250, "feet")
  11315. },
  11316. {
  11317. name: "Megamacro",
  11318. height: math.unit(1, "AU")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(5 + 5 / 12, "feet"),
  11327. weight: math.unit(140, "lb"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/allatia/front.svg",
  11331. extra: 1227 / 1180,
  11332. bottom: 0.027
  11333. }
  11334. },
  11335. },
  11336. [
  11337. {
  11338. name: "Normal",
  11339. height: math.unit(5 + 5 / 12, "feet")
  11340. },
  11341. {
  11342. name: "Macro",
  11343. height: math.unit(250, "feet"),
  11344. default: true
  11345. },
  11346. {
  11347. name: "Megamacro",
  11348. height: math.unit(8, "miles")
  11349. }
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(6, "feet"),
  11357. weight: math.unit(120, "lb"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/tene/front.svg",
  11361. extra: 814/750,
  11362. bottom: 36/850
  11363. }
  11364. },
  11365. stomping: {
  11366. height: math.unit(2.025, "meters"),
  11367. weight: math.unit(120, "lb"),
  11368. name: "Stomping",
  11369. image: {
  11370. source: "./media/characters/tene/stomping.svg",
  11371. extra: 885/821,
  11372. bottom: 15/900
  11373. }
  11374. },
  11375. sitting: {
  11376. height: math.unit(1, "meter"),
  11377. weight: math.unit(120, "lb"),
  11378. name: "Sitting",
  11379. image: {
  11380. source: "./media/characters/tene/sitting.svg",
  11381. extra: 396/366,
  11382. bottom: 79/475
  11383. }
  11384. },
  11385. smiling: {
  11386. height: math.unit(1.2, "feet"),
  11387. name: "Smiling",
  11388. image: {
  11389. source: "./media/characters/tene/smiling.svg",
  11390. extra: 1364/1071,
  11391. bottom: 0/1364
  11392. }
  11393. },
  11394. smug: {
  11395. height: math.unit(1.3, "feet"),
  11396. name: "Smug",
  11397. image: {
  11398. source: "./media/characters/tene/smug.svg",
  11399. extra: 1323/1082,
  11400. bottom: 0/1323
  11401. }
  11402. },
  11403. feral: {
  11404. height: math.unit(3.9, "feet"),
  11405. weight: math.unit(250, "lb"),
  11406. name: "Feral",
  11407. image: {
  11408. source: "./media/characters/tene/feral.svg",
  11409. extra: 717 / 458,
  11410. bottom: 0.179
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Normal",
  11417. height: math.unit(6, "feet")
  11418. },
  11419. {
  11420. name: "Macro",
  11421. height: math.unit(300, "feet"),
  11422. default: true
  11423. },
  11424. {
  11425. name: "Megamacro",
  11426. height: math.unit(5, "miles")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11432. {
  11433. side: {
  11434. height: math.unit(6, "feet"),
  11435. name: "Side",
  11436. image: {
  11437. source: "./media/characters/evander/side.svg",
  11438. extra: 877 / 477
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Normal",
  11445. height: math.unit(0.83, "meters"),
  11446. default: true
  11447. },
  11448. ]
  11449. ))
  11450. characterMakers.push(() => makeCharacter(
  11451. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11452. {
  11453. front: {
  11454. height: math.unit(12, "feet"),
  11455. weight: math.unit(1000, "lb"),
  11456. name: "Front",
  11457. image: {
  11458. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11459. extra: 1762 / 1611
  11460. }
  11461. },
  11462. back: {
  11463. height: math.unit(12, "feet"),
  11464. weight: math.unit(1000, "lb"),
  11465. name: "Back",
  11466. image: {
  11467. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11468. extra: 1762 / 1611
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Normal",
  11475. height: math.unit(12, "feet"),
  11476. default: true
  11477. },
  11478. {
  11479. name: "Kaiju",
  11480. height: math.unit(150, "feet")
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11486. {
  11487. front: {
  11488. height: math.unit(6, "feet"),
  11489. weight: math.unit(150, "lb"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/zero-alurus/front.svg"
  11493. }
  11494. },
  11495. back: {
  11496. height: math.unit(6, "feet"),
  11497. weight: math.unit(150, "lb"),
  11498. name: "Back",
  11499. image: {
  11500. source: "./media/characters/zero-alurus/back.svg"
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Normal",
  11507. height: math.unit(5 + 10 / 12, "feet")
  11508. },
  11509. {
  11510. name: "Macro",
  11511. height: math.unit(60, "feet"),
  11512. default: true
  11513. },
  11514. {
  11515. name: "Macro+",
  11516. height: math.unit(450, "feet")
  11517. },
  11518. ]
  11519. ))
  11520. characterMakers.push(() => makeCharacter(
  11521. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11522. {
  11523. front: {
  11524. height: math.unit(6, "feet"),
  11525. weight: math.unit(200, "lb"),
  11526. name: "Front",
  11527. image: {
  11528. source: "./media/characters/mega-shi/front.svg",
  11529. extra: 1279 / 1250,
  11530. bottom: 0.02
  11531. }
  11532. },
  11533. back: {
  11534. height: math.unit(6, "feet"),
  11535. weight: math.unit(200, "lb"),
  11536. name: "Back",
  11537. image: {
  11538. source: "./media/characters/mega-shi/back.svg",
  11539. extra: 1279 / 1250,
  11540. bottom: 0.02
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Micro",
  11547. height: math.unit(16 + 6 / 12, "feet")
  11548. },
  11549. {
  11550. name: "Third Dimension",
  11551. height: math.unit(40, "meters")
  11552. },
  11553. {
  11554. name: "Normal",
  11555. height: math.unit(660, "feet"),
  11556. default: true
  11557. },
  11558. {
  11559. name: "Megamacro",
  11560. height: math.unit(10, "miles")
  11561. },
  11562. {
  11563. name: "Planetary Launch",
  11564. height: math.unit(500, "miles")
  11565. },
  11566. {
  11567. name: "Interstellar",
  11568. height: math.unit(1e9, "miles")
  11569. },
  11570. {
  11571. name: "Leaving the Universe",
  11572. height: math.unit(1, "gigaparsec")
  11573. },
  11574. {
  11575. name: "Travelling Universes",
  11576. height: math.unit(30e15, "parsecs")
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(5 + 4/12, "feet"),
  11585. weight: math.unit(120, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/odyssey/front.svg",
  11589. extra: 1747/1571,
  11590. bottom: 47/1794
  11591. }
  11592. },
  11593. side: {
  11594. height: math.unit(5.1, "feet"),
  11595. weight: math.unit(120, "lb"),
  11596. name: "Side",
  11597. image: {
  11598. source: "./media/characters/odyssey/side.svg",
  11599. extra: 1847/1619,
  11600. bottom: 47/1894
  11601. }
  11602. },
  11603. lounging: {
  11604. height: math.unit(1.464, "feet"),
  11605. weight: math.unit(120, "lb"),
  11606. name: "Lounging",
  11607. image: {
  11608. source: "./media/characters/odyssey/lounging.svg",
  11609. extra: 1235/837,
  11610. bottom: 551/1786
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(5 + 4 / 12, "feet")
  11618. },
  11619. {
  11620. name: "Macro",
  11621. height: math.unit(1, "km")
  11622. },
  11623. {
  11624. name: "Megamacro",
  11625. height: math.unit(3000, "km")
  11626. },
  11627. {
  11628. name: "Gigamacro",
  11629. height: math.unit(1, "AU"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Omniversal",
  11634. height: math.unit(100e14, "lightyears")
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11640. {
  11641. front: {
  11642. height: math.unit(5 + 10/12, "feet"),
  11643. name: "Front",
  11644. image: {
  11645. source: "./media/characters/mekuto/front.svg",
  11646. extra: 875/835,
  11647. bottom: 46/921
  11648. }
  11649. },
  11650. },
  11651. [
  11652. {
  11653. name: "Minimicro",
  11654. height: math.unit(0.2, "inches")
  11655. },
  11656. {
  11657. name: "Micro",
  11658. height: math.unit(1.5, "inches")
  11659. },
  11660. {
  11661. name: "Normal",
  11662. height: math.unit(5 + 10 / 12, "feet"),
  11663. default: true
  11664. },
  11665. {
  11666. name: "Minimacro",
  11667. height: math.unit(17 + 9 / 12, "feet")
  11668. },
  11669. {
  11670. name: "Macro",
  11671. height: math.unit(177.5, "feet")
  11672. },
  11673. {
  11674. name: "Megamacro",
  11675. height: math.unit(152, "miles")
  11676. },
  11677. ]
  11678. ))
  11679. characterMakers.push(() => makeCharacter(
  11680. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11681. {
  11682. front: {
  11683. height: math.unit(6.5, "inches"),
  11684. weight: math.unit(13, "oz"),
  11685. name: "Front",
  11686. image: {
  11687. source: "./media/characters/dafydd-tomos/front.svg",
  11688. extra: 2990 / 2603,
  11689. bottom: 0.03
  11690. }
  11691. },
  11692. },
  11693. [
  11694. {
  11695. name: "Micro",
  11696. height: math.unit(6.5, "inches"),
  11697. default: true
  11698. },
  11699. ]
  11700. ))
  11701. characterMakers.push(() => makeCharacter(
  11702. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11703. {
  11704. front: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(150, "lb"),
  11707. name: "Front",
  11708. image: {
  11709. source: "./media/characters/splinter/front.svg",
  11710. extra: 2990 / 2882,
  11711. bottom: 0.04
  11712. }
  11713. },
  11714. back: {
  11715. height: math.unit(6, "feet"),
  11716. weight: math.unit(150, "lb"),
  11717. name: "Back",
  11718. image: {
  11719. source: "./media/characters/splinter/back.svg",
  11720. extra: 2990 / 2882,
  11721. bottom: 0.04
  11722. }
  11723. },
  11724. },
  11725. [
  11726. {
  11727. name: "Normal",
  11728. height: math.unit(6, "feet")
  11729. },
  11730. {
  11731. name: "Macro",
  11732. height: math.unit(230, "meters"),
  11733. default: true
  11734. },
  11735. ]
  11736. ))
  11737. characterMakers.push(() => makeCharacter(
  11738. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11739. {
  11740. front: {
  11741. height: math.unit(4 + 10 / 12, "feet"),
  11742. weight: math.unit(480, "lb"),
  11743. name: "Front",
  11744. image: {
  11745. source: "./media/characters/snow-gabumon/front.svg",
  11746. extra: 1140 / 963,
  11747. bottom: 0.058
  11748. }
  11749. },
  11750. back: {
  11751. height: math.unit(4 + 10 / 12, "feet"),
  11752. weight: math.unit(480, "lb"),
  11753. name: "Back",
  11754. image: {
  11755. source: "./media/characters/snow-gabumon/back.svg",
  11756. extra: 1115 / 962,
  11757. bottom: 0.041
  11758. }
  11759. },
  11760. frontUndresed: {
  11761. height: math.unit(4 + 10 / 12, "feet"),
  11762. weight: math.unit(480, "lb"),
  11763. name: "Front (Undressed)",
  11764. image: {
  11765. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11766. extra: 1061 / 960,
  11767. bottom: 0.045
  11768. }
  11769. },
  11770. },
  11771. [
  11772. {
  11773. name: "Micro",
  11774. height: math.unit(1, "inch")
  11775. },
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(4 + 10 / 12, "feet"),
  11779. default: true
  11780. },
  11781. {
  11782. name: "Macro",
  11783. height: math.unit(200, "feet")
  11784. },
  11785. {
  11786. name: "Megamacro",
  11787. height: math.unit(120, "miles")
  11788. },
  11789. {
  11790. name: "Gigamacro",
  11791. height: math.unit(9800, "miles")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11797. {
  11798. front: {
  11799. height: math.unit(1.7, "meters"),
  11800. weight: math.unit(140, "lb"),
  11801. name: "Front",
  11802. image: {
  11803. source: "./media/characters/moody/front.svg",
  11804. extra: 3226 / 3007,
  11805. bottom: 0.087
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Micro",
  11812. height: math.unit(1, "mm")
  11813. },
  11814. {
  11815. name: "Normal",
  11816. height: math.unit(1.7, "meters"),
  11817. default: true
  11818. },
  11819. {
  11820. name: "Macro",
  11821. height: math.unit(80, "meters")
  11822. },
  11823. {
  11824. name: "Macro+",
  11825. height: math.unit(500, "meters")
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(6, "feet"),
  11834. weight: math.unit(150, "lb"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/zyas/front.svg",
  11838. extra: 1180 / 1120,
  11839. bottom: 0.045
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Normal",
  11846. height: math.unit(10, "feet"),
  11847. default: true
  11848. },
  11849. {
  11850. name: "Macro",
  11851. height: math.unit(500, "feet")
  11852. },
  11853. {
  11854. name: "Megamacro",
  11855. height: math.unit(5, "miles")
  11856. },
  11857. {
  11858. name: "Teramacro",
  11859. height: math.unit(150000, "miles")
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(150, "lb"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/cuon/front.svg",
  11872. extra: 1390 / 1320,
  11873. bottom: 0.008
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Micro",
  11880. height: math.unit(3, "inches")
  11881. },
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(18 + 9 / 12, "feet"),
  11885. default: true
  11886. },
  11887. {
  11888. name: "Macro",
  11889. height: math.unit(360, "feet")
  11890. },
  11891. {
  11892. name: "Megamacro",
  11893. height: math.unit(360, "miles")
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11899. {
  11900. front: {
  11901. height: math.unit(2.4, "meters"),
  11902. weight: math.unit(70, "kg"),
  11903. name: "Front",
  11904. image: {
  11905. source: "./media/characters/nyanuxk/front.svg",
  11906. extra: 1172 / 1084,
  11907. bottom: 0.065
  11908. }
  11909. },
  11910. side: {
  11911. height: math.unit(2.4, "meters"),
  11912. weight: math.unit(70, "kg"),
  11913. name: "Side",
  11914. image: {
  11915. source: "./media/characters/nyanuxk/side.svg",
  11916. extra: 1190 / 1132,
  11917. bottom: 0.007
  11918. }
  11919. },
  11920. back: {
  11921. height: math.unit(2.4, "meters"),
  11922. weight: math.unit(70, "kg"),
  11923. name: "Back",
  11924. image: {
  11925. source: "./media/characters/nyanuxk/back.svg",
  11926. extra: 1200 / 1141,
  11927. bottom: 0.015
  11928. }
  11929. },
  11930. foot: {
  11931. height: math.unit(0.52, "meters"),
  11932. name: "Foot",
  11933. image: {
  11934. source: "./media/characters/nyanuxk/foot.svg"
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Micro",
  11941. height: math.unit(2, "cm")
  11942. },
  11943. {
  11944. name: "Normal",
  11945. height: math.unit(2.4, "meters"),
  11946. default: true
  11947. },
  11948. {
  11949. name: "Smaller Macro",
  11950. height: math.unit(120, "meters")
  11951. },
  11952. {
  11953. name: "Bigger Macro",
  11954. height: math.unit(1.2, "km")
  11955. },
  11956. {
  11957. name: "Megamacro",
  11958. height: math.unit(15, "kilometers")
  11959. },
  11960. {
  11961. name: "Gigamacro",
  11962. height: math.unit(2000, "km")
  11963. },
  11964. {
  11965. name: "Teramacro",
  11966. height: math.unit(500000, "km")
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11972. {
  11973. side: {
  11974. height: math.unit(6, "feet"),
  11975. name: "Side",
  11976. image: {
  11977. source: "./media/characters/ailbhe/side.svg",
  11978. extra: 757 / 464,
  11979. bottom: 0.041
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Normal",
  11986. height: math.unit(1.07, "meters"),
  11987. default: true
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(120, "kg"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/zevulfius/front.svg",
  12000. extra: 965 / 903
  12001. }
  12002. },
  12003. side: {
  12004. height: math.unit(6, "feet"),
  12005. weight: math.unit(120, "kg"),
  12006. name: "Side",
  12007. image: {
  12008. source: "./media/characters/zevulfius/side.svg",
  12009. extra: 939 / 900
  12010. }
  12011. },
  12012. back: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(120, "kg"),
  12015. name: "Back",
  12016. image: {
  12017. source: "./media/characters/zevulfius/back.svg",
  12018. extra: 918 / 854,
  12019. bottom: 0.005
  12020. }
  12021. },
  12022. foot: {
  12023. height: math.unit(6 / 3.72, "feet"),
  12024. name: "Foot",
  12025. image: {
  12026. source: "./media/characters/zevulfius/foot.svg"
  12027. }
  12028. },
  12029. },
  12030. [
  12031. {
  12032. name: "Macro",
  12033. height: math.unit(750, "meters")
  12034. },
  12035. {
  12036. name: "Megamacro",
  12037. height: math.unit(20, "km"),
  12038. default: true
  12039. },
  12040. {
  12041. name: "Gigamacro",
  12042. height: math.unit(2000, "km")
  12043. },
  12044. {
  12045. name: "Teramacro",
  12046. height: math.unit(250000, "km")
  12047. },
  12048. ]
  12049. ))
  12050. characterMakers.push(() => makeCharacter(
  12051. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12052. {
  12053. front: {
  12054. height: math.unit(100, "feet"),
  12055. weight: math.unit(350, "kg"),
  12056. name: "Front",
  12057. image: {
  12058. source: "./media/characters/rikes/front.svg",
  12059. extra: 1565 / 1483,
  12060. bottom: 0.017
  12061. }
  12062. },
  12063. },
  12064. [
  12065. {
  12066. name: "Macro",
  12067. height: math.unit(100, "feet"),
  12068. default: true
  12069. },
  12070. ]
  12071. ))
  12072. characterMakers.push(() => makeCharacter(
  12073. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12074. {
  12075. front: {
  12076. height: math.unit(8, "feet"),
  12077. weight: math.unit(356, "lb"),
  12078. name: "Front",
  12079. image: {
  12080. source: "./media/characters/adam-silver-mane/front.svg",
  12081. extra: 1036/937,
  12082. bottom: 63/1099
  12083. }
  12084. },
  12085. side: {
  12086. height: math.unit(8, "feet"),
  12087. weight: math.unit(356, "lb"),
  12088. name: "Side",
  12089. image: {
  12090. source: "./media/characters/adam-silver-mane/side.svg",
  12091. extra: 997/901,
  12092. bottom: 59/1056
  12093. }
  12094. },
  12095. frontNsfw: {
  12096. height: math.unit(8, "feet"),
  12097. weight: math.unit(356, "lb"),
  12098. name: "Front (NSFW)",
  12099. image: {
  12100. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12101. extra: 1036/937,
  12102. bottom: 63/1099
  12103. }
  12104. },
  12105. sideNsfw: {
  12106. height: math.unit(8, "feet"),
  12107. weight: math.unit(356, "lb"),
  12108. name: "Side (NSFW)",
  12109. image: {
  12110. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12111. extra: 997/901,
  12112. bottom: 59/1056
  12113. }
  12114. },
  12115. dick: {
  12116. height: math.unit(2.1, "feet"),
  12117. name: "Dick",
  12118. image: {
  12119. source: "./media/characters/adam-silver-mane/dick.svg"
  12120. }
  12121. },
  12122. taur: {
  12123. height: math.unit(16, "feet"),
  12124. weight: math.unit(1500, "kg"),
  12125. name: "Taur",
  12126. image: {
  12127. source: "./media/characters/adam-silver-mane/taur.svg",
  12128. extra: 1713 / 1571,
  12129. bottom: 0.01
  12130. }
  12131. },
  12132. },
  12133. [
  12134. {
  12135. name: "Normal",
  12136. height: math.unit(8, "feet")
  12137. },
  12138. {
  12139. name: "Minimacro",
  12140. height: math.unit(80, "feet")
  12141. },
  12142. {
  12143. name: "MDA",
  12144. height: math.unit(80, "meters")
  12145. },
  12146. {
  12147. name: "Macro",
  12148. height: math.unit(800, "feet"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Megamacro",
  12153. height: math.unit(8000, "feet")
  12154. },
  12155. {
  12156. name: "Gigamacro",
  12157. height: math.unit(800, "miles")
  12158. },
  12159. {
  12160. name: "Teramacro",
  12161. height: math.unit(80000, "miles")
  12162. },
  12163. {
  12164. name: "Celestial",
  12165. height: math.unit(8e6, "miles")
  12166. },
  12167. {
  12168. name: "Star Dragon",
  12169. height: math.unit(800000, "parsecs")
  12170. },
  12171. {
  12172. name: "Godly",
  12173. height: math.unit(800, "teraparsecs")
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12179. {
  12180. front: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(150, "lb"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/ky'owin/front.svg",
  12186. extra: 3862/3053,
  12187. bottom: 74/3936
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(6 + 8 / 12, "feet")
  12195. },
  12196. {
  12197. name: "Large",
  12198. height: math.unit(68, "feet")
  12199. },
  12200. {
  12201. name: "Macro",
  12202. height: math.unit(132, "feet")
  12203. },
  12204. {
  12205. name: "Macro+",
  12206. height: math.unit(340, "feet")
  12207. },
  12208. {
  12209. name: "Macro++",
  12210. height: math.unit(680, "feet"),
  12211. default: true
  12212. },
  12213. {
  12214. name: "Megamacro",
  12215. height: math.unit(1, "mile")
  12216. },
  12217. {
  12218. name: "Megamacro+",
  12219. height: math.unit(10, "miles")
  12220. },
  12221. ]
  12222. ))
  12223. characterMakers.push(() => makeCharacter(
  12224. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12225. {
  12226. front: {
  12227. height: math.unit(4, "feet"),
  12228. weight: math.unit(50, "lb"),
  12229. name: "Front",
  12230. image: {
  12231. source: "./media/characters/mal/front.svg",
  12232. extra: 785 / 724,
  12233. bottom: 0.07
  12234. }
  12235. },
  12236. },
  12237. [
  12238. {
  12239. name: "Micro",
  12240. height: math.unit(4, "inches")
  12241. },
  12242. {
  12243. name: "Normal",
  12244. height: math.unit(4, "feet"),
  12245. default: true
  12246. },
  12247. {
  12248. name: "Macro",
  12249. height: math.unit(200, "feet")
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(150, "lb"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/jordan-deware/front.svg",
  12262. extra: 1191 / 1012
  12263. }
  12264. },
  12265. },
  12266. [
  12267. {
  12268. name: "Nano",
  12269. height: math.unit(0.01, "mm")
  12270. },
  12271. {
  12272. name: "Minimicro",
  12273. height: math.unit(1, "mm")
  12274. },
  12275. {
  12276. name: "Micro",
  12277. height: math.unit(0.5, "inches")
  12278. },
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(4, "feet"),
  12282. default: true
  12283. },
  12284. {
  12285. name: "Minimacro",
  12286. height: math.unit(40, "meters")
  12287. },
  12288. {
  12289. name: "Small Macro",
  12290. height: math.unit(400, "meters")
  12291. },
  12292. {
  12293. name: "Macro",
  12294. height: math.unit(4, "miles")
  12295. },
  12296. {
  12297. name: "Megamacro",
  12298. height: math.unit(40, "miles")
  12299. },
  12300. {
  12301. name: "Megamacro+",
  12302. height: math.unit(400, "miles")
  12303. },
  12304. {
  12305. name: "Gigamacro",
  12306. height: math.unit(400000, "miles")
  12307. },
  12308. ]
  12309. ))
  12310. characterMakers.push(() => makeCharacter(
  12311. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12312. {
  12313. side: {
  12314. height: math.unit(6, "feet"),
  12315. weight: math.unit(150, "lb"),
  12316. name: "Side",
  12317. image: {
  12318. source: "./media/characters/kimiko/side.svg",
  12319. extra: 600 / 358
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Normal",
  12326. height: math.unit(15, "feet"),
  12327. default: true
  12328. },
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(220, "feet")
  12332. },
  12333. {
  12334. name: "Macro+",
  12335. height: math.unit(1450, "feet")
  12336. },
  12337. {
  12338. name: "Megamacro",
  12339. height: math.unit(11500, "feet")
  12340. },
  12341. {
  12342. name: "Gigamacro",
  12343. height: math.unit(9500, "miles")
  12344. },
  12345. {
  12346. name: "Teramacro",
  12347. height: math.unit(2208005005, "miles")
  12348. },
  12349. {
  12350. name: "Examacro",
  12351. height: math.unit(2750, "parsecs")
  12352. },
  12353. {
  12354. name: "Zettamacro",
  12355. height: math.unit(101500, "parsecs")
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12361. {
  12362. front: {
  12363. height: math.unit(6, "feet"),
  12364. weight: math.unit(70, "kg"),
  12365. name: "Front",
  12366. image: {
  12367. source: "./media/characters/andrew-sleepy/front.svg"
  12368. }
  12369. },
  12370. side: {
  12371. height: math.unit(6, "feet"),
  12372. weight: math.unit(70, "kg"),
  12373. name: "Side",
  12374. image: {
  12375. source: "./media/characters/andrew-sleepy/side.svg"
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Micro",
  12382. height: math.unit(1, "mm"),
  12383. default: true
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12389. {
  12390. front: {
  12391. height: math.unit(6, "feet"),
  12392. weight: math.unit(150, "lb"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/judio/front.svg",
  12396. extra: 1258 / 1110
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Normal",
  12403. height: math.unit(5 + 6 / 12, "feet")
  12404. },
  12405. {
  12406. name: "Macro",
  12407. height: math.unit(1000, "feet"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Megamacro",
  12412. height: math.unit(10, "miles")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12418. {
  12419. frontDressed: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(68, "kg"),
  12422. name: "Front (Dressed)",
  12423. image: {
  12424. source: "./media/characters/nomaxice/front-dressed.svg",
  12425. extra: 1137/824,
  12426. bottom: 74/1211
  12427. }
  12428. },
  12429. frontShorts: {
  12430. height: math.unit(6, "feet"),
  12431. weight: math.unit(68, "kg"),
  12432. name: "Front (Shorts)",
  12433. image: {
  12434. source: "./media/characters/nomaxice/front-shorts.svg",
  12435. extra: 1137/824,
  12436. bottom: 74/1211
  12437. }
  12438. },
  12439. back: {
  12440. height: math.unit(6, "feet"),
  12441. weight: math.unit(68, "kg"),
  12442. name: "Back",
  12443. image: {
  12444. source: "./media/characters/nomaxice/back.svg",
  12445. extra: 822/786,
  12446. bottom: 39/861
  12447. }
  12448. },
  12449. hand: {
  12450. height: math.unit(0.565, "feet"),
  12451. name: "Hand",
  12452. image: {
  12453. source: "./media/characters/nomaxice/hand.svg"
  12454. }
  12455. },
  12456. foot: {
  12457. height: math.unit(1, "feet"),
  12458. name: "Foot",
  12459. image: {
  12460. source: "./media/characters/nomaxice/foot.svg"
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Micro",
  12467. height: math.unit(8, "cm")
  12468. },
  12469. {
  12470. name: "Norm",
  12471. height: math.unit(1.82, "m")
  12472. },
  12473. {
  12474. name: "Norm+",
  12475. height: math.unit(8.8, "feet"),
  12476. default: true
  12477. },
  12478. {
  12479. name: "Big",
  12480. height: math.unit(8, "meters")
  12481. },
  12482. {
  12483. name: "Macro",
  12484. height: math.unit(18, "meters")
  12485. },
  12486. {
  12487. name: "Macro+",
  12488. height: math.unit(88, "meters")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(12, "feet"),
  12497. weight: math.unit(1.5, "tons"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/dydros/front.svg",
  12501. extra: 863 / 800,
  12502. bottom: 0.015
  12503. }
  12504. },
  12505. back: {
  12506. height: math.unit(12, "feet"),
  12507. weight: math.unit(1.5, "tons"),
  12508. name: "Back",
  12509. image: {
  12510. source: "./media/characters/dydros/back.svg",
  12511. extra: 900 / 843,
  12512. bottom: 0.005
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(12, "feet"),
  12520. default: true
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12526. {
  12527. front: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(100, "kg"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/riggi/front.svg",
  12533. extra: 5787 / 5303
  12534. }
  12535. },
  12536. hyper: {
  12537. height: math.unit(6 * 5 / 3, "feet"),
  12538. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12539. name: "Hyper",
  12540. image: {
  12541. source: "./media/characters/riggi/hyper.svg",
  12542. extra: 3595 / 3485
  12543. }
  12544. },
  12545. },
  12546. [
  12547. {
  12548. name: "Small Macro",
  12549. height: math.unit(50, "feet")
  12550. },
  12551. {
  12552. name: "Default",
  12553. height: math.unit(200, "feet"),
  12554. default: true
  12555. },
  12556. {
  12557. name: "Loom",
  12558. height: math.unit(10000, "feet")
  12559. },
  12560. {
  12561. name: "Cruising Altitude",
  12562. height: math.unit(30000, "feet")
  12563. },
  12564. {
  12565. name: "Megamacro",
  12566. height: math.unit(100, "miles")
  12567. },
  12568. {
  12569. name: "Continent Sized",
  12570. height: math.unit(2800, "miles")
  12571. },
  12572. {
  12573. name: "Earth Sized",
  12574. height: math.unit(8000, "miles")
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12580. {
  12581. front: {
  12582. height: math.unit(6, "feet"),
  12583. weight: math.unit(250, "lb"),
  12584. name: "Front",
  12585. image: {
  12586. source: "./media/characters/alexi/front.svg",
  12587. extra: 3483 / 3291,
  12588. bottom: 0.04
  12589. }
  12590. },
  12591. back: {
  12592. height: math.unit(6, "feet"),
  12593. weight: math.unit(250, "lb"),
  12594. name: "Back",
  12595. image: {
  12596. source: "./media/characters/alexi/back.svg",
  12597. extra: 3533 / 3356,
  12598. bottom: 0.021
  12599. }
  12600. },
  12601. frontTransforming: {
  12602. height: math.unit(8.58, "feet"),
  12603. weight: math.unit(1300, "lb"),
  12604. name: "Transforming",
  12605. image: {
  12606. source: "./media/characters/alexi/front-transforming.svg",
  12607. extra: 437 / 409,
  12608. bottom: 19 / 458.66
  12609. }
  12610. },
  12611. frontTransformed: {
  12612. height: math.unit(12.5, "feet"),
  12613. weight: math.unit(4000, "lb"),
  12614. name: "Transformed",
  12615. image: {
  12616. source: "./media/characters/alexi/front-transformed.svg",
  12617. extra: 639 / 614,
  12618. bottom: 30.55 / 671
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(14, "feet"),
  12626. default: true
  12627. },
  12628. {
  12629. name: "Minimacro",
  12630. height: math.unit(30, "meters")
  12631. },
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(500, "meters")
  12635. },
  12636. {
  12637. name: "Megamacro",
  12638. height: math.unit(9000, "km")
  12639. },
  12640. {
  12641. name: "Teramacro",
  12642. height: math.unit(384000, "km")
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(150, "lb"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/kayroo/front.svg",
  12655. extra: 1153 / 1038,
  12656. bottom: 0.06
  12657. }
  12658. },
  12659. foot: {
  12660. height: math.unit(6, "feet"),
  12661. weight: math.unit(150, "lb"),
  12662. name: "Foot",
  12663. image: {
  12664. source: "./media/characters/kayroo/foot.svg"
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(8, "feet"),
  12672. default: true
  12673. },
  12674. {
  12675. name: "Minimacro",
  12676. height: math.unit(250, "feet")
  12677. },
  12678. {
  12679. name: "Macro",
  12680. height: math.unit(2800, "feet")
  12681. },
  12682. {
  12683. name: "Megamacro",
  12684. height: math.unit(5200, "feet")
  12685. },
  12686. {
  12687. name: "Gigamacro",
  12688. height: math.unit(27000, "feet")
  12689. },
  12690. {
  12691. name: "Omega",
  12692. height: math.unit(45000, "feet")
  12693. },
  12694. ]
  12695. ))
  12696. characterMakers.push(() => makeCharacter(
  12697. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12698. {
  12699. front: {
  12700. height: math.unit(18, "feet"),
  12701. weight: math.unit(5800, "lb"),
  12702. name: "Front",
  12703. image: {
  12704. source: "./media/characters/rhys/front.svg",
  12705. extra: 3386 / 3090,
  12706. bottom: 0.07
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Normal",
  12713. height: math.unit(18, "feet"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Working Size",
  12718. height: math.unit(200, "feet")
  12719. },
  12720. {
  12721. name: "Demolition Size",
  12722. height: math.unit(2000, "feet")
  12723. },
  12724. {
  12725. name: "Maximum Licensed Size",
  12726. height: math.unit(5, "miles")
  12727. },
  12728. {
  12729. name: "Maximum Observed Size",
  12730. height: math.unit(10, "yottameters")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(6, "feet"),
  12739. weight: math.unit(250, "lb"),
  12740. name: "Front",
  12741. image: {
  12742. source: "./media/characters/toto/front.svg",
  12743. extra: 527 / 479,
  12744. bottom: 0.05
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Micro",
  12751. height: math.unit(3, "feet")
  12752. },
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(10, "feet")
  12756. },
  12757. {
  12758. name: "Macro",
  12759. height: math.unit(150, "feet"),
  12760. default: true
  12761. },
  12762. {
  12763. name: "Megamacro",
  12764. height: math.unit(1200, "feet")
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "King", species: ["lion"], tags: ["anthro"] },
  12770. {
  12771. back: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(150, "lb"),
  12774. name: "Back",
  12775. image: {
  12776. source: "./media/characters/king/back.svg"
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Micro",
  12783. height: math.unit(2, "inches")
  12784. },
  12785. {
  12786. name: "Normal",
  12787. height: math.unit(8, "feet")
  12788. },
  12789. {
  12790. name: "Macro",
  12791. height: math.unit(200, "feet"),
  12792. default: true
  12793. },
  12794. {
  12795. name: "Megamacro",
  12796. height: math.unit(50, "miles")
  12797. },
  12798. ]
  12799. ))
  12800. characterMakers.push(() => makeCharacter(
  12801. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12802. {
  12803. front: {
  12804. height: math.unit(11, "feet"),
  12805. weight: math.unit(1400, "lb"),
  12806. name: "Front",
  12807. image: {
  12808. source: "./media/characters/cordite/front.svg",
  12809. extra: 1919/1827,
  12810. bottom: 40/1959
  12811. }
  12812. },
  12813. side: {
  12814. height: math.unit(11, "feet"),
  12815. weight: math.unit(1400, "lb"),
  12816. name: "Side",
  12817. image: {
  12818. source: "./media/characters/cordite/side.svg",
  12819. extra: 1908/1793,
  12820. bottom: 38/1946
  12821. }
  12822. },
  12823. back: {
  12824. height: math.unit(11, "feet"),
  12825. weight: math.unit(1400, "lb"),
  12826. name: "Back",
  12827. image: {
  12828. source: "./media/characters/cordite/back.svg",
  12829. extra: 1938/1837,
  12830. bottom: 10/1948
  12831. }
  12832. },
  12833. feral: {
  12834. height: math.unit(2, "feet"),
  12835. weight: math.unit(90, "lb"),
  12836. name: "Feral",
  12837. image: {
  12838. source: "./media/characters/cordite/feral.svg",
  12839. extra: 1260 / 755,
  12840. bottom: 0.05
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Normal",
  12847. height: math.unit(11, "feet"),
  12848. default: true
  12849. },
  12850. ]
  12851. ))
  12852. characterMakers.push(() => makeCharacter(
  12853. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12854. {
  12855. front: {
  12856. height: math.unit(6, "feet"),
  12857. weight: math.unit(150, "lb"),
  12858. name: "Front",
  12859. image: {
  12860. source: "./media/characters/pianostrong/front.svg",
  12861. extra: 6577 / 6254,
  12862. bottom: 0.02
  12863. }
  12864. },
  12865. side: {
  12866. height: math.unit(6, "feet"),
  12867. weight: math.unit(150, "lb"),
  12868. name: "Side",
  12869. image: {
  12870. source: "./media/characters/pianostrong/side.svg",
  12871. extra: 6106 / 5730
  12872. }
  12873. },
  12874. back: {
  12875. height: math.unit(6, "feet"),
  12876. weight: math.unit(150, "lb"),
  12877. name: "Back",
  12878. image: {
  12879. source: "./media/characters/pianostrong/back.svg",
  12880. extra: 6085 / 5733,
  12881. bottom: 0.01
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Macro",
  12888. height: math.unit(100, "feet")
  12889. },
  12890. {
  12891. name: "Macro+",
  12892. height: math.unit(300, "feet"),
  12893. default: true
  12894. },
  12895. {
  12896. name: "Macro++",
  12897. height: math.unit(1000, "feet")
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(150, "lb"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/kona/front.svg",
  12910. extra: 2960 / 2629,
  12911. bottom: 0.005
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Normal",
  12918. height: math.unit(11 + 8 / 12, "feet")
  12919. },
  12920. {
  12921. name: "Macro",
  12922. height: math.unit(850, "feet"),
  12923. default: true
  12924. },
  12925. {
  12926. name: "Macro+",
  12927. height: math.unit(1.5, "km"),
  12928. default: true
  12929. },
  12930. {
  12931. name: "Megamacro",
  12932. height: math.unit(80, "miles")
  12933. },
  12934. {
  12935. name: "Gigamacro",
  12936. height: math.unit(3500, "miles")
  12937. },
  12938. ]
  12939. ))
  12940. characterMakers.push(() => makeCharacter(
  12941. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12942. {
  12943. side: {
  12944. height: math.unit(1.9, "meters"),
  12945. weight: math.unit(326, "kg"),
  12946. name: "Side",
  12947. image: {
  12948. source: "./media/characters/levi/side.svg",
  12949. extra: 1704 / 1334,
  12950. bottom: 0.02
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Normal",
  12957. height: math.unit(1.9, "meters"),
  12958. default: true
  12959. },
  12960. {
  12961. name: "Macro",
  12962. height: math.unit(20, "meters")
  12963. },
  12964. {
  12965. name: "Macro+",
  12966. height: math.unit(200, "meters")
  12967. },
  12968. {
  12969. name: "Megamacro",
  12970. height: math.unit(2, "km")
  12971. },
  12972. {
  12973. name: "Megamacro+",
  12974. height: math.unit(20, "km")
  12975. },
  12976. {
  12977. name: "Gigamacro",
  12978. height: math.unit(2500, "km")
  12979. },
  12980. {
  12981. name: "Gigamacro+",
  12982. height: math.unit(120000, "km")
  12983. },
  12984. {
  12985. name: "Teramacro",
  12986. height: math.unit(7.77e6, "km")
  12987. },
  12988. ]
  12989. ))
  12990. characterMakers.push(() => makeCharacter(
  12991. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12992. {
  12993. front: {
  12994. height: math.unit(6 + 4/12, "feet"),
  12995. weight: math.unit(190, "lb"),
  12996. name: "Front",
  12997. image: {
  12998. source: "./media/characters/bmc/front.svg",
  12999. extra: 1626/1472,
  13000. bottom: 79/1705
  13001. }
  13002. },
  13003. back: {
  13004. height: math.unit(6 + 4/12, "feet"),
  13005. weight: math.unit(190, "lb"),
  13006. name: "Back",
  13007. image: {
  13008. source: "./media/characters/bmc/back.svg",
  13009. extra: 1640/1479,
  13010. bottom: 45/1685
  13011. }
  13012. },
  13013. frontArmor: {
  13014. height: math.unit(6 + 4/12, "feet"),
  13015. weight: math.unit(190, "lb"),
  13016. name: "Front-armor",
  13017. image: {
  13018. source: "./media/characters/bmc/front-armor.svg",
  13019. extra: 1538/1468,
  13020. bottom: 79/1617
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Human-sized",
  13027. height: math.unit(6 + 4 / 12, "feet")
  13028. },
  13029. {
  13030. name: "Interactive Size",
  13031. height: math.unit(25, "feet")
  13032. },
  13033. {
  13034. name: "Small",
  13035. height: math.unit(250, "feet")
  13036. },
  13037. {
  13038. name: "Normal",
  13039. height: math.unit(1250, "feet"),
  13040. default: true
  13041. },
  13042. {
  13043. name: "Good Day",
  13044. height: math.unit(88, "miles")
  13045. },
  13046. {
  13047. name: "Largest Measured Size",
  13048. height: math.unit(105.960, "galaxies")
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13054. {
  13055. front: {
  13056. height: math.unit(20, "feet"),
  13057. weight: math.unit(2016, "kg"),
  13058. name: "Front",
  13059. image: {
  13060. source: "./media/characters/sven-the-kaiju/front.svg",
  13061. extra: 1277/1250,
  13062. bottom: 35/1312
  13063. }
  13064. },
  13065. mouth: {
  13066. height: math.unit(1.85, "feet"),
  13067. name: "Mouth",
  13068. image: {
  13069. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Fairy",
  13076. height: math.unit(6, "inches")
  13077. },
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(20, "feet"),
  13081. default: true
  13082. },
  13083. {
  13084. name: "Rampage",
  13085. height: math.unit(200, "feet")
  13086. },
  13087. {
  13088. name: "Archfey Forest Guardian",
  13089. height: math.unit(1, "mile")
  13090. },
  13091. ]
  13092. ))
  13093. characterMakers.push(() => makeCharacter(
  13094. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13095. {
  13096. front: {
  13097. height: math.unit(4, "meters"),
  13098. weight: math.unit(2, "tons"),
  13099. name: "Front",
  13100. image: {
  13101. source: "./media/characters/marik/front.svg",
  13102. extra: 1057 / 1003,
  13103. bottom: 0.08
  13104. }
  13105. },
  13106. },
  13107. [
  13108. {
  13109. name: "Normal",
  13110. height: math.unit(4, "meters"),
  13111. default: true
  13112. },
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(20, "meters")
  13116. },
  13117. {
  13118. name: "Megamacro",
  13119. height: math.unit(50, "km")
  13120. },
  13121. {
  13122. name: "Gigamacro",
  13123. height: math.unit(100, "km")
  13124. },
  13125. {
  13126. name: "Alpha Macro",
  13127. height: math.unit(7.88e7, "yottameters")
  13128. },
  13129. ]
  13130. ))
  13131. characterMakers.push(() => makeCharacter(
  13132. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13133. {
  13134. front: {
  13135. height: math.unit(6, "feet"),
  13136. weight: math.unit(110, "lb"),
  13137. name: "Front",
  13138. image: {
  13139. source: "./media/characters/mel/front.svg",
  13140. extra: 736 / 617,
  13141. bottom: 0.017
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Pico",
  13148. height: math.unit(3, "pm")
  13149. },
  13150. {
  13151. name: "Nano",
  13152. height: math.unit(3, "nm")
  13153. },
  13154. {
  13155. name: "Micro",
  13156. height: math.unit(0.3, "mm"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Micro+",
  13161. height: math.unit(3, "mm")
  13162. },
  13163. {
  13164. name: "Normal",
  13165. height: math.unit(5 + 10.5 / 12, "feet")
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13171. {
  13172. kaiju: {
  13173. height: math.unit(1.75, "meters"),
  13174. weight: math.unit(55, "kg"),
  13175. name: "Kaiju",
  13176. image: {
  13177. source: "./media/characters/lykonous/kaiju.svg",
  13178. extra: 1055 / 946,
  13179. bottom: 0.135
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(2.5, "meters"),
  13187. default: true
  13188. },
  13189. {
  13190. name: "Kaiju Dragon",
  13191. height: math.unit(60, "meters")
  13192. },
  13193. {
  13194. name: "Mega Kaiju",
  13195. height: math.unit(120, "km")
  13196. },
  13197. {
  13198. name: "Giga Kaiju",
  13199. height: math.unit(200, "megameters")
  13200. },
  13201. {
  13202. name: "Terra Kaiju",
  13203. height: math.unit(400, "gigameters")
  13204. },
  13205. {
  13206. name: "Kaiju Dragon God",
  13207. height: math.unit(13000, "exaparsecs")
  13208. },
  13209. ]
  13210. ))
  13211. characterMakers.push(() => makeCharacter(
  13212. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13213. {
  13214. front: {
  13215. height: math.unit(6, "feet"),
  13216. weight: math.unit(150, "lb"),
  13217. name: "Front",
  13218. image: {
  13219. source: "./media/characters/blü/front.svg",
  13220. extra: 1883 / 1564,
  13221. bottom: 0.031
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Normal",
  13228. height: math.unit(13, "feet"),
  13229. default: true
  13230. },
  13231. {
  13232. name: "Big Boi",
  13233. height: math.unit(150, "meters")
  13234. },
  13235. {
  13236. name: "Mini Stomper",
  13237. height: math.unit(300, "meters")
  13238. },
  13239. {
  13240. name: "Macro",
  13241. height: math.unit(1000, "meters")
  13242. },
  13243. {
  13244. name: "Megamacro",
  13245. height: math.unit(11000, "meters")
  13246. },
  13247. {
  13248. name: "Gigamacro",
  13249. height: math.unit(11000, "km")
  13250. },
  13251. {
  13252. name: "Teramacro",
  13253. height: math.unit(420000, "km")
  13254. },
  13255. {
  13256. name: "Examacro",
  13257. height: math.unit(120, "parsecs")
  13258. },
  13259. {
  13260. name: "God Tho",
  13261. height: math.unit(98000000000, "parsecs")
  13262. },
  13263. ]
  13264. ))
  13265. characterMakers.push(() => makeCharacter(
  13266. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13267. {
  13268. taurFront: {
  13269. height: math.unit(6, "feet"),
  13270. weight: math.unit(200, "lb"),
  13271. name: "Taur (Front)",
  13272. image: {
  13273. source: "./media/characters/scales/taur-front.svg",
  13274. extra: 1,
  13275. bottom: 0.05
  13276. }
  13277. },
  13278. taurBack: {
  13279. height: math.unit(6, "feet"),
  13280. weight: math.unit(200, "lb"),
  13281. name: "Taur (Back)",
  13282. image: {
  13283. source: "./media/characters/scales/taur-back.svg",
  13284. extra: 1,
  13285. bottom: 0.08
  13286. }
  13287. },
  13288. anthro: {
  13289. height: math.unit(6 * 7 / 12, "feet"),
  13290. weight: math.unit(100, "lb"),
  13291. name: "Anthro",
  13292. image: {
  13293. source: "./media/characters/scales/anthro.svg",
  13294. extra: 1,
  13295. bottom: 0.06
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(12, "feet"),
  13303. default: true
  13304. },
  13305. ]
  13306. ))
  13307. characterMakers.push(() => makeCharacter(
  13308. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13309. {
  13310. front: {
  13311. height: math.unit(6, "feet"),
  13312. weight: math.unit(150, "lb"),
  13313. name: "Front",
  13314. image: {
  13315. source: "./media/characters/koragos/front.svg",
  13316. extra: 841 / 794,
  13317. bottom: 0.035
  13318. }
  13319. },
  13320. back: {
  13321. height: math.unit(6, "feet"),
  13322. weight: math.unit(150, "lb"),
  13323. name: "Back",
  13324. image: {
  13325. source: "./media/characters/koragos/back.svg",
  13326. extra: 841 / 810,
  13327. bottom: 0.022
  13328. }
  13329. },
  13330. },
  13331. [
  13332. {
  13333. name: "Normal",
  13334. height: math.unit(6 + 11 / 12, "feet"),
  13335. default: true
  13336. },
  13337. {
  13338. name: "Macro",
  13339. height: math.unit(490, "feet")
  13340. },
  13341. {
  13342. name: "Megamacro",
  13343. height: math.unit(10, "miles")
  13344. },
  13345. {
  13346. name: "Gigamacro",
  13347. height: math.unit(50, "miles")
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13353. {
  13354. front: {
  13355. height: math.unit(6, "feet"),
  13356. weight: math.unit(250, "lb"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/xylrem/front.svg",
  13360. extra: 3323 / 3050,
  13361. bottom: 0.065
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Micro",
  13368. height: math.unit(4, "feet")
  13369. },
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(16, "feet"),
  13373. default: true
  13374. },
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(2720, "feet")
  13378. },
  13379. {
  13380. name: "Megamacro",
  13381. height: math.unit(25000, "miles")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13387. {
  13388. front: {
  13389. height: math.unit(8, "feet"),
  13390. weight: math.unit(250, "kg"),
  13391. name: "Front",
  13392. image: {
  13393. source: "./media/characters/ikideru/front.svg",
  13394. extra: 930 / 870,
  13395. bottom: 0.087
  13396. }
  13397. },
  13398. back: {
  13399. height: math.unit(8, "feet"),
  13400. weight: math.unit(250, "kg"),
  13401. name: "Back",
  13402. image: {
  13403. source: "./media/characters/ikideru/back.svg",
  13404. extra: 919 / 852,
  13405. bottom: 0.055
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Rare",
  13412. height: math.unit(8, "feet"),
  13413. default: true
  13414. },
  13415. {
  13416. name: "Playful Loom",
  13417. height: math.unit(80, "feet")
  13418. },
  13419. {
  13420. name: "City Leaner",
  13421. height: math.unit(230, "feet")
  13422. },
  13423. {
  13424. name: "Megamacro",
  13425. height: math.unit(2500, "feet")
  13426. },
  13427. {
  13428. name: "Gigamacro",
  13429. height: math.unit(26400, "feet")
  13430. },
  13431. {
  13432. name: "Tectonic Shifter",
  13433. height: math.unit(1.7, "megameters")
  13434. },
  13435. {
  13436. name: "Planet Carer",
  13437. height: math.unit(21, "megameters")
  13438. },
  13439. {
  13440. name: "God",
  13441. height: math.unit(11157.22, "parsecs")
  13442. },
  13443. ]
  13444. ))
  13445. characterMakers.push(() => makeCharacter(
  13446. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13447. {
  13448. front: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(120, "lb"),
  13451. name: "Front",
  13452. image: {
  13453. source: "./media/characters/neo/front.svg"
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Micro",
  13460. height: math.unit(2, "inches"),
  13461. default: true
  13462. },
  13463. {
  13464. name: "Human Size",
  13465. height: math.unit(5 + 8 / 12, "feet")
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(13 + 10 / 12, "feet"),
  13474. weight: math.unit(5320, "lb"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/chauncey-chantz/front.svg",
  13478. extra: 1587 / 1435,
  13479. bottom: 0.02
  13480. }
  13481. },
  13482. },
  13483. [
  13484. {
  13485. name: "Normal",
  13486. height: math.unit(13 + 10 / 12, "feet"),
  13487. default: true
  13488. },
  13489. {
  13490. name: "Macro",
  13491. height: math.unit(45, "feet")
  13492. },
  13493. {
  13494. name: "Megamacro",
  13495. height: math.unit(250, "miles")
  13496. },
  13497. {
  13498. name: "Planetary",
  13499. height: math.unit(10000, "miles")
  13500. },
  13501. {
  13502. name: "Galactic",
  13503. height: math.unit(40000, "parsecs")
  13504. },
  13505. {
  13506. name: "Universal",
  13507. height: math.unit(1, "yottameter")
  13508. },
  13509. ]
  13510. ))
  13511. characterMakers.push(() => makeCharacter(
  13512. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13513. {
  13514. front: {
  13515. height: math.unit(6, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Front",
  13518. image: {
  13519. source: "./media/characters/epifox/front.svg",
  13520. extra: 1,
  13521. bottom: 0.075
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Micro",
  13528. height: math.unit(6, "inches")
  13529. },
  13530. {
  13531. name: "Normal",
  13532. height: math.unit(12, "feet"),
  13533. default: true
  13534. },
  13535. {
  13536. name: "Macro",
  13537. height: math.unit(3810, "feet")
  13538. },
  13539. {
  13540. name: "Megamacro",
  13541. height: math.unit(500, "miles")
  13542. },
  13543. ]
  13544. ))
  13545. characterMakers.push(() => makeCharacter(
  13546. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13547. {
  13548. front: {
  13549. height: math.unit(1.8796, "m"),
  13550. weight: math.unit(230, "lb"),
  13551. name: "Front",
  13552. image: {
  13553. source: "./media/characters/colin-t/front.svg",
  13554. extra: 1272 / 1193,
  13555. bottom: 0.07
  13556. }
  13557. },
  13558. },
  13559. [
  13560. {
  13561. name: "Micro",
  13562. height: math.unit(0.571, "meters")
  13563. },
  13564. {
  13565. name: "Normal",
  13566. height: math.unit(1.8796, "meters"),
  13567. default: true
  13568. },
  13569. {
  13570. name: "Tall",
  13571. height: math.unit(4, "meters")
  13572. },
  13573. {
  13574. name: "Macro",
  13575. height: math.unit(67.241, "meters")
  13576. },
  13577. {
  13578. name: "Megamacro",
  13579. height: math.unit(371.856, "meters")
  13580. },
  13581. {
  13582. name: "Planetary",
  13583. height: math.unit(12631.5689, "km")
  13584. },
  13585. ]
  13586. ))
  13587. characterMakers.push(() => makeCharacter(
  13588. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13589. {
  13590. front: {
  13591. height: math.unit(1.85, "meters"),
  13592. weight: math.unit(80, "kg"),
  13593. name: "Front",
  13594. image: {
  13595. source: "./media/characters/matvei/front.svg",
  13596. extra: 456/447,
  13597. bottom: 8/464
  13598. }
  13599. },
  13600. back: {
  13601. height: math.unit(1.85, "meters"),
  13602. weight: math.unit(80, "kg"),
  13603. name: "Back",
  13604. image: {
  13605. source: "./media/characters/matvei/back.svg",
  13606. extra: 434/427,
  13607. bottom: 11/445
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Normal",
  13614. height: math.unit(1.85, "meters"),
  13615. default: true
  13616. },
  13617. ]
  13618. ))
  13619. characterMakers.push(() => makeCharacter(
  13620. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13621. {
  13622. front: {
  13623. height: math.unit(5 + 9 / 12, "feet"),
  13624. weight: math.unit(70, "lb"),
  13625. name: "Front",
  13626. image: {
  13627. source: "./media/characters/quincy/front.svg",
  13628. extra: 3041 / 2751
  13629. }
  13630. },
  13631. back: {
  13632. height: math.unit(5 + 9 / 12, "feet"),
  13633. weight: math.unit(70, "lb"),
  13634. name: "Back",
  13635. image: {
  13636. source: "./media/characters/quincy/back.svg",
  13637. extra: 3041 / 2751
  13638. }
  13639. },
  13640. flying: {
  13641. height: math.unit(5 + 4 / 12, "feet"),
  13642. weight: math.unit(70, "lb"),
  13643. name: "Flying",
  13644. image: {
  13645. source: "./media/characters/quincy/flying.svg",
  13646. extra: 1044 / 930
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Micro",
  13653. height: math.unit(3, "cm")
  13654. },
  13655. {
  13656. name: "Normal",
  13657. height: math.unit(5 + 9 / 12, "feet")
  13658. },
  13659. {
  13660. name: "Macro",
  13661. height: math.unit(200, "meters"),
  13662. default: true
  13663. },
  13664. {
  13665. name: "Megamacro",
  13666. height: math.unit(1000, "meters")
  13667. },
  13668. ]
  13669. ))
  13670. characterMakers.push(() => makeCharacter(
  13671. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13672. {
  13673. front: {
  13674. height: math.unit(3 + 11/12, "feet"),
  13675. weight: math.unit(50, "lb"),
  13676. name: "Front",
  13677. image: {
  13678. source: "./media/characters/vanrel/front.svg",
  13679. extra: 1104/949,
  13680. bottom: 52/1156
  13681. }
  13682. },
  13683. back: {
  13684. height: math.unit(3 + 11/12, "feet"),
  13685. weight: math.unit(50, "lb"),
  13686. name: "Back",
  13687. image: {
  13688. source: "./media/characters/vanrel/back.svg",
  13689. extra: 1119/976,
  13690. bottom: 37/1156
  13691. }
  13692. },
  13693. tome: {
  13694. height: math.unit(1.35, "feet"),
  13695. weight: math.unit(10, "lb"),
  13696. name: "Vanrel's Tome",
  13697. rename: true,
  13698. image: {
  13699. source: "./media/characters/vanrel/tome.svg"
  13700. }
  13701. },
  13702. beans: {
  13703. height: math.unit(0.89, "feet"),
  13704. name: "Beans",
  13705. image: {
  13706. source: "./media/characters/vanrel/beans.svg"
  13707. }
  13708. },
  13709. },
  13710. [
  13711. {
  13712. name: "Normal",
  13713. height: math.unit(3 + 11/12, "feet"),
  13714. default: true
  13715. },
  13716. ]
  13717. ))
  13718. characterMakers.push(() => makeCharacter(
  13719. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13720. {
  13721. front: {
  13722. height: math.unit(7 + 5 / 12, "feet"),
  13723. name: "Front",
  13724. image: {
  13725. source: "./media/characters/kuiper-vanrel/front.svg",
  13726. extra: 1219/1169,
  13727. bottom: 69/1288
  13728. }
  13729. },
  13730. back: {
  13731. height: math.unit(7 + 5 / 12, "feet"),
  13732. name: "Back",
  13733. image: {
  13734. source: "./media/characters/kuiper-vanrel/back.svg",
  13735. extra: 1236/1193,
  13736. bottom: 27/1263
  13737. }
  13738. },
  13739. foot: {
  13740. height: math.unit(0.55, "meters"),
  13741. name: "Foot",
  13742. image: {
  13743. source: "./media/characters/kuiper-vanrel/foot.svg",
  13744. }
  13745. },
  13746. battle: {
  13747. height: math.unit(6.824, "feet"),
  13748. name: "Battle",
  13749. image: {
  13750. source: "./media/characters/kuiper-vanrel/battle.svg",
  13751. extra: 1466 / 1327,
  13752. bottom: 29 / 1492.5
  13753. }
  13754. },
  13755. meerkui: {
  13756. height: math.unit(18, "inches"),
  13757. name: "Meerkui",
  13758. image: {
  13759. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13760. extra: 1354/1289,
  13761. bottom: 69/1423
  13762. }
  13763. },
  13764. },
  13765. [
  13766. {
  13767. name: "Normal",
  13768. height: math.unit(7 + 5 / 12, "feet"),
  13769. default: true
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13775. {
  13776. front: {
  13777. height: math.unit(8 + 5 / 12, "feet"),
  13778. name: "Front",
  13779. image: {
  13780. source: "./media/characters/keset-vanrel/front.svg",
  13781. extra: 1231/1148,
  13782. bottom: 82/1313
  13783. }
  13784. },
  13785. back: {
  13786. height: math.unit(8 + 5 / 12, "feet"),
  13787. name: "Back",
  13788. image: {
  13789. source: "./media/characters/keset-vanrel/back.svg",
  13790. extra: 1240/1174,
  13791. bottom: 33/1273
  13792. }
  13793. },
  13794. hand: {
  13795. height: math.unit(0.6, "meters"),
  13796. name: "Hand",
  13797. image: {
  13798. source: "./media/characters/keset-vanrel/hand.svg"
  13799. }
  13800. },
  13801. foot: {
  13802. height: math.unit(0.94978, "meters"),
  13803. name: "Foot",
  13804. image: {
  13805. source: "./media/characters/keset-vanrel/foot.svg"
  13806. }
  13807. },
  13808. battle: {
  13809. height: math.unit(7.408, "feet"),
  13810. name: "Battle",
  13811. image: {
  13812. source: "./media/characters/keset-vanrel/battle.svg",
  13813. extra: 1890 / 1386,
  13814. bottom: 73.28 / 1970
  13815. }
  13816. },
  13817. },
  13818. [
  13819. {
  13820. name: "Normal",
  13821. height: math.unit(8 + 5 / 12, "feet"),
  13822. default: true
  13823. },
  13824. ]
  13825. ))
  13826. characterMakers.push(() => makeCharacter(
  13827. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13828. {
  13829. front: {
  13830. height: math.unit(6, "feet"),
  13831. weight: math.unit(150, "lb"),
  13832. name: "Front",
  13833. image: {
  13834. source: "./media/characters/neos/front.svg",
  13835. extra: 1696 / 992,
  13836. bottom: 0.14
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Normal",
  13843. height: math.unit(54, "cm"),
  13844. default: true
  13845. },
  13846. {
  13847. name: "Macro",
  13848. height: math.unit(100, "m")
  13849. },
  13850. {
  13851. name: "Megamacro",
  13852. height: math.unit(10, "km")
  13853. },
  13854. {
  13855. name: "Megamacro+",
  13856. height: math.unit(100, "km")
  13857. },
  13858. {
  13859. name: "Gigamacro",
  13860. height: math.unit(100, "Mm")
  13861. },
  13862. {
  13863. name: "Teramacro",
  13864. height: math.unit(100, "Gm")
  13865. },
  13866. {
  13867. name: "Examacro",
  13868. height: math.unit(100, "Em")
  13869. },
  13870. {
  13871. name: "Godly",
  13872. height: math.unit(10000, "Ym")
  13873. },
  13874. {
  13875. name: "Beyond Godly",
  13876. height: math.unit(25, "multiverses")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13882. {
  13883. fluide_tame: {
  13884. height: math.unit(5, "feet"),
  13885. name: "Tame",
  13886. image: {
  13887. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13888. extra: 1655/1574,
  13889. bottom: 231/1886
  13890. },
  13891. form: "fluide",
  13892. default: true
  13893. },
  13894. fluide_nude: {
  13895. height: math.unit(5, "feet"),
  13896. name: "Nude",
  13897. image: {
  13898. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13899. extra: 1655/1574,
  13900. bottom: 231/1886
  13901. },
  13902. form: "fluide",
  13903. },
  13904. male_tame: {
  13905. height: math.unit(5, "feet"),
  13906. name: "Tame",
  13907. image: {
  13908. source: "./media/characters/sammy-mouse/male-tame.svg",
  13909. extra: 1655/1574,
  13910. bottom: 231/1886
  13911. },
  13912. form: "male",
  13913. default: true
  13914. },
  13915. male_nude: {
  13916. height: math.unit(5, "feet"),
  13917. name: "Nude",
  13918. image: {
  13919. source: "./media/characters/sammy-mouse/male-nude.svg",
  13920. extra: 1655/1574,
  13921. bottom: 231/1886
  13922. },
  13923. form: "male",
  13924. },
  13925. female_nude: {
  13926. height: math.unit(5, "feet"),
  13927. name: "Nude",
  13928. image: {
  13929. source: "./media/characters/sammy-mouse/female-nude.svg",
  13930. extra: 1655/1574,
  13931. bottom: 231/1886
  13932. },
  13933. form: "female",
  13934. default: true
  13935. },
  13936. mouth: {
  13937. height: math.unit(0.32, "feet"),
  13938. name: "Mouth",
  13939. image: {
  13940. source: "./media/characters/sammy-mouse/mouth.svg"
  13941. },
  13942. allForms: true
  13943. },
  13944. paw: {
  13945. height: math.unit(0.42, "feet"),
  13946. name: "Paw",
  13947. image: {
  13948. source: "./media/characters/sammy-mouse/paw.svg"
  13949. },
  13950. allForms: true
  13951. },
  13952. },
  13953. [
  13954. {
  13955. name: "Micro",
  13956. height: math.unit(5, "inches"),
  13957. allForms: true
  13958. },
  13959. {
  13960. name: "Normal",
  13961. height: math.unit(5, "feet"),
  13962. default: true,
  13963. allForms: true
  13964. },
  13965. {
  13966. name: "Macro",
  13967. height: math.unit(60, "feet"),
  13968. allForms: true
  13969. },
  13970. ],
  13971. {
  13972. "fluide": {
  13973. name: "Fluide",
  13974. default: true
  13975. },
  13976. "male": {
  13977. name: "Male",
  13978. },
  13979. "female": {
  13980. name: "Female",
  13981. },
  13982. }
  13983. ))
  13984. characterMakers.push(() => makeCharacter(
  13985. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13986. {
  13987. front: {
  13988. height: math.unit(4, "feet"),
  13989. weight: math.unit(50, "lb"),
  13990. name: "Front",
  13991. image: {
  13992. source: "./media/characters/kole/front.svg",
  13993. extra: 1423 / 1303,
  13994. bottom: 0.025
  13995. }
  13996. },
  13997. back: {
  13998. height: math.unit(4, "feet"),
  13999. weight: math.unit(50, "lb"),
  14000. name: "Back",
  14001. image: {
  14002. source: "./media/characters/kole/back.svg",
  14003. extra: 1426 / 1280,
  14004. bottom: 0.02
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Normal",
  14011. height: math.unit(4, "feet"),
  14012. default: true
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14018. {
  14019. front: {
  14020. height: math.unit(2.5, "feet"),
  14021. weight: math.unit(32, "lb"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/rufran/front.svg",
  14025. extra: 1313/885,
  14026. bottom: 94/1407
  14027. }
  14028. },
  14029. side: {
  14030. height: math.unit(2.5, "feet"),
  14031. weight: math.unit(32, "lb"),
  14032. name: "Side",
  14033. image: {
  14034. source: "./media/characters/rufran/side.svg",
  14035. extra: 1109/852,
  14036. bottom: 118/1227
  14037. }
  14038. },
  14039. back: {
  14040. height: math.unit(2.5, "feet"),
  14041. weight: math.unit(32, "lb"),
  14042. name: "Back",
  14043. image: {
  14044. source: "./media/characters/rufran/back.svg",
  14045. extra: 1280/878,
  14046. bottom: 131/1411
  14047. }
  14048. },
  14049. mouth: {
  14050. height: math.unit(1.13, "feet"),
  14051. name: "Mouth",
  14052. image: {
  14053. source: "./media/characters/rufran/mouth.svg"
  14054. }
  14055. },
  14056. foot: {
  14057. height: math.unit(1.33, "feet"),
  14058. name: "Foot",
  14059. image: {
  14060. source: "./media/characters/rufran/foot.svg"
  14061. }
  14062. },
  14063. koboldFront: {
  14064. height: math.unit(2 + 6 / 12, "feet"),
  14065. weight: math.unit(20, "lb"),
  14066. name: "Front (Kobold)",
  14067. image: {
  14068. source: "./media/characters/rufran/kobold-front.svg",
  14069. extra: 2041 / 1839,
  14070. bottom: 0.055
  14071. }
  14072. },
  14073. koboldBack: {
  14074. height: math.unit(2 + 6 / 12, "feet"),
  14075. weight: math.unit(20, "lb"),
  14076. name: "Back (Kobold)",
  14077. image: {
  14078. source: "./media/characters/rufran/kobold-back.svg",
  14079. extra: 2054 / 1839,
  14080. bottom: 0.01
  14081. }
  14082. },
  14083. koboldHand: {
  14084. height: math.unit(0.2166, "meters"),
  14085. name: "Hand (Kobold)",
  14086. image: {
  14087. source: "./media/characters/rufran/kobold-hand.svg"
  14088. }
  14089. },
  14090. koboldFoot: {
  14091. height: math.unit(0.185, "meters"),
  14092. name: "Foot (Kobold)",
  14093. image: {
  14094. source: "./media/characters/rufran/kobold-foot.svg"
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Micro",
  14101. height: math.unit(1, "inch")
  14102. },
  14103. {
  14104. name: "Normal",
  14105. height: math.unit(2 + 6 / 12, "feet"),
  14106. default: true
  14107. },
  14108. {
  14109. name: "Big",
  14110. height: math.unit(60, "feet")
  14111. },
  14112. {
  14113. name: "Macro",
  14114. height: math.unit(325, "feet")
  14115. },
  14116. ]
  14117. ))
  14118. characterMakers.push(() => makeCharacter(
  14119. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14120. {
  14121. front: {
  14122. height: math.unit(0.3, "meters"),
  14123. weight: math.unit(3.5, "kg"),
  14124. name: "Front",
  14125. image: {
  14126. source: "./media/characters/chip/front.svg",
  14127. extra: 748 / 674
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Micro",
  14134. height: math.unit(1, "inch"),
  14135. default: true
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14141. {
  14142. side: {
  14143. height: math.unit(2.3, "meters"),
  14144. weight: math.unit(3500, "lb"),
  14145. name: "Side",
  14146. image: {
  14147. source: "./media/characters/torvid/side.svg",
  14148. extra: 1972 / 722,
  14149. bottom: 0.035
  14150. }
  14151. },
  14152. },
  14153. [
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(2.3, "meters"),
  14157. default: true
  14158. },
  14159. ]
  14160. ))
  14161. characterMakers.push(() => makeCharacter(
  14162. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14163. {
  14164. front: {
  14165. height: math.unit(2, "meters"),
  14166. weight: math.unit(150.5, "kg"),
  14167. name: "Front",
  14168. image: {
  14169. source: "./media/characters/susan/front.svg",
  14170. extra: 693 / 635,
  14171. bottom: 0.05
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Megamacro",
  14178. height: math.unit(505, "miles"),
  14179. default: true
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14185. {
  14186. front: {
  14187. height: math.unit(6, "feet"),
  14188. weight: math.unit(150, "lb"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/raindrops/front.svg",
  14192. extra: 2655 / 2461,
  14193. bottom: 49 / 2705
  14194. }
  14195. },
  14196. back: {
  14197. height: math.unit(6, "feet"),
  14198. weight: math.unit(150, "lb"),
  14199. name: "Back",
  14200. image: {
  14201. source: "./media/characters/raindrops/back.svg",
  14202. extra: 2574 / 2400,
  14203. bottom: 65 / 2634
  14204. }
  14205. },
  14206. },
  14207. [
  14208. {
  14209. name: "Micro",
  14210. height: math.unit(6, "inches")
  14211. },
  14212. {
  14213. name: "Normal",
  14214. height: math.unit(6 + 2 / 12, "feet")
  14215. },
  14216. {
  14217. name: "Macro",
  14218. height: math.unit(131, "feet"),
  14219. default: true
  14220. },
  14221. {
  14222. name: "Megamacro",
  14223. height: math.unit(15, "miles")
  14224. },
  14225. {
  14226. name: "Gigamacro",
  14227. height: math.unit(4000, "miles")
  14228. },
  14229. {
  14230. name: "Teramacro",
  14231. height: math.unit(315000, "miles")
  14232. },
  14233. ]
  14234. ))
  14235. characterMakers.push(() => makeCharacter(
  14236. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14237. {
  14238. front: {
  14239. height: math.unit(2.794, "meters"),
  14240. weight: math.unit(325, "kg"),
  14241. name: "Front",
  14242. image: {
  14243. source: "./media/characters/tezwa/front.svg",
  14244. extra: 2083 / 1906,
  14245. bottom: 0.031
  14246. }
  14247. },
  14248. foot: {
  14249. height: math.unit(0.687, "meters"),
  14250. name: "Foot",
  14251. image: {
  14252. source: "./media/characters/tezwa/foot.svg"
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(9 + 2 / 12, "feet"),
  14260. default: true
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(58, "feet"),
  14269. weight: math.unit(89000, "lb"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/typhus/front.svg",
  14273. extra: 816 / 800,
  14274. bottom: 0.065
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Macro",
  14281. height: math.unit(58, "feet"),
  14282. default: true
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14288. {
  14289. front: {
  14290. height: math.unit(12, "feet"),
  14291. weight: math.unit(6, "tonnes"),
  14292. name: "Front",
  14293. image: {
  14294. source: "./media/characters/lyra-von-wulf/front.svg",
  14295. extra: 1,
  14296. bottom: 0.10
  14297. }
  14298. },
  14299. frontMecha: {
  14300. height: math.unit(12, "feet"),
  14301. weight: math.unit(12, "tonnes"),
  14302. name: "Front (Mecha)",
  14303. image: {
  14304. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14305. extra: 1,
  14306. bottom: 0.042
  14307. }
  14308. },
  14309. maw: {
  14310. height: math.unit(2.2, "feet"),
  14311. name: "Maw",
  14312. image: {
  14313. source: "./media/characters/lyra-von-wulf/maw.svg"
  14314. }
  14315. },
  14316. },
  14317. [
  14318. {
  14319. name: "Normal",
  14320. height: math.unit(12, "feet"),
  14321. default: true
  14322. },
  14323. {
  14324. name: "Classic",
  14325. height: math.unit(50, "feet")
  14326. },
  14327. {
  14328. name: "Macro",
  14329. height: math.unit(500, "feet")
  14330. },
  14331. {
  14332. name: "Megamacro",
  14333. height: math.unit(1, "mile")
  14334. },
  14335. {
  14336. name: "Gigamacro",
  14337. height: math.unit(400, "miles")
  14338. },
  14339. {
  14340. name: "Teramacro",
  14341. height: math.unit(22000, "miles")
  14342. },
  14343. {
  14344. name: "Solarmacro",
  14345. height: math.unit(8600000, "miles")
  14346. },
  14347. {
  14348. name: "Galactic",
  14349. height: math.unit(1057000, "lightyears")
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14355. {
  14356. front: {
  14357. height: math.unit(6 + 10 / 12, "feet"),
  14358. weight: math.unit(150, "lb"),
  14359. name: "Front",
  14360. image: {
  14361. source: "./media/characters/dixon/front.svg",
  14362. extra: 3361 / 3209,
  14363. bottom: 0.01
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(6 + 10 / 12, "feet"),
  14371. default: true
  14372. },
  14373. {
  14374. name: "Big",
  14375. height: math.unit(12, "meters")
  14376. },
  14377. {
  14378. name: "Macro",
  14379. height: math.unit(500, "meters")
  14380. },
  14381. {
  14382. name: "Megamacro",
  14383. height: math.unit(2, "km")
  14384. },
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14389. {
  14390. kingCheetah_front: {
  14391. height: math.unit(1.85, "meters"),
  14392. weight: math.unit(68, "kg"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/kauko/king-cheetah-front.svg",
  14396. extra: 1007/972,
  14397. bottom: 35/1042
  14398. },
  14399. form: "king-cheetah",
  14400. default: true
  14401. },
  14402. kingCheetah_back: {
  14403. height: math.unit(1.85, "meters"),
  14404. weight: math.unit(68, "kg"),
  14405. name: "Back",
  14406. image: {
  14407. source: "./media/characters/kauko/king-cheetah-back.svg",
  14408. extra: 1015/980,
  14409. bottom: 11/1026
  14410. },
  14411. form: "king-cheetah",
  14412. },
  14413. kingCheetah_hand: {
  14414. height: math.unit(0.23, "meters"),
  14415. name: "Hand",
  14416. image: {
  14417. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14418. },
  14419. form: "king-cheetah",
  14420. },
  14421. kingCheetah_paw: {
  14422. height: math.unit(0.38, "meters"),
  14423. name: "Paw",
  14424. image: {
  14425. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14426. },
  14427. form: "king-cheetah",
  14428. },
  14429. kingCheetah_nape: {
  14430. height: math.unit(0.23, "meters"),
  14431. name: "Nape",
  14432. image: {
  14433. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14434. },
  14435. form: "king-cheetah",
  14436. },
  14437. wolf_front: {
  14438. height: math.unit(1.88, "meters"),
  14439. weight: math.unit(74, "kg"),
  14440. name: "Front",
  14441. image: {
  14442. source: "./media/characters/kauko/wolf-front.svg",
  14443. extra: 952/908,
  14444. bottom: 64/1016
  14445. },
  14446. form: "wolf",
  14447. default: true
  14448. },
  14449. wolf_dressed: {
  14450. height: math.unit(1.88, "meters"),
  14451. weight: math.unit(74, "kg"),
  14452. name: "Dressed",
  14453. image: {
  14454. source: "./media/characters/kauko/wolf-dressed.svg",
  14455. extra: 963/916,
  14456. bottom: 101/1064
  14457. },
  14458. form: "wolf",
  14459. },
  14460. wolf_hand: {
  14461. height: math.unit(0.3, "meters"),
  14462. name: "Hand",
  14463. image: {
  14464. source: "./media/characters/kauko/wolf-hand.svg"
  14465. },
  14466. form: "wolf",
  14467. },
  14468. wolf_paw: {
  14469. height: math.unit(0.407, "meters"),
  14470. name: "Paw",
  14471. image: {
  14472. source: "./media/characters/kauko/wolf-paw.svg"
  14473. },
  14474. form: "wolf",
  14475. },
  14476. wolf_nape: {
  14477. height: math.unit(0.25, "meters"),
  14478. name: "Nape",
  14479. image: {
  14480. source: "./media/characters/kauko/wolf-nape.svg"
  14481. },
  14482. form: "wolf",
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Normal",
  14488. height: math.unit(1.85, "m"),
  14489. default: true,
  14490. form: "king-cheetah"
  14491. },
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(1.88, "m"),
  14495. default: true,
  14496. form: "wolf"
  14497. },
  14498. ],
  14499. {
  14500. "king-cheetah": {
  14501. name: "King Cheetah",
  14502. default: true
  14503. },
  14504. "wolf": {
  14505. name: "Wolf",
  14506. },
  14507. }
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14511. {
  14512. frontSfw: {
  14513. height: math.unit(5, "meters"),
  14514. weight: math.unit(4250, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/varg/front-sfw.svg",
  14518. extra: 1103/1010,
  14519. bottom: 50/1153
  14520. },
  14521. form: "anthro",
  14522. default: true
  14523. },
  14524. backSfw: {
  14525. height: math.unit(5, "meters"),
  14526. weight: math.unit(4250, "lb"),
  14527. name: "Back",
  14528. image: {
  14529. source: "./media/characters/varg/back-sfw.svg",
  14530. extra: 1038/1022,
  14531. bottom: 36/1074
  14532. },
  14533. form: "anthro"
  14534. },
  14535. frontNsfw: {
  14536. height: math.unit(5, "meters"),
  14537. weight: math.unit(4250, "lb"),
  14538. name: "Front (NSFW)",
  14539. image: {
  14540. source: "./media/characters/varg/front-nsfw.svg",
  14541. extra: 1103/1010,
  14542. bottom: 50/1153
  14543. },
  14544. form: "anthro"
  14545. },
  14546. sheath: {
  14547. height: math.unit(3.8, "feet"),
  14548. weight: math.unit(90, "kilograms"),
  14549. name: "Sheath",
  14550. image: {
  14551. source: "./media/characters/varg/sheath.svg"
  14552. },
  14553. form: "anthro"
  14554. },
  14555. dick: {
  14556. height: math.unit(4.6, "feet"),
  14557. weight: math.unit(451, "kilograms"),
  14558. name: "Dick",
  14559. image: {
  14560. source: "./media/characters/varg/dick.svg"
  14561. },
  14562. form: "anthro"
  14563. },
  14564. feralSfw: {
  14565. height: math.unit(5, "meters"),
  14566. weight: math.unit(100000, "lb"),
  14567. name: "Side",
  14568. image: {
  14569. source: "./media/characters/varg/feral-sfw.svg",
  14570. extra: 1065/511,
  14571. bottom: 211/1276
  14572. },
  14573. form: "feral",
  14574. default: true
  14575. },
  14576. feralNsfw: {
  14577. height: math.unit(5, "meters"),
  14578. weight: math.unit(100000, "lb"),
  14579. name: "Side (NSFW)",
  14580. image: {
  14581. source: "./media/characters/varg/feral-nsfw.svg",
  14582. extra: 1065/511,
  14583. bottom: 211/1276
  14584. },
  14585. form: "feral",
  14586. },
  14587. feralSheath: {
  14588. height: math.unit(9.8, "feet"),
  14589. weight: math.unit(2000, "kilograms"),
  14590. name: "Sheath",
  14591. image: {
  14592. source: "./media/characters/varg/sheath.svg"
  14593. },
  14594. form: "feral"
  14595. },
  14596. feralDick: {
  14597. height: math.unit(13.11, "feet"),
  14598. weight: math.unit(10440, "kilograms"),
  14599. name: "Dick",
  14600. image: {
  14601. source: "./media/characters/varg/dick.svg"
  14602. },
  14603. form: "feral"
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(5, "meters"),
  14610. form: "anthro"
  14611. },
  14612. {
  14613. name: "Macro",
  14614. height: math.unit(200, "meters"),
  14615. form: "anthro"
  14616. },
  14617. {
  14618. name: "Megamacro",
  14619. height: math.unit(20, "kilometers"),
  14620. form: "anthro"
  14621. },
  14622. {
  14623. name: "True Size",
  14624. height: math.unit(211, "km"),
  14625. form: "anthro",
  14626. default: true
  14627. },
  14628. {
  14629. name: "Gigamacro",
  14630. height: math.unit(1000, "km"),
  14631. form: "anthro"
  14632. },
  14633. {
  14634. name: "Gigamacro+",
  14635. height: math.unit(8000, "km"),
  14636. form: "anthro"
  14637. },
  14638. {
  14639. name: "Teramacro",
  14640. height: math.unit(1000000, "km"),
  14641. form: "anthro"
  14642. },
  14643. {
  14644. name: "Normal",
  14645. height: math.unit(5, "meters"),
  14646. form: "feral"
  14647. },
  14648. {
  14649. name: "Macro",
  14650. height: math.unit(200, "meters"),
  14651. form: "feral"
  14652. },
  14653. {
  14654. name: "Megamacro",
  14655. height: math.unit(20, "kilometers"),
  14656. form: "feral"
  14657. },
  14658. {
  14659. name: "True Size",
  14660. height: math.unit(211, "km"),
  14661. form: "feral",
  14662. default: true
  14663. },
  14664. {
  14665. name: "Gigamacro",
  14666. height: math.unit(1000, "km"),
  14667. form: "feral"
  14668. },
  14669. {
  14670. name: "Gigamacro+",
  14671. height: math.unit(8000, "km"),
  14672. form: "feral"
  14673. },
  14674. {
  14675. name: "Teramacro",
  14676. height: math.unit(1000000, "km"),
  14677. form: "feral"
  14678. },
  14679. ],
  14680. {
  14681. "anthro": {
  14682. name: "Anthro",
  14683. default: true
  14684. },
  14685. "feral": {
  14686. name: "Feral",
  14687. },
  14688. }
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(7 + 7 / 12, "feet"),
  14695. weight: math.unit(267, "lb"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/dayza/front.svg",
  14699. extra: 1262 / 1200,
  14700. bottom: 0.035
  14701. }
  14702. },
  14703. side: {
  14704. height: math.unit(7 + 7 / 12, "feet"),
  14705. weight: math.unit(267, "lb"),
  14706. name: "Side",
  14707. image: {
  14708. source: "./media/characters/dayza/side.svg",
  14709. extra: 1295 / 1245,
  14710. bottom: 0.05
  14711. }
  14712. },
  14713. back: {
  14714. height: math.unit(7 + 7 / 12, "feet"),
  14715. weight: math.unit(267, "lb"),
  14716. name: "Back",
  14717. image: {
  14718. source: "./media/characters/dayza/back.svg",
  14719. extra: 1241 / 1170
  14720. }
  14721. },
  14722. },
  14723. [
  14724. {
  14725. name: "Normal",
  14726. height: math.unit(7 + 7 / 12, "feet"),
  14727. default: true
  14728. },
  14729. {
  14730. name: "Macro",
  14731. height: math.unit(155, "feet")
  14732. },
  14733. ]
  14734. ))
  14735. characterMakers.push(() => makeCharacter(
  14736. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14737. {
  14738. front: {
  14739. height: math.unit(6 + 5 / 12, "feet"),
  14740. weight: math.unit(160, "lb"),
  14741. name: "Front",
  14742. image: {
  14743. source: "./media/characters/xanthos/front.svg",
  14744. extra: 1,
  14745. bottom: 0.04
  14746. }
  14747. },
  14748. back: {
  14749. height: math.unit(6 + 5 / 12, "feet"),
  14750. weight: math.unit(160, "lb"),
  14751. name: "Back",
  14752. image: {
  14753. source: "./media/characters/xanthos/back.svg",
  14754. extra: 1,
  14755. bottom: 0.03
  14756. }
  14757. },
  14758. hand: {
  14759. height: math.unit(0.928, "feet"),
  14760. name: "Hand",
  14761. image: {
  14762. source: "./media/characters/xanthos/hand.svg"
  14763. }
  14764. },
  14765. foot: {
  14766. height: math.unit(1.286, "feet"),
  14767. name: "Foot",
  14768. image: {
  14769. source: "./media/characters/xanthos/foot.svg"
  14770. }
  14771. },
  14772. },
  14773. [
  14774. {
  14775. name: "Normal",
  14776. height: math.unit(6 + 5 / 12, "feet"),
  14777. default: true
  14778. },
  14779. {
  14780. name: "Normal+",
  14781. height: math.unit(6, "meters")
  14782. },
  14783. {
  14784. name: "Macro",
  14785. height: math.unit(40, "feet")
  14786. },
  14787. {
  14788. name: "Macro+",
  14789. height: math.unit(200, "meters")
  14790. },
  14791. {
  14792. name: "Megamacro",
  14793. height: math.unit(20, "km")
  14794. },
  14795. {
  14796. name: "Megamacro+",
  14797. height: math.unit(100, "km")
  14798. },
  14799. {
  14800. name: "Gigamacro",
  14801. height: math.unit(200, "megameters")
  14802. },
  14803. {
  14804. name: "Gigamacro+",
  14805. height: math.unit(1.5, "gigameters")
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14811. {
  14812. front: {
  14813. height: math.unit(6 + 3 / 12, "feet"),
  14814. weight: math.unit(215, "lb"),
  14815. name: "Front",
  14816. image: {
  14817. source: "./media/characters/grynn/front.svg",
  14818. extra: 4627 / 4209,
  14819. bottom: 0.047
  14820. }
  14821. },
  14822. },
  14823. [
  14824. {
  14825. name: "Micro",
  14826. height: math.unit(6, "inches")
  14827. },
  14828. {
  14829. name: "Normal",
  14830. height: math.unit(6 + 3 / 12, "feet"),
  14831. default: true
  14832. },
  14833. {
  14834. name: "Big",
  14835. height: math.unit(104, "feet")
  14836. },
  14837. {
  14838. name: "Macro",
  14839. height: math.unit(944, "feet")
  14840. },
  14841. {
  14842. name: "Macro+",
  14843. height: math.unit(9480, "feet")
  14844. },
  14845. {
  14846. name: "Megamacro",
  14847. height: math.unit(78752, "feet")
  14848. },
  14849. {
  14850. name: "Megamacro+",
  14851. height: math.unit(630128, "feet")
  14852. },
  14853. {
  14854. name: "Megamacro++",
  14855. height: math.unit(3150695, "feet")
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(7 + 5 / 12, "feet"),
  14864. weight: math.unit(450, "lb"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/mocha-aura/front.svg",
  14868. extra: 1907 / 1817,
  14869. bottom: 0.04
  14870. }
  14871. },
  14872. back: {
  14873. height: math.unit(7 + 5 / 12, "feet"),
  14874. weight: math.unit(450, "lb"),
  14875. name: "Back",
  14876. image: {
  14877. source: "./media/characters/mocha-aura/back.svg",
  14878. extra: 1900 / 1825,
  14879. bottom: 0.045
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Nano",
  14886. height: math.unit(1, "nm")
  14887. },
  14888. {
  14889. name: "Megamicro",
  14890. height: math.unit(1, "mm")
  14891. },
  14892. {
  14893. name: "Micro",
  14894. height: math.unit(3, "inches")
  14895. },
  14896. {
  14897. name: "Normal",
  14898. height: math.unit(7 + 5 / 12, "feet"),
  14899. default: true
  14900. },
  14901. {
  14902. name: "Macro",
  14903. height: math.unit(30, "feet")
  14904. },
  14905. {
  14906. name: "Megamacro",
  14907. height: math.unit(3500, "feet")
  14908. },
  14909. {
  14910. name: "Teramacro",
  14911. height: math.unit(500000, "miles")
  14912. },
  14913. {
  14914. name: "Petamacro",
  14915. height: math.unit(50000000000000000, "parsecs")
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(6, "feet"),
  14924. weight: math.unit(150, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/ilisha-devya/front.svg",
  14928. extra: 1053/1049,
  14929. bottom: 270/1323
  14930. }
  14931. },
  14932. back: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Back",
  14936. image: {
  14937. source: "./media/characters/ilisha-devya/back.svg",
  14938. extra: 1131/1128,
  14939. bottom: 39/1170
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Macro",
  14946. height: math.unit(500, "feet"),
  14947. default: true
  14948. },
  14949. {
  14950. name: "Megamacro",
  14951. height: math.unit(10, "miles")
  14952. },
  14953. {
  14954. name: "Gigamacro",
  14955. height: math.unit(100000, "miles")
  14956. },
  14957. {
  14958. name: "Examacro",
  14959. height: math.unit(1e9, "lightyears")
  14960. },
  14961. {
  14962. name: "Omniversal",
  14963. height: math.unit(1e33, "lightyears")
  14964. },
  14965. {
  14966. name: "Beyond Infinite",
  14967. height: math.unit(1e100, "lightyears")
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14973. {
  14974. Side: {
  14975. height: math.unit(6, "feet"),
  14976. weight: math.unit(150, "lb"),
  14977. name: "Side",
  14978. image: {
  14979. source: "./media/characters/mira/side.svg",
  14980. extra: 900 / 799,
  14981. bottom: 0.02
  14982. }
  14983. },
  14984. },
  14985. [
  14986. {
  14987. name: "Human Size",
  14988. height: math.unit(6, "feet")
  14989. },
  14990. {
  14991. name: "Macro",
  14992. height: math.unit(100, "feet"),
  14993. default: true
  14994. },
  14995. {
  14996. name: "Megamacro",
  14997. height: math.unit(10, "miles")
  14998. },
  14999. {
  15000. name: "Gigamacro",
  15001. height: math.unit(25000, "miles")
  15002. },
  15003. {
  15004. name: "Teramacro",
  15005. height: math.unit(300, "AU")
  15006. },
  15007. {
  15008. name: "Full Size",
  15009. height: math.unit(4.5e10, "lightyears")
  15010. },
  15011. ]
  15012. ))
  15013. characterMakers.push(() => makeCharacter(
  15014. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15015. {
  15016. front: {
  15017. height: math.unit(6, "feet"),
  15018. weight: math.unit(150, "lb"),
  15019. name: "Front",
  15020. image: {
  15021. source: "./media/characters/holly/front.svg",
  15022. extra: 639 / 606
  15023. }
  15024. },
  15025. back: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Back",
  15029. image: {
  15030. source: "./media/characters/holly/back.svg",
  15031. extra: 623 / 598
  15032. }
  15033. },
  15034. frontWorking: {
  15035. height: math.unit(6, "feet"),
  15036. weight: math.unit(150, "lb"),
  15037. name: "Front (Working)",
  15038. image: {
  15039. source: "./media/characters/holly/front-working.svg",
  15040. extra: 607 / 577,
  15041. bottom: 0.048
  15042. }
  15043. },
  15044. },
  15045. [
  15046. {
  15047. name: "Normal",
  15048. height: math.unit(12 + 3 / 12, "feet"),
  15049. default: true
  15050. },
  15051. ]
  15052. ))
  15053. characterMakers.push(() => makeCharacter(
  15054. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15055. {
  15056. front: {
  15057. height: math.unit(6, "feet"),
  15058. weight: math.unit(150, "lb"),
  15059. name: "Front",
  15060. image: {
  15061. source: "./media/characters/porter/front.svg",
  15062. extra: 1,
  15063. bottom: 0.01
  15064. }
  15065. },
  15066. frontRobes: {
  15067. height: math.unit(6, "feet"),
  15068. weight: math.unit(150, "lb"),
  15069. name: "Front (Robes)",
  15070. image: {
  15071. source: "./media/characters/porter/front-robes.svg",
  15072. extra: 1.01,
  15073. bottom: 0.01
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Normal",
  15080. height: math.unit(11 + 9 / 12, "feet"),
  15081. default: true
  15082. },
  15083. ]
  15084. ))
  15085. characterMakers.push(() => makeCharacter(
  15086. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15087. {
  15088. legendary: {
  15089. height: math.unit(6, "feet"),
  15090. weight: math.unit(150, "lb"),
  15091. name: "Legendary",
  15092. image: {
  15093. source: "./media/characters/lucy/legendary.svg",
  15094. extra: 1355 / 1100,
  15095. bottom: 0.045
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Legendary",
  15102. height: math.unit(86882 * 2, "miles"),
  15103. default: true
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15109. {
  15110. front: {
  15111. height: math.unit(6, "feet"),
  15112. weight: math.unit(150, "lb"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/drusilla/front.svg",
  15116. extra: 678 / 635,
  15117. bottom: 0.03
  15118. }
  15119. },
  15120. back: {
  15121. height: math.unit(6, "feet"),
  15122. weight: math.unit(150, "lb"),
  15123. name: "Back",
  15124. image: {
  15125. source: "./media/characters/drusilla/back.svg",
  15126. extra: 678 / 635,
  15127. bottom: 0.005
  15128. }
  15129. },
  15130. },
  15131. [
  15132. {
  15133. name: "Macro",
  15134. height: math.unit(100, "feet")
  15135. },
  15136. {
  15137. name: "Canon Height",
  15138. height: math.unit(2000, "feet"),
  15139. default: true
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15145. {
  15146. front: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(180, "lb"),
  15149. name: "Front",
  15150. image: {
  15151. source: "./media/characters/renard-thatch/front.svg",
  15152. extra: 2411 / 2275,
  15153. bottom: 0.01
  15154. }
  15155. },
  15156. frontPosing: {
  15157. height: math.unit(6, "feet"),
  15158. weight: math.unit(180, "lb"),
  15159. name: "Front (Posing)",
  15160. image: {
  15161. source: "./media/characters/renard-thatch/front-posing.svg",
  15162. extra: 2381 / 2261,
  15163. bottom: 0.01
  15164. }
  15165. },
  15166. back: {
  15167. height: math.unit(6, "feet"),
  15168. weight: math.unit(180, "lb"),
  15169. name: "Back",
  15170. image: {
  15171. source: "./media/characters/renard-thatch/back.svg",
  15172. extra: 2428 / 2288
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Micro",
  15179. height: math.unit(3, "inches")
  15180. },
  15181. {
  15182. name: "Default",
  15183. height: math.unit(6, "feet"),
  15184. default: true
  15185. },
  15186. {
  15187. name: "Macro",
  15188. height: math.unit(75, "feet")
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(1450, "feet"),
  15197. weight: math.unit(1.21e6, "tons"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/sekvra/front.svg",
  15201. extra: 1193/1190,
  15202. bottom: 78/1271
  15203. }
  15204. },
  15205. side: {
  15206. height: math.unit(1450, "feet"),
  15207. weight: math.unit(1.21e6, "tons"),
  15208. name: "Side",
  15209. image: {
  15210. source: "./media/characters/sekvra/side.svg",
  15211. extra: 1193/1190,
  15212. bottom: 52/1245
  15213. }
  15214. },
  15215. back: {
  15216. height: math.unit(1450, "feet"),
  15217. weight: math.unit(1.21e6, "tons"),
  15218. name: "Back",
  15219. image: {
  15220. source: "./media/characters/sekvra/back.svg",
  15221. extra: 1219/1216,
  15222. bottom: 21/1240
  15223. }
  15224. },
  15225. frontClothed: {
  15226. height: math.unit(1450, "feet"),
  15227. weight: math.unit(1.21e6, "tons"),
  15228. name: "Front (Clothed)",
  15229. image: {
  15230. source: "./media/characters/sekvra/front-clothed.svg",
  15231. extra: 1192/1189,
  15232. bottom: 79/1271
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Macro",
  15239. height: math.unit(1450, "feet"),
  15240. default: true
  15241. },
  15242. {
  15243. name: "Megamacro",
  15244. height: math.unit(15000, "feet")
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(6, "feet"),
  15253. weight: math.unit(150, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/carmine/front.svg",
  15257. extra: 1557/1538,
  15258. bottom: 68/1625
  15259. }
  15260. },
  15261. frontArmor: {
  15262. height: math.unit(6, "feet"),
  15263. weight: math.unit(150, "lb"),
  15264. name: "Front (Armor)",
  15265. image: {
  15266. source: "./media/characters/carmine/front-armor.svg",
  15267. extra: 1549/1530,
  15268. bottom: 82/1631
  15269. }
  15270. },
  15271. mouth: {
  15272. height: math.unit(0.55, "feet"),
  15273. name: "Mouth",
  15274. image: {
  15275. source: "./media/characters/carmine/mouth.svg"
  15276. }
  15277. },
  15278. hand: {
  15279. height: math.unit(1.05, "feet"),
  15280. name: "Hand",
  15281. image: {
  15282. source: "./media/characters/carmine/hand.svg"
  15283. }
  15284. },
  15285. foot: {
  15286. height: math.unit(0.6, "feet"),
  15287. name: "Foot",
  15288. image: {
  15289. source: "./media/characters/carmine/foot.svg"
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Large",
  15296. height: math.unit(1, "mile")
  15297. },
  15298. {
  15299. name: "Huge",
  15300. height: math.unit(40, "miles"),
  15301. default: true
  15302. },
  15303. {
  15304. name: "Colossal",
  15305. height: math.unit(2500, "miles")
  15306. },
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15311. {
  15312. front: {
  15313. height: math.unit(6, "feet"),
  15314. weight: math.unit(150, "lb"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/elyssia/front.svg",
  15318. extra: 2201 / 2035,
  15319. bottom: 0.05
  15320. }
  15321. },
  15322. frontClothed: {
  15323. height: math.unit(6, "feet"),
  15324. weight: math.unit(150, "lb"),
  15325. name: "Front (Clothed)",
  15326. image: {
  15327. source: "./media/characters/elyssia/front-clothed.svg",
  15328. extra: 2201 / 2035,
  15329. bottom: 0.05
  15330. }
  15331. },
  15332. back: {
  15333. height: math.unit(6, "feet"),
  15334. weight: math.unit(150, "lb"),
  15335. name: "Back",
  15336. image: {
  15337. source: "./media/characters/elyssia/back.svg",
  15338. extra: 2201 / 2035,
  15339. bottom: 0.013
  15340. }
  15341. },
  15342. },
  15343. [
  15344. {
  15345. name: "Smaller",
  15346. height: math.unit(150, "feet")
  15347. },
  15348. {
  15349. name: "Standard",
  15350. height: math.unit(1400, "feet"),
  15351. default: true
  15352. },
  15353. {
  15354. name: "Distracted",
  15355. height: math.unit(15000, "feet")
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(7 + 4/12, "feet"),
  15364. weight: math.unit(690, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/geno-maxwell/front.svg",
  15368. extra: 984/856,
  15369. bottom: 87/1071
  15370. }
  15371. },
  15372. back: {
  15373. height: math.unit(7 + 4/12, "feet"),
  15374. weight: math.unit(690, "lb"),
  15375. name: "Back",
  15376. image: {
  15377. source: "./media/characters/geno-maxwell/back.svg",
  15378. extra: 981/854,
  15379. bottom: 57/1038
  15380. }
  15381. },
  15382. frontCostume: {
  15383. height: math.unit(7 + 4/12, "feet"),
  15384. weight: math.unit(690, "lb"),
  15385. name: "Front (Costume)",
  15386. image: {
  15387. source: "./media/characters/geno-maxwell/front-costume.svg",
  15388. extra: 984/856,
  15389. bottom: 87/1071
  15390. }
  15391. },
  15392. backcostume: {
  15393. height: math.unit(7 + 4/12, "feet"),
  15394. weight: math.unit(690, "lb"),
  15395. name: "Back (Costume)",
  15396. image: {
  15397. source: "./media/characters/geno-maxwell/back-costume.svg",
  15398. extra: 981/854,
  15399. bottom: 57/1038
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Micro",
  15406. height: math.unit(3, "inches")
  15407. },
  15408. {
  15409. name: "Normal",
  15410. height: math.unit(7 + 4 / 12, "feet"),
  15411. default: true
  15412. },
  15413. {
  15414. name: "Macro",
  15415. height: math.unit(220, "feet")
  15416. },
  15417. {
  15418. name: "Megamacro",
  15419. height: math.unit(11, "miles")
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15425. {
  15426. front: {
  15427. height: math.unit(7 + 4/12, "feet"),
  15428. weight: math.unit(750, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/regena-maxwell/front.svg",
  15432. extra: 984/856,
  15433. bottom: 87/1071
  15434. }
  15435. },
  15436. back: {
  15437. height: math.unit(7 + 4/12, "feet"),
  15438. weight: math.unit(750, "lb"),
  15439. name: "Back",
  15440. image: {
  15441. source: "./media/characters/regena-maxwell/back.svg",
  15442. extra: 981/854,
  15443. bottom: 57/1038
  15444. }
  15445. },
  15446. frontCostume: {
  15447. height: math.unit(7 + 4/12, "feet"),
  15448. weight: math.unit(750, "lb"),
  15449. name: "Front (Costume)",
  15450. image: {
  15451. source: "./media/characters/regena-maxwell/front-costume.svg",
  15452. extra: 984/856,
  15453. bottom: 87/1071
  15454. }
  15455. },
  15456. backcostume: {
  15457. height: math.unit(7 + 4/12, "feet"),
  15458. weight: math.unit(750, "lb"),
  15459. name: "Back (Costume)",
  15460. image: {
  15461. source: "./media/characters/regena-maxwell/back-costume.svg",
  15462. extra: 981/854,
  15463. bottom: 57/1038
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(7 + 4 / 12, "feet"),
  15471. default: true
  15472. },
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(220, "feet")
  15476. },
  15477. {
  15478. name: "Megamacro",
  15479. height: math.unit(11, "miles")
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15485. {
  15486. front: {
  15487. height: math.unit(6, "feet"),
  15488. weight: math.unit(150, "lb"),
  15489. name: "Front",
  15490. image: {
  15491. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15492. extra: 860 / 690,
  15493. bottom: 0.03
  15494. }
  15495. },
  15496. },
  15497. [
  15498. {
  15499. name: "Normal",
  15500. height: math.unit(1.7, "meters"),
  15501. default: true
  15502. },
  15503. ]
  15504. ))
  15505. characterMakers.push(() => makeCharacter(
  15506. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15507. {
  15508. front: {
  15509. height: math.unit(6, "feet"),
  15510. weight: math.unit(150, "lb"),
  15511. name: "Front",
  15512. image: {
  15513. source: "./media/characters/quilly/front.svg",
  15514. extra: 890 / 776
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Gigamacro",
  15521. height: math.unit(404090, "miles"),
  15522. default: true
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(7 + 8 / 12, "feet"),
  15531. weight: math.unit(350, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/tempest/front.svg",
  15535. extra: 1175 / 1086,
  15536. bottom: 0.02
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(7 + 8 / 12, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15550. {
  15551. side: {
  15552. height: math.unit(4 + 5 / 12, "feet"),
  15553. weight: math.unit(80, "lb"),
  15554. name: "Side",
  15555. image: {
  15556. source: "./media/characters/rodger/side.svg",
  15557. extra: 1235 / 1118
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Micro",
  15564. height: math.unit(1, "inch")
  15565. },
  15566. {
  15567. name: "Normal",
  15568. height: math.unit(4 + 5 / 12, "feet"),
  15569. default: true
  15570. },
  15571. {
  15572. name: "Macro",
  15573. height: math.unit(120, "feet")
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(6, "feet"),
  15582. weight: math.unit(150, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/danyel/front.svg",
  15586. extra: 1185 / 1123,
  15587. bottom: 0.05
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Shrunken",
  15594. height: math.unit(0.5, "mm")
  15595. },
  15596. {
  15597. name: "Micro",
  15598. height: math.unit(1, "mm"),
  15599. default: true
  15600. },
  15601. {
  15602. name: "Upsized",
  15603. height: math.unit(5 + 5 / 12, "feet")
  15604. },
  15605. ]
  15606. ))
  15607. characterMakers.push(() => makeCharacter(
  15608. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15609. {
  15610. front: {
  15611. height: math.unit(5 + 6 / 12, "feet"),
  15612. weight: math.unit(200, "lb"),
  15613. name: "Front",
  15614. image: {
  15615. source: "./media/characters/vivian-bijoux/front.svg",
  15616. extra: 1217/1209,
  15617. bottom: 76/1293
  15618. }
  15619. },
  15620. back: {
  15621. height: math.unit(5 + 6 / 12, "feet"),
  15622. weight: math.unit(200, "lb"),
  15623. name: "Back",
  15624. image: {
  15625. source: "./media/characters/vivian-bijoux/back.svg",
  15626. extra: 1214/1208,
  15627. bottom: 51/1265
  15628. }
  15629. },
  15630. dressed: {
  15631. height: math.unit(5 + 6 / 12, "feet"),
  15632. weight: math.unit(200, "lb"),
  15633. name: "Dressed",
  15634. image: {
  15635. source: "./media/characters/vivian-bijoux/dressed.svg",
  15636. extra: 1217/1209,
  15637. bottom: 76/1293
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(5 + 6 / 12, "feet"),
  15645. default: true
  15646. },
  15647. {
  15648. name: "Bad Dream",
  15649. height: math.unit(500, "feet")
  15650. },
  15651. {
  15652. name: "Nightmare",
  15653. height: math.unit(500, "miles")
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(6 + 1 / 12, "feet"),
  15662. weight: math.unit(260, "lb"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/zeta/front.svg",
  15666. extra: 1968 / 1889,
  15667. bottom: 0.06
  15668. }
  15669. },
  15670. back: {
  15671. height: math.unit(6 + 1 / 12, "feet"),
  15672. weight: math.unit(260, "lb"),
  15673. name: "Back",
  15674. image: {
  15675. source: "./media/characters/zeta/back.svg",
  15676. extra: 1944 / 1858,
  15677. bottom: 0.03
  15678. }
  15679. },
  15680. hand: {
  15681. height: math.unit(1.112, "feet"),
  15682. name: "Hand",
  15683. image: {
  15684. source: "./media/characters/zeta/hand.svg"
  15685. }
  15686. },
  15687. foot: {
  15688. height: math.unit(1.48, "feet"),
  15689. name: "Foot",
  15690. image: {
  15691. source: "./media/characters/zeta/foot.svg"
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Micro",
  15698. height: math.unit(6, "inches")
  15699. },
  15700. {
  15701. name: "Normal",
  15702. height: math.unit(6 + 1 / 12, "feet"),
  15703. default: true
  15704. },
  15705. {
  15706. name: "Macro",
  15707. height: math.unit(20, "feet")
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15713. {
  15714. front: {
  15715. height: math.unit(6, "feet"),
  15716. weight: math.unit(150, "lb"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/jamie-larsen/front.svg",
  15720. extra: 962 / 933,
  15721. bottom: 0.02
  15722. }
  15723. },
  15724. back: {
  15725. height: math.unit(6, "feet"),
  15726. weight: math.unit(150, "lb"),
  15727. name: "Back",
  15728. image: {
  15729. source: "./media/characters/jamie-larsen/back.svg",
  15730. extra: 997 / 946
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Macro",
  15737. height: math.unit(28 + 7 / 12, "feet"),
  15738. default: true
  15739. },
  15740. {
  15741. name: "Macro+",
  15742. height: math.unit(180, "feet")
  15743. },
  15744. {
  15745. name: "Megamacro",
  15746. height: math.unit(10, "miles")
  15747. },
  15748. {
  15749. name: "Gigamacro",
  15750. height: math.unit(200000, "miles")
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(6, "feet"),
  15759. weight: math.unit(120, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/vance/front.svg",
  15763. extra: 1980 / 1890,
  15764. bottom: 0.09
  15765. }
  15766. },
  15767. back: {
  15768. height: math.unit(6, "feet"),
  15769. weight: math.unit(120, "lb"),
  15770. name: "Back",
  15771. image: {
  15772. source: "./media/characters/vance/back.svg",
  15773. extra: 2081 / 1994,
  15774. bottom: 0.014
  15775. }
  15776. },
  15777. hand: {
  15778. height: math.unit(0.88, "feet"),
  15779. name: "Hand",
  15780. image: {
  15781. source: "./media/characters/vance/hand.svg"
  15782. }
  15783. },
  15784. foot: {
  15785. height: math.unit(0.64, "feet"),
  15786. name: "Foot",
  15787. image: {
  15788. source: "./media/characters/vance/foot.svg"
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Small",
  15795. height: math.unit(90, "feet"),
  15796. default: true
  15797. },
  15798. {
  15799. name: "Macro",
  15800. height: math.unit(100, "meters")
  15801. },
  15802. {
  15803. name: "Megamacro",
  15804. height: math.unit(15, "miles")
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15810. {
  15811. front: {
  15812. height: math.unit(6, "feet"),
  15813. weight: math.unit(180, "lb"),
  15814. name: "Front",
  15815. image: {
  15816. source: "./media/characters/xochitl/front.svg",
  15817. extra: 2297 / 2261,
  15818. bottom: 0.065
  15819. }
  15820. },
  15821. back: {
  15822. height: math.unit(6, "feet"),
  15823. weight: math.unit(180, "lb"),
  15824. name: "Back",
  15825. image: {
  15826. source: "./media/characters/xochitl/back.svg",
  15827. extra: 2386 / 2354,
  15828. bottom: 0.01
  15829. }
  15830. },
  15831. foot: {
  15832. height: math.unit(6 / 5 * 1.15, "feet"),
  15833. weight: math.unit(150, "lb"),
  15834. name: "Foot",
  15835. image: {
  15836. source: "./media/characters/xochitl/foot.svg"
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Macro",
  15843. height: math.unit(80, "feet")
  15844. },
  15845. {
  15846. name: "Macro+",
  15847. height: math.unit(400, "feet"),
  15848. default: true
  15849. },
  15850. {
  15851. name: "Gigamacro",
  15852. height: math.unit(80000, "miles")
  15853. },
  15854. {
  15855. name: "Gigamacro+",
  15856. height: math.unit(400000, "miles")
  15857. },
  15858. {
  15859. name: "Teramacro",
  15860. height: math.unit(300, "AU")
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15866. {
  15867. front: {
  15868. height: math.unit(6, "feet"),
  15869. weight: math.unit(150, "lb"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/vincent/front.svg",
  15873. extra: 1130 / 1080,
  15874. bottom: 0.055
  15875. }
  15876. },
  15877. beak: {
  15878. height: math.unit(6 * 0.1, "feet"),
  15879. name: "Beak",
  15880. image: {
  15881. source: "./media/characters/vincent/beak.svg"
  15882. }
  15883. },
  15884. hand: {
  15885. height: math.unit(6 * 0.85, "feet"),
  15886. weight: math.unit(150, "lb"),
  15887. name: "Hand",
  15888. image: {
  15889. source: "./media/characters/vincent/hand.svg"
  15890. }
  15891. },
  15892. foot: {
  15893. height: math.unit(6 * 0.19, "feet"),
  15894. weight: math.unit(150, "lb"),
  15895. name: "Foot",
  15896. image: {
  15897. source: "./media/characters/vincent/foot.svg"
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Base",
  15904. height: math.unit(6 + 5 / 12, "feet"),
  15905. default: true
  15906. },
  15907. {
  15908. name: "Macro",
  15909. height: math.unit(300, "feet")
  15910. },
  15911. {
  15912. name: "Megamacro",
  15913. height: math.unit(2, "miles")
  15914. },
  15915. {
  15916. name: "Gigamacro",
  15917. height: math.unit(1000, "miles")
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15923. {
  15924. front: {
  15925. height: math.unit(2, "meters"),
  15926. weight: math.unit(500, "kg"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/coatl/front.svg",
  15930. extra: 3948 / 3500,
  15931. bottom: 0.082
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(4, "meters")
  15939. },
  15940. {
  15941. name: "Macro",
  15942. height: math.unit(100, "meters"),
  15943. default: true
  15944. },
  15945. {
  15946. name: "Macro+",
  15947. height: math.unit(300, "meters")
  15948. },
  15949. {
  15950. name: "Megamacro",
  15951. height: math.unit(3, "gigameters")
  15952. },
  15953. {
  15954. name: "Megamacro+",
  15955. height: math.unit(300, "terameters")
  15956. },
  15957. {
  15958. name: "Megamacro++",
  15959. height: math.unit(3, "lightyears")
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(6, "feet"),
  15968. weight: math.unit(50, "kg"),
  15969. name: "front",
  15970. image: {
  15971. source: "./media/characters/shiroryu/front.svg",
  15972. extra: 1990 / 1935
  15973. }
  15974. },
  15975. },
  15976. [
  15977. {
  15978. name: "Mortal Mingling",
  15979. height: math.unit(3, "meters")
  15980. },
  15981. {
  15982. name: "Kaiju-ish",
  15983. height: math.unit(250, "meters")
  15984. },
  15985. {
  15986. name: "Somewhat Godly",
  15987. height: math.unit(400, "km"),
  15988. default: true
  15989. },
  15990. {
  15991. name: "Planetary",
  15992. height: math.unit(300, "megameters")
  15993. },
  15994. {
  15995. name: "Galaxy-dwarfing",
  15996. height: math.unit(450, "kiloparsecs")
  15997. },
  15998. {
  15999. name: "Universe Eater",
  16000. height: math.unit(150, "gigaparsecs")
  16001. },
  16002. {
  16003. name: "Almost Immeasurable",
  16004. height: math.unit(1.3e266, "yottaparsecs")
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16010. {
  16011. front: {
  16012. height: math.unit(6, "feet"),
  16013. weight: math.unit(150, "lb"),
  16014. name: "Front",
  16015. image: {
  16016. source: "./media/characters/umeko/front.svg",
  16017. extra: 1,
  16018. bottom: 0.019
  16019. }
  16020. },
  16021. frontArmored: {
  16022. height: math.unit(6, "feet"),
  16023. weight: math.unit(150, "lb"),
  16024. name: "Front (Armored)",
  16025. image: {
  16026. source: "./media/characters/umeko/front-armored.svg",
  16027. extra: 1,
  16028. bottom: 0.021
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Macro",
  16035. height: math.unit(220, "feet"),
  16036. default: true
  16037. },
  16038. {
  16039. name: "Guardian Dragon",
  16040. height: math.unit(50, "miles")
  16041. },
  16042. {
  16043. name: "Cosmic",
  16044. height: math.unit(800000, "miles")
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(6, "feet"),
  16053. weight: math.unit(150, "lb"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/cassidy/front.svg",
  16057. extra: 810/808,
  16058. bottom: 41/851
  16059. }
  16060. },
  16061. },
  16062. [
  16063. {
  16064. name: "Canon Height",
  16065. height: math.unit(120, "feet"),
  16066. default: true
  16067. },
  16068. {
  16069. name: "Macro+",
  16070. height: math.unit(400, "feet")
  16071. },
  16072. {
  16073. name: "Macro++",
  16074. height: math.unit(4000, "feet")
  16075. },
  16076. {
  16077. name: "Megamacro",
  16078. height: math.unit(3, "miles")
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16084. {
  16085. front: {
  16086. height: math.unit(6, "feet"),
  16087. weight: math.unit(150, "lb"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/isaac/front.svg",
  16091. extra: 896 / 815,
  16092. bottom: 0.11
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Human Size",
  16099. height: math.unit(8, "feet"),
  16100. default: true
  16101. },
  16102. {
  16103. name: "Macro",
  16104. height: math.unit(400, "feet")
  16105. },
  16106. {
  16107. name: "Megamacro",
  16108. height: math.unit(50, "miles")
  16109. },
  16110. {
  16111. name: "Canon Height",
  16112. height: math.unit(200, "AU")
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16118. {
  16119. front: {
  16120. height: math.unit(6, "feet"),
  16121. weight: math.unit(72, "kg"),
  16122. name: "Front",
  16123. image: {
  16124. source: "./media/characters/sleekit/front.svg",
  16125. extra: 4693 / 4487,
  16126. bottom: 0.012
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Minimum Height",
  16133. height: math.unit(10, "meters")
  16134. },
  16135. {
  16136. name: "Smaller",
  16137. height: math.unit(25, "meters")
  16138. },
  16139. {
  16140. name: "Larger",
  16141. height: math.unit(38, "meters"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Maximum height",
  16146. height: math.unit(100, "meters")
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(6, "feet"),
  16155. weight: math.unit(150, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/nillia/front.svg",
  16159. extra: 719/665,
  16160. bottom: 6/725
  16161. }
  16162. },
  16163. back: {
  16164. height: math.unit(6, "feet"),
  16165. weight: math.unit(150, "lb"),
  16166. name: "Back",
  16167. image: {
  16168. source: "./media/characters/nillia/back.svg",
  16169. extra: 705/651,
  16170. bottom: 5/710
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Canon Height",
  16177. height: math.unit(489, "feet"),
  16178. default: true
  16179. }
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16184. {
  16185. front: {
  16186. height: math.unit(6, "feet"),
  16187. weight: math.unit(150, "lb"),
  16188. name: "Front",
  16189. image: {
  16190. source: "./media/characters/mesmyriza/front.svg",
  16191. extra: 1541/1291,
  16192. bottom: 87/1628
  16193. }
  16194. },
  16195. foot: {
  16196. height: math.unit(6 / (250 / 35), "feet"),
  16197. name: "Foot",
  16198. image: {
  16199. source: "./media/characters/mesmyriza/foot.svg"
  16200. }
  16201. },
  16202. },
  16203. [
  16204. {
  16205. name: "Macro",
  16206. height: math.unit(457, "meters"),
  16207. default: true
  16208. },
  16209. {
  16210. name: "Megamacro",
  16211. height: math.unit(8, "megameters")
  16212. },
  16213. ]
  16214. ))
  16215. characterMakers.push(() => makeCharacter(
  16216. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16217. {
  16218. front: {
  16219. height: math.unit(6, "feet"),
  16220. weight: math.unit(250, "lb"),
  16221. name: "Front",
  16222. image: {
  16223. source: "./media/characters/saudade/front.svg",
  16224. extra: 1172 / 1139,
  16225. bottom: 0.035
  16226. }
  16227. },
  16228. },
  16229. [
  16230. {
  16231. name: "Micro",
  16232. height: math.unit(3, "inches")
  16233. },
  16234. {
  16235. name: "Normal",
  16236. height: math.unit(6, "feet"),
  16237. default: true
  16238. },
  16239. {
  16240. name: "Macro",
  16241. height: math.unit(50, "feet")
  16242. },
  16243. {
  16244. name: "Megamacro",
  16245. height: math.unit(2800, "feet")
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16251. {
  16252. front: {
  16253. height: math.unit(5 + 4 / 12, "feet"),
  16254. weight: math.unit(100, "lb"),
  16255. name: "Front",
  16256. image: {
  16257. source: "./media/characters/keireer/front.svg",
  16258. extra: 716 / 666,
  16259. bottom: 0.05
  16260. }
  16261. },
  16262. },
  16263. [
  16264. {
  16265. name: "Normal",
  16266. height: math.unit(5 + 4 / 12, "feet"),
  16267. default: true
  16268. },
  16269. ]
  16270. ))
  16271. characterMakers.push(() => makeCharacter(
  16272. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16273. {
  16274. front: {
  16275. height: math.unit(5.5, "feet"),
  16276. weight: math.unit(90, "kg"),
  16277. name: "Front",
  16278. image: {
  16279. source: "./media/characters/mirja/front.svg",
  16280. extra: 1452/1262,
  16281. bottom: 67/1519
  16282. }
  16283. },
  16284. frontDressed: {
  16285. height: math.unit(5.5, "feet"),
  16286. weight: math.unit(90, "lb"),
  16287. name: "Front (Dressed)",
  16288. image: {
  16289. source: "./media/characters/mirja/dressed.svg",
  16290. extra: 1452/1262,
  16291. bottom: 67/1519
  16292. }
  16293. },
  16294. back: {
  16295. height: math.unit(6, "feet"),
  16296. weight: math.unit(90, "lb"),
  16297. name: "Back",
  16298. image: {
  16299. source: "./media/characters/mirja/back.svg",
  16300. extra: 1892/1795,
  16301. bottom: 48/1940
  16302. }
  16303. },
  16304. maw: {
  16305. height: math.unit(1.312, "feet"),
  16306. name: "Maw",
  16307. image: {
  16308. source: "./media/characters/mirja/maw.svg"
  16309. }
  16310. },
  16311. paw: {
  16312. height: math.unit(1.15, "feet"),
  16313. name: "Paw",
  16314. image: {
  16315. source: "./media/characters/mirja/paw.svg"
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "\"Incognito\"",
  16322. height: math.unit(3, "meters")
  16323. },
  16324. {
  16325. name: "Strolling Size",
  16326. height: math.unit(15, "km")
  16327. },
  16328. {
  16329. name: "Larger Strolling Size",
  16330. height: math.unit(400, "km")
  16331. },
  16332. {
  16333. name: "Preferred Size",
  16334. height: math.unit(5000, "km"),
  16335. default: true
  16336. },
  16337. {
  16338. name: "True Size",
  16339. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16345. {
  16346. front: {
  16347. height: math.unit(15, "feet"),
  16348. weight: math.unit(880, "kg"),
  16349. name: "Front",
  16350. image: {
  16351. source: "./media/characters/nightraver/front.svg",
  16352. extra: 2444 / 2160,
  16353. bottom: 0.027
  16354. }
  16355. },
  16356. back: {
  16357. height: math.unit(15, "feet"),
  16358. weight: math.unit(880, "kg"),
  16359. name: "Back",
  16360. image: {
  16361. source: "./media/characters/nightraver/back.svg",
  16362. extra: 2309 / 2180,
  16363. bottom: 0.005
  16364. }
  16365. },
  16366. sole: {
  16367. height: math.unit(2.878, "feet"),
  16368. name: "Sole",
  16369. image: {
  16370. source: "./media/characters/nightraver/sole.svg"
  16371. }
  16372. },
  16373. foot: {
  16374. height: math.unit(2.285, "feet"),
  16375. name: "Foot",
  16376. image: {
  16377. source: "./media/characters/nightraver/foot.svg"
  16378. }
  16379. },
  16380. maw: {
  16381. height: math.unit(2.67, "feet"),
  16382. name: "Maw",
  16383. image: {
  16384. source: "./media/characters/nightraver/maw.svg"
  16385. }
  16386. },
  16387. },
  16388. [
  16389. {
  16390. name: "Micro",
  16391. height: math.unit(1, "cm")
  16392. },
  16393. {
  16394. name: "Normal",
  16395. height: math.unit(15, "feet"),
  16396. default: true
  16397. },
  16398. {
  16399. name: "Macro",
  16400. height: math.unit(300, "feet")
  16401. },
  16402. {
  16403. name: "Megamacro",
  16404. height: math.unit(300, "miles")
  16405. },
  16406. {
  16407. name: "Gigamacro",
  16408. height: math.unit(10000, "miles")
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16414. {
  16415. side: {
  16416. height: math.unit(2, "inches"),
  16417. weight: math.unit(5, "grams"),
  16418. name: "Side",
  16419. image: {
  16420. source: "./media/characters/arc/side.svg"
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Micro",
  16427. height: math.unit(2, "inches"),
  16428. default: true
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16434. {
  16435. front: {
  16436. height: math.unit(1.1938, "meters"),
  16437. weight: math.unit(54, "kg"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/nebula-shahar/front.svg",
  16441. extra: 1642 / 1436,
  16442. bottom: 0.06
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Megamicro",
  16449. height: math.unit(0.3, "mm")
  16450. },
  16451. {
  16452. name: "Micro",
  16453. height: math.unit(3, "cm")
  16454. },
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(138, "cm"),
  16458. default: true
  16459. },
  16460. {
  16461. name: "Macro",
  16462. height: math.unit(30, "m")
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16468. {
  16469. front: {
  16470. height: math.unit(5.24, "feet"),
  16471. weight: math.unit(150, "lb"),
  16472. name: "Front",
  16473. image: {
  16474. source: "./media/characters/shayla/front.svg",
  16475. extra: 1512 / 1414,
  16476. bottom: 0.01
  16477. }
  16478. },
  16479. back: {
  16480. height: math.unit(5.24, "feet"),
  16481. weight: math.unit(150, "lb"),
  16482. name: "Back",
  16483. image: {
  16484. source: "./media/characters/shayla/back.svg",
  16485. extra: 1512 / 1414
  16486. }
  16487. },
  16488. hand: {
  16489. height: math.unit(0.7781496062992126, "feet"),
  16490. name: "Hand",
  16491. image: {
  16492. source: "./media/characters/shayla/hand.svg"
  16493. }
  16494. },
  16495. foot: {
  16496. height: math.unit(1.4206036745406823, "feet"),
  16497. name: "Foot",
  16498. image: {
  16499. source: "./media/characters/shayla/foot.svg"
  16500. }
  16501. },
  16502. },
  16503. [
  16504. {
  16505. name: "Micro",
  16506. height: math.unit(0.32, "feet")
  16507. },
  16508. {
  16509. name: "Normal",
  16510. height: math.unit(5.24, "feet"),
  16511. default: true
  16512. },
  16513. {
  16514. name: "Macro",
  16515. height: math.unit(492.12, "feet")
  16516. },
  16517. {
  16518. name: "Megamacro",
  16519. height: math.unit(186.41, "miles")
  16520. },
  16521. ]
  16522. ))
  16523. characterMakers.push(() => makeCharacter(
  16524. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16525. {
  16526. front: {
  16527. height: math.unit(2.2, "m"),
  16528. weight: math.unit(120, "kg"),
  16529. name: "Front",
  16530. image: {
  16531. source: "./media/characters/pia-jr/front.svg",
  16532. extra: 1000 / 970,
  16533. bottom: 0.035
  16534. }
  16535. },
  16536. hand: {
  16537. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16538. name: "Hand",
  16539. image: {
  16540. source: "./media/characters/pia-jr/hand.svg"
  16541. }
  16542. },
  16543. paw: {
  16544. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16545. name: "Paw",
  16546. image: {
  16547. source: "./media/characters/pia-jr/paw.svg"
  16548. }
  16549. },
  16550. },
  16551. [
  16552. {
  16553. name: "Micro",
  16554. height: math.unit(1.2, "cm")
  16555. },
  16556. {
  16557. name: "Normal",
  16558. height: math.unit(2.2, "m"),
  16559. default: true
  16560. },
  16561. {
  16562. name: "Macro",
  16563. height: math.unit(180, "m")
  16564. },
  16565. {
  16566. name: "Megamacro",
  16567. height: math.unit(420, "km")
  16568. },
  16569. ]
  16570. ))
  16571. characterMakers.push(() => makeCharacter(
  16572. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16573. {
  16574. front: {
  16575. height: math.unit(2, "m"),
  16576. weight: math.unit(115, "kg"),
  16577. name: "Front",
  16578. image: {
  16579. source: "./media/characters/pia-sr/front.svg",
  16580. extra: 760 / 730,
  16581. bottom: 0.015
  16582. }
  16583. },
  16584. back: {
  16585. height: math.unit(2, "m"),
  16586. weight: math.unit(115, "kg"),
  16587. name: "Back",
  16588. image: {
  16589. source: "./media/characters/pia-sr/back.svg",
  16590. extra: 760 / 730,
  16591. bottom: 0.01
  16592. }
  16593. },
  16594. hand: {
  16595. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16596. name: "Hand",
  16597. image: {
  16598. source: "./media/characters/pia-sr/hand.svg"
  16599. }
  16600. },
  16601. foot: {
  16602. height: math.unit(1.83, "feet"),
  16603. name: "Foot",
  16604. image: {
  16605. source: "./media/characters/pia-sr/foot.svg"
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Micro",
  16612. height: math.unit(88, "mm")
  16613. },
  16614. {
  16615. name: "Normal",
  16616. height: math.unit(2, "m"),
  16617. default: true
  16618. },
  16619. {
  16620. name: "Macro",
  16621. height: math.unit(200, "m")
  16622. },
  16623. {
  16624. name: "Megamacro",
  16625. height: math.unit(420, "km")
  16626. },
  16627. ]
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16631. {
  16632. front: {
  16633. height: math.unit(8 + 2 / 12, "feet"),
  16634. weight: math.unit(300, "lb"),
  16635. name: "Front",
  16636. image: {
  16637. source: "./media/characters/kibibyte/front.svg",
  16638. extra: 2221 / 2098,
  16639. bottom: 0.04
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Normal",
  16646. height: math.unit(8 + 2 / 12, "feet"),
  16647. default: true
  16648. },
  16649. {
  16650. name: "Socialable Macro",
  16651. height: math.unit(50, "feet")
  16652. },
  16653. {
  16654. name: "Macro",
  16655. height: math.unit(300, "feet")
  16656. },
  16657. {
  16658. name: "Megamacro",
  16659. height: math.unit(500, "miles")
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(6, "feet"),
  16668. weight: math.unit(150, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/felix/front.svg",
  16672. extra: 762 / 722,
  16673. bottom: 0.02
  16674. }
  16675. },
  16676. frontClothed: {
  16677. height: math.unit(6, "feet"),
  16678. weight: math.unit(150, "lb"),
  16679. name: "Front (Clothed)",
  16680. image: {
  16681. source: "./media/characters/felix/front-clothed.svg",
  16682. extra: 762 / 722,
  16683. bottom: 0.02
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(6 + 8 / 12, "feet"),
  16691. default: true
  16692. },
  16693. {
  16694. name: "Macro",
  16695. height: math.unit(2600, "feet")
  16696. },
  16697. {
  16698. name: "Megamacro",
  16699. height: math.unit(450, "miles")
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16705. {
  16706. front: {
  16707. height: math.unit(6 + 1 / 12, "feet"),
  16708. weight: math.unit(250, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/tobo/front.svg",
  16712. extra: 608 / 586,
  16713. bottom: 0.023
  16714. }
  16715. },
  16716. back: {
  16717. height: math.unit(6 + 1 / 12, "feet"),
  16718. weight: math.unit(250, "lb"),
  16719. name: "Back",
  16720. image: {
  16721. source: "./media/characters/tobo/back.svg",
  16722. extra: 608 / 586
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Nano",
  16729. height: math.unit(2, "nm")
  16730. },
  16731. {
  16732. name: "Megamicro",
  16733. height: math.unit(0.1, "mm")
  16734. },
  16735. {
  16736. name: "Micro",
  16737. height: math.unit(1, "inch"),
  16738. default: true
  16739. },
  16740. {
  16741. name: "Human-sized",
  16742. height: math.unit(6 + 1 / 12, "feet")
  16743. },
  16744. {
  16745. name: "Macro",
  16746. height: math.unit(250, "feet")
  16747. },
  16748. {
  16749. name: "Megamacro",
  16750. height: math.unit(75, "miles")
  16751. },
  16752. {
  16753. name: "Texas-sized",
  16754. height: math.unit(750, "miles")
  16755. },
  16756. {
  16757. name: "Teramacro",
  16758. height: math.unit(50000, "miles")
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16764. {
  16765. front: {
  16766. height: math.unit(6, "feet"),
  16767. weight: math.unit(269, "lb"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/danny-kapowsky/front.svg",
  16771. extra: 766 / 736,
  16772. bottom: 0.044
  16773. }
  16774. },
  16775. back: {
  16776. height: math.unit(6, "feet"),
  16777. weight: math.unit(269, "lb"),
  16778. name: "Back",
  16779. image: {
  16780. source: "./media/characters/danny-kapowsky/back.svg",
  16781. extra: 797 / 760,
  16782. bottom: 0.025
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Macro",
  16789. height: math.unit(150, "feet"),
  16790. default: true
  16791. },
  16792. {
  16793. name: "Macro+",
  16794. height: math.unit(200, "feet")
  16795. },
  16796. {
  16797. name: "Macro++",
  16798. height: math.unit(300, "feet")
  16799. },
  16800. {
  16801. name: "Macro+++",
  16802. height: math.unit(400, "feet")
  16803. },
  16804. ]
  16805. ))
  16806. characterMakers.push(() => makeCharacter(
  16807. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16808. {
  16809. side: {
  16810. height: math.unit(6, "feet"),
  16811. weight: math.unit(170, "lb"),
  16812. name: "Side",
  16813. image: {
  16814. source: "./media/characters/finn/side.svg",
  16815. extra: 1953 / 1807,
  16816. bottom: 0.057
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Megamacro",
  16823. height: math.unit(14445, "feet"),
  16824. default: true
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16830. {
  16831. front: {
  16832. height: math.unit(5 + 6 / 12, "feet"),
  16833. weight: math.unit(125, "lb"),
  16834. name: "Front",
  16835. image: {
  16836. source: "./media/characters/roy/front.svg",
  16837. extra: 1,
  16838. bottom: 0.11
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Micro",
  16845. height: math.unit(3, "inches"),
  16846. default: true
  16847. },
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(5 + 6 / 12, "feet")
  16851. },
  16852. {
  16853. name: "Lesser Macro",
  16854. height: math.unit(60, "feet")
  16855. },
  16856. {
  16857. name: "Greater Macro",
  16858. height: math.unit(120, "feet")
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16864. {
  16865. front: {
  16866. height: math.unit(6, "feet"),
  16867. weight: math.unit(100, "lb"),
  16868. name: "Front",
  16869. image: {
  16870. source: "./media/characters/aevsivs/front.svg",
  16871. extra: 1,
  16872. bottom: 0.03
  16873. }
  16874. },
  16875. back: {
  16876. height: math.unit(6, "feet"),
  16877. weight: math.unit(100, "lb"),
  16878. name: "Back",
  16879. image: {
  16880. source: "./media/characters/aevsivs/back.svg"
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Micro",
  16887. height: math.unit(2, "inches"),
  16888. default: true
  16889. },
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(5, "feet")
  16893. },
  16894. ]
  16895. ))
  16896. characterMakers.push(() => makeCharacter(
  16897. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16898. {
  16899. front: {
  16900. height: math.unit(5 + 7 / 12, "feet"),
  16901. weight: math.unit(159, "lb"),
  16902. name: "Front",
  16903. image: {
  16904. source: "./media/characters/hildegard/front.svg",
  16905. extra: 289 / 269,
  16906. bottom: 7.63 / 297.8
  16907. }
  16908. },
  16909. back: {
  16910. height: math.unit(5 + 7 / 12, "feet"),
  16911. weight: math.unit(159, "lb"),
  16912. name: "Back",
  16913. image: {
  16914. source: "./media/characters/hildegard/back.svg",
  16915. extra: 280 / 260,
  16916. bottom: 2.3 / 282
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Normal",
  16923. height: math.unit(5 + 7 / 12, "feet"),
  16924. default: true
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16930. {
  16931. bernard: {
  16932. height: math.unit(2 + 7 / 12, "feet"),
  16933. weight: math.unit(66, "lb"),
  16934. name: "Bernard",
  16935. rename: true,
  16936. image: {
  16937. source: "./media/characters/bernard-wilder/bernard.svg",
  16938. extra: 192 / 128,
  16939. bottom: 0.05
  16940. }
  16941. },
  16942. wilder: {
  16943. height: math.unit(5 + 8 / 12, "feet"),
  16944. weight: math.unit(143, "lb"),
  16945. name: "Wilder",
  16946. rename: true,
  16947. image: {
  16948. source: "./media/characters/bernard-wilder/wilder.svg",
  16949. extra: 361 / 312,
  16950. bottom: 0.02
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Normal",
  16957. height: math.unit(2 + 7 / 12, "feet"),
  16958. default: true
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16964. {
  16965. anthro: {
  16966. height: math.unit(6 + 1 / 12, "feet"),
  16967. weight: math.unit(155, "lb"),
  16968. name: "Anthro",
  16969. image: {
  16970. source: "./media/characters/hearth/anthro.svg",
  16971. extra: 1178/1136,
  16972. bottom: 28/1206
  16973. }
  16974. },
  16975. feral: {
  16976. height: math.unit(3.78, "feet"),
  16977. weight: math.unit(35, "kg"),
  16978. name: "Feral",
  16979. image: {
  16980. source: "./media/characters/hearth/feral.svg",
  16981. extra: 153 / 135,
  16982. bottom: 0.03
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(6 + 1 / 12, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16996. {
  16997. front: {
  16998. height: math.unit(6, "feet"),
  16999. weight: math.unit(182, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/ingrid/front.svg",
  17003. extra: 294 / 268,
  17004. bottom: 0.027
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(6, "feet"),
  17012. default: true
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17018. {
  17019. eevee: {
  17020. height: math.unit(2 + 10 / 12, "feet"),
  17021. weight: math.unit(86, "lb"),
  17022. name: "Malgam",
  17023. image: {
  17024. source: "./media/characters/malgam/eevee.svg",
  17025. extra: 952/784,
  17026. bottom: 38/990
  17027. }
  17028. },
  17029. sylveon: {
  17030. height: math.unit(4, "feet"),
  17031. weight: math.unit(101, "lb"),
  17032. name: "Future Malgam",
  17033. rename: true,
  17034. image: {
  17035. source: "./media/characters/malgam/sylveon.svg",
  17036. extra: 371 / 325,
  17037. bottom: 0.015
  17038. }
  17039. },
  17040. gigantamax: {
  17041. height: math.unit(50, "feet"),
  17042. name: "Gigantamax Malgam",
  17043. rename: true,
  17044. image: {
  17045. source: "./media/characters/malgam/gigantamax.svg"
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(2 + 10 / 12, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17059. {
  17060. front: {
  17061. height: math.unit(5 + 11 / 12, "feet"),
  17062. weight: math.unit(188, "lb"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/fleur/front.svg",
  17066. extra: 309 / 283,
  17067. bottom: 0.007
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(5 + 11 / 12, "feet"),
  17075. default: true
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17081. {
  17082. front: {
  17083. height: math.unit(5 + 4 / 12, "feet"),
  17084. weight: math.unit(122, "lb"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/jude/front.svg",
  17088. extra: 288 / 273,
  17089. bottom: 0.03
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(5 + 4 / 12, "feet"),
  17097. default: true
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17103. {
  17104. front: {
  17105. height: math.unit(5 + 11 / 12, "feet"),
  17106. weight: math.unit(190, "lb"),
  17107. name: "Front",
  17108. image: {
  17109. source: "./media/characters/seara/front.svg",
  17110. extra: 1,
  17111. bottom: 0.05
  17112. }
  17113. },
  17114. },
  17115. [
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(5 + 11 / 12, "feet"),
  17119. default: true
  17120. },
  17121. ]
  17122. ))
  17123. characterMakers.push(() => makeCharacter(
  17124. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17125. {
  17126. front: {
  17127. height: math.unit(16 + 5 / 12, "feet"),
  17128. weight: math.unit(524, "lb"),
  17129. name: "Front",
  17130. image: {
  17131. source: "./media/characters/caspian-lugia/front.svg",
  17132. extra: 1,
  17133. bottom: 0.04
  17134. }
  17135. },
  17136. },
  17137. [
  17138. {
  17139. name: "Normal",
  17140. height: math.unit(16 + 5 / 12, "feet"),
  17141. default: true
  17142. },
  17143. ]
  17144. ))
  17145. characterMakers.push(() => makeCharacter(
  17146. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17147. {
  17148. front: {
  17149. height: math.unit(5 + 7 / 12, "feet"),
  17150. weight: math.unit(170, "lb"),
  17151. name: "Front",
  17152. image: {
  17153. source: "./media/characters/mika/front.svg",
  17154. extra: 1,
  17155. bottom: 0.016
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Normal",
  17162. height: math.unit(5 + 7 / 12, "feet"),
  17163. default: true
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17169. {
  17170. front: {
  17171. height: math.unit(6 + 2 / 12, "feet"),
  17172. weight: math.unit(268, "lb"),
  17173. name: "Front",
  17174. image: {
  17175. source: "./media/characters/sol/front.svg",
  17176. extra: 247 / 231,
  17177. bottom: 0.05
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(6 + 2 / 12, "feet"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17191. {
  17192. buizel: {
  17193. height: math.unit(2 + 5 / 12, "feet"),
  17194. weight: math.unit(87, "lb"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/umiko/buizel.svg",
  17198. extra: 172 / 157,
  17199. bottom: 0.01
  17200. },
  17201. form: "buizel",
  17202. default: true
  17203. },
  17204. floatzel: {
  17205. height: math.unit(5 + 9 / 12, "feet"),
  17206. weight: math.unit(250, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/umiko/floatzel.svg",
  17210. extra: 1076/1006,
  17211. bottom: 15/1091
  17212. },
  17213. form: "floatzel",
  17214. default: true
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(2 + 5 / 12, "feet"),
  17221. form: "buizel",
  17222. default: true
  17223. },
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(5 + 9 / 12, "feet"),
  17227. form: "floatzel",
  17228. default: true
  17229. },
  17230. ],
  17231. {
  17232. "buizel": {
  17233. name: "Buizel"
  17234. },
  17235. "floatzel": {
  17236. name: "Floatzel",
  17237. default: true
  17238. }
  17239. }
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(6 + 2 / 12, "feet"),
  17246. weight: math.unit(146, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/iliac/front.svg",
  17250. extra: 389 / 365,
  17251. bottom: 0.035
  17252. }
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Normal",
  17258. height: math.unit(6 + 2 / 12, "feet"),
  17259. default: true
  17260. },
  17261. ]
  17262. ))
  17263. characterMakers.push(() => makeCharacter(
  17264. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17265. {
  17266. front: {
  17267. height: math.unit(6, "feet"),
  17268. weight: math.unit(170, "lb"),
  17269. name: "Front",
  17270. image: {
  17271. source: "./media/characters/topaz/front.svg",
  17272. extra: 317 / 303,
  17273. bottom: 0.055
  17274. }
  17275. },
  17276. },
  17277. [
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(6, "feet"),
  17281. default: true
  17282. },
  17283. ]
  17284. ))
  17285. characterMakers.push(() => makeCharacter(
  17286. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17287. {
  17288. front: {
  17289. height: math.unit(5 + 11 / 12, "feet"),
  17290. weight: math.unit(144, "lb"),
  17291. name: "Front",
  17292. image: {
  17293. source: "./media/characters/gabriel/front.svg",
  17294. extra: 285 / 262,
  17295. bottom: 0.004
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Normal",
  17302. height: math.unit(5 + 11 / 12, "feet"),
  17303. default: true
  17304. },
  17305. ]
  17306. ))
  17307. characterMakers.push(() => makeCharacter(
  17308. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17309. {
  17310. side: {
  17311. height: math.unit(6 + 5 / 12, "feet"),
  17312. weight: math.unit(300, "lb"),
  17313. name: "Side",
  17314. image: {
  17315. source: "./media/characters/tempest-suicune/side.svg",
  17316. extra: 195 / 154,
  17317. bottom: 0.04
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Normal",
  17324. height: math.unit(6 + 5 / 12, "feet"),
  17325. default: true
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17331. {
  17332. front: {
  17333. height: math.unit(7 + 2 / 12, "feet"),
  17334. weight: math.unit(322, "lb"),
  17335. name: "Front",
  17336. image: {
  17337. source: "./media/characters/vulcan/front.svg",
  17338. extra: 154 / 147,
  17339. bottom: 0.04
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(7 + 2 / 12, "feet"),
  17347. default: true
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17353. {
  17354. front: {
  17355. height: math.unit(5 + 10 / 12, "feet"),
  17356. weight: math.unit(264, "lb"),
  17357. name: "Front",
  17358. image: {
  17359. source: "./media/characters/gault/front.svg",
  17360. extra: 161 / 140,
  17361. bottom: 0.028
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(5 + 10 / 12, "feet"),
  17369. default: true
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(6, "feet"),
  17378. weight: math.unit(150, "lb"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/shard/front.svg",
  17382. extra: 273 / 238,
  17383. bottom: 0.02
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(3 + 6 / 12, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17397. {
  17398. front: {
  17399. height: math.unit(5 + 11 / 12, "feet"),
  17400. weight: math.unit(146, "lb"),
  17401. name: "Front",
  17402. image: {
  17403. source: "./media/characters/ashe/front.svg",
  17404. extra: 400 / 373,
  17405. bottom: 0.01
  17406. }
  17407. },
  17408. },
  17409. [
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(5 + 11 / 12, "feet"),
  17413. default: true
  17414. },
  17415. ]
  17416. ))
  17417. characterMakers.push(() => makeCharacter(
  17418. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17419. {
  17420. front: {
  17421. height: math.unit(5 + 5 / 12, "feet"),
  17422. weight: math.unit(135, "lb"),
  17423. name: "Front",
  17424. image: {
  17425. source: "./media/characters/beatrix/front.svg",
  17426. extra: 392 / 379,
  17427. bottom: 0.01
  17428. }
  17429. },
  17430. },
  17431. [
  17432. {
  17433. name: "Normal",
  17434. height: math.unit(6, "feet"),
  17435. default: true
  17436. },
  17437. ]
  17438. ))
  17439. characterMakers.push(() => makeCharacter(
  17440. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17441. {
  17442. front: {
  17443. height: math.unit(6 + 2/12, "feet"),
  17444. weight: math.unit(135, "lb"),
  17445. name: "Front",
  17446. image: {
  17447. source: "./media/characters/ignatius/front.svg",
  17448. extra: 1380/1259,
  17449. bottom: 27/1407
  17450. }
  17451. },
  17452. },
  17453. [
  17454. {
  17455. name: "Normal",
  17456. height: math.unit(6 + 2/12, "feet"),
  17457. default: true
  17458. },
  17459. ]
  17460. ))
  17461. characterMakers.push(() => makeCharacter(
  17462. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17463. {
  17464. front: {
  17465. height: math.unit(6 + 2 / 12, "feet"),
  17466. weight: math.unit(138, "lb"),
  17467. name: "Front",
  17468. image: {
  17469. source: "./media/characters/mei-li/front.svg",
  17470. extra: 237 / 229,
  17471. bottom: 0.03
  17472. }
  17473. },
  17474. },
  17475. [
  17476. {
  17477. name: "Normal",
  17478. height: math.unit(6 + 2 / 12, "feet"),
  17479. default: true
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17485. {
  17486. front: {
  17487. height: math.unit(2 + 4 / 12, "feet"),
  17488. weight: math.unit(62, "lb"),
  17489. name: "Front",
  17490. image: {
  17491. source: "./media/characters/puru/front.svg",
  17492. extra: 206 / 149,
  17493. bottom: 0.06
  17494. }
  17495. },
  17496. },
  17497. [
  17498. {
  17499. name: "Normal",
  17500. height: math.unit(2 + 4 / 12, "feet"),
  17501. default: true
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17507. {
  17508. anthro: {
  17509. height: math.unit(5 + 8/12, "feet"),
  17510. weight: math.unit(200, "lb"),
  17511. energyNeed: math.unit(2000, "kcal"),
  17512. name: "Anthro",
  17513. image: {
  17514. source: "./media/characters/kee/anthro.svg",
  17515. extra: 3251/3184,
  17516. bottom: 250/3501
  17517. }
  17518. },
  17519. taur: {
  17520. height: math.unit(11, "feet"),
  17521. weight: math.unit(500, "lb"),
  17522. energyNeed: math.unit(5000, "kcal"),
  17523. name: "Taur",
  17524. image: {
  17525. source: "./media/characters/kee/taur.svg",
  17526. extra: 1362/1320,
  17527. bottom: 83/1445
  17528. }
  17529. },
  17530. },
  17531. [
  17532. {
  17533. name: "Normal",
  17534. height: math.unit(5 + 8/12, "feet"),
  17535. default: true
  17536. },
  17537. {
  17538. name: "Macro",
  17539. height: math.unit(35, "feet")
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17545. {
  17546. anthro: {
  17547. height: math.unit(7, "feet"),
  17548. weight: math.unit(190, "lb"),
  17549. name: "Anthro",
  17550. image: {
  17551. source: "./media/characters/cobalt-dracha/anthro.svg",
  17552. extra: 231 / 225,
  17553. bottom: 0.04
  17554. }
  17555. },
  17556. feral: {
  17557. height: math.unit(9 + 7 / 12, "feet"),
  17558. weight: math.unit(294, "lb"),
  17559. name: "Feral",
  17560. image: {
  17561. source: "./media/characters/cobalt-dracha/feral.svg",
  17562. extra: 692 / 633,
  17563. bottom: 0.05
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(7, "feet"),
  17571. default: true
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17577. {
  17578. fallen: {
  17579. height: math.unit(11 + 8 / 12, "feet"),
  17580. weight: math.unit(485, "lb"),
  17581. name: "Java (Fallen)",
  17582. rename: true,
  17583. image: {
  17584. source: "./media/characters/java/fallen.svg",
  17585. extra: 226 / 208,
  17586. bottom: 0.005
  17587. }
  17588. },
  17589. godkin: {
  17590. height: math.unit(10 + 6 / 12, "feet"),
  17591. weight: math.unit(328, "lb"),
  17592. name: "Java (Godkin)",
  17593. rename: true,
  17594. image: {
  17595. source: "./media/characters/java/godkin.svg",
  17596. extra: 1104/1068,
  17597. bottom: 36/1140
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(11 + 8 / 12, "feet"),
  17605. default: true
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(5 + 9 / 12, "feet"),
  17614. weight: math.unit(170, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/purna/front.svg",
  17618. extra: 239 / 229,
  17619. bottom: 0.01
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(5 + 9 / 12, "feet"),
  17627. default: true
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17633. {
  17634. front: {
  17635. height: math.unit(5 + 9 / 12, "feet"),
  17636. weight: math.unit(142, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/kuva/front.svg",
  17640. extra: 281 / 271,
  17641. bottom: 0.006
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(5 + 9 / 12, "feet"),
  17649. default: true
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17655. {
  17656. anthro: {
  17657. height: math.unit(9 + 2 / 12, "feet"),
  17658. weight: math.unit(270, "lb"),
  17659. name: "Anthro",
  17660. image: {
  17661. source: "./media/characters/embra/anthro.svg",
  17662. extra: 200 / 187,
  17663. bottom: 0.02
  17664. }
  17665. },
  17666. feral: {
  17667. height: math.unit(18 + 8 / 12, "feet"),
  17668. weight: math.unit(576, "lb"),
  17669. name: "Feral",
  17670. image: {
  17671. source: "./media/characters/embra/feral.svg",
  17672. extra: 152 / 137,
  17673. bottom: 0.037
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(9 + 2 / 12, "feet"),
  17681. default: true
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17687. {
  17688. anthro: {
  17689. height: math.unit(10 + 9 / 12, "feet"),
  17690. weight: math.unit(224, "lb"),
  17691. name: "Anthro",
  17692. image: {
  17693. source: "./media/characters/grottos/anthro.svg",
  17694. extra: 350 / 332,
  17695. bottom: 0.045
  17696. }
  17697. },
  17698. feral: {
  17699. height: math.unit(20 + 7 / 12, "feet"),
  17700. weight: math.unit(629, "lb"),
  17701. name: "Feral",
  17702. image: {
  17703. source: "./media/characters/grottos/feral.svg",
  17704. extra: 207 / 190,
  17705. bottom: 0.05
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(10 + 9 / 12, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17719. {
  17720. anthro: {
  17721. height: math.unit(9 + 6 / 12, "feet"),
  17722. weight: math.unit(298, "lb"),
  17723. name: "Anthro",
  17724. image: {
  17725. source: "./media/characters/frifna/anthro.svg",
  17726. extra: 282 / 269,
  17727. bottom: 0.015
  17728. }
  17729. },
  17730. feral: {
  17731. height: math.unit(16 + 2 / 12, "feet"),
  17732. weight: math.unit(624, "lb"),
  17733. name: "Feral",
  17734. image: {
  17735. source: "./media/characters/frifna/feral.svg"
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(9 + 6 / 12, "feet"),
  17743. default: true
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(6 + 2 / 12, "feet"),
  17752. weight: math.unit(168, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/elise/front.svg",
  17756. extra: 276 / 271
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(6 + 2 / 12, "feet"),
  17764. default: true
  17765. },
  17766. ]
  17767. ))
  17768. characterMakers.push(() => makeCharacter(
  17769. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17770. {
  17771. front: {
  17772. height: math.unit(5 + 10 / 12, "feet"),
  17773. weight: math.unit(210, "lb"),
  17774. name: "Front",
  17775. image: {
  17776. source: "./media/characters/glade/front.svg",
  17777. extra: 258 / 247,
  17778. bottom: 0.008
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(5 + 10 / 12, "feet"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17792. {
  17793. front: {
  17794. height: math.unit(5 + 10 / 12, "feet"),
  17795. weight: math.unit(129, "lb"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/rina/front.svg",
  17799. extra: 266 / 255,
  17800. bottom: 0.005
  17801. }
  17802. },
  17803. },
  17804. [
  17805. {
  17806. name: "Normal",
  17807. height: math.unit(5 + 10 / 12, "feet"),
  17808. default: true
  17809. },
  17810. ]
  17811. ))
  17812. characterMakers.push(() => makeCharacter(
  17813. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17814. {
  17815. front: {
  17816. height: math.unit(6 + 1 / 12, "feet"),
  17817. weight: math.unit(192, "lb"),
  17818. name: "Front",
  17819. image: {
  17820. source: "./media/characters/veronica/front.svg",
  17821. extra: 319 / 309,
  17822. bottom: 0.005
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(6 + 1 / 12, "feet"),
  17830. default: true
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17836. {
  17837. front: {
  17838. height: math.unit(9 + 3 / 12, "feet"),
  17839. weight: math.unit(1100, "lb"),
  17840. name: "Front",
  17841. image: {
  17842. source: "./media/characters/braxton/front.svg",
  17843. extra: 1057 / 984,
  17844. bottom: 0.05
  17845. }
  17846. },
  17847. },
  17848. [
  17849. {
  17850. name: "Normal",
  17851. height: math.unit(9 + 3 / 12, "feet")
  17852. },
  17853. {
  17854. name: "Giant",
  17855. height: math.unit(300, "feet"),
  17856. default: true
  17857. },
  17858. {
  17859. name: "Macro",
  17860. height: math.unit(700, "feet")
  17861. },
  17862. {
  17863. name: "Megamacro",
  17864. height: math.unit(6000, "feet")
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17870. {
  17871. front: {
  17872. height: math.unit(6 + 7 / 12, "feet"),
  17873. weight: math.unit(150, "lb"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/blue-feyonics/front.svg",
  17877. extra: 1403 / 1306,
  17878. bottom: 0.047
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(6 + 7 / 12, "feet"),
  17886. default: true
  17887. },
  17888. ]
  17889. ))
  17890. characterMakers.push(() => makeCharacter(
  17891. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17892. {
  17893. front: {
  17894. height: math.unit(1.8, "meters"),
  17895. weight: math.unit(60, "kg"),
  17896. name: "Front",
  17897. image: {
  17898. source: "./media/characters/maxwell/front.svg",
  17899. extra: 2060 / 1873
  17900. }
  17901. },
  17902. },
  17903. [
  17904. {
  17905. name: "Micro",
  17906. height: math.unit(1, "mm")
  17907. },
  17908. {
  17909. name: "Normal",
  17910. height: math.unit(1.8, "meter"),
  17911. default: true
  17912. },
  17913. {
  17914. name: "Macro",
  17915. height: math.unit(30, "meters")
  17916. },
  17917. {
  17918. name: "Megamacro",
  17919. height: math.unit(10, "km")
  17920. },
  17921. ]
  17922. ))
  17923. characterMakers.push(() => makeCharacter(
  17924. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17925. {
  17926. front: {
  17927. height: math.unit(6, "feet"),
  17928. weight: math.unit(150, "lb"),
  17929. name: "Front",
  17930. image: {
  17931. source: "./media/characters/jack/front.svg",
  17932. extra: 1754 / 1640,
  17933. bottom: 0.01
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(80000, "feet"),
  17941. default: true
  17942. },
  17943. {
  17944. name: "Max size",
  17945. height: math.unit(10, "lightyears")
  17946. },
  17947. ]
  17948. ))
  17949. characterMakers.push(() => makeCharacter(
  17950. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17951. {
  17952. urban: {
  17953. height: math.unit(5, "feet"),
  17954. weight: math.unit(240, "lb"),
  17955. name: "Urban",
  17956. image: {
  17957. source: "./media/characters/cafat/urban.svg",
  17958. extra: 1223/1126,
  17959. bottom: 205/1428
  17960. }
  17961. },
  17962. summer: {
  17963. height: math.unit(5, "feet"),
  17964. weight: math.unit(240, "lb"),
  17965. name: "Summer",
  17966. image: {
  17967. source: "./media/characters/cafat/summer.svg",
  17968. extra: 1223/1126,
  17969. bottom: 205/1428
  17970. }
  17971. },
  17972. winter: {
  17973. height: math.unit(5, "feet"),
  17974. weight: math.unit(240, "lb"),
  17975. name: "Winter",
  17976. image: {
  17977. source: "./media/characters/cafat/winter.svg",
  17978. extra: 1223/1126,
  17979. bottom: 205/1428
  17980. }
  17981. },
  17982. lingerie: {
  17983. height: math.unit(5, "feet"),
  17984. weight: math.unit(240, "lb"),
  17985. name: "Lingerie",
  17986. image: {
  17987. source: "./media/characters/cafat/lingerie.svg",
  17988. extra: 1223/1126,
  17989. bottom: 205/1428
  17990. }
  17991. },
  17992. upright: {
  17993. height: math.unit(6.3, "feet"),
  17994. weight: math.unit(240, "lb"),
  17995. name: "Upright",
  17996. image: {
  17997. source: "./media/characters/cafat/upright.svg",
  17998. bottom: 0.01
  17999. }
  18000. },
  18001. uprightFull: {
  18002. height: math.unit(6.3, "feet"),
  18003. weight: math.unit(240, "lb"),
  18004. name: "Upright (Full)",
  18005. image: {
  18006. source: "./media/characters/cafat/upright-full.svg",
  18007. bottom: 0.01
  18008. }
  18009. },
  18010. },
  18011. [
  18012. {
  18013. name: "Small",
  18014. height: math.unit(5, "feet"),
  18015. default: true
  18016. },
  18017. {
  18018. name: "Large",
  18019. height: math.unit(13, "feet")
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(6, "feet"),
  18028. weight: math.unit(150, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/verin-raharra/front.svg",
  18032. extra: 5019 / 4835,
  18033. bottom: 0.023
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Normal",
  18040. height: math.unit(7 + 5 / 12, "feet"),
  18041. default: true
  18042. },
  18043. {
  18044. name: "Upsized",
  18045. height: math.unit(20, "feet")
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18051. {
  18052. front: {
  18053. height: math.unit(7, "feet"),
  18054. weight: math.unit(230, "lb"),
  18055. name: "Front",
  18056. image: {
  18057. source: "./media/characters/nakata/front.svg",
  18058. extra: 1.005,
  18059. bottom: 0.01
  18060. }
  18061. },
  18062. },
  18063. [
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(7, "feet"),
  18067. default: true
  18068. },
  18069. {
  18070. name: "Big",
  18071. height: math.unit(14, "feet")
  18072. },
  18073. {
  18074. name: "Macro",
  18075. height: math.unit(400, "feet")
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(4.91, "feet"),
  18084. weight: math.unit(100, "lb"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/lily/front.svg",
  18088. extra: 1585 / 1415,
  18089. bottom: 0.02
  18090. }
  18091. },
  18092. },
  18093. [
  18094. {
  18095. name: "Normal",
  18096. height: math.unit(4.91, "feet"),
  18097. default: true
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18103. {
  18104. laying: {
  18105. height: math.unit(4 + 4 / 12, "feet"),
  18106. weight: math.unit(600, "lb"),
  18107. name: "Laying",
  18108. image: {
  18109. source: "./media/characters/sheila/laying.svg",
  18110. extra: 1333 / 1265,
  18111. bottom: 0.16
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Normal",
  18118. height: math.unit(4 + 4 / 12, "feet"),
  18119. default: true
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18125. {
  18126. front: {
  18127. height: math.unit(6, "feet"),
  18128. weight: math.unit(190, "lb"),
  18129. name: "Front",
  18130. image: {
  18131. source: "./media/characters/sax/front.svg",
  18132. extra: 1187 / 973,
  18133. bottom: 0.042
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Micro",
  18140. height: math.unit(4, "inches"),
  18141. default: true
  18142. },
  18143. ]
  18144. ))
  18145. characterMakers.push(() => makeCharacter(
  18146. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18147. {
  18148. front: {
  18149. height: math.unit(6, "feet"),
  18150. weight: math.unit(150, "lb"),
  18151. name: "Front",
  18152. image: {
  18153. source: "./media/characters/pandora/front.svg",
  18154. extra: 2720 / 2556,
  18155. bottom: 0.015
  18156. }
  18157. },
  18158. back: {
  18159. height: math.unit(6, "feet"),
  18160. weight: math.unit(150, "lb"),
  18161. name: "Back",
  18162. image: {
  18163. source: "./media/characters/pandora/back.svg",
  18164. extra: 2720 / 2556,
  18165. bottom: 0.01
  18166. }
  18167. },
  18168. beans: {
  18169. height: math.unit(6 / 8, "feet"),
  18170. name: "Beans",
  18171. image: {
  18172. source: "./media/characters/pandora/beans.svg"
  18173. }
  18174. },
  18175. collar: {
  18176. height: math.unit(0.31, "feet"),
  18177. name: "Collar",
  18178. image: {
  18179. source: "./media/characters/pandora/collar.svg"
  18180. }
  18181. },
  18182. skirt: {
  18183. height: math.unit(6, "feet"),
  18184. weight: math.unit(150, "lb"),
  18185. name: "Skirt",
  18186. image: {
  18187. source: "./media/characters/pandora/skirt.svg",
  18188. extra: 1622 / 1525,
  18189. bottom: 0.015
  18190. }
  18191. },
  18192. hoodie: {
  18193. height: math.unit(6, "feet"),
  18194. weight: math.unit(150, "lb"),
  18195. name: "Hoodie",
  18196. image: {
  18197. source: "./media/characters/pandora/hoodie.svg",
  18198. extra: 1622 / 1525,
  18199. bottom: 0.015
  18200. }
  18201. },
  18202. casual: {
  18203. height: math.unit(6, "feet"),
  18204. weight: math.unit(150, "lb"),
  18205. name: "Casual",
  18206. image: {
  18207. source: "./media/characters/pandora/casual.svg",
  18208. extra: 1622 / 1525,
  18209. bottom: 0.015
  18210. }
  18211. },
  18212. },
  18213. [
  18214. {
  18215. name: "Normal",
  18216. height: math.unit(6, "feet")
  18217. },
  18218. {
  18219. name: "Big Steppy",
  18220. height: math.unit(1, "km"),
  18221. default: true
  18222. },
  18223. {
  18224. name: "Galactic Steppy",
  18225. height: math.unit(2, "gigameters")
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18231. {
  18232. side: {
  18233. height: math.unit(10, "feet"),
  18234. weight: math.unit(800, "kg"),
  18235. name: "Side",
  18236. image: {
  18237. source: "./media/characters/venio-darcony/side.svg",
  18238. extra: 1373 / 1003,
  18239. bottom: 0.037
  18240. }
  18241. },
  18242. front: {
  18243. height: math.unit(19, "feet"),
  18244. weight: math.unit(800, "kg"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/venio-darcony/front.svg"
  18248. }
  18249. },
  18250. back: {
  18251. height: math.unit(19, "feet"),
  18252. weight: math.unit(800, "kg"),
  18253. name: "Back",
  18254. image: {
  18255. source: "./media/characters/venio-darcony/back.svg"
  18256. }
  18257. },
  18258. sideNsfw: {
  18259. height: math.unit(10, "feet"),
  18260. weight: math.unit(800, "kg"),
  18261. name: "Side (NSFW)",
  18262. image: {
  18263. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18264. extra: 1373 / 1003,
  18265. bottom: 0.037
  18266. }
  18267. },
  18268. frontNsfw: {
  18269. height: math.unit(19, "feet"),
  18270. weight: math.unit(800, "kg"),
  18271. name: "Front (NSFW)",
  18272. image: {
  18273. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18274. }
  18275. },
  18276. backNsfw: {
  18277. height: math.unit(19, "feet"),
  18278. weight: math.unit(800, "kg"),
  18279. name: "Back (NSFW)",
  18280. image: {
  18281. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18282. }
  18283. },
  18284. sideArmored: {
  18285. height: math.unit(10, "feet"),
  18286. weight: math.unit(800, "kg"),
  18287. name: "Side (Armored)",
  18288. image: {
  18289. source: "./media/characters/venio-darcony/side-armored.svg",
  18290. extra: 1373 / 1003,
  18291. bottom: 0.037
  18292. }
  18293. },
  18294. frontArmored: {
  18295. height: math.unit(19, "feet"),
  18296. weight: math.unit(900, "kg"),
  18297. name: "Front (Armored)",
  18298. image: {
  18299. source: "./media/characters/venio-darcony/front-armored.svg"
  18300. }
  18301. },
  18302. backArmored: {
  18303. height: math.unit(19, "feet"),
  18304. weight: math.unit(900, "kg"),
  18305. name: "Back (Armored)",
  18306. image: {
  18307. source: "./media/characters/venio-darcony/back-armored.svg"
  18308. }
  18309. },
  18310. sword: {
  18311. height: math.unit(10, "feet"),
  18312. weight: math.unit(50, "lb"),
  18313. name: "Sword",
  18314. image: {
  18315. source: "./media/characters/venio-darcony/sword.svg"
  18316. }
  18317. },
  18318. },
  18319. [
  18320. {
  18321. name: "Normal",
  18322. height: math.unit(10, "feet")
  18323. },
  18324. {
  18325. name: "Macro",
  18326. height: math.unit(130, "feet"),
  18327. default: true
  18328. },
  18329. {
  18330. name: "Macro+",
  18331. height: math.unit(240, "feet")
  18332. },
  18333. ]
  18334. ))
  18335. characterMakers.push(() => makeCharacter(
  18336. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18337. {
  18338. front: {
  18339. height: math.unit(6, "feet"),
  18340. weight: math.unit(150, "lb"),
  18341. name: "Front",
  18342. image: {
  18343. source: "./media/characters/veski/front.svg",
  18344. extra: 1299 / 1225,
  18345. bottom: 0.04
  18346. }
  18347. },
  18348. back: {
  18349. height: math.unit(6, "feet"),
  18350. weight: math.unit(150, "lb"),
  18351. name: "Back",
  18352. image: {
  18353. source: "./media/characters/veski/back.svg",
  18354. extra: 1299 / 1225,
  18355. bottom: 0.008
  18356. }
  18357. },
  18358. maw: {
  18359. height: math.unit(1.5 * 1.21, "feet"),
  18360. name: "Maw",
  18361. image: {
  18362. source: "./media/characters/veski/maw.svg"
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Macro",
  18369. height: math.unit(2, "km"),
  18370. default: true
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18376. {
  18377. front: {
  18378. height: math.unit(5 + 7 / 12, "feet"),
  18379. name: "Front",
  18380. image: {
  18381. source: "./media/characters/isabelle/front.svg",
  18382. extra: 2130 / 1976,
  18383. bottom: 0.05
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Supermicro",
  18390. height: math.unit(10, "micrometers")
  18391. },
  18392. {
  18393. name: "Micro",
  18394. height: math.unit(1, "inch")
  18395. },
  18396. {
  18397. name: "Tiny",
  18398. height: math.unit(5, "inches")
  18399. },
  18400. {
  18401. name: "Standard",
  18402. height: math.unit(5 + 7 / 12, "inches")
  18403. },
  18404. {
  18405. name: "Macro",
  18406. height: math.unit(80, "meters"),
  18407. default: true
  18408. },
  18409. {
  18410. name: "Megamacro",
  18411. height: math.unit(250, "meters")
  18412. },
  18413. {
  18414. name: "Gigamacro",
  18415. height: math.unit(5, "km")
  18416. },
  18417. {
  18418. name: "Cosmic",
  18419. height: math.unit(2.5e6, "miles")
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18425. {
  18426. front: {
  18427. height: math.unit(6, "feet"),
  18428. weight: math.unit(150, "lb"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/hanzo/front.svg",
  18432. extra: 374 / 344,
  18433. bottom: 0.02
  18434. }
  18435. },
  18436. },
  18437. [
  18438. {
  18439. name: "Normal",
  18440. height: math.unit(8, "feet"),
  18441. default: true
  18442. },
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18447. {
  18448. front: {
  18449. height: math.unit(7, "feet"),
  18450. weight: math.unit(130, "lb"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/anna/front.svg",
  18454. extra: 169 / 145,
  18455. bottom: 0.06
  18456. }
  18457. },
  18458. full: {
  18459. height: math.unit(4.96, "feet"),
  18460. weight: math.unit(220, "lb"),
  18461. name: "Full",
  18462. image: {
  18463. source: "./media/characters/anna/full.svg",
  18464. extra: 138 / 114,
  18465. bottom: 0.15
  18466. }
  18467. },
  18468. tongue: {
  18469. height: math.unit(2.53, "feet"),
  18470. name: "Tongue",
  18471. image: {
  18472. source: "./media/characters/anna/tongue.svg"
  18473. }
  18474. },
  18475. },
  18476. [
  18477. {
  18478. name: "Normal",
  18479. height: math.unit(7, "feet"),
  18480. default: true
  18481. },
  18482. ]
  18483. ))
  18484. characterMakers.push(() => makeCharacter(
  18485. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18486. {
  18487. front: {
  18488. height: math.unit(7, "feet"),
  18489. weight: math.unit(150, "lb"),
  18490. name: "Front",
  18491. image: {
  18492. source: "./media/characters/ian-corvid/front.svg",
  18493. extra: 150 / 142,
  18494. bottom: 0.02
  18495. }
  18496. },
  18497. back: {
  18498. height: math.unit(7, "feet"),
  18499. weight: math.unit(150, "lb"),
  18500. name: "Back",
  18501. image: {
  18502. source: "./media/characters/ian-corvid/back.svg",
  18503. extra: 150 / 143,
  18504. bottom: 0.01
  18505. }
  18506. },
  18507. stomping: {
  18508. height: math.unit(7, "feet"),
  18509. weight: math.unit(150, "lb"),
  18510. name: "Stomping",
  18511. image: {
  18512. source: "./media/characters/ian-corvid/stomping.svg",
  18513. extra: 76 / 72
  18514. }
  18515. },
  18516. sitting: {
  18517. height: math.unit(7 / 1.8, "feet"),
  18518. weight: math.unit(150, "lb"),
  18519. name: "Sitting",
  18520. image: {
  18521. source: "./media/characters/ian-corvid/sitting.svg",
  18522. extra: 1400 / 1269,
  18523. bottom: 0.15
  18524. }
  18525. },
  18526. },
  18527. [
  18528. {
  18529. name: "Tiny Microw",
  18530. height: math.unit(1, "inch")
  18531. },
  18532. {
  18533. name: "Microw",
  18534. height: math.unit(6, "inches")
  18535. },
  18536. {
  18537. name: "Crow",
  18538. height: math.unit(7 + 1 / 12, "feet"),
  18539. default: true
  18540. },
  18541. {
  18542. name: "Macrow",
  18543. height: math.unit(176, "feet")
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18549. {
  18550. front: {
  18551. height: math.unit(5 + 7 / 12, "feet"),
  18552. weight: math.unit(147, "lb"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/natalie-kellon/front.svg",
  18556. extra: 1214 / 1141,
  18557. bottom: 0.02
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Micro",
  18564. height: math.unit(1 / 16, "inch")
  18565. },
  18566. {
  18567. name: "Tiny",
  18568. height: math.unit(4, "inches")
  18569. },
  18570. {
  18571. name: "Normal",
  18572. height: math.unit(5 + 7 / 12, "feet"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "Amazon",
  18577. height: math.unit(12, "feet")
  18578. },
  18579. {
  18580. name: "Giantess",
  18581. height: math.unit(160, "meters")
  18582. },
  18583. {
  18584. name: "Titaness",
  18585. height: math.unit(800, "meters")
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(6, "feet"),
  18594. weight: math.unit(150, "lb"),
  18595. name: "Front",
  18596. image: {
  18597. source: "./media/characters/alluria/front.svg",
  18598. extra: 806 / 738,
  18599. bottom: 0.01
  18600. }
  18601. },
  18602. side: {
  18603. height: math.unit(6, "feet"),
  18604. weight: math.unit(150, "lb"),
  18605. name: "Side",
  18606. image: {
  18607. source: "./media/characters/alluria/side.svg",
  18608. extra: 800 / 750,
  18609. }
  18610. },
  18611. back: {
  18612. height: math.unit(6, "feet"),
  18613. weight: math.unit(150, "lb"),
  18614. name: "Back",
  18615. image: {
  18616. source: "./media/characters/alluria/back.svg",
  18617. extra: 806 / 738,
  18618. }
  18619. },
  18620. frontMaid: {
  18621. height: math.unit(6, "feet"),
  18622. weight: math.unit(150, "lb"),
  18623. name: "Front (Maid)",
  18624. image: {
  18625. source: "./media/characters/alluria/front-maid.svg",
  18626. extra: 806 / 738,
  18627. bottom: 0.01
  18628. }
  18629. },
  18630. sideMaid: {
  18631. height: math.unit(6, "feet"),
  18632. weight: math.unit(150, "lb"),
  18633. name: "Side (Maid)",
  18634. image: {
  18635. source: "./media/characters/alluria/side-maid.svg",
  18636. extra: 800 / 750,
  18637. bottom: 0.005
  18638. }
  18639. },
  18640. backMaid: {
  18641. height: math.unit(6, "feet"),
  18642. weight: math.unit(150, "lb"),
  18643. name: "Back (Maid)",
  18644. image: {
  18645. source: "./media/characters/alluria/back-maid.svg",
  18646. extra: 806 / 738,
  18647. }
  18648. },
  18649. },
  18650. [
  18651. {
  18652. name: "Micro",
  18653. height: math.unit(6, "inches"),
  18654. default: true
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18660. {
  18661. front: {
  18662. height: math.unit(6, "feet"),
  18663. weight: math.unit(150, "lb"),
  18664. name: "Front",
  18665. image: {
  18666. source: "./media/characters/kyle/front.svg",
  18667. extra: 1069 / 962,
  18668. bottom: 77.228 / 1727.45
  18669. }
  18670. },
  18671. },
  18672. [
  18673. {
  18674. name: "Macro",
  18675. height: math.unit(150, "feet"),
  18676. default: true
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18682. {
  18683. front: {
  18684. height: math.unit(6, "feet"),
  18685. weight: math.unit(300, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/duncan/front.svg",
  18689. extra: 1650 / 1482,
  18690. bottom: 0.05
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Macro",
  18697. height: math.unit(100, "feet"),
  18698. default: true
  18699. },
  18700. ]
  18701. ))
  18702. characterMakers.push(() => makeCharacter(
  18703. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18704. {
  18705. front: {
  18706. height: math.unit(5 + 4 / 12, "feet"),
  18707. weight: math.unit(220, "lb"),
  18708. name: "Front",
  18709. image: {
  18710. source: "./media/characters/memory/front.svg",
  18711. extra: 3641 / 3545,
  18712. bottom: 0.03
  18713. }
  18714. },
  18715. back: {
  18716. height: math.unit(5 + 4 / 12, "feet"),
  18717. weight: math.unit(220, "lb"),
  18718. name: "Back",
  18719. image: {
  18720. source: "./media/characters/memory/back.svg",
  18721. extra: 3641 / 3545,
  18722. bottom: 0.025
  18723. }
  18724. },
  18725. frontSkirt: {
  18726. height: math.unit(5 + 4 / 12, "feet"),
  18727. weight: math.unit(220, "lb"),
  18728. name: "Front (Skirt)",
  18729. image: {
  18730. source: "./media/characters/memory/front-skirt.svg",
  18731. extra: 3641 / 3545,
  18732. bottom: 0.03
  18733. }
  18734. },
  18735. frontDress: {
  18736. height: math.unit(5 + 4 / 12, "feet"),
  18737. weight: math.unit(220, "lb"),
  18738. name: "Front (Dress)",
  18739. image: {
  18740. source: "./media/characters/memory/front-dress.svg",
  18741. extra: 3641 / 3545,
  18742. bottom: 0.03
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Micro",
  18749. height: math.unit(6, "inches"),
  18750. default: true
  18751. },
  18752. {
  18753. name: "Normal",
  18754. height: math.unit(5 + 4 / 12, "feet")
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18760. {
  18761. front: {
  18762. height: math.unit(4 + 11 / 12, "feet"),
  18763. weight: math.unit(100, "lb"),
  18764. name: "Front",
  18765. image: {
  18766. source: "./media/characters/luno/front.svg",
  18767. extra: 1535 / 1487,
  18768. bottom: 0.03
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Micro",
  18775. height: math.unit(3, "inches")
  18776. },
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(4 + 11 / 12, "feet"),
  18780. default: true
  18781. },
  18782. {
  18783. name: "Macro",
  18784. height: math.unit(300, "feet")
  18785. },
  18786. {
  18787. name: "Megamacro",
  18788. height: math.unit(700, "miles")
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18794. {
  18795. front: {
  18796. height: math.unit(6 + 2 / 12, "feet"),
  18797. weight: math.unit(170, "lb"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/jamesy/front.svg",
  18801. extra: 440 / 382,
  18802. bottom: 0.005
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Micro",
  18809. height: math.unit(3, "inches")
  18810. },
  18811. {
  18812. name: "Normal",
  18813. height: math.unit(6 + 2 / 12, "feet"),
  18814. default: true
  18815. },
  18816. {
  18817. name: "Macro",
  18818. height: math.unit(300, "feet")
  18819. },
  18820. {
  18821. name: "Megamacro",
  18822. height: math.unit(700, "miles")
  18823. },
  18824. ]
  18825. ))
  18826. characterMakers.push(() => makeCharacter(
  18827. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18828. {
  18829. front: {
  18830. height: math.unit(6, "feet"),
  18831. weight: math.unit(160, "lb"),
  18832. name: "Front",
  18833. image: {
  18834. source: "./media/characters/mark/front.svg",
  18835. extra: 3300 / 3100,
  18836. bottom: 136.42 / 3440.47
  18837. }
  18838. },
  18839. },
  18840. [
  18841. {
  18842. name: "Macro",
  18843. height: math.unit(120, "meters")
  18844. },
  18845. {
  18846. name: "Bigger Macro",
  18847. height: math.unit(350, "meters")
  18848. },
  18849. {
  18850. name: "Megamacro",
  18851. height: math.unit(8, "km"),
  18852. default: true
  18853. },
  18854. {
  18855. name: "Continental",
  18856. height: math.unit(4550, "km")
  18857. },
  18858. {
  18859. name: "Planetary",
  18860. height: math.unit(65000, "km")
  18861. },
  18862. ]
  18863. ))
  18864. characterMakers.push(() => makeCharacter(
  18865. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18866. {
  18867. front: {
  18868. height: math.unit(6, "feet"),
  18869. weight: math.unit(400, "lb"),
  18870. name: "Front",
  18871. image: {
  18872. source: "./media/characters/mac/front.svg",
  18873. extra: 1048 / 987.7,
  18874. bottom: 60 / 1107.6,
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Macro",
  18881. height: math.unit(500, "feet"),
  18882. default: true
  18883. },
  18884. ]
  18885. ))
  18886. characterMakers.push(() => makeCharacter(
  18887. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18888. {
  18889. front: {
  18890. height: math.unit(5 + 2 / 12, "feet"),
  18891. weight: math.unit(190, "lb"),
  18892. name: "Front",
  18893. image: {
  18894. source: "./media/characters/bari/front.svg",
  18895. extra: 3156 / 2880,
  18896. bottom: 0.03
  18897. }
  18898. },
  18899. back: {
  18900. height: math.unit(5 + 2 / 12, "feet"),
  18901. weight: math.unit(190, "lb"),
  18902. name: "Back",
  18903. image: {
  18904. source: "./media/characters/bari/back.svg",
  18905. extra: 3260 / 2834,
  18906. bottom: 0.025
  18907. }
  18908. },
  18909. frontPlush: {
  18910. height: math.unit(5 + 2 / 12, "feet"),
  18911. weight: math.unit(190, "lb"),
  18912. name: "Front (Plush)",
  18913. image: {
  18914. source: "./media/characters/bari/front-plush.svg",
  18915. extra: 1112 / 1061,
  18916. bottom: 0.002
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Micro",
  18923. height: math.unit(3, "inches")
  18924. },
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(5 + 2 / 12, "feet"),
  18928. default: true
  18929. },
  18930. {
  18931. name: "Macro",
  18932. height: math.unit(20, "feet")
  18933. },
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(6 + 1 / 12, "feet"),
  18941. weight: math.unit(275, "lb"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/hunter-misha-raven/front.svg"
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Mortal",
  18951. height: math.unit(6 + 1 / 12, "feet")
  18952. },
  18953. {
  18954. name: "Divine",
  18955. height: math.unit(1.12134e34, "parsecs"),
  18956. default: true
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(6 + 3 / 12, "feet"),
  18965. weight: math.unit(220, "lb"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/max-calore/front.svg",
  18969. extra: 1700 / 1648,
  18970. bottom: 0.01
  18971. }
  18972. },
  18973. back: {
  18974. height: math.unit(6 + 3 / 12, "feet"),
  18975. weight: math.unit(220, "lb"),
  18976. name: "Back",
  18977. image: {
  18978. source: "./media/characters/max-calore/back.svg",
  18979. extra: 1700 / 1648,
  18980. bottom: 0.01
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(6 + 3 / 12, "feet"),
  18988. default: true
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18994. {
  18995. side: {
  18996. height: math.unit(2 + 8 / 12, "feet"),
  18997. weight: math.unit(99, "lb"),
  18998. name: "Side",
  18999. image: {
  19000. source: "./media/characters/aspen/side.svg",
  19001. extra: 152 / 138,
  19002. bottom: 0.032
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(2 + 8 / 12, "feet"),
  19010. default: true
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19016. {
  19017. side: {
  19018. height: math.unit(3 + 2 / 12, "feet"),
  19019. weight: math.unit(224, "lb"),
  19020. name: "Side",
  19021. image: {
  19022. source: "./media/characters/sheila-feral-wolf/side.svg",
  19023. extra: 179 / 166,
  19024. bottom: 0.03
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(3 + 2 / 12, "feet"),
  19032. default: true
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19038. {
  19039. side: {
  19040. height: math.unit(1 + 9 / 12, "feet"),
  19041. weight: math.unit(38, "lb"),
  19042. name: "Side",
  19043. image: {
  19044. source: "./media/characters/michelle/side.svg",
  19045. extra: 147 / 136.7,
  19046. bottom: 0.03
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(1 + 9 / 12, "feet"),
  19054. default: true
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19060. {
  19061. front: {
  19062. height: math.unit(1.54, "feet"),
  19063. weight: math.unit(50, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/nino/front.svg"
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(1.54, "feet"),
  19074. default: true
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19080. {
  19081. front: {
  19082. height: math.unit(1.49, "feet"),
  19083. weight: math.unit(45, "lb"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/viola/front.svg"
  19087. }
  19088. },
  19089. },
  19090. [
  19091. {
  19092. name: "Normal",
  19093. height: math.unit(1.49, "feet"),
  19094. default: true
  19095. },
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19100. {
  19101. front: {
  19102. height: math.unit(6 + 5 / 12, "feet"),
  19103. weight: math.unit(580, "lb"),
  19104. name: "Front",
  19105. image: {
  19106. source: "./media/characters/atlas/front.svg",
  19107. extra: 298.5 / 290,
  19108. bottom: 0.015
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(6 + 5 / 12, "feet"),
  19116. default: true
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19122. {
  19123. side: {
  19124. height: math.unit(15.6, "inches"),
  19125. weight: math.unit(10, "lb"),
  19126. name: "Side",
  19127. image: {
  19128. source: "./media/characters/davy/side.svg",
  19129. extra: 200 / 170,
  19130. bottom: 0.01
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(15.6, "inches"),
  19138. default: true
  19139. },
  19140. ]
  19141. ))
  19142. characterMakers.push(() => makeCharacter(
  19143. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19144. {
  19145. side: {
  19146. height: math.unit(4 + 8 / 12, "feet"),
  19147. weight: math.unit(166, "lb"),
  19148. name: "Side",
  19149. image: {
  19150. source: "./media/characters/fiona/side.svg",
  19151. extra: 232 / 220,
  19152. bottom: 0.03
  19153. }
  19154. },
  19155. },
  19156. [
  19157. {
  19158. name: "Normal",
  19159. height: math.unit(4 + 8 / 12, "feet"),
  19160. default: true
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19166. {
  19167. front: {
  19168. height: math.unit(26, "inches"),
  19169. weight: math.unit(35, "lb"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/lyla/front.svg",
  19173. bottom: 0.1
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(3, "feet"),
  19181. default: true
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19187. {
  19188. side: {
  19189. height: math.unit(1.8, "feet"),
  19190. weight: math.unit(44, "lb"),
  19191. name: "Side",
  19192. image: {
  19193. source: "./media/characters/perseus/side.svg",
  19194. bottom: 0.21
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(1.8, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19208. {
  19209. side: {
  19210. height: math.unit(4 + 2 / 12, "feet"),
  19211. weight: math.unit(20, "lb"),
  19212. name: "Side",
  19213. image: {
  19214. source: "./media/characters/remus/side.svg"
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(4 + 2 / 12, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(4 + 11 / 12, "feet"),
  19231. weight: math.unit(114, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/raf/front.svg",
  19235. extra: 1504/1339,
  19236. bottom: 26/1530
  19237. }
  19238. },
  19239. side: {
  19240. height: math.unit(4 + 11 / 12, "feet"),
  19241. weight: math.unit(114, "lb"),
  19242. name: "Side",
  19243. image: {
  19244. source: "./media/characters/raf/side.svg",
  19245. extra: 1466/1316,
  19246. bottom: 29/1495
  19247. }
  19248. },
  19249. paw: {
  19250. height: math.unit(1.45, "feet"),
  19251. name: "Paw",
  19252. image: {
  19253. source: "./media/characters/raf/paw.svg"
  19254. },
  19255. extraAttributes: {
  19256. "toeSize": {
  19257. name: "Toe Size",
  19258. power: 2,
  19259. type: "area",
  19260. base: math.unit(0.004, "m^2")
  19261. },
  19262. "padSize": {
  19263. name: "Pad Size",
  19264. power: 2,
  19265. type: "area",
  19266. base: math.unit(0.04, "m^2")
  19267. },
  19268. "footSize": {
  19269. name: "Foot Size",
  19270. power: 2,
  19271. type: "area",
  19272. base: math.unit(0.08, "m^2")
  19273. },
  19274. }
  19275. },
  19276. },
  19277. [
  19278. {
  19279. name: "Micro",
  19280. height: math.unit(2, "inches")
  19281. },
  19282. {
  19283. name: "Normal",
  19284. height: math.unit(4 + 11 / 12, "feet"),
  19285. default: true
  19286. },
  19287. {
  19288. name: "Macro",
  19289. height: math.unit(70, "feet")
  19290. },
  19291. ]
  19292. ))
  19293. characterMakers.push(() => makeCharacter(
  19294. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19295. {
  19296. front: {
  19297. height: math.unit(1.5, "meters"),
  19298. weight: math.unit(68, "kg"),
  19299. name: "Front",
  19300. image: {
  19301. source: "./media/characters/liam-einarr/front.svg",
  19302. extra: 2822 / 2666
  19303. }
  19304. },
  19305. back: {
  19306. height: math.unit(1.5, "meters"),
  19307. weight: math.unit(68, "kg"),
  19308. name: "Back",
  19309. image: {
  19310. source: "./media/characters/liam-einarr/back.svg",
  19311. extra: 2822 / 2666,
  19312. bottom: 0.015
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(1.5, "meters"),
  19320. default: true
  19321. },
  19322. {
  19323. name: "Macro",
  19324. height: math.unit(150, "meters")
  19325. },
  19326. {
  19327. name: "Megamacro",
  19328. height: math.unit(35, "km")
  19329. },
  19330. ]
  19331. ))
  19332. characterMakers.push(() => makeCharacter(
  19333. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19334. {
  19335. front: {
  19336. height: math.unit(6, "feet"),
  19337. weight: math.unit(75, "kg"),
  19338. name: "Front",
  19339. image: {
  19340. source: "./media/characters/linda/front.svg",
  19341. extra: 930 / 874,
  19342. bottom: 0.004
  19343. }
  19344. },
  19345. },
  19346. [
  19347. {
  19348. name: "Normal",
  19349. height: math.unit(6, "feet"),
  19350. default: true
  19351. },
  19352. ]
  19353. ))
  19354. characterMakers.push(() => makeCharacter(
  19355. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19356. {
  19357. front: {
  19358. height: math.unit(6 + 8 / 12, "feet"),
  19359. weight: math.unit(220, "lb"),
  19360. name: "Front",
  19361. image: {
  19362. source: "./media/characters/caylex/front.svg",
  19363. extra: 821 / 772,
  19364. bottom: 0.07
  19365. }
  19366. },
  19367. back: {
  19368. height: math.unit(6 + 8 / 12, "feet"),
  19369. weight: math.unit(220, "lb"),
  19370. name: "Back",
  19371. image: {
  19372. source: "./media/characters/caylex/back.svg",
  19373. extra: 821 / 772,
  19374. bottom: 0.022
  19375. }
  19376. },
  19377. hand: {
  19378. height: math.unit(1.25, "feet"),
  19379. name: "Hand",
  19380. image: {
  19381. source: "./media/characters/caylex/hand.svg"
  19382. }
  19383. },
  19384. foot: {
  19385. height: math.unit(1.6, "feet"),
  19386. name: "Foot",
  19387. image: {
  19388. source: "./media/characters/caylex/foot.svg"
  19389. }
  19390. },
  19391. armored: {
  19392. height: math.unit(6 + 8 / 12, "feet"),
  19393. weight: math.unit(250, "lb"),
  19394. name: "Armored",
  19395. image: {
  19396. source: "./media/characters/caylex/armored.svg",
  19397. extra: 1420 / 1310,
  19398. bottom: 0.045
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(6 + 8 / 12, "feet"),
  19406. default: true
  19407. },
  19408. {
  19409. name: "Normal+",
  19410. height: math.unit(12, "feet")
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19416. {
  19417. front: {
  19418. height: math.unit(7 + 6 / 12, "feet"),
  19419. weight: math.unit(288, "lb"),
  19420. name: "Front",
  19421. image: {
  19422. source: "./media/characters/alana/front.svg",
  19423. extra: 679 / 653,
  19424. bottom: 22.5 / 701
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(7 + 6 / 12, "feet")
  19432. },
  19433. {
  19434. name: "Large",
  19435. height: math.unit(50, "feet")
  19436. },
  19437. {
  19438. name: "Macro",
  19439. height: math.unit(100, "feet"),
  19440. default: true
  19441. },
  19442. {
  19443. name: "Macro+",
  19444. height: math.unit(200, "feet")
  19445. },
  19446. ]
  19447. ))
  19448. characterMakers.push(() => makeCharacter(
  19449. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19450. {
  19451. front: {
  19452. height: math.unit(6 + 1 / 12, "feet"),
  19453. weight: math.unit(210, "lb"),
  19454. name: "Front",
  19455. image: {
  19456. source: "./media/characters/hasani/front.svg",
  19457. extra: 244 / 232,
  19458. bottom: 0.01
  19459. }
  19460. },
  19461. back: {
  19462. height: math.unit(6 + 1 / 12, "feet"),
  19463. weight: math.unit(210, "lb"),
  19464. name: "Back",
  19465. image: {
  19466. source: "./media/characters/hasani/back.svg",
  19467. extra: 244 / 232,
  19468. bottom: 0.01
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(6 + 1 / 12, "feet")
  19476. },
  19477. {
  19478. name: "Macro",
  19479. height: math.unit(175, "feet"),
  19480. default: true
  19481. },
  19482. ]
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19486. {
  19487. front: {
  19488. height: math.unit(1.82, "meters"),
  19489. weight: math.unit(140, "lb"),
  19490. name: "Front",
  19491. image: {
  19492. source: "./media/characters/nita/front.svg",
  19493. extra: 2473 / 2363,
  19494. bottom: 0.01
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Normal",
  19501. height: math.unit(1.82, "m")
  19502. },
  19503. {
  19504. name: "Macro",
  19505. height: math.unit(300, "m")
  19506. },
  19507. {
  19508. name: "Mistake Canon",
  19509. height: math.unit(0.5, "miles"),
  19510. default: true
  19511. },
  19512. {
  19513. name: "Big Mistake",
  19514. height: math.unit(13, "miles")
  19515. },
  19516. {
  19517. name: "Playing God",
  19518. height: math.unit(2450, "miles")
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19524. {
  19525. front: {
  19526. height: math.unit(4, "feet"),
  19527. weight: math.unit(120, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/shiriko/front.svg",
  19531. extra: 970/934,
  19532. bottom: 5/975
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(4, "feet"),
  19540. default: true
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19546. {
  19547. front: {
  19548. height: math.unit(6, "feet"),
  19549. name: "front",
  19550. image: {
  19551. source: "./media/characters/deja/front.svg",
  19552. extra: 926 / 840,
  19553. bottom: 0.07
  19554. }
  19555. },
  19556. },
  19557. [
  19558. {
  19559. name: "Planck Length",
  19560. height: math.unit(1.6e-35, "meters")
  19561. },
  19562. {
  19563. name: "Normal",
  19564. height: math.unit(30.48, "meters"),
  19565. default: true
  19566. },
  19567. {
  19568. name: "Universal",
  19569. height: math.unit(8.8e26, "meters")
  19570. },
  19571. ]
  19572. ))
  19573. characterMakers.push(() => makeCharacter(
  19574. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19575. {
  19576. side: {
  19577. height: math.unit(8, "feet"),
  19578. weight: math.unit(6300, "lb"),
  19579. name: "Side",
  19580. image: {
  19581. source: "./media/characters/anima/side.svg",
  19582. bottom: 0.035
  19583. }
  19584. },
  19585. },
  19586. [
  19587. {
  19588. name: "Normal",
  19589. height: math.unit(8, "feet"),
  19590. default: true
  19591. },
  19592. ]
  19593. ))
  19594. characterMakers.push(() => makeCharacter(
  19595. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19596. {
  19597. front: {
  19598. height: math.unit(8, "feet"),
  19599. weight: math.unit(350, "lb"),
  19600. name: "Front",
  19601. image: {
  19602. source: "./media/characters/bianca/front.svg",
  19603. extra: 234 / 225,
  19604. bottom: 0.03
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Normal",
  19611. height: math.unit(8, "feet"),
  19612. default: true
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19618. {
  19619. front: {
  19620. height: math.unit(11 + 5/12, "feet"),
  19621. weight: math.unit(1200, "lb"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/adinia/front.svg",
  19625. extra: 1767/1641,
  19626. bottom: 44/1811
  19627. },
  19628. extraAttributes: {
  19629. "energyIntake": {
  19630. name: "Energy Intake",
  19631. power: 3,
  19632. type: "energy",
  19633. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19634. },
  19635. }
  19636. },
  19637. back: {
  19638. height: math.unit(11 + 5/12, "feet"),
  19639. weight: math.unit(1200, "lb"),
  19640. name: "Back",
  19641. image: {
  19642. source: "./media/characters/adinia/back.svg",
  19643. extra: 1834/1684,
  19644. bottom: 14/1848
  19645. },
  19646. extraAttributes: {
  19647. "energyIntake": {
  19648. name: "Energy Intake",
  19649. power: 3,
  19650. type: "energy",
  19651. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19652. },
  19653. }
  19654. },
  19655. maw: {
  19656. height: math.unit(3.79, "feet"),
  19657. name: "Maw",
  19658. image: {
  19659. source: "./media/characters/adinia/maw.svg"
  19660. }
  19661. },
  19662. rump: {
  19663. height: math.unit(4.6, "feet"),
  19664. name: "Rump",
  19665. image: {
  19666. source: "./media/characters/adinia/rump.svg"
  19667. }
  19668. },
  19669. },
  19670. [
  19671. {
  19672. name: "Normal",
  19673. height: math.unit(11 + 5 / 12, "feet"),
  19674. default: true
  19675. },
  19676. ]
  19677. ))
  19678. characterMakers.push(() => makeCharacter(
  19679. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19680. {
  19681. front: {
  19682. height: math.unit(3, "meters"),
  19683. weight: math.unit(200, "kg"),
  19684. name: "Front",
  19685. image: {
  19686. source: "./media/characters/lykasa/front.svg",
  19687. extra: 1076 / 976,
  19688. bottom: 0.06
  19689. }
  19690. },
  19691. },
  19692. [
  19693. {
  19694. name: "Normal",
  19695. height: math.unit(3, "meters")
  19696. },
  19697. {
  19698. name: "Kaiju",
  19699. height: math.unit(120, "meters"),
  19700. default: true
  19701. },
  19702. {
  19703. name: "Mega Kaiju",
  19704. height: math.unit(240, "km")
  19705. },
  19706. {
  19707. name: "Giga Kaiju",
  19708. height: math.unit(400, "megameters")
  19709. },
  19710. {
  19711. name: "Tera Kaiju",
  19712. height: math.unit(800, "gigameters")
  19713. },
  19714. {
  19715. name: "Kaiju Dragon Goddess",
  19716. height: math.unit(26, "zettaparsecs")
  19717. },
  19718. ]
  19719. ))
  19720. characterMakers.push(() => makeCharacter(
  19721. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19722. {
  19723. side: {
  19724. height: math.unit(283 / 124 * 6, "feet"),
  19725. weight: math.unit(35000, "lb"),
  19726. name: "Side",
  19727. image: {
  19728. source: "./media/characters/malfaren/side.svg",
  19729. extra: 1310/529,
  19730. bottom: 24/1334
  19731. }
  19732. },
  19733. front: {
  19734. height: math.unit(22.36, "feet"),
  19735. weight: math.unit(35000, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/malfaren/front.svg",
  19739. extra: 1237/1115,
  19740. bottom: 32/1269
  19741. }
  19742. },
  19743. maw: {
  19744. height: math.unit(6.9, "feet"),
  19745. name: "Maw",
  19746. image: {
  19747. source: "./media/characters/malfaren/maw.svg"
  19748. }
  19749. },
  19750. dick: {
  19751. height: math.unit(6.19, "feet"),
  19752. name: "Dick",
  19753. image: {
  19754. source: "./media/characters/malfaren/dick.svg"
  19755. }
  19756. },
  19757. eye: {
  19758. height: math.unit(0.69, "feet"),
  19759. name: "Eye",
  19760. image: {
  19761. source: "./media/characters/malfaren/eye.svg"
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Big",
  19768. height: math.unit(283 / 162 * 6, "feet"),
  19769. },
  19770. {
  19771. name: "Bigger",
  19772. height: math.unit(283 / 124 * 6, "feet")
  19773. },
  19774. {
  19775. name: "Massive",
  19776. height: math.unit(283 / 92 * 6, "feet"),
  19777. default: true
  19778. },
  19779. {
  19780. name: "👀💦",
  19781. height: math.unit(283 / 73 * 6, "feet"),
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19787. {
  19788. front: {
  19789. height: math.unit(1.7, "m"),
  19790. weight: math.unit(70, "kg"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/kernel/front.svg",
  19794. extra: 1960/1821,
  19795. bottom: 17/1977
  19796. }
  19797. },
  19798. },
  19799. [
  19800. {
  19801. name: "Nano",
  19802. height: math.unit(17, "micrometers")
  19803. },
  19804. {
  19805. name: "Micro",
  19806. height: math.unit(1.7, "mm")
  19807. },
  19808. {
  19809. name: "Small",
  19810. height: math.unit(1.7, "cm")
  19811. },
  19812. {
  19813. name: "Normal",
  19814. height: math.unit(1.7, "m"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19821. {
  19822. front: {
  19823. height: math.unit(1.75, "meters"),
  19824. weight: math.unit(65, "kg"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/jayne-folest/front.svg",
  19828. extra: 2115 / 2007,
  19829. bottom: 0.02
  19830. }
  19831. },
  19832. back: {
  19833. height: math.unit(1.75, "meters"),
  19834. weight: math.unit(65, "kg"),
  19835. name: "Back",
  19836. image: {
  19837. source: "./media/characters/jayne-folest/back.svg",
  19838. extra: 2115 / 2007,
  19839. bottom: 0.005
  19840. }
  19841. },
  19842. frontClothed: {
  19843. height: math.unit(1.75, "meters"),
  19844. weight: math.unit(65, "kg"),
  19845. name: "Front (Clothed)",
  19846. image: {
  19847. source: "./media/characters/jayne-folest/front-clothed.svg",
  19848. extra: 2115 / 2007,
  19849. bottom: 0.035
  19850. }
  19851. },
  19852. hand: {
  19853. height: math.unit(1 / 1.260, "feet"),
  19854. name: "Hand",
  19855. image: {
  19856. source: "./media/characters/jayne-folest/hand.svg"
  19857. }
  19858. },
  19859. foot: {
  19860. height: math.unit(1 / 0.918, "feet"),
  19861. name: "Foot",
  19862. image: {
  19863. source: "./media/characters/jayne-folest/foot.svg"
  19864. }
  19865. },
  19866. },
  19867. [
  19868. {
  19869. name: "Micro",
  19870. height: math.unit(4, "cm")
  19871. },
  19872. {
  19873. name: "Normal",
  19874. height: math.unit(1.75, "meters")
  19875. },
  19876. {
  19877. name: "Macro",
  19878. height: math.unit(47.5, "meters"),
  19879. default: true
  19880. },
  19881. ]
  19882. ))
  19883. characterMakers.push(() => makeCharacter(
  19884. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19885. {
  19886. front: {
  19887. height: math.unit(180, "cm"),
  19888. weight: math.unit(70, "kg"),
  19889. name: "Front",
  19890. image: {
  19891. source: "./media/characters/algier/front.svg",
  19892. extra: 596 / 572,
  19893. bottom: 0.04
  19894. }
  19895. },
  19896. back: {
  19897. height: math.unit(180, "cm"),
  19898. weight: math.unit(70, "kg"),
  19899. name: "Back",
  19900. image: {
  19901. source: "./media/characters/algier/back.svg",
  19902. extra: 596 / 572,
  19903. bottom: 0.025
  19904. }
  19905. },
  19906. frontdressed: {
  19907. height: math.unit(180, "cm"),
  19908. weight: math.unit(150, "kg"),
  19909. name: "Front-dressed",
  19910. image: {
  19911. source: "./media/characters/algier/front-dressed.svg",
  19912. extra: 596 / 572,
  19913. bottom: 0.038
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Micro",
  19920. height: math.unit(5, "cm")
  19921. },
  19922. {
  19923. name: "Normal",
  19924. height: math.unit(180, "cm"),
  19925. default: true
  19926. },
  19927. {
  19928. name: "Macro",
  19929. height: math.unit(64, "m")
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19935. {
  19936. upright: {
  19937. height: math.unit(7, "feet"),
  19938. weight: math.unit(300, "lb"),
  19939. name: "Upright",
  19940. image: {
  19941. source: "./media/characters/pretzel/upright.svg",
  19942. extra: 534 / 522,
  19943. bottom: 0.065
  19944. }
  19945. },
  19946. sprawling: {
  19947. height: math.unit(3.75, "feet"),
  19948. weight: math.unit(300, "lb"),
  19949. name: "Sprawling",
  19950. image: {
  19951. source: "./media/characters/pretzel/sprawling.svg",
  19952. extra: 314 / 281,
  19953. bottom: 0.1
  19954. }
  19955. },
  19956. tongue: {
  19957. height: math.unit(2, "feet"),
  19958. name: "Tongue",
  19959. image: {
  19960. source: "./media/characters/pretzel/tongue.svg"
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(7, "feet"),
  19968. default: true
  19969. },
  19970. {
  19971. name: "Oversized",
  19972. height: math.unit(15, "feet")
  19973. },
  19974. {
  19975. name: "Huge",
  19976. height: math.unit(30, "feet")
  19977. },
  19978. {
  19979. name: "Macro",
  19980. height: math.unit(250, "feet")
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19986. {
  19987. sideFront: {
  19988. height: math.unit(5 + 2 / 12, "feet"),
  19989. weight: math.unit(120, "lb"),
  19990. name: "Front Side",
  19991. image: {
  19992. source: "./media/characters/roxi/side-front.svg",
  19993. extra: 2924 / 2717,
  19994. bottom: 0.08
  19995. }
  19996. },
  19997. sideBack: {
  19998. height: math.unit(5 + 2 / 12, "feet"),
  19999. weight: math.unit(120, "lb"),
  20000. name: "Back Side",
  20001. image: {
  20002. source: "./media/characters/roxi/side-back.svg",
  20003. extra: 2904 / 2693,
  20004. bottom: 0.06
  20005. }
  20006. },
  20007. front: {
  20008. height: math.unit(5 + 2 / 12, "feet"),
  20009. weight: math.unit(120, "lb"),
  20010. name: "Front",
  20011. image: {
  20012. source: "./media/characters/roxi/front.svg",
  20013. extra: 2028 / 1907,
  20014. bottom: 0.01
  20015. }
  20016. },
  20017. frontAlt: {
  20018. height: math.unit(5 + 2 / 12, "feet"),
  20019. weight: math.unit(120, "lb"),
  20020. name: "Front (Alt)",
  20021. image: {
  20022. source: "./media/characters/roxi/front-alt.svg",
  20023. extra: 1828 / 1798,
  20024. bottom: 0.01
  20025. }
  20026. },
  20027. sitting: {
  20028. height: math.unit(2.8, "feet"),
  20029. weight: math.unit(120, "lb"),
  20030. name: "Sitting",
  20031. image: {
  20032. source: "./media/characters/roxi/sitting.svg",
  20033. extra: 2660 / 2462,
  20034. bottom: 0.1
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(5 + 2 / 12, "feet"),
  20042. default: true
  20043. },
  20044. ]
  20045. ))
  20046. characterMakers.push(() => makeCharacter(
  20047. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20048. {
  20049. side: {
  20050. height: math.unit(55, "feet"),
  20051. weight: math.unit(153, "tons"),
  20052. name: "Side",
  20053. image: {
  20054. source: "./media/characters/shadow/side.svg",
  20055. extra: 701 / 628,
  20056. bottom: 0.02
  20057. }
  20058. },
  20059. flying: {
  20060. height: math.unit(145, "feet"),
  20061. weight: math.unit(153, "tons"),
  20062. name: "Flying",
  20063. image: {
  20064. source: "./media/characters/shadow/flying.svg"
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(55, "feet"),
  20072. default: true
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20078. {
  20079. front: {
  20080. height: math.unit(6, "feet"),
  20081. weight: math.unit(200, "lb"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/marcie/front.svg",
  20085. extra: 960 / 876,
  20086. bottom: 58 / 1017.87
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Macro",
  20093. height: math.unit(1, "mile"),
  20094. default: true
  20095. },
  20096. ]
  20097. ))
  20098. characterMakers.push(() => makeCharacter(
  20099. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20100. {
  20101. front: {
  20102. height: math.unit(7, "feet"),
  20103. weight: math.unit(200, "lb"),
  20104. name: "Front",
  20105. image: {
  20106. source: "./media/characters/kachina/front.svg",
  20107. extra: 3206/2764,
  20108. bottom: 140/3346
  20109. }
  20110. },
  20111. },
  20112. [
  20113. {
  20114. name: "Normal",
  20115. height: math.unit(7, "feet"),
  20116. default: true
  20117. },
  20118. ]
  20119. ))
  20120. characterMakers.push(() => makeCharacter(
  20121. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20122. {
  20123. looking: {
  20124. height: math.unit(2, "meters"),
  20125. weight: math.unit(300, "kg"),
  20126. name: "Looking",
  20127. image: {
  20128. source: "./media/characters/kash/looking.svg",
  20129. extra: 474 / 344,
  20130. bottom: 0.03
  20131. }
  20132. },
  20133. side: {
  20134. height: math.unit(2, "meters"),
  20135. weight: math.unit(300, "kg"),
  20136. name: "Side",
  20137. image: {
  20138. source: "./media/characters/kash/side.svg",
  20139. extra: 302 / 251,
  20140. bottom: 0.03
  20141. }
  20142. },
  20143. front: {
  20144. height: math.unit(2, "meters"),
  20145. weight: math.unit(300, "kg"),
  20146. name: "Front",
  20147. image: {
  20148. source: "./media/characters/kash/front.svg",
  20149. extra: 495 / 360,
  20150. bottom: 0.015
  20151. }
  20152. },
  20153. },
  20154. [
  20155. {
  20156. name: "Normal",
  20157. height: math.unit(2, "meters"),
  20158. default: true
  20159. },
  20160. {
  20161. name: "Big",
  20162. height: math.unit(3, "meters")
  20163. },
  20164. {
  20165. name: "Large",
  20166. height: math.unit(5, "meters")
  20167. },
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20172. {
  20173. feeding: {
  20174. height: math.unit(6.7, "feet"),
  20175. weight: math.unit(350, "lb"),
  20176. name: "Feeding",
  20177. image: {
  20178. source: "./media/characters/lalim/feeding.svg",
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Normal",
  20185. height: math.unit(6.7, "feet"),
  20186. default: true
  20187. },
  20188. ]
  20189. ))
  20190. characterMakers.push(() => makeCharacter(
  20191. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20192. {
  20193. front: {
  20194. height: math.unit(9.5, "feet"),
  20195. weight: math.unit(600, "lb"),
  20196. name: "Front",
  20197. image: {
  20198. source: "./media/characters/de'vout/front.svg",
  20199. extra: 1443 / 1328,
  20200. bottom: 0.025
  20201. }
  20202. },
  20203. back: {
  20204. height: math.unit(9.5, "feet"),
  20205. weight: math.unit(600, "lb"),
  20206. name: "Back",
  20207. image: {
  20208. source: "./media/characters/de'vout/back.svg",
  20209. extra: 1443 / 1328
  20210. }
  20211. },
  20212. frontDressed: {
  20213. height: math.unit(9.5, "feet"),
  20214. weight: math.unit(600, "lb"),
  20215. name: "Front (Dressed",
  20216. image: {
  20217. source: "./media/characters/de'vout/front-dressed.svg",
  20218. extra: 1443 / 1328,
  20219. bottom: 0.025
  20220. }
  20221. },
  20222. backDressed: {
  20223. height: math.unit(9.5, "feet"),
  20224. weight: math.unit(600, "lb"),
  20225. name: "Back (Dressed",
  20226. image: {
  20227. source: "./media/characters/de'vout/back-dressed.svg",
  20228. extra: 1443 / 1328
  20229. }
  20230. },
  20231. },
  20232. [
  20233. {
  20234. name: "Normal",
  20235. height: math.unit(9.5, "feet"),
  20236. default: true
  20237. },
  20238. ]
  20239. ))
  20240. characterMakers.push(() => makeCharacter(
  20241. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20242. {
  20243. front: {
  20244. height: math.unit(8, "feet"),
  20245. weight: math.unit(225, "lb"),
  20246. name: "Front",
  20247. image: {
  20248. source: "./media/characters/talana/front.svg",
  20249. extra: 1410 / 1300,
  20250. bottom: 0.015
  20251. }
  20252. },
  20253. frontDressed: {
  20254. height: math.unit(8, "feet"),
  20255. weight: math.unit(225, "lb"),
  20256. name: "Front (Dressed",
  20257. image: {
  20258. source: "./media/characters/talana/front-dressed.svg",
  20259. extra: 1410 / 1300,
  20260. bottom: 0.015
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(8, "feet"),
  20268. default: true
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20274. {
  20275. side: {
  20276. height: math.unit(7.2, "feet"),
  20277. weight: math.unit(150, "lb"),
  20278. name: "Side",
  20279. image: {
  20280. source: "./media/characters/xeauvok/side.svg",
  20281. extra: 1975 / 1523,
  20282. bottom: 0.07
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Normal",
  20289. height: math.unit(7.2, "feet"),
  20290. default: true
  20291. },
  20292. ]
  20293. ))
  20294. characterMakers.push(() => makeCharacter(
  20295. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20296. {
  20297. side: {
  20298. height: math.unit(4, "meters"),
  20299. weight: math.unit(2200, "kg"),
  20300. name: "Side",
  20301. image: {
  20302. source: "./media/characters/zara/side.svg",
  20303. extra: 765/744,
  20304. bottom: 156/921
  20305. }
  20306. },
  20307. },
  20308. [
  20309. {
  20310. name: "Normal",
  20311. height: math.unit(4, "meters"),
  20312. default: true
  20313. },
  20314. ]
  20315. ))
  20316. characterMakers.push(() => makeCharacter(
  20317. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20318. {
  20319. side: {
  20320. height: math.unit(6, "feet"),
  20321. weight: math.unit(150, "lb"),
  20322. name: "Side",
  20323. image: {
  20324. source: "./media/characters/richard-dragon/side.svg",
  20325. extra: 845 / 340,
  20326. bottom: 0.017
  20327. }
  20328. },
  20329. maw: {
  20330. height: math.unit(2.97, "feet"),
  20331. name: "Maw",
  20332. image: {
  20333. source: "./media/characters/richard-dragon/maw.svg"
  20334. }
  20335. },
  20336. },
  20337. [
  20338. ]
  20339. ))
  20340. characterMakers.push(() => makeCharacter(
  20341. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20342. {
  20343. front: {
  20344. height: math.unit(4, "feet"),
  20345. weight: math.unit(100, "lb"),
  20346. name: "Front",
  20347. image: {
  20348. source: "./media/characters/richard-smeargle/front.svg",
  20349. extra: 2952 / 2820,
  20350. bottom: 0.028
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Normal",
  20357. height: math.unit(4, "feet"),
  20358. default: true
  20359. },
  20360. {
  20361. name: "Dynamax",
  20362. height: math.unit(20, "meters")
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20368. {
  20369. front: {
  20370. height: math.unit(6, "feet"),
  20371. weight: math.unit(110, "lb"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/klay/front.svg",
  20375. extra: 962 / 883,
  20376. bottom: 0.04
  20377. }
  20378. },
  20379. back: {
  20380. height: math.unit(6, "feet"),
  20381. weight: math.unit(110, "lb"),
  20382. name: "Back",
  20383. image: {
  20384. source: "./media/characters/klay/back.svg",
  20385. extra: 962 / 883
  20386. }
  20387. },
  20388. beans: {
  20389. height: math.unit(1.15, "feet"),
  20390. name: "Beans",
  20391. image: {
  20392. source: "./media/characters/klay/beans.svg"
  20393. }
  20394. },
  20395. },
  20396. [
  20397. {
  20398. name: "Micro",
  20399. height: math.unit(6, "inches")
  20400. },
  20401. {
  20402. name: "Mini",
  20403. height: math.unit(3, "feet")
  20404. },
  20405. {
  20406. name: "Normal",
  20407. height: math.unit(6, "feet"),
  20408. default: true
  20409. },
  20410. {
  20411. name: "Big",
  20412. height: math.unit(25, "feet")
  20413. },
  20414. {
  20415. name: "Macro",
  20416. height: math.unit(100, "feet")
  20417. },
  20418. {
  20419. name: "Megamacro",
  20420. height: math.unit(400, "feet")
  20421. },
  20422. ]
  20423. ))
  20424. characterMakers.push(() => makeCharacter(
  20425. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20426. {
  20427. front: {
  20428. height: math.unit(6, "feet"),
  20429. weight: math.unit(160, "lb"),
  20430. name: "Front",
  20431. image: {
  20432. source: "./media/characters/marcus/front.svg",
  20433. extra: 734 / 676,
  20434. bottom: 0.03
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Little",
  20441. height: math.unit(6, "feet")
  20442. },
  20443. {
  20444. name: "Normal",
  20445. height: math.unit(110, "feet"),
  20446. default: true
  20447. },
  20448. {
  20449. name: "Macro",
  20450. height: math.unit(250, "feet")
  20451. },
  20452. {
  20453. name: "Megamacro",
  20454. height: math.unit(1000, "feet")
  20455. },
  20456. ]
  20457. ))
  20458. characterMakers.push(() => makeCharacter(
  20459. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20460. {
  20461. front: {
  20462. height: math.unit(7, "feet"),
  20463. weight: math.unit(275, "lb"),
  20464. name: "Front",
  20465. image: {
  20466. source: "./media/characters/claude-delroute/front.svg",
  20467. extra: 902/827,
  20468. bottom: 26/928
  20469. }
  20470. },
  20471. side: {
  20472. height: math.unit(7, "feet"),
  20473. weight: math.unit(275, "lb"),
  20474. name: "Side",
  20475. image: {
  20476. source: "./media/characters/claude-delroute/side.svg",
  20477. extra: 908/853,
  20478. bottom: 16/924
  20479. }
  20480. },
  20481. back: {
  20482. height: math.unit(7, "feet"),
  20483. weight: math.unit(275, "lb"),
  20484. name: "Back",
  20485. image: {
  20486. source: "./media/characters/claude-delroute/back.svg",
  20487. extra: 911/829,
  20488. bottom: 18/929
  20489. }
  20490. },
  20491. maw: {
  20492. height: math.unit(0.6407, "meters"),
  20493. name: "Maw",
  20494. image: {
  20495. source: "./media/characters/claude-delroute/maw.svg"
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Normal",
  20502. height: math.unit(7, "feet"),
  20503. default: true
  20504. },
  20505. {
  20506. name: "Lorge",
  20507. height: math.unit(20, "feet")
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(8 + 4 / 12, "feet"),
  20516. weight: math.unit(600, "lb"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/dragonien/front.svg",
  20520. extra: 100 / 94,
  20521. bottom: 3.3 / 103.3445
  20522. }
  20523. },
  20524. back: {
  20525. height: math.unit(8 + 4 / 12, "feet"),
  20526. weight: math.unit(600, "lb"),
  20527. name: "Back",
  20528. image: {
  20529. source: "./media/characters/dragonien/back.svg",
  20530. extra: 776 / 746,
  20531. bottom: 6.4 / 782.0616
  20532. }
  20533. },
  20534. foot: {
  20535. height: math.unit(1.54, "feet"),
  20536. name: "Foot",
  20537. image: {
  20538. source: "./media/characters/dragonien/foot.svg",
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Normal",
  20545. height: math.unit(8 + 4 / 12, "feet"),
  20546. default: true
  20547. },
  20548. {
  20549. name: "Macro",
  20550. height: math.unit(200, "feet")
  20551. },
  20552. {
  20553. name: "Megamacro",
  20554. height: math.unit(1, "mile")
  20555. },
  20556. {
  20557. name: "Gigamacro",
  20558. height: math.unit(1000, "miles")
  20559. },
  20560. ]
  20561. ))
  20562. characterMakers.push(() => makeCharacter(
  20563. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20564. {
  20565. front: {
  20566. height: math.unit(5 + 2 / 12, "feet"),
  20567. weight: math.unit(110, "lb"),
  20568. name: "Front",
  20569. image: {
  20570. source: "./media/characters/desta/front.svg",
  20571. extra: 767 / 726,
  20572. bottom: 11.7 / 779
  20573. }
  20574. },
  20575. back: {
  20576. height: math.unit(5 + 2 / 12, "feet"),
  20577. weight: math.unit(110, "lb"),
  20578. name: "Back",
  20579. image: {
  20580. source: "./media/characters/desta/back.svg",
  20581. extra: 777 / 728,
  20582. bottom: 6 / 784
  20583. }
  20584. },
  20585. frontAlt: {
  20586. height: math.unit(5 + 2 / 12, "feet"),
  20587. weight: math.unit(110, "lb"),
  20588. name: "Front",
  20589. image: {
  20590. source: "./media/characters/desta/front-alt.svg",
  20591. extra: 1482 / 1417
  20592. }
  20593. },
  20594. side: {
  20595. height: math.unit(5 + 2 / 12, "feet"),
  20596. weight: math.unit(110, "lb"),
  20597. name: "Side",
  20598. image: {
  20599. source: "./media/characters/desta/side.svg",
  20600. extra: 2579 / 2491,
  20601. bottom: 0.053
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Micro",
  20608. height: math.unit(6, "inches")
  20609. },
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(5 + 2 / 12, "feet"),
  20613. default: true
  20614. },
  20615. {
  20616. name: "Macro",
  20617. height: math.unit(62, "feet")
  20618. },
  20619. {
  20620. name: "Megamacro",
  20621. height: math.unit(1800, "feet")
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20627. {
  20628. front: {
  20629. height: math.unit(10, "feet"),
  20630. weight: math.unit(700, "lb"),
  20631. name: "Front",
  20632. image: {
  20633. source: "./media/characters/storm-alystar/front.svg",
  20634. extra: 2112 / 1898,
  20635. bottom: 0.034
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Micro",
  20642. height: math.unit(3.5, "inches")
  20643. },
  20644. {
  20645. name: "Normal",
  20646. height: math.unit(10, "feet"),
  20647. default: true
  20648. },
  20649. {
  20650. name: "Macro",
  20651. height: math.unit(400, "feet")
  20652. },
  20653. {
  20654. name: "Deific",
  20655. height: math.unit(60, "miles")
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20661. {
  20662. front: {
  20663. height: math.unit(2.35, "meters"),
  20664. weight: math.unit(119, "kg"),
  20665. name: "Front",
  20666. image: {
  20667. source: "./media/characters/ilia/front.svg",
  20668. extra: 1285 / 1255,
  20669. bottom: 0.06
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(2.35, "meters")
  20677. },
  20678. {
  20679. name: "Macro",
  20680. height: math.unit(140, "meters"),
  20681. default: true
  20682. },
  20683. {
  20684. name: "Megamacro",
  20685. height: math.unit(100, "miles")
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(6 + 5 / 12, "feet"),
  20694. weight: math.unit(190, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/kingdead/front.svg",
  20698. extra: 1228 / 1177
  20699. }
  20700. },
  20701. },
  20702. [
  20703. {
  20704. name: "Micro",
  20705. height: math.unit(7, "inches")
  20706. },
  20707. {
  20708. name: "Normal",
  20709. height: math.unit(6 + 5 / 12, "feet")
  20710. },
  20711. {
  20712. name: "Macro",
  20713. height: math.unit(150, "feet"),
  20714. default: true
  20715. },
  20716. {
  20717. name: "Megamacro",
  20718. height: math.unit(200, "miles")
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20724. {
  20725. front: {
  20726. height: math.unit(8, "feet"),
  20727. weight: math.unit(600, "lb"),
  20728. name: "Front",
  20729. image: {
  20730. source: "./media/characters/kyrehx/front.svg",
  20731. extra: 1195 / 1095,
  20732. bottom: 0.034
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Micro",
  20739. height: math.unit(2, "inches")
  20740. },
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(8, "feet"),
  20744. default: true
  20745. },
  20746. {
  20747. name: "Macro",
  20748. height: math.unit(255, "feet")
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20754. {
  20755. front: {
  20756. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20757. weight: math.unit(184, "lb"),
  20758. name: "Front",
  20759. image: {
  20760. source: "./media/characters/xang/front.svg",
  20761. extra: 845 / 755
  20762. }
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20769. default: true
  20770. },
  20771. {
  20772. name: "Macro",
  20773. height: math.unit(0.935 * 146, "feet")
  20774. },
  20775. {
  20776. name: "Megamacro",
  20777. height: math.unit(0.935 * 3, "miles")
  20778. },
  20779. ]
  20780. ))
  20781. characterMakers.push(() => makeCharacter(
  20782. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20783. {
  20784. frontDressed: {
  20785. height: math.unit(5 + 7 / 12, "feet"),
  20786. weight: math.unit(140, "lb"),
  20787. name: "Front (Dressed)",
  20788. image: {
  20789. source: "./media/characters/doc-weardno/front-dressed.svg",
  20790. extra: 263 / 234
  20791. }
  20792. },
  20793. backDressed: {
  20794. height: math.unit(5 + 7 / 12, "feet"),
  20795. weight: math.unit(140, "lb"),
  20796. name: "Back (Dressed)",
  20797. image: {
  20798. source: "./media/characters/doc-weardno/back-dressed.svg",
  20799. extra: 266 / 238
  20800. }
  20801. },
  20802. front: {
  20803. height: math.unit(5 + 7 / 12, "feet"),
  20804. weight: math.unit(140, "lb"),
  20805. name: "Front",
  20806. image: {
  20807. source: "./media/characters/doc-weardno/front.svg",
  20808. extra: 254 / 233
  20809. }
  20810. },
  20811. },
  20812. [
  20813. {
  20814. name: "Micro",
  20815. height: math.unit(3, "inches")
  20816. },
  20817. {
  20818. name: "Normal",
  20819. height: math.unit(5 + 7 / 12, "feet"),
  20820. default: true
  20821. },
  20822. {
  20823. name: "Macro",
  20824. height: math.unit(25, "feet")
  20825. },
  20826. {
  20827. name: "Megamacro",
  20828. height: math.unit(2, "miles")
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20834. {
  20835. front: {
  20836. height: math.unit(6 + 2 / 12, "feet"),
  20837. weight: math.unit(153, "lb"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/seth-whilst/front.svg",
  20841. bottom: 0.07
  20842. }
  20843. },
  20844. },
  20845. [
  20846. {
  20847. name: "Micro",
  20848. height: math.unit(5, "inches")
  20849. },
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(6 + 2 / 12, "feet"),
  20853. default: true
  20854. },
  20855. ]
  20856. ))
  20857. characterMakers.push(() => makeCharacter(
  20858. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20859. {
  20860. front: {
  20861. height: math.unit(3, "inches"),
  20862. weight: math.unit(8, "grams"),
  20863. name: "Front",
  20864. image: {
  20865. source: "./media/characters/pocket-jabari/front.svg",
  20866. extra: 1024 / 974,
  20867. bottom: 0.039
  20868. }
  20869. },
  20870. },
  20871. [
  20872. {
  20873. name: "Minimicro",
  20874. height: math.unit(8, "mm")
  20875. },
  20876. {
  20877. name: "Micro",
  20878. height: math.unit(3, "inches"),
  20879. default: true
  20880. },
  20881. {
  20882. name: "Normal",
  20883. height: math.unit(3, "feet")
  20884. },
  20885. ]
  20886. ))
  20887. characterMakers.push(() => makeCharacter(
  20888. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20889. {
  20890. frontDressed: {
  20891. height: math.unit(15, "feet"),
  20892. weight: math.unit(3280, "lb"),
  20893. name: "Front (Dressed)",
  20894. image: {
  20895. source: "./media/characters/sapphy/front-dressed.svg",
  20896. extra: 1951/1654,
  20897. bottom: 194/2145
  20898. },
  20899. form: "anthro",
  20900. default: true
  20901. },
  20902. backDressed: {
  20903. height: math.unit(15, "feet"),
  20904. weight: math.unit(3280, "lb"),
  20905. name: "Back (Dressed)",
  20906. image: {
  20907. source: "./media/characters/sapphy/back-dressed.svg",
  20908. extra: 2058/1918,
  20909. bottom: 125/2183
  20910. },
  20911. form: "anthro"
  20912. },
  20913. frontNude: {
  20914. height: math.unit(15, "feet"),
  20915. weight: math.unit(3280, "lb"),
  20916. name: "Front (Nude)",
  20917. image: {
  20918. source: "./media/characters/sapphy/front-nude.svg",
  20919. extra: 1951/1654,
  20920. bottom: 194/2145
  20921. },
  20922. form: "anthro"
  20923. },
  20924. backNude: {
  20925. height: math.unit(15, "feet"),
  20926. weight: math.unit(3280, "lb"),
  20927. name: "Back (Nude)",
  20928. image: {
  20929. source: "./media/characters/sapphy/back-nude.svg",
  20930. extra: 2058/1918,
  20931. bottom: 125/2183
  20932. },
  20933. form: "anthro"
  20934. },
  20935. full: {
  20936. height: math.unit(15, "feet"),
  20937. weight: math.unit(3280, "lb"),
  20938. name: "Full",
  20939. image: {
  20940. source: "./media/characters/sapphy/full.svg",
  20941. extra: 1396/1317,
  20942. bottom: 44/1440
  20943. },
  20944. form: "anthro"
  20945. },
  20946. dick: {
  20947. height: math.unit(3.8, "feet"),
  20948. name: "Dick",
  20949. image: {
  20950. source: "./media/characters/sapphy/dick.svg"
  20951. },
  20952. form: "anthro"
  20953. },
  20954. feral: {
  20955. height: math.unit(35, "feet"),
  20956. weight: math.unit(160, "tons"),
  20957. name: "Feral",
  20958. image: {
  20959. source: "./media/characters/sapphy/feral.svg",
  20960. extra: 1050/573,
  20961. bottom: 60/1110
  20962. },
  20963. form: "feral",
  20964. default: true
  20965. },
  20966. },
  20967. [
  20968. {
  20969. name: "Normal",
  20970. height: math.unit(15, "feet"),
  20971. form: "anthro"
  20972. },
  20973. {
  20974. name: "Casual Macro",
  20975. height: math.unit(120, "feet"),
  20976. form: "anthro"
  20977. },
  20978. {
  20979. name: "Macro",
  20980. height: math.unit(2150, "feet"),
  20981. default: true,
  20982. form: "anthro"
  20983. },
  20984. {
  20985. name: "Megamacro",
  20986. height: math.unit(8, "miles"),
  20987. form: "anthro"
  20988. },
  20989. {
  20990. name: "Galaxy Mom",
  20991. height: math.unit(6, "megalightyears"),
  20992. form: "anthro"
  20993. },
  20994. {
  20995. name: "Normal",
  20996. height: math.unit(35, "feet"),
  20997. form: "feral",
  20998. default: true
  20999. },
  21000. {
  21001. name: "Macro",
  21002. height: math.unit(300, "feet"),
  21003. form: "feral"
  21004. },
  21005. {
  21006. name: "Galaxy Mom",
  21007. height: math.unit(10, "megalightyears"),
  21008. form: "feral"
  21009. },
  21010. ],
  21011. {
  21012. "anthro": {
  21013. name: "Anthro",
  21014. default: true
  21015. },
  21016. "feral": {
  21017. name: "Feral"
  21018. }
  21019. }
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21023. {
  21024. hyenaFront: {
  21025. height: math.unit(6, "feet"),
  21026. weight: math.unit(190, "lb"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/kiro/hyena-front.svg",
  21030. extra: 927/839,
  21031. bottom: 91/1018
  21032. },
  21033. form: "hyena",
  21034. default: true
  21035. },
  21036. front: {
  21037. height: math.unit(6, "feet"),
  21038. weight: math.unit(170, "lb"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/kiro/front.svg",
  21042. extra: 1064 / 1012,
  21043. bottom: 0.052
  21044. },
  21045. form: "folf",
  21046. default: true
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Micro",
  21052. height: math.unit(6, "inches"),
  21053. form: "folf"
  21054. },
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(6, "feet"),
  21058. form: "folf",
  21059. default: true
  21060. },
  21061. {
  21062. name: "Macro",
  21063. height: math.unit(72, "feet"),
  21064. form: "folf"
  21065. },
  21066. {
  21067. name: "Micro",
  21068. height: math.unit(6, "inches"),
  21069. form: "hyena"
  21070. },
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(6, "feet"),
  21074. form: "hyena",
  21075. default: true
  21076. },
  21077. {
  21078. name: "Macro",
  21079. height: math.unit(72, "feet"),
  21080. form: "hyena"
  21081. },
  21082. ],
  21083. {
  21084. "hyena": {
  21085. name: "Hyena",
  21086. default: true
  21087. },
  21088. "folf": {
  21089. name: "Folf",
  21090. },
  21091. }
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21095. {
  21096. front: {
  21097. height: math.unit(5 + 9 / 12, "feet"),
  21098. weight: math.unit(175, "lb"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/irishfox/front.svg",
  21102. extra: 1912 / 1680,
  21103. bottom: 0.02
  21104. }
  21105. },
  21106. },
  21107. [
  21108. {
  21109. name: "Nano",
  21110. height: math.unit(1, "mm")
  21111. },
  21112. {
  21113. name: "Micro",
  21114. height: math.unit(2, "inches")
  21115. },
  21116. {
  21117. name: "Normal",
  21118. height: math.unit(5 + 9 / 12, "feet"),
  21119. default: true
  21120. },
  21121. {
  21122. name: "Macro",
  21123. height: math.unit(45, "feet")
  21124. },
  21125. ]
  21126. ))
  21127. characterMakers.push(() => makeCharacter(
  21128. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21129. {
  21130. front: {
  21131. height: math.unit(6 + 1 / 12, "feet"),
  21132. weight: math.unit(75, "lb"),
  21133. name: "Front",
  21134. image: {
  21135. source: "./media/characters/aronai-sieyes/front.svg",
  21136. extra: 1532/1450,
  21137. bottom: 42/1574
  21138. }
  21139. },
  21140. side: {
  21141. height: math.unit(6 + 1 / 12, "feet"),
  21142. weight: math.unit(75, "lb"),
  21143. name: "Side",
  21144. image: {
  21145. source: "./media/characters/aronai-sieyes/side.svg",
  21146. extra: 1422/1365,
  21147. bottom: 148/1570
  21148. }
  21149. },
  21150. back: {
  21151. height: math.unit(6 + 1 / 12, "feet"),
  21152. weight: math.unit(75, "lb"),
  21153. name: "Back",
  21154. image: {
  21155. source: "./media/characters/aronai-sieyes/back.svg",
  21156. extra: 1526/1464,
  21157. bottom: 51/1577
  21158. }
  21159. },
  21160. dressed: {
  21161. height: math.unit(6 + 1 / 12, "feet"),
  21162. weight: math.unit(75, "lb"),
  21163. name: "Dressed",
  21164. image: {
  21165. source: "./media/characters/aronai-sieyes/dressed.svg",
  21166. extra: 1559/1483,
  21167. bottom: 39/1598
  21168. }
  21169. },
  21170. slit: {
  21171. height: math.unit(1.3, "feet"),
  21172. name: "Slit",
  21173. image: {
  21174. source: "./media/characters/aronai-sieyes/slit.svg"
  21175. }
  21176. },
  21177. slitSpread: {
  21178. height: math.unit(0.9, "feet"),
  21179. name: "Slit (Spread)",
  21180. image: {
  21181. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21182. }
  21183. },
  21184. rump: {
  21185. height: math.unit(1.3, "feet"),
  21186. name: "Rump",
  21187. image: {
  21188. source: "./media/characters/aronai-sieyes/rump.svg"
  21189. }
  21190. },
  21191. maw: {
  21192. height: math.unit(1.25, "feet"),
  21193. name: "Maw",
  21194. image: {
  21195. source: "./media/characters/aronai-sieyes/maw.svg"
  21196. }
  21197. },
  21198. feral: {
  21199. height: math.unit(18, "feet"),
  21200. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21201. name: "Feral",
  21202. image: {
  21203. source: "./media/characters/aronai-sieyes/feral.svg",
  21204. extra: 1530 / 1240,
  21205. bottom: 0.035
  21206. }
  21207. },
  21208. },
  21209. [
  21210. {
  21211. name: "Micro",
  21212. height: math.unit(2, "inches")
  21213. },
  21214. {
  21215. name: "Normal",
  21216. height: math.unit(6 + 1 / 12, "feet"),
  21217. default: true
  21218. }
  21219. ]
  21220. ))
  21221. characterMakers.push(() => makeCharacter(
  21222. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21223. {
  21224. front: {
  21225. height: math.unit(12, "feet"),
  21226. weight: math.unit(410, "kg"),
  21227. name: "Front",
  21228. image: {
  21229. source: "./media/characters/xuna/front.svg",
  21230. extra: 2184 / 1980
  21231. }
  21232. },
  21233. side: {
  21234. height: math.unit(12, "feet"),
  21235. weight: math.unit(410, "kg"),
  21236. name: "Side",
  21237. image: {
  21238. source: "./media/characters/xuna/side.svg",
  21239. extra: 2184 / 1980
  21240. }
  21241. },
  21242. back: {
  21243. height: math.unit(12, "feet"),
  21244. weight: math.unit(410, "kg"),
  21245. name: "Back",
  21246. image: {
  21247. source: "./media/characters/xuna/back.svg",
  21248. extra: 2184 / 1980
  21249. }
  21250. },
  21251. },
  21252. [
  21253. {
  21254. name: "Nano glow",
  21255. height: math.unit(10, "nm")
  21256. },
  21257. {
  21258. name: "Micro floof",
  21259. height: math.unit(0.3, "m")
  21260. },
  21261. {
  21262. name: "Huggable softy boi",
  21263. height: math.unit(3.6576, "m"),
  21264. default: true
  21265. },
  21266. {
  21267. name: "Admirable floof",
  21268. height: math.unit(80, "meters")
  21269. },
  21270. {
  21271. name: "Gentle macro",
  21272. height: math.unit(300, "meters")
  21273. },
  21274. {
  21275. name: "Very careful floof",
  21276. height: math.unit(3200, "meters")
  21277. },
  21278. {
  21279. name: "The mega floof",
  21280. height: math.unit(36000, "meters")
  21281. },
  21282. {
  21283. name: "Giga-fur-Wicker",
  21284. height: math.unit(4800000, "meters")
  21285. },
  21286. {
  21287. name: "Licky world",
  21288. height: math.unit(20000000, "meters")
  21289. },
  21290. {
  21291. name: "Floofy cyan sun",
  21292. height: math.unit(1500000000, "meters")
  21293. },
  21294. {
  21295. name: "Milky Wicker",
  21296. height: math.unit(1000000000000000000000, "meters")
  21297. },
  21298. {
  21299. name: "The observing Wicker",
  21300. height: math.unit(999999999999999999999999999, "meters")
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21306. {
  21307. front: {
  21308. height: math.unit(5 + 9 / 12, "feet"),
  21309. weight: math.unit(150, "lb"),
  21310. name: "Front",
  21311. image: {
  21312. source: "./media/characters/arokha-sieyes/front.svg",
  21313. extra: 1425 / 1284,
  21314. bottom: 0.05
  21315. }
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Normal",
  21321. height: math.unit(5 + 9 / 12, "feet")
  21322. },
  21323. {
  21324. name: "Macro",
  21325. height: math.unit(30, "meters"),
  21326. default: true
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21332. {
  21333. front: {
  21334. height: math.unit(6, "feet"),
  21335. weight: math.unit(180, "lb"),
  21336. name: "Front",
  21337. image: {
  21338. source: "./media/characters/arokh-sieyes/front.svg",
  21339. extra: 1830 / 1769,
  21340. bottom: 0.01
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(6, "feet")
  21348. },
  21349. {
  21350. name: "Macro",
  21351. height: math.unit(30, "meters"),
  21352. default: true
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21358. {
  21359. side: {
  21360. height: math.unit(13 + 1 / 12, "feet"),
  21361. weight: math.unit(8.5, "tonnes"),
  21362. preyCapacity: math.unit(36, "people"),
  21363. name: "Side",
  21364. image: {
  21365. source: "./media/characters/goldeneye/side.svg",
  21366. extra: 1139/741,
  21367. bottom: 98/1237
  21368. }
  21369. },
  21370. front: {
  21371. height: math.unit(5.1, "feet"),
  21372. weight: math.unit(8.5, "tonnes"),
  21373. preyCapacity: math.unit(36, "people"),
  21374. name: "Front",
  21375. image: {
  21376. source: "./media/characters/goldeneye/front.svg",
  21377. extra: 635/365,
  21378. bottom: 598/1233
  21379. }
  21380. },
  21381. maw: {
  21382. height: math.unit(6.6, "feet"),
  21383. name: "Maw",
  21384. image: {
  21385. source: "./media/characters/goldeneye/maw.svg"
  21386. }
  21387. },
  21388. headFront: {
  21389. height: math.unit(8, "feet"),
  21390. name: "Head (Front)",
  21391. image: {
  21392. source: "./media/characters/goldeneye/head-front.svg"
  21393. }
  21394. },
  21395. headSide: {
  21396. height: math.unit(6, "feet"),
  21397. name: "Head (Side)",
  21398. image: {
  21399. source: "./media/characters/goldeneye/head-side.svg"
  21400. }
  21401. },
  21402. headBack: {
  21403. height: math.unit(8, "feet"),
  21404. name: "Head (Back)",
  21405. image: {
  21406. source: "./media/characters/goldeneye/head-back.svg"
  21407. }
  21408. },
  21409. paw: {
  21410. height: math.unit(3.4, "feet"),
  21411. name: "Paw",
  21412. image: {
  21413. source: "./media/characters/goldeneye/paw.svg"
  21414. }
  21415. },
  21416. toering: {
  21417. height: math.unit(0.45, "feet"),
  21418. name: "Toering",
  21419. image: {
  21420. source: "./media/characters/goldeneye/toering.svg"
  21421. }
  21422. },
  21423. eyes: {
  21424. height: math.unit(0.5, "feet"),
  21425. name: "Eyes",
  21426. image: {
  21427. source: "./media/characters/goldeneye/eyes.svg"
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(13 + 1 / 12, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21441. {
  21442. front: {
  21443. height: math.unit(6 + 1 / 12, "feet"),
  21444. weight: math.unit(210, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/leonardo-lycheborne/front.svg",
  21448. extra: 776/723,
  21449. bottom: 34/810
  21450. }
  21451. },
  21452. side: {
  21453. height: math.unit(6 + 1 / 12, "feet"),
  21454. weight: math.unit(210, "lb"),
  21455. name: "Side",
  21456. image: {
  21457. source: "./media/characters/leonardo-lycheborne/side.svg",
  21458. extra: 780/728,
  21459. bottom: 12/792
  21460. }
  21461. },
  21462. back: {
  21463. height: math.unit(6 + 1 / 12, "feet"),
  21464. weight: math.unit(210, "lb"),
  21465. name: "Back",
  21466. image: {
  21467. source: "./media/characters/leonardo-lycheborne/back.svg",
  21468. extra: 775/721,
  21469. bottom: 17/792
  21470. }
  21471. },
  21472. hand: {
  21473. height: math.unit(1.08, "feet"),
  21474. name: "Hand",
  21475. image: {
  21476. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21477. }
  21478. },
  21479. foot: {
  21480. height: math.unit(1.32, "feet"),
  21481. name: "Foot",
  21482. image: {
  21483. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21484. }
  21485. },
  21486. maw: {
  21487. height: math.unit(1, "feet"),
  21488. name: "Maw",
  21489. image: {
  21490. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21491. }
  21492. },
  21493. were: {
  21494. height: math.unit(20, "feet"),
  21495. weight: math.unit(7800, "lb"),
  21496. name: "Were",
  21497. image: {
  21498. source: "./media/characters/leonardo-lycheborne/were.svg",
  21499. extra: 1224/1165,
  21500. bottom: 72/1296
  21501. }
  21502. },
  21503. feral: {
  21504. height: math.unit(7.5, "feet"),
  21505. weight: math.unit(600, "lb"),
  21506. name: "Feral",
  21507. image: {
  21508. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21509. extra: 797/702,
  21510. bottom: 139/936
  21511. }
  21512. },
  21513. taur: {
  21514. height: math.unit(11, "feet"),
  21515. weight: math.unit(3300, "lb"),
  21516. name: "Taur",
  21517. image: {
  21518. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21519. extra: 1271/1197,
  21520. bottom: 47/1318
  21521. }
  21522. },
  21523. barghest: {
  21524. height: math.unit(11, "feet"),
  21525. weight: math.unit(1300, "lb"),
  21526. name: "Barghest",
  21527. image: {
  21528. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21529. extra: 1291/1204,
  21530. bottom: 37/1328
  21531. }
  21532. },
  21533. dick: {
  21534. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21535. name: "Dick",
  21536. image: {
  21537. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21538. }
  21539. },
  21540. dickWere: {
  21541. height: math.unit((20) / 3.8, "feet"),
  21542. name: "Dick (Were)",
  21543. image: {
  21544. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21545. }
  21546. },
  21547. },
  21548. [
  21549. {
  21550. name: "Normal",
  21551. height: math.unit(6 + 1 / 12, "feet"),
  21552. default: true
  21553. },
  21554. ]
  21555. ))
  21556. characterMakers.push(() => makeCharacter(
  21557. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21558. {
  21559. front: {
  21560. height: math.unit(10, "feet"),
  21561. weight: math.unit(350, "lb"),
  21562. name: "Front",
  21563. image: {
  21564. source: "./media/characters/jet/front.svg",
  21565. extra: 2050 / 1980,
  21566. bottom: 0.013
  21567. }
  21568. },
  21569. back: {
  21570. height: math.unit(10, "feet"),
  21571. weight: math.unit(350, "lb"),
  21572. name: "Back",
  21573. image: {
  21574. source: "./media/characters/jet/back.svg",
  21575. extra: 2050 / 1980,
  21576. bottom: 0.013
  21577. }
  21578. },
  21579. },
  21580. [
  21581. {
  21582. name: "Micro",
  21583. height: math.unit(6, "inches")
  21584. },
  21585. {
  21586. name: "Normal",
  21587. height: math.unit(10, "feet"),
  21588. default: true
  21589. },
  21590. {
  21591. name: "Macro",
  21592. height: math.unit(100, "feet")
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21598. {
  21599. front: {
  21600. height: math.unit(15, "feet"),
  21601. weight: math.unit(2800, "lb"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/tanarath/front.svg",
  21605. extra: 2392 / 2220,
  21606. bottom: 0.03
  21607. }
  21608. },
  21609. back: {
  21610. height: math.unit(15, "feet"),
  21611. weight: math.unit(2800, "lb"),
  21612. name: "Back",
  21613. image: {
  21614. source: "./media/characters/tanarath/back.svg",
  21615. extra: 2392 / 2220,
  21616. bottom: 0.03
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(15, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21630. {
  21631. front: {
  21632. height: math.unit(7 + 1 / 12, "feet"),
  21633. weight: math.unit(175, "lb"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/patty-cattybatty/front.svg",
  21637. extra: 908 / 874,
  21638. bottom: 0.025
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Micro",
  21645. height: math.unit(1, "inch")
  21646. },
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(7 + 1 / 12, "feet")
  21650. },
  21651. {
  21652. name: "Mini Macro",
  21653. height: math.unit(155, "feet")
  21654. },
  21655. {
  21656. name: "Macro",
  21657. height: math.unit(1077, "feet")
  21658. },
  21659. {
  21660. name: "Mega Macro",
  21661. height: math.unit(47650, "feet"),
  21662. default: true
  21663. },
  21664. {
  21665. name: "Giga Macro",
  21666. height: math.unit(440, "miles")
  21667. },
  21668. {
  21669. name: "Tera Macro",
  21670. height: math.unit(8700, "miles")
  21671. },
  21672. {
  21673. name: "Planetary Macro",
  21674. height: math.unit(32700, "miles")
  21675. },
  21676. {
  21677. name: "Solar Macro",
  21678. height: math.unit(550000, "miles")
  21679. },
  21680. {
  21681. name: "Celestial Macro",
  21682. height: math.unit(2.5, "AU")
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(4 + 5 / 12, "feet"),
  21691. weight: math.unit(90, "lb"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/cappu/front.svg",
  21695. extra: 1247 / 1152,
  21696. bottom: 0.012
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(4 + 5 / 12, "feet"),
  21704. default: true
  21705. },
  21706. ]
  21707. ))
  21708. characterMakers.push(() => makeCharacter(
  21709. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21710. {
  21711. frontDressed: {
  21712. height: math.unit(70, "cm"),
  21713. weight: math.unit(6, "kg"),
  21714. name: "Front (Dressed)",
  21715. image: {
  21716. source: "./media/characters/sebi/front-dressed.svg",
  21717. extra: 713.5 / 686.5,
  21718. bottom: 0.003
  21719. }
  21720. },
  21721. front: {
  21722. height: math.unit(70, "cm"),
  21723. weight: math.unit(5, "kg"),
  21724. name: "Front",
  21725. image: {
  21726. source: "./media/characters/sebi/front.svg",
  21727. extra: 713.5 / 686.5,
  21728. bottom: 0.003
  21729. }
  21730. }
  21731. },
  21732. [
  21733. {
  21734. name: "Normal",
  21735. height: math.unit(70, "cm"),
  21736. default: true
  21737. },
  21738. {
  21739. name: "Macro",
  21740. height: math.unit(8, "meters")
  21741. },
  21742. ]
  21743. ))
  21744. characterMakers.push(() => makeCharacter(
  21745. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21746. {
  21747. front: {
  21748. height: math.unit(6, "feet"),
  21749. weight: math.unit(150, "lb"),
  21750. name: "Front",
  21751. image: {
  21752. source: "./media/characters/typhek/front.svg",
  21753. extra: 1948 / 1929,
  21754. bottom: 0.025
  21755. }
  21756. },
  21757. side: {
  21758. height: math.unit(6, "feet"),
  21759. weight: math.unit(150, "lb"),
  21760. name: "Side",
  21761. image: {
  21762. source: "./media/characters/typhek/side.svg",
  21763. extra: 2034 / 2010,
  21764. bottom: 0.003
  21765. }
  21766. },
  21767. back: {
  21768. height: math.unit(6, "feet"),
  21769. weight: math.unit(150, "lb"),
  21770. name: "Back",
  21771. image: {
  21772. source: "./media/characters/typhek/back.svg",
  21773. extra: 2005 / 1978,
  21774. bottom: 0.004
  21775. }
  21776. },
  21777. palm: {
  21778. height: math.unit(1.2, "feet"),
  21779. name: "Palm",
  21780. image: {
  21781. source: "./media/characters/typhek/palm.svg"
  21782. }
  21783. },
  21784. fist: {
  21785. height: math.unit(1.1, "feet"),
  21786. name: "Fist",
  21787. image: {
  21788. source: "./media/characters/typhek/fist.svg"
  21789. }
  21790. },
  21791. foot: {
  21792. height: math.unit(1.57, "feet"),
  21793. name: "Foot",
  21794. image: {
  21795. source: "./media/characters/typhek/foot.svg"
  21796. }
  21797. },
  21798. sole: {
  21799. height: math.unit(2.05, "feet"),
  21800. name: "Sole",
  21801. image: {
  21802. source: "./media/characters/typhek/sole.svg"
  21803. }
  21804. },
  21805. },
  21806. [
  21807. {
  21808. name: "Macro",
  21809. height: math.unit(40, "stories"),
  21810. default: true
  21811. },
  21812. {
  21813. name: "Megamacro",
  21814. height: math.unit(1, "mile")
  21815. },
  21816. {
  21817. name: "Gigamacro",
  21818. height: math.unit(4000, "solarradii")
  21819. },
  21820. {
  21821. name: "Universal",
  21822. height: math.unit(1.1, "universes")
  21823. }
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21828. {
  21829. side: {
  21830. height: math.unit(5 + 7 / 12, "feet"),
  21831. weight: math.unit(150, "lb"),
  21832. name: "Side",
  21833. image: {
  21834. source: "./media/characters/kassy/side.svg",
  21835. extra: 1280 / 1225,
  21836. bottom: 0.002
  21837. }
  21838. },
  21839. front: {
  21840. height: math.unit(5 + 7 / 12, "feet"),
  21841. weight: math.unit(150, "lb"),
  21842. name: "Front",
  21843. image: {
  21844. source: "./media/characters/kassy/front.svg",
  21845. extra: 1280 / 1225,
  21846. bottom: 0.025
  21847. }
  21848. },
  21849. back: {
  21850. height: math.unit(5 + 7 / 12, "feet"),
  21851. weight: math.unit(150, "lb"),
  21852. name: "Back",
  21853. image: {
  21854. source: "./media/characters/kassy/back.svg",
  21855. extra: 1280 / 1225,
  21856. bottom: 0.002
  21857. }
  21858. },
  21859. foot: {
  21860. height: math.unit(1.266, "feet"),
  21861. name: "Foot",
  21862. image: {
  21863. source: "./media/characters/kassy/foot.svg"
  21864. }
  21865. },
  21866. },
  21867. [
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(5 + 7 / 12, "feet")
  21871. },
  21872. {
  21873. name: "Macro",
  21874. height: math.unit(137, "feet"),
  21875. default: true
  21876. },
  21877. {
  21878. name: "Megamacro",
  21879. height: math.unit(1, "mile")
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21885. {
  21886. front: {
  21887. height: math.unit(6 + 1 / 12, "feet"),
  21888. weight: math.unit(200, "lb"),
  21889. name: "Front",
  21890. image: {
  21891. source: "./media/characters/neil/front.svg",
  21892. extra: 1326 / 1250,
  21893. bottom: 0.023
  21894. }
  21895. },
  21896. },
  21897. [
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(6 + 1 / 12, "feet"),
  21901. default: true
  21902. },
  21903. {
  21904. name: "Macro",
  21905. height: math.unit(200, "feet")
  21906. },
  21907. ]
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21911. {
  21912. front: {
  21913. height: math.unit(5 + 9 / 12, "feet"),
  21914. weight: math.unit(190, "lb"),
  21915. name: "Front",
  21916. image: {
  21917. source: "./media/characters/atticus/front.svg",
  21918. extra: 2934 / 2785,
  21919. bottom: 0.025
  21920. }
  21921. },
  21922. },
  21923. [
  21924. {
  21925. name: "Normal",
  21926. height: math.unit(5 + 9 / 12, "feet"),
  21927. default: true
  21928. },
  21929. {
  21930. name: "Macro",
  21931. height: math.unit(180, "feet")
  21932. },
  21933. ]
  21934. ))
  21935. characterMakers.push(() => makeCharacter(
  21936. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21937. {
  21938. side: {
  21939. height: math.unit(9, "feet"),
  21940. weight: math.unit(650, "lb"),
  21941. name: "Side",
  21942. image: {
  21943. source: "./media/characters/milo/side.svg",
  21944. extra: 2644 / 2310,
  21945. bottom: 0.032
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Normal",
  21952. height: math.unit(9, "feet"),
  21953. default: true
  21954. },
  21955. {
  21956. name: "Macro",
  21957. height: math.unit(300, "feet")
  21958. },
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21963. {
  21964. side: {
  21965. height: math.unit(8, "meters"),
  21966. weight: math.unit(90000, "kg"),
  21967. name: "Side",
  21968. image: {
  21969. source: "./media/characters/ijzer/side.svg",
  21970. extra: 2756 / 1600,
  21971. bottom: 0.01
  21972. }
  21973. },
  21974. },
  21975. [
  21976. {
  21977. name: "Small",
  21978. height: math.unit(3, "meters")
  21979. },
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(8, "meters"),
  21983. default: true
  21984. },
  21985. {
  21986. name: "Normal+",
  21987. height: math.unit(10, "meters")
  21988. },
  21989. {
  21990. name: "Bigger",
  21991. height: math.unit(24, "meters")
  21992. },
  21993. {
  21994. name: "Huge",
  21995. height: math.unit(80, "meters")
  21996. },
  21997. ]
  21998. ))
  21999. characterMakers.push(() => makeCharacter(
  22000. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22001. {
  22002. front: {
  22003. height: math.unit(6 + 2 / 12, "feet"),
  22004. weight: math.unit(153, "lb"),
  22005. name: "Front",
  22006. image: {
  22007. source: "./media/characters/luca-cervicum/front.svg",
  22008. extra: 370 / 327,
  22009. bottom: 0.015
  22010. }
  22011. },
  22012. back: {
  22013. height: math.unit(6 + 2 / 12, "feet"),
  22014. weight: math.unit(153, "lb"),
  22015. name: "Back",
  22016. image: {
  22017. source: "./media/characters/luca-cervicum/back.svg",
  22018. extra: 367 / 333,
  22019. bottom: 0.005
  22020. }
  22021. },
  22022. frontGear: {
  22023. height: math.unit(6 + 2 / 12, "feet"),
  22024. weight: math.unit(173, "lb"),
  22025. name: "Front (Gear)",
  22026. image: {
  22027. source: "./media/characters/luca-cervicum/front-gear.svg",
  22028. extra: 377 / 333,
  22029. bottom: 0.006
  22030. }
  22031. },
  22032. },
  22033. [
  22034. {
  22035. name: "Normal",
  22036. height: math.unit(6 + 2 / 12, "feet"),
  22037. default: true
  22038. },
  22039. ]
  22040. ))
  22041. characterMakers.push(() => makeCharacter(
  22042. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22043. {
  22044. front: {
  22045. height: math.unit(6 + 1 / 12, "feet"),
  22046. weight: math.unit(304, "lb"),
  22047. name: "Front",
  22048. image: {
  22049. source: "./media/characters/oliver/front.svg",
  22050. extra: 157 / 143,
  22051. bottom: 0.08
  22052. }
  22053. },
  22054. },
  22055. [
  22056. {
  22057. name: "Normal",
  22058. height: math.unit(6 + 1 / 12, "feet"),
  22059. default: true
  22060. },
  22061. ]
  22062. ))
  22063. characterMakers.push(() => makeCharacter(
  22064. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22065. {
  22066. front: {
  22067. height: math.unit(5 + 7 / 12, "feet"),
  22068. weight: math.unit(140, "lb"),
  22069. name: "Front",
  22070. image: {
  22071. source: "./media/characters/shane/front.svg",
  22072. extra: 304 / 289,
  22073. bottom: 0.005
  22074. }
  22075. },
  22076. },
  22077. [
  22078. {
  22079. name: "Normal",
  22080. height: math.unit(5 + 7 / 12, "feet"),
  22081. default: true
  22082. },
  22083. ]
  22084. ))
  22085. characterMakers.push(() => makeCharacter(
  22086. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22087. {
  22088. front: {
  22089. height: math.unit(5 + 9 / 12, "feet"),
  22090. weight: math.unit(178, "lb"),
  22091. name: "Front",
  22092. image: {
  22093. source: "./media/characters/shin/front.svg",
  22094. extra: 159 / 151,
  22095. bottom: 0.015
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(5 + 9 / 12, "feet"),
  22103. default: true
  22104. },
  22105. ]
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(5 + 10 / 12, "feet"),
  22112. weight: math.unit(168, "lb"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/xerxes/front.svg",
  22116. extra: 282 / 260,
  22117. bottom: 0.045
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(5 + 10 / 12, "feet"),
  22125. default: true
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22131. {
  22132. front: {
  22133. height: math.unit(6 + 7 / 12, "feet"),
  22134. weight: math.unit(208, "lb"),
  22135. name: "Front",
  22136. image: {
  22137. source: "./media/characters/chaska/front.svg",
  22138. extra: 332 / 319,
  22139. bottom: 0.015
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(6 + 7 / 12, "feet"),
  22147. default: true
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22153. {
  22154. front: {
  22155. height: math.unit(5 + 8 / 12, "feet"),
  22156. weight: math.unit(208, "lb"),
  22157. name: "Front",
  22158. image: {
  22159. source: "./media/characters/enuk/front.svg",
  22160. extra: 437 / 406,
  22161. bottom: 0.02
  22162. }
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(5 + 8 / 12, "feet"),
  22169. default: true
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(5 + 10 / 12, "feet"),
  22178. weight: math.unit(252, "lb"),
  22179. name: "Front",
  22180. image: {
  22181. source: "./media/characters/bruun/front.svg",
  22182. extra: 197 / 187,
  22183. bottom: 0.012
  22184. }
  22185. },
  22186. },
  22187. [
  22188. {
  22189. name: "Normal",
  22190. height: math.unit(5 + 10 / 12, "feet"),
  22191. default: true
  22192. },
  22193. ]
  22194. ))
  22195. characterMakers.push(() => makeCharacter(
  22196. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22197. {
  22198. front: {
  22199. height: math.unit(6 + 10 / 12, "feet"),
  22200. weight: math.unit(255, "lb"),
  22201. name: "Front",
  22202. image: {
  22203. source: "./media/characters/alexeev/front.svg",
  22204. extra: 213 / 200,
  22205. bottom: 0.05
  22206. }
  22207. },
  22208. },
  22209. [
  22210. {
  22211. name: "Normal",
  22212. height: math.unit(6 + 10 / 12, "feet"),
  22213. default: true
  22214. },
  22215. ]
  22216. ))
  22217. characterMakers.push(() => makeCharacter(
  22218. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22219. {
  22220. front: {
  22221. height: math.unit(2 + 8 / 12, "feet"),
  22222. weight: math.unit(22, "lb"),
  22223. name: "Front",
  22224. image: {
  22225. source: "./media/characters/evelyn/front.svg",
  22226. extra: 208 / 180
  22227. }
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(2 + 8 / 12, "feet"),
  22234. default: true
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22240. {
  22241. front: {
  22242. height: math.unit(5 + 9 / 12, "feet"),
  22243. weight: math.unit(139, "lb"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/inca/front.svg",
  22247. extra: 294 / 291,
  22248. bottom: 0.03
  22249. }
  22250. },
  22251. },
  22252. [
  22253. {
  22254. name: "Normal",
  22255. height: math.unit(5 + 9 / 12, "feet"),
  22256. default: true
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22262. {
  22263. front: {
  22264. height: math.unit(6 + 3 / 12, "feet"),
  22265. weight: math.unit(185, "lb"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/mera/front.svg",
  22269. extra: 291 / 277,
  22270. bottom: 0.03
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(6 + 3 / 12, "feet"),
  22278. default: true
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(6 + 7 / 12, "feet"),
  22287. weight: math.unit(160, "lb"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/ceres/front.svg",
  22291. extra: 1023 / 950,
  22292. bottom: 0.027
  22293. }
  22294. },
  22295. back: {
  22296. height: math.unit(6 + 7 / 12, "feet"),
  22297. weight: math.unit(160, "lb"),
  22298. name: "Back",
  22299. image: {
  22300. source: "./media/characters/ceres/back.svg",
  22301. extra: 1023 / 950
  22302. }
  22303. },
  22304. },
  22305. [
  22306. {
  22307. name: "Normal",
  22308. height: math.unit(6 + 7 / 12, "feet"),
  22309. default: true
  22310. },
  22311. ]
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22315. {
  22316. front: {
  22317. height: math.unit(5 + 10 / 12, "feet"),
  22318. weight: math.unit(150, "lb"),
  22319. name: "Front",
  22320. image: {
  22321. source: "./media/characters/kris/front.svg",
  22322. extra: 885 / 803,
  22323. bottom: 0.03
  22324. }
  22325. },
  22326. },
  22327. [
  22328. {
  22329. name: "Normal",
  22330. height: math.unit(5 + 10 / 12, "feet"),
  22331. default: true
  22332. },
  22333. ]
  22334. ))
  22335. characterMakers.push(() => makeCharacter(
  22336. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22337. {
  22338. dragon_front: {
  22339. height: math.unit(5, "feet"),
  22340. name: "Front",
  22341. image: {
  22342. source: "./media/characters/taluthus/dragon-front.svg",
  22343. extra: 1203/1098,
  22344. bottom: 46/1249
  22345. },
  22346. form: "dragon",
  22347. default: true
  22348. },
  22349. dragon_maw: {
  22350. height: math.unit(2.35, "feet"),
  22351. name: "Maw",
  22352. image: {
  22353. source: "./media/characters/taluthus/dragon-maw.svg"
  22354. },
  22355. form: "dragon",
  22356. },
  22357. kitsune_front: {
  22358. height: math.unit(7, "feet"),
  22359. name: "Front",
  22360. image: {
  22361. source: "./media/characters/taluthus/kitsune-front.svg",
  22362. extra: 900/841,
  22363. bottom: 65/965
  22364. },
  22365. form: "kitsune",
  22366. default: true
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Normal",
  22372. height: math.unit(5, "feet"),
  22373. form: "dragon",
  22374. default: true,
  22375. },
  22376. {
  22377. name: "Normal",
  22378. height: math.unit(7, "feet"),
  22379. form: "kitsune",
  22380. default: true
  22381. },
  22382. {
  22383. name: "Macro",
  22384. height: math.unit(300, "feet"),
  22385. allForms: true
  22386. },
  22387. ],
  22388. {
  22389. "dragon": {
  22390. name: "Dragon",
  22391. default: true
  22392. },
  22393. "kitsune": {
  22394. name: "Kitsune",
  22395. },
  22396. }
  22397. ))
  22398. characterMakers.push(() => makeCharacter(
  22399. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22400. {
  22401. front: {
  22402. height: math.unit(5 + 9 / 12, "feet"),
  22403. weight: math.unit(145, "lb"),
  22404. name: "Front",
  22405. image: {
  22406. source: "./media/characters/dawn/front.svg",
  22407. extra: 2094 / 2016,
  22408. bottom: 0.025
  22409. }
  22410. },
  22411. back: {
  22412. height: math.unit(5 + 9 / 12, "feet"),
  22413. weight: math.unit(160, "lb"),
  22414. name: "Back",
  22415. image: {
  22416. source: "./media/characters/dawn/back.svg",
  22417. extra: 2112 / 2080,
  22418. bottom: 0.005
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Normal",
  22425. height: math.unit(6 + 7 / 12, "feet"),
  22426. default: true
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22432. {
  22433. anthro: {
  22434. height: math.unit(8 + 3 / 12, "feet"),
  22435. weight: math.unit(450, "lb"),
  22436. name: "Anthro",
  22437. image: {
  22438. source: "./media/characters/arador/anthro.svg",
  22439. extra: 1835 / 1718,
  22440. bottom: 0.025
  22441. }
  22442. },
  22443. feral: {
  22444. height: math.unit(4, "feet"),
  22445. weight: math.unit(200, "lb"),
  22446. name: "Feral",
  22447. image: {
  22448. source: "./media/characters/arador/feral.svg",
  22449. extra: 1683 / 1514,
  22450. bottom: 0.07
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Normal",
  22457. height: math.unit(8 + 3 / 12, "feet")
  22458. },
  22459. {
  22460. name: "Macro",
  22461. height: math.unit(82.5, "feet"),
  22462. default: true
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22468. {
  22469. front: {
  22470. height: math.unit(5 + 10 / 12, "feet"),
  22471. weight: math.unit(125, "lb"),
  22472. name: "Front",
  22473. image: {
  22474. source: "./media/characters/dharsi/front.svg",
  22475. extra: 716 / 630,
  22476. bottom: 0.035
  22477. }
  22478. },
  22479. },
  22480. [
  22481. {
  22482. name: "Nano",
  22483. height: math.unit(100, "nm")
  22484. },
  22485. {
  22486. name: "Micro",
  22487. height: math.unit(2, "inches")
  22488. },
  22489. {
  22490. name: "Normal",
  22491. height: math.unit(5 + 10 / 12, "feet"),
  22492. default: true
  22493. },
  22494. {
  22495. name: "Macro",
  22496. height: math.unit(1000, "feet")
  22497. },
  22498. {
  22499. name: "Megamacro",
  22500. height: math.unit(10, "miles")
  22501. },
  22502. {
  22503. name: "Gigamacro",
  22504. height: math.unit(3000, "miles")
  22505. },
  22506. {
  22507. name: "Teramacro",
  22508. height: math.unit(500000, "miles")
  22509. },
  22510. {
  22511. name: "Teramacro+",
  22512. height: math.unit(30, "galaxies")
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22518. {
  22519. front: {
  22520. height: math.unit(6, "feet"),
  22521. weight: math.unit(150, "lb"),
  22522. name: "Front",
  22523. image: {
  22524. source: "./media/characters/deathy/front.svg",
  22525. extra: 1552 / 1463,
  22526. bottom: 0.025
  22527. }
  22528. },
  22529. side: {
  22530. height: math.unit(6, "feet"),
  22531. weight: math.unit(150, "lb"),
  22532. name: "Side",
  22533. image: {
  22534. source: "./media/characters/deathy/side.svg",
  22535. extra: 1604 / 1455,
  22536. bottom: 0.025
  22537. }
  22538. },
  22539. back: {
  22540. height: math.unit(6, "feet"),
  22541. weight: math.unit(150, "lb"),
  22542. name: "Back",
  22543. image: {
  22544. source: "./media/characters/deathy/back.svg",
  22545. extra: 1580 / 1463,
  22546. bottom: 0.005
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Micro",
  22553. height: math.unit(5, "millimeters")
  22554. },
  22555. {
  22556. name: "Normal",
  22557. height: math.unit(6 + 5 / 12, "feet"),
  22558. default: true
  22559. },
  22560. ]
  22561. ))
  22562. characterMakers.push(() => makeCharacter(
  22563. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22564. {
  22565. front: {
  22566. height: math.unit(16, "feet"),
  22567. weight: math.unit(4000, "lb"),
  22568. name: "Front",
  22569. image: {
  22570. source: "./media/characters/juniper/front.svg",
  22571. bottom: 0.04
  22572. }
  22573. },
  22574. },
  22575. [
  22576. {
  22577. name: "Normal",
  22578. height: math.unit(16, "feet"),
  22579. default: true
  22580. },
  22581. ]
  22582. ))
  22583. characterMakers.push(() => makeCharacter(
  22584. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22585. {
  22586. front: {
  22587. height: math.unit(6, "feet"),
  22588. weight: math.unit(150, "lb"),
  22589. name: "Front",
  22590. image: {
  22591. source: "./media/characters/hipster/front.svg",
  22592. extra: 1312 / 1209,
  22593. bottom: 0.025
  22594. }
  22595. },
  22596. back: {
  22597. height: math.unit(6, "feet"),
  22598. weight: math.unit(150, "lb"),
  22599. name: "Back",
  22600. image: {
  22601. source: "./media/characters/hipster/back.svg",
  22602. extra: 1281 / 1196,
  22603. bottom: 0.01
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Micro",
  22610. height: math.unit(1, "mm")
  22611. },
  22612. {
  22613. name: "Normal",
  22614. height: math.unit(4, "inches"),
  22615. default: true
  22616. },
  22617. {
  22618. name: "Macro",
  22619. height: math.unit(500, "feet")
  22620. },
  22621. {
  22622. name: "Megamacro",
  22623. height: math.unit(1000, "miles")
  22624. },
  22625. ]
  22626. ))
  22627. characterMakers.push(() => makeCharacter(
  22628. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22629. {
  22630. front: {
  22631. height: math.unit(6, "feet"),
  22632. weight: math.unit(150, "lb"),
  22633. name: "Front",
  22634. image: {
  22635. source: "./media/characters/tendirmuldr/front.svg",
  22636. extra: 1878 / 1772,
  22637. bottom: 0.015
  22638. }
  22639. },
  22640. },
  22641. [
  22642. {
  22643. name: "Megamacro",
  22644. height: math.unit(1500, "miles"),
  22645. default: true
  22646. },
  22647. ]
  22648. ))
  22649. characterMakers.push(() => makeCharacter(
  22650. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22651. {
  22652. front: {
  22653. height: math.unit(14, "feet"),
  22654. weight: math.unit(12000, "lb"),
  22655. name: "Front",
  22656. image: {
  22657. source: "./media/characters/mort/front.svg",
  22658. extra: 365 / 318,
  22659. bottom: 0.01
  22660. }
  22661. },
  22662. side: {
  22663. height: math.unit(14, "feet"),
  22664. weight: math.unit(12000, "lb"),
  22665. name: "Side",
  22666. image: {
  22667. source: "./media/characters/mort/side.svg",
  22668. extra: 365 / 318,
  22669. bottom: 0.052
  22670. },
  22671. default: true
  22672. },
  22673. back: {
  22674. height: math.unit(14, "feet"),
  22675. weight: math.unit(12000, "lb"),
  22676. name: "Back",
  22677. image: {
  22678. source: "./media/characters/mort/back.svg",
  22679. extra: 371 / 332,
  22680. bottom: 0.18
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(14, "feet"),
  22688. default: true
  22689. },
  22690. ]
  22691. ))
  22692. characterMakers.push(() => makeCharacter(
  22693. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22694. {
  22695. front: {
  22696. height: math.unit(8, "feet"),
  22697. weight: math.unit(1, "ton"),
  22698. name: "Front",
  22699. image: {
  22700. source: "./media/characters/lycoa/front.svg",
  22701. extra: 1836/1728,
  22702. bottom: 81/1917
  22703. }
  22704. },
  22705. back: {
  22706. height: math.unit(8, "feet"),
  22707. weight: math.unit(1, "ton"),
  22708. name: "Back",
  22709. image: {
  22710. source: "./media/characters/lycoa/back.svg",
  22711. extra: 1785/1720,
  22712. bottom: 91/1876
  22713. }
  22714. },
  22715. head: {
  22716. height: math.unit(1.6243, "feet"),
  22717. name: "Head",
  22718. image: {
  22719. source: "./media/characters/lycoa/head.svg",
  22720. extra: 1011/782,
  22721. bottom: 0/1011
  22722. }
  22723. },
  22724. tailmaw: {
  22725. height: math.unit(1.9, "feet"),
  22726. name: "Tailmaw",
  22727. image: {
  22728. source: "./media/characters/lycoa/tailmaw.svg"
  22729. }
  22730. },
  22731. tentacles: {
  22732. height: math.unit(2.1, "feet"),
  22733. name: "Tentacles",
  22734. image: {
  22735. source: "./media/characters/lycoa/tentacles.svg"
  22736. }
  22737. },
  22738. dick: {
  22739. height: math.unit(1.73, "feet"),
  22740. name: "Dick",
  22741. image: {
  22742. source: "./media/characters/lycoa/dick.svg"
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(8, "feet"),
  22750. default: true
  22751. },
  22752. {
  22753. name: "Macro",
  22754. height: math.unit(30, "feet")
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22760. {
  22761. front: {
  22762. height: math.unit(4 + 2 / 12, "feet"),
  22763. weight: math.unit(70, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/naldara/front.svg",
  22767. extra: 1664/1387,
  22768. bottom: 81/1745
  22769. },
  22770. form: "anthro",
  22771. default: true
  22772. },
  22773. naga: {
  22774. height: math.unit(20, "feet"),
  22775. weight: math.unit(15000, "kg"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/naldara/naga.svg",
  22779. extra: 1590/1396,
  22780. bottom: 285/1875
  22781. },
  22782. form: "naga",
  22783. default: true
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Normal",
  22789. height: math.unit(4 + 2 / 12, "feet"),
  22790. form: "anthro",
  22791. default: true
  22792. },
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(20, "feet"),
  22796. form: "naga",
  22797. default: true
  22798. },
  22799. ],
  22800. {
  22801. "anthro": {
  22802. name: "Anthro",
  22803. default: true
  22804. },
  22805. "naga": {
  22806. name: "Naga"
  22807. }
  22808. }
  22809. ))
  22810. characterMakers.push(() => makeCharacter(
  22811. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22812. {
  22813. front: {
  22814. height: math.unit(13 + 7 / 12, "feet"),
  22815. weight: math.unit(1500, "lb"),
  22816. name: "Front",
  22817. image: {
  22818. source: "./media/characters/briar/front.svg",
  22819. extra: 1223/1157,
  22820. bottom: 123/1346
  22821. }
  22822. },
  22823. },
  22824. [
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(13 + 7 / 12, "feet"),
  22828. default: true
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22834. {
  22835. side: {
  22836. height: math.unit(16, "feet"),
  22837. weight: math.unit(500, "lb"),
  22838. name: "Side",
  22839. image: {
  22840. source: "./media/characters/vanguard/side.svg",
  22841. extra: 1022/914,
  22842. bottom: 30/1052
  22843. }
  22844. },
  22845. sideAlt: {
  22846. height: math.unit(10, "feet"),
  22847. weight: math.unit(500, "lb"),
  22848. name: "Side (Alt)",
  22849. image: {
  22850. source: "./media/characters/vanguard/side-alt.svg",
  22851. extra: 502 / 425,
  22852. bottom: 0.087
  22853. }
  22854. },
  22855. },
  22856. [
  22857. {
  22858. name: "Normal",
  22859. height: math.unit(17.71, "feet"),
  22860. default: true
  22861. },
  22862. ]
  22863. ))
  22864. characterMakers.push(() => makeCharacter(
  22865. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22866. {
  22867. front: {
  22868. height: math.unit(7.5, "feet"),
  22869. weight: math.unit(2, "lb"),
  22870. name: "Front",
  22871. image: {
  22872. source: "./media/characters/artemis/work-safe-front.svg",
  22873. extra: 1192 / 1075,
  22874. bottom: 0.07
  22875. },
  22876. form: "work-safe",
  22877. default: true
  22878. },
  22879. frontNsfw: {
  22880. height: math.unit(7.5, "feet"),
  22881. weight: math.unit(2, "lb"),
  22882. name: "Front",
  22883. image: {
  22884. source: "./media/characters/artemis/calibrating-front.svg",
  22885. extra: 1192 / 1075,
  22886. bottom: 0.07
  22887. },
  22888. form: "calibrating",
  22889. default: true
  22890. },
  22891. frontNsfwer: {
  22892. height: math.unit(7.5, "feet"),
  22893. weight: math.unit(2, "lb"),
  22894. name: "Front",
  22895. image: {
  22896. source: "./media/characters/artemis/oversize-load-front.svg",
  22897. extra: 1192 / 1075,
  22898. bottom: 0.07
  22899. },
  22900. form: "oversize-load",
  22901. default: true
  22902. },
  22903. side: {
  22904. height: math.unit(7.5, "feet"),
  22905. weight: math.unit(2, "lb"),
  22906. name: "Side",
  22907. image: {
  22908. source: "./media/characters/artemis/work-safe-side.svg",
  22909. extra: 1192 / 1075,
  22910. bottom: 0.07
  22911. },
  22912. form: "work-safe"
  22913. },
  22914. sideNsfw: {
  22915. height: math.unit(7.5, "feet"),
  22916. weight: math.unit(2, "lb"),
  22917. name: "Side",
  22918. image: {
  22919. source: "./media/characters/artemis/calibrating-side.svg",
  22920. extra: 1192 / 1075,
  22921. bottom: 0.07
  22922. },
  22923. form: "calibrating"
  22924. },
  22925. sideNsfwer: {
  22926. height: math.unit(7.5, "feet"),
  22927. weight: math.unit(2, "lb"),
  22928. name: "Side",
  22929. image: {
  22930. source: "./media/characters/artemis/oversize-load-side.svg",
  22931. extra: 1192 / 1075,
  22932. bottom: 0.07
  22933. },
  22934. form: "oversize-load"
  22935. },
  22936. maw: {
  22937. height: math.unit(1.1, "feet"),
  22938. name: "Maw",
  22939. image: {
  22940. source: "./media/characters/artemis/maw.svg"
  22941. },
  22942. form: "work-safe"
  22943. },
  22944. stomach: {
  22945. height: math.unit(0.95, "feet"),
  22946. name: "Stomach",
  22947. image: {
  22948. source: "./media/characters/artemis/stomach.svg"
  22949. },
  22950. form: "work-safe"
  22951. },
  22952. dickCanine: {
  22953. height: math.unit(1, "feet"),
  22954. name: "Dick (Canine)",
  22955. image: {
  22956. source: "./media/characters/artemis/dick-canine.svg"
  22957. },
  22958. form: "calibrating"
  22959. },
  22960. dickEquine: {
  22961. height: math.unit(0.85, "feet"),
  22962. name: "Dick (Equine)",
  22963. image: {
  22964. source: "./media/characters/artemis/dick-equine.svg"
  22965. },
  22966. form: "calibrating"
  22967. },
  22968. dickExotic: {
  22969. height: math.unit(0.85, "feet"),
  22970. name: "Dick (Exotic)",
  22971. image: {
  22972. source: "./media/characters/artemis/dick-exotic.svg"
  22973. },
  22974. form: "calibrating"
  22975. },
  22976. dickCanineBigger: {
  22977. height: math.unit(1 * 1.33, "feet"),
  22978. name: "Dick (Canine)",
  22979. image: {
  22980. source: "./media/characters/artemis/dick-canine.svg"
  22981. },
  22982. form: "oversize-load"
  22983. },
  22984. dickEquineBigger: {
  22985. height: math.unit(0.85 * 1.33, "feet"),
  22986. name: "Dick (Equine)",
  22987. image: {
  22988. source: "./media/characters/artemis/dick-equine.svg"
  22989. },
  22990. form: "oversize-load"
  22991. },
  22992. dickExoticBigger: {
  22993. height: math.unit(0.85 * 1.33, "feet"),
  22994. name: "Dick (Exotic)",
  22995. image: {
  22996. source: "./media/characters/artemis/dick-exotic.svg"
  22997. },
  22998. form: "oversize-load"
  22999. },
  23000. },
  23001. [
  23002. {
  23003. name: "Normal",
  23004. height: math.unit(7.5, "feet"),
  23005. form: "work-safe",
  23006. default: true
  23007. },
  23008. {
  23009. name: "Normal",
  23010. height: math.unit(7.5, "feet"),
  23011. form: "calibrating",
  23012. default: true
  23013. },
  23014. {
  23015. name: "Normal",
  23016. height: math.unit(7.5, "feet"),
  23017. form: "oversize-load",
  23018. default: true
  23019. },
  23020. {
  23021. name: "Enlarged",
  23022. height: math.unit(12, "feet"),
  23023. form: "work-safe",
  23024. },
  23025. {
  23026. name: "Enlarged",
  23027. height: math.unit(12, "feet"),
  23028. form: "calibrating",
  23029. },
  23030. {
  23031. name: "Enlarged",
  23032. height: math.unit(12, "feet"),
  23033. form: "oversize-load",
  23034. },
  23035. ],
  23036. {
  23037. "work-safe": {
  23038. name: "Work-Safe",
  23039. default: true
  23040. },
  23041. "calibrating": {
  23042. name: "Calibrating"
  23043. },
  23044. "oversize-load": {
  23045. name: "Oversize Load"
  23046. }
  23047. }
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23051. {
  23052. front: {
  23053. height: math.unit(5 + 3 / 12, "feet"),
  23054. weight: math.unit(160, "lb"),
  23055. name: "Front",
  23056. image: {
  23057. source: "./media/characters/kira/front.svg",
  23058. extra: 906 / 786,
  23059. bottom: 0.01
  23060. }
  23061. },
  23062. back: {
  23063. height: math.unit(5 + 3 / 12, "feet"),
  23064. weight: math.unit(160, "lb"),
  23065. name: "Back",
  23066. image: {
  23067. source: "./media/characters/kira/back.svg",
  23068. extra: 882 / 757,
  23069. bottom: 0.005
  23070. }
  23071. },
  23072. frontDressed: {
  23073. height: math.unit(5 + 3 / 12, "feet"),
  23074. weight: math.unit(160, "lb"),
  23075. name: "Front (Dressed)",
  23076. image: {
  23077. source: "./media/characters/kira/front-dressed.svg",
  23078. extra: 906 / 786,
  23079. bottom: 0.01
  23080. }
  23081. },
  23082. beans: {
  23083. height: math.unit(0.92, "feet"),
  23084. name: "Beans",
  23085. image: {
  23086. source: "./media/characters/kira/beans.svg"
  23087. }
  23088. },
  23089. },
  23090. [
  23091. {
  23092. name: "Normal",
  23093. height: math.unit(5 + 3 / 12, "feet"),
  23094. default: true
  23095. },
  23096. ]
  23097. ))
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23100. {
  23101. front: {
  23102. height: math.unit(5 + 4 / 12, "feet"),
  23103. weight: math.unit(145, "lb"),
  23104. name: "Front",
  23105. image: {
  23106. source: "./media/characters/scramble/front.svg",
  23107. extra: 763 / 727,
  23108. bottom: 0.05
  23109. }
  23110. },
  23111. back: {
  23112. height: math.unit(5 + 4 / 12, "feet"),
  23113. weight: math.unit(145, "lb"),
  23114. name: "Back",
  23115. image: {
  23116. source: "./media/characters/scramble/back.svg",
  23117. extra: 826 / 737,
  23118. bottom: 0.002
  23119. }
  23120. },
  23121. },
  23122. [
  23123. {
  23124. name: "Normal",
  23125. height: math.unit(5 + 4 / 12, "feet"),
  23126. default: true
  23127. },
  23128. ]
  23129. ))
  23130. characterMakers.push(() => makeCharacter(
  23131. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23132. {
  23133. side: {
  23134. height: math.unit(6 + 2 / 12, "feet"),
  23135. weight: math.unit(190, "lb"),
  23136. name: "Side",
  23137. image: {
  23138. source: "./media/characters/biscuit/side.svg",
  23139. extra: 858 / 791,
  23140. bottom: 0.044
  23141. }
  23142. },
  23143. },
  23144. [
  23145. {
  23146. name: "Normal",
  23147. height: math.unit(6 + 2 / 12, "feet"),
  23148. default: true
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23154. {
  23155. front: {
  23156. height: math.unit(5 + 2 / 12, "feet"),
  23157. weight: math.unit(120, "lb"),
  23158. name: "Front",
  23159. image: {
  23160. source: "./media/characters/poffin/front.svg",
  23161. extra: 786 / 680,
  23162. bottom: 0.005
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Normal",
  23169. height: math.unit(5 + 2 / 12, "feet"),
  23170. default: true
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23176. {
  23177. front: {
  23178. height: math.unit(6 + 3 / 12, "feet"),
  23179. weight: math.unit(519, "lb"),
  23180. name: "Front",
  23181. image: {
  23182. source: "./media/characters/dhari/front.svg",
  23183. extra: 1048 / 946,
  23184. bottom: 0.015
  23185. }
  23186. },
  23187. back: {
  23188. height: math.unit(6 + 3 / 12, "feet"),
  23189. weight: math.unit(519, "lb"),
  23190. name: "Back",
  23191. image: {
  23192. source: "./media/characters/dhari/back.svg",
  23193. extra: 1048 / 931,
  23194. bottom: 0.005
  23195. }
  23196. },
  23197. frontDressed: {
  23198. height: math.unit(6 + 3 / 12, "feet"),
  23199. weight: math.unit(519, "lb"),
  23200. name: "Front (Dressed)",
  23201. image: {
  23202. source: "./media/characters/dhari/front-dressed.svg",
  23203. extra: 1713 / 1546,
  23204. bottom: 0.02
  23205. }
  23206. },
  23207. backDressed: {
  23208. height: math.unit(6 + 3 / 12, "feet"),
  23209. weight: math.unit(519, "lb"),
  23210. name: "Back (Dressed)",
  23211. image: {
  23212. source: "./media/characters/dhari/back-dressed.svg",
  23213. extra: 1699 / 1537,
  23214. bottom: 0.01
  23215. }
  23216. },
  23217. maw: {
  23218. height: math.unit(0.95, "feet"),
  23219. name: "Maw",
  23220. image: {
  23221. source: "./media/characters/dhari/maw.svg"
  23222. }
  23223. },
  23224. wereFront: {
  23225. height: math.unit(12 + 8 / 12, "feet"),
  23226. weight: math.unit(4000, "lb"),
  23227. name: "Front (Were)",
  23228. image: {
  23229. source: "./media/characters/dhari/were-front.svg",
  23230. extra: 1065 / 969,
  23231. bottom: 0.015
  23232. }
  23233. },
  23234. wereBack: {
  23235. height: math.unit(12 + 8 / 12, "feet"),
  23236. weight: math.unit(4000, "lb"),
  23237. name: "Back (Were)",
  23238. image: {
  23239. source: "./media/characters/dhari/were-back.svg",
  23240. extra: 1065 / 969,
  23241. bottom: 0.012
  23242. }
  23243. },
  23244. wereMaw: {
  23245. height: math.unit(0.625, "meters"),
  23246. name: "Maw (Were)",
  23247. image: {
  23248. source: "./media/characters/dhari/were-maw.svg"
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(6 + 3 / 12, "feet"),
  23256. default: true
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23262. {
  23263. anthro: {
  23264. height: math.unit(5 + 7 / 12, "feet"),
  23265. weight: math.unit(175, "lb"),
  23266. name: "Anthro",
  23267. image: {
  23268. source: "./media/characters/rena-dyne/anthro.svg",
  23269. extra: 1849 / 1785,
  23270. bottom: 0.005
  23271. }
  23272. },
  23273. taur: {
  23274. height: math.unit(15 + 6 / 12, "feet"),
  23275. weight: math.unit(8000, "lb"),
  23276. name: "Taur",
  23277. image: {
  23278. source: "./media/characters/rena-dyne/taur.svg",
  23279. extra: 2315 / 2234,
  23280. bottom: 0.033
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Normal",
  23287. height: math.unit(5 + 7 / 12, "feet"),
  23288. default: true
  23289. },
  23290. ]
  23291. ))
  23292. characterMakers.push(() => makeCharacter(
  23293. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23294. {
  23295. front: {
  23296. height: math.unit(8, "feet"),
  23297. weight: math.unit(600, "lb"),
  23298. name: "Front",
  23299. image: {
  23300. source: "./media/characters/weremeep/front.svg",
  23301. extra: 970/849,
  23302. bottom: 7/977
  23303. }
  23304. },
  23305. },
  23306. [
  23307. {
  23308. name: "Normal",
  23309. height: math.unit(8, "feet"),
  23310. default: true
  23311. },
  23312. {
  23313. name: "Lorg",
  23314. height: math.unit(12, "feet")
  23315. },
  23316. {
  23317. name: "Oh Lawd She Comin'",
  23318. height: math.unit(20, "feet")
  23319. },
  23320. ]
  23321. ))
  23322. characterMakers.push(() => makeCharacter(
  23323. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23324. {
  23325. front: {
  23326. height: math.unit(4, "feet"),
  23327. weight: math.unit(90, "lb"),
  23328. name: "Front",
  23329. image: {
  23330. source: "./media/characters/reza/front.svg",
  23331. extra: 1183 / 1111,
  23332. bottom: 0.017
  23333. }
  23334. },
  23335. back: {
  23336. height: math.unit(4, "feet"),
  23337. weight: math.unit(90, "lb"),
  23338. name: "Back",
  23339. image: {
  23340. source: "./media/characters/reza/back.svg",
  23341. extra: 1183 / 1111,
  23342. bottom: 0.01
  23343. }
  23344. },
  23345. drake: {
  23346. height: math.unit(30, "feet"),
  23347. weight: math.unit(246960, "lb"),
  23348. name: "Drake",
  23349. image: {
  23350. source: "./media/characters/reza/drake.svg",
  23351. extra: 2350 / 2024,
  23352. bottom: 60.7 / 2403
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Normal",
  23359. height: math.unit(4, "feet"),
  23360. default: true
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23366. {
  23367. side: {
  23368. height: math.unit(15, "feet"),
  23369. weight: math.unit(14, "tons"),
  23370. name: "Side",
  23371. image: {
  23372. source: "./media/characters/athea/side.svg",
  23373. extra: 960 / 540,
  23374. bottom: 0.003
  23375. }
  23376. },
  23377. sitting: {
  23378. height: math.unit(6 * 2.85, "feet"),
  23379. weight: math.unit(14, "tons"),
  23380. name: "Sitting",
  23381. image: {
  23382. source: "./media/characters/athea/sitting.svg",
  23383. extra: 621 / 581,
  23384. bottom: 0.075
  23385. }
  23386. },
  23387. maw: {
  23388. height: math.unit(7.59498031496063, "feet"),
  23389. name: "Maw",
  23390. image: {
  23391. source: "./media/characters/athea/maw.svg"
  23392. }
  23393. },
  23394. },
  23395. [
  23396. {
  23397. name: "Lap Cat",
  23398. height: math.unit(2.5, "feet")
  23399. },
  23400. {
  23401. name: "Minimacro",
  23402. height: math.unit(15, "feet"),
  23403. default: true
  23404. },
  23405. {
  23406. name: "Macro",
  23407. height: math.unit(120, "feet")
  23408. },
  23409. {
  23410. name: "Macro+",
  23411. height: math.unit(640, "feet")
  23412. },
  23413. {
  23414. name: "Colossus",
  23415. height: math.unit(2.2, "miles")
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23421. {
  23422. front: {
  23423. height: math.unit(8 + 8 / 12, "feet"),
  23424. weight: math.unit(130, "kg"),
  23425. name: "Front",
  23426. image: {
  23427. source: "./media/characters/seroko/front.svg",
  23428. extra: 1385 / 1280,
  23429. bottom: 0.025
  23430. }
  23431. },
  23432. back: {
  23433. height: math.unit(8 + 8 / 12, "feet"),
  23434. weight: math.unit(130, "kg"),
  23435. name: "Back",
  23436. image: {
  23437. source: "./media/characters/seroko/back.svg",
  23438. extra: 1369 / 1238,
  23439. bottom: 0.018
  23440. }
  23441. },
  23442. frontDressed: {
  23443. height: math.unit(8 + 8 / 12, "feet"),
  23444. weight: math.unit(130, "kg"),
  23445. name: "Front (Dressed)",
  23446. image: {
  23447. source: "./media/characters/seroko/front-dressed.svg",
  23448. extra: 1366 / 1275,
  23449. bottom: 0.03
  23450. }
  23451. },
  23452. },
  23453. [
  23454. {
  23455. name: "Normal",
  23456. height: math.unit(8 + 8 / 12, "feet"),
  23457. default: true
  23458. },
  23459. ]
  23460. ))
  23461. characterMakers.push(() => makeCharacter(
  23462. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23463. {
  23464. front: {
  23465. height: math.unit(5.5, "feet"),
  23466. weight: math.unit(160, "lb"),
  23467. name: "Front",
  23468. image: {
  23469. source: "./media/characters/quatzi/front.svg",
  23470. extra: 2346 / 2242,
  23471. bottom: 0.015
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Normal",
  23478. height: math.unit(5.5, "feet"),
  23479. default: true
  23480. },
  23481. {
  23482. name: "Big",
  23483. height: math.unit(7.7, "feet")
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23489. {
  23490. front: {
  23491. height: math.unit(5 + 11 / 12, "feet"),
  23492. weight: math.unit(180, "lb"),
  23493. name: "Front",
  23494. image: {
  23495. source: "./media/characters/sen/front.svg",
  23496. extra: 1321 / 1254,
  23497. bottom: 0.015
  23498. }
  23499. },
  23500. side: {
  23501. height: math.unit(5 + 11 / 12, "feet"),
  23502. weight: math.unit(180, "lb"),
  23503. name: "Side",
  23504. image: {
  23505. source: "./media/characters/sen/side.svg",
  23506. extra: 1321 / 1254,
  23507. bottom: 0.007
  23508. }
  23509. },
  23510. back: {
  23511. height: math.unit(5 + 11 / 12, "feet"),
  23512. weight: math.unit(180, "lb"),
  23513. name: "Back",
  23514. image: {
  23515. source: "./media/characters/sen/back.svg",
  23516. extra: 1321 / 1254
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Normal",
  23523. height: math.unit(5 + 11 / 12, "feet"),
  23524. default: true
  23525. },
  23526. ]
  23527. ))
  23528. characterMakers.push(() => makeCharacter(
  23529. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23530. {
  23531. front: {
  23532. height: math.unit(166.6, "cm"),
  23533. weight: math.unit(66.6, "kg"),
  23534. name: "Front",
  23535. image: {
  23536. source: "./media/characters/fruity/front.svg",
  23537. extra: 1510 / 1386,
  23538. bottom: 0.04
  23539. }
  23540. },
  23541. back: {
  23542. height: math.unit(166.6, "cm"),
  23543. weight: math.unit(66.6, "lb"),
  23544. name: "Back",
  23545. image: {
  23546. source: "./media/characters/fruity/back.svg",
  23547. extra: 1563 / 1435,
  23548. bottom: 0.005
  23549. }
  23550. },
  23551. },
  23552. [
  23553. {
  23554. name: "Normal",
  23555. height: math.unit(166.6, "cm"),
  23556. default: true
  23557. },
  23558. {
  23559. name: "Demonic",
  23560. height: math.unit(166.6, "feet")
  23561. },
  23562. ]
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23566. {
  23567. side: {
  23568. height: math.unit(10, "feet"),
  23569. weight: math.unit(500, "lb"),
  23570. name: "Side",
  23571. image: {
  23572. source: "./media/characters/zost/side.svg",
  23573. extra: 2870/2533,
  23574. bottom: 252/3122
  23575. }
  23576. },
  23577. mawFront: {
  23578. height: math.unit(1.08, "meters"),
  23579. name: "Maw (Front)",
  23580. image: {
  23581. source: "./media/characters/zost/maw-front.svg"
  23582. }
  23583. },
  23584. mawSide: {
  23585. height: math.unit(2.66, "feet"),
  23586. name: "Maw (Side)",
  23587. image: {
  23588. source: "./media/characters/zost/maw-side.svg"
  23589. }
  23590. },
  23591. wingspan: {
  23592. height: math.unit(7.4, "feet"),
  23593. name: "Wingspan",
  23594. image: {
  23595. source: "./media/characters/zost/wingspan.svg"
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Normal",
  23602. height: math.unit(10, "feet"),
  23603. default: true
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23609. {
  23610. front: {
  23611. height: math.unit(5 + 4 / 12, "feet"),
  23612. weight: math.unit(120, "lb"),
  23613. name: "Front",
  23614. image: {
  23615. source: "./media/characters/luci/front.svg",
  23616. extra: 1985 / 1884,
  23617. bottom: 0.04
  23618. }
  23619. },
  23620. back: {
  23621. height: math.unit(5 + 4 / 12, "feet"),
  23622. weight: math.unit(120, "lb"),
  23623. name: "Back",
  23624. image: {
  23625. source: "./media/characters/luci/back.svg",
  23626. extra: 1892 / 1791,
  23627. bottom: 0.002
  23628. }
  23629. },
  23630. },
  23631. [
  23632. {
  23633. name: "Normal",
  23634. height: math.unit(5 + 4 / 12, "feet"),
  23635. default: true
  23636. },
  23637. ]
  23638. ))
  23639. characterMakers.push(() => makeCharacter(
  23640. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23641. {
  23642. front: {
  23643. height: math.unit(1500, "feet"),
  23644. weight: math.unit(3.8e6, "tons"),
  23645. name: "Front",
  23646. image: {
  23647. source: "./media/characters/2th/front.svg",
  23648. extra: 3489 / 3350,
  23649. bottom: 0.1
  23650. }
  23651. },
  23652. foot: {
  23653. height: math.unit(461, "feet"),
  23654. name: "Foot",
  23655. image: {
  23656. source: "./media/characters/2th/foot.svg"
  23657. }
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "\"Micro\"",
  23663. height: math.unit(15 + 7 / 12, "feet")
  23664. },
  23665. {
  23666. name: "Normal",
  23667. height: math.unit(1500, "feet"),
  23668. default: true
  23669. },
  23670. {
  23671. name: "Macro",
  23672. height: math.unit(5000, "feet")
  23673. },
  23674. {
  23675. name: "Megamacro",
  23676. height: math.unit(15, "miles")
  23677. },
  23678. {
  23679. name: "Gigamacro",
  23680. height: math.unit(4000, "miles")
  23681. },
  23682. {
  23683. name: "Galactic",
  23684. height: math.unit(50, "AU")
  23685. },
  23686. ]
  23687. ))
  23688. characterMakers.push(() => makeCharacter(
  23689. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23690. {
  23691. front: {
  23692. height: math.unit(5 + 6 / 12, "feet"),
  23693. weight: math.unit(220, "lb"),
  23694. name: "Front",
  23695. image: {
  23696. source: "./media/characters/amethyst/front.svg",
  23697. extra: 2078 / 2040,
  23698. bottom: 0.045
  23699. }
  23700. },
  23701. back: {
  23702. height: math.unit(5 + 6 / 12, "feet"),
  23703. weight: math.unit(220, "lb"),
  23704. name: "Back",
  23705. image: {
  23706. source: "./media/characters/amethyst/back.svg",
  23707. extra: 2021 / 1989,
  23708. bottom: 0.02
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Normal",
  23715. height: math.unit(5 + 6 / 12, "feet"),
  23716. default: true
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23722. {
  23723. front: {
  23724. height: math.unit(4 + 11 / 12, "feet"),
  23725. weight: math.unit(120, "lb"),
  23726. name: "Front",
  23727. image: {
  23728. source: "./media/characters/yumi-akiyama/front.svg",
  23729. extra: 2638/2432,
  23730. bottom: 70/2708
  23731. }
  23732. },
  23733. back: {
  23734. height: math.unit(4 + 11 / 12, "feet"),
  23735. weight: math.unit(120, "lb"),
  23736. name: "Back",
  23737. image: {
  23738. source: "./media/characters/yumi-akiyama/back.svg",
  23739. extra: 2502/2397,
  23740. bottom: 80/2582
  23741. }
  23742. },
  23743. casual: {
  23744. height: math.unit(4 + 11 / 12, "feet"),
  23745. weight: math.unit(120, "lb"),
  23746. name: "Casual",
  23747. image: {
  23748. source: "./media/characters/yumi-akiyama/casual.svg",
  23749. extra: 958/887,
  23750. bottom: 41/999
  23751. }
  23752. },
  23753. jammies: {
  23754. height: math.unit(4 + 11 / 12, "feet"),
  23755. weight: math.unit(120, "lb"),
  23756. name: "Jammies",
  23757. image: {
  23758. source: "./media/characters/yumi-akiyama/jammies.svg",
  23759. extra: 958/894,
  23760. bottom: 37/995
  23761. }
  23762. },
  23763. warmWeather: {
  23764. height: math.unit(4 + 11 / 12, "feet"),
  23765. weight: math.unit(120, "lb"),
  23766. name: "Warm Weather",
  23767. image: {
  23768. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23769. extra: 929/865,
  23770. bottom: 76/1005
  23771. }
  23772. },
  23773. mouth: {
  23774. height: math.unit(0.35, "feet"),
  23775. name: "Mouth",
  23776. image: {
  23777. source: "./media/characters/yumi-akiyama/mouth.svg"
  23778. }
  23779. },
  23780. paws: {
  23781. height: math.unit(1.05, "feet"),
  23782. name: "Paws",
  23783. image: {
  23784. source: "./media/characters/yumi-akiyama/paws.svg"
  23785. }
  23786. },
  23787. cockRing: {
  23788. height: math.unit(0.225, "feet"),
  23789. name: "Cock Ring",
  23790. image: {
  23791. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "Galactic",
  23798. height: math.unit(50, "galaxies"),
  23799. default: true
  23800. },
  23801. {
  23802. name: "Universal",
  23803. height: math.unit(100, "universes")
  23804. },
  23805. ]
  23806. ))
  23807. characterMakers.push(() => makeCharacter(
  23808. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23809. {
  23810. front: {
  23811. height: math.unit(8, "feet"),
  23812. weight: math.unit(500, "lb"),
  23813. name: "Front",
  23814. image: {
  23815. source: "./media/characters/rifter-yrmori/front.svg",
  23816. extra: 1180 / 1125,
  23817. bottom: 0.02
  23818. }
  23819. },
  23820. back: {
  23821. height: math.unit(8, "feet"),
  23822. weight: math.unit(500, "lb"),
  23823. name: "Back",
  23824. image: {
  23825. source: "./media/characters/rifter-yrmori/back.svg",
  23826. extra: 1190 / 1145,
  23827. bottom: 0.001
  23828. }
  23829. },
  23830. wings: {
  23831. height: math.unit(7.75, "feet"),
  23832. weight: math.unit(500, "lb"),
  23833. name: "Wings",
  23834. image: {
  23835. source: "./media/characters/rifter-yrmori/wings.svg",
  23836. extra: 1357 / 1285
  23837. }
  23838. },
  23839. maw: {
  23840. height: math.unit(0.8, "feet"),
  23841. name: "Maw",
  23842. image: {
  23843. source: "./media/characters/rifter-yrmori/maw.svg"
  23844. }
  23845. },
  23846. mawfront: {
  23847. height: math.unit(1.45, "feet"),
  23848. name: "Maw (Front)",
  23849. image: {
  23850. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Normal",
  23857. height: math.unit(8, "feet"),
  23858. default: true
  23859. },
  23860. {
  23861. name: "Macro",
  23862. height: math.unit(42, "meters")
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23868. {
  23869. were: {
  23870. height: math.unit(25 + 6 / 12, "feet"),
  23871. weight: math.unit(10000, "lb"),
  23872. name: "Were",
  23873. image: {
  23874. source: "./media/characters/tahajin/were.svg",
  23875. extra: 801 / 770,
  23876. bottom: 0.042
  23877. }
  23878. },
  23879. aquatic: {
  23880. height: math.unit(6 + 4 / 12, "feet"),
  23881. weight: math.unit(160, "lb"),
  23882. name: "Aquatic",
  23883. image: {
  23884. source: "./media/characters/tahajin/aquatic.svg",
  23885. extra: 572 / 542,
  23886. bottom: 0.04
  23887. }
  23888. },
  23889. chow: {
  23890. height: math.unit(8 + 11 / 12, "feet"),
  23891. weight: math.unit(450, "lb"),
  23892. name: "Chow",
  23893. image: {
  23894. source: "./media/characters/tahajin/chow.svg",
  23895. extra: 660 / 640,
  23896. bottom: 0.015
  23897. }
  23898. },
  23899. demiNaga: {
  23900. height: math.unit(6 + 8 / 12, "feet"),
  23901. weight: math.unit(300, "lb"),
  23902. name: "Demi Naga",
  23903. image: {
  23904. source: "./media/characters/tahajin/demi-naga.svg",
  23905. extra: 643 / 615,
  23906. bottom: 0.1
  23907. }
  23908. },
  23909. data: {
  23910. height: math.unit(5, "inches"),
  23911. weight: math.unit(0.1, "lb"),
  23912. name: "Data",
  23913. image: {
  23914. source: "./media/characters/tahajin/data.svg"
  23915. }
  23916. },
  23917. fluu: {
  23918. height: math.unit(5 + 7 / 12, "feet"),
  23919. weight: math.unit(140, "lb"),
  23920. name: "Fluu",
  23921. image: {
  23922. source: "./media/characters/tahajin/fluu.svg",
  23923. extra: 628 / 592,
  23924. bottom: 0.02
  23925. }
  23926. },
  23927. starWarrior: {
  23928. height: math.unit(4 + 5 / 12, "feet"),
  23929. weight: math.unit(50, "lb"),
  23930. name: "Star Warrior",
  23931. image: {
  23932. source: "./media/characters/tahajin/star-warrior.svg"
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(25 + 6 / 12, "feet"),
  23940. default: true
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23946. {
  23947. front: {
  23948. height: math.unit(8, "feet"),
  23949. weight: math.unit(350, "lb"),
  23950. name: "Front",
  23951. image: {
  23952. source: "./media/characters/gabira/front.svg",
  23953. extra: 1261/1154,
  23954. bottom: 51/1312
  23955. }
  23956. },
  23957. back: {
  23958. height: math.unit(8, "feet"),
  23959. weight: math.unit(350, "lb"),
  23960. name: "Back",
  23961. image: {
  23962. source: "./media/characters/gabira/back.svg",
  23963. extra: 1265/1163,
  23964. bottom: 46/1311
  23965. }
  23966. },
  23967. head: {
  23968. height: math.unit(2.85, "feet"),
  23969. name: "Head",
  23970. image: {
  23971. source: "./media/characters/gabira/head.svg"
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Normal",
  23978. height: math.unit(8, "feet"),
  23979. default: true
  23980. },
  23981. ]
  23982. ))
  23983. characterMakers.push(() => makeCharacter(
  23984. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23985. {
  23986. front: {
  23987. height: math.unit(5 + 3 / 12, "feet"),
  23988. weight: math.unit(137, "lb"),
  23989. name: "Front",
  23990. image: {
  23991. source: "./media/characters/sasha-katraine/front.svg",
  23992. extra: 1745/1694,
  23993. bottom: 37/1782
  23994. }
  23995. },
  23996. back: {
  23997. height: math.unit(5 + 3 / 12, "feet"),
  23998. weight: math.unit(137, "lb"),
  23999. name: "Back",
  24000. image: {
  24001. source: "./media/characters/sasha-katraine/back.svg",
  24002. extra: 1776/1699,
  24003. bottom: 26/1802
  24004. }
  24005. },
  24006. },
  24007. [
  24008. {
  24009. name: "Micro",
  24010. height: math.unit(5, "inches")
  24011. },
  24012. {
  24013. name: "Normal",
  24014. height: math.unit(5 + 3 / 12, "feet"),
  24015. default: true
  24016. },
  24017. ]
  24018. ))
  24019. characterMakers.push(() => makeCharacter(
  24020. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24021. {
  24022. side: {
  24023. height: math.unit(4, "inches"),
  24024. weight: math.unit(200, "grams"),
  24025. name: "Side",
  24026. image: {
  24027. source: "./media/characters/der/side.svg",
  24028. extra: 719 / 400,
  24029. bottom: 30.6 / 749.9187
  24030. }
  24031. },
  24032. },
  24033. [
  24034. {
  24035. name: "Micro",
  24036. height: math.unit(4, "inches"),
  24037. default: true
  24038. },
  24039. ]
  24040. ))
  24041. characterMakers.push(() => makeCharacter(
  24042. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24043. {
  24044. side: {
  24045. height: math.unit(30, "meters"),
  24046. weight: math.unit(700, "tonnes"),
  24047. name: "Side",
  24048. image: {
  24049. source: "./media/characters/fixerdragon/side.svg",
  24050. extra: (1293.0514 - 116.03) / 1106.86,
  24051. bottom: 116.03 / 1293.0514
  24052. }
  24053. },
  24054. },
  24055. [
  24056. {
  24057. name: "Planck",
  24058. height: math.unit(1.6e-35, "meters")
  24059. },
  24060. {
  24061. name: "Micro",
  24062. height: math.unit(0.4, "meters")
  24063. },
  24064. {
  24065. name: "Normal",
  24066. height: math.unit(30, "meters"),
  24067. default: true
  24068. },
  24069. {
  24070. name: "Megamacro",
  24071. height: math.unit(1.2, "megameters")
  24072. },
  24073. {
  24074. name: "Teramacro",
  24075. height: math.unit(130, "terameters")
  24076. },
  24077. {
  24078. name: "Yottamacro",
  24079. height: math.unit(6200, "yottameters")
  24080. },
  24081. ]
  24082. ));
  24083. characterMakers.push(() => makeCharacter(
  24084. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24085. {
  24086. front: {
  24087. height: math.unit(8, "feet"),
  24088. weight: math.unit(250, "lb"),
  24089. name: "Front",
  24090. image: {
  24091. source: "./media/characters/kite/front.svg",
  24092. extra: 2796 / 2659,
  24093. bottom: 0.002
  24094. }
  24095. },
  24096. },
  24097. [
  24098. {
  24099. name: "Normal",
  24100. height: math.unit(8, "feet"),
  24101. default: true
  24102. },
  24103. {
  24104. name: "Macro",
  24105. height: math.unit(360, "feet")
  24106. },
  24107. {
  24108. name: "Megamacro",
  24109. height: math.unit(1500, "feet")
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24115. {
  24116. anthro_front: {
  24117. height: math.unit(5 + 11/12, "feet"),
  24118. weight: math.unit(170, "lb"),
  24119. name: "Front",
  24120. image: {
  24121. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24122. extra: 1735/1585,
  24123. bottom: 96/1831
  24124. },
  24125. form: "anthro",
  24126. default: true
  24127. },
  24128. anthro_back: {
  24129. height: math.unit(5 + 11/12, "feet"),
  24130. weight: math.unit(170, "lb"),
  24131. name: "Back",
  24132. image: {
  24133. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24134. extra: 1749/1607,
  24135. bottom: 28/1777
  24136. },
  24137. form: "anthro"
  24138. },
  24139. anthro_male: {
  24140. height: math.unit(5 + 11/12, "feet"),
  24141. weight: math.unit(170, "lb"),
  24142. name: "Male",
  24143. image: {
  24144. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24145. extra: 1855/1713,
  24146. bottom: 63/1918
  24147. },
  24148. form: "anthro"
  24149. },
  24150. taur_front: {
  24151. height: math.unit(5 + 7/12, "feet"),
  24152. weight: math.unit(170, "lb"),
  24153. name: "Front",
  24154. image: {
  24155. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24156. extra: 1151/1059,
  24157. bottom: 356/1507
  24158. },
  24159. form: "taur",
  24160. default: true
  24161. },
  24162. anthro_frontDressed: {
  24163. height: math.unit(5 + 11/12, "feet"),
  24164. weight: math.unit(170, "lb"),
  24165. name: "Front (Dressed)",
  24166. image: {
  24167. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24168. extra: 1735/1585,
  24169. bottom: 96/1831
  24170. },
  24171. form: "anthro"
  24172. },
  24173. anthro_backDressed: {
  24174. height: math.unit(5 + 11/12, "feet"),
  24175. weight: math.unit(170, "lb"),
  24176. name: "Back (Dressed)",
  24177. image: {
  24178. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24179. extra: 1749/1607,
  24180. bottom: 28/1777
  24181. },
  24182. form: "anthro"
  24183. },
  24184. anthro_maleDressed: {
  24185. height: math.unit(5 + 11/12, "feet"),
  24186. weight: math.unit(170, "lb"),
  24187. name: "Male (Dressed)",
  24188. image: {
  24189. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24190. extra: 1855/1713,
  24191. bottom: 63/1918
  24192. },
  24193. form: "anthro"
  24194. },
  24195. taur_frontDressed: {
  24196. height: math.unit(5 + 7/12, "feet"),
  24197. weight: math.unit(170, "lb"),
  24198. name: "Front (Dressed)",
  24199. image: {
  24200. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24201. extra: 1151/1059,
  24202. bottom: 356/1507
  24203. },
  24204. form: "taur"
  24205. },
  24206. maw: {
  24207. height: math.unit(1.46, "feet"),
  24208. name: "Maw",
  24209. image: {
  24210. source: "./media/characters/poojawa-vynar/maw.svg"
  24211. },
  24212. allForms: true
  24213. },
  24214. head: {
  24215. height: math.unit(2.34, "feet"),
  24216. name: "Head",
  24217. image: {
  24218. source: "./media/characters/poojawa-vynar/head.svg"
  24219. },
  24220. allForms: true
  24221. },
  24222. leftPaw: {
  24223. height: math.unit(1.72, "feet"),
  24224. name: "Left Paw",
  24225. image: {
  24226. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24227. },
  24228. allForms: true
  24229. },
  24230. rightPaw: {
  24231. height: math.unit(1.61, "feet"),
  24232. name: "Right Paw",
  24233. image: {
  24234. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24235. },
  24236. allForms: true
  24237. },
  24238. toering: {
  24239. height: math.unit(2.9, "inches"),
  24240. name: "Toering",
  24241. image: {
  24242. source: "./media/characters/poojawa-vynar/toering.svg"
  24243. },
  24244. allForms: true
  24245. },
  24246. shaft: {
  24247. height: math.unit(0.625, "feet"),
  24248. name: "Shaft",
  24249. image: {
  24250. source: "./media/characters/poojawa-vynar/shaft.svg"
  24251. },
  24252. allForms: true
  24253. },
  24254. spade: {
  24255. height: math.unit(0.42, "feet"),
  24256. name: "Spade",
  24257. image: {
  24258. source: "./media/characters/poojawa-vynar/spade.svg"
  24259. },
  24260. allForms: true
  24261. },
  24262. },
  24263. [
  24264. {
  24265. name: "Shortstack",
  24266. height: math.unit(4, "feet"),
  24267. form: "anthro"
  24268. },
  24269. {
  24270. name: "Normal",
  24271. height: math.unit(5 + 11 / 12, "feet"),
  24272. form: "anthro",
  24273. default: true
  24274. },
  24275. {
  24276. name: "Tauric",
  24277. height: math.unit(4, "meters"),
  24278. form: "taur",
  24279. default: true
  24280. },
  24281. ],
  24282. {
  24283. "anthro": {
  24284. name: "Anthro",
  24285. default: true
  24286. },
  24287. "taur": {
  24288. name: "Taur",
  24289. },
  24290. }
  24291. ))
  24292. characterMakers.push(() => makeCharacter(
  24293. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24294. {
  24295. front: {
  24296. height: math.unit(293, "meters"),
  24297. weight: math.unit(70400, "tons"),
  24298. name: "Front",
  24299. image: {
  24300. source: "./media/characters/violette/front.svg",
  24301. extra: 1227 / 1180,
  24302. bottom: 0.005
  24303. }
  24304. },
  24305. back: {
  24306. height: math.unit(293, "meters"),
  24307. weight: math.unit(70400, "tons"),
  24308. name: "Back",
  24309. image: {
  24310. source: "./media/characters/violette/back.svg",
  24311. extra: 1227 / 1180,
  24312. bottom: 0.005
  24313. }
  24314. },
  24315. },
  24316. [
  24317. {
  24318. name: "Macro",
  24319. height: math.unit(293, "meters"),
  24320. default: true
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24326. {
  24327. front: {
  24328. height: math.unit(1050, "feet"),
  24329. weight: math.unit(200000, "tons"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/alessandra/front.svg",
  24333. extra: 960 / 912,
  24334. bottom: 0.06
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Macro",
  24341. height: math.unit(1050, "feet")
  24342. },
  24343. {
  24344. name: "Macro+",
  24345. height: math.unit(900, "meters"),
  24346. default: true
  24347. },
  24348. ]
  24349. ))
  24350. characterMakers.push(() => makeCharacter(
  24351. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24352. {
  24353. front: {
  24354. height: math.unit(5, "feet"),
  24355. weight: math.unit(187, "lb"),
  24356. name: "Front",
  24357. image: {
  24358. source: "./media/characters/person/front.svg",
  24359. extra: 3087 / 2945,
  24360. bottom: 91 / 3181
  24361. }
  24362. },
  24363. },
  24364. [
  24365. {
  24366. name: "Micro",
  24367. height: math.unit(3, "inches")
  24368. },
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(5, "feet"),
  24372. default: true
  24373. },
  24374. {
  24375. name: "Macro",
  24376. height: math.unit(90, "feet")
  24377. },
  24378. {
  24379. name: "Max Size",
  24380. height: math.unit(280, "feet")
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24386. {
  24387. front: {
  24388. height: math.unit(4.5, "meters"),
  24389. weight: math.unit(3200, "lb"),
  24390. name: "Front",
  24391. image: {
  24392. source: "./media/characters/ty/front.svg",
  24393. extra: 1038 / 960,
  24394. bottom: 31.156 / 1068
  24395. }
  24396. },
  24397. back: {
  24398. height: math.unit(4.5, "meters"),
  24399. weight: math.unit(3200, "lb"),
  24400. name: "Back",
  24401. image: {
  24402. source: "./media/characters/ty/back.svg",
  24403. extra: 1044 / 966,
  24404. bottom: 7.48 / 1049
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "Normal",
  24411. height: math.unit(4.5, "meters"),
  24412. default: true
  24413. },
  24414. ]
  24415. ))
  24416. characterMakers.push(() => makeCharacter(
  24417. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24418. {
  24419. front: {
  24420. height: math.unit(5 + 4 / 12, "feet"),
  24421. weight: math.unit(115, "lb"),
  24422. name: "Front",
  24423. image: {
  24424. source: "./media/characters/rocky/front.svg",
  24425. extra: 1012 / 975,
  24426. bottom: 54 / 1066
  24427. }
  24428. },
  24429. },
  24430. [
  24431. {
  24432. name: "Normal",
  24433. height: math.unit(5 + 4 / 12, "feet"),
  24434. default: true
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24440. {
  24441. upright: {
  24442. height: math.unit(6, "meters"),
  24443. weight: math.unit(4000, "kg"),
  24444. name: "Upright",
  24445. image: {
  24446. source: "./media/characters/ruin/upright.svg",
  24447. extra: 668 / 661,
  24448. bottom: 42 / 799.8396
  24449. }
  24450. },
  24451. },
  24452. [
  24453. {
  24454. name: "Normal",
  24455. height: math.unit(6, "meters"),
  24456. default: true
  24457. },
  24458. ]
  24459. ))
  24460. characterMakers.push(() => makeCharacter(
  24461. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24462. {
  24463. front: {
  24464. height: math.unit(5, "feet"),
  24465. weight: math.unit(106, "lb"),
  24466. name: "Front",
  24467. image: {
  24468. source: "./media/characters/robin/front.svg",
  24469. extra: 862 / 799,
  24470. bottom: 42.4 / 914.8856
  24471. }
  24472. },
  24473. },
  24474. [
  24475. {
  24476. name: "Normal",
  24477. height: math.unit(5, "feet"),
  24478. default: true
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24484. {
  24485. side: {
  24486. height: math.unit(3, "feet"),
  24487. weight: math.unit(225, "lb"),
  24488. name: "Side",
  24489. image: {
  24490. source: "./media/characters/saian/side.svg",
  24491. extra: 566 / 356,
  24492. bottom: 79.7 / 643
  24493. }
  24494. },
  24495. maw: {
  24496. height: math.unit(2.85, "feet"),
  24497. name: "Maw",
  24498. image: {
  24499. source: "./media/characters/saian/maw.svg"
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(3, "feet"),
  24507. default: true
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24513. {
  24514. side: {
  24515. height: math.unit(8, "feet"),
  24516. weight: math.unit(300, "lb"),
  24517. name: "Side",
  24518. image: {
  24519. source: "./media/characters/equus-silvermane/side.svg",
  24520. extra: 2176 / 2050,
  24521. bottom: 65.7 / 2245
  24522. }
  24523. },
  24524. front: {
  24525. height: math.unit(8, "feet"),
  24526. weight: math.unit(300, "lb"),
  24527. name: "Front",
  24528. image: {
  24529. source: "./media/characters/equus-silvermane/front.svg",
  24530. extra: 4633 / 4400,
  24531. bottom: 71.3 / 4706.915
  24532. }
  24533. },
  24534. sideStepping: {
  24535. height: math.unit(8, "feet"),
  24536. weight: math.unit(300, "lb"),
  24537. name: "Side (Stepping)",
  24538. image: {
  24539. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24540. extra: 1968 / 1860,
  24541. bottom: 16.4 / 1989
  24542. }
  24543. },
  24544. },
  24545. [
  24546. {
  24547. name: "Normal",
  24548. height: math.unit(8, "feet")
  24549. },
  24550. {
  24551. name: "Minimacro",
  24552. height: math.unit(75, "feet"),
  24553. default: true
  24554. },
  24555. {
  24556. name: "Macro",
  24557. height: math.unit(150, "feet")
  24558. },
  24559. {
  24560. name: "Macro+",
  24561. height: math.unit(1000, "feet")
  24562. },
  24563. {
  24564. name: "Megamacro",
  24565. height: math.unit(1, "mile")
  24566. },
  24567. ]
  24568. ))
  24569. characterMakers.push(() => makeCharacter(
  24570. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24571. {
  24572. side: {
  24573. height: math.unit(20, "feet"),
  24574. weight: math.unit(30000, "kg"),
  24575. name: "Side",
  24576. image: {
  24577. source: "./media/characters/windar/side.svg",
  24578. extra: 1491 / 1248,
  24579. bottom: 82.56 / 1568
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Normal",
  24586. height: math.unit(20, "feet"),
  24587. default: true
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24593. {
  24594. side: {
  24595. height: math.unit(15.66, "feet"),
  24596. weight: math.unit(150, "lb"),
  24597. name: "Side",
  24598. image: {
  24599. source: "./media/characters/melody/side.svg",
  24600. extra: 1097 / 944,
  24601. bottom: 11.8 / 1109
  24602. }
  24603. },
  24604. sideOutfit: {
  24605. height: math.unit(15.66, "feet"),
  24606. weight: math.unit(150, "lb"),
  24607. name: "Side (Outfit)",
  24608. image: {
  24609. source: "./media/characters/melody/side-outfit.svg",
  24610. extra: 1097 / 944,
  24611. bottom: 11.8 / 1109
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Normal",
  24618. height: math.unit(15.66, "feet"),
  24619. default: true
  24620. },
  24621. ]
  24622. ))
  24623. characterMakers.push(() => makeCharacter(
  24624. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24625. {
  24626. armoredFront: {
  24627. height: math.unit(8, "feet"),
  24628. weight: math.unit(325, "lb"),
  24629. name: "Front",
  24630. image: {
  24631. source: "./media/characters/windera/armored-front.svg",
  24632. extra: 1830/1598,
  24633. bottom: 151/1981
  24634. },
  24635. form: "armored",
  24636. default: true
  24637. },
  24638. macroFront: {
  24639. height: math.unit(70, "feet"),
  24640. weight: math.unit(315453, "lb"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/windera/macro-front.svg",
  24644. extra: 963/883,
  24645. bottom: 23/986
  24646. },
  24647. form: "macro",
  24648. default: true
  24649. },
  24650. },
  24651. [
  24652. {
  24653. name: "Normal",
  24654. height: math.unit(8, "feet"),
  24655. default: true,
  24656. form: "armored"
  24657. },
  24658. {
  24659. name: "Normal",
  24660. height: math.unit(70, "feet"),
  24661. default: true,
  24662. form: "macro"
  24663. },
  24664. ],
  24665. {
  24666. "armored": {
  24667. name: "Armored",
  24668. default: true
  24669. },
  24670. "macro": {
  24671. name: "Macro",
  24672. },
  24673. }
  24674. ))
  24675. characterMakers.push(() => makeCharacter(
  24676. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24677. {
  24678. front: {
  24679. height: math.unit(28.75, "feet"),
  24680. weight: math.unit(2000, "kg"),
  24681. name: "Front",
  24682. image: {
  24683. source: "./media/characters/sonear/front.svg",
  24684. extra: 1041.1 / 964.9,
  24685. bottom: 53.7 / 1096.6
  24686. }
  24687. },
  24688. },
  24689. [
  24690. {
  24691. name: "Normal",
  24692. height: math.unit(28.75, "feet"),
  24693. default: true
  24694. },
  24695. ]
  24696. ))
  24697. characterMakers.push(() => makeCharacter(
  24698. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24699. {
  24700. side: {
  24701. height: math.unit(25.5, "feet"),
  24702. weight: math.unit(23000, "kg"),
  24703. name: "Side",
  24704. image: {
  24705. source: "./media/characters/kanara/side.svg"
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Normal",
  24712. height: math.unit(25.5, "feet"),
  24713. default: true
  24714. },
  24715. ]
  24716. ))
  24717. characterMakers.push(() => makeCharacter(
  24718. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24719. {
  24720. side: {
  24721. height: math.unit(10, "feet"),
  24722. weight: math.unit(1000, "kg"),
  24723. name: "Side",
  24724. image: {
  24725. source: "./media/characters/ereus/side.svg",
  24726. extra: 1157 / 959,
  24727. bottom: 153 / 1312.5
  24728. }
  24729. },
  24730. },
  24731. [
  24732. {
  24733. name: "Normal",
  24734. height: math.unit(10, "feet"),
  24735. default: true
  24736. },
  24737. ]
  24738. ))
  24739. characterMakers.push(() => makeCharacter(
  24740. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24741. {
  24742. side: {
  24743. height: math.unit(4.5, "feet"),
  24744. weight: math.unit(500, "lb"),
  24745. name: "Side",
  24746. image: {
  24747. source: "./media/characters/e-ter/side.svg",
  24748. extra: 1550 / 1248,
  24749. bottom: 146 / 1694
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Normal",
  24756. height: math.unit(4.5, "feet"),
  24757. default: true
  24758. },
  24759. ]
  24760. ))
  24761. characterMakers.push(() => makeCharacter(
  24762. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24763. {
  24764. side: {
  24765. height: math.unit(9.7, "feet"),
  24766. weight: math.unit(4000, "kg"),
  24767. name: "Side",
  24768. image: {
  24769. source: "./media/characters/yamie/side.svg"
  24770. }
  24771. },
  24772. },
  24773. [
  24774. {
  24775. name: "Normal",
  24776. height: math.unit(9.7, "feet"),
  24777. default: true
  24778. },
  24779. ]
  24780. ))
  24781. characterMakers.push(() => makeCharacter(
  24782. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24783. {
  24784. front: {
  24785. height: math.unit(50, "feet"),
  24786. weight: math.unit(50000, "kg"),
  24787. name: "Front",
  24788. image: {
  24789. source: "./media/characters/anders/front.svg",
  24790. extra: 570 / 539,
  24791. bottom: 14.7 / 586.7
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Large",
  24798. height: math.unit(50, "feet")
  24799. },
  24800. {
  24801. name: "Macro",
  24802. height: math.unit(2000, "feet"),
  24803. default: true
  24804. },
  24805. {
  24806. name: "Megamacro",
  24807. height: math.unit(12, "miles")
  24808. },
  24809. ]
  24810. ))
  24811. characterMakers.push(() => makeCharacter(
  24812. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24813. {
  24814. front: {
  24815. height: math.unit(7 + 2 / 12, "feet"),
  24816. weight: math.unit(300, "lb"),
  24817. name: "Front",
  24818. image: {
  24819. source: "./media/characters/reban/front.svg",
  24820. extra: 1287/1212,
  24821. bottom: 148/1435
  24822. }
  24823. },
  24824. head: {
  24825. height: math.unit(1.95, "feet"),
  24826. name: "Head",
  24827. image: {
  24828. source: "./media/characters/reban/head.svg"
  24829. }
  24830. },
  24831. maw: {
  24832. height: math.unit(0.95, "feet"),
  24833. name: "Maw",
  24834. image: {
  24835. source: "./media/characters/reban/maw.svg"
  24836. }
  24837. },
  24838. foot: {
  24839. height: math.unit(1.65, "feet"),
  24840. name: "Foot",
  24841. image: {
  24842. source: "./media/characters/reban/foot.svg"
  24843. }
  24844. },
  24845. dick: {
  24846. height: math.unit(7 / 5, "feet"),
  24847. name: "Dick",
  24848. image: {
  24849. source: "./media/characters/reban/dick.svg"
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Natural Height",
  24856. height: math.unit(7 + 2 / 12, "feet")
  24857. },
  24858. {
  24859. name: "Macro",
  24860. height: math.unit(500, "feet"),
  24861. default: true
  24862. },
  24863. {
  24864. name: "Canon Height",
  24865. height: math.unit(50, "AU")
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24871. {
  24872. front: {
  24873. height: math.unit(6, "feet"),
  24874. weight: math.unit(150, "lb"),
  24875. name: "Front",
  24876. image: {
  24877. source: "./media/characters/terrance-keayes/front.svg",
  24878. extra: 1.005,
  24879. bottom: 151 / 1615
  24880. }
  24881. },
  24882. side: {
  24883. height: math.unit(6, "feet"),
  24884. weight: math.unit(150, "lb"),
  24885. name: "Side",
  24886. image: {
  24887. source: "./media/characters/terrance-keayes/side.svg",
  24888. extra: 1.005,
  24889. bottom: 129.4 / 1544
  24890. }
  24891. },
  24892. back: {
  24893. height: math.unit(6, "feet"),
  24894. weight: math.unit(150, "lb"),
  24895. name: "Back",
  24896. image: {
  24897. source: "./media/characters/terrance-keayes/back.svg",
  24898. extra: 1.005,
  24899. bottom: 58.4 / 1557.3
  24900. }
  24901. },
  24902. dick: {
  24903. height: math.unit(6 * 0.208, "feet"),
  24904. name: "Dick",
  24905. image: {
  24906. source: "./media/characters/terrance-keayes/dick.svg"
  24907. }
  24908. },
  24909. },
  24910. [
  24911. {
  24912. name: "Canon Height",
  24913. height: math.unit(35, "miles"),
  24914. default: true
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24920. {
  24921. front: {
  24922. height: math.unit(6, "feet"),
  24923. weight: math.unit(150, "lb"),
  24924. name: "Front",
  24925. image: {
  24926. source: "./media/characters/ofelia/front.svg",
  24927. extra: 1130/1117,
  24928. bottom: 91/1221
  24929. }
  24930. },
  24931. back: {
  24932. height: math.unit(6, "feet"),
  24933. weight: math.unit(150, "lb"),
  24934. name: "Back",
  24935. image: {
  24936. source: "./media/characters/ofelia/back.svg",
  24937. extra: 1172/1159,
  24938. bottom: 28/1200
  24939. }
  24940. },
  24941. maw: {
  24942. height: math.unit(1, "feet"),
  24943. name: "Maw",
  24944. image: {
  24945. source: "./media/characters/ofelia/maw.svg"
  24946. }
  24947. },
  24948. foot: {
  24949. height: math.unit(1.949, "feet"),
  24950. name: "Foot",
  24951. image: {
  24952. source: "./media/characters/ofelia/foot.svg"
  24953. }
  24954. },
  24955. },
  24956. [
  24957. {
  24958. name: "Canon Height",
  24959. height: math.unit(2000, "miles"),
  24960. default: true
  24961. },
  24962. ]
  24963. ))
  24964. characterMakers.push(() => makeCharacter(
  24965. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24966. {
  24967. front: {
  24968. height: math.unit(6, "feet"),
  24969. weight: math.unit(150, "lb"),
  24970. name: "Front",
  24971. image: {
  24972. source: "./media/characters/samuel/front.svg",
  24973. extra: 265 / 258,
  24974. bottom: 2 / 266.1566
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Macro",
  24981. height: math.unit(100, "feet"),
  24982. default: true
  24983. },
  24984. {
  24985. name: "Full Size",
  24986. height: math.unit(1000, "miles")
  24987. },
  24988. ]
  24989. ))
  24990. characterMakers.push(() => makeCharacter(
  24991. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24992. {
  24993. front: {
  24994. height: math.unit(6, "feet"),
  24995. weight: math.unit(300, "lb"),
  24996. name: "Front",
  24997. image: {
  24998. source: "./media/characters/beishir-kiel/front.svg",
  24999. extra: 569 / 547,
  25000. bottom: 41.9 / 609
  25001. }
  25002. },
  25003. maw: {
  25004. height: math.unit(6 * 0.202, "feet"),
  25005. name: "Maw",
  25006. image: {
  25007. source: "./media/characters/beishir-kiel/maw.svg"
  25008. }
  25009. },
  25010. },
  25011. [
  25012. {
  25013. name: "Macro",
  25014. height: math.unit(300, "feet"),
  25015. default: true
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25021. {
  25022. front: {
  25023. height: math.unit(5 + 7/12, "feet"),
  25024. weight: math.unit(120, "lb"),
  25025. name: "Front",
  25026. image: {
  25027. source: "./media/characters/logan-grey/front.svg",
  25028. extra: 1836/1738,
  25029. bottom: 108/1944
  25030. }
  25031. },
  25032. back: {
  25033. height: math.unit(5 + 7/12, "feet"),
  25034. weight: math.unit(120, "lb"),
  25035. name: "Back",
  25036. image: {
  25037. source: "./media/characters/logan-grey/back.svg",
  25038. extra: 1880/1794,
  25039. bottom: 24/1904
  25040. }
  25041. },
  25042. frontSfw: {
  25043. height: math.unit(5 + 7/12, "feet"),
  25044. weight: math.unit(120, "lb"),
  25045. name: "Front (SFW)",
  25046. image: {
  25047. source: "./media/characters/logan-grey/front-sfw.svg",
  25048. extra: 1836/1738,
  25049. bottom: 108/1944
  25050. }
  25051. },
  25052. backSfw: {
  25053. height: math.unit(5 + 7/12, "feet"),
  25054. weight: math.unit(120, "lb"),
  25055. name: "Back (SFW)",
  25056. image: {
  25057. source: "./media/characters/logan-grey/back-sfw.svg",
  25058. extra: 1880/1794,
  25059. bottom: 24/1904
  25060. }
  25061. },
  25062. hands: {
  25063. height: math.unit(0.84, "feet"),
  25064. name: "Hands",
  25065. image: {
  25066. source: "./media/characters/logan-grey/hands.svg"
  25067. }
  25068. },
  25069. paws: {
  25070. height: math.unit(0.72, "feet"),
  25071. name: "Paws",
  25072. image: {
  25073. source: "./media/characters/logan-grey/paws.svg"
  25074. }
  25075. },
  25076. cock: {
  25077. height: math.unit(1.45, "feet"),
  25078. name: "Cock",
  25079. image: {
  25080. source: "./media/characters/logan-grey/cock.svg"
  25081. }
  25082. },
  25083. cockAlt: {
  25084. height: math.unit(1.437, "feet"),
  25085. name: "Cock (alt)",
  25086. image: {
  25087. source: "./media/characters/logan-grey/cock-alt.svg"
  25088. }
  25089. },
  25090. },
  25091. [
  25092. {
  25093. name: "Normal",
  25094. height: math.unit(5 + 8 / 12, "feet")
  25095. },
  25096. {
  25097. name: "The 500 Foot Femboy",
  25098. height: math.unit(500, "feet"),
  25099. default: true
  25100. },
  25101. {
  25102. name: "Megmacro",
  25103. height: math.unit(20, "miles")
  25104. },
  25105. ]
  25106. ))
  25107. characterMakers.push(() => makeCharacter(
  25108. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25109. {
  25110. front: {
  25111. height: math.unit(8 + 2 / 12, "feet"),
  25112. weight: math.unit(275, "lb"),
  25113. name: "Front",
  25114. image: {
  25115. source: "./media/characters/draganta/front.svg",
  25116. extra: 1177 / 1135,
  25117. bottom: 33.46 / 1212.1
  25118. }
  25119. },
  25120. },
  25121. [
  25122. {
  25123. name: "Normal",
  25124. height: math.unit(8 + 6 / 12, "feet"),
  25125. default: true
  25126. },
  25127. {
  25128. name: "Macro",
  25129. height: math.unit(150, "feet")
  25130. },
  25131. {
  25132. name: "Megamacro",
  25133. height: math.unit(1000, "miles")
  25134. },
  25135. ]
  25136. ))
  25137. characterMakers.push(() => makeCharacter(
  25138. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25139. {
  25140. front: {
  25141. height: math.unit(1.72, "m"),
  25142. weight: math.unit(80, "lb"),
  25143. name: "Front",
  25144. image: {
  25145. source: "./media/characters/voski/front.svg",
  25146. extra: 2076.22 / 2022.4,
  25147. bottom: 102.7 / 2177.3866
  25148. }
  25149. },
  25150. frontFlaccid: {
  25151. height: math.unit(1.72, "m"),
  25152. weight: math.unit(80, "lb"),
  25153. name: "Front (Flaccid)",
  25154. image: {
  25155. source: "./media/characters/voski/front-flaccid.svg",
  25156. extra: 2076.22 / 2022.4,
  25157. bottom: 102.7 / 2177.3866
  25158. }
  25159. },
  25160. frontErect: {
  25161. height: math.unit(1.72, "m"),
  25162. weight: math.unit(80, "lb"),
  25163. name: "Front (Erect)",
  25164. image: {
  25165. source: "./media/characters/voski/front-erect.svg",
  25166. extra: 2076.22 / 2022.4,
  25167. bottom: 102.7 / 2177.3866
  25168. }
  25169. },
  25170. back: {
  25171. height: math.unit(1.72, "m"),
  25172. weight: math.unit(80, "lb"),
  25173. name: "Back",
  25174. image: {
  25175. source: "./media/characters/voski/back.svg",
  25176. extra: 2104 / 2051,
  25177. bottom: 10.45 / 2113.63
  25178. }
  25179. },
  25180. },
  25181. [
  25182. {
  25183. name: "Normal",
  25184. height: math.unit(1.72, "m")
  25185. },
  25186. {
  25187. name: "Macro",
  25188. height: math.unit(55, "m"),
  25189. default: true
  25190. },
  25191. {
  25192. name: "Macro+",
  25193. height: math.unit(300, "m")
  25194. },
  25195. {
  25196. name: "Macro++",
  25197. height: math.unit(700, "m")
  25198. },
  25199. {
  25200. name: "Macro+++",
  25201. height: math.unit(4500, "m")
  25202. },
  25203. {
  25204. name: "Macro++++",
  25205. height: math.unit(45, "km")
  25206. },
  25207. {
  25208. name: "Macro+++++",
  25209. height: math.unit(1220, "km")
  25210. },
  25211. ]
  25212. ))
  25213. characterMakers.push(() => makeCharacter(
  25214. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25215. {
  25216. front: {
  25217. height: math.unit(2.3, "m"),
  25218. weight: math.unit(304, "kg"),
  25219. name: "Front",
  25220. image: {
  25221. source: "./media/characters/icowom-lee/front.svg",
  25222. extra: 985 / 955,
  25223. bottom: 25.4 / 1012
  25224. }
  25225. },
  25226. fronttentacles: {
  25227. height: math.unit(2.3, "m"),
  25228. weight: math.unit(304, "kg"),
  25229. name: "Front-tentacles",
  25230. image: {
  25231. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25232. extra: 985 / 955,
  25233. bottom: 25.4 / 1012
  25234. }
  25235. },
  25236. back: {
  25237. height: math.unit(2.3, "m"),
  25238. weight: math.unit(304, "kg"),
  25239. name: "Back",
  25240. image: {
  25241. source: "./media/characters/icowom-lee/back.svg",
  25242. extra: 975 / 954,
  25243. bottom: 9.5 / 985
  25244. }
  25245. },
  25246. backtentacles: {
  25247. height: math.unit(2.3, "m"),
  25248. weight: math.unit(304, "kg"),
  25249. name: "Back-tentacles",
  25250. image: {
  25251. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25252. extra: 975 / 954,
  25253. bottom: 9.5 / 985
  25254. }
  25255. },
  25256. frontDressed: {
  25257. height: math.unit(2.3, "m"),
  25258. weight: math.unit(304, "kg"),
  25259. name: "Front (Dressed)",
  25260. image: {
  25261. source: "./media/characters/icowom-lee/front-dressed.svg",
  25262. extra: 3076 / 2933,
  25263. bottom: 51.4 / 3125.1889
  25264. }
  25265. },
  25266. rump: {
  25267. height: math.unit(0.776, "meters"),
  25268. name: "Rump",
  25269. image: {
  25270. source: "./media/characters/icowom-lee/rump.svg"
  25271. }
  25272. },
  25273. genitals: {
  25274. height: math.unit(0.78, "meters"),
  25275. name: "Genitals",
  25276. image: {
  25277. source: "./media/characters/icowom-lee/genitals.svg"
  25278. }
  25279. },
  25280. },
  25281. [
  25282. {
  25283. name: "Normal",
  25284. height: math.unit(2.3, "meters"),
  25285. default: true
  25286. },
  25287. {
  25288. name: "Macro",
  25289. height: math.unit(94, "meters"),
  25290. default: true
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25296. {
  25297. front: {
  25298. height: math.unit(22, "meters"),
  25299. weight: math.unit(21000, "kg"),
  25300. name: "Front",
  25301. image: {
  25302. source: "./media/characters/shock-diamond/front.svg",
  25303. extra: 2204 / 2053,
  25304. bottom: 65 / 2239.47
  25305. }
  25306. },
  25307. frontNude: {
  25308. height: math.unit(22, "meters"),
  25309. weight: math.unit(21000, "kg"),
  25310. name: "Front (Nude)",
  25311. image: {
  25312. source: "./media/characters/shock-diamond/front-nude.svg",
  25313. extra: 2514 / 2285,
  25314. bottom: 13 / 2527.56
  25315. }
  25316. },
  25317. },
  25318. [
  25319. {
  25320. name: "Normal",
  25321. height: math.unit(3, "meters")
  25322. },
  25323. {
  25324. name: "Macro",
  25325. height: math.unit(22, "meters"),
  25326. default: true
  25327. },
  25328. ]
  25329. ))
  25330. characterMakers.push(() => makeCharacter(
  25331. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25332. {
  25333. front: {
  25334. height: math.unit(5 + 4/12, "feet"),
  25335. weight: math.unit(125, "lb"),
  25336. name: "Front",
  25337. image: {
  25338. source: "./media/characters/rory/front.svg",
  25339. extra: 1790/1681,
  25340. bottom: 66/1856
  25341. },
  25342. form: "normal",
  25343. default: true
  25344. },
  25345. back: {
  25346. height: math.unit(5 + 4/12, "feet"),
  25347. weight: math.unit(125, "lb"),
  25348. name: "Back",
  25349. image: {
  25350. source: "./media/characters/rory/back.svg",
  25351. extra: 1805/1690,
  25352. bottom: 56/1861
  25353. },
  25354. form: "normal"
  25355. },
  25356. frontDressed: {
  25357. height: math.unit(5 + 4/12, "feet"),
  25358. weight: math.unit(125, "lb"),
  25359. name: "Front (Dressed)",
  25360. image: {
  25361. source: "./media/characters/rory/front-dressed.svg",
  25362. extra: 1790/1681,
  25363. bottom: 66/1856
  25364. },
  25365. form: "normal"
  25366. },
  25367. backDressed: {
  25368. height: math.unit(5 + 4/12, "feet"),
  25369. weight: math.unit(125, "lb"),
  25370. name: "Back (Dressed)",
  25371. image: {
  25372. source: "./media/characters/rory/back-dressed.svg",
  25373. extra: 1805/1690,
  25374. bottom: 56/1861
  25375. },
  25376. form: "normal"
  25377. },
  25378. frontNsfw: {
  25379. height: math.unit(5 + 4/12, "feet"),
  25380. weight: math.unit(125, "lb"),
  25381. name: "Front (NSFW)",
  25382. image: {
  25383. source: "./media/characters/rory/front-nsfw.svg",
  25384. extra: 1790/1681,
  25385. bottom: 66/1856
  25386. },
  25387. form: "normal"
  25388. },
  25389. backNsfw: {
  25390. height: math.unit(5 + 4/12, "feet"),
  25391. weight: math.unit(125, "lb"),
  25392. name: "Back (NSFW)",
  25393. image: {
  25394. source: "./media/characters/rory/back-nsfw.svg",
  25395. extra: 1805/1690,
  25396. bottom: 56/1861
  25397. },
  25398. form: "normal"
  25399. },
  25400. dick: {
  25401. height: math.unit(0.8, "feet"),
  25402. name: "Dick",
  25403. image: {
  25404. source: "./media/characters/rory/dick.svg"
  25405. },
  25406. form: "normal"
  25407. },
  25408. thicc_front: {
  25409. height: math.unit(5 + 4/12, "feet"),
  25410. weight: math.unit(195, "lb"),
  25411. name: "Front",
  25412. image: {
  25413. source: "./media/characters/rory/thicc-front.svg",
  25414. extra: 1220/1100,
  25415. bottom: 103/1323
  25416. },
  25417. form: "thicc",
  25418. default: true
  25419. },
  25420. thicc_back: {
  25421. height: math.unit(5 + 4/12, "feet"),
  25422. weight: math.unit(195, "lb"),
  25423. name: "Back",
  25424. image: {
  25425. source: "./media/characters/rory/thicc-back.svg",
  25426. extra: 1166/1086,
  25427. bottom: 35/1201
  25428. },
  25429. form: "thicc"
  25430. },
  25431. },
  25432. [
  25433. {
  25434. name: "Micro",
  25435. height: math.unit(3, "inches"),
  25436. allForms: true
  25437. },
  25438. {
  25439. name: "Normal",
  25440. height: math.unit(5 + 4/12, "feet"),
  25441. allForms: true,
  25442. default: true
  25443. },
  25444. {
  25445. name: "Macro",
  25446. height: math.unit(90, "feet"),
  25447. allForms: true
  25448. },
  25449. {
  25450. name: "Supercharged",
  25451. height: math.unit(270, "feet"),
  25452. allForms: true
  25453. },
  25454. ],
  25455. {
  25456. "normal": {
  25457. name: "Normal",
  25458. default: true
  25459. },
  25460. "thicc": {
  25461. name: "Thicc",
  25462. },
  25463. }
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25467. {
  25468. front: {
  25469. height: math.unit(5 + 9 / 12, "feet"),
  25470. weight: math.unit(190, "lb"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/sprisk/front.svg",
  25474. extra: 1225 / 1180,
  25475. bottom: 42.7 / 1266.4
  25476. }
  25477. },
  25478. frontNsfw: {
  25479. height: math.unit(5 + 9 / 12, "feet"),
  25480. weight: math.unit(190, "lb"),
  25481. name: "Front (NSFW)",
  25482. image: {
  25483. source: "./media/characters/sprisk/front-nsfw.svg",
  25484. extra: 1225 / 1180,
  25485. bottom: 42.7 / 1266.4
  25486. }
  25487. },
  25488. back: {
  25489. height: math.unit(5 + 9 / 12, "feet"),
  25490. weight: math.unit(190, "lb"),
  25491. name: "Back",
  25492. image: {
  25493. source: "./media/characters/sprisk/back.svg",
  25494. extra: 1247 / 1200,
  25495. bottom: 5.6 / 1253.04
  25496. }
  25497. },
  25498. },
  25499. [
  25500. {
  25501. name: "Tiny",
  25502. height: math.unit(2, "inches")
  25503. },
  25504. {
  25505. name: "Normal",
  25506. height: math.unit(5 + 9 / 12, "feet"),
  25507. default: true
  25508. },
  25509. {
  25510. name: "Mini Macro",
  25511. height: math.unit(18, "feet")
  25512. },
  25513. {
  25514. name: "Macro",
  25515. height: math.unit(100, "feet")
  25516. },
  25517. {
  25518. name: "MACRO",
  25519. height: math.unit(50, "miles")
  25520. },
  25521. {
  25522. name: "M A C R O",
  25523. height: math.unit(300, "miles")
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25529. {
  25530. side: {
  25531. height: math.unit(15.6, "meters"),
  25532. weight: math.unit(700000, "kg"),
  25533. name: "Side",
  25534. image: {
  25535. source: "./media/characters/bunsen/side.svg",
  25536. extra: 1644 / 358
  25537. }
  25538. },
  25539. foot: {
  25540. height: math.unit(1.611 * 1644 / 358, "meter"),
  25541. name: "Foot",
  25542. image: {
  25543. source: "./media/characters/bunsen/foot.svg"
  25544. }
  25545. },
  25546. },
  25547. [
  25548. {
  25549. name: "Small",
  25550. height: math.unit(10, "feet")
  25551. },
  25552. {
  25553. name: "Normal",
  25554. height: math.unit(15.6, "meters"),
  25555. default: true
  25556. },
  25557. ]
  25558. ))
  25559. characterMakers.push(() => makeCharacter(
  25560. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25561. {
  25562. front: {
  25563. height: math.unit(4 + 11 / 12, "feet"),
  25564. weight: math.unit(140, "lb"),
  25565. name: "Front",
  25566. image: {
  25567. source: "./media/characters/sesh/front.svg",
  25568. extra: 3420 / 3231,
  25569. bottom: 72 / 3949.5
  25570. }
  25571. },
  25572. },
  25573. [
  25574. {
  25575. name: "Normal",
  25576. height: math.unit(4 + 11 / 12, "feet")
  25577. },
  25578. {
  25579. name: "Grown",
  25580. height: math.unit(15, "feet"),
  25581. default: true
  25582. },
  25583. {
  25584. name: "Macro",
  25585. height: math.unit(1500, "feet")
  25586. },
  25587. {
  25588. name: "Megamacro",
  25589. height: math.unit(30, "miles")
  25590. },
  25591. {
  25592. name: "Continental",
  25593. height: math.unit(3000, "miles")
  25594. },
  25595. {
  25596. name: "Gravity Mass",
  25597. height: math.unit(300000, "miles")
  25598. },
  25599. {
  25600. name: "Planet Buster",
  25601. height: math.unit(30000000, "miles")
  25602. },
  25603. {
  25604. name: "Big",
  25605. height: math.unit(3000000000, "miles")
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(9, "feet"),
  25614. weight: math.unit(350, "lb"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/pepper/front.svg",
  25618. extra: 1448 / 1312,
  25619. bottom: 9.4 / 1457.88
  25620. }
  25621. },
  25622. back: {
  25623. height: math.unit(9, "feet"),
  25624. weight: math.unit(350, "lb"),
  25625. name: "Back",
  25626. image: {
  25627. source: "./media/characters/pepper/back.svg",
  25628. extra: 1423 / 1300,
  25629. bottom: 4.6 / 1429
  25630. }
  25631. },
  25632. maw: {
  25633. height: math.unit(0.932, "feet"),
  25634. name: "Maw",
  25635. image: {
  25636. source: "./media/characters/pepper/maw.svg"
  25637. }
  25638. },
  25639. },
  25640. [
  25641. {
  25642. name: "Normal",
  25643. height: math.unit(9, "feet"),
  25644. default: true
  25645. },
  25646. ]
  25647. ))
  25648. characterMakers.push(() => makeCharacter(
  25649. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25650. {
  25651. front: {
  25652. height: math.unit(6, "feet"),
  25653. weight: math.unit(150, "lb"),
  25654. name: "Front",
  25655. image: {
  25656. source: "./media/characters/maelstrom/front.svg",
  25657. extra: 2100 / 1883,
  25658. bottom: 94 / 2196.7
  25659. }
  25660. },
  25661. },
  25662. [
  25663. {
  25664. name: "Less Kaiju",
  25665. height: math.unit(200, "feet")
  25666. },
  25667. {
  25668. name: "Kaiju",
  25669. height: math.unit(400, "feet"),
  25670. default: true
  25671. },
  25672. {
  25673. name: "Kaiju-er",
  25674. height: math.unit(600, "feet")
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25680. {
  25681. front: {
  25682. height: math.unit(6 + 5 / 12, "feet"),
  25683. weight: math.unit(180, "lb"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/lexir/front.svg",
  25687. extra: 180 / 172,
  25688. bottom: 12 / 192
  25689. }
  25690. },
  25691. back: {
  25692. height: math.unit(6 + 5 / 12, "feet"),
  25693. weight: math.unit(180, "lb"),
  25694. name: "Back",
  25695. image: {
  25696. source: "./media/characters/lexir/back.svg",
  25697. extra: 1273/1201,
  25698. bottom: 39/1312
  25699. }
  25700. },
  25701. },
  25702. [
  25703. {
  25704. name: "Very Smal",
  25705. height: math.unit(1, "nm")
  25706. },
  25707. {
  25708. name: "Normal",
  25709. height: math.unit(6 + 5 / 12, "feet"),
  25710. default: true
  25711. },
  25712. {
  25713. name: "Macro",
  25714. height: math.unit(1, "mile")
  25715. },
  25716. {
  25717. name: "Megamacro",
  25718. height: math.unit(50, "miles")
  25719. },
  25720. ]
  25721. ))
  25722. characterMakers.push(() => makeCharacter(
  25723. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25724. {
  25725. front: {
  25726. height: math.unit(1.5, "meters"),
  25727. weight: math.unit(100, "lb"),
  25728. name: "Front",
  25729. image: {
  25730. source: "./media/characters/maksio/front.svg",
  25731. extra: 1549 / 1531,
  25732. bottom: 123.7 / 1674.5429
  25733. }
  25734. },
  25735. back: {
  25736. height: math.unit(1.5, "meters"),
  25737. weight: math.unit(100, "lb"),
  25738. name: "Back",
  25739. image: {
  25740. source: "./media/characters/maksio/back.svg",
  25741. extra: 1541 / 1509,
  25742. bottom: 97 / 1639
  25743. }
  25744. },
  25745. hand: {
  25746. height: math.unit(0.621, "feet"),
  25747. name: "Hand",
  25748. image: {
  25749. source: "./media/characters/maksio/hand.svg"
  25750. }
  25751. },
  25752. foot: {
  25753. height: math.unit(1.611, "feet"),
  25754. name: "Foot",
  25755. image: {
  25756. source: "./media/characters/maksio/foot.svg"
  25757. }
  25758. },
  25759. },
  25760. [
  25761. {
  25762. name: "Shrunken",
  25763. height: math.unit(10, "cm")
  25764. },
  25765. {
  25766. name: "Normal",
  25767. height: math.unit(150, "cm"),
  25768. default: true
  25769. },
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25774. {
  25775. front: {
  25776. height: math.unit(100, "feet"),
  25777. name: "Front",
  25778. image: {
  25779. source: "./media/characters/erza-bear/front.svg",
  25780. extra: 2449 / 2390,
  25781. bottom: 46 / 2494
  25782. }
  25783. },
  25784. back: {
  25785. height: math.unit(100, "feet"),
  25786. name: "Back",
  25787. image: {
  25788. source: "./media/characters/erza-bear/back.svg",
  25789. extra: 2489 / 2430,
  25790. bottom: 85.4 / 2480
  25791. }
  25792. },
  25793. tail: {
  25794. height: math.unit(42, "feet"),
  25795. name: "Tail",
  25796. image: {
  25797. source: "./media/characters/erza-bear/tail.svg"
  25798. }
  25799. },
  25800. tongue: {
  25801. height: math.unit(8, "feet"),
  25802. name: "Tongue",
  25803. image: {
  25804. source: "./media/characters/erza-bear/tongue.svg"
  25805. }
  25806. },
  25807. dick: {
  25808. height: math.unit(10.5, "feet"),
  25809. name: "Dick",
  25810. image: {
  25811. source: "./media/characters/erza-bear/dick.svg"
  25812. }
  25813. },
  25814. dickVertical: {
  25815. height: math.unit(16.9, "feet"),
  25816. name: "Dick (Vertical)",
  25817. image: {
  25818. source: "./media/characters/erza-bear/dick-vertical.svg"
  25819. }
  25820. },
  25821. },
  25822. [
  25823. {
  25824. name: "Macro",
  25825. height: math.unit(100, "feet"),
  25826. default: true
  25827. },
  25828. ]
  25829. ))
  25830. characterMakers.push(() => makeCharacter(
  25831. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25832. {
  25833. front: {
  25834. height: math.unit(172, "cm"),
  25835. weight: math.unit(73, "kg"),
  25836. name: "Front",
  25837. image: {
  25838. source: "./media/characters/violet-flor/front.svg",
  25839. extra: 1474/1379,
  25840. bottom: 113/1587
  25841. }
  25842. },
  25843. back: {
  25844. height: math.unit(180, "cm"),
  25845. weight: math.unit(73, "kg"),
  25846. name: "Back",
  25847. image: {
  25848. source: "./media/characters/violet-flor/back.svg",
  25849. extra: 1660/1567,
  25850. bottom: 49/1709
  25851. }
  25852. },
  25853. },
  25854. [
  25855. {
  25856. name: "Normal",
  25857. height: math.unit(172, "cm"),
  25858. default: true
  25859. },
  25860. ]
  25861. ))
  25862. characterMakers.push(() => makeCharacter(
  25863. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25864. {
  25865. front: {
  25866. height: math.unit(6, "feet"),
  25867. weight: math.unit(220, "lb"),
  25868. name: "Front",
  25869. image: {
  25870. source: "./media/characters/lynn-rhea/front.svg",
  25871. extra: 310 / 273
  25872. }
  25873. },
  25874. back: {
  25875. height: math.unit(6, "feet"),
  25876. weight: math.unit(220, "lb"),
  25877. name: "Back",
  25878. image: {
  25879. source: "./media/characters/lynn-rhea/back.svg",
  25880. extra: 310 / 273
  25881. }
  25882. },
  25883. dicks: {
  25884. height: math.unit(0.9, "feet"),
  25885. name: "Dicks",
  25886. image: {
  25887. source: "./media/characters/lynn-rhea/dicks.svg"
  25888. }
  25889. },
  25890. slit: {
  25891. height: math.unit(0.4, "feet"),
  25892. name: "Slit",
  25893. image: {
  25894. source: "./media/characters/lynn-rhea/slit.svg"
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Micro",
  25901. height: math.unit(1, "inch")
  25902. },
  25903. {
  25904. name: "Macro",
  25905. height: math.unit(60, "feet"),
  25906. default: true
  25907. },
  25908. {
  25909. name: "Megamacro",
  25910. height: math.unit(2, "miles")
  25911. },
  25912. {
  25913. name: "Gigamacro",
  25914. height: math.unit(3, "earths")
  25915. },
  25916. {
  25917. name: "Galactic",
  25918. height: math.unit(0.8, "galaxies")
  25919. },
  25920. ]
  25921. ))
  25922. characterMakers.push(() => makeCharacter(
  25923. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25924. {
  25925. front: {
  25926. height: math.unit(1600, "feet"),
  25927. weight: math.unit(85758785169, "kg"),
  25928. name: "Front",
  25929. image: {
  25930. source: "./media/characters/valathos/front.svg",
  25931. extra: 1451 / 1339
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Macro",
  25938. height: math.unit(1600, "feet"),
  25939. default: true
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25945. {
  25946. front: {
  25947. height: math.unit(7 + 5 / 12, "feet"),
  25948. weight: math.unit(300, "lb"),
  25949. name: "Front",
  25950. image: {
  25951. source: "./media/characters/azula/front.svg",
  25952. extra: 3208 / 2880,
  25953. bottom: 80.2 / 3277
  25954. }
  25955. },
  25956. back: {
  25957. height: math.unit(7 + 5 / 12, "feet"),
  25958. weight: math.unit(300, "lb"),
  25959. name: "Back",
  25960. image: {
  25961. source: "./media/characters/azula/back.svg",
  25962. extra: 3169 / 2822,
  25963. bottom: 150.6 / 3321
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Normal",
  25970. height: math.unit(7 + 5 / 12, "feet"),
  25971. default: true
  25972. },
  25973. {
  25974. name: "Big",
  25975. height: math.unit(20, "feet")
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25981. {
  25982. front: {
  25983. height: math.unit(5 + 1 / 12, "feet"),
  25984. weight: math.unit(110, "lb"),
  25985. name: "Front",
  25986. image: {
  25987. source: "./media/characters/rupert/front.svg",
  25988. extra: 1549 / 1495,
  25989. bottom: 54.2 / 1604.4
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(5 + 1 / 12, "feet"),
  25997. default: true
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26003. {
  26004. front: {
  26005. height: math.unit(8 + 4 / 12, "feet"),
  26006. weight: math.unit(350, "lb"),
  26007. name: "Front",
  26008. image: {
  26009. source: "./media/characters/sheera-castellar/front.svg",
  26010. extra: 1957 / 1894,
  26011. bottom: 26.97 / 1975.017
  26012. }
  26013. },
  26014. side: {
  26015. height: math.unit(8 + 4 / 12, "feet"),
  26016. weight: math.unit(350, "lb"),
  26017. name: "Side",
  26018. image: {
  26019. source: "./media/characters/sheera-castellar/side.svg",
  26020. extra: 1957 / 1894
  26021. }
  26022. },
  26023. back: {
  26024. height: math.unit(8 + 4 / 12, "feet"),
  26025. weight: math.unit(350, "lb"),
  26026. name: "Back",
  26027. image: {
  26028. source: "./media/characters/sheera-castellar/back.svg",
  26029. extra: 1957 / 1894
  26030. }
  26031. },
  26032. angled: {
  26033. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26034. weight: math.unit(350, "lb"),
  26035. name: "Angled",
  26036. image: {
  26037. source: "./media/characters/sheera-castellar/angled.svg",
  26038. extra: 1807 / 1707,
  26039. bottom: 68 / 1875
  26040. }
  26041. },
  26042. genitals: {
  26043. height: math.unit(2.2, "feet"),
  26044. name: "Genitals",
  26045. image: {
  26046. source: "./media/characters/sheera-castellar/genitals.svg"
  26047. }
  26048. },
  26049. taur: {
  26050. height: math.unit(10 + 6/12, "feet"),
  26051. name: "Taur",
  26052. image: {
  26053. source: "./media/characters/sheera-castellar/taur.svg",
  26054. extra: 2017/1909,
  26055. bottom: 185/2202
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(8 + 4 / 12, "feet")
  26063. },
  26064. {
  26065. name: "Macro",
  26066. height: math.unit(150, "feet"),
  26067. default: true
  26068. },
  26069. {
  26070. name: "Macro+",
  26071. height: math.unit(800, "feet")
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26077. {
  26078. front: {
  26079. height: math.unit(6, "feet"),
  26080. weight: math.unit(150, "lb"),
  26081. name: "Front",
  26082. image: {
  26083. source: "./media/characters/jaipur/front.svg",
  26084. extra: 3860 / 3731,
  26085. bottom: 287 / 4140
  26086. }
  26087. },
  26088. back: {
  26089. height: math.unit(6, "feet"),
  26090. weight: math.unit(150, "lb"),
  26091. name: "Back",
  26092. image: {
  26093. source: "./media/characters/jaipur/back.svg",
  26094. extra: 1637/1561,
  26095. bottom: 154/1791
  26096. }
  26097. },
  26098. },
  26099. [
  26100. {
  26101. name: "Normal",
  26102. height: math.unit(1.85, "meters"),
  26103. default: true
  26104. },
  26105. {
  26106. name: "Macro",
  26107. height: math.unit(150, "meters")
  26108. },
  26109. {
  26110. name: "Macro+",
  26111. height: math.unit(0.5, "miles")
  26112. },
  26113. {
  26114. name: "Macro++",
  26115. height: math.unit(2.5, "miles")
  26116. },
  26117. {
  26118. name: "Macro+++",
  26119. height: math.unit(12, "miles")
  26120. },
  26121. {
  26122. name: "Macro++++",
  26123. height: math.unit(120, "miles")
  26124. },
  26125. {
  26126. name: "Macro+++++",
  26127. height: math.unit(1200, "miles")
  26128. },
  26129. ]
  26130. ))
  26131. characterMakers.push(() => makeCharacter(
  26132. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26133. {
  26134. front: {
  26135. height: math.unit(6, "feet"),
  26136. weight: math.unit(150, "lb"),
  26137. name: "Front",
  26138. image: {
  26139. source: "./media/characters/sheila-wolf/front.svg",
  26140. extra: 1931 / 1808,
  26141. bottom: 29.5 / 1960
  26142. }
  26143. },
  26144. dick: {
  26145. height: math.unit(1.464, "feet"),
  26146. name: "Dick",
  26147. image: {
  26148. source: "./media/characters/sheila-wolf/dick.svg"
  26149. }
  26150. },
  26151. muzzle: {
  26152. height: math.unit(0.513, "feet"),
  26153. name: "Muzzle",
  26154. image: {
  26155. source: "./media/characters/sheila-wolf/muzzle.svg"
  26156. }
  26157. },
  26158. },
  26159. [
  26160. {
  26161. name: "Macro",
  26162. height: math.unit(70, "feet"),
  26163. default: true
  26164. },
  26165. ]
  26166. ))
  26167. characterMakers.push(() => makeCharacter(
  26168. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26169. {
  26170. front: {
  26171. height: math.unit(32, "meters"),
  26172. weight: math.unit(300000, "kg"),
  26173. name: "Front",
  26174. image: {
  26175. source: "./media/characters/almor/front.svg",
  26176. extra: 1408 / 1322,
  26177. bottom: 94.6 / 1506.5
  26178. }
  26179. },
  26180. },
  26181. [
  26182. {
  26183. name: "Macro",
  26184. height: math.unit(32, "meters"),
  26185. default: true
  26186. },
  26187. ]
  26188. ))
  26189. characterMakers.push(() => makeCharacter(
  26190. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26191. {
  26192. front: {
  26193. height: math.unit(7, "feet"),
  26194. weight: math.unit(200, "lb"),
  26195. name: "Front",
  26196. image: {
  26197. source: "./media/characters/silver/front.svg",
  26198. extra: 472.1 / 450.5,
  26199. bottom: 26.5 / 499.424
  26200. }
  26201. },
  26202. },
  26203. [
  26204. {
  26205. name: "Normal",
  26206. height: math.unit(7, "feet"),
  26207. default: true
  26208. },
  26209. {
  26210. name: "Macro",
  26211. height: math.unit(800, "feet")
  26212. },
  26213. {
  26214. name: "Megamacro",
  26215. height: math.unit(250, "miles")
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(6, "feet"),
  26224. weight: math.unit(150, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/pliskin/front.svg",
  26228. extra: 1469 / 1359,
  26229. bottom: 70 / 1540
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Micro",
  26236. height: math.unit(3, "inches")
  26237. },
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(5 + 11 / 12, "feet"),
  26241. default: true
  26242. },
  26243. {
  26244. name: "Macro",
  26245. height: math.unit(120, "feet")
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26251. {
  26252. front: {
  26253. height: math.unit(6, "feet"),
  26254. weight: math.unit(150, "lb"),
  26255. name: "Front",
  26256. image: {
  26257. source: "./media/characters/sammy/front.svg",
  26258. extra: 1193 / 1089,
  26259. bottom: 30.5 / 1226
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Macro",
  26266. height: math.unit(1700, "feet"),
  26267. default: true
  26268. },
  26269. {
  26270. name: "Examacro",
  26271. height: math.unit(2.5e9, "lightyears")
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(21, "meters"),
  26280. weight: math.unit(12, "tonnes"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/kuru/front.svg",
  26284. extra: 4301 / 3785,
  26285. bottom: 371.3 / 4691
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Macro",
  26292. height: math.unit(21, "meters"),
  26293. default: true
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26299. {
  26300. front: {
  26301. height: math.unit(23, "meters"),
  26302. weight: math.unit(12.2, "tonnes"),
  26303. name: "Front",
  26304. image: {
  26305. source: "./media/characters/rakka/front.svg",
  26306. extra: 4670 / 4169,
  26307. bottom: 301 / 4968.7
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Macro",
  26314. height: math.unit(23, "meters"),
  26315. default: true
  26316. },
  26317. ]
  26318. ))
  26319. characterMakers.push(() => makeCharacter(
  26320. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26321. {
  26322. front: {
  26323. height: math.unit(6, "feet"),
  26324. weight: math.unit(150, "lb"),
  26325. name: "Front",
  26326. image: {
  26327. source: "./media/characters/rhys-feline/front.svg",
  26328. extra: 2488 / 2308,
  26329. bottom: 35.67 / 2519.19
  26330. }
  26331. },
  26332. },
  26333. [
  26334. {
  26335. name: "Really Small",
  26336. height: math.unit(1, "nm")
  26337. },
  26338. {
  26339. name: "Micro",
  26340. height: math.unit(4, "inches")
  26341. },
  26342. {
  26343. name: "Normal",
  26344. height: math.unit(4 + 10 / 12, "feet"),
  26345. default: true
  26346. },
  26347. {
  26348. name: "Macro",
  26349. height: math.unit(100, "feet")
  26350. },
  26351. {
  26352. name: "Megamacto",
  26353. height: math.unit(50, "miles")
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26359. {
  26360. side: {
  26361. height: math.unit(30, "feet"),
  26362. weight: math.unit(35000, "kg"),
  26363. name: "Side",
  26364. image: {
  26365. source: "./media/characters/alydar/side.svg",
  26366. extra: 234 / 222,
  26367. bottom: 6.5 / 241
  26368. }
  26369. },
  26370. front: {
  26371. height: math.unit(30, "feet"),
  26372. weight: math.unit(35000, "kg"),
  26373. name: "Front",
  26374. image: {
  26375. source: "./media/characters/alydar/front.svg",
  26376. extra: 223.37 / 210.2,
  26377. bottom: 22.3 / 246.76
  26378. }
  26379. },
  26380. top: {
  26381. height: math.unit(64.54, "feet"),
  26382. weight: math.unit(35000, "kg"),
  26383. name: "Top",
  26384. image: {
  26385. source: "./media/characters/alydar/top.svg"
  26386. }
  26387. },
  26388. anthro: {
  26389. height: math.unit(30, "feet"),
  26390. weight: math.unit(9000, "kg"),
  26391. name: "Anthro",
  26392. image: {
  26393. source: "./media/characters/alydar/anthro.svg",
  26394. extra: 432 / 421,
  26395. bottom: 7.18 / 440
  26396. }
  26397. },
  26398. maw: {
  26399. height: math.unit(11.693, "feet"),
  26400. name: "Maw",
  26401. image: {
  26402. source: "./media/characters/alydar/maw.svg"
  26403. }
  26404. },
  26405. head: {
  26406. height: math.unit(11.693, "feet"),
  26407. name: "Head",
  26408. image: {
  26409. source: "./media/characters/alydar/head.svg"
  26410. }
  26411. },
  26412. headAlt: {
  26413. height: math.unit(12.861, "feet"),
  26414. name: "Head (Alt)",
  26415. image: {
  26416. source: "./media/characters/alydar/head-alt.svg"
  26417. }
  26418. },
  26419. wing: {
  26420. height: math.unit(20.712, "feet"),
  26421. name: "Wing",
  26422. image: {
  26423. source: "./media/characters/alydar/wing.svg"
  26424. }
  26425. },
  26426. wingFeather: {
  26427. height: math.unit(9.662, "feet"),
  26428. name: "Wing Feather",
  26429. image: {
  26430. source: "./media/characters/alydar/wing-feather.svg"
  26431. }
  26432. },
  26433. countourFeather: {
  26434. height: math.unit(4.154, "feet"),
  26435. name: "Contour Feather",
  26436. image: {
  26437. source: "./media/characters/alydar/contour-feather.svg"
  26438. }
  26439. },
  26440. },
  26441. [
  26442. {
  26443. name: "Diplomatic",
  26444. height: math.unit(13, "feet"),
  26445. default: true
  26446. },
  26447. {
  26448. name: "Small",
  26449. height: math.unit(30, "feet")
  26450. },
  26451. {
  26452. name: "Normal",
  26453. height: math.unit(95, "feet"),
  26454. default: true
  26455. },
  26456. {
  26457. name: "Large",
  26458. height: math.unit(285, "feet")
  26459. },
  26460. {
  26461. name: "Incomprehensible",
  26462. height: math.unit(450, "megameters")
  26463. },
  26464. ]
  26465. ))
  26466. characterMakers.push(() => makeCharacter(
  26467. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26468. {
  26469. side: {
  26470. height: math.unit(11, "feet"),
  26471. weight: math.unit(1750, "kg"),
  26472. name: "Side",
  26473. image: {
  26474. source: "./media/characters/selicia/side.svg",
  26475. extra: 440 / 396,
  26476. bottom: 24.8 / 465.979
  26477. }
  26478. },
  26479. maw: {
  26480. height: math.unit(4.665, "feet"),
  26481. name: "Maw",
  26482. image: {
  26483. source: "./media/characters/selicia/maw.svg"
  26484. }
  26485. },
  26486. },
  26487. [
  26488. {
  26489. name: "Normal",
  26490. height: math.unit(11, "feet"),
  26491. default: true
  26492. },
  26493. ]
  26494. ))
  26495. characterMakers.push(() => makeCharacter(
  26496. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26497. {
  26498. side: {
  26499. height: math.unit(2 + 6 / 12, "feet"),
  26500. weight: math.unit(30, "lb"),
  26501. name: "Side",
  26502. image: {
  26503. source: "./media/characters/layla/side.svg",
  26504. extra: 244 / 188,
  26505. bottom: 18.2 / 262.1
  26506. }
  26507. },
  26508. back: {
  26509. height: math.unit(2 + 6 / 12, "feet"),
  26510. weight: math.unit(30, "lb"),
  26511. name: "Back",
  26512. image: {
  26513. source: "./media/characters/layla/back.svg",
  26514. extra: 308 / 241.5,
  26515. bottom: 8.9 / 316.8
  26516. }
  26517. },
  26518. cumming: {
  26519. height: math.unit(2 + 6 / 12, "feet"),
  26520. weight: math.unit(30, "lb"),
  26521. name: "Cumming",
  26522. image: {
  26523. source: "./media/characters/layla/cumming.svg",
  26524. extra: 342 / 279,
  26525. bottom: 595 / 938
  26526. }
  26527. },
  26528. dickFlaccid: {
  26529. height: math.unit(2.595, "feet"),
  26530. name: "Flaccid Genitals",
  26531. image: {
  26532. source: "./media/characters/layla/dick-flaccid.svg"
  26533. }
  26534. },
  26535. dickErect: {
  26536. height: math.unit(2.359, "feet"),
  26537. name: "Erect Genitals",
  26538. image: {
  26539. source: "./media/characters/layla/dick-erect.svg"
  26540. }
  26541. },
  26542. dragon: {
  26543. height: math.unit(40, "feet"),
  26544. name: "Dragon",
  26545. image: {
  26546. source: "./media/characters/layla/dragon.svg",
  26547. extra: 610/535,
  26548. bottom: 367/977
  26549. }
  26550. },
  26551. taur: {
  26552. height: math.unit(30, "feet"),
  26553. name: "Taur",
  26554. image: {
  26555. source: "./media/characters/layla/taur.svg",
  26556. extra: 1268/1199,
  26557. bottom: 112/1380
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Micro",
  26564. height: math.unit(1, "inch")
  26565. },
  26566. {
  26567. name: "Small",
  26568. height: math.unit(1, "foot")
  26569. },
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(2 + 6 / 12, "feet"),
  26573. default: true
  26574. },
  26575. {
  26576. name: "Macro",
  26577. height: math.unit(200, "feet")
  26578. },
  26579. {
  26580. name: "Megamacro",
  26581. height: math.unit(1000, "miles")
  26582. },
  26583. {
  26584. name: "Planetary",
  26585. height: math.unit(8000, "miles")
  26586. },
  26587. {
  26588. name: "True Layla",
  26589. height: math.unit(200000 * 7, "multiverses")
  26590. },
  26591. ]
  26592. ))
  26593. characterMakers.push(() => makeCharacter(
  26594. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26595. {
  26596. back: {
  26597. height: math.unit(10.5, "feet"),
  26598. weight: math.unit(800, "lb"),
  26599. name: "Back",
  26600. image: {
  26601. source: "./media/characters/knox/back.svg",
  26602. extra: 1486 / 1089,
  26603. bottom: 107 / 1601.4
  26604. }
  26605. },
  26606. side: {
  26607. height: math.unit(10.5, "feet"),
  26608. weight: math.unit(800, "lb"),
  26609. name: "Side",
  26610. image: {
  26611. source: "./media/characters/knox/side.svg",
  26612. extra: 244 / 218,
  26613. bottom: 14 / 260
  26614. }
  26615. },
  26616. },
  26617. [
  26618. {
  26619. name: "Compact",
  26620. height: math.unit(10.5, "feet"),
  26621. default: true
  26622. },
  26623. {
  26624. name: "Dynamax",
  26625. height: math.unit(210, "feet")
  26626. },
  26627. {
  26628. name: "Full Macro",
  26629. height: math.unit(850, "feet")
  26630. },
  26631. ]
  26632. ))
  26633. characterMakers.push(() => makeCharacter(
  26634. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26635. {
  26636. front: {
  26637. height: math.unit(28, "feet"),
  26638. weight: math.unit(10500, "lb"),
  26639. name: "Front",
  26640. image: {
  26641. source: "./media/characters/kayda/front.svg",
  26642. extra: 1536 / 1428,
  26643. bottom: 68.7 / 1603
  26644. }
  26645. },
  26646. back: {
  26647. height: math.unit(28, "feet"),
  26648. weight: math.unit(10500, "lb"),
  26649. name: "Back",
  26650. image: {
  26651. source: "./media/characters/kayda/back.svg",
  26652. extra: 1557 / 1464,
  26653. bottom: 39.5 / 1597.49
  26654. }
  26655. },
  26656. dick: {
  26657. height: math.unit(3.858, "feet"),
  26658. name: "Dick",
  26659. image: {
  26660. source: "./media/characters/kayda/dick.svg"
  26661. }
  26662. },
  26663. },
  26664. [
  26665. {
  26666. name: "Macro",
  26667. height: math.unit(28, "feet"),
  26668. default: true
  26669. },
  26670. ]
  26671. ))
  26672. characterMakers.push(() => makeCharacter(
  26673. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26674. {
  26675. front: {
  26676. height: math.unit(10 + 11 / 12, "feet"),
  26677. weight: math.unit(1400, "lb"),
  26678. name: "Front",
  26679. image: {
  26680. source: "./media/characters/brian/front.svg",
  26681. extra: 737 / 692,
  26682. bottom: 55.4 / 785
  26683. }
  26684. },
  26685. },
  26686. [
  26687. {
  26688. name: "Normal",
  26689. height: math.unit(10 + 11 / 12, "feet"),
  26690. default: true
  26691. },
  26692. ]
  26693. ))
  26694. characterMakers.push(() => makeCharacter(
  26695. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26696. {
  26697. front: {
  26698. height: math.unit(5 + 8 / 12, "feet"),
  26699. weight: math.unit(140, "lb"),
  26700. name: "Front",
  26701. image: {
  26702. source: "./media/characters/khemri/front.svg",
  26703. extra: 4780 / 4059,
  26704. bottom: 80.1 / 4859.25
  26705. }
  26706. },
  26707. },
  26708. [
  26709. {
  26710. name: "Micro",
  26711. height: math.unit(6, "inches")
  26712. },
  26713. {
  26714. name: "Normal",
  26715. height: math.unit(5 + 8 / 12, "feet"),
  26716. default: true
  26717. },
  26718. ]
  26719. ))
  26720. characterMakers.push(() => makeCharacter(
  26721. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26722. {
  26723. front: {
  26724. height: math.unit(13, "feet"),
  26725. weight: math.unit(1700, "lb"),
  26726. name: "Front",
  26727. image: {
  26728. source: "./media/characters/felix-braveheart/front.svg",
  26729. extra: 1222 / 1157,
  26730. bottom: 53.2 / 1280
  26731. }
  26732. },
  26733. back: {
  26734. height: math.unit(13, "feet"),
  26735. weight: math.unit(1700, "lb"),
  26736. name: "Back",
  26737. image: {
  26738. source: "./media/characters/felix-braveheart/back.svg",
  26739. extra: 1277 / 1203,
  26740. bottom: 50.2 / 1327
  26741. }
  26742. },
  26743. feral: {
  26744. height: math.unit(6, "feet"),
  26745. weight: math.unit(400, "lb"),
  26746. name: "Feral",
  26747. image: {
  26748. source: "./media/characters/felix-braveheart/feral.svg",
  26749. extra: 682 / 625,
  26750. bottom: 6.9 / 688
  26751. }
  26752. },
  26753. },
  26754. [
  26755. {
  26756. name: "Normal",
  26757. height: math.unit(13, "feet"),
  26758. default: true
  26759. },
  26760. ]
  26761. ))
  26762. characterMakers.push(() => makeCharacter(
  26763. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26764. {
  26765. side: {
  26766. height: math.unit(5 + 11 / 12, "feet"),
  26767. weight: math.unit(1400, "lb"),
  26768. name: "Side",
  26769. image: {
  26770. source: "./media/characters/shadow-blade/side.svg",
  26771. extra: 1726 / 1267,
  26772. bottom: 58.4 / 1785
  26773. }
  26774. },
  26775. },
  26776. [
  26777. {
  26778. name: "Normal",
  26779. height: math.unit(5 + 11 / 12, "feet"),
  26780. default: true
  26781. },
  26782. ]
  26783. ))
  26784. characterMakers.push(() => makeCharacter(
  26785. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26786. {
  26787. front: {
  26788. height: math.unit(1 + 6 / 12, "feet"),
  26789. weight: math.unit(25, "lb"),
  26790. name: "Front",
  26791. image: {
  26792. source: "./media/characters/karla-halldor/front.svg",
  26793. extra: 1459 / 1383,
  26794. bottom: 12 / 1472
  26795. }
  26796. },
  26797. },
  26798. [
  26799. {
  26800. name: "Normal",
  26801. height: math.unit(1 + 6 / 12, "feet"),
  26802. default: true
  26803. },
  26804. ]
  26805. ))
  26806. characterMakers.push(() => makeCharacter(
  26807. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26808. {
  26809. front: {
  26810. height: math.unit(6 + 2 / 12, "feet"),
  26811. weight: math.unit(160, "lb"),
  26812. name: "Front",
  26813. image: {
  26814. source: "./media/characters/ariam/front.svg",
  26815. extra: 1073/976,
  26816. bottom: 52/1125
  26817. }
  26818. },
  26819. back: {
  26820. height: math.unit(6 + 2/12, "feet"),
  26821. weight: math.unit(160, "lb"),
  26822. name: "Back",
  26823. image: {
  26824. source: "./media/characters/ariam/back.svg",
  26825. extra: 1103/1023,
  26826. bottom: 9/1112
  26827. }
  26828. },
  26829. dressed: {
  26830. height: math.unit(6 + 2/12, "feet"),
  26831. weight: math.unit(160, "lb"),
  26832. name: "Dressed",
  26833. image: {
  26834. source: "./media/characters/ariam/dressed.svg",
  26835. extra: 1099/1009,
  26836. bottom: 25/1124
  26837. }
  26838. },
  26839. squatting: {
  26840. height: math.unit(4.1, "feet"),
  26841. weight: math.unit(160, "lb"),
  26842. name: "Squatting",
  26843. image: {
  26844. source: "./media/characters/ariam/squatting.svg",
  26845. extra: 2617 / 2112,
  26846. bottom: 61.2 / 2681,
  26847. }
  26848. },
  26849. },
  26850. [
  26851. {
  26852. name: "Normal",
  26853. height: math.unit(6 + 2 / 12, "feet"),
  26854. default: true
  26855. },
  26856. {
  26857. name: "Normal+",
  26858. height: math.unit(4, "meters")
  26859. },
  26860. {
  26861. name: "Macro",
  26862. height: math.unit(50, "meters")
  26863. },
  26864. {
  26865. name: "Macro+",
  26866. height: math.unit(100, "meters")
  26867. },
  26868. {
  26869. name: "Megamacro",
  26870. height: math.unit(20, "km")
  26871. },
  26872. {
  26873. name: "Caretaker",
  26874. height: math.unit(444, "megameters")
  26875. },
  26876. ]
  26877. ))
  26878. characterMakers.push(() => makeCharacter(
  26879. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26880. {
  26881. front: {
  26882. height: math.unit(1.67, "meters"),
  26883. weight: math.unit(140, "lb"),
  26884. name: "Front",
  26885. image: {
  26886. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26887. extra: 438 / 410,
  26888. bottom: 0.75 / 439
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Shrunken",
  26895. height: math.unit(7.6, "cm")
  26896. },
  26897. {
  26898. name: "Human Scale",
  26899. height: math.unit(1.67, "meters")
  26900. },
  26901. {
  26902. name: "Wolxi Scale",
  26903. height: math.unit(36.7, "meters"),
  26904. default: true
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26910. {
  26911. front: {
  26912. height: math.unit(1.73, "meters"),
  26913. weight: math.unit(240, "lb"),
  26914. name: "Front",
  26915. image: {
  26916. source: "./media/characters/izue-two-mothers/front.svg",
  26917. extra: 469 / 437,
  26918. bottom: 1.24 / 470.6
  26919. }
  26920. },
  26921. },
  26922. [
  26923. {
  26924. name: "Shrunken",
  26925. height: math.unit(7.86, "cm")
  26926. },
  26927. {
  26928. name: "Human Scale",
  26929. height: math.unit(1.73, "meters")
  26930. },
  26931. {
  26932. name: "Wolxi Scale",
  26933. height: math.unit(38, "meters"),
  26934. default: true
  26935. },
  26936. ]
  26937. ))
  26938. characterMakers.push(() => makeCharacter(
  26939. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26940. {
  26941. front: {
  26942. height: math.unit(1.55, "meters"),
  26943. weight: math.unit(120, "lb"),
  26944. name: "Front",
  26945. image: {
  26946. source: "./media/characters/teeku-love-shack/front.svg",
  26947. extra: 387 / 362,
  26948. bottom: 1.51 / 388
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Shrunken",
  26955. height: math.unit(7, "cm")
  26956. },
  26957. {
  26958. name: "Human Scale",
  26959. height: math.unit(1.55, "meters")
  26960. },
  26961. {
  26962. name: "Wolxi Scale",
  26963. height: math.unit(34.1, "meters"),
  26964. default: true
  26965. },
  26966. ]
  26967. ))
  26968. characterMakers.push(() => makeCharacter(
  26969. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26970. {
  26971. front: {
  26972. height: math.unit(1.83, "meters"),
  26973. weight: math.unit(135, "lb"),
  26974. name: "Front",
  26975. image: {
  26976. source: "./media/characters/dejma-the-red/front.svg",
  26977. extra: 480 / 458,
  26978. bottom: 1.8 / 482
  26979. }
  26980. },
  26981. },
  26982. [
  26983. {
  26984. name: "Shrunken",
  26985. height: math.unit(8.3, "cm")
  26986. },
  26987. {
  26988. name: "Human Scale",
  26989. height: math.unit(1.83, "meters")
  26990. },
  26991. {
  26992. name: "Wolxi Scale",
  26993. height: math.unit(40, "meters"),
  26994. default: true
  26995. },
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27000. {
  27001. front: {
  27002. height: math.unit(1.78, "meters"),
  27003. weight: math.unit(65, "kg"),
  27004. name: "Front",
  27005. image: {
  27006. source: "./media/characters/aki/front.svg",
  27007. extra: 452 / 415
  27008. }
  27009. },
  27010. frontNsfw: {
  27011. height: math.unit(1.78, "meters"),
  27012. weight: math.unit(65, "kg"),
  27013. name: "Front (NSFW)",
  27014. image: {
  27015. source: "./media/characters/aki/front-nsfw.svg",
  27016. extra: 452 / 415
  27017. }
  27018. },
  27019. back: {
  27020. height: math.unit(1.78, "meters"),
  27021. weight: math.unit(65, "kg"),
  27022. name: "Back",
  27023. image: {
  27024. source: "./media/characters/aki/back.svg",
  27025. extra: 452 / 415
  27026. }
  27027. },
  27028. rump: {
  27029. height: math.unit(2.05, "feet"),
  27030. name: "Rump",
  27031. image: {
  27032. source: "./media/characters/aki/rump.svg"
  27033. }
  27034. },
  27035. dick: {
  27036. height: math.unit(0.95, "feet"),
  27037. name: "Dick",
  27038. image: {
  27039. source: "./media/characters/aki/dick.svg"
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Micro",
  27046. height: math.unit(15, "cm")
  27047. },
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(178, "cm"),
  27051. default: true
  27052. },
  27053. {
  27054. name: "Macro",
  27055. height: math.unit(214, "m")
  27056. },
  27057. {
  27058. name: "Macro+",
  27059. height: math.unit(534, "m")
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27065. {
  27066. front: {
  27067. height: math.unit(5 + 5 / 12, "feet"),
  27068. weight: math.unit(120, "lb"),
  27069. name: "Front",
  27070. image: {
  27071. source: "./media/characters/ari/front.svg",
  27072. extra: 1550/1471,
  27073. bottom: 39/1589
  27074. }
  27075. },
  27076. },
  27077. [
  27078. {
  27079. name: "Normal",
  27080. height: math.unit(5 + 5 / 12, "feet")
  27081. },
  27082. {
  27083. name: "Macro",
  27084. height: math.unit(100, "feet"),
  27085. default: true
  27086. },
  27087. {
  27088. name: "Megamacro",
  27089. height: math.unit(100, "miles")
  27090. },
  27091. {
  27092. name: "Gigamacro",
  27093. height: math.unit(80000, "miles")
  27094. },
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27099. {
  27100. side: {
  27101. height: math.unit(9, "feet"),
  27102. weight: math.unit(400, "kg"),
  27103. name: "Side",
  27104. image: {
  27105. source: "./media/characters/bolt/side.svg",
  27106. extra: 1126 / 896,
  27107. bottom: 60 / 1187.3,
  27108. }
  27109. },
  27110. },
  27111. [
  27112. {
  27113. name: "Micro",
  27114. height: math.unit(5, "inches")
  27115. },
  27116. {
  27117. name: "Normal",
  27118. height: math.unit(9, "feet"),
  27119. default: true
  27120. },
  27121. {
  27122. name: "Macro",
  27123. height: math.unit(700, "feet")
  27124. },
  27125. {
  27126. name: "Max Size",
  27127. height: math.unit(1.52e22, "yottameters")
  27128. },
  27129. ]
  27130. ))
  27131. characterMakers.push(() => makeCharacter(
  27132. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27133. {
  27134. front: {
  27135. height: math.unit(4.3, "meters"),
  27136. weight: math.unit(3, "tons"),
  27137. name: "Front",
  27138. image: {
  27139. source: "./media/characters/draekon-sylviar/front.svg",
  27140. extra: 2072/1512,
  27141. bottom: 74/2146
  27142. }
  27143. },
  27144. back: {
  27145. height: math.unit(4.3, "meters"),
  27146. weight: math.unit(3, "tons"),
  27147. name: "Back",
  27148. image: {
  27149. source: "./media/characters/draekon-sylviar/back.svg",
  27150. extra: 1639/1483,
  27151. bottom: 41/1680
  27152. }
  27153. },
  27154. feral: {
  27155. height: math.unit(1.15, "meters"),
  27156. weight: math.unit(3, "tons"),
  27157. name: "Feral",
  27158. image: {
  27159. source: "./media/characters/draekon-sylviar/feral.svg",
  27160. extra: 1033/395,
  27161. bottom: 130/1163
  27162. }
  27163. },
  27164. maw: {
  27165. height: math.unit(1.3, "meters"),
  27166. name: "Maw",
  27167. image: {
  27168. source: "./media/characters/draekon-sylviar/maw.svg"
  27169. }
  27170. },
  27171. mawSeparated: {
  27172. height: math.unit(1.53, "meters"),
  27173. name: "Separated Maw",
  27174. image: {
  27175. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27176. }
  27177. },
  27178. tail: {
  27179. height: math.unit(1.15, "meters"),
  27180. name: "Tail",
  27181. image: {
  27182. source: "./media/characters/draekon-sylviar/tail.svg"
  27183. }
  27184. },
  27185. tailDick: {
  27186. height: math.unit(1.15, "meters"),
  27187. name: "Tail (Dick)",
  27188. image: {
  27189. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27190. }
  27191. },
  27192. tailDickSeparated: {
  27193. height: math.unit(1.19, "meters"),
  27194. name: "Tail (Separated Dick)",
  27195. image: {
  27196. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27197. }
  27198. },
  27199. slit: {
  27200. height: math.unit(1, "meters"),
  27201. name: "Slit",
  27202. image: {
  27203. source: "./media/characters/draekon-sylviar/slit.svg"
  27204. }
  27205. },
  27206. dick: {
  27207. height: math.unit(1.15, "meters"),
  27208. name: "Dick",
  27209. image: {
  27210. source: "./media/characters/draekon-sylviar/dick.svg"
  27211. }
  27212. },
  27213. dickSeparated: {
  27214. height: math.unit(1.1, "meters"),
  27215. name: "Separated Dick",
  27216. image: {
  27217. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27218. }
  27219. },
  27220. sheath: {
  27221. height: math.unit(1.15, "meters"),
  27222. name: "Sheath",
  27223. image: {
  27224. source: "./media/characters/draekon-sylviar/sheath.svg"
  27225. }
  27226. },
  27227. },
  27228. [
  27229. {
  27230. name: "Small",
  27231. height: math.unit(4.53 / 2, "meters"),
  27232. default: true
  27233. },
  27234. {
  27235. name: "Normal",
  27236. height: math.unit(4.53, "meters"),
  27237. default: true
  27238. },
  27239. {
  27240. name: "Large",
  27241. height: math.unit(4.53 * 2, "meters"),
  27242. },
  27243. ]
  27244. ))
  27245. characterMakers.push(() => makeCharacter(
  27246. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27247. {
  27248. front: {
  27249. height: math.unit(6 + 2 / 12, "feet"),
  27250. weight: math.unit(180, "lb"),
  27251. name: "Front",
  27252. image: {
  27253. source: "./media/characters/brawler/front.svg",
  27254. extra: 3301 / 3027,
  27255. bottom: 138 / 3439
  27256. }
  27257. },
  27258. },
  27259. [
  27260. {
  27261. name: "Normal",
  27262. height: math.unit(6 + 2 / 12, "feet"),
  27263. default: true
  27264. },
  27265. ]
  27266. ))
  27267. characterMakers.push(() => makeCharacter(
  27268. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27269. {
  27270. front: {
  27271. height: math.unit(11, "feet"),
  27272. weight: math.unit(1000, "lb"),
  27273. name: "Front",
  27274. image: {
  27275. source: "./media/characters/alex/front.svg",
  27276. bottom: 44.5 / 620
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Micro",
  27283. height: math.unit(5, "inches")
  27284. },
  27285. {
  27286. name: "Normal",
  27287. height: math.unit(11, "feet"),
  27288. default: true
  27289. },
  27290. {
  27291. name: "Macro",
  27292. height: math.unit(9.5e9, "feet")
  27293. },
  27294. {
  27295. name: "Max Size",
  27296. height: math.unit(1.4e283, "yottameters")
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27302. {
  27303. female: {
  27304. height: math.unit(29.9, "m"),
  27305. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27306. name: "Female",
  27307. image: {
  27308. source: "./media/characters/zenari/female.svg",
  27309. extra: 3281.6 / 3217,
  27310. bottom: 72.2 / 3353
  27311. }
  27312. },
  27313. male: {
  27314. height: math.unit(27.7, "m"),
  27315. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27316. name: "Male",
  27317. image: {
  27318. source: "./media/characters/zenari/male.svg",
  27319. extra: 3008 / 2991,
  27320. bottom: 54.6 / 3069
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Macro",
  27327. height: math.unit(29.7, "meters"),
  27328. default: true
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27334. {
  27335. female: {
  27336. height: math.unit(23.8, "m"),
  27337. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27338. name: "Female",
  27339. image: {
  27340. source: "./media/characters/mactarian/female.svg",
  27341. extra: 2662 / 2569,
  27342. bottom: 73 / 2736
  27343. }
  27344. },
  27345. male: {
  27346. height: math.unit(23.8, "m"),
  27347. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27348. name: "Male",
  27349. image: {
  27350. source: "./media/characters/mactarian/male.svg",
  27351. extra: 2673 / 2600,
  27352. bottom: 76 / 2750
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Macro",
  27359. height: math.unit(23.8, "meters"),
  27360. default: true
  27361. },
  27362. ]
  27363. ))
  27364. characterMakers.push(() => makeCharacter(
  27365. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27366. {
  27367. female: {
  27368. height: math.unit(19.3, "m"),
  27369. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27370. name: "Female",
  27371. image: {
  27372. source: "./media/characters/umok/female.svg",
  27373. extra: 2186 / 2078,
  27374. bottom: 87 / 2277
  27375. }
  27376. },
  27377. male: {
  27378. height: math.unit(19.5, "m"),
  27379. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27380. name: "Male",
  27381. image: {
  27382. source: "./media/characters/umok/male.svg",
  27383. extra: 2233 / 2140,
  27384. bottom: 24.4 / 2258
  27385. }
  27386. },
  27387. },
  27388. [
  27389. {
  27390. name: "Macro",
  27391. height: math.unit(19.3, "meters"),
  27392. default: true
  27393. },
  27394. ]
  27395. ))
  27396. characterMakers.push(() => makeCharacter(
  27397. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27398. {
  27399. female: {
  27400. height: math.unit(26.15, "m"),
  27401. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27402. name: "Female",
  27403. image: {
  27404. source: "./media/characters/joraxian/female.svg",
  27405. extra: 2912 / 2824,
  27406. bottom: 36 / 2956
  27407. }
  27408. },
  27409. male: {
  27410. height: math.unit(25.4, "m"),
  27411. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27412. name: "Male",
  27413. image: {
  27414. source: "./media/characters/joraxian/male.svg",
  27415. extra: 2877 / 2721,
  27416. bottom: 82 / 2967
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Macro",
  27423. height: math.unit(26.15, "meters"),
  27424. default: true
  27425. },
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27430. {
  27431. female: {
  27432. height: math.unit(21.6, "m"),
  27433. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27434. name: "Female",
  27435. image: {
  27436. source: "./media/characters/sthara/female.svg",
  27437. extra: 2516 / 2347,
  27438. bottom: 21.5 / 2537
  27439. }
  27440. },
  27441. male: {
  27442. height: math.unit(24, "m"),
  27443. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27444. name: "Male",
  27445. image: {
  27446. source: "./media/characters/sthara/male.svg",
  27447. extra: 2732 / 2607,
  27448. bottom: 23 / 2732
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Macro",
  27455. height: math.unit(21.6, "meters"),
  27456. default: true
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27462. {
  27463. front: {
  27464. height: math.unit(6 + 4 / 12, "feet"),
  27465. weight: math.unit(175, "lb"),
  27466. name: "Front",
  27467. image: {
  27468. source: "./media/characters/luka-bryzant/front.svg",
  27469. extra: 311 / 289,
  27470. bottom: 4 / 315
  27471. }
  27472. },
  27473. back: {
  27474. height: math.unit(6 + 4 / 12, "feet"),
  27475. weight: math.unit(175, "lb"),
  27476. name: "Back",
  27477. image: {
  27478. source: "./media/characters/luka-bryzant/back.svg",
  27479. extra: 311 / 289,
  27480. bottom: 3.8 / 313.7
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Micro",
  27487. height: math.unit(10, "inches")
  27488. },
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(6 + 4 / 12, "feet"),
  27492. default: true
  27493. },
  27494. {
  27495. name: "Large",
  27496. height: math.unit(12, "feet")
  27497. },
  27498. ]
  27499. ))
  27500. characterMakers.push(() => makeCharacter(
  27501. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27502. {
  27503. front: {
  27504. height: math.unit(5 + 7 / 12, "feet"),
  27505. weight: math.unit(185, "lb"),
  27506. name: "Front",
  27507. image: {
  27508. source: "./media/characters/aman-aquila/front.svg",
  27509. extra: 1013 / 976,
  27510. bottom: 45.6 / 1057
  27511. }
  27512. },
  27513. side: {
  27514. height: math.unit(5 + 7 / 12, "feet"),
  27515. weight: math.unit(185, "lb"),
  27516. name: "Side",
  27517. image: {
  27518. source: "./media/characters/aman-aquila/side.svg",
  27519. extra: 1054 / 1011,
  27520. bottom: 15 / 1070
  27521. }
  27522. },
  27523. back: {
  27524. height: math.unit(5 + 7 / 12, "feet"),
  27525. weight: math.unit(185, "lb"),
  27526. name: "Back",
  27527. image: {
  27528. source: "./media/characters/aman-aquila/back.svg",
  27529. extra: 1026 / 970,
  27530. bottom: 12 / 1039
  27531. }
  27532. },
  27533. head: {
  27534. height: math.unit(1.211, "feet"),
  27535. name: "Head",
  27536. image: {
  27537. source: "./media/characters/aman-aquila/head.svg",
  27538. }
  27539. },
  27540. },
  27541. [
  27542. {
  27543. name: "Minimicro",
  27544. height: math.unit(0.057, "inches")
  27545. },
  27546. {
  27547. name: "Micro",
  27548. height: math.unit(7, "inches")
  27549. },
  27550. {
  27551. name: "Mini",
  27552. height: math.unit(3 + 7 / 12, "feet")
  27553. },
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(5 + 7 / 12, "feet"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Macro",
  27561. height: math.unit(157 + 7 / 12, "feet")
  27562. },
  27563. {
  27564. name: "Megamacro",
  27565. height: math.unit(1557 + 7 / 12, "feet")
  27566. },
  27567. {
  27568. name: "Gigamacro",
  27569. height: math.unit(15557 + 7 / 12, "feet")
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27575. {
  27576. front: {
  27577. height: math.unit(3 + 2 / 12, "inches"),
  27578. weight: math.unit(0.3, "ounces"),
  27579. name: "Front",
  27580. image: {
  27581. source: "./media/characters/hiphae/front.svg",
  27582. extra: 1931 / 1683,
  27583. bottom: 24 / 1955
  27584. }
  27585. },
  27586. },
  27587. [
  27588. {
  27589. name: "Normal",
  27590. height: math.unit(3 + 1 / 2, "inches"),
  27591. default: true
  27592. },
  27593. ]
  27594. ))
  27595. characterMakers.push(() => makeCharacter(
  27596. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27597. {
  27598. front: {
  27599. height: math.unit(5 + 10 / 12, "feet"),
  27600. weight: math.unit(165, "lb"),
  27601. name: "Front",
  27602. image: {
  27603. source: "./media/characters/nicky/front.svg",
  27604. extra: 3144 / 2886,
  27605. bottom: 45.6 / 3192
  27606. }
  27607. },
  27608. back: {
  27609. height: math.unit(5 + 10 / 12, "feet"),
  27610. weight: math.unit(165, "lb"),
  27611. name: "Back",
  27612. image: {
  27613. source: "./media/characters/nicky/back.svg",
  27614. extra: 3055 / 2804,
  27615. bottom: 28.4 / 3087
  27616. }
  27617. },
  27618. frontclothed: {
  27619. height: math.unit(5 + 10 / 12, "feet"),
  27620. weight: math.unit(165, "lb"),
  27621. name: "Front-clothed",
  27622. image: {
  27623. source: "./media/characters/nicky/front-clothed.svg",
  27624. extra: 3184.9 / 2926.9,
  27625. bottom: 86.5 / 3239.9
  27626. }
  27627. },
  27628. foot: {
  27629. height: math.unit(1.16, "feet"),
  27630. name: "Foot",
  27631. image: {
  27632. source: "./media/characters/nicky/foot.svg"
  27633. }
  27634. },
  27635. feet: {
  27636. height: math.unit(1.34, "feet"),
  27637. name: "Feet",
  27638. image: {
  27639. source: "./media/characters/nicky/feet.svg"
  27640. }
  27641. },
  27642. maw: {
  27643. height: math.unit(0.9, "feet"),
  27644. name: "Maw",
  27645. image: {
  27646. source: "./media/characters/nicky/maw.svg"
  27647. }
  27648. },
  27649. },
  27650. [
  27651. {
  27652. name: "Normal",
  27653. height: math.unit(5 + 10 / 12, "feet"),
  27654. default: true
  27655. },
  27656. {
  27657. name: "Macro",
  27658. height: math.unit(60, "feet")
  27659. },
  27660. {
  27661. name: "Megamacro",
  27662. height: math.unit(1, "mile")
  27663. },
  27664. ]
  27665. ))
  27666. characterMakers.push(() => makeCharacter(
  27667. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27668. {
  27669. side: {
  27670. height: math.unit(10, "feet"),
  27671. weight: math.unit(600, "lb"),
  27672. name: "Side",
  27673. image: {
  27674. source: "./media/characters/blair/side.svg",
  27675. bottom: 16.6 / 475,
  27676. extra: 458 / 431
  27677. }
  27678. },
  27679. },
  27680. [
  27681. {
  27682. name: "Micro",
  27683. height: math.unit(8, "inches")
  27684. },
  27685. {
  27686. name: "Normal",
  27687. height: math.unit(10, "feet"),
  27688. default: true
  27689. },
  27690. {
  27691. name: "Macro",
  27692. height: math.unit(180, "feet")
  27693. },
  27694. ]
  27695. ))
  27696. characterMakers.push(() => makeCharacter(
  27697. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27698. {
  27699. front: {
  27700. height: math.unit(5 + 4 / 12, "feet"),
  27701. weight: math.unit(125, "lb"),
  27702. name: "Front",
  27703. image: {
  27704. source: "./media/characters/fisher/front.svg",
  27705. extra: 444 / 390,
  27706. bottom: 2 / 444.8
  27707. }
  27708. },
  27709. },
  27710. [
  27711. {
  27712. name: "Micro",
  27713. height: math.unit(4, "inches")
  27714. },
  27715. {
  27716. name: "Normal",
  27717. height: math.unit(5 + 4 / 12, "feet"),
  27718. default: true
  27719. },
  27720. {
  27721. name: "Macro",
  27722. height: math.unit(100, "feet")
  27723. },
  27724. ]
  27725. ))
  27726. characterMakers.push(() => makeCharacter(
  27727. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27728. {
  27729. front: {
  27730. height: math.unit(6.71, "feet"),
  27731. weight: math.unit(200, "lb"),
  27732. preyCapacity: math.unit(1000000, "people"),
  27733. name: "Front",
  27734. image: {
  27735. source: "./media/characters/gliss/front.svg",
  27736. extra: 2347 / 2231,
  27737. bottom: 113 / 2462
  27738. }
  27739. },
  27740. hammerspaceSize: {
  27741. height: math.unit(6.71 * 717, "feet"),
  27742. weight: math.unit(200, "lb"),
  27743. preyCapacity: math.unit(1000000, "people"),
  27744. name: "Hammerspace Size",
  27745. image: {
  27746. source: "./media/characters/gliss/front.svg",
  27747. extra: 2347 / 2231,
  27748. bottom: 113 / 2462
  27749. }
  27750. },
  27751. },
  27752. [
  27753. {
  27754. name: "Normal",
  27755. height: math.unit(6.71, "feet"),
  27756. default: true
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27762. {
  27763. side: {
  27764. height: math.unit(1.44, "m"),
  27765. weight: math.unit(80, "kg"),
  27766. name: "Side",
  27767. image: {
  27768. source: "./media/characters/dune-anderson/side.svg",
  27769. bottom: 49 / 1426
  27770. }
  27771. },
  27772. },
  27773. [
  27774. {
  27775. name: "Wolf-sized",
  27776. height: math.unit(1.44, "meters")
  27777. },
  27778. {
  27779. name: "Normal",
  27780. height: math.unit(5.05, "meters"),
  27781. default: true
  27782. },
  27783. {
  27784. name: "Big",
  27785. height: math.unit(14.4, "meters")
  27786. },
  27787. {
  27788. name: "Huge",
  27789. height: math.unit(144, "meters")
  27790. },
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27795. {
  27796. front: {
  27797. height: math.unit(6, "feet"),
  27798. weight: math.unit(220, "lb"),
  27799. name: "Front",
  27800. image: {
  27801. source: "./media/characters/hind/front.svg",
  27802. extra: 1912/1787,
  27803. bottom: 52/1964
  27804. }
  27805. },
  27806. back: {
  27807. height: math.unit(6, "feet"),
  27808. weight: math.unit(220, "lb"),
  27809. name: "Back",
  27810. image: {
  27811. source: "./media/characters/hind/back.svg",
  27812. extra: 1901/1794,
  27813. bottom: 26/1927
  27814. }
  27815. },
  27816. },
  27817. [
  27818. {
  27819. name: "Normal",
  27820. height: math.unit(6, "feet"),
  27821. default: true
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27827. {
  27828. front: {
  27829. height: math.unit(2.1, "meters"),
  27830. weight: math.unit(150, "lb"),
  27831. name: "Front",
  27832. image: {
  27833. source: "./media/characters/tharquench-sizestealer/front.svg",
  27834. extra: 1605/1470,
  27835. bottom: 36/1641
  27836. }
  27837. },
  27838. frontAlt: {
  27839. height: math.unit(2.1, "meters"),
  27840. weight: math.unit(150, "lb"),
  27841. name: "Front (Alt)",
  27842. image: {
  27843. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27844. extra: 2318 / 2063,
  27845. bottom: 93.4 / 2410
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Nano",
  27852. height: math.unit(1, "mm")
  27853. },
  27854. {
  27855. name: "Micro",
  27856. height: math.unit(1, "cm")
  27857. },
  27858. {
  27859. name: "Normal",
  27860. height: math.unit(2.1, "meters"),
  27861. default: true
  27862. },
  27863. ]
  27864. ))
  27865. characterMakers.push(() => makeCharacter(
  27866. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27867. {
  27868. front: {
  27869. height: math.unit(7 + 5 / 12, "feet"),
  27870. weight: math.unit(357, "lb"),
  27871. name: "Front",
  27872. image: {
  27873. source: "./media/characters/solex-draconov/front.svg",
  27874. extra: 1993 / 1865,
  27875. bottom: 117 / 2111
  27876. }
  27877. },
  27878. },
  27879. [
  27880. {
  27881. name: "Natural Height",
  27882. height: math.unit(7 + 5 / 12, "feet"),
  27883. default: true
  27884. },
  27885. {
  27886. name: "Macro",
  27887. height: math.unit(350, "feet")
  27888. },
  27889. {
  27890. name: "Macro+",
  27891. height: math.unit(1000, "feet")
  27892. },
  27893. {
  27894. name: "Megamacro",
  27895. height: math.unit(20, "km")
  27896. },
  27897. {
  27898. name: "Megamacro+",
  27899. height: math.unit(1000, "km")
  27900. },
  27901. {
  27902. name: "Gigamacro",
  27903. height: math.unit(2.5, "Gm")
  27904. },
  27905. {
  27906. name: "Teramacro",
  27907. height: math.unit(15, "Tm")
  27908. },
  27909. {
  27910. name: "Galactic",
  27911. height: math.unit(30, "Zm")
  27912. },
  27913. {
  27914. name: "Universal",
  27915. height: math.unit(21000, "Ym")
  27916. },
  27917. {
  27918. name: "Omniversal",
  27919. height: math.unit(9.861e50, "Ym")
  27920. },
  27921. {
  27922. name: "Existential",
  27923. height: math.unit(1e300, "meters")
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27929. {
  27930. side: {
  27931. height: math.unit(25, "feet"),
  27932. weight: math.unit(90000, "lb"),
  27933. name: "Side",
  27934. image: {
  27935. source: "./media/characters/mandarax/side.svg",
  27936. extra: 614 / 332,
  27937. bottom: 55 / 630
  27938. }
  27939. },
  27940. lounging: {
  27941. height: math.unit(15.4, "feet"),
  27942. weight: math.unit(90000, "lb"),
  27943. name: "Lounging",
  27944. image: {
  27945. source: "./media/characters/mandarax/lounging.svg",
  27946. extra: 817/609,
  27947. bottom: 685/1502
  27948. }
  27949. },
  27950. head: {
  27951. height: math.unit(11.4, "feet"),
  27952. name: "Head",
  27953. image: {
  27954. source: "./media/characters/mandarax/head.svg"
  27955. }
  27956. },
  27957. belly: {
  27958. height: math.unit(33, "feet"),
  27959. name: "Belly",
  27960. preyCapacity: math.unit(500, "people"),
  27961. image: {
  27962. source: "./media/characters/mandarax/belly.svg"
  27963. }
  27964. },
  27965. dick: {
  27966. height: math.unit(8.46, "feet"),
  27967. name: "Dick",
  27968. image: {
  27969. source: "./media/characters/mandarax/dick.svg"
  27970. }
  27971. },
  27972. top: {
  27973. height: math.unit(28, "meters"),
  27974. name: "Top",
  27975. image: {
  27976. source: "./media/characters/mandarax/top.svg"
  27977. }
  27978. },
  27979. },
  27980. [
  27981. {
  27982. name: "Normal",
  27983. height: math.unit(25, "feet"),
  27984. default: true
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27990. {
  27991. front: {
  27992. height: math.unit(5, "feet"),
  27993. weight: math.unit(90, "lb"),
  27994. name: "Front",
  27995. image: {
  27996. source: "./media/characters/pixil/front.svg",
  27997. extra: 2000 / 1618,
  27998. bottom: 12.3 / 2011
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(5, "feet"),
  28006. default: true
  28007. },
  28008. {
  28009. name: "Megamacro",
  28010. height: math.unit(10, "miles"),
  28011. },
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28016. {
  28017. front: {
  28018. height: math.unit(7 + 2 / 12, "feet"),
  28019. weight: math.unit(200, "lb"),
  28020. name: "Front",
  28021. image: {
  28022. source: "./media/characters/angel/front.svg",
  28023. extra: 1946/1840,
  28024. bottom: 30/1976
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Normal",
  28031. height: math.unit(7 + 2 / 12, "feet"),
  28032. default: true
  28033. },
  28034. {
  28035. name: "Macro",
  28036. height: math.unit(1000, "feet")
  28037. },
  28038. {
  28039. name: "Megamacro",
  28040. height: math.unit(2, "miles")
  28041. },
  28042. {
  28043. name: "Gigamacro",
  28044. height: math.unit(20, "earths")
  28045. },
  28046. ]
  28047. ))
  28048. characterMakers.push(() => makeCharacter(
  28049. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28050. {
  28051. front: {
  28052. height: math.unit(5, "feet"),
  28053. weight: math.unit(180, "lb"),
  28054. name: "Front",
  28055. image: {
  28056. source: "./media/characters/mekana/front.svg",
  28057. extra: 1671 / 1605,
  28058. bottom: 3.5 / 1691
  28059. }
  28060. },
  28061. side: {
  28062. height: math.unit(5, "feet"),
  28063. weight: math.unit(180, "lb"),
  28064. name: "Side",
  28065. image: {
  28066. source: "./media/characters/mekana/side.svg",
  28067. extra: 1671 / 1605,
  28068. bottom: 3.5 / 1691
  28069. }
  28070. },
  28071. back: {
  28072. height: math.unit(5, "feet"),
  28073. weight: math.unit(180, "lb"),
  28074. name: "Back",
  28075. image: {
  28076. source: "./media/characters/mekana/back.svg",
  28077. extra: 1671 / 1605,
  28078. bottom: 3.5 / 1691
  28079. }
  28080. },
  28081. },
  28082. [
  28083. {
  28084. name: "Normal",
  28085. height: math.unit(5, "feet"),
  28086. default: true
  28087. },
  28088. ]
  28089. ))
  28090. characterMakers.push(() => makeCharacter(
  28091. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28092. {
  28093. front: {
  28094. height: math.unit(4 + 6 / 12, "feet"),
  28095. weight: math.unit(80, "lb"),
  28096. name: "Front",
  28097. image: {
  28098. source: "./media/characters/pixie/front.svg",
  28099. extra: 1924 / 1825,
  28100. bottom: 22.4 / 1946
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Normal",
  28107. height: math.unit(4 + 6 / 12, "feet"),
  28108. default: true
  28109. },
  28110. {
  28111. name: "Macro",
  28112. height: math.unit(40, "feet")
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28118. {
  28119. front: {
  28120. height: math.unit(2.1, "meters"),
  28121. weight: math.unit(200, "lb"),
  28122. name: "Front",
  28123. image: {
  28124. source: "./media/characters/the-lascivious/front.svg",
  28125. extra: 1 / 0.893,
  28126. bottom: 3.5 / 573.7
  28127. }
  28128. },
  28129. },
  28130. [
  28131. {
  28132. name: "Human Scale",
  28133. height: math.unit(2.1, "meters")
  28134. },
  28135. {
  28136. name: "Wolxi Scale",
  28137. height: math.unit(46.2, "m"),
  28138. default: true
  28139. },
  28140. {
  28141. name: "Boinker of Buildings",
  28142. height: math.unit(10, "km")
  28143. },
  28144. {
  28145. name: "Shagger of Skyscrapers",
  28146. height: math.unit(40, "km")
  28147. },
  28148. {
  28149. name: "Banger of Boroughs",
  28150. height: math.unit(4000, "km")
  28151. },
  28152. {
  28153. name: "Screwer of States",
  28154. height: math.unit(100000, "km")
  28155. },
  28156. {
  28157. name: "Pounder of Planets",
  28158. height: math.unit(2000000, "km")
  28159. },
  28160. ]
  28161. ))
  28162. characterMakers.push(() => makeCharacter(
  28163. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28164. {
  28165. front: {
  28166. height: math.unit(6, "feet"),
  28167. weight: math.unit(150, "lb"),
  28168. name: "Front",
  28169. image: {
  28170. source: "./media/characters/aj/front.svg",
  28171. extra: 2039 / 1562,
  28172. bottom: 40 / 2079
  28173. }
  28174. },
  28175. },
  28176. [
  28177. {
  28178. name: "Normal",
  28179. height: math.unit(11 + 6 / 12, "feet"),
  28180. default: true
  28181. },
  28182. {
  28183. name: "Megamacro",
  28184. height: math.unit(60, "megameters")
  28185. },
  28186. ]
  28187. ))
  28188. characterMakers.push(() => makeCharacter(
  28189. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28190. {
  28191. side: {
  28192. height: math.unit(31 + 8 / 12, "feet"),
  28193. weight: math.unit(75000, "kg"),
  28194. name: "Side",
  28195. image: {
  28196. source: "./media/characters/koros/side.svg",
  28197. extra: 1442 / 1297,
  28198. bottom: 122.7 / 1562
  28199. }
  28200. },
  28201. dicksKingsCrown: {
  28202. height: math.unit(6, "feet"),
  28203. name: "Dicks (King's Crown)",
  28204. image: {
  28205. source: "./media/characters/koros/dicks-kings-crown.svg"
  28206. }
  28207. },
  28208. dicksTailSet: {
  28209. height: math.unit(3, "feet"),
  28210. name: "Dicks (Tail Set)",
  28211. image: {
  28212. source: "./media/characters/koros/dicks-tail-set.svg"
  28213. }
  28214. },
  28215. dickCumming: {
  28216. height: math.unit(7.98, "feet"),
  28217. name: "Dick (Cumming)",
  28218. image: {
  28219. source: "./media/characters/koros/dick-cumming.svg"
  28220. }
  28221. },
  28222. dicksBack: {
  28223. height: math.unit(5.9, "feet"),
  28224. name: "Dicks (Back)",
  28225. image: {
  28226. source: "./media/characters/koros/dicks-back.svg"
  28227. }
  28228. },
  28229. dicksFront: {
  28230. height: math.unit(3.72, "feet"),
  28231. name: "Dicks (Front)",
  28232. image: {
  28233. source: "./media/characters/koros/dicks-front.svg"
  28234. }
  28235. },
  28236. dicksPeeking: {
  28237. height: math.unit(3.0, "feet"),
  28238. name: "Dicks (Peeking)",
  28239. image: {
  28240. source: "./media/characters/koros/dicks-peeking.svg"
  28241. }
  28242. },
  28243. eye: {
  28244. height: math.unit(1.7, "feet"),
  28245. name: "Eye",
  28246. image: {
  28247. source: "./media/characters/koros/eye.svg"
  28248. }
  28249. },
  28250. headFront: {
  28251. height: math.unit(11.69, "feet"),
  28252. name: "Head (Front)",
  28253. image: {
  28254. source: "./media/characters/koros/head-front.svg"
  28255. }
  28256. },
  28257. headSide: {
  28258. height: math.unit(14, "feet"),
  28259. name: "Head (Side)",
  28260. image: {
  28261. source: "./media/characters/koros/head-side.svg"
  28262. }
  28263. },
  28264. leg: {
  28265. height: math.unit(17, "feet"),
  28266. name: "Leg",
  28267. image: {
  28268. source: "./media/characters/koros/leg.svg"
  28269. }
  28270. },
  28271. mawSide: {
  28272. height: math.unit(12.8, "feet"),
  28273. name: "Maw (Side)",
  28274. image: {
  28275. source: "./media/characters/koros/maw-side.svg"
  28276. }
  28277. },
  28278. mawSpitting: {
  28279. height: math.unit(17, "feet"),
  28280. name: "Maw (Spitting)",
  28281. image: {
  28282. source: "./media/characters/koros/maw-spitting.svg"
  28283. }
  28284. },
  28285. slit: {
  28286. height: math.unit(2.8, "feet"),
  28287. name: "Slit",
  28288. image: {
  28289. source: "./media/characters/koros/slit.svg"
  28290. }
  28291. },
  28292. stomach: {
  28293. height: math.unit(6.8, "feet"),
  28294. preyCapacity: math.unit(20, "people"),
  28295. name: "Stomach",
  28296. image: {
  28297. source: "./media/characters/koros/stomach.svg"
  28298. }
  28299. },
  28300. wingspanBottom: {
  28301. height: math.unit(114, "feet"),
  28302. name: "Wingspan (Bottom)",
  28303. image: {
  28304. source: "./media/characters/koros/wingspan-bottom.svg"
  28305. }
  28306. },
  28307. wingspanTop: {
  28308. height: math.unit(104, "feet"),
  28309. name: "Wingspan (Top)",
  28310. image: {
  28311. source: "./media/characters/koros/wingspan-top.svg"
  28312. }
  28313. },
  28314. },
  28315. [
  28316. {
  28317. name: "Normal",
  28318. height: math.unit(31 + 8 / 12, "feet"),
  28319. default: true
  28320. },
  28321. ]
  28322. ))
  28323. characterMakers.push(() => makeCharacter(
  28324. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28325. {
  28326. front: {
  28327. height: math.unit(18 + 5 / 12, "feet"),
  28328. weight: math.unit(3750, "kg"),
  28329. name: "Front",
  28330. image: {
  28331. source: "./media/characters/vexx/front.svg",
  28332. extra: 426 / 396,
  28333. bottom: 31.5 / 458
  28334. }
  28335. },
  28336. maw: {
  28337. height: math.unit(6, "feet"),
  28338. name: "Maw",
  28339. image: {
  28340. source: "./media/characters/vexx/maw.svg"
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Normal",
  28347. height: math.unit(18 + 5 / 12, "feet"),
  28348. default: true
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(17 + 6 / 12, "feet"),
  28357. weight: math.unit(150, "lb"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/baadra/front.svg",
  28361. extra: 1694/1553,
  28362. bottom: 179/1873
  28363. }
  28364. },
  28365. frontAlt: {
  28366. height: math.unit(17 + 6 / 12, "feet"),
  28367. weight: math.unit(150, "lb"),
  28368. name: "Front (Alt)",
  28369. image: {
  28370. source: "./media/characters/baadra/front-alt.svg",
  28371. extra: 3137 / 2890,
  28372. bottom: 168.4 / 3305
  28373. }
  28374. },
  28375. back: {
  28376. height: math.unit(17 + 6 / 12, "feet"),
  28377. weight: math.unit(150, "lb"),
  28378. name: "Back",
  28379. image: {
  28380. source: "./media/characters/baadra/back.svg",
  28381. extra: 3142 / 2890,
  28382. bottom: 220 / 3371
  28383. }
  28384. },
  28385. head: {
  28386. height: math.unit(5.45, "feet"),
  28387. name: "Head",
  28388. image: {
  28389. source: "./media/characters/baadra/head.svg"
  28390. }
  28391. },
  28392. headAngry: {
  28393. height: math.unit(4.95, "feet"),
  28394. name: "Head (Angry)",
  28395. image: {
  28396. source: "./media/characters/baadra/head-angry.svg"
  28397. }
  28398. },
  28399. headOpen: {
  28400. height: math.unit(6, "feet"),
  28401. name: "Head (Open)",
  28402. image: {
  28403. source: "./media/characters/baadra/head-open.svg"
  28404. }
  28405. },
  28406. },
  28407. [
  28408. {
  28409. name: "Normal",
  28410. height: math.unit(17 + 6 / 12, "feet"),
  28411. default: true
  28412. },
  28413. ]
  28414. ))
  28415. characterMakers.push(() => makeCharacter(
  28416. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28417. {
  28418. front: {
  28419. height: math.unit(7 + 3 / 12, "feet"),
  28420. weight: math.unit(180, "lb"),
  28421. name: "Front",
  28422. image: {
  28423. source: "./media/characters/juri/front.svg",
  28424. extra: 1401 / 1237,
  28425. bottom: 18.5 / 1418
  28426. }
  28427. },
  28428. side: {
  28429. height: math.unit(7 + 3 / 12, "feet"),
  28430. weight: math.unit(180, "lb"),
  28431. name: "Side",
  28432. image: {
  28433. source: "./media/characters/juri/side.svg",
  28434. extra: 1424 / 1242,
  28435. bottom: 18.5 / 1447
  28436. }
  28437. },
  28438. sitting: {
  28439. height: math.unit(6, "feet"),
  28440. weight: math.unit(180, "lb"),
  28441. name: "Sitting",
  28442. image: {
  28443. source: "./media/characters/juri/sitting.svg",
  28444. extra: 1270 / 1143,
  28445. bottom: 100 / 1343
  28446. }
  28447. },
  28448. back: {
  28449. height: math.unit(7 + 3 / 12, "feet"),
  28450. weight: math.unit(180, "lb"),
  28451. name: "Back",
  28452. image: {
  28453. source: "./media/characters/juri/back.svg",
  28454. extra: 1377 / 1240,
  28455. bottom: 23.7 / 1405
  28456. }
  28457. },
  28458. maw: {
  28459. height: math.unit(2.8, "feet"),
  28460. name: "Maw",
  28461. image: {
  28462. source: "./media/characters/juri/maw.svg"
  28463. }
  28464. },
  28465. stomach: {
  28466. height: math.unit(0.89, "feet"),
  28467. preyCapacity: math.unit(4, "liters"),
  28468. name: "Stomach",
  28469. image: {
  28470. source: "./media/characters/juri/stomach.svg"
  28471. }
  28472. },
  28473. },
  28474. [
  28475. {
  28476. name: "Normal",
  28477. height: math.unit(7 + 3 / 12, "feet"),
  28478. default: true
  28479. },
  28480. ]
  28481. ))
  28482. characterMakers.push(() => makeCharacter(
  28483. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28484. {
  28485. fox: {
  28486. height: math.unit(5 + 6 / 12, "feet"),
  28487. weight: math.unit(140, "lb"),
  28488. name: "Fox",
  28489. image: {
  28490. source: "./media/characters/maxene-sita/fox.svg",
  28491. extra: 146 / 138,
  28492. bottom: 2.1 / 148.19
  28493. }
  28494. },
  28495. foxLaying: {
  28496. height: math.unit(1.70, "feet"),
  28497. weight: math.unit(140, "lb"),
  28498. name: "Fox (Laying)",
  28499. image: {
  28500. source: "./media/characters/maxene-sita/fox-laying.svg",
  28501. extra: 910 / 572,
  28502. bottom: 71 / 981
  28503. }
  28504. },
  28505. kitsune: {
  28506. height: math.unit(10, "feet"),
  28507. weight: math.unit(800, "lb"),
  28508. name: "Kitsune",
  28509. image: {
  28510. source: "./media/characters/maxene-sita/kitsune.svg",
  28511. extra: 185 / 176,
  28512. bottom: 4.7 / 189.9
  28513. }
  28514. },
  28515. hellhound: {
  28516. height: math.unit(10, "feet"),
  28517. weight: math.unit(700, "lb"),
  28518. name: "Hellhound",
  28519. image: {
  28520. source: "./media/characters/maxene-sita/hellhound.svg",
  28521. extra: 1600 / 1545,
  28522. bottom: 81 / 1681
  28523. }
  28524. },
  28525. },
  28526. [
  28527. {
  28528. name: "Normal",
  28529. height: math.unit(5 + 6 / 12, "feet"),
  28530. default: true
  28531. },
  28532. ]
  28533. ))
  28534. characterMakers.push(() => makeCharacter(
  28535. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28536. {
  28537. front: {
  28538. height: math.unit(3 + 4 / 12, "feet"),
  28539. weight: math.unit(70, "lb"),
  28540. name: "Front",
  28541. image: {
  28542. source: "./media/characters/maia/front.svg",
  28543. extra: 227 / 219.5,
  28544. bottom: 40 / 267
  28545. }
  28546. },
  28547. back: {
  28548. height: math.unit(3 + 4 / 12, "feet"),
  28549. weight: math.unit(70, "lb"),
  28550. name: "Back",
  28551. image: {
  28552. source: "./media/characters/maia/back.svg",
  28553. extra: 237 / 225
  28554. }
  28555. },
  28556. },
  28557. [
  28558. {
  28559. name: "Normal",
  28560. height: math.unit(3 + 4 / 12, "feet"),
  28561. default: true
  28562. },
  28563. ]
  28564. ))
  28565. characterMakers.push(() => makeCharacter(
  28566. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28567. {
  28568. front: {
  28569. height: math.unit(5 + 10 / 12, "feet"),
  28570. weight: math.unit(197, "lb"),
  28571. name: "Front",
  28572. image: {
  28573. source: "./media/characters/jabaro/front.svg",
  28574. extra: 225 / 216,
  28575. bottom: 5.06 / 230
  28576. }
  28577. },
  28578. back: {
  28579. height: math.unit(5 + 10 / 12, "feet"),
  28580. weight: math.unit(197, "lb"),
  28581. name: "Back",
  28582. image: {
  28583. source: "./media/characters/jabaro/back.svg",
  28584. extra: 225 / 219,
  28585. bottom: 1.9 / 227
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(5 + 10 / 12, "feet"),
  28593. default: true
  28594. },
  28595. ]
  28596. ))
  28597. characterMakers.push(() => makeCharacter(
  28598. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28599. {
  28600. front: {
  28601. height: math.unit(5 + 8 / 12, "feet"),
  28602. weight: math.unit(139, "lb"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/risa/front.svg",
  28606. extra: 270 / 260,
  28607. bottom: 11.2 / 282
  28608. }
  28609. },
  28610. back: {
  28611. height: math.unit(5 + 8 / 12, "feet"),
  28612. weight: math.unit(139, "lb"),
  28613. name: "Back",
  28614. image: {
  28615. source: "./media/characters/risa/back.svg",
  28616. extra: 264 / 255,
  28617. bottom: 4 / 268
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Normal",
  28624. height: math.unit(5 + 8 / 12, "feet"),
  28625. default: true
  28626. },
  28627. ]
  28628. ))
  28629. characterMakers.push(() => makeCharacter(
  28630. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28631. {
  28632. front: {
  28633. height: math.unit(2 + 11 / 12, "feet"),
  28634. weight: math.unit(30, "lb"),
  28635. name: "Front",
  28636. image: {
  28637. source: "./media/characters/weatley/front.svg",
  28638. bottom: 10.7 / 414,
  28639. extra: 403.5 / 362
  28640. }
  28641. },
  28642. back: {
  28643. height: math.unit(2 + 11 / 12, "feet"),
  28644. weight: math.unit(30, "lb"),
  28645. name: "Back",
  28646. image: {
  28647. source: "./media/characters/weatley/back.svg",
  28648. bottom: 10.7 / 414,
  28649. extra: 403.5 / 362
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Normal",
  28656. height: math.unit(2 + 11 / 12, "feet"),
  28657. default: true
  28658. },
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28663. {
  28664. front: {
  28665. height: math.unit(5 + 2 / 12, "feet"),
  28666. weight: math.unit(50, "kg"),
  28667. name: "Front",
  28668. image: {
  28669. source: "./media/characters/mercury-crescent/front.svg",
  28670. extra: 1088 / 1033,
  28671. bottom: 18.9 / 1109
  28672. }
  28673. },
  28674. },
  28675. [
  28676. {
  28677. name: "Normal",
  28678. height: math.unit(5 + 2 / 12, "feet"),
  28679. default: true
  28680. },
  28681. ]
  28682. ))
  28683. characterMakers.push(() => makeCharacter(
  28684. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28685. {
  28686. front: {
  28687. height: math.unit(2, "feet"),
  28688. weight: math.unit(15, "kg"),
  28689. name: "Front",
  28690. image: {
  28691. source: "./media/characters/diamond-jones/front.svg",
  28692. extra: 727/723,
  28693. bottom: 46/773
  28694. }
  28695. },
  28696. },
  28697. [
  28698. {
  28699. name: "Normal",
  28700. height: math.unit(2, "feet"),
  28701. default: true
  28702. },
  28703. ]
  28704. ))
  28705. characterMakers.push(() => makeCharacter(
  28706. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28707. {
  28708. front: {
  28709. height: math.unit(3, "feet"),
  28710. weight: math.unit(30, "kg"),
  28711. name: "Front",
  28712. image: {
  28713. source: "./media/characters/sweet-bit/front.svg",
  28714. extra: 675 / 567,
  28715. bottom: 27.7 / 703
  28716. }
  28717. },
  28718. },
  28719. [
  28720. {
  28721. name: "Normal",
  28722. height: math.unit(3, "feet"),
  28723. default: true
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28729. {
  28730. side: {
  28731. height: math.unit(9.178, "feet"),
  28732. weight: math.unit(500, "lb"),
  28733. name: "Side",
  28734. image: {
  28735. source: "./media/characters/umbrazen/side.svg",
  28736. extra: 1730 / 1473,
  28737. bottom: 34.6 / 1765
  28738. }
  28739. },
  28740. },
  28741. [
  28742. {
  28743. name: "Normal",
  28744. height: math.unit(9.178, "feet"),
  28745. default: true
  28746. },
  28747. ]
  28748. ))
  28749. characterMakers.push(() => makeCharacter(
  28750. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28751. {
  28752. front: {
  28753. height: math.unit(10, "feet"),
  28754. weight: math.unit(750, "lb"),
  28755. name: "Front",
  28756. image: {
  28757. source: "./media/characters/arlist/front.svg",
  28758. extra: 961 / 778,
  28759. bottom: 6.2 / 986
  28760. }
  28761. },
  28762. },
  28763. [
  28764. {
  28765. name: "Normal",
  28766. height: math.unit(10, "feet"),
  28767. default: true
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28773. {
  28774. front: {
  28775. height: math.unit(5 + 1 / 12, "feet"),
  28776. weight: math.unit(110, "lb"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/aradel/front.svg",
  28780. extra: 324 / 303,
  28781. bottom: 3.6 / 329.4
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Normal",
  28788. height: math.unit(5 + 1 / 12, "feet"),
  28789. default: true
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28795. {
  28796. dressed: {
  28797. height: math.unit(3 + 8 / 12, "feet"),
  28798. weight: math.unit(50, "lb"),
  28799. name: "Dressed",
  28800. image: {
  28801. source: "./media/characters/serryn/dressed.svg",
  28802. extra: 1792 / 1656,
  28803. bottom: 43.5 / 1840
  28804. }
  28805. },
  28806. nude: {
  28807. height: math.unit(3 + 8 / 12, "feet"),
  28808. weight: math.unit(50, "lb"),
  28809. name: "Nude",
  28810. image: {
  28811. source: "./media/characters/serryn/nude.svg",
  28812. extra: 1792 / 1656,
  28813. bottom: 43.5 / 1840
  28814. }
  28815. },
  28816. },
  28817. [
  28818. {
  28819. name: "Normal",
  28820. height: math.unit(3 + 8 / 12, "feet"),
  28821. default: true
  28822. },
  28823. ]
  28824. ))
  28825. characterMakers.push(() => makeCharacter(
  28826. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28827. {
  28828. front: {
  28829. height: math.unit(7 + 10 / 12, "feet"),
  28830. weight: math.unit(255, "lb"),
  28831. name: "Front",
  28832. image: {
  28833. source: "./media/characters/xavier-thyme/front.svg",
  28834. extra: 3733 / 3642,
  28835. bottom: 131 / 3869
  28836. }
  28837. },
  28838. frontRaven: {
  28839. height: math.unit(7 + 10 / 12, "feet"),
  28840. weight: math.unit(255, "lb"),
  28841. name: "Front (Raven)",
  28842. image: {
  28843. source: "./media/characters/xavier-thyme/front-raven.svg",
  28844. extra: 4385 / 3642,
  28845. bottom: 131 / 4517
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Normal",
  28852. height: math.unit(7 + 10 / 12, "feet"),
  28853. default: true
  28854. },
  28855. ]
  28856. ))
  28857. characterMakers.push(() => makeCharacter(
  28858. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28859. {
  28860. front: {
  28861. height: math.unit(1.6, "m"),
  28862. weight: math.unit(50, "kg"),
  28863. name: "Front",
  28864. image: {
  28865. source: "./media/characters/kiki/front.svg",
  28866. extra: 4682 / 3610,
  28867. bottom: 115 / 4777
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(1.6, "meters"),
  28875. default: true
  28876. },
  28877. ]
  28878. ))
  28879. characterMakers.push(() => makeCharacter(
  28880. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28881. {
  28882. front: {
  28883. height: math.unit(50, "m"),
  28884. weight: math.unit(500, "tonnes"),
  28885. name: "Front",
  28886. image: {
  28887. source: "./media/characters/ryoko/front.svg",
  28888. extra: 4632 / 3926,
  28889. bottom: 193 / 4823
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Normal",
  28896. height: math.unit(50, "meters"),
  28897. default: true
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28903. {
  28904. front: {
  28905. height: math.unit(30, "m"),
  28906. weight: math.unit(22, "tonnes"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/elio/front.svg",
  28910. extra: 4582 / 3720,
  28911. bottom: 236 / 4828
  28912. }
  28913. },
  28914. },
  28915. [
  28916. {
  28917. name: "Normal",
  28918. height: math.unit(30, "meters"),
  28919. default: true
  28920. },
  28921. ]
  28922. ))
  28923. characterMakers.push(() => makeCharacter(
  28924. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28925. {
  28926. front: {
  28927. height: math.unit(6 + 3 / 12, "feet"),
  28928. weight: math.unit(120, "lb"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/azura/front.svg",
  28932. extra: 1149 / 1135,
  28933. bottom: 45 / 1194
  28934. }
  28935. },
  28936. frontClothed: {
  28937. height: math.unit(6 + 3 / 12, "feet"),
  28938. weight: math.unit(120, "lb"),
  28939. name: "Front (Clothed)",
  28940. image: {
  28941. source: "./media/characters/azura/front-clothed.svg",
  28942. extra: 1149 / 1135,
  28943. bottom: 45 / 1194
  28944. }
  28945. },
  28946. },
  28947. [
  28948. {
  28949. name: "Normal",
  28950. height: math.unit(6 + 3 / 12, "feet"),
  28951. default: true
  28952. },
  28953. {
  28954. name: "Macro",
  28955. height: math.unit(20 + 6 / 12, "feet")
  28956. },
  28957. {
  28958. name: "Megamacro",
  28959. height: math.unit(12, "miles")
  28960. },
  28961. {
  28962. name: "Gigamacro",
  28963. height: math.unit(10000, "miles")
  28964. },
  28965. {
  28966. name: "Teramacro",
  28967. height: math.unit(900000, "miles")
  28968. },
  28969. ]
  28970. ))
  28971. characterMakers.push(() => makeCharacter(
  28972. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28973. {
  28974. front: {
  28975. height: math.unit(12, "feet"),
  28976. weight: math.unit(1, "ton"),
  28977. capacity: math.unit(660000, "gallons"),
  28978. name: "Front",
  28979. image: {
  28980. source: "./media/characters/zeus/front.svg",
  28981. extra: 5005 / 4717,
  28982. bottom: 363 / 5388
  28983. }
  28984. },
  28985. },
  28986. [
  28987. {
  28988. name: "Normal",
  28989. height: math.unit(12, "feet")
  28990. },
  28991. {
  28992. name: "Preferred Size",
  28993. height: math.unit(0.5, "miles"),
  28994. default: true
  28995. },
  28996. {
  28997. name: "Giga Horse",
  28998. height: math.unit(300, "miles")
  28999. },
  29000. {
  29001. name: "Riding Planets",
  29002. height: math.unit(30, "megameters")
  29003. },
  29004. {
  29005. name: "Cosmic Giant",
  29006. height: math.unit(3, "zettameters")
  29007. },
  29008. {
  29009. name: "Breeding God",
  29010. height: math.unit(9.92e22, "yottameters")
  29011. },
  29012. ]
  29013. ))
  29014. characterMakers.push(() => makeCharacter(
  29015. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29016. {
  29017. side: {
  29018. height: math.unit(9, "feet"),
  29019. weight: math.unit(1500, "kg"),
  29020. name: "Side",
  29021. image: {
  29022. source: "./media/characters/fang/side.svg",
  29023. extra: 924 / 866,
  29024. bottom: 47.5 / 972.3
  29025. }
  29026. },
  29027. },
  29028. [
  29029. {
  29030. name: "Normal",
  29031. height: math.unit(9, "feet"),
  29032. default: true
  29033. },
  29034. {
  29035. name: "Macro",
  29036. height: math.unit(75 + 6 / 12, "feet")
  29037. },
  29038. {
  29039. name: "Teramacro",
  29040. height: math.unit(50000, "miles")
  29041. },
  29042. ]
  29043. ))
  29044. characterMakers.push(() => makeCharacter(
  29045. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29046. {
  29047. front: {
  29048. height: math.unit(10, "feet"),
  29049. weight: math.unit(2, "tons"),
  29050. name: "Front",
  29051. image: {
  29052. source: "./media/characters/rekhit/front.svg",
  29053. extra: 2796 / 2590,
  29054. bottom: 225 / 3022
  29055. }
  29056. },
  29057. },
  29058. [
  29059. {
  29060. name: "Normal",
  29061. height: math.unit(10, "feet"),
  29062. default: true
  29063. },
  29064. {
  29065. name: "Macro",
  29066. height: math.unit(500, "feet")
  29067. },
  29068. ]
  29069. ))
  29070. characterMakers.push(() => makeCharacter(
  29071. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29072. {
  29073. front: {
  29074. height: math.unit(7 + 6.451 / 12, "feet"),
  29075. weight: math.unit(310, "lb"),
  29076. name: "Front",
  29077. image: {
  29078. source: "./media/characters/dahlia-verrick/front.svg",
  29079. extra: 1488 / 1365,
  29080. bottom: 6.2 / 1495
  29081. }
  29082. },
  29083. back: {
  29084. height: math.unit(7 + 6.451 / 12, "feet"),
  29085. weight: math.unit(310, "lb"),
  29086. name: "Back",
  29087. image: {
  29088. source: "./media/characters/dahlia-verrick/back.svg",
  29089. extra: 1472 / 1351,
  29090. bottom: 5.28 / 1477
  29091. }
  29092. },
  29093. frontBusiness: {
  29094. height: math.unit(7 + 6.451 / 12, "feet"),
  29095. weight: math.unit(200, "lb"),
  29096. name: "Front (Business)",
  29097. image: {
  29098. source: "./media/characters/dahlia-verrick/front-business.svg",
  29099. extra: 1478 / 1381,
  29100. bottom: 5.5 / 1484
  29101. }
  29102. },
  29103. frontCasual: {
  29104. height: math.unit(7 + 6.451 / 12, "feet"),
  29105. weight: math.unit(200, "lb"),
  29106. name: "Front (Casual)",
  29107. image: {
  29108. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29109. extra: 1478 / 1381,
  29110. bottom: 5.5 / 1484
  29111. }
  29112. },
  29113. },
  29114. [
  29115. {
  29116. name: "Travel-Sized",
  29117. height: math.unit(7.45, "inches")
  29118. },
  29119. {
  29120. name: "Normal",
  29121. height: math.unit(7 + 6.451 / 12, "feet"),
  29122. default: true
  29123. },
  29124. {
  29125. name: "Hitting the Town",
  29126. height: math.unit(37 + 8 / 12, "feet")
  29127. },
  29128. {
  29129. name: "Stomp in the Suburbs",
  29130. height: math.unit(964 + 9.728 / 12, "feet")
  29131. },
  29132. {
  29133. name: "Sit on the City",
  29134. height: math.unit(61747 + 10.592 / 12, "feet")
  29135. },
  29136. {
  29137. name: "Glomp the Globe",
  29138. height: math.unit(252919327 + 4.832 / 12, "feet")
  29139. },
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29144. {
  29145. front: {
  29146. height: math.unit(6 + 4 / 12, "feet"),
  29147. weight: math.unit(320, "lb"),
  29148. name: "Front",
  29149. image: {
  29150. source: "./media/characters/balina-mahigan/front.svg",
  29151. extra: 447 / 428,
  29152. bottom: 18 / 466
  29153. }
  29154. },
  29155. back: {
  29156. height: math.unit(6 + 4 / 12, "feet"),
  29157. weight: math.unit(320, "lb"),
  29158. name: "Back",
  29159. image: {
  29160. source: "./media/characters/balina-mahigan/back.svg",
  29161. extra: 445 / 428,
  29162. bottom: 4.07 / 448
  29163. }
  29164. },
  29165. arm: {
  29166. height: math.unit(1.88, "feet"),
  29167. name: "Arm",
  29168. image: {
  29169. source: "./media/characters/balina-mahigan/arm.svg"
  29170. }
  29171. },
  29172. backPort: {
  29173. height: math.unit(0.685, "feet"),
  29174. name: "Back Port",
  29175. image: {
  29176. source: "./media/characters/balina-mahigan/back-port.svg"
  29177. }
  29178. },
  29179. hoofpaw: {
  29180. height: math.unit(1.41, "feet"),
  29181. name: "Hoofpaw",
  29182. image: {
  29183. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29184. }
  29185. },
  29186. leftHandBack: {
  29187. height: math.unit(0.938, "feet"),
  29188. name: "Left Hand (Back)",
  29189. image: {
  29190. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29191. }
  29192. },
  29193. leftHandFront: {
  29194. height: math.unit(0.938, "feet"),
  29195. name: "Left Hand (Front)",
  29196. image: {
  29197. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29198. }
  29199. },
  29200. rightHandBack: {
  29201. height: math.unit(0.95, "feet"),
  29202. name: "Right Hand (Back)",
  29203. image: {
  29204. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29205. }
  29206. },
  29207. rightHandFront: {
  29208. height: math.unit(0.95, "feet"),
  29209. name: "Right Hand (Front)",
  29210. image: {
  29211. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29212. }
  29213. },
  29214. },
  29215. [
  29216. {
  29217. name: "Normal",
  29218. height: math.unit(6 + 4 / 12, "feet"),
  29219. default: true
  29220. },
  29221. ]
  29222. ))
  29223. characterMakers.push(() => makeCharacter(
  29224. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29225. {
  29226. front: {
  29227. height: math.unit(6, "feet"),
  29228. weight: math.unit(320, "lb"),
  29229. name: "Front",
  29230. image: {
  29231. source: "./media/characters/balina-mejeri/front.svg",
  29232. extra: 517 / 488,
  29233. bottom: 44.2 / 561
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "Normal",
  29240. height: math.unit(6 + 4 / 12, "feet")
  29241. },
  29242. {
  29243. name: "Business",
  29244. height: math.unit(155, "feet"),
  29245. default: true
  29246. },
  29247. ]
  29248. ))
  29249. characterMakers.push(() => makeCharacter(
  29250. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29251. {
  29252. kneeling: {
  29253. height: math.unit(6 + 4 / 12, "feet"),
  29254. weight: math.unit(300 * 20, "lb"),
  29255. name: "Kneeling",
  29256. image: {
  29257. source: "./media/characters/balbarian/kneeling.svg",
  29258. extra: 922 / 862,
  29259. bottom: 42.4 / 965
  29260. }
  29261. },
  29262. },
  29263. [
  29264. {
  29265. name: "Normal",
  29266. height: math.unit(6 + 4 / 12, "feet")
  29267. },
  29268. {
  29269. name: "Treasured",
  29270. height: math.unit(18 + 9 / 12, "feet"),
  29271. default: true
  29272. },
  29273. {
  29274. name: "Macro",
  29275. height: math.unit(900, "feet")
  29276. },
  29277. ]
  29278. ))
  29279. characterMakers.push(() => makeCharacter(
  29280. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29281. {
  29282. front: {
  29283. height: math.unit(6 + 4 / 12, "feet"),
  29284. weight: math.unit(325, "lb"),
  29285. name: "Front",
  29286. image: {
  29287. source: "./media/characters/balina-amarini/front.svg",
  29288. extra: 415 / 403,
  29289. bottom: 19 / 433.4
  29290. }
  29291. },
  29292. back: {
  29293. height: math.unit(6 + 4 / 12, "feet"),
  29294. weight: math.unit(325, "lb"),
  29295. name: "Back",
  29296. image: {
  29297. source: "./media/characters/balina-amarini/back.svg",
  29298. extra: 415 / 403,
  29299. bottom: 13.5 / 432
  29300. }
  29301. },
  29302. overdrive: {
  29303. height: math.unit(6 + 4 / 12, "feet"),
  29304. weight: math.unit(400, "lb"),
  29305. name: "Overdrive",
  29306. image: {
  29307. source: "./media/characters/balina-amarini/overdrive.svg",
  29308. extra: 269 / 259,
  29309. bottom: 12 / 282
  29310. }
  29311. },
  29312. },
  29313. [
  29314. {
  29315. name: "Boom",
  29316. height: math.unit(9 + 10 / 12, "feet"),
  29317. default: true
  29318. },
  29319. {
  29320. name: "Macro",
  29321. height: math.unit(280, "feet")
  29322. },
  29323. ]
  29324. ))
  29325. characterMakers.push(() => makeCharacter(
  29326. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29327. {
  29328. goddess: {
  29329. height: math.unit(600, "feet"),
  29330. weight: math.unit(2000000, "tons"),
  29331. name: "Goddess",
  29332. image: {
  29333. source: "./media/characters/lady-kubwa/goddess.svg",
  29334. extra: 1240.5 / 1223,
  29335. bottom: 22 / 1263
  29336. }
  29337. },
  29338. goddesser: {
  29339. height: math.unit(900, "feet"),
  29340. weight: math.unit(20000000, "lb"),
  29341. name: "Goddess-er",
  29342. image: {
  29343. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29344. extra: 899 / 888,
  29345. bottom: 12.6 / 912
  29346. }
  29347. },
  29348. },
  29349. [
  29350. {
  29351. name: "Macro",
  29352. height: math.unit(600, "feet"),
  29353. default: true
  29354. },
  29355. {
  29356. name: "Megamacro",
  29357. height: math.unit(250, "miles")
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29363. {
  29364. front: {
  29365. height: math.unit(7 + 7 / 12, "feet"),
  29366. weight: math.unit(250, "lb"),
  29367. name: "Front",
  29368. image: {
  29369. source: "./media/characters/tala-grovehorn/front.svg",
  29370. extra: 2636 / 2525,
  29371. bottom: 147 / 2781
  29372. }
  29373. },
  29374. back: {
  29375. height: math.unit(7 + 7 / 12, "feet"),
  29376. weight: math.unit(250, "lb"),
  29377. name: "Back",
  29378. image: {
  29379. source: "./media/characters/tala-grovehorn/back.svg",
  29380. extra: 2635 / 2539,
  29381. bottom: 100 / 2732.8
  29382. }
  29383. },
  29384. mouth: {
  29385. height: math.unit(1.15, "feet"),
  29386. name: "Mouth",
  29387. image: {
  29388. source: "./media/characters/tala-grovehorn/mouth.svg"
  29389. }
  29390. },
  29391. dick: {
  29392. height: math.unit(2.36, "feet"),
  29393. name: "Dick",
  29394. image: {
  29395. source: "./media/characters/tala-grovehorn/dick.svg"
  29396. }
  29397. },
  29398. slit: {
  29399. height: math.unit(0.61, "feet"),
  29400. name: "Slit",
  29401. image: {
  29402. source: "./media/characters/tala-grovehorn/slit.svg"
  29403. }
  29404. },
  29405. },
  29406. [
  29407. ]
  29408. ))
  29409. characterMakers.push(() => makeCharacter(
  29410. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29411. {
  29412. front: {
  29413. height: math.unit(7 + 7 / 12, "feet"),
  29414. weight: math.unit(225, "lb"),
  29415. name: "Front",
  29416. image: {
  29417. source: "./media/characters/epona/front.svg",
  29418. extra: 2445 / 2290,
  29419. bottom: 251 / 2696
  29420. }
  29421. },
  29422. back: {
  29423. height: math.unit(7 + 7 / 12, "feet"),
  29424. weight: math.unit(225, "lb"),
  29425. name: "Back",
  29426. image: {
  29427. source: "./media/characters/epona/back.svg",
  29428. extra: 2546 / 2408,
  29429. bottom: 44 / 2589
  29430. }
  29431. },
  29432. genitals: {
  29433. height: math.unit(1.5, "feet"),
  29434. name: "Genitals",
  29435. image: {
  29436. source: "./media/characters/epona/genitals.svg"
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Normal",
  29443. height: math.unit(7 + 7 / 12, "feet"),
  29444. default: true
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29450. {
  29451. front: {
  29452. height: math.unit(7, "feet"),
  29453. weight: math.unit(518, "lb"),
  29454. name: "Front",
  29455. image: {
  29456. source: "./media/characters/avia-bloodbourn/front.svg",
  29457. extra: 1466 / 1350,
  29458. bottom: 65 / 1527
  29459. }
  29460. },
  29461. },
  29462. [
  29463. ]
  29464. ))
  29465. characterMakers.push(() => makeCharacter(
  29466. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29467. {
  29468. front: {
  29469. height: math.unit(9.35, "feet"),
  29470. weight: math.unit(600, "lb"),
  29471. name: "Front",
  29472. image: {
  29473. source: "./media/characters/amera/front.svg",
  29474. extra: 891 / 818,
  29475. bottom: 30 / 922.7
  29476. }
  29477. },
  29478. back: {
  29479. height: math.unit(9.35, "feet"),
  29480. weight: math.unit(600, "lb"),
  29481. name: "Back",
  29482. image: {
  29483. source: "./media/characters/amera/back.svg",
  29484. extra: 876 / 824,
  29485. bottom: 6.8 / 884
  29486. }
  29487. },
  29488. dick: {
  29489. height: math.unit(2.14, "feet"),
  29490. name: "Dick",
  29491. image: {
  29492. source: "./media/characters/amera/dick.svg"
  29493. }
  29494. },
  29495. },
  29496. [
  29497. {
  29498. name: "Normal",
  29499. height: math.unit(9.35, "feet"),
  29500. default: true
  29501. },
  29502. ]
  29503. ))
  29504. characterMakers.push(() => makeCharacter(
  29505. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29506. {
  29507. kneeling: {
  29508. height: math.unit(3 + 4 / 12, "feet"),
  29509. weight: math.unit(90, "lb"),
  29510. name: "Kneeling",
  29511. image: {
  29512. source: "./media/characters/rosewen/kneeling.svg",
  29513. extra: 1835 / 1571,
  29514. bottom: 27.7 / 1862
  29515. }
  29516. },
  29517. },
  29518. [
  29519. {
  29520. name: "Normal",
  29521. height: math.unit(3 + 4 / 12, "feet"),
  29522. default: true
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29528. {
  29529. front: {
  29530. height: math.unit(5 + 10 / 12, "feet"),
  29531. weight: math.unit(200, "lb"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/sabah/front.svg",
  29535. extra: 849 / 763,
  29536. bottom: 33.9 / 881
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Normal",
  29543. height: math.unit(5 + 10 / 12, "feet"),
  29544. default: true
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29550. {
  29551. front: {
  29552. height: math.unit(3 + 5 / 12, "feet"),
  29553. weight: math.unit(40, "kg"),
  29554. name: "Front",
  29555. image: {
  29556. source: "./media/characters/purple-flame/front.svg",
  29557. extra: 1577 / 1412,
  29558. bottom: 97 / 1694
  29559. }
  29560. },
  29561. frontDressed: {
  29562. height: math.unit(3 + 5 / 12, "feet"),
  29563. weight: math.unit(40, "kg"),
  29564. name: "Front (Dressed)",
  29565. image: {
  29566. source: "./media/characters/purple-flame/front-dressed.svg",
  29567. extra: 1577 / 1412,
  29568. bottom: 97 / 1694
  29569. }
  29570. },
  29571. headphones: {
  29572. height: math.unit(0.85, "feet"),
  29573. name: "Headphones",
  29574. image: {
  29575. source: "./media/characters/purple-flame/headphones.svg"
  29576. }
  29577. },
  29578. },
  29579. [
  29580. {
  29581. name: "Really Small",
  29582. height: math.unit(5, "cm")
  29583. },
  29584. {
  29585. name: "Micro",
  29586. height: math.unit(1 + 5 / 12, "feet")
  29587. },
  29588. {
  29589. name: "Normal",
  29590. height: math.unit(3 + 5 / 12, "feet"),
  29591. default: true
  29592. },
  29593. {
  29594. name: "Minimacro",
  29595. height: math.unit(125, "feet")
  29596. },
  29597. {
  29598. name: "Macro",
  29599. height: math.unit(0.5, "miles")
  29600. },
  29601. {
  29602. name: "Megamacro",
  29603. height: math.unit(50, "miles")
  29604. },
  29605. {
  29606. name: "Gigantic",
  29607. height: math.unit(750, "miles")
  29608. },
  29609. {
  29610. name: "Planetary",
  29611. height: math.unit(15000, "miles")
  29612. },
  29613. ]
  29614. ))
  29615. characterMakers.push(() => makeCharacter(
  29616. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29617. {
  29618. front: {
  29619. height: math.unit(14, "feet"),
  29620. weight: math.unit(959, "lb"),
  29621. name: "Front",
  29622. image: {
  29623. source: "./media/characters/arsenal/front.svg",
  29624. extra: 2357 / 2157,
  29625. bottom: 93 / 2458
  29626. }
  29627. },
  29628. },
  29629. [
  29630. {
  29631. name: "Normal",
  29632. height: math.unit(14, "feet"),
  29633. default: true
  29634. },
  29635. ]
  29636. ))
  29637. characterMakers.push(() => makeCharacter(
  29638. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29639. {
  29640. front: {
  29641. height: math.unit(6, "feet"),
  29642. weight: math.unit(150, "lb"),
  29643. name: "Front",
  29644. image: {
  29645. source: "./media/characters/adira/front.svg",
  29646. extra: 2121/2013,
  29647. bottom: 206/2327
  29648. }
  29649. },
  29650. },
  29651. [
  29652. {
  29653. name: "Micro",
  29654. height: math.unit(4, "inches"),
  29655. default: true
  29656. },
  29657. {
  29658. name: "Macro",
  29659. height: math.unit(50, "feet")
  29660. },
  29661. ]
  29662. ))
  29663. characterMakers.push(() => makeCharacter(
  29664. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29665. {
  29666. front: {
  29667. height: math.unit(16, "feet"),
  29668. weight: math.unit(1000, "lb"),
  29669. name: "Front",
  29670. image: {
  29671. source: "./media/characters/grim/front.svg",
  29672. extra: 622 / 614,
  29673. bottom: 18.1 / 642
  29674. }
  29675. },
  29676. back: {
  29677. height: math.unit(16, "feet"),
  29678. weight: math.unit(1000, "lb"),
  29679. name: "Back",
  29680. image: {
  29681. source: "./media/characters/grim/back.svg",
  29682. extra: 610.6 / 602,
  29683. bottom: 40.8 / 652
  29684. }
  29685. },
  29686. hunched: {
  29687. height: math.unit(9.75, "feet"),
  29688. weight: math.unit(1000, "lb"),
  29689. name: "Hunched",
  29690. image: {
  29691. source: "./media/characters/grim/hunched.svg",
  29692. extra: 304 / 297,
  29693. bottom: 35.4 / 394
  29694. }
  29695. },
  29696. },
  29697. [
  29698. {
  29699. name: "Normal",
  29700. height: math.unit(16, "feet"),
  29701. default: true
  29702. },
  29703. ]
  29704. ))
  29705. characterMakers.push(() => makeCharacter(
  29706. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29707. {
  29708. front: {
  29709. height: math.unit(2.3, "meters"),
  29710. weight: math.unit(300, "lb"),
  29711. name: "Front",
  29712. image: {
  29713. source: "./media/characters/sinja/front-sfw.svg",
  29714. extra: 1393 / 1294,
  29715. bottom: 70 / 1463
  29716. }
  29717. },
  29718. frontNsfw: {
  29719. height: math.unit(2.3, "meters"),
  29720. weight: math.unit(300, "lb"),
  29721. name: "Front (NSFW)",
  29722. image: {
  29723. source: "./media/characters/sinja/front-nsfw.svg",
  29724. extra: 1393 / 1294,
  29725. bottom: 70 / 1463
  29726. }
  29727. },
  29728. back: {
  29729. height: math.unit(2.3, "meters"),
  29730. weight: math.unit(300, "lb"),
  29731. name: "Back",
  29732. image: {
  29733. source: "./media/characters/sinja/back.svg",
  29734. extra: 1393 / 1294,
  29735. bottom: 70 / 1463
  29736. }
  29737. },
  29738. head: {
  29739. height: math.unit(1.771, "feet"),
  29740. name: "Head",
  29741. image: {
  29742. source: "./media/characters/sinja/head.svg"
  29743. }
  29744. },
  29745. slit: {
  29746. height: math.unit(0.8, "feet"),
  29747. name: "Slit",
  29748. image: {
  29749. source: "./media/characters/sinja/slit.svg"
  29750. }
  29751. },
  29752. },
  29753. [
  29754. {
  29755. name: "Normal",
  29756. height: math.unit(2.3, "meters")
  29757. },
  29758. {
  29759. name: "Macro",
  29760. height: math.unit(91, "meters"),
  29761. default: true
  29762. },
  29763. {
  29764. name: "Megamacro",
  29765. height: math.unit(91440, "meters")
  29766. },
  29767. {
  29768. name: "Gigamacro",
  29769. height: math.unit(60960000, "meters")
  29770. },
  29771. {
  29772. name: "Teramacro",
  29773. height: math.unit(9144000000, "meters")
  29774. },
  29775. ]
  29776. ))
  29777. characterMakers.push(() => makeCharacter(
  29778. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29779. {
  29780. front: {
  29781. height: math.unit(1.7, "meters"),
  29782. weight: math.unit(130, "lb"),
  29783. name: "Front",
  29784. image: {
  29785. source: "./media/characters/kyu/front.svg",
  29786. extra: 415 / 395,
  29787. bottom: 5 / 420
  29788. }
  29789. },
  29790. head: {
  29791. height: math.unit(1.75, "feet"),
  29792. name: "Head",
  29793. image: {
  29794. source: "./media/characters/kyu/head.svg"
  29795. }
  29796. },
  29797. foot: {
  29798. height: math.unit(0.81, "feet"),
  29799. name: "Foot",
  29800. image: {
  29801. source: "./media/characters/kyu/foot.svg"
  29802. }
  29803. },
  29804. },
  29805. [
  29806. {
  29807. name: "Normal",
  29808. height: math.unit(1.7, "meters")
  29809. },
  29810. {
  29811. name: "Macro",
  29812. height: math.unit(131, "feet"),
  29813. default: true
  29814. },
  29815. {
  29816. name: "Megamacro",
  29817. height: math.unit(91440, "meters")
  29818. },
  29819. {
  29820. name: "Gigamacro",
  29821. height: math.unit(60960000, "meters")
  29822. },
  29823. {
  29824. name: "Teramacro",
  29825. height: math.unit(9144000000, "meters")
  29826. },
  29827. ]
  29828. ))
  29829. characterMakers.push(() => makeCharacter(
  29830. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29831. {
  29832. front: {
  29833. height: math.unit(7 + 1 / 12, "feet"),
  29834. weight: math.unit(250, "lb"),
  29835. name: "Front",
  29836. image: {
  29837. source: "./media/characters/joey/front.svg",
  29838. extra: 1791 / 1537,
  29839. bottom: 28 / 1816
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Micro",
  29846. height: math.unit(3, "inches")
  29847. },
  29848. {
  29849. name: "Normal",
  29850. height: math.unit(7 + 1 / 12, "feet"),
  29851. default: true
  29852. },
  29853. ]
  29854. ))
  29855. characterMakers.push(() => makeCharacter(
  29856. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29857. {
  29858. front: {
  29859. height: math.unit(165, "cm"),
  29860. weight: math.unit(140, "lb"),
  29861. name: "Front",
  29862. image: {
  29863. source: "./media/characters/sam-evans/front.svg",
  29864. extra: 3417 / 3230,
  29865. bottom: 41.3 / 3417
  29866. }
  29867. },
  29868. frontSixTails: {
  29869. height: math.unit(165, "cm"),
  29870. weight: math.unit(140, "lb"),
  29871. name: "Front-six-tails",
  29872. image: {
  29873. source: "./media/characters/sam-evans/front-six-tails.svg",
  29874. extra: 3417 / 3230,
  29875. bottom: 41.3 / 3417
  29876. }
  29877. },
  29878. back: {
  29879. height: math.unit(165, "cm"),
  29880. weight: math.unit(140, "lb"),
  29881. name: "Back",
  29882. image: {
  29883. source: "./media/characters/sam-evans/back.svg",
  29884. extra: 3227 / 3032,
  29885. bottom: 6.8 / 3234
  29886. }
  29887. },
  29888. face: {
  29889. height: math.unit(0.68, "feet"),
  29890. name: "Face",
  29891. image: {
  29892. source: "./media/characters/sam-evans/face.svg"
  29893. }
  29894. },
  29895. },
  29896. [
  29897. {
  29898. name: "Normal",
  29899. height: math.unit(165, "cm"),
  29900. default: true
  29901. },
  29902. {
  29903. name: "Macro",
  29904. height: math.unit(100, "meters")
  29905. },
  29906. {
  29907. name: "Macro+",
  29908. height: math.unit(800, "meters")
  29909. },
  29910. {
  29911. name: "Macro++",
  29912. height: math.unit(3, "km")
  29913. },
  29914. {
  29915. name: "Macro+++",
  29916. height: math.unit(30, "km")
  29917. },
  29918. ]
  29919. ))
  29920. characterMakers.push(() => makeCharacter(
  29921. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29922. {
  29923. front: {
  29924. height: math.unit(10, "feet"),
  29925. weight: math.unit(750, "lb"),
  29926. name: "Front",
  29927. image: {
  29928. source: "./media/characters/juliet-a/front.svg",
  29929. extra: 1766 / 1720,
  29930. bottom: 43 / 1809
  29931. }
  29932. },
  29933. back: {
  29934. height: math.unit(10, "feet"),
  29935. weight: math.unit(750, "lb"),
  29936. name: "Back",
  29937. image: {
  29938. source: "./media/characters/juliet-a/back.svg",
  29939. extra: 1781 / 1734,
  29940. bottom: 35 / 1810,
  29941. }
  29942. },
  29943. },
  29944. [
  29945. {
  29946. name: "Normal",
  29947. height: math.unit(10, "feet"),
  29948. default: true
  29949. },
  29950. {
  29951. name: "Dragon Form",
  29952. height: math.unit(250, "feet")
  29953. },
  29954. {
  29955. name: "Macro",
  29956. height: math.unit(1000, "feet")
  29957. },
  29958. {
  29959. name: "Megamacro",
  29960. height: math.unit(10000, "feet")
  29961. }
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29966. {
  29967. regular: {
  29968. height: math.unit(7 + 3 / 12, "feet"),
  29969. weight: math.unit(260, "lb"),
  29970. name: "Regular",
  29971. image: {
  29972. source: "./media/characters/wild/regular.svg",
  29973. extra: 97.45 / 92,
  29974. bottom: 6.8 / 104.3
  29975. }
  29976. },
  29977. biggums: {
  29978. height: math.unit(8 + 6 / 12, "feet"),
  29979. weight: math.unit(425, "lb"),
  29980. name: "Biggums",
  29981. image: {
  29982. source: "./media/characters/wild/biggums.svg",
  29983. extra: 97.45 / 92,
  29984. bottom: 7.5 / 132.34
  29985. }
  29986. },
  29987. mawRegular: {
  29988. height: math.unit(1.24, "feet"),
  29989. name: "Maw (Regular)",
  29990. image: {
  29991. source: "./media/characters/wild/maw.svg"
  29992. }
  29993. },
  29994. mawBiggums: {
  29995. height: math.unit(1.47, "feet"),
  29996. name: "Maw (Biggums)",
  29997. image: {
  29998. source: "./media/characters/wild/maw.svg"
  29999. }
  30000. },
  30001. },
  30002. [
  30003. {
  30004. name: "Normal",
  30005. height: math.unit(7 + 3 / 12, "feet"),
  30006. default: true
  30007. },
  30008. ]
  30009. ))
  30010. characterMakers.push(() => makeCharacter(
  30011. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30012. {
  30013. front: {
  30014. height: math.unit(2.5, "meters"),
  30015. weight: math.unit(200, "kg"),
  30016. name: "Front",
  30017. image: {
  30018. source: "./media/characters/vidar/front.svg",
  30019. extra: 2994 / 2795,
  30020. bottom: 56 / 3061
  30021. }
  30022. },
  30023. back: {
  30024. height: math.unit(2.5, "meters"),
  30025. weight: math.unit(200, "kg"),
  30026. name: "Back",
  30027. image: {
  30028. source: "./media/characters/vidar/back.svg",
  30029. extra: 3131 / 2928,
  30030. bottom: 13.5 / 3141.5
  30031. }
  30032. },
  30033. feral: {
  30034. height: math.unit(2.5, "meters"),
  30035. weight: math.unit(2000, "kg"),
  30036. name: "Feral",
  30037. image: {
  30038. source: "./media/characters/vidar/feral.svg",
  30039. extra: 2790 / 1765,
  30040. bottom: 6 / 2796
  30041. }
  30042. },
  30043. },
  30044. [
  30045. {
  30046. name: "Normal",
  30047. height: math.unit(2.5, "meters"),
  30048. default: true
  30049. },
  30050. {
  30051. name: "Macro",
  30052. height: math.unit(100, "meters")
  30053. },
  30054. ]
  30055. ))
  30056. characterMakers.push(() => makeCharacter(
  30057. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30058. {
  30059. front: {
  30060. height: math.unit(5 + 9 / 12, "feet"),
  30061. weight: math.unit(120, "lb"),
  30062. name: "Front",
  30063. image: {
  30064. source: "./media/characters/ash/front.svg",
  30065. extra: 2189 / 1961,
  30066. bottom: 5.2 / 2194
  30067. }
  30068. },
  30069. },
  30070. [
  30071. {
  30072. name: "Normal",
  30073. height: math.unit(5 + 9 / 12, "feet"),
  30074. default: true
  30075. },
  30076. ]
  30077. ))
  30078. characterMakers.push(() => makeCharacter(
  30079. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30080. {
  30081. front: {
  30082. height: math.unit(9, "feet"),
  30083. weight: math.unit(10000, "lb"),
  30084. name: "Front",
  30085. image: {
  30086. source: "./media/characters/gygabite/front.svg",
  30087. bottom: 31.7 / 537.8,
  30088. extra: 505 / 370
  30089. }
  30090. },
  30091. },
  30092. [
  30093. {
  30094. name: "Normal",
  30095. height: math.unit(9, "feet"),
  30096. default: true
  30097. },
  30098. ]
  30099. ))
  30100. characterMakers.push(() => makeCharacter(
  30101. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30102. {
  30103. front: {
  30104. height: math.unit(12, "feet"),
  30105. weight: math.unit(4000, "lb"),
  30106. name: "Front",
  30107. image: {
  30108. source: "./media/characters/p0tat0/front.svg",
  30109. extra: 1065 / 921,
  30110. bottom: 55.7 / 1121.25
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Normal",
  30117. height: math.unit(12, "feet"),
  30118. default: true
  30119. },
  30120. ]
  30121. ))
  30122. characterMakers.push(() => makeCharacter(
  30123. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30124. {
  30125. side: {
  30126. height: math.unit(6.5, "feet"),
  30127. weight: math.unit(800, "lb"),
  30128. name: "Side",
  30129. image: {
  30130. source: "./media/characters/dusk/side.svg",
  30131. extra: 615 / 373,
  30132. bottom: 53 / 664
  30133. }
  30134. },
  30135. sitting: {
  30136. height: math.unit(7, "feet"),
  30137. weight: math.unit(800, "lb"),
  30138. name: "Sitting",
  30139. image: {
  30140. source: "./media/characters/dusk/sitting.svg",
  30141. extra: 753 / 425,
  30142. bottom: 33 / 774
  30143. }
  30144. },
  30145. head: {
  30146. height: math.unit(6.1, "feet"),
  30147. name: "Head",
  30148. image: {
  30149. source: "./media/characters/dusk/head.svg"
  30150. }
  30151. },
  30152. },
  30153. [
  30154. {
  30155. name: "Normal",
  30156. height: math.unit(7, "feet"),
  30157. default: true
  30158. },
  30159. ]
  30160. ))
  30161. characterMakers.push(() => makeCharacter(
  30162. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30163. {
  30164. front: {
  30165. height: math.unit(15, "feet"),
  30166. weight: math.unit(7000, "lb"),
  30167. name: "Front",
  30168. image: {
  30169. source: "./media/characters/jay-direwolf/front.svg",
  30170. extra: 1810 / 1732,
  30171. bottom: 66 / 1892
  30172. }
  30173. },
  30174. },
  30175. [
  30176. {
  30177. name: "Normal",
  30178. height: math.unit(15, "feet"),
  30179. default: true
  30180. },
  30181. ]
  30182. ))
  30183. characterMakers.push(() => makeCharacter(
  30184. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30185. {
  30186. front: {
  30187. height: math.unit(4 + 9 / 12, "feet"),
  30188. weight: math.unit(130, "lb"),
  30189. name: "Front",
  30190. image: {
  30191. source: "./media/characters/anchovie/front.svg",
  30192. extra: 382 / 350,
  30193. bottom: 25 / 409
  30194. }
  30195. },
  30196. back: {
  30197. height: math.unit(4 + 9 / 12, "feet"),
  30198. weight: math.unit(130, "lb"),
  30199. name: "Back",
  30200. image: {
  30201. source: "./media/characters/anchovie/back.svg",
  30202. extra: 385 / 352,
  30203. bottom: 16.6 / 402
  30204. }
  30205. },
  30206. frontDressed: {
  30207. height: math.unit(4 + 9 / 12, "feet"),
  30208. weight: math.unit(130, "lb"),
  30209. name: "Front (Dressed)",
  30210. image: {
  30211. source: "./media/characters/anchovie/front-dressed.svg",
  30212. extra: 382 / 350,
  30213. bottom: 25 / 409
  30214. }
  30215. },
  30216. backDressed: {
  30217. height: math.unit(4 + 9 / 12, "feet"),
  30218. weight: math.unit(130, "lb"),
  30219. name: "Back (Dressed)",
  30220. image: {
  30221. source: "./media/characters/anchovie/back-dressed.svg",
  30222. extra: 385 / 352,
  30223. bottom: 16.6 / 402
  30224. }
  30225. },
  30226. },
  30227. [
  30228. {
  30229. name: "Micro",
  30230. height: math.unit(6.4, "inches")
  30231. },
  30232. {
  30233. name: "Normal",
  30234. height: math.unit(4 + 9 / 12, "feet"),
  30235. default: true
  30236. },
  30237. ]
  30238. ))
  30239. characterMakers.push(() => makeCharacter(
  30240. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30241. {
  30242. front: {
  30243. height: math.unit(2, "meters"),
  30244. weight: math.unit(180, "lb"),
  30245. name: "Front",
  30246. image: {
  30247. source: "./media/characters/acidrenamon/front.svg",
  30248. extra: 987 / 890,
  30249. bottom: 22.8 / 1009
  30250. }
  30251. },
  30252. back: {
  30253. height: math.unit(2, "meters"),
  30254. weight: math.unit(180, "lb"),
  30255. name: "Back",
  30256. image: {
  30257. source: "./media/characters/acidrenamon/back.svg",
  30258. extra: 983 / 891,
  30259. bottom: 8.4 / 992
  30260. }
  30261. },
  30262. head: {
  30263. height: math.unit(1.92, "feet"),
  30264. name: "Head",
  30265. image: {
  30266. source: "./media/characters/acidrenamon/head.svg"
  30267. }
  30268. },
  30269. rump: {
  30270. height: math.unit(1.72, "feet"),
  30271. name: "Rump",
  30272. image: {
  30273. source: "./media/characters/acidrenamon/rump.svg"
  30274. }
  30275. },
  30276. tail: {
  30277. height: math.unit(4.2, "feet"),
  30278. name: "Tail",
  30279. image: {
  30280. source: "./media/characters/acidrenamon/tail.svg"
  30281. }
  30282. },
  30283. },
  30284. [
  30285. {
  30286. name: "Normal",
  30287. height: math.unit(2, "meters"),
  30288. default: true
  30289. },
  30290. {
  30291. name: "Minimacro",
  30292. height: math.unit(7, "meters")
  30293. },
  30294. {
  30295. name: "Macro",
  30296. height: math.unit(200, "meters")
  30297. },
  30298. {
  30299. name: "Gigamacro",
  30300. height: math.unit(0.2, "earths")
  30301. },
  30302. ]
  30303. ))
  30304. characterMakers.push(() => makeCharacter(
  30305. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30306. {
  30307. front: {
  30308. height: math.unit(152, "feet"),
  30309. name: "Front",
  30310. image: {
  30311. source: "./media/characters/kenzie-lee/front.svg",
  30312. extra: 1869/1774,
  30313. bottom: 128/1997
  30314. }
  30315. },
  30316. side: {
  30317. height: math.unit(86, "feet"),
  30318. name: "Side",
  30319. image: {
  30320. source: "./media/characters/kenzie-lee/side.svg",
  30321. extra: 930/815,
  30322. bottom: 177/1107
  30323. }
  30324. },
  30325. paw: {
  30326. height: math.unit(15, "feet"),
  30327. name: "Paw",
  30328. image: {
  30329. source: "./media/characters/kenzie-lee/paw.svg"
  30330. }
  30331. },
  30332. },
  30333. [
  30334. {
  30335. name: "Kenzie Flea",
  30336. height: math.unit(2, "mm"),
  30337. default: true
  30338. },
  30339. {
  30340. name: "Micro",
  30341. height: math.unit(2, "inches")
  30342. },
  30343. {
  30344. name: "Normal",
  30345. height: math.unit(152, "feet")
  30346. },
  30347. {
  30348. name: "Megamacro",
  30349. height: math.unit(7, "miles")
  30350. },
  30351. {
  30352. name: "Gigamacro",
  30353. height: math.unit(8000, "miles")
  30354. },
  30355. ]
  30356. ))
  30357. characterMakers.push(() => makeCharacter(
  30358. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30359. {
  30360. front: {
  30361. height: math.unit(6, "feet"),
  30362. name: "Front",
  30363. image: {
  30364. source: "./media/characters/withers/front.svg",
  30365. extra: 1935/1760,
  30366. bottom: 72/2007
  30367. }
  30368. },
  30369. back: {
  30370. height: math.unit(6, "feet"),
  30371. name: "Back",
  30372. image: {
  30373. source: "./media/characters/withers/back.svg",
  30374. extra: 1944/1792,
  30375. bottom: 12/1956
  30376. }
  30377. },
  30378. dressed: {
  30379. height: math.unit(6, "feet"),
  30380. name: "Dressed",
  30381. image: {
  30382. source: "./media/characters/withers/dressed.svg",
  30383. extra: 1937/1765,
  30384. bottom: 73/2010
  30385. }
  30386. },
  30387. phase1: {
  30388. height: math.unit(1.1, "feet"),
  30389. name: "Phase 1",
  30390. image: {
  30391. source: "./media/characters/withers/phase-1.svg",
  30392. extra: 1885/1232,
  30393. bottom: 0/1885
  30394. }
  30395. },
  30396. phase2: {
  30397. height: math.unit(1.05, "feet"),
  30398. name: "Phase 2",
  30399. image: {
  30400. source: "./media/characters/withers/phase-2.svg",
  30401. extra: 1792/1090,
  30402. bottom: 0/1792
  30403. }
  30404. },
  30405. partyWipe: {
  30406. height: math.unit(1.1, "feet"),
  30407. name: "Party Wipe",
  30408. image: {
  30409. source: "./media/characters/withers/party-wipe.svg",
  30410. extra: 1864/1207,
  30411. bottom: 0/1864
  30412. }
  30413. },
  30414. },
  30415. [
  30416. {
  30417. name: "Macro",
  30418. height: math.unit(167, "feet"),
  30419. default: true
  30420. },
  30421. {
  30422. name: "Megamacro",
  30423. height: math.unit(15, "miles")
  30424. }
  30425. ]
  30426. ))
  30427. characterMakers.push(() => makeCharacter(
  30428. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30429. {
  30430. front: {
  30431. height: math.unit(6 + 7 / 12, "feet"),
  30432. weight: math.unit(250, "lb"),
  30433. name: "Front",
  30434. image: {
  30435. source: "./media/characters/nemoskii/front.svg",
  30436. extra: 2270 / 1734,
  30437. bottom: 86 / 2354
  30438. }
  30439. },
  30440. back: {
  30441. height: math.unit(6 + 7 / 12, "feet"),
  30442. weight: math.unit(250, "lb"),
  30443. name: "Back",
  30444. image: {
  30445. source: "./media/characters/nemoskii/back.svg",
  30446. extra: 1845 / 1788,
  30447. bottom: 10.5 / 1852
  30448. }
  30449. },
  30450. head: {
  30451. height: math.unit(1.31, "feet"),
  30452. name: "Head",
  30453. image: {
  30454. source: "./media/characters/nemoskii/head.svg"
  30455. }
  30456. },
  30457. },
  30458. [
  30459. {
  30460. name: "Micro",
  30461. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30462. },
  30463. {
  30464. name: "Normal",
  30465. height: math.unit(6 + 7 / 12, "feet"),
  30466. default: true
  30467. },
  30468. {
  30469. name: "Macro",
  30470. height: math.unit((6 + 7 / 12) * 150, "feet")
  30471. },
  30472. {
  30473. name: "Macro+",
  30474. height: math.unit((6 + 7 / 12) * 500, "feet")
  30475. },
  30476. {
  30477. name: "Megamacro",
  30478. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30484. {
  30485. front: {
  30486. height: math.unit(1, "mile"),
  30487. weight: math.unit(265261.9, "lb"),
  30488. name: "Front",
  30489. image: {
  30490. source: "./media/characters/shui/front.svg",
  30491. extra: 1633 / 1564,
  30492. bottom: 91.5 / 1726
  30493. }
  30494. },
  30495. },
  30496. [
  30497. {
  30498. name: "Macro",
  30499. height: math.unit(1, "mile"),
  30500. default: true
  30501. },
  30502. ]
  30503. ))
  30504. characterMakers.push(() => makeCharacter(
  30505. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30506. {
  30507. front: {
  30508. height: math.unit(12 + 6 / 12, "feet"),
  30509. weight: math.unit(1342, "lb"),
  30510. name: "Front",
  30511. image: {
  30512. source: "./media/characters/arokh-takakura/front.svg",
  30513. extra: 1089 / 1043,
  30514. bottom: 77.4 / 1176.7
  30515. }
  30516. },
  30517. back: {
  30518. height: math.unit(12 + 6 / 12, "feet"),
  30519. weight: math.unit(1342, "lb"),
  30520. name: "Back",
  30521. image: {
  30522. source: "./media/characters/arokh-takakura/back.svg",
  30523. extra: 1046 / 1019,
  30524. bottom: 102 / 1150
  30525. }
  30526. },
  30527. },
  30528. [
  30529. {
  30530. name: "Big",
  30531. height: math.unit(12 + 6 / 12, "feet"),
  30532. default: true
  30533. },
  30534. ]
  30535. ))
  30536. characterMakers.push(() => makeCharacter(
  30537. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30538. {
  30539. front: {
  30540. height: math.unit(5 + 6 / 12, "feet"),
  30541. weight: math.unit(150, "lb"),
  30542. name: "Front",
  30543. image: {
  30544. source: "./media/characters/theo/front.svg",
  30545. extra: 1184 / 1131,
  30546. bottom: 7.4 / 1191
  30547. }
  30548. },
  30549. },
  30550. [
  30551. {
  30552. name: "Micro",
  30553. height: math.unit(5, "inches")
  30554. },
  30555. {
  30556. name: "Normal",
  30557. height: math.unit(5 + 6 / 12, "feet"),
  30558. default: true
  30559. },
  30560. ]
  30561. ))
  30562. characterMakers.push(() => makeCharacter(
  30563. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30564. {
  30565. front: {
  30566. height: math.unit(5 + 9 / 12, "feet"),
  30567. weight: math.unit(130, "lb"),
  30568. name: "Front",
  30569. image: {
  30570. source: "./media/characters/cecelia-swift/front.svg",
  30571. extra: 502 / 484,
  30572. bottom: 23 / 523
  30573. }
  30574. },
  30575. back: {
  30576. height: math.unit(5 + 9 / 12, "feet"),
  30577. weight: math.unit(130, "lb"),
  30578. name: "Back",
  30579. image: {
  30580. source: "./media/characters/cecelia-swift/back.svg",
  30581. extra: 499 / 485,
  30582. bottom: 12 / 511
  30583. }
  30584. },
  30585. head: {
  30586. height: math.unit(0.90, "feet"),
  30587. name: "Head",
  30588. image: {
  30589. source: "./media/characters/cecelia-swift/head.svg"
  30590. }
  30591. },
  30592. rump: {
  30593. height: math.unit(1.75, "feet"),
  30594. name: "Rump",
  30595. image: {
  30596. source: "./media/characters/cecelia-swift/rump.svg"
  30597. }
  30598. },
  30599. },
  30600. [
  30601. {
  30602. name: "Normal",
  30603. height: math.unit(5 + 9 / 12, "feet"),
  30604. default: true
  30605. },
  30606. {
  30607. name: "Big",
  30608. height: math.unit(50, "feet")
  30609. },
  30610. {
  30611. name: "Macro",
  30612. height: math.unit(100, "feet")
  30613. },
  30614. {
  30615. name: "Macro+",
  30616. height: math.unit(500, "feet")
  30617. },
  30618. {
  30619. name: "Macro++",
  30620. height: math.unit(1000, "feet")
  30621. },
  30622. ]
  30623. ))
  30624. characterMakers.push(() => makeCharacter(
  30625. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30626. {
  30627. front: {
  30628. height: math.unit(6, "feet"),
  30629. weight: math.unit(150, "lb"),
  30630. name: "Front",
  30631. image: {
  30632. source: "./media/characters/kaunan/front.svg",
  30633. extra: 2890 / 2523,
  30634. bottom: 49 / 2939
  30635. }
  30636. },
  30637. },
  30638. [
  30639. {
  30640. name: "Macro",
  30641. height: math.unit(150, "feet"),
  30642. default: true
  30643. },
  30644. ]
  30645. ))
  30646. characterMakers.push(() => makeCharacter(
  30647. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30648. {
  30649. dressed: {
  30650. height: math.unit(175, "cm"),
  30651. weight: math.unit(60, "kg"),
  30652. name: "Dressed",
  30653. image: {
  30654. source: "./media/characters/fei/dressed.svg",
  30655. extra: 1402/1278,
  30656. bottom: 27/1429
  30657. }
  30658. },
  30659. nude: {
  30660. height: math.unit(175, "cm"),
  30661. weight: math.unit(60, "kg"),
  30662. name: "Nude",
  30663. image: {
  30664. source: "./media/characters/fei/nude.svg",
  30665. extra: 1402/1278,
  30666. bottom: 27/1429
  30667. }
  30668. },
  30669. heels: {
  30670. height: math.unit(0.466, "feet"),
  30671. name: "Heels",
  30672. image: {
  30673. source: "./media/characters/fei/heels.svg",
  30674. extra: 156/152,
  30675. bottom: 28/184
  30676. }
  30677. },
  30678. },
  30679. [
  30680. {
  30681. name: "Mortal",
  30682. height: math.unit(175, "cm")
  30683. },
  30684. {
  30685. name: "Normal",
  30686. height: math.unit(3500, "m")
  30687. },
  30688. {
  30689. name: "Stroll",
  30690. height: math.unit(18.4, "km"),
  30691. default: true
  30692. },
  30693. {
  30694. name: "Showoff",
  30695. height: math.unit(175, "km")
  30696. },
  30697. ]
  30698. ))
  30699. characterMakers.push(() => makeCharacter(
  30700. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30701. {
  30702. front: {
  30703. height: math.unit(7, "feet"),
  30704. weight: math.unit(1000, "kg"),
  30705. name: "Front",
  30706. image: {
  30707. source: "./media/characters/edrax/front.svg",
  30708. extra: 2838 / 2550,
  30709. bottom: 130 / 2968
  30710. }
  30711. },
  30712. },
  30713. [
  30714. {
  30715. name: "Small",
  30716. height: math.unit(7, "feet")
  30717. },
  30718. {
  30719. name: "Normal",
  30720. height: math.unit(1500, "meters")
  30721. },
  30722. {
  30723. name: "Mega",
  30724. height: math.unit(12000000, "km"),
  30725. default: true
  30726. },
  30727. {
  30728. name: "Megamacro",
  30729. height: math.unit(10600000, "lightyears")
  30730. },
  30731. {
  30732. name: "Hypermacro",
  30733. height: math.unit(256, "yottameters")
  30734. },
  30735. ]
  30736. ))
  30737. characterMakers.push(() => makeCharacter(
  30738. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30739. {
  30740. front: {
  30741. height: math.unit(10, "feet"),
  30742. weight: math.unit(750, "lb"),
  30743. name: "Front",
  30744. image: {
  30745. source: "./media/characters/clove/front.svg",
  30746. extra: 1918/1751,
  30747. bottom: 52/1970
  30748. }
  30749. },
  30750. back: {
  30751. height: math.unit(10, "feet"),
  30752. weight: math.unit(750, "lb"),
  30753. name: "Back",
  30754. image: {
  30755. source: "./media/characters/clove/back.svg",
  30756. extra: 1912/1747,
  30757. bottom: 50/1962
  30758. }
  30759. },
  30760. },
  30761. [
  30762. {
  30763. name: "Normal",
  30764. height: math.unit(10, "feet"),
  30765. default: true
  30766. },
  30767. ]
  30768. ))
  30769. characterMakers.push(() => makeCharacter(
  30770. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30771. {
  30772. front: {
  30773. height: math.unit(4, "feet"),
  30774. weight: math.unit(50, "lb"),
  30775. name: "Front",
  30776. image: {
  30777. source: "./media/characters/alex-rabbit/front.svg",
  30778. extra: 507 / 458,
  30779. bottom: 18.5 / 527
  30780. }
  30781. },
  30782. back: {
  30783. height: math.unit(4, "feet"),
  30784. weight: math.unit(50, "lb"),
  30785. name: "Back",
  30786. image: {
  30787. source: "./media/characters/alex-rabbit/back.svg",
  30788. extra: 502 / 460,
  30789. bottom: 18.9 / 521
  30790. }
  30791. },
  30792. },
  30793. [
  30794. {
  30795. name: "Normal",
  30796. height: math.unit(4, "feet"),
  30797. default: true
  30798. },
  30799. ]
  30800. ))
  30801. characterMakers.push(() => makeCharacter(
  30802. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30803. {
  30804. front: {
  30805. height: math.unit(1 + 3 / 12, "feet"),
  30806. weight: math.unit(80, "lb"),
  30807. name: "Front",
  30808. image: {
  30809. source: "./media/characters/zander-rose/front.svg",
  30810. extra: 916 / 797,
  30811. bottom: 17 / 933
  30812. }
  30813. },
  30814. back: {
  30815. height: math.unit(1 + 3 / 12, "feet"),
  30816. weight: math.unit(80, "lb"),
  30817. name: "Back",
  30818. image: {
  30819. source: "./media/characters/zander-rose/back.svg",
  30820. extra: 903 / 779,
  30821. bottom: 31 / 934
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Normal",
  30828. height: math.unit(1 + 3 / 12, "feet"),
  30829. default: true
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30835. {
  30836. anthro: {
  30837. height: math.unit(6, "feet"),
  30838. weight: math.unit(150, "lb"),
  30839. name: "Anthro",
  30840. image: {
  30841. source: "./media/characters/razz/anthro.svg",
  30842. extra: 1437 / 1343,
  30843. bottom: 48 / 1485
  30844. }
  30845. },
  30846. feral: {
  30847. height: math.unit(6, "feet"),
  30848. weight: math.unit(150, "lb"),
  30849. name: "Feral",
  30850. image: {
  30851. source: "./media/characters/razz/feral.svg",
  30852. extra: 2569 / 1385,
  30853. bottom: 95 / 2664
  30854. }
  30855. },
  30856. },
  30857. [
  30858. {
  30859. name: "Normal",
  30860. height: math.unit(6, "feet"),
  30861. default: true
  30862. },
  30863. ]
  30864. ))
  30865. characterMakers.push(() => makeCharacter(
  30866. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30867. {
  30868. front: {
  30869. height: math.unit(9 + 4 / 12, "feet"),
  30870. weight: math.unit(500, "lb"),
  30871. name: "Front",
  30872. image: {
  30873. source: "./media/characters/morrigan/front.svg",
  30874. extra: 2707 / 2579,
  30875. bottom: 156 / 2863
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Normal",
  30882. height: math.unit(9 + 4 / 12, "feet"),
  30883. default: true
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(5, "stories"),
  30892. weight: math.unit(4000, "lb"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/jenene/front.svg",
  30896. extra: 1780 / 1710,
  30897. bottom: 57 / 1837
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(5, "stories"),
  30905. default: true
  30906. },
  30907. ]
  30908. ))
  30909. characterMakers.push(() => makeCharacter(
  30910. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30911. {
  30912. taurSfw: {
  30913. height: math.unit(10, "meters"),
  30914. weight: math.unit(17500, "kg"),
  30915. name: "Taur",
  30916. image: {
  30917. source: "./media/characters/faey/taur-sfw.svg",
  30918. extra: 1200 / 968,
  30919. bottom: 41 / 1241
  30920. }
  30921. },
  30922. chestmaw: {
  30923. height: math.unit(2.01, "meters"),
  30924. name: "Chestmaw",
  30925. image: {
  30926. source: "./media/characters/faey/chestmaw.svg"
  30927. }
  30928. },
  30929. foot: {
  30930. height: math.unit(2.43, "meters"),
  30931. name: "Foot",
  30932. image: {
  30933. source: "./media/characters/faey/foot.svg"
  30934. }
  30935. },
  30936. jaws: {
  30937. height: math.unit(1.66, "meters"),
  30938. name: "Jaws",
  30939. image: {
  30940. source: "./media/characters/faey/jaws.svg"
  30941. }
  30942. },
  30943. tongues: {
  30944. height: math.unit(2.01, "meters"),
  30945. name: "Tongues",
  30946. image: {
  30947. source: "./media/characters/faey/tongues.svg"
  30948. }
  30949. },
  30950. },
  30951. [
  30952. {
  30953. name: "Small",
  30954. height: math.unit(10, "meters"),
  30955. default: true
  30956. },
  30957. {
  30958. name: "Big",
  30959. height: math.unit(500000, "km")
  30960. },
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30965. {
  30966. front: {
  30967. height: math.unit(7, "feet"),
  30968. weight: math.unit(275, "lb"),
  30969. name: "Front",
  30970. image: {
  30971. source: "./media/characters/roku/front.svg",
  30972. extra: 903 / 878,
  30973. bottom: 37 / 940
  30974. }
  30975. },
  30976. },
  30977. [
  30978. {
  30979. name: "Normal",
  30980. height: math.unit(7, "feet"),
  30981. default: true
  30982. },
  30983. {
  30984. name: "Macro",
  30985. height: math.unit(500, "feet")
  30986. },
  30987. {
  30988. name: "Megamacro",
  30989. height: math.unit(200, "miles")
  30990. },
  30991. ]
  30992. ))
  30993. characterMakers.push(() => makeCharacter(
  30994. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30995. {
  30996. front: {
  30997. height: math.unit(6 + 2 / 12, "feet"),
  30998. weight: math.unit(150, "lb"),
  30999. name: "Front",
  31000. image: {
  31001. source: "./media/characters/lira/front.svg",
  31002. extra: 1727 / 1605,
  31003. bottom: 26 / 1753
  31004. }
  31005. },
  31006. back: {
  31007. height: math.unit(6 + 2 / 12, "feet"),
  31008. weight: math.unit(150, "lb"),
  31009. name: "Back",
  31010. image: {
  31011. source: "./media/characters/lira/back.svg",
  31012. extra: 1713/1621,
  31013. bottom: 20/1733
  31014. }
  31015. },
  31016. hand: {
  31017. height: math.unit(0.75, "feet"),
  31018. name: "Hand",
  31019. image: {
  31020. source: "./media/characters/lira/hand.svg"
  31021. }
  31022. },
  31023. maw: {
  31024. height: math.unit(0.65, "feet"),
  31025. name: "Maw",
  31026. image: {
  31027. source: "./media/characters/lira/maw.svg"
  31028. }
  31029. },
  31030. pawDigi: {
  31031. height: math.unit(1.6, "feet"),
  31032. name: "Paw Digi",
  31033. image: {
  31034. source: "./media/characters/lira/paw-digi.svg"
  31035. }
  31036. },
  31037. pawPlanti: {
  31038. height: math.unit(1.4, "feet"),
  31039. name: "Paw Planti",
  31040. image: {
  31041. source: "./media/characters/lira/paw-planti.svg"
  31042. }
  31043. },
  31044. },
  31045. [
  31046. {
  31047. name: "Normal",
  31048. height: math.unit(6 + 2 / 12, "feet"),
  31049. default: true
  31050. },
  31051. {
  31052. name: "Macro",
  31053. height: math.unit(100, "feet")
  31054. },
  31055. {
  31056. name: "Macro²",
  31057. height: math.unit(1600, "feet")
  31058. },
  31059. {
  31060. name: "Planetary",
  31061. height: math.unit(20, "earths")
  31062. },
  31063. ]
  31064. ))
  31065. characterMakers.push(() => makeCharacter(
  31066. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31067. {
  31068. front: {
  31069. height: math.unit(6, "feet"),
  31070. weight: math.unit(150, "lb"),
  31071. name: "Front",
  31072. image: {
  31073. source: "./media/characters/hadjet/front.svg",
  31074. extra: 1480 / 1346,
  31075. bottom: 26 / 1506
  31076. }
  31077. },
  31078. frontNsfw: {
  31079. height: math.unit(6, "feet"),
  31080. weight: math.unit(150, "lb"),
  31081. name: "Front (NSFW)",
  31082. image: {
  31083. source: "./media/characters/hadjet/front-nsfw.svg",
  31084. extra: 1440 / 1358,
  31085. bottom: 52 / 1492
  31086. }
  31087. },
  31088. },
  31089. [
  31090. {
  31091. name: "Macro",
  31092. height: math.unit(10, "stories"),
  31093. default: true
  31094. },
  31095. {
  31096. name: "Megamacro",
  31097. height: math.unit(1.5, "miles")
  31098. },
  31099. {
  31100. name: "Megamacro+",
  31101. height: math.unit(5, "miles")
  31102. },
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31107. {
  31108. side: {
  31109. height: math.unit(106, "feet"),
  31110. weight: math.unit(500, "tonnes"),
  31111. name: "Side",
  31112. image: {
  31113. source: "./media/characters/kodran/side.svg",
  31114. extra: 553 / 480,
  31115. bottom: 33 / 586
  31116. }
  31117. },
  31118. front: {
  31119. height: math.unit(132, "feet"),
  31120. weight: math.unit(500, "tonnes"),
  31121. name: "Front",
  31122. image: {
  31123. source: "./media/characters/kodran/front.svg",
  31124. extra: 667 / 643,
  31125. bottom: 42 / 709
  31126. }
  31127. },
  31128. flying: {
  31129. height: math.unit(350, "feet"),
  31130. weight: math.unit(500, "tonnes"),
  31131. name: "Flying",
  31132. image: {
  31133. source: "./media/characters/kodran/flying.svg"
  31134. }
  31135. },
  31136. foot: {
  31137. height: math.unit(33, "feet"),
  31138. name: "Foot",
  31139. image: {
  31140. source: "./media/characters/kodran/foot.svg"
  31141. }
  31142. },
  31143. footFront: {
  31144. height: math.unit(19, "feet"),
  31145. name: "Foot (Front)",
  31146. image: {
  31147. source: "./media/characters/kodran/foot-front.svg",
  31148. extra: 261 / 261,
  31149. bottom: 91 / 352
  31150. }
  31151. },
  31152. headFront: {
  31153. height: math.unit(53, "feet"),
  31154. name: "Head (Front)",
  31155. image: {
  31156. source: "./media/characters/kodran/head-front.svg"
  31157. }
  31158. },
  31159. headSide: {
  31160. height: math.unit(65, "feet"),
  31161. name: "Head (Side)",
  31162. image: {
  31163. source: "./media/characters/kodran/head-side.svg"
  31164. }
  31165. },
  31166. throat: {
  31167. height: math.unit(79, "feet"),
  31168. name: "Throat",
  31169. image: {
  31170. source: "./media/characters/kodran/throat.svg"
  31171. }
  31172. },
  31173. },
  31174. [
  31175. {
  31176. name: "Large",
  31177. height: math.unit(106, "feet"),
  31178. default: true
  31179. },
  31180. ]
  31181. ))
  31182. characterMakers.push(() => makeCharacter(
  31183. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31184. {
  31185. side: {
  31186. height: math.unit(11, "feet"),
  31187. weight: math.unit(150, "lb"),
  31188. name: "Side",
  31189. image: {
  31190. source: "./media/characters/pyxaron/side.svg",
  31191. extra: 305 / 195,
  31192. bottom: 17 / 322
  31193. }
  31194. },
  31195. },
  31196. [
  31197. {
  31198. name: "Normal",
  31199. height: math.unit(11, "feet"),
  31200. default: true
  31201. },
  31202. ]
  31203. ))
  31204. characterMakers.push(() => makeCharacter(
  31205. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31206. {
  31207. front: {
  31208. height: math.unit(6, "feet"),
  31209. weight: math.unit(150, "lb"),
  31210. name: "Front",
  31211. image: {
  31212. source: "./media/characters/meep/front.svg",
  31213. extra: 88 / 80,
  31214. bottom: 6 / 94
  31215. }
  31216. },
  31217. },
  31218. [
  31219. {
  31220. name: "Fun Sized",
  31221. height: math.unit(2, "inches"),
  31222. default: true
  31223. },
  31224. {
  31225. name: "Friend Sized",
  31226. height: math.unit(8, "inches")
  31227. },
  31228. ]
  31229. ))
  31230. characterMakers.push(() => makeCharacter(
  31231. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31232. {
  31233. front: {
  31234. height: math.unit(15, "feet"),
  31235. weight: math.unit(2500, "lb"),
  31236. name: "Front",
  31237. image: {
  31238. source: "./media/characters/holly-rabbit/front.svg",
  31239. extra: 1433 / 1233,
  31240. bottom: 125 / 1558
  31241. }
  31242. },
  31243. dick: {
  31244. height: math.unit(4.6, "feet"),
  31245. name: "Dick",
  31246. image: {
  31247. source: "./media/characters/holly-rabbit/dick.svg"
  31248. }
  31249. },
  31250. },
  31251. [
  31252. {
  31253. name: "Normal",
  31254. height: math.unit(15, "feet"),
  31255. default: true
  31256. },
  31257. {
  31258. name: "Macro",
  31259. height: math.unit(250, "feet")
  31260. },
  31261. {
  31262. name: "Macro+",
  31263. height: math.unit(2500, "feet")
  31264. },
  31265. ]
  31266. ))
  31267. characterMakers.push(() => makeCharacter(
  31268. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31269. {
  31270. front: {
  31271. height: math.unit(3.02, "meters"),
  31272. weight: math.unit(500, "kg"),
  31273. name: "Front",
  31274. image: {
  31275. source: "./media/characters/drena/front.svg",
  31276. extra: 282 / 243,
  31277. bottom: 8 / 290
  31278. }
  31279. },
  31280. side: {
  31281. height: math.unit(3.02, "meters"),
  31282. weight: math.unit(500, "kg"),
  31283. name: "Side",
  31284. image: {
  31285. source: "./media/characters/drena/side.svg",
  31286. extra: 280 / 245,
  31287. bottom: 10 / 290
  31288. }
  31289. },
  31290. back: {
  31291. height: math.unit(3.02, "meters"),
  31292. weight: math.unit(500, "kg"),
  31293. name: "Back",
  31294. image: {
  31295. source: "./media/characters/drena/back.svg",
  31296. extra: 278 / 243,
  31297. bottom: 2 / 280
  31298. }
  31299. },
  31300. foot: {
  31301. height: math.unit(0.75, "meters"),
  31302. name: "Foot",
  31303. image: {
  31304. source: "./media/characters/drena/foot.svg"
  31305. }
  31306. },
  31307. maw: {
  31308. height: math.unit(0.82, "meters"),
  31309. name: "Maw",
  31310. image: {
  31311. source: "./media/characters/drena/maw.svg"
  31312. }
  31313. },
  31314. eating: {
  31315. height: math.unit(0.75, "meters"),
  31316. name: "Eating",
  31317. image: {
  31318. source: "./media/characters/drena/eating.svg"
  31319. }
  31320. },
  31321. rump: {
  31322. height: math.unit(0.93, "meters"),
  31323. name: "Rump",
  31324. image: {
  31325. source: "./media/characters/drena/rump.svg"
  31326. }
  31327. },
  31328. },
  31329. [
  31330. {
  31331. name: "Normal",
  31332. height: math.unit(3.02, "meters"),
  31333. default: true
  31334. },
  31335. ]
  31336. ))
  31337. characterMakers.push(() => makeCharacter(
  31338. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31339. {
  31340. front: {
  31341. height: math.unit(6 + 4 / 12, "feet"),
  31342. weight: math.unit(250, "lb"),
  31343. name: "Front",
  31344. image: {
  31345. source: "./media/characters/remmyzilla/front.svg",
  31346. extra: 4033 / 3588,
  31347. bottom: 123 / 4156
  31348. }
  31349. },
  31350. back: {
  31351. height: math.unit(6 + 4 / 12, "feet"),
  31352. weight: math.unit(250, "lb"),
  31353. name: "Back",
  31354. image: {
  31355. source: "./media/characters/remmyzilla/back.svg",
  31356. extra: 1696/1602,
  31357. bottom: 63/1759
  31358. }
  31359. },
  31360. paw: {
  31361. height: math.unit(1.73, "feet"),
  31362. name: "Paw",
  31363. image: {
  31364. source: "./media/characters/remmyzilla/paw.svg"
  31365. },
  31366. extraAttributes: {
  31367. "toeSize": {
  31368. name: "Toe Size",
  31369. power: 2,
  31370. type: "area",
  31371. base: math.unit(0.0035, "m^2")
  31372. },
  31373. "padSize": {
  31374. name: "Pad Size",
  31375. power: 2,
  31376. type: "area",
  31377. base: math.unit(0.015, "m^2")
  31378. },
  31379. "pawsize": {
  31380. name: "Paw Size",
  31381. power: 2,
  31382. type: "area",
  31383. base: math.unit(0.072, "m^2")
  31384. },
  31385. }
  31386. },
  31387. maw: {
  31388. height: math.unit(1.73, "feet"),
  31389. name: "Maw",
  31390. image: {
  31391. source: "./media/characters/remmyzilla/maw.svg"
  31392. }
  31393. },
  31394. },
  31395. [
  31396. {
  31397. name: "Normal",
  31398. height: math.unit(6 + 4 / 12, "feet")
  31399. },
  31400. {
  31401. name: "Minimacro",
  31402. height: math.unit(12 + 8 / 12, "feet")
  31403. },
  31404. {
  31405. name: "Normal",
  31406. height: math.unit(640, "feet"),
  31407. default: true
  31408. },
  31409. {
  31410. name: "Megamacro",
  31411. height: math.unit(6400, "feet")
  31412. },
  31413. {
  31414. name: "Gigamacro",
  31415. height: math.unit(64000, "miles")
  31416. },
  31417. ]
  31418. ))
  31419. characterMakers.push(() => makeCharacter(
  31420. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31421. {
  31422. front: {
  31423. height: math.unit(2.5, "meters"),
  31424. weight: math.unit(300, "lb"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/lawrence/front.svg",
  31428. extra: 357 / 335,
  31429. bottom: 30 / 387
  31430. }
  31431. },
  31432. back: {
  31433. height: math.unit(2.5, "meters"),
  31434. weight: math.unit(300, "lb"),
  31435. name: "Back",
  31436. image: {
  31437. source: "./media/characters/lawrence/back.svg",
  31438. extra: 357 / 338,
  31439. bottom: 16 / 373
  31440. }
  31441. },
  31442. head: {
  31443. height: math.unit(0.9, "meter"),
  31444. name: "Head",
  31445. image: {
  31446. source: "./media/characters/lawrence/head.svg"
  31447. }
  31448. },
  31449. maw: {
  31450. height: math.unit(0.7, "meter"),
  31451. name: "Maw",
  31452. image: {
  31453. source: "./media/characters/lawrence/maw.svg"
  31454. }
  31455. },
  31456. footBottom: {
  31457. height: math.unit(0.5, "meter"),
  31458. name: "Foot (Bottom)",
  31459. image: {
  31460. source: "./media/characters/lawrence/foot-bottom.svg"
  31461. }
  31462. },
  31463. footTop: {
  31464. height: math.unit(0.5, "meter"),
  31465. name: "Foot (Top)",
  31466. image: {
  31467. source: "./media/characters/lawrence/foot-top.svg"
  31468. }
  31469. },
  31470. },
  31471. [
  31472. {
  31473. name: "Normal",
  31474. height: math.unit(2.5, "meters"),
  31475. default: true
  31476. },
  31477. {
  31478. name: "Macro",
  31479. height: math.unit(95, "meters")
  31480. },
  31481. {
  31482. name: "Megamacro",
  31483. height: math.unit(150, "km")
  31484. },
  31485. ]
  31486. ))
  31487. characterMakers.push(() => makeCharacter(
  31488. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31489. {
  31490. front: {
  31491. height: math.unit(4.2, "meters"),
  31492. preyCapacity: math.unit(50, "m^3"),
  31493. weight: math.unit(30, "tonnes"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/sydney/front.svg",
  31497. extra: 1177/1129,
  31498. bottom: 197/1374
  31499. },
  31500. extraAttributes: {
  31501. "length": {
  31502. name: "Length",
  31503. power: 1,
  31504. type: "length",
  31505. base: math.unit(21, "meters")
  31506. },
  31507. }
  31508. },
  31509. },
  31510. [
  31511. {
  31512. name: "Normal",
  31513. height: math.unit(4.2, "meters"),
  31514. default: true
  31515. },
  31516. ]
  31517. ))
  31518. characterMakers.push(() => makeCharacter(
  31519. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31520. {
  31521. back: {
  31522. height: math.unit(201, "feet"),
  31523. name: "Back",
  31524. image: {
  31525. source: "./media/characters/jessica/back.svg",
  31526. extra: 273 / 259,
  31527. bottom: 7 / 280
  31528. }
  31529. },
  31530. },
  31531. [
  31532. {
  31533. name: "Normal",
  31534. height: math.unit(201, "feet"),
  31535. default: true
  31536. },
  31537. {
  31538. name: "Megamacro",
  31539. height: math.unit(8, "miles")
  31540. },
  31541. ]
  31542. ))
  31543. characterMakers.push(() => makeCharacter(
  31544. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31545. {
  31546. side: {
  31547. height: math.unit(5.6, "m"),
  31548. weight: math.unit(8000, "kg"),
  31549. name: "Side",
  31550. image: {
  31551. source: "./media/characters/victoria/side.svg",
  31552. extra: 1542/1229,
  31553. bottom: 124/1666
  31554. }
  31555. },
  31556. maw: {
  31557. height: math.unit(7.14, "feet"),
  31558. name: "Maw",
  31559. image: {
  31560. source: "./media/characters/victoria/maw.svg"
  31561. }
  31562. },
  31563. },
  31564. [
  31565. {
  31566. name: "Normal",
  31567. height: math.unit(5.6, "m"),
  31568. default: true
  31569. },
  31570. ]
  31571. ))
  31572. characterMakers.push(() => makeCharacter(
  31573. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31574. {
  31575. front: {
  31576. height: math.unit(5 + 6 / 12, "feet"),
  31577. name: "Front",
  31578. image: {
  31579. source: "./media/characters/cat/cat-front.svg",
  31580. extra: 1422/1262,
  31581. bottom: 61/1483
  31582. },
  31583. form: "cat",
  31584. default: true
  31585. },
  31586. back: {
  31587. height: math.unit(5 + 6 / 12, "feet"),
  31588. name: "Back",
  31589. image: {
  31590. source: "./media/characters/cat/cat-back.svg",
  31591. extra: 1466/1301,
  31592. bottom: 19/1485
  31593. },
  31594. form: "cat"
  31595. },
  31596. taur: {
  31597. height: math.unit(7, "feet"),
  31598. name: "Side",
  31599. image: {
  31600. source: "./media/characters/cat/taur-side.svg",
  31601. extra: 1389/1233,
  31602. bottom: 83/1472
  31603. },
  31604. form: "taur",
  31605. default: true
  31606. },
  31607. lucarioFront: {
  31608. height: math.unit(4, "feet"),
  31609. name: "Front",
  31610. image: {
  31611. source: "./media/characters/cat/lucario-front.svg",
  31612. extra: 1149/1019,
  31613. bottom: 84/1233
  31614. },
  31615. form: "lucario",
  31616. default: true
  31617. },
  31618. lucarioBack: {
  31619. height: math.unit(4, "feet"),
  31620. name: "Back",
  31621. image: {
  31622. source: "./media/characters/cat/lucario-back.svg",
  31623. extra: 1190/1059,
  31624. bottom: 33/1223
  31625. },
  31626. form: "lucario"
  31627. },
  31628. riolu_front: {
  31629. height: math.unit(2 + 4/12, "feet"),
  31630. name: "Front",
  31631. image: {
  31632. source: "./media/characters/cat/riolu-front.svg",
  31633. extra: 1104/956,
  31634. bottom: 70/1174
  31635. },
  31636. form: "riolu",
  31637. default: true
  31638. },
  31639. nickit: {
  31640. height: math.unit(2, "feet"),
  31641. name: "Side",
  31642. image: {
  31643. source: "./media/characters/cat/nickit-side.svg",
  31644. extra: 1087/852,
  31645. bottom: 67/1154
  31646. },
  31647. form: "nickit",
  31648. default: true
  31649. },
  31650. lopunnyFront: {
  31651. height: math.unit(5, "feet"),
  31652. name: "Front",
  31653. image: {
  31654. source: "./media/characters/cat/lopunny-front.svg",
  31655. extra: 1217/1078,
  31656. bottom: 23/1240
  31657. },
  31658. form: "lopunny",
  31659. default: true
  31660. },
  31661. lopunnyBack: {
  31662. height: math.unit(5, "feet"),
  31663. name: "Back",
  31664. image: {
  31665. source: "./media/characters/cat/lopunny-back.svg",
  31666. extra: 1205/1057,
  31667. bottom: 33/1238
  31668. },
  31669. form: "lopunny"
  31670. },
  31671. dog_front: {
  31672. height: math.unit(5 + 9/12, "feet"),
  31673. name: "Front",
  31674. image: {
  31675. source: "./media/characters/cat/dog-front.svg",
  31676. extra: 1403/1309,
  31677. bottom: 31/1434
  31678. },
  31679. form: "dog",
  31680. default: true
  31681. },
  31682. dog_back: {
  31683. height: math.unit(5 + 9/12, "feet"),
  31684. name: "Back",
  31685. image: {
  31686. source: "./media/characters/cat/dog-back.svg",
  31687. extra: 1393/1297,
  31688. bottom: 38/1431
  31689. },
  31690. form: "dog",
  31691. },
  31692. pikachu_front: {
  31693. height: math.unit(2.64, "feet"),
  31694. name: "Front",
  31695. image: {
  31696. source: "./media/characters/cat/pikachu-front.svg",
  31697. extra: 1224/958,
  31698. bottom: 34/1258
  31699. },
  31700. form: "pikachu",
  31701. default: true
  31702. },
  31703. pikachu_back: {
  31704. height: math.unit(2.64, "feet"),
  31705. name: "Back",
  31706. image: {
  31707. source: "./media/characters/cat/pikachu-back.svg",
  31708. extra: 1228/958,
  31709. bottom: 16/1244
  31710. },
  31711. form: "pikachu",
  31712. },
  31713. gigachuFront: {
  31714. height: math.unit(75, "feet"),
  31715. name: "Front",
  31716. image: {
  31717. source: "./media/characters/cat/gigachu-front.svg",
  31718. extra: 1239/1027,
  31719. bottom: 32/1271
  31720. },
  31721. form: "gigachu",
  31722. default: true
  31723. },
  31724. gigachuBack: {
  31725. height: math.unit(75, "feet"),
  31726. name: "Back",
  31727. image: {
  31728. source: "./media/characters/cat/gigachu-back.svg",
  31729. extra: 1229/1030,
  31730. bottom: 9/1238
  31731. },
  31732. form: "gigachu"
  31733. },
  31734. },
  31735. [
  31736. {
  31737. name: "Really small",
  31738. height: math.unit(1, "nm"),
  31739. allForms: true
  31740. },
  31741. {
  31742. name: "Micro",
  31743. height: math.unit(5, "inches"),
  31744. allForms: true
  31745. },
  31746. {
  31747. name: "Normal",
  31748. height: math.unit(5 + 6 / 12, "feet"),
  31749. default: true,
  31750. form: "cat"
  31751. },
  31752. {
  31753. name: "Normal",
  31754. height: math.unit(7, "feet"),
  31755. default: true,
  31756. form: "taur"
  31757. },
  31758. {
  31759. name: "Normal",
  31760. height: math.unit(4, "feet"),
  31761. default: true,
  31762. form: "lucario"
  31763. },
  31764. {
  31765. name: "Normal",
  31766. height: math.unit(2, "feet"),
  31767. default: true,
  31768. form: "nickit"
  31769. },
  31770. {
  31771. name: "Normal",
  31772. height: math.unit(5, "feet"),
  31773. default: true,
  31774. form: "lopunny"
  31775. },
  31776. {
  31777. name: "Normal",
  31778. height: math.unit(2 + 4/12, "feet"),
  31779. default: true,
  31780. form: "riolu"
  31781. },
  31782. {
  31783. name: "Normal",
  31784. height: math.unit(5 + 6 / 12, "feet"),
  31785. default: true,
  31786. form: "dog"
  31787. },
  31788. {
  31789. name: "Macro",
  31790. height: math.unit(50, "feet"),
  31791. allForms: true
  31792. },
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(2.64, "feet"),
  31796. default: true,
  31797. form: "pikachu"
  31798. },
  31799. {
  31800. name: "Dynamax",
  31801. height: math.unit(75, "feet"),
  31802. form: "gigachu",
  31803. default: true
  31804. },
  31805. {
  31806. name: "Macro+",
  31807. height: math.unit(150, "feet"),
  31808. allForms: true
  31809. },
  31810. {
  31811. name: "Megamacro",
  31812. height: math.unit(100, "miles"),
  31813. allForms: true
  31814. },
  31815. ],
  31816. {
  31817. "cat": {
  31818. name: "Cat",
  31819. default: true
  31820. },
  31821. "taur": {
  31822. name: "Taur",
  31823. },
  31824. "lucario": {
  31825. name: "Lucario",
  31826. },
  31827. "riolu": {
  31828. name: "Riolu",
  31829. },
  31830. "nickit": {
  31831. name: "Nickit",
  31832. },
  31833. "lopunny": {
  31834. name: "Lopunny",
  31835. },
  31836. "dog": {
  31837. name: "Dog",
  31838. },
  31839. "pikachu": {
  31840. name: "Pikachu",
  31841. },
  31842. "gigachu": {
  31843. name: "Gigachu",
  31844. ignoreAllFormSizes: true
  31845. }
  31846. }
  31847. ))
  31848. characterMakers.push(() => makeCharacter(
  31849. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31850. {
  31851. front: {
  31852. height: math.unit(63.4, "meters"),
  31853. weight: math.unit(3.28349e+6, "kilograms"),
  31854. name: "Front",
  31855. image: {
  31856. source: "./media/characters/kirina-violet/front.svg",
  31857. extra: 2812 / 2725,
  31858. bottom: 0 / 2812
  31859. }
  31860. },
  31861. back: {
  31862. height: math.unit(63.4, "meters"),
  31863. weight: math.unit(3.28349e+6, "kilograms"),
  31864. name: "Back",
  31865. image: {
  31866. source: "./media/characters/kirina-violet/back.svg",
  31867. extra: 2812 / 2725,
  31868. bottom: 0 / 2812
  31869. }
  31870. },
  31871. mouth: {
  31872. height: math.unit(4.35, "meters"),
  31873. name: "Mouth",
  31874. image: {
  31875. source: "./media/characters/kirina-violet/mouth.svg"
  31876. }
  31877. },
  31878. paw: {
  31879. height: math.unit(5.6, "meters"),
  31880. name: "Paw",
  31881. image: {
  31882. source: "./media/characters/kirina-violet/paw.svg"
  31883. }
  31884. },
  31885. tail: {
  31886. height: math.unit(18, "meters"),
  31887. name: "Tail",
  31888. image: {
  31889. source: "./media/characters/kirina-violet/tail.svg"
  31890. }
  31891. },
  31892. },
  31893. [
  31894. {
  31895. name: "Macro",
  31896. height: math.unit(63.4, "meters"),
  31897. default: true
  31898. },
  31899. ]
  31900. ))
  31901. characterMakers.push(() => makeCharacter(
  31902. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31903. {
  31904. front: {
  31905. height: math.unit(6, "feet"),
  31906. weight: math.unit(150, "lb"),
  31907. name: "Front",
  31908. image: {
  31909. source: "./media/characters/sfaiyan/front.svg",
  31910. extra: 999 / 978,
  31911. bottom: 5 / 1004
  31912. }
  31913. },
  31914. },
  31915. [
  31916. {
  31917. name: "Normal",
  31918. height: math.unit(1.82, "meters")
  31919. },
  31920. {
  31921. name: "Giant",
  31922. height: math.unit(2.27, "km"),
  31923. default: true
  31924. },
  31925. ]
  31926. ))
  31927. characterMakers.push(() => makeCharacter(
  31928. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31929. {
  31930. front: {
  31931. height: math.unit(179, "cm"),
  31932. weight: math.unit(100, "kg"),
  31933. name: "Front",
  31934. image: {
  31935. source: "./media/characters/raunehkeli/front.svg",
  31936. extra: 1934 / 1926,
  31937. bottom: 0 / 1934
  31938. }
  31939. },
  31940. },
  31941. [
  31942. {
  31943. name: "Normal",
  31944. height: math.unit(179, "cm")
  31945. },
  31946. {
  31947. name: "Maximum",
  31948. height: math.unit(575, "meters"),
  31949. default: true
  31950. },
  31951. ]
  31952. ))
  31953. characterMakers.push(() => makeCharacter(
  31954. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31955. {
  31956. front: {
  31957. height: math.unit(6, "feet"),
  31958. weight: math.unit(150, "lb"),
  31959. name: "Front",
  31960. image: {
  31961. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31962. extra: 2625 / 2518,
  31963. bottom: 60 / 2685
  31964. }
  31965. },
  31966. },
  31967. [
  31968. {
  31969. name: "Normal",
  31970. height: math.unit(6 + 2 / 12, "feet")
  31971. },
  31972. {
  31973. name: "Macro",
  31974. height: math.unit(1180, "feet"),
  31975. default: true
  31976. },
  31977. ]
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31981. {
  31982. front: {
  31983. height: math.unit(5 + 6 / 12, "feet"),
  31984. weight: math.unit(108, "lb"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/lilith-zott/front.svg",
  31988. extra: 2510 / 2238,
  31989. bottom: 100 / 2610
  31990. }
  31991. },
  31992. frontDressed: {
  31993. height: math.unit(5 + 6 / 12, "feet"),
  31994. weight: math.unit(108, "lb"),
  31995. name: "Front (Dressed)",
  31996. image: {
  31997. source: "./media/characters/lilith-zott/front-dressed.svg",
  31998. extra: 2510 / 2238,
  31999. bottom: 100 / 2610
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Normal",
  32006. height: math.unit(5 + 6 / 12, "feet")
  32007. },
  32008. {
  32009. name: "Macro",
  32010. height: math.unit(1030, "feet"),
  32011. default: true
  32012. },
  32013. ]
  32014. ))
  32015. characterMakers.push(() => makeCharacter(
  32016. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32017. {
  32018. front: {
  32019. height: math.unit(6, "feet"),
  32020. weight: math.unit(150, "lb"),
  32021. name: "Front",
  32022. image: {
  32023. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  32024. extra: 2567 / 2435,
  32025. bottom: 39 / 2606
  32026. }
  32027. },
  32028. frontSuper: {
  32029. height: math.unit(6, "feet"),
  32030. name: "Front (Super)",
  32031. image: {
  32032. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  32033. extra: 2567 / 2435,
  32034. bottom: 39 / 2606
  32035. }
  32036. },
  32037. },
  32038. [
  32039. {
  32040. name: "Normal",
  32041. height: math.unit(5 + 10 / 12, "feet")
  32042. },
  32043. {
  32044. name: "Macro",
  32045. height: math.unit(1100, "feet"),
  32046. default: true
  32047. },
  32048. ]
  32049. ))
  32050. characterMakers.push(() => makeCharacter(
  32051. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32052. {
  32053. front: {
  32054. height: math.unit(100, "miles"),
  32055. name: "Front",
  32056. image: {
  32057. source: "./media/characters/sona/front.svg",
  32058. extra: 2433 / 2201,
  32059. bottom: 53 / 2486
  32060. }
  32061. },
  32062. foot: {
  32063. height: math.unit(16.1, "miles"),
  32064. name: "Foot",
  32065. image: {
  32066. source: "./media/characters/sona/foot.svg"
  32067. }
  32068. },
  32069. },
  32070. [
  32071. {
  32072. name: "Macro",
  32073. height: math.unit(100, "miles"),
  32074. default: true
  32075. },
  32076. ]
  32077. ))
  32078. characterMakers.push(() => makeCharacter(
  32079. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32080. {
  32081. front: {
  32082. height: math.unit(6, "feet"),
  32083. weight: math.unit(150, "lb"),
  32084. name: "Front",
  32085. image: {
  32086. source: "./media/characters/bailey/front.svg",
  32087. extra: 1778 / 1724,
  32088. bottom: 30 / 1808
  32089. }
  32090. },
  32091. },
  32092. [
  32093. {
  32094. name: "Micro",
  32095. height: math.unit(4, "inches")
  32096. },
  32097. {
  32098. name: "Normal",
  32099. height: math.unit(5 + 5 / 12, "feet"),
  32100. default: true
  32101. },
  32102. {
  32103. name: "Macro",
  32104. height: math.unit(250, "feet")
  32105. },
  32106. {
  32107. name: "Megamacro",
  32108. height: math.unit(100, "miles")
  32109. },
  32110. ]
  32111. ))
  32112. characterMakers.push(() => makeCharacter(
  32113. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32114. {
  32115. front: {
  32116. height: math.unit(5 + 2 / 12, "feet"),
  32117. weight: math.unit(120, "lb"),
  32118. name: "Front",
  32119. image: {
  32120. source: "./media/characters/snaps/front.svg",
  32121. extra: 2370 / 2177,
  32122. bottom: 48 / 2418
  32123. }
  32124. },
  32125. back: {
  32126. height: math.unit(5 + 2 / 12, "feet"),
  32127. weight: math.unit(120, "lb"),
  32128. name: "Back",
  32129. image: {
  32130. source: "./media/characters/snaps/back.svg",
  32131. extra: 2408 / 2258,
  32132. bottom: 15 / 2423
  32133. }
  32134. },
  32135. },
  32136. [
  32137. {
  32138. name: "Micro",
  32139. height: math.unit(9, "inches")
  32140. },
  32141. {
  32142. name: "Normal",
  32143. height: math.unit(5 + 2 / 12, "feet"),
  32144. default: true
  32145. },
  32146. {
  32147. name: "Mini Macro",
  32148. height: math.unit(10, "feet")
  32149. },
  32150. ]
  32151. ))
  32152. characterMakers.push(() => makeCharacter(
  32153. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32154. {
  32155. front: {
  32156. height: math.unit(1.8, "meters"),
  32157. weight: math.unit(85, "kg"),
  32158. name: "Front",
  32159. image: {
  32160. source: "./media/characters/azteck/front.svg",
  32161. extra: 2815 / 2625,
  32162. bottom: 89 / 2904
  32163. }
  32164. },
  32165. back: {
  32166. height: math.unit(1.8, "meters"),
  32167. weight: math.unit(85, "kg"),
  32168. name: "Back",
  32169. image: {
  32170. source: "./media/characters/azteck/back.svg",
  32171. extra: 2856 / 2648,
  32172. bottom: 85 / 2941
  32173. }
  32174. },
  32175. frontDressed: {
  32176. height: math.unit(1.8, "meters"),
  32177. weight: math.unit(85, "kg"),
  32178. name: "Front (Dressed)",
  32179. image: {
  32180. source: "./media/characters/azteck/front-dressed.svg",
  32181. extra: 2147 / 2003,
  32182. bottom: 68 / 2215
  32183. }
  32184. },
  32185. head: {
  32186. height: math.unit(0.47, "meters"),
  32187. weight: math.unit(85, "kg"),
  32188. name: "Head",
  32189. image: {
  32190. source: "./media/characters/azteck/head.svg"
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Bite sized",
  32197. height: math.unit(16, "cm")
  32198. },
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(1.8, "meters"),
  32202. default: true
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32208. {
  32209. front: {
  32210. height: math.unit(6, "feet"),
  32211. weight: math.unit(150, "lb"),
  32212. name: "Front",
  32213. image: {
  32214. source: "./media/characters/pidge/front.svg",
  32215. extra: 1936/1820,
  32216. bottom: 0/1936
  32217. }
  32218. },
  32219. back: {
  32220. height: math.unit(6, "feet"),
  32221. weight: math.unit(150, "lb"),
  32222. name: "Back",
  32223. image: {
  32224. source: "./media/characters/pidge/back.svg",
  32225. extra: 1938/1843,
  32226. bottom: 0/1938
  32227. }
  32228. },
  32229. casual: {
  32230. height: math.unit(6, "feet"),
  32231. weight: math.unit(150, "lb"),
  32232. name: "Casual",
  32233. image: {
  32234. source: "./media/characters/pidge/casual.svg",
  32235. extra: 1936/1820,
  32236. bottom: 0/1936
  32237. }
  32238. },
  32239. tech: {
  32240. height: math.unit(6, "feet"),
  32241. weight: math.unit(150, "lb"),
  32242. name: "Tech",
  32243. image: {
  32244. source: "./media/characters/pidge/tech.svg",
  32245. extra: 1802/1682,
  32246. bottom: 0/1802
  32247. }
  32248. },
  32249. head: {
  32250. height: math.unit(1.61, "feet"),
  32251. name: "Head",
  32252. image: {
  32253. source: "./media/characters/pidge/head.svg"
  32254. }
  32255. },
  32256. collar: {
  32257. height: math.unit(0.82, "feet"),
  32258. name: "Collar",
  32259. image: {
  32260. source: "./media/characters/pidge/collar.svg"
  32261. }
  32262. },
  32263. },
  32264. [
  32265. {
  32266. name: "Macro",
  32267. height: math.unit(2, "mile"),
  32268. default: true
  32269. },
  32270. {
  32271. name: "PUPPY",
  32272. height: math.unit(20, "miles")
  32273. },
  32274. ]
  32275. ))
  32276. characterMakers.push(() => makeCharacter(
  32277. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32278. {
  32279. front: {
  32280. height: math.unit(6, "feet"),
  32281. weight: math.unit(150, "lb"),
  32282. name: "Front",
  32283. image: {
  32284. source: "./media/characters/en/front.svg",
  32285. extra: 1697 / 1563,
  32286. bottom: 103 / 1800
  32287. }
  32288. },
  32289. back: {
  32290. height: math.unit(6, "feet"),
  32291. weight: math.unit(150, "lb"),
  32292. name: "Back",
  32293. image: {
  32294. source: "./media/characters/en/back.svg",
  32295. extra: 1700 / 1570,
  32296. bottom: 51 / 1751
  32297. }
  32298. },
  32299. frontDressed: {
  32300. height: math.unit(6, "feet"),
  32301. weight: math.unit(150, "lb"),
  32302. name: "Front (Dressed)",
  32303. image: {
  32304. source: "./media/characters/en/front-dressed.svg",
  32305. extra: 1697 / 1563,
  32306. bottom: 103 / 1800
  32307. }
  32308. },
  32309. backDressed: {
  32310. height: math.unit(6, "feet"),
  32311. weight: math.unit(150, "lb"),
  32312. name: "Back (Dressed)",
  32313. image: {
  32314. source: "./media/characters/en/back-dressed.svg",
  32315. extra: 1700 / 1570,
  32316. bottom: 51 / 1751
  32317. }
  32318. },
  32319. },
  32320. [
  32321. {
  32322. name: "Macro",
  32323. height: math.unit(210, "feet"),
  32324. default: true
  32325. },
  32326. ]
  32327. ))
  32328. characterMakers.push(() => makeCharacter(
  32329. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32330. {
  32331. front: {
  32332. height: math.unit(6, "feet"),
  32333. weight: math.unit(150, "lb"),
  32334. name: "Front",
  32335. image: {
  32336. source: "./media/characters/haze-orris/front.svg",
  32337. extra: 3975 / 3525,
  32338. bottom: 137 / 4112
  32339. }
  32340. },
  32341. },
  32342. [
  32343. {
  32344. name: "Micro",
  32345. height: math.unit(150, "mm"),
  32346. default: true
  32347. },
  32348. ]
  32349. ))
  32350. characterMakers.push(() => makeCharacter(
  32351. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32352. {
  32353. front: {
  32354. height: math.unit(6, "feet"),
  32355. weight: math.unit(150, "lb"),
  32356. name: "Front",
  32357. image: {
  32358. source: "./media/characters/casselene-yaro/front.svg",
  32359. extra: 4721 / 4541,
  32360. bottom: 82 / 4803
  32361. }
  32362. },
  32363. back: {
  32364. height: math.unit(6, "feet"),
  32365. weight: math.unit(150, "lb"),
  32366. name: "Back",
  32367. image: {
  32368. source: "./media/characters/casselene-yaro/back.svg",
  32369. extra: 4569 / 4377,
  32370. bottom: 69 / 4638
  32371. }
  32372. },
  32373. dressed: {
  32374. height: math.unit(6, "feet"),
  32375. weight: math.unit(150, "lb"),
  32376. name: "Dressed",
  32377. image: {
  32378. source: "./media/characters/casselene-yaro/dressed.svg",
  32379. extra: 4721 / 4541,
  32380. bottom: 82 / 4803
  32381. }
  32382. },
  32383. maw: {
  32384. height: math.unit(1, "feet"),
  32385. name: "Maw",
  32386. image: {
  32387. source: "./media/characters/casselene-yaro/maw.svg"
  32388. }
  32389. },
  32390. },
  32391. [
  32392. {
  32393. name: "Macro",
  32394. height: math.unit(190, "feet"),
  32395. default: true
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32401. {
  32402. front: {
  32403. height: math.unit(10, "feet"),
  32404. weight: math.unit(15015, "lb"),
  32405. name: "Front",
  32406. image: {
  32407. source: "./media/characters/platine/front.svg",
  32408. extra: 1741/1650,
  32409. bottom: 84/1825
  32410. }
  32411. },
  32412. side: {
  32413. height: math.unit(10, "feet"),
  32414. weight: math.unit(15015, "lb"),
  32415. name: "Side",
  32416. image: {
  32417. source: "./media/characters/platine/side.svg",
  32418. extra: 1790/1705,
  32419. bottom: 29/1819
  32420. }
  32421. },
  32422. },
  32423. [
  32424. {
  32425. name: "Normal",
  32426. height: math.unit(10, "feet"),
  32427. default: true
  32428. },
  32429. {
  32430. name: "Macro",
  32431. height: math.unit(100, "feet")
  32432. },
  32433. {
  32434. name: "Megamacro",
  32435. height: math.unit(1000, "feet")
  32436. },
  32437. ]
  32438. ))
  32439. characterMakers.push(() => makeCharacter(
  32440. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32441. {
  32442. front: {
  32443. height: math.unit(15 + 5 / 12, "feet"),
  32444. weight: math.unit(4600, "lb"),
  32445. name: "Front",
  32446. image: {
  32447. source: "./media/characters/neapolitan-ananassa/front.svg",
  32448. extra: 2903 / 2736,
  32449. bottom: 0 / 2903
  32450. }
  32451. },
  32452. side: {
  32453. height: math.unit(15 + 5 / 12, "feet"),
  32454. weight: math.unit(4600, "lb"),
  32455. name: "Side",
  32456. image: {
  32457. source: "./media/characters/neapolitan-ananassa/side.svg",
  32458. extra: 2925 / 2719,
  32459. bottom: 0 / 2925
  32460. }
  32461. },
  32462. back: {
  32463. height: math.unit(15 + 5 / 12, "feet"),
  32464. weight: math.unit(4600, "lb"),
  32465. name: "Back",
  32466. image: {
  32467. source: "./media/characters/neapolitan-ananassa/back.svg",
  32468. extra: 2903 / 2736,
  32469. bottom: 0 / 2903
  32470. }
  32471. },
  32472. },
  32473. [
  32474. {
  32475. name: "Normal",
  32476. height: math.unit(15 + 5 / 12, "feet"),
  32477. default: true
  32478. },
  32479. {
  32480. name: "Post-Millenium",
  32481. height: math.unit(35 + 5 / 12, "feet")
  32482. },
  32483. {
  32484. name: "Post-Era",
  32485. height: math.unit(450 + 5 / 12, "feet")
  32486. },
  32487. ]
  32488. ))
  32489. characterMakers.push(() => makeCharacter(
  32490. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32491. {
  32492. front: {
  32493. height: math.unit(300, "meters"),
  32494. weight: math.unit(125000, "tonnes"),
  32495. name: "Front",
  32496. image: {
  32497. source: "./media/characters/pazuzu/front.svg",
  32498. extra: 877 / 794,
  32499. bottom: 47 / 924
  32500. }
  32501. },
  32502. },
  32503. [
  32504. {
  32505. name: "Macro",
  32506. height: math.unit(300, "meters"),
  32507. default: true
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32513. {
  32514. side: {
  32515. height: math.unit(10 + 7 / 12, "feet"),
  32516. weight: math.unit(2.5, "tons"),
  32517. name: "Side",
  32518. image: {
  32519. source: "./media/characters/aasha/side.svg",
  32520. extra: 1345 / 1245,
  32521. bottom: 111 / 1456
  32522. }
  32523. },
  32524. back: {
  32525. height: math.unit(10 + 7 / 12, "feet"),
  32526. weight: math.unit(2.5, "tons"),
  32527. name: "Back",
  32528. image: {
  32529. source: "./media/characters/aasha/back.svg",
  32530. extra: 1133 / 1057,
  32531. bottom: 257 / 1390
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Normal",
  32538. height: math.unit(10 + 7 / 12, "feet"),
  32539. default: true
  32540. },
  32541. ]
  32542. ))
  32543. characterMakers.push(() => makeCharacter(
  32544. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32545. {
  32546. front: {
  32547. height: math.unit(6 + 3 / 12, "feet"),
  32548. name: "Front",
  32549. image: {
  32550. source: "./media/characters/nevan/front.svg",
  32551. extra: 704 / 704,
  32552. bottom: 28 / 732
  32553. }
  32554. },
  32555. back: {
  32556. height: math.unit(6 + 3 / 12, "feet"),
  32557. name: "Back",
  32558. image: {
  32559. source: "./media/characters/nevan/back.svg",
  32560. extra: 714 / 714,
  32561. bottom: 21 / 735
  32562. }
  32563. },
  32564. frontFlaccid: {
  32565. height: math.unit(6 + 3 / 12, "feet"),
  32566. name: "Front (Flaccid)",
  32567. image: {
  32568. source: "./media/characters/nevan/front-flaccid.svg",
  32569. extra: 704 / 704,
  32570. bottom: 28 / 732
  32571. }
  32572. },
  32573. frontErect: {
  32574. height: math.unit(6 + 3 / 12, "feet"),
  32575. name: "Front (Erect)",
  32576. image: {
  32577. source: "./media/characters/nevan/front-erect.svg",
  32578. extra: 704 / 704,
  32579. bottom: 28 / 732
  32580. }
  32581. },
  32582. backFlaccid: {
  32583. height: math.unit(6 + 3 / 12, "feet"),
  32584. name: "Back (Flaccid)",
  32585. image: {
  32586. source: "./media/characters/nevan/back-flaccid.svg",
  32587. extra: 714 / 714,
  32588. bottom: 21 / 735
  32589. }
  32590. },
  32591. },
  32592. [
  32593. {
  32594. name: "Normal",
  32595. height: math.unit(6 + 3 / 12, "feet"),
  32596. default: true
  32597. },
  32598. ]
  32599. ))
  32600. characterMakers.push(() => makeCharacter(
  32601. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32602. {
  32603. front: {
  32604. height: math.unit(4, "feet"),
  32605. name: "Front",
  32606. image: {
  32607. source: "./media/characters/arhan/front.svg",
  32608. extra: 3368 / 3133,
  32609. bottom: 0 / 3368
  32610. }
  32611. },
  32612. side: {
  32613. height: math.unit(4, "feet"),
  32614. name: "Side",
  32615. image: {
  32616. source: "./media/characters/arhan/side.svg",
  32617. extra: 3347 / 3105,
  32618. bottom: 0 / 3347
  32619. }
  32620. },
  32621. tongue: {
  32622. height: math.unit(1.42, "feet"),
  32623. name: "Tongue",
  32624. image: {
  32625. source: "./media/characters/arhan/tongue.svg"
  32626. }
  32627. },
  32628. head: {
  32629. height: math.unit(0.85, "feet"),
  32630. name: "Head",
  32631. image: {
  32632. source: "./media/characters/arhan/head.svg"
  32633. }
  32634. },
  32635. },
  32636. [
  32637. {
  32638. name: "Normal",
  32639. height: math.unit(4, "feet"),
  32640. default: true
  32641. },
  32642. ]
  32643. ))
  32644. characterMakers.push(() => makeCharacter(
  32645. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32646. {
  32647. front: {
  32648. height: math.unit(5 + 7.5 / 12, "feet"),
  32649. weight: math.unit(120, "lb"),
  32650. name: "Front",
  32651. image: {
  32652. source: "./media/characters/digi-duncan/front.svg",
  32653. extra: 330 / 326,
  32654. bottom: 16 / 346
  32655. }
  32656. },
  32657. side: {
  32658. height: math.unit(5 + 7.5 / 12, "feet"),
  32659. weight: math.unit(120, "lb"),
  32660. name: "Side",
  32661. image: {
  32662. source: "./media/characters/digi-duncan/side.svg",
  32663. extra: 341 / 337,
  32664. bottom: 1 / 342
  32665. }
  32666. },
  32667. back: {
  32668. height: math.unit(5 + 7.5 / 12, "feet"),
  32669. weight: math.unit(120, "lb"),
  32670. name: "Back",
  32671. image: {
  32672. source: "./media/characters/digi-duncan/back.svg",
  32673. extra: 330 / 326,
  32674. bottom: 12 / 342
  32675. }
  32676. },
  32677. },
  32678. [
  32679. {
  32680. name: "Speck",
  32681. height: math.unit(0.25, "mm")
  32682. },
  32683. {
  32684. name: "Micro",
  32685. height: math.unit(5, "mm")
  32686. },
  32687. {
  32688. name: "Tiny",
  32689. height: math.unit(0.5, "inches"),
  32690. default: true
  32691. },
  32692. {
  32693. name: "Human",
  32694. height: math.unit(5 + 7.5 / 12, "feet")
  32695. },
  32696. {
  32697. name: "Minigiant",
  32698. height: math.unit(8 + 5.25, "feet")
  32699. },
  32700. {
  32701. name: "Giant",
  32702. height: math.unit(2000, "feet")
  32703. },
  32704. {
  32705. name: "Mega",
  32706. height: math.unit(371.1, "miles")
  32707. },
  32708. ]
  32709. ))
  32710. characterMakers.push(() => makeCharacter(
  32711. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32712. {
  32713. front: {
  32714. height: math.unit(2, "meters"),
  32715. weight: math.unit(350, "kg"),
  32716. name: "Front",
  32717. image: {
  32718. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32719. extra: 898 / 838,
  32720. bottom: 9 / 907
  32721. }
  32722. },
  32723. },
  32724. [
  32725. {
  32726. name: "Micro",
  32727. height: math.unit(8, "meters")
  32728. },
  32729. {
  32730. name: "Normal",
  32731. height: math.unit(50, "meters"),
  32732. default: true
  32733. },
  32734. {
  32735. name: "Macro",
  32736. height: math.unit(500, "meters")
  32737. },
  32738. ]
  32739. ))
  32740. characterMakers.push(() => makeCharacter(
  32741. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32742. {
  32743. front: {
  32744. height: math.unit(6 + 6 / 12, "feet"),
  32745. name: "Front",
  32746. image: {
  32747. source: "./media/characters/khardesh/front.svg",
  32748. extra: 1788/1596,
  32749. bottom: 66/1854
  32750. }
  32751. },
  32752. back: {
  32753. height: math.unit(6 + 6 / 12, "feet"),
  32754. name: "Back",
  32755. image: {
  32756. source: "./media/characters/khardesh/back.svg",
  32757. extra: 1781/1584,
  32758. bottom: 68/1849
  32759. }
  32760. },
  32761. },
  32762. [
  32763. {
  32764. name: "Normal",
  32765. height: math.unit(6 + 6 / 12, "feet"),
  32766. default: true
  32767. },
  32768. {
  32769. name: "Normal+",
  32770. height: math.unit(4, "meters")
  32771. },
  32772. {
  32773. name: "Macro",
  32774. height: math.unit(50, "meters")
  32775. },
  32776. {
  32777. name: "Macro+",
  32778. height: math.unit(100, "meters")
  32779. },
  32780. {
  32781. name: "Megamacro",
  32782. height: math.unit(20, "km")
  32783. },
  32784. ]
  32785. ))
  32786. characterMakers.push(() => makeCharacter(
  32787. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32788. {
  32789. front: {
  32790. height: math.unit(6, "feet"),
  32791. weight: math.unit(150, "lb"),
  32792. name: "Front",
  32793. image: {
  32794. source: "./media/characters/kosho/front.svg",
  32795. extra: 1847 / 1847,
  32796. bottom: 86 / 1933
  32797. }
  32798. },
  32799. },
  32800. [
  32801. {
  32802. name: "Second-stage micro",
  32803. height: math.unit(0.5, "inches")
  32804. },
  32805. {
  32806. name: "First-stage micro",
  32807. height: math.unit(6, "inches")
  32808. },
  32809. {
  32810. name: "Normal",
  32811. height: math.unit(6, "feet"),
  32812. default: true
  32813. },
  32814. {
  32815. name: "First-stage macro",
  32816. height: math.unit(72, "feet")
  32817. },
  32818. {
  32819. name: "Second-stage macro",
  32820. height: math.unit(864, "feet")
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32826. {
  32827. normal: {
  32828. height: math.unit(4 + 6 / 12, "feet"),
  32829. name: "Normal",
  32830. image: {
  32831. source: "./media/characters/hydra/normal.svg",
  32832. extra: 2833 / 2634,
  32833. bottom: 68 / 2901
  32834. }
  32835. },
  32836. smol: {
  32837. height: math.unit(0.705, "inches"),
  32838. name: "Smol",
  32839. image: {
  32840. source: "./media/characters/hydra/smol.svg",
  32841. extra: 2715 / 2540,
  32842. bottom: 0 / 2715
  32843. }
  32844. },
  32845. },
  32846. [
  32847. {
  32848. name: "Normal",
  32849. height: math.unit(4 + 6 / 12, "feet"),
  32850. default: true
  32851. }
  32852. ]
  32853. ))
  32854. characterMakers.push(() => makeCharacter(
  32855. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32856. {
  32857. front: {
  32858. height: math.unit(0.6, "cm"),
  32859. name: "Front",
  32860. image: {
  32861. source: "./media/characters/daz/front.svg",
  32862. extra: 1682 / 1164,
  32863. bottom: 42 / 1724
  32864. }
  32865. },
  32866. },
  32867. [
  32868. {
  32869. name: "Normal",
  32870. height: math.unit(0.6, "cm"),
  32871. default: true
  32872. },
  32873. ]
  32874. ))
  32875. characterMakers.push(() => makeCharacter(
  32876. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32877. {
  32878. front: {
  32879. height: math.unit(6, "feet"),
  32880. weight: math.unit(235, "lb"),
  32881. name: "Front",
  32882. image: {
  32883. source: "./media/characters/theo-pangolin/front.svg",
  32884. extra: 1996 / 1969,
  32885. bottom: 115 / 2111
  32886. }
  32887. },
  32888. back: {
  32889. height: math.unit(6, "feet"),
  32890. weight: math.unit(235, "lb"),
  32891. name: "Back",
  32892. image: {
  32893. source: "./media/characters/theo-pangolin/back.svg",
  32894. extra: 1979 / 1979,
  32895. bottom: 40 / 2019
  32896. }
  32897. },
  32898. feral: {
  32899. height: math.unit(2, "feet"),
  32900. weight: math.unit(30, "lb"),
  32901. name: "Feral",
  32902. image: {
  32903. source: "./media/characters/theo-pangolin/feral.svg",
  32904. extra: 803 / 791,
  32905. bottom: 181 / 984
  32906. }
  32907. },
  32908. footFive: {
  32909. height: math.unit(1.43, "feet"),
  32910. name: "Foot (Five Toes)",
  32911. image: {
  32912. source: "./media/characters/theo-pangolin/foot-five.svg"
  32913. }
  32914. },
  32915. footFour: {
  32916. height: math.unit(1.43, "feet"),
  32917. name: "Foot (Four Toes)",
  32918. image: {
  32919. source: "./media/characters/theo-pangolin/foot-four.svg"
  32920. }
  32921. },
  32922. handFour: {
  32923. height: math.unit(0.81, "feet"),
  32924. name: "Hand (Four Fingers)",
  32925. image: {
  32926. source: "./media/characters/theo-pangolin/hand-four.svg"
  32927. }
  32928. },
  32929. handThree: {
  32930. height: math.unit(0.81, "feet"),
  32931. name: "Hand (Three Fingers)",
  32932. image: {
  32933. source: "./media/characters/theo-pangolin/hand-three.svg"
  32934. }
  32935. },
  32936. headFront: {
  32937. height: math.unit(1.37, "feet"),
  32938. name: "Head (Front)",
  32939. image: {
  32940. source: "./media/characters/theo-pangolin/head-front.svg"
  32941. }
  32942. },
  32943. headSide: {
  32944. height: math.unit(1.43, "feet"),
  32945. name: "Head (Side)",
  32946. image: {
  32947. source: "./media/characters/theo-pangolin/head-side.svg"
  32948. }
  32949. },
  32950. tongue: {
  32951. height: math.unit(2.29, "feet"),
  32952. name: "Tongue",
  32953. image: {
  32954. source: "./media/characters/theo-pangolin/tongue.svg"
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Normal",
  32961. height: math.unit(6, "feet")
  32962. },
  32963. {
  32964. name: "Macro",
  32965. height: math.unit(400, "feet"),
  32966. default: true
  32967. },
  32968. ]
  32969. ))
  32970. characterMakers.push(() => makeCharacter(
  32971. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32972. {
  32973. front: {
  32974. height: math.unit(6, "inches"),
  32975. weight: math.unit(0.036, "kg"),
  32976. name: "Front",
  32977. image: {
  32978. source: "./media/characters/renée/front.svg",
  32979. extra: 900 / 886,
  32980. bottom: 8 / 908
  32981. }
  32982. },
  32983. },
  32984. [
  32985. {
  32986. name: "Nano",
  32987. height: math.unit(1, "nm")
  32988. },
  32989. {
  32990. name: "Micro",
  32991. height: math.unit(1, "mm")
  32992. },
  32993. {
  32994. name: "Normal",
  32995. height: math.unit(6, "inches")
  32996. },
  32997. {
  32998. name: "Macro",
  32999. height: math.unit(2000, "feet"),
  33000. default: true
  33001. },
  33002. {
  33003. name: "Megamacro",
  33004. height: math.unit(2, "km")
  33005. },
  33006. {
  33007. name: "Gigamacro",
  33008. height: math.unit(2000, "km")
  33009. },
  33010. {
  33011. name: "Teramacro",
  33012. height: math.unit(250000, "km")
  33013. },
  33014. ]
  33015. ))
  33016. characterMakers.push(() => makeCharacter(
  33017. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33018. {
  33019. front: {
  33020. height: math.unit(4, "meters"),
  33021. weight: math.unit(150, "kg"),
  33022. name: "Front",
  33023. image: {
  33024. source: "./media/characters/caledvwlch/front.svg",
  33025. extra: 1757/1537,
  33026. bottom: 31/1788
  33027. }
  33028. },
  33029. side: {
  33030. height: math.unit(4, "meters"),
  33031. weight: math.unit(150, "kg"),
  33032. name: "Side",
  33033. image: {
  33034. source: "./media/characters/caledvwlch/side.svg",
  33035. extra: 1605 / 1536,
  33036. bottom: 31 / 1636
  33037. }
  33038. },
  33039. back: {
  33040. height: math.unit(4, "meters"),
  33041. weight: math.unit(150, "kg"),
  33042. name: "Back",
  33043. image: {
  33044. source: "./media/characters/caledvwlch/back.svg",
  33045. extra: 1635 / 1565,
  33046. bottom: 27 / 1662
  33047. }
  33048. },
  33049. },
  33050. [
  33051. {
  33052. name: "\"Incognito\"",
  33053. height: math.unit(4, "meters")
  33054. },
  33055. {
  33056. name: "Small rampage",
  33057. height: math.unit(600, "meters")
  33058. },
  33059. {
  33060. name: "Mega",
  33061. height: math.unit(30, "km")
  33062. },
  33063. {
  33064. name: "Home-size",
  33065. height: math.unit(50, "km"),
  33066. default: true
  33067. },
  33068. {
  33069. name: "Giga",
  33070. height: math.unit(300, "km")
  33071. },
  33072. {
  33073. name: "Lounging",
  33074. height: math.unit(11000, "km")
  33075. },
  33076. {
  33077. name: "Planet snacking",
  33078. height: math.unit(2000000, "km")
  33079. },
  33080. ]
  33081. ))
  33082. characterMakers.push(() => makeCharacter(
  33083. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33084. {
  33085. front: {
  33086. height: math.unit(6, "feet"),
  33087. weight: math.unit(215, "lb"),
  33088. name: "Front",
  33089. image: {
  33090. source: "./media/characters/sapphire-svell/front.svg",
  33091. extra: 495 / 455,
  33092. bottom: 20 / 515
  33093. }
  33094. },
  33095. back: {
  33096. height: math.unit(6, "feet"),
  33097. weight: math.unit(216, "lb"),
  33098. name: "Back",
  33099. image: {
  33100. source: "./media/characters/sapphire-svell/back.svg",
  33101. extra: 497 / 477,
  33102. bottom: 7 / 504
  33103. }
  33104. },
  33105. maw: {
  33106. height: math.unit(1.57, "feet"),
  33107. name: "Maw",
  33108. image: {
  33109. source: "./media/characters/sapphire-svell/maw.svg"
  33110. }
  33111. },
  33112. foot: {
  33113. height: math.unit(1.07, "feet"),
  33114. name: "Foot",
  33115. image: {
  33116. source: "./media/characters/sapphire-svell/foot.svg"
  33117. }
  33118. },
  33119. toering: {
  33120. height: math.unit(1.7, "inch"),
  33121. name: "Toering",
  33122. image: {
  33123. source: "./media/characters/sapphire-svell/toering.svg"
  33124. }
  33125. },
  33126. },
  33127. [
  33128. {
  33129. name: "Normal",
  33130. height: math.unit(300, "feet"),
  33131. default: true
  33132. },
  33133. {
  33134. name: "Augmented",
  33135. height: math.unit(1250, "feet")
  33136. },
  33137. {
  33138. name: "Unleashed",
  33139. height: math.unit(3000, "feet")
  33140. },
  33141. ]
  33142. ))
  33143. characterMakers.push(() => makeCharacter(
  33144. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33145. {
  33146. side: {
  33147. height: math.unit(2 + 3 / 12, "feet"),
  33148. weight: math.unit(110, "lb"),
  33149. name: "Side",
  33150. image: {
  33151. source: "./media/characters/glitch-flux/side.svg",
  33152. extra: 997 / 805,
  33153. bottom: 20 / 1017
  33154. }
  33155. },
  33156. },
  33157. [
  33158. {
  33159. name: "Normal",
  33160. height: math.unit(2 + 3 / 12, "feet"),
  33161. default: true
  33162. },
  33163. ]
  33164. ))
  33165. characterMakers.push(() => makeCharacter(
  33166. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33167. {
  33168. front: {
  33169. height: math.unit(4, "meters"),
  33170. name: "Front",
  33171. image: {
  33172. source: "./media/characters/mid/front.svg",
  33173. extra: 507 / 476,
  33174. bottom: 17 / 524
  33175. }
  33176. },
  33177. back: {
  33178. height: math.unit(4, "meters"),
  33179. name: "Back",
  33180. image: {
  33181. source: "./media/characters/mid/back.svg",
  33182. extra: 519 / 487,
  33183. bottom: 7 / 526
  33184. }
  33185. },
  33186. stuck: {
  33187. height: math.unit(2.2, "meters"),
  33188. name: "Stuck",
  33189. image: {
  33190. source: "./media/characters/mid/stuck.svg",
  33191. extra: 1951 / 1869,
  33192. bottom: 88 / 2039
  33193. }
  33194. }
  33195. },
  33196. [
  33197. {
  33198. name: "Normal",
  33199. height: math.unit(4, "meters"),
  33200. default: true
  33201. },
  33202. {
  33203. name: "Big",
  33204. height: math.unit(10, "meters")
  33205. },
  33206. {
  33207. name: "Macro",
  33208. height: math.unit(800, "meters")
  33209. },
  33210. {
  33211. name: "Megamacro",
  33212. height: math.unit(100, "km")
  33213. },
  33214. {
  33215. name: "Overgrown",
  33216. height: math.unit(1, "parsec")
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33222. {
  33223. front: {
  33224. height: math.unit(2.5, "meters"),
  33225. weight: math.unit(225, "kg"),
  33226. name: "Front",
  33227. image: {
  33228. source: "./media/characters/iris/front.svg",
  33229. extra: 3348 / 3251,
  33230. bottom: 205 / 3553
  33231. }
  33232. },
  33233. maw: {
  33234. height: math.unit(0.56, "meter"),
  33235. name: "Maw",
  33236. image: {
  33237. source: "./media/characters/iris/maw.svg"
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Mewter cat",
  33244. height: math.unit(1.2, "meters")
  33245. },
  33246. {
  33247. name: "Normal",
  33248. height: math.unit(2.5, "meters"),
  33249. default: true
  33250. },
  33251. {
  33252. name: "Minimacro",
  33253. height: math.unit(18, "feet")
  33254. },
  33255. {
  33256. name: "Macro",
  33257. height: math.unit(140, "feet")
  33258. },
  33259. {
  33260. name: "Macro+",
  33261. height: math.unit(180, "meters")
  33262. },
  33263. {
  33264. name: "Megamacro",
  33265. height: math.unit(2746, "meters")
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33271. {
  33272. front: {
  33273. height: math.unit(6, "feet"),
  33274. weight: math.unit(135, "lb"),
  33275. name: "Front",
  33276. image: {
  33277. source: "./media/characters/axel/front.svg",
  33278. extra: 908 / 908,
  33279. bottom: 58 / 966
  33280. }
  33281. },
  33282. side: {
  33283. height: math.unit(6, "feet"),
  33284. weight: math.unit(135, "lb"),
  33285. name: "Side",
  33286. image: {
  33287. source: "./media/characters/axel/side.svg",
  33288. extra: 958 / 958,
  33289. bottom: 11 / 969
  33290. }
  33291. },
  33292. back: {
  33293. height: math.unit(6, "feet"),
  33294. weight: math.unit(135, "lb"),
  33295. name: "Back",
  33296. image: {
  33297. source: "./media/characters/axel/back.svg",
  33298. extra: 887 / 887,
  33299. bottom: 34 / 921
  33300. }
  33301. },
  33302. head: {
  33303. height: math.unit(1.07, "feet"),
  33304. name: "Head",
  33305. image: {
  33306. source: "./media/characters/axel/head.svg"
  33307. }
  33308. },
  33309. beak: {
  33310. height: math.unit(1.4, "feet"),
  33311. name: "Beak",
  33312. image: {
  33313. source: "./media/characters/axel/beak.svg"
  33314. }
  33315. },
  33316. beakSide: {
  33317. height: math.unit(1.4, "feet"),
  33318. name: "Beak Side",
  33319. image: {
  33320. source: "./media/characters/axel/beak-side.svg"
  33321. }
  33322. },
  33323. sheath: {
  33324. height: math.unit(0.5, "feet"),
  33325. name: "Sheath",
  33326. image: {
  33327. source: "./media/characters/axel/sheath.svg"
  33328. }
  33329. },
  33330. dick: {
  33331. height: math.unit(0.98, "feet"),
  33332. name: "Dick",
  33333. image: {
  33334. source: "./media/characters/axel/dick.svg"
  33335. }
  33336. },
  33337. },
  33338. [
  33339. {
  33340. name: "Macro",
  33341. height: math.unit(68, "meters"),
  33342. default: true
  33343. },
  33344. ]
  33345. ))
  33346. characterMakers.push(() => makeCharacter(
  33347. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33348. {
  33349. front: {
  33350. height: math.unit(3.5, "meters"),
  33351. weight: math.unit(1200, "kg"),
  33352. name: "Front",
  33353. image: {
  33354. source: "./media/characters/joanna/front.svg",
  33355. extra: 1596 / 1488,
  33356. bottom: 29 / 1625
  33357. }
  33358. },
  33359. back: {
  33360. height: math.unit(3.5, "meters"),
  33361. weight: math.unit(1200, "kg"),
  33362. name: "Back",
  33363. image: {
  33364. source: "./media/characters/joanna/back.svg",
  33365. extra: 1594 / 1495,
  33366. bottom: 26 / 1620
  33367. }
  33368. },
  33369. frontShorts: {
  33370. height: math.unit(3.5, "meters"),
  33371. weight: math.unit(1200, "kg"),
  33372. name: "Front (Shorts)",
  33373. image: {
  33374. source: "./media/characters/joanna/front-shorts.svg",
  33375. extra: 1596 / 1488,
  33376. bottom: 29 / 1625
  33377. }
  33378. },
  33379. frontBiker: {
  33380. height: math.unit(3.5, "meters"),
  33381. weight: math.unit(1200, "kg"),
  33382. name: "Front (Biker)",
  33383. image: {
  33384. source: "./media/characters/joanna/front-biker.svg",
  33385. extra: 1596 / 1488,
  33386. bottom: 29 / 1625
  33387. }
  33388. },
  33389. backBiker: {
  33390. height: math.unit(3.5, "meters"),
  33391. weight: math.unit(1200, "kg"),
  33392. name: "Back (Biker)",
  33393. image: {
  33394. source: "./media/characters/joanna/back-biker.svg",
  33395. extra: 1594 / 1495,
  33396. bottom: 88 / 1682
  33397. }
  33398. },
  33399. bikeLeft: {
  33400. height: math.unit(2.4, "meters"),
  33401. weight: math.unit(1600, "kg"),
  33402. name: "Bike (Left)",
  33403. image: {
  33404. source: "./media/characters/joanna/bike-left.svg",
  33405. extra: 720 / 720,
  33406. bottom: 8 / 728
  33407. }
  33408. },
  33409. bikeRight: {
  33410. height: math.unit(2.4, "meters"),
  33411. weight: math.unit(1600, "kg"),
  33412. name: "Bike (Right)",
  33413. image: {
  33414. source: "./media/characters/joanna/bike-right.svg",
  33415. extra: 720 / 720,
  33416. bottom: 8 / 728
  33417. }
  33418. },
  33419. },
  33420. [
  33421. {
  33422. name: "Incognito",
  33423. height: math.unit(3.5, "meters")
  33424. },
  33425. {
  33426. name: "Casual Big",
  33427. height: math.unit(200, "meters")
  33428. },
  33429. {
  33430. name: "Macro",
  33431. height: math.unit(600, "meters")
  33432. },
  33433. {
  33434. name: "Original",
  33435. height: math.unit(20, "km"),
  33436. default: true
  33437. },
  33438. {
  33439. name: "Giga",
  33440. height: math.unit(400, "km")
  33441. },
  33442. {
  33443. name: "Lounging",
  33444. height: math.unit(1500, "km")
  33445. },
  33446. {
  33447. name: "Planetary",
  33448. height: math.unit(200000, "km")
  33449. },
  33450. ]
  33451. ))
  33452. characterMakers.push(() => makeCharacter(
  33453. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33454. {
  33455. front: {
  33456. height: math.unit(6, "feet"),
  33457. weight: math.unit(150, "lb"),
  33458. name: "Front",
  33459. image: {
  33460. source: "./media/characters/hugo-sigil/front.svg",
  33461. extra: 522 / 500,
  33462. bottom: 2 / 524
  33463. }
  33464. },
  33465. back: {
  33466. height: math.unit(6, "feet"),
  33467. weight: math.unit(150, "lb"),
  33468. name: "Back",
  33469. image: {
  33470. source: "./media/characters/hugo-sigil/back.svg",
  33471. extra: 519 / 495,
  33472. bottom: 5 / 524
  33473. }
  33474. },
  33475. maw: {
  33476. height: math.unit(1.4, "feet"),
  33477. weight: math.unit(150, "lb"),
  33478. name: "Maw",
  33479. image: {
  33480. source: "./media/characters/hugo-sigil/maw.svg"
  33481. }
  33482. },
  33483. feet: {
  33484. height: math.unit(1.56, "feet"),
  33485. weight: math.unit(150, "lb"),
  33486. name: "Feet",
  33487. image: {
  33488. source: "./media/characters/hugo-sigil/feet.svg",
  33489. extra: 177 / 177,
  33490. bottom: 12 / 189
  33491. }
  33492. },
  33493. },
  33494. [
  33495. {
  33496. name: "Normal",
  33497. height: math.unit(6, "feet")
  33498. },
  33499. {
  33500. name: "Macro",
  33501. height: math.unit(200, "feet"),
  33502. default: true
  33503. },
  33504. ]
  33505. ))
  33506. characterMakers.push(() => makeCharacter(
  33507. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33508. {
  33509. front: {
  33510. height: math.unit(6, "feet"),
  33511. weight: math.unit(150, "lb"),
  33512. name: "Front",
  33513. image: {
  33514. source: "./media/characters/peri/front.svg",
  33515. extra: 2354 / 2233,
  33516. bottom: 49 / 2403
  33517. }
  33518. },
  33519. },
  33520. [
  33521. {
  33522. name: "Really Small",
  33523. height: math.unit(1, "nm")
  33524. },
  33525. {
  33526. name: "Micro",
  33527. height: math.unit(4, "inches")
  33528. },
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(7, "inches"),
  33532. default: true
  33533. },
  33534. {
  33535. name: "Macro",
  33536. height: math.unit(400, "feet")
  33537. },
  33538. {
  33539. name: "Megamacro",
  33540. height: math.unit(100, "miles")
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33546. {
  33547. frontSlim: {
  33548. height: math.unit(7, "feet"),
  33549. name: "Front (Slim)",
  33550. image: {
  33551. source: "./media/characters/issilora/front-slim.svg",
  33552. extra: 529 / 449,
  33553. bottom: 53 / 582
  33554. }
  33555. },
  33556. sideSlim: {
  33557. height: math.unit(7, "feet"),
  33558. name: "Side (Slim)",
  33559. image: {
  33560. source: "./media/characters/issilora/side-slim.svg",
  33561. extra: 570 / 480,
  33562. bottom: 30 / 600
  33563. }
  33564. },
  33565. backSlim: {
  33566. height: math.unit(7, "feet"),
  33567. name: "Back (Slim)",
  33568. image: {
  33569. source: "./media/characters/issilora/back-slim.svg",
  33570. extra: 537 / 455,
  33571. bottom: 46 / 583
  33572. }
  33573. },
  33574. frontBuff: {
  33575. height: math.unit(7, "feet"),
  33576. name: "Front (Buff)",
  33577. image: {
  33578. source: "./media/characters/issilora/front-buff.svg",
  33579. extra: 2310 / 2035,
  33580. bottom: 335 / 2645
  33581. }
  33582. },
  33583. head: {
  33584. height: math.unit(1.94, "feet"),
  33585. name: "Head",
  33586. image: {
  33587. source: "./media/characters/issilora/head.svg"
  33588. }
  33589. },
  33590. },
  33591. [
  33592. {
  33593. name: "Minimum",
  33594. height: math.unit(7, "feet")
  33595. },
  33596. {
  33597. name: "Comfortable",
  33598. height: math.unit(17, "feet")
  33599. },
  33600. {
  33601. name: "Fun Size",
  33602. height: math.unit(47, "feet")
  33603. },
  33604. {
  33605. name: "Natural Macro",
  33606. height: math.unit(137, "feet"),
  33607. default: true
  33608. },
  33609. {
  33610. name: "Maximum Kaiju",
  33611. height: math.unit(397, "feet")
  33612. },
  33613. ]
  33614. ))
  33615. characterMakers.push(() => makeCharacter(
  33616. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33617. {
  33618. front: {
  33619. height: math.unit(50 + 9/12, "feet"),
  33620. weight: math.unit(32.8, "tons"),
  33621. name: "Front",
  33622. image: {
  33623. source: "./media/characters/irb'iiritaahn/front.svg",
  33624. extra: 1878/1826,
  33625. bottom: 326/2204
  33626. }
  33627. },
  33628. back: {
  33629. height: math.unit(50 + 9/12, "feet"),
  33630. weight: math.unit(32.8, "tons"),
  33631. name: "Back",
  33632. image: {
  33633. source: "./media/characters/irb'iiritaahn/back.svg",
  33634. extra: 2052/2018,
  33635. bottom: 152/2204
  33636. }
  33637. },
  33638. head: {
  33639. height: math.unit(12.86, "feet"),
  33640. name: "Head",
  33641. image: {
  33642. source: "./media/characters/irb'iiritaahn/head.svg"
  33643. }
  33644. },
  33645. maw: {
  33646. height: math.unit(9.66, "feet"),
  33647. name: "Maw",
  33648. image: {
  33649. source: "./media/characters/irb'iiritaahn/maw.svg"
  33650. }
  33651. },
  33652. frontDick: {
  33653. height: math.unit(8.78461, "feet"),
  33654. name: "Front Dick",
  33655. image: {
  33656. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33657. }
  33658. },
  33659. rearDick: {
  33660. height: math.unit(8.78461, "feet"),
  33661. name: "Rear Dick",
  33662. image: {
  33663. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33664. }
  33665. },
  33666. rearDickUnfolded: {
  33667. height: math.unit(8.78, "feet"),
  33668. name: "Rear Dick (Unfolded)",
  33669. image: {
  33670. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33671. }
  33672. },
  33673. wings: {
  33674. height: math.unit(43, "feet"),
  33675. name: "Wings",
  33676. image: {
  33677. source: "./media/characters/irb'iiritaahn/wings.svg"
  33678. }
  33679. },
  33680. },
  33681. [
  33682. {
  33683. name: "Macro",
  33684. height: math.unit(50 + 9/12, "feet"),
  33685. default: true
  33686. },
  33687. ]
  33688. ))
  33689. characterMakers.push(() => makeCharacter(
  33690. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33691. {
  33692. front: {
  33693. height: math.unit(205, "cm"),
  33694. weight: math.unit(102, "kg"),
  33695. name: "Front",
  33696. image: {
  33697. source: "./media/characters/irbisgreif/front.svg",
  33698. extra: 785/706,
  33699. bottom: 13/798
  33700. }
  33701. },
  33702. back: {
  33703. height: math.unit(205, "cm"),
  33704. weight: math.unit(102, "kg"),
  33705. name: "Back",
  33706. image: {
  33707. source: "./media/characters/irbisgreif/back.svg",
  33708. extra: 713/701,
  33709. bottom: 26/739
  33710. }
  33711. },
  33712. frontDressed: {
  33713. height: math.unit(216, "cm"),
  33714. weight: math.unit(102, "kg"),
  33715. name: "Front-dressed",
  33716. image: {
  33717. source: "./media/characters/irbisgreif/front-dressed.svg",
  33718. extra: 902/776,
  33719. bottom: 14/916
  33720. }
  33721. },
  33722. sideDressed: {
  33723. height: math.unit(195, "cm"),
  33724. weight: math.unit(102, "kg"),
  33725. name: "Side-dressed",
  33726. image: {
  33727. source: "./media/characters/irbisgreif/side-dressed.svg",
  33728. extra: 788/688,
  33729. bottom: 21/809
  33730. }
  33731. },
  33732. backDressed: {
  33733. height: math.unit(216, "cm"),
  33734. weight: math.unit(102, "kg"),
  33735. name: "Back-dressed",
  33736. image: {
  33737. source: "./media/characters/irbisgreif/back-dressed.svg",
  33738. extra: 901/783,
  33739. bottom: 10/911
  33740. }
  33741. },
  33742. dick: {
  33743. height: math.unit(0.49, "feet"),
  33744. name: "Dick",
  33745. image: {
  33746. source: "./media/characters/irbisgreif/dick.svg"
  33747. }
  33748. },
  33749. wingTop: {
  33750. height: math.unit(1.93 , "feet"),
  33751. name: "Wing-top",
  33752. image: {
  33753. source: "./media/characters/irbisgreif/wing-top.svg"
  33754. }
  33755. },
  33756. wingBottom: {
  33757. height: math.unit(1.93 , "feet"),
  33758. name: "Wing-bottom",
  33759. image: {
  33760. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33761. }
  33762. },
  33763. },
  33764. [
  33765. {
  33766. name: "Normal",
  33767. height: math.unit(216, "cm"),
  33768. default: true
  33769. },
  33770. ]
  33771. ))
  33772. characterMakers.push(() => makeCharacter(
  33773. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33774. {
  33775. front: {
  33776. height: math.unit(6, "feet"),
  33777. weight: math.unit(150, "lb"),
  33778. name: "Front",
  33779. image: {
  33780. source: "./media/characters/pride/front.svg",
  33781. extra: 1299/1230,
  33782. bottom: 18/1317
  33783. }
  33784. },
  33785. },
  33786. [
  33787. {
  33788. name: "Normal",
  33789. height: math.unit(7, "feet")
  33790. },
  33791. {
  33792. name: "Mini-macro",
  33793. height: math.unit(11, "feet")
  33794. },
  33795. {
  33796. name: "Macro",
  33797. height: math.unit(15, "meters"),
  33798. default: true
  33799. },
  33800. {
  33801. name: "Macro+",
  33802. height: math.unit(40, "meters")
  33803. },
  33804. ]
  33805. ))
  33806. characterMakers.push(() => makeCharacter(
  33807. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33808. {
  33809. front: {
  33810. height: math.unit(4 + 2 / 12, "feet"),
  33811. weight: math.unit(95, "lb"),
  33812. name: "Front",
  33813. image: {
  33814. source: "./media/characters/vaelophis-nyx/front.svg",
  33815. extra: 2532/2330,
  33816. bottom: 0/2532
  33817. }
  33818. },
  33819. back: {
  33820. height: math.unit(4 + 2 / 12, "feet"),
  33821. weight: math.unit(95, "lb"),
  33822. name: "Back",
  33823. image: {
  33824. source: "./media/characters/vaelophis-nyx/back.svg",
  33825. extra: 2484/2361,
  33826. bottom: 0/2484
  33827. }
  33828. },
  33829. feralSide: {
  33830. height: math.unit(2 + 1/12, "feet"),
  33831. weight: math.unit(20, "lb"),
  33832. name: "Feral (Side)",
  33833. image: {
  33834. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33835. extra: 1721/1581,
  33836. bottom: 70/1791
  33837. }
  33838. },
  33839. feralLazing: {
  33840. height: math.unit(1.08, "feet"),
  33841. weight: math.unit(20, "lb"),
  33842. name: "Feral (Lazing)",
  33843. image: {
  33844. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33845. extra: 822/822,
  33846. bottom: 248/1070
  33847. }
  33848. },
  33849. ear: {
  33850. height: math.unit(0.416, "feet"),
  33851. name: "Ear",
  33852. image: {
  33853. source: "./media/characters/vaelophis-nyx/ear.svg"
  33854. }
  33855. },
  33856. eye: {
  33857. height: math.unit(0.0748, "feet"),
  33858. name: "Eye",
  33859. image: {
  33860. source: "./media/characters/vaelophis-nyx/eye.svg"
  33861. }
  33862. },
  33863. mouth: {
  33864. height: math.unit(0.378, "feet"),
  33865. name: "Mouth",
  33866. image: {
  33867. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33868. }
  33869. },
  33870. spade: {
  33871. height: math.unit(0.55, "feet"),
  33872. name: "Spade",
  33873. image: {
  33874. source: "./media/characters/vaelophis-nyx/spade.svg"
  33875. }
  33876. },
  33877. },
  33878. [
  33879. {
  33880. name: "Normal",
  33881. height: math.unit(4 + 2/12, "feet"),
  33882. default: true
  33883. },
  33884. ]
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33888. {
  33889. front: {
  33890. height: math.unit(7, "feet"),
  33891. weight: math.unit(231, "lb"),
  33892. name: "Front",
  33893. image: {
  33894. source: "./media/characters/flux/front.svg",
  33895. extra: 919/871,
  33896. bottom: 0/919
  33897. }
  33898. },
  33899. back: {
  33900. height: math.unit(7, "feet"),
  33901. weight: math.unit(231, "lb"),
  33902. name: "Back",
  33903. image: {
  33904. source: "./media/characters/flux/back.svg",
  33905. extra: 1040/992,
  33906. bottom: 0/1040
  33907. }
  33908. },
  33909. frontDressed: {
  33910. height: math.unit(7, "feet"),
  33911. weight: math.unit(231, "lb"),
  33912. name: "Front (Dressed)",
  33913. image: {
  33914. source: "./media/characters/flux/front-dressed.svg",
  33915. extra: 919/871,
  33916. bottom: 0/919
  33917. }
  33918. },
  33919. feralSide: {
  33920. height: math.unit(5, "feet"),
  33921. weight: math.unit(150, "lb"),
  33922. name: "Feral (Side)",
  33923. image: {
  33924. source: "./media/characters/flux/feral-side.svg",
  33925. extra: 598/528,
  33926. bottom: 28/626
  33927. }
  33928. },
  33929. head: {
  33930. height: math.unit(1.585, "feet"),
  33931. name: "Head",
  33932. image: {
  33933. source: "./media/characters/flux/head.svg"
  33934. }
  33935. },
  33936. headSide: {
  33937. height: math.unit(1.74, "feet"),
  33938. name: "Head (Side)",
  33939. image: {
  33940. source: "./media/characters/flux/head-side.svg"
  33941. }
  33942. },
  33943. headSideFire: {
  33944. height: math.unit(1.76, "feet"),
  33945. name: "Head (Side, Fire)",
  33946. image: {
  33947. source: "./media/characters/flux/head-side-fire.svg"
  33948. }
  33949. },
  33950. },
  33951. [
  33952. {
  33953. name: "Normal",
  33954. height: math.unit(7, "feet"),
  33955. default: true
  33956. },
  33957. ]
  33958. ))
  33959. characterMakers.push(() => makeCharacter(
  33960. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33961. {
  33962. front: {
  33963. height: math.unit(9, "feet"),
  33964. weight: math.unit(1012, "lb"),
  33965. name: "Front",
  33966. image: {
  33967. source: "./media/characters/ulfra-lupae/front.svg",
  33968. extra: 1083/1011,
  33969. bottom: 67/1150
  33970. }
  33971. },
  33972. },
  33973. [
  33974. {
  33975. name: "Micro",
  33976. height: math.unit(6, "inches")
  33977. },
  33978. {
  33979. name: "Socializing",
  33980. height: math.unit(6 + 5/12, "feet")
  33981. },
  33982. {
  33983. name: "Normal",
  33984. height: math.unit(9, "feet"),
  33985. default: true
  33986. },
  33987. {
  33988. name: "Macro",
  33989. height: math.unit(150, "feet")
  33990. },
  33991. ]
  33992. ))
  33993. characterMakers.push(() => makeCharacter(
  33994. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33995. {
  33996. front: {
  33997. height: math.unit(5 + 2/12, "feet"),
  33998. weight: math.unit(120, "lb"),
  33999. name: "Front",
  34000. image: {
  34001. source: "./media/characters/timber/front.svg",
  34002. extra: 2814/2705,
  34003. bottom: 181/2995
  34004. }
  34005. },
  34006. },
  34007. [
  34008. {
  34009. name: "Normal",
  34010. height: math.unit(5 + 2/12, "feet"),
  34011. default: true
  34012. },
  34013. ]
  34014. ))
  34015. characterMakers.push(() => makeCharacter(
  34016. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34017. {
  34018. front: {
  34019. height: math.unit(9, "feet"),
  34020. name: "Front",
  34021. image: {
  34022. source: "./media/characters/nicki/front.svg",
  34023. extra: 1240/990,
  34024. bottom: 45/1285
  34025. },
  34026. form: "anthro",
  34027. default: true
  34028. },
  34029. side: {
  34030. height: math.unit(9, "feet"),
  34031. name: "Side",
  34032. image: {
  34033. source: "./media/characters/nicki/side.svg",
  34034. extra: 1047/973,
  34035. bottom: 61/1108
  34036. },
  34037. form: "anthro"
  34038. },
  34039. back: {
  34040. height: math.unit(9, "feet"),
  34041. name: "Back",
  34042. image: {
  34043. source: "./media/characters/nicki/back.svg",
  34044. extra: 1006/965,
  34045. bottom: 39/1045
  34046. },
  34047. form: "anthro"
  34048. },
  34049. taur: {
  34050. height: math.unit(15, "feet"),
  34051. name: "Taur",
  34052. image: {
  34053. source: "./media/characters/nicki/taur.svg",
  34054. extra: 1592/1347,
  34055. bottom: 0/1592
  34056. },
  34057. form: "taur",
  34058. default: true
  34059. },
  34060. },
  34061. [
  34062. {
  34063. name: "Normal",
  34064. height: math.unit(9, "feet"),
  34065. form: "anthro",
  34066. default: true
  34067. },
  34068. {
  34069. name: "Normal",
  34070. height: math.unit(15, "feet"),
  34071. form: "taur",
  34072. default: true
  34073. }
  34074. ],
  34075. {
  34076. "anthro": {
  34077. name: "Anthro",
  34078. default: true
  34079. },
  34080. "taur": {
  34081. name: "Taur"
  34082. }
  34083. }
  34084. ))
  34085. characterMakers.push(() => makeCharacter(
  34086. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34087. {
  34088. front: {
  34089. height: math.unit(7 + 10/12, "feet"),
  34090. weight: math.unit(3.5, "tons"),
  34091. name: "Front",
  34092. image: {
  34093. source: "./media/characters/lee/front.svg",
  34094. extra: 1773/1615,
  34095. bottom: 86/1859
  34096. }
  34097. },
  34098. hand: {
  34099. height: math.unit(1.78, "feet"),
  34100. name: "Hand",
  34101. image: {
  34102. source: "./media/characters/lee/hand.svg"
  34103. }
  34104. },
  34105. maw: {
  34106. height: math.unit(1.18, "feet"),
  34107. name: "Maw",
  34108. image: {
  34109. source: "./media/characters/lee/maw.svg"
  34110. }
  34111. },
  34112. },
  34113. [
  34114. {
  34115. name: "Normal",
  34116. height: math.unit(7 + 10/12, "feet"),
  34117. default: true
  34118. },
  34119. ]
  34120. ))
  34121. characterMakers.push(() => makeCharacter(
  34122. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34123. {
  34124. front: {
  34125. height: math.unit(9, "feet"),
  34126. name: "Front",
  34127. image: {
  34128. source: "./media/characters/guti/front.svg",
  34129. extra: 4551/4355,
  34130. bottom: 123/4674
  34131. }
  34132. },
  34133. tongue: {
  34134. height: math.unit(1, "feet"),
  34135. name: "Tongue",
  34136. image: {
  34137. source: "./media/characters/guti/tongue.svg"
  34138. }
  34139. },
  34140. paw: {
  34141. height: math.unit(1.18, "feet"),
  34142. name: "Paw",
  34143. image: {
  34144. source: "./media/characters/guti/paw.svg"
  34145. }
  34146. },
  34147. },
  34148. [
  34149. {
  34150. name: "Normal",
  34151. height: math.unit(9, "feet"),
  34152. default: true
  34153. },
  34154. ]
  34155. ))
  34156. characterMakers.push(() => makeCharacter(
  34157. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34158. {
  34159. side: {
  34160. height: math.unit(5, "meters"),
  34161. name: "Side",
  34162. image: {
  34163. source: "./media/characters/vesper/side.svg",
  34164. extra: 1605/1518,
  34165. bottom: 0/1605
  34166. }
  34167. },
  34168. },
  34169. [
  34170. {
  34171. name: "Small",
  34172. height: math.unit(5, "meters")
  34173. },
  34174. {
  34175. name: "Sage",
  34176. height: math.unit(100, "meters"),
  34177. default: true
  34178. },
  34179. {
  34180. name: "Fun Size",
  34181. height: math.unit(600, "meters")
  34182. },
  34183. {
  34184. name: "Goddess",
  34185. height: math.unit(20000, "km")
  34186. },
  34187. {
  34188. name: "Maximum",
  34189. height: math.unit(5, "galaxies")
  34190. },
  34191. ]
  34192. ))
  34193. characterMakers.push(() => makeCharacter(
  34194. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34195. {
  34196. front: {
  34197. height: math.unit(6 + 3/12, "feet"),
  34198. weight: math.unit(190, "lb"),
  34199. name: "Front",
  34200. image: {
  34201. source: "./media/characters/gawain/front.svg",
  34202. extra: 2222/2139,
  34203. bottom: 90/2312
  34204. }
  34205. },
  34206. back: {
  34207. height: math.unit(6 + 3/12, "feet"),
  34208. weight: math.unit(190, "lb"),
  34209. name: "Back",
  34210. image: {
  34211. source: "./media/characters/gawain/back.svg",
  34212. extra: 2199/2111,
  34213. bottom: 73/2272
  34214. }
  34215. },
  34216. },
  34217. [
  34218. {
  34219. name: "Normal",
  34220. height: math.unit(6 + 3/12, "feet"),
  34221. default: true
  34222. },
  34223. ]
  34224. ))
  34225. characterMakers.push(() => makeCharacter(
  34226. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34227. {
  34228. side: {
  34229. height: math.unit(3.5, "meters"),
  34230. weight: math.unit(16000, "lb"),
  34231. name: "Side",
  34232. image: {
  34233. source: "./media/characters/dascalti/side.svg",
  34234. extra: 392/273,
  34235. bottom: 47/439
  34236. }
  34237. },
  34238. breath: {
  34239. height: math.unit(7.4, "feet"),
  34240. name: "Breath",
  34241. image: {
  34242. source: "./media/characters/dascalti/breath.svg"
  34243. }
  34244. },
  34245. fed: {
  34246. height: math.unit(3.6, "meters"),
  34247. weight: math.unit(16000, "lb"),
  34248. name: "Fed",
  34249. image: {
  34250. source: "./media/characters/dascalti/fed.svg",
  34251. extra: 1419/820,
  34252. bottom: 95/1514
  34253. }
  34254. },
  34255. },
  34256. [
  34257. {
  34258. name: "Normal",
  34259. height: math.unit(3.5, "meters"),
  34260. default: true
  34261. },
  34262. ]
  34263. ))
  34264. characterMakers.push(() => makeCharacter(
  34265. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34266. {
  34267. front: {
  34268. height: math.unit(3 + 5/12, "feet"),
  34269. name: "Front",
  34270. image: {
  34271. source: "./media/characters/mauve/front.svg",
  34272. extra: 1126/1033,
  34273. bottom: 65/1191
  34274. }
  34275. },
  34276. side: {
  34277. height: math.unit(3 + 5/12, "feet"),
  34278. name: "Side",
  34279. image: {
  34280. source: "./media/characters/mauve/side.svg",
  34281. extra: 1089/1001,
  34282. bottom: 29/1118
  34283. }
  34284. },
  34285. back: {
  34286. height: math.unit(3 + 5/12, "feet"),
  34287. name: "Back",
  34288. image: {
  34289. source: "./media/characters/mauve/back.svg",
  34290. extra: 1173/1053,
  34291. bottom: 109/1282
  34292. }
  34293. },
  34294. },
  34295. [
  34296. {
  34297. name: "Normal",
  34298. height: math.unit(3 + 5/12, "feet"),
  34299. default: true
  34300. },
  34301. ]
  34302. ))
  34303. characterMakers.push(() => makeCharacter(
  34304. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34305. {
  34306. front: {
  34307. height: math.unit(6 + 3/12, "feet"),
  34308. weight: math.unit(430, "lb"),
  34309. name: "Front",
  34310. image: {
  34311. source: "./media/characters/carlos/front.svg",
  34312. extra: 1964/1913,
  34313. bottom: 70/2034
  34314. }
  34315. },
  34316. },
  34317. [
  34318. {
  34319. name: "Normal",
  34320. height: math.unit(6 + 3/12, "feet"),
  34321. default: true
  34322. },
  34323. ]
  34324. ))
  34325. characterMakers.push(() => makeCharacter(
  34326. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34327. {
  34328. back: {
  34329. height: math.unit(5 + 10/12, "feet"),
  34330. weight: math.unit(200, "lb"),
  34331. name: "Back",
  34332. image: {
  34333. source: "./media/characters/jax/back.svg",
  34334. extra: 764/739,
  34335. bottom: 25/789
  34336. }
  34337. },
  34338. },
  34339. [
  34340. {
  34341. name: "Normal",
  34342. height: math.unit(5 + 10/12, "feet"),
  34343. default: true
  34344. },
  34345. ]
  34346. ))
  34347. characterMakers.push(() => makeCharacter(
  34348. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34349. {
  34350. front: {
  34351. height: math.unit(8, "feet"),
  34352. weight: math.unit(250, "lb"),
  34353. name: "Front",
  34354. image: {
  34355. source: "./media/characters/eikthynir/front.svg",
  34356. extra: 1332/1166,
  34357. bottom: 82/1414
  34358. }
  34359. },
  34360. back: {
  34361. height: math.unit(8, "feet"),
  34362. weight: math.unit(250, "lb"),
  34363. name: "Back",
  34364. image: {
  34365. source: "./media/characters/eikthynir/back.svg",
  34366. extra: 1342/1190,
  34367. bottom: 19/1361
  34368. }
  34369. },
  34370. dick: {
  34371. height: math.unit(2.35, "feet"),
  34372. name: "Dick",
  34373. image: {
  34374. source: "./media/characters/eikthynir/dick.svg"
  34375. }
  34376. },
  34377. },
  34378. [
  34379. {
  34380. name: "Normal",
  34381. height: math.unit(8, "feet"),
  34382. default: true
  34383. },
  34384. ]
  34385. ))
  34386. characterMakers.push(() => makeCharacter(
  34387. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34388. {
  34389. front: {
  34390. height: math.unit(99, "meters"),
  34391. weight: math.unit(13000, "tons"),
  34392. name: "Front",
  34393. image: {
  34394. source: "./media/characters/zlmos/front.svg",
  34395. extra: 2202/1992,
  34396. bottom: 315/2517
  34397. }
  34398. },
  34399. },
  34400. [
  34401. {
  34402. name: "Macro",
  34403. height: math.unit(99, "meters"),
  34404. default: true
  34405. },
  34406. ]
  34407. ))
  34408. characterMakers.push(() => makeCharacter(
  34409. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34410. {
  34411. front: {
  34412. height: math.unit(6 + 5/12, "feet"),
  34413. name: "Front",
  34414. image: {
  34415. source: "./media/characters/purri/front.svg",
  34416. extra: 1698/1610,
  34417. bottom: 32/1730
  34418. }
  34419. },
  34420. frontAlt: {
  34421. height: math.unit(6 + 5/12, "feet"),
  34422. name: "Front (Alt)",
  34423. image: {
  34424. source: "./media/characters/purri/front-alt.svg",
  34425. extra: 450/420,
  34426. bottom: 26/476
  34427. }
  34428. },
  34429. boots: {
  34430. height: math.unit(5.5, "feet"),
  34431. name: "Boots",
  34432. image: {
  34433. source: "./media/characters/purri/boots.svg",
  34434. extra: 905/853,
  34435. bottom: 18/923
  34436. },
  34437. extraAttributes: {
  34438. "shoeSize": {
  34439. name: "Shoe Size",
  34440. power: 1,
  34441. type: "length",
  34442. base: math.unit(12, "ShoeSizeMensUS")
  34443. },
  34444. "platformHeight": {
  34445. name: "Platform Height",
  34446. power: 1,
  34447. type: "length",
  34448. base: math.unit(2, "inches")
  34449. },
  34450. }
  34451. },
  34452. lying: {
  34453. height: math.unit(2, "feet"),
  34454. name: "Lying",
  34455. image: {
  34456. source: "./media/characters/purri/lying.svg",
  34457. extra: 940/843,
  34458. bottom: 146/1086
  34459. }
  34460. },
  34461. devious: {
  34462. height: math.unit(1.77, "feet"),
  34463. name: "Devious",
  34464. image: {
  34465. source: "./media/characters/purri/devious.svg",
  34466. extra: 1440/1155,
  34467. bottom: 147/1587
  34468. }
  34469. },
  34470. bean: {
  34471. height: math.unit(1.94, "feet"),
  34472. name: "Bean",
  34473. image: {
  34474. source: "./media/characters/purri/bean.svg"
  34475. }
  34476. },
  34477. },
  34478. [
  34479. {
  34480. name: "Micro",
  34481. height: math.unit(1, "mm")
  34482. },
  34483. {
  34484. name: "Normal",
  34485. height: math.unit(6 + 5/12, "feet"),
  34486. default: true
  34487. },
  34488. {
  34489. name: "Macro :3c",
  34490. height: math.unit(2, "miles")
  34491. },
  34492. ]
  34493. ))
  34494. characterMakers.push(() => makeCharacter(
  34495. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34496. {
  34497. front: {
  34498. height: math.unit(6 + 2/12, "feet"),
  34499. weight: math.unit(250, "lb"),
  34500. name: "Front",
  34501. image: {
  34502. source: "./media/characters/moonlight/front.svg",
  34503. extra: 1044/908,
  34504. bottom: 56/1100
  34505. }
  34506. },
  34507. feral: {
  34508. height: math.unit(3 + 1/12, "feet"),
  34509. weight: math.unit(50, "kg"),
  34510. name: "Feral",
  34511. image: {
  34512. source: "./media/characters/moonlight/feral.svg",
  34513. extra: 3705/2791,
  34514. bottom: 145/3850
  34515. }
  34516. },
  34517. paw: {
  34518. height: math.unit(1, "feet"),
  34519. name: "Paw",
  34520. image: {
  34521. source: "./media/characters/moonlight/paw.svg"
  34522. }
  34523. },
  34524. paws: {
  34525. height: math.unit(0.98, "feet"),
  34526. name: "Paws",
  34527. image: {
  34528. source: "./media/characters/moonlight/paws.svg",
  34529. extra: 939/939,
  34530. bottom: 50/989
  34531. }
  34532. },
  34533. mouth: {
  34534. height: math.unit(0.48, "feet"),
  34535. name: "Mouth",
  34536. image: {
  34537. source: "./media/characters/moonlight/mouth.svg"
  34538. }
  34539. },
  34540. dick: {
  34541. height: math.unit(1.46, "feet"),
  34542. name: "Dick",
  34543. image: {
  34544. source: "./media/characters/moonlight/dick.svg"
  34545. }
  34546. },
  34547. },
  34548. [
  34549. {
  34550. name: "Normal",
  34551. height: math.unit(6 + 2/12, "feet"),
  34552. default: true
  34553. },
  34554. {
  34555. name: "Macro",
  34556. height: math.unit(300, "feet")
  34557. },
  34558. {
  34559. name: "Macro+",
  34560. height: math.unit(1, "mile")
  34561. },
  34562. {
  34563. name: "Mt. Moon",
  34564. height: math.unit(5, "miles")
  34565. },
  34566. {
  34567. name: "Megamacro",
  34568. height: math.unit(15, "miles")
  34569. },
  34570. ]
  34571. ))
  34572. characterMakers.push(() => makeCharacter(
  34573. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34574. {
  34575. back: {
  34576. height: math.unit(6, "feet"),
  34577. weight: math.unit(150, "lb"),
  34578. name: "Back",
  34579. image: {
  34580. source: "./media/characters/sylen/back.svg",
  34581. extra: 1335/1273,
  34582. bottom: 107/1442
  34583. }
  34584. },
  34585. },
  34586. [
  34587. {
  34588. name: "Normal",
  34589. height: math.unit(5 + 5/12, "feet")
  34590. },
  34591. {
  34592. name: "Megamacro",
  34593. height: math.unit(3, "miles"),
  34594. default: true
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(6, "feet"),
  34603. weight: math.unit(190, "lb"),
  34604. name: "Front",
  34605. image: {
  34606. source: "./media/characters/huttser/front.svg",
  34607. extra: 1152/1058,
  34608. bottom: 23/1175
  34609. }
  34610. },
  34611. side: {
  34612. height: math.unit(6, "feet"),
  34613. weight: math.unit(190, "lb"),
  34614. name: "Side",
  34615. image: {
  34616. source: "./media/characters/huttser/side.svg",
  34617. extra: 1174/1065,
  34618. bottom: 18/1192
  34619. }
  34620. },
  34621. back: {
  34622. height: math.unit(6, "feet"),
  34623. weight: math.unit(190, "lb"),
  34624. name: "Back",
  34625. image: {
  34626. source: "./media/characters/huttser/back.svg",
  34627. extra: 1158/1056,
  34628. bottom: 12/1170
  34629. }
  34630. },
  34631. },
  34632. [
  34633. ]
  34634. ))
  34635. characterMakers.push(() => makeCharacter(
  34636. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34637. {
  34638. side: {
  34639. height: math.unit(12 + 9/12, "feet"),
  34640. weight: math.unit(15000, "lb"),
  34641. name: "Side",
  34642. image: {
  34643. source: "./media/characters/faan/side.svg",
  34644. extra: 2747/2697,
  34645. bottom: 0/2747
  34646. }
  34647. },
  34648. front: {
  34649. height: math.unit(12 + 9/12, "feet"),
  34650. weight: math.unit(15000, "lb"),
  34651. name: "Front",
  34652. image: {
  34653. source: "./media/characters/faan/front.svg",
  34654. extra: 607/571,
  34655. bottom: 24/631
  34656. }
  34657. },
  34658. head: {
  34659. height: math.unit(2.85, "feet"),
  34660. name: "Head",
  34661. image: {
  34662. source: "./media/characters/faan/head.svg"
  34663. }
  34664. },
  34665. headAlt: {
  34666. height: math.unit(3.13, "feet"),
  34667. name: "Head-alt",
  34668. image: {
  34669. source: "./media/characters/faan/head-alt.svg"
  34670. }
  34671. },
  34672. },
  34673. [
  34674. {
  34675. name: "Normal",
  34676. height: math.unit(12 + 9/12, "feet"),
  34677. default: true
  34678. },
  34679. ]
  34680. ))
  34681. characterMakers.push(() => makeCharacter(
  34682. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34683. {
  34684. front: {
  34685. height: math.unit(6, "feet"),
  34686. weight: math.unit(300, "lb"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/tanio/front.svg",
  34690. extra: 711/673,
  34691. bottom: 25/736
  34692. }
  34693. },
  34694. },
  34695. [
  34696. {
  34697. name: "Normal",
  34698. height: math.unit(6, "feet"),
  34699. default: true
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(3, "inches"),
  34708. name: "Front",
  34709. image: {
  34710. source: "./media/characters/noboru/front.svg",
  34711. extra: 1039/932,
  34712. bottom: 18/1057
  34713. }
  34714. },
  34715. },
  34716. [
  34717. {
  34718. name: "Micro",
  34719. height: math.unit(3, "inches"),
  34720. default: true
  34721. },
  34722. ]
  34723. ))
  34724. characterMakers.push(() => makeCharacter(
  34725. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34726. {
  34727. front: {
  34728. height: math.unit(1.85, "meters"),
  34729. weight: math.unit(80, "kg"),
  34730. name: "Front",
  34731. image: {
  34732. source: "./media/characters/daniel-barrett/front.svg",
  34733. extra: 355/337,
  34734. bottom: 9/364
  34735. }
  34736. },
  34737. },
  34738. [
  34739. {
  34740. name: "Pico",
  34741. height: math.unit(0.0433, "mm")
  34742. },
  34743. {
  34744. name: "Nano",
  34745. height: math.unit(1.5, "mm")
  34746. },
  34747. {
  34748. name: "Micro",
  34749. height: math.unit(5.3, "cm"),
  34750. default: true
  34751. },
  34752. {
  34753. name: "Normal",
  34754. height: math.unit(1.85, "meters")
  34755. },
  34756. {
  34757. name: "Macro",
  34758. height: math.unit(64.7, "meters")
  34759. },
  34760. {
  34761. name: "Megamacro",
  34762. height: math.unit(2.26, "km")
  34763. },
  34764. {
  34765. name: "Gigamacro",
  34766. height: math.unit(79, "km")
  34767. },
  34768. {
  34769. name: "Teramacro",
  34770. height: math.unit(2765, "km")
  34771. },
  34772. {
  34773. name: "Petamacro",
  34774. height: math.unit(96678, "km")
  34775. },
  34776. ]
  34777. ))
  34778. characterMakers.push(() => makeCharacter(
  34779. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34780. {
  34781. front: {
  34782. height: math.unit(30, "meters"),
  34783. weight: math.unit(400, "tons"),
  34784. name: "Front",
  34785. image: {
  34786. source: "./media/characters/zeel/front.svg",
  34787. extra: 2599/2599,
  34788. bottom: 226/2825
  34789. }
  34790. },
  34791. },
  34792. [
  34793. {
  34794. name: "Macro",
  34795. height: math.unit(30, "meters"),
  34796. default: true
  34797. },
  34798. ]
  34799. ))
  34800. characterMakers.push(() => makeCharacter(
  34801. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34802. {
  34803. front: {
  34804. height: math.unit(6 + 7/12, "feet"),
  34805. weight: math.unit(210, "lb"),
  34806. name: "Front",
  34807. image: {
  34808. source: "./media/characters/tarn/front.svg",
  34809. extra: 3517/3220,
  34810. bottom: 91/3608
  34811. }
  34812. },
  34813. back: {
  34814. height: math.unit(6 + 7/12, "feet"),
  34815. weight: math.unit(210, "lb"),
  34816. name: "Back",
  34817. image: {
  34818. source: "./media/characters/tarn/back.svg",
  34819. extra: 3566/3241,
  34820. bottom: 34/3600
  34821. }
  34822. },
  34823. dick: {
  34824. height: math.unit(1.65, "feet"),
  34825. name: "Dick",
  34826. image: {
  34827. source: "./media/characters/tarn/dick.svg"
  34828. }
  34829. },
  34830. paw: {
  34831. height: math.unit(1.80, "feet"),
  34832. name: "Paw",
  34833. image: {
  34834. source: "./media/characters/tarn/paw.svg"
  34835. }
  34836. },
  34837. tongue: {
  34838. height: math.unit(0.97, "feet"),
  34839. name: "Tongue",
  34840. image: {
  34841. source: "./media/characters/tarn/tongue.svg"
  34842. }
  34843. },
  34844. },
  34845. [
  34846. {
  34847. name: "Micro",
  34848. height: math.unit(4, "inches")
  34849. },
  34850. {
  34851. name: "Normal",
  34852. height: math.unit(6 + 7/12, "feet"),
  34853. default: true
  34854. },
  34855. {
  34856. name: "Macro",
  34857. height: math.unit(300, "feet")
  34858. },
  34859. ]
  34860. ))
  34861. characterMakers.push(() => makeCharacter(
  34862. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34863. {
  34864. front: {
  34865. height: math.unit(5 + 7/12, "feet"),
  34866. weight: math.unit(80, "kg"),
  34867. name: "Front",
  34868. image: {
  34869. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34870. extra: 3023/2865,
  34871. bottom: 33/3056
  34872. }
  34873. },
  34874. back: {
  34875. height: math.unit(5 + 7/12, "feet"),
  34876. weight: math.unit(80, "kg"),
  34877. name: "Back",
  34878. image: {
  34879. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34880. extra: 3020/2886,
  34881. bottom: 30/3050
  34882. }
  34883. },
  34884. dick: {
  34885. height: math.unit(0.98, "feet"),
  34886. name: "Dick",
  34887. image: {
  34888. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34889. }
  34890. },
  34891. anatomy: {
  34892. height: math.unit(2.86, "feet"),
  34893. name: "Anatomy",
  34894. image: {
  34895. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34896. }
  34897. },
  34898. },
  34899. [
  34900. {
  34901. name: "Really Small",
  34902. height: math.unit(2, "inches")
  34903. },
  34904. {
  34905. name: "Micro",
  34906. height: math.unit(5.583, "inches")
  34907. },
  34908. {
  34909. name: "Normal",
  34910. height: math.unit(5 + 7/12, "feet"),
  34911. default: true
  34912. },
  34913. {
  34914. name: "Macro",
  34915. height: math.unit(67, "feet")
  34916. },
  34917. {
  34918. name: "Megamacro",
  34919. height: math.unit(134, "feet")
  34920. },
  34921. ]
  34922. ))
  34923. characterMakers.push(() => makeCharacter(
  34924. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34925. {
  34926. front: {
  34927. height: math.unit(9, "feet"),
  34928. weight: math.unit(120, "lb"),
  34929. name: "Front",
  34930. image: {
  34931. source: "./media/characters/sally/front.svg",
  34932. extra: 1506/1349,
  34933. bottom: 66/1572
  34934. }
  34935. },
  34936. },
  34937. [
  34938. {
  34939. name: "Normal",
  34940. height: math.unit(9, "feet"),
  34941. default: true
  34942. },
  34943. ]
  34944. ))
  34945. characterMakers.push(() => makeCharacter(
  34946. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34947. {
  34948. front: {
  34949. height: math.unit(8, "feet"),
  34950. weight: math.unit(900, "lb"),
  34951. name: "Front",
  34952. image: {
  34953. source: "./media/characters/owen/front.svg",
  34954. extra: 1761/1657,
  34955. bottom: 74/1835
  34956. }
  34957. },
  34958. side: {
  34959. height: math.unit(8, "feet"),
  34960. weight: math.unit(900, "lb"),
  34961. name: "Side",
  34962. image: {
  34963. source: "./media/characters/owen/side.svg",
  34964. extra: 1797/1734,
  34965. bottom: 30/1827
  34966. }
  34967. },
  34968. back: {
  34969. height: math.unit(8, "feet"),
  34970. weight: math.unit(900, "lb"),
  34971. name: "Back",
  34972. image: {
  34973. source: "./media/characters/owen/back.svg",
  34974. extra: 1796/1706,
  34975. bottom: 59/1855
  34976. }
  34977. },
  34978. maw: {
  34979. height: math.unit(1.76, "feet"),
  34980. name: "Maw",
  34981. image: {
  34982. source: "./media/characters/owen/maw.svg"
  34983. }
  34984. },
  34985. },
  34986. [
  34987. {
  34988. name: "Normal",
  34989. height: math.unit(8, "feet"),
  34990. default: true
  34991. },
  34992. ]
  34993. ))
  34994. characterMakers.push(() => makeCharacter(
  34995. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34996. {
  34997. front: {
  34998. height: math.unit(4, "feet"),
  34999. weight: math.unit(400, "lb"),
  35000. name: "Front",
  35001. image: {
  35002. source: "./media/characters/ryth/front.svg",
  35003. extra: 1920/1748,
  35004. bottom: 42/1962
  35005. }
  35006. },
  35007. back: {
  35008. height: math.unit(4, "feet"),
  35009. weight: math.unit(400, "lb"),
  35010. name: "Back",
  35011. image: {
  35012. source: "./media/characters/ryth/back.svg",
  35013. extra: 1897/1690,
  35014. bottom: 89/1986
  35015. }
  35016. },
  35017. mouth: {
  35018. height: math.unit(1.39, "feet"),
  35019. name: "Mouth",
  35020. image: {
  35021. source: "./media/characters/ryth/mouth.svg"
  35022. }
  35023. },
  35024. tailmaw: {
  35025. height: math.unit(1.23, "feet"),
  35026. name: "Tailmaw",
  35027. image: {
  35028. source: "./media/characters/ryth/tailmaw.svg"
  35029. }
  35030. },
  35031. goia: {
  35032. height: math.unit(4, "meters"),
  35033. weight: math.unit(10800, "lb"),
  35034. name: "Goia",
  35035. image: {
  35036. source: "./media/characters/ryth/goia.svg",
  35037. extra: 745/640,
  35038. bottom: 107/852
  35039. }
  35040. },
  35041. goiaFront: {
  35042. height: math.unit(4, "meters"),
  35043. weight: math.unit(10800, "lb"),
  35044. name: "Goia (Front)",
  35045. image: {
  35046. source: "./media/characters/ryth/goia-front.svg",
  35047. extra: 750/586,
  35048. bottom: 114/864
  35049. }
  35050. },
  35051. goiaMaw: {
  35052. height: math.unit(5.55, "feet"),
  35053. name: "Goia Maw",
  35054. image: {
  35055. source: "./media/characters/ryth/goia-maw.svg"
  35056. }
  35057. },
  35058. goiaForepaw: {
  35059. height: math.unit(3.5, "feet"),
  35060. name: "Goia Forepaw",
  35061. image: {
  35062. source: "./media/characters/ryth/goia-forepaw.svg"
  35063. }
  35064. },
  35065. goiaHindpaw: {
  35066. height: math.unit(5.55, "feet"),
  35067. name: "Goia Hindpaw",
  35068. image: {
  35069. source: "./media/characters/ryth/goia-hindpaw.svg"
  35070. }
  35071. },
  35072. },
  35073. [
  35074. {
  35075. name: "Normal",
  35076. height: math.unit(4, "feet"),
  35077. default: true
  35078. },
  35079. ]
  35080. ))
  35081. characterMakers.push(() => makeCharacter(
  35082. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35083. {
  35084. front: {
  35085. height: math.unit(7, "feet"),
  35086. weight: math.unit(180, "lb"),
  35087. name: "Front",
  35088. image: {
  35089. source: "./media/characters/necrolance/front.svg",
  35090. extra: 1062/947,
  35091. bottom: 41/1103
  35092. }
  35093. },
  35094. back: {
  35095. height: math.unit(7, "feet"),
  35096. weight: math.unit(180, "lb"),
  35097. name: "Back",
  35098. image: {
  35099. source: "./media/characters/necrolance/back.svg",
  35100. extra: 1045/984,
  35101. bottom: 14/1059
  35102. }
  35103. },
  35104. wing: {
  35105. height: math.unit(2.67, "feet"),
  35106. name: "Wing",
  35107. image: {
  35108. source: "./media/characters/necrolance/wing.svg"
  35109. }
  35110. },
  35111. },
  35112. [
  35113. {
  35114. name: "Normal",
  35115. height: math.unit(7, "feet"),
  35116. default: true
  35117. },
  35118. ]
  35119. ))
  35120. characterMakers.push(() => makeCharacter(
  35121. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35122. {
  35123. front: {
  35124. height: math.unit(76, "meters"),
  35125. weight: math.unit(30000, "tons"),
  35126. name: "Front",
  35127. image: {
  35128. source: "./media/characters/tyler/front.svg",
  35129. extra: 1640/1640,
  35130. bottom: 114/1754
  35131. }
  35132. },
  35133. },
  35134. [
  35135. {
  35136. name: "Macro",
  35137. height: math.unit(76, "meters"),
  35138. default: true
  35139. },
  35140. ]
  35141. ))
  35142. characterMakers.push(() => makeCharacter(
  35143. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35144. {
  35145. front: {
  35146. height: math.unit(4 + 11/12, "feet"),
  35147. weight: math.unit(132, "lb"),
  35148. name: "Front",
  35149. image: {
  35150. source: "./media/characters/icey/front.svg",
  35151. extra: 2750/2550,
  35152. bottom: 33/2783
  35153. }
  35154. },
  35155. back: {
  35156. height: math.unit(4 + 11/12, "feet"),
  35157. weight: math.unit(132, "lb"),
  35158. name: "Back",
  35159. image: {
  35160. source: "./media/characters/icey/back.svg",
  35161. extra: 2624/2481,
  35162. bottom: 35/2659
  35163. }
  35164. },
  35165. },
  35166. [
  35167. {
  35168. name: "Normal",
  35169. height: math.unit(4 + 11/12, "feet"),
  35170. default: true
  35171. },
  35172. ]
  35173. ))
  35174. characterMakers.push(() => makeCharacter(
  35175. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35176. {
  35177. front: {
  35178. height: math.unit(100, "feet"),
  35179. weight: math.unit(0, "lb"),
  35180. name: "Front",
  35181. image: {
  35182. source: "./media/characters/smile/front.svg",
  35183. extra: 2983/2912,
  35184. bottom: 162/3145
  35185. }
  35186. },
  35187. back: {
  35188. height: math.unit(100, "feet"),
  35189. weight: math.unit(0, "lb"),
  35190. name: "Back",
  35191. image: {
  35192. source: "./media/characters/smile/back.svg",
  35193. extra: 3143/3031,
  35194. bottom: 91/3234
  35195. }
  35196. },
  35197. head: {
  35198. height: math.unit(26.3, "feet"),
  35199. weight: math.unit(0, "lb"),
  35200. name: "Head",
  35201. image: {
  35202. source: "./media/characters/smile/head.svg"
  35203. }
  35204. },
  35205. collar: {
  35206. height: math.unit(5.3, "feet"),
  35207. weight: math.unit(0, "lb"),
  35208. name: "Collar",
  35209. image: {
  35210. source: "./media/characters/smile/collar.svg"
  35211. }
  35212. },
  35213. },
  35214. [
  35215. {
  35216. name: "Macro",
  35217. height: math.unit(100, "feet"),
  35218. default: true
  35219. },
  35220. ]
  35221. ))
  35222. characterMakers.push(() => makeCharacter(
  35223. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35224. {
  35225. dragon: {
  35226. height: math.unit(26, "feet"),
  35227. weight: math.unit(36, "tons"),
  35228. name: "Dragon",
  35229. image: {
  35230. source: "./media/characters/arimphae/dragon.svg",
  35231. extra: 1574/983,
  35232. bottom: 357/1931
  35233. }
  35234. },
  35235. drake: {
  35236. height: math.unit(9, "feet"),
  35237. weight: math.unit(1.5, "tons"),
  35238. name: "Drake",
  35239. image: {
  35240. source: "./media/characters/arimphae/drake.svg",
  35241. extra: 1120/925,
  35242. bottom: 435/1555
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Small",
  35249. height: math.unit(26*5/9, "feet")
  35250. },
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(26, "feet"),
  35254. default: true
  35255. },
  35256. ]
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35260. {
  35261. front: {
  35262. height: math.unit(8 + 9/12, "feet"),
  35263. name: "Front",
  35264. image: {
  35265. source: "./media/characters/xander/front.svg",
  35266. extra: 1237/974,
  35267. bottom: 94/1331
  35268. }
  35269. },
  35270. },
  35271. [
  35272. {
  35273. name: "Normal",
  35274. height: math.unit(8 + 9/12, "feet"),
  35275. default: true
  35276. },
  35277. {
  35278. name: "Gaze Grabber",
  35279. height: math.unit(13 + 8/12, "feet")
  35280. },
  35281. {
  35282. name: "Jaw Dropper",
  35283. height: math.unit(27, "feet")
  35284. },
  35285. {
  35286. name: "Show Stopper",
  35287. height: math.unit(136, "feet")
  35288. },
  35289. {
  35290. name: "Superstar",
  35291. height: math.unit(1.9e6, "miles")
  35292. },
  35293. ]
  35294. ))
  35295. characterMakers.push(() => makeCharacter(
  35296. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35297. {
  35298. side: {
  35299. height: math.unit(2100, "feet"),
  35300. name: "Side",
  35301. image: {
  35302. source: "./media/characters/osiris/side.svg",
  35303. extra: 1105/939,
  35304. bottom: 167/1272
  35305. }
  35306. },
  35307. },
  35308. [
  35309. {
  35310. name: "Macro",
  35311. height: math.unit(2100, "feet"),
  35312. default: true
  35313. },
  35314. ]
  35315. ))
  35316. characterMakers.push(() => makeCharacter(
  35317. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35318. {
  35319. front: {
  35320. height: math.unit(6 + 8/12, "feet"),
  35321. weight: math.unit(225, "lb"),
  35322. name: "Front",
  35323. image: {
  35324. source: "./media/characters/rhys-londe/front.svg",
  35325. extra: 2258/2141,
  35326. bottom: 188/2446
  35327. }
  35328. },
  35329. back: {
  35330. height: math.unit(6 + 8/12, "feet"),
  35331. weight: math.unit(225, "lb"),
  35332. name: "Back",
  35333. image: {
  35334. source: "./media/characters/rhys-londe/back.svg",
  35335. extra: 2237/2137,
  35336. bottom: 63/2300
  35337. }
  35338. },
  35339. frontNsfw: {
  35340. height: math.unit(6 + 8/12, "feet"),
  35341. weight: math.unit(225, "lb"),
  35342. name: "Front (NSFW)",
  35343. image: {
  35344. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35345. extra: 2258/2141,
  35346. bottom: 188/2446
  35347. }
  35348. },
  35349. backNsfw: {
  35350. height: math.unit(6 + 8/12, "feet"),
  35351. weight: math.unit(225, "lb"),
  35352. name: "Back (NSFW)",
  35353. image: {
  35354. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35355. extra: 2237/2137,
  35356. bottom: 63/2300
  35357. }
  35358. },
  35359. dick: {
  35360. height: math.unit(30, "inches"),
  35361. name: "Dick",
  35362. image: {
  35363. source: "./media/characters/rhys-londe/dick.svg"
  35364. }
  35365. },
  35366. maw: {
  35367. height: math.unit(1.6, "feet"),
  35368. name: "Maw",
  35369. image: {
  35370. source: "./media/characters/rhys-londe/maw.svg"
  35371. }
  35372. },
  35373. },
  35374. [
  35375. {
  35376. name: "Normal",
  35377. height: math.unit(6 + 8/12, "feet"),
  35378. default: true
  35379. },
  35380. ]
  35381. ))
  35382. characterMakers.push(() => makeCharacter(
  35383. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35384. {
  35385. front: {
  35386. height: math.unit(3 + 10/12, "feet"),
  35387. weight: math.unit(90, "lb"),
  35388. name: "Front",
  35389. image: {
  35390. source: "./media/characters/taivas-ensim/front.svg",
  35391. extra: 1327/1216,
  35392. bottom: 96/1423
  35393. }
  35394. },
  35395. back: {
  35396. height: math.unit(3 + 10/12, "feet"),
  35397. weight: math.unit(90, "lb"),
  35398. name: "Back",
  35399. image: {
  35400. source: "./media/characters/taivas-ensim/back.svg",
  35401. extra: 1355/1247,
  35402. bottom: 11/1366
  35403. }
  35404. },
  35405. frontNsfw: {
  35406. height: math.unit(3 + 10/12, "feet"),
  35407. weight: math.unit(90, "lb"),
  35408. name: "Front (NSFW)",
  35409. image: {
  35410. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35411. extra: 1327/1216,
  35412. bottom: 96/1423
  35413. }
  35414. },
  35415. backNsfw: {
  35416. height: math.unit(3 + 10/12, "feet"),
  35417. weight: math.unit(90, "lb"),
  35418. name: "Back (NSFW)",
  35419. image: {
  35420. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35421. extra: 1355/1247,
  35422. bottom: 11/1366
  35423. }
  35424. },
  35425. },
  35426. [
  35427. {
  35428. name: "Normal",
  35429. height: math.unit(3 + 10/12, "feet"),
  35430. default: true
  35431. },
  35432. ]
  35433. ))
  35434. characterMakers.push(() => makeCharacter(
  35435. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35436. {
  35437. front: {
  35438. height: math.unit(9 + 6/12, "feet"),
  35439. weight: math.unit(940, "lb"),
  35440. name: "Front",
  35441. image: {
  35442. source: "./media/characters/byliss/front.svg",
  35443. extra: 1327/1290,
  35444. bottom: 82/1409
  35445. }
  35446. },
  35447. back: {
  35448. height: math.unit(9 + 6/12, "feet"),
  35449. weight: math.unit(940, "lb"),
  35450. name: "Back",
  35451. image: {
  35452. source: "./media/characters/byliss/back.svg",
  35453. extra: 1376/1349,
  35454. bottom: 9/1385
  35455. }
  35456. },
  35457. frontNsfw: {
  35458. height: math.unit(9 + 6/12, "feet"),
  35459. weight: math.unit(940, "lb"),
  35460. name: "Front (NSFW)",
  35461. image: {
  35462. source: "./media/characters/byliss/front-nsfw.svg",
  35463. extra: 1327/1290,
  35464. bottom: 82/1409
  35465. }
  35466. },
  35467. backNsfw: {
  35468. height: math.unit(9 + 6/12, "feet"),
  35469. weight: math.unit(940, "lb"),
  35470. name: "Back (NSFW)",
  35471. image: {
  35472. source: "./media/characters/byliss/back-nsfw.svg",
  35473. extra: 1376/1349,
  35474. bottom: 9/1385
  35475. }
  35476. },
  35477. },
  35478. [
  35479. {
  35480. name: "Normal",
  35481. height: math.unit(9 + 6/12, "feet"),
  35482. default: true
  35483. },
  35484. ]
  35485. ))
  35486. characterMakers.push(() => makeCharacter(
  35487. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35488. {
  35489. front: {
  35490. height: math.unit(5 + 2/12, "feet"),
  35491. weight: math.unit(200, "lb"),
  35492. name: "Front",
  35493. image: {
  35494. source: "./media/characters/noraly/front.svg",
  35495. extra: 4985/4773,
  35496. bottom: 150/5135
  35497. }
  35498. },
  35499. full: {
  35500. height: math.unit(5 + 2/12, "feet"),
  35501. weight: math.unit(164, "lb"),
  35502. name: "Full",
  35503. image: {
  35504. source: "./media/characters/noraly/full.svg",
  35505. extra: 1114/1059,
  35506. bottom: 35/1149
  35507. }
  35508. },
  35509. fuller: {
  35510. height: math.unit(5 + 2/12, "feet"),
  35511. weight: math.unit(230, "lb"),
  35512. name: "Fuller",
  35513. image: {
  35514. source: "./media/characters/noraly/fuller.svg",
  35515. extra: 1114/1059,
  35516. bottom: 35/1149
  35517. }
  35518. },
  35519. fullest: {
  35520. height: math.unit(5 + 2/12, "feet"),
  35521. weight: math.unit(300, "lb"),
  35522. name: "Fullest",
  35523. image: {
  35524. source: "./media/characters/noraly/fullest.svg",
  35525. extra: 1114/1059,
  35526. bottom: 35/1149
  35527. }
  35528. },
  35529. },
  35530. [
  35531. {
  35532. name: "Normal",
  35533. height: math.unit(5 + 2/12, "feet"),
  35534. default: true
  35535. },
  35536. ]
  35537. ))
  35538. characterMakers.push(() => makeCharacter(
  35539. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35540. {
  35541. front: {
  35542. height: math.unit(5 + 2/12, "feet"),
  35543. weight: math.unit(210, "lb"),
  35544. name: "Front",
  35545. image: {
  35546. source: "./media/characters/pera/front.svg",
  35547. extra: 1560/1531,
  35548. bottom: 165/1725
  35549. }
  35550. },
  35551. back: {
  35552. height: math.unit(5 + 2/12, "feet"),
  35553. weight: math.unit(210, "lb"),
  35554. name: "Back",
  35555. image: {
  35556. source: "./media/characters/pera/back.svg",
  35557. extra: 1523/1493,
  35558. bottom: 152/1675
  35559. }
  35560. },
  35561. dick: {
  35562. height: math.unit(2.4, "feet"),
  35563. name: "Dick",
  35564. image: {
  35565. source: "./media/characters/pera/dick.svg"
  35566. }
  35567. },
  35568. },
  35569. [
  35570. {
  35571. name: "Normal",
  35572. height: math.unit(5 + 2/12, "feet"),
  35573. default: true
  35574. },
  35575. ]
  35576. ))
  35577. characterMakers.push(() => makeCharacter(
  35578. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35579. {
  35580. front: {
  35581. height: math.unit(12, "feet"),
  35582. weight: math.unit(3200, "lb"),
  35583. name: "Front",
  35584. image: {
  35585. source: "./media/characters/julian/front.svg",
  35586. extra: 2962/2701,
  35587. bottom: 184/3146
  35588. }
  35589. },
  35590. maw: {
  35591. height: math.unit(5.35, "feet"),
  35592. name: "Maw",
  35593. image: {
  35594. source: "./media/characters/julian/maw.svg"
  35595. }
  35596. },
  35597. paw: {
  35598. height: math.unit(3.07, "feet"),
  35599. name: "Paw",
  35600. image: {
  35601. source: "./media/characters/julian/paw.svg"
  35602. }
  35603. },
  35604. },
  35605. [
  35606. {
  35607. name: "Default",
  35608. height: math.unit(12, "feet"),
  35609. default: true
  35610. },
  35611. {
  35612. name: "Big",
  35613. height: math.unit(50, "feet")
  35614. },
  35615. {
  35616. name: "Really Big",
  35617. height: math.unit(1, "mile")
  35618. },
  35619. {
  35620. name: "Extremely Big",
  35621. height: math.unit(100, "miles")
  35622. },
  35623. {
  35624. name: "Planet Hugger",
  35625. height: math.unit(200, "megameters")
  35626. },
  35627. {
  35628. name: "Unreasonably Big",
  35629. height: math.unit(1e300, "meters")
  35630. },
  35631. ]
  35632. ))
  35633. characterMakers.push(() => makeCharacter(
  35634. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35635. {
  35636. solgooleo: {
  35637. height: math.unit(4, "meters"),
  35638. weight: math.unit(6000*1.5, "kg"),
  35639. volume: math.unit(6000, "liters"),
  35640. name: "Solgooleo",
  35641. image: {
  35642. source: "./media/characters/pi/solgooleo.svg",
  35643. extra: 388/331,
  35644. bottom: 29/417
  35645. }
  35646. },
  35647. },
  35648. [
  35649. {
  35650. name: "Normal",
  35651. height: math.unit(4, "meters"),
  35652. default: true
  35653. },
  35654. ]
  35655. ))
  35656. characterMakers.push(() => makeCharacter(
  35657. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35658. {
  35659. front: {
  35660. height: math.unit(8, "feet"),
  35661. weight: math.unit(4, "tons"),
  35662. name: "Front",
  35663. image: {
  35664. source: "./media/characters/shaun/front.svg",
  35665. extra: 503/495,
  35666. bottom: 20/523
  35667. }
  35668. },
  35669. back: {
  35670. height: math.unit(8, "feet"),
  35671. weight: math.unit(4, "tons"),
  35672. name: "Back",
  35673. image: {
  35674. source: "./media/characters/shaun/back.svg",
  35675. extra: 487/480,
  35676. bottom: 20/507
  35677. }
  35678. },
  35679. },
  35680. [
  35681. {
  35682. name: "Lorg",
  35683. height: math.unit(8, "feet"),
  35684. default: true
  35685. },
  35686. ]
  35687. ))
  35688. characterMakers.push(() => makeCharacter(
  35689. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35690. {
  35691. frontAnthro: {
  35692. height: math.unit(7, "feet"),
  35693. name: "Front",
  35694. image: {
  35695. source: "./media/characters/sini/front-anthro.svg",
  35696. extra: 726/678,
  35697. bottom: 35/761
  35698. },
  35699. form: "anthro",
  35700. default: true
  35701. },
  35702. backAnthro: {
  35703. height: math.unit(7, "feet"),
  35704. name: "Back",
  35705. image: {
  35706. source: "./media/characters/sini/back-anthro.svg",
  35707. extra: 743/701,
  35708. bottom: 12/755
  35709. },
  35710. form: "anthro",
  35711. },
  35712. frontAnthroNsfw: {
  35713. height: math.unit(7, "feet"),
  35714. name: "Front (NSFW)",
  35715. image: {
  35716. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35717. extra: 726/678,
  35718. bottom: 35/761
  35719. },
  35720. form: "anthro"
  35721. },
  35722. backAnthroNsfw: {
  35723. height: math.unit(7, "feet"),
  35724. name: "Back (NSFW)",
  35725. image: {
  35726. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35727. extra: 743/701,
  35728. bottom: 12/755
  35729. },
  35730. form: "anthro",
  35731. },
  35732. mawAnthro: {
  35733. height: math.unit(2.14, "feet"),
  35734. name: "Maw",
  35735. image: {
  35736. source: "./media/characters/sini/maw-anthro.svg"
  35737. },
  35738. form: "anthro"
  35739. },
  35740. dick: {
  35741. height: math.unit(1.45, "feet"),
  35742. name: "Dick",
  35743. image: {
  35744. source: "./media/characters/sini/dick-anthro.svg"
  35745. },
  35746. form: "anthro"
  35747. },
  35748. feral: {
  35749. height: math.unit(16, "feet"),
  35750. name: "Feral",
  35751. image: {
  35752. source: "./media/characters/sini/feral.svg",
  35753. extra: 814/605,
  35754. bottom: 11/825
  35755. },
  35756. form: "feral",
  35757. default: true
  35758. },
  35759. feralNsfw: {
  35760. height: math.unit(16, "feet"),
  35761. name: "Feral (NSFW)",
  35762. image: {
  35763. source: "./media/characters/sini/feral-nsfw.svg",
  35764. extra: 814/605,
  35765. bottom: 11/825
  35766. },
  35767. form: "feral"
  35768. },
  35769. mawFeral: {
  35770. height: math.unit(5.66, "feet"),
  35771. name: "Maw",
  35772. image: {
  35773. source: "./media/characters/sini/maw-feral.svg"
  35774. },
  35775. form: "feral",
  35776. },
  35777. pawFeral: {
  35778. height: math.unit(5.17, "feet"),
  35779. name: "Paw",
  35780. image: {
  35781. source: "./media/characters/sini/paw-feral.svg"
  35782. },
  35783. form: "feral",
  35784. },
  35785. rumpFeral: {
  35786. height: math.unit(13.11, "feet"),
  35787. name: "Rump",
  35788. image: {
  35789. source: "./media/characters/sini/rump-feral.svg"
  35790. },
  35791. form: "feral",
  35792. },
  35793. dickFeral: {
  35794. height: math.unit(1, "feet"),
  35795. name: "Dick",
  35796. image: {
  35797. source: "./media/characters/sini/dick-feral.svg"
  35798. },
  35799. form: "feral",
  35800. },
  35801. eyeFeral: {
  35802. height: math.unit(1.23, "feet"),
  35803. name: "Eye",
  35804. image: {
  35805. source: "./media/characters/sini/eye-feral.svg"
  35806. },
  35807. form: "feral",
  35808. },
  35809. },
  35810. [
  35811. {
  35812. name: "Normal",
  35813. height: math.unit(7, "feet"),
  35814. default: true,
  35815. form: "anthro"
  35816. },
  35817. {
  35818. name: "Normal",
  35819. height: math.unit(16, "feet"),
  35820. default: true,
  35821. form: "feral"
  35822. },
  35823. ],
  35824. {
  35825. "anthro": {
  35826. name: "Anthro",
  35827. default: true
  35828. },
  35829. "feral": {
  35830. name: "Feral",
  35831. }
  35832. }
  35833. ))
  35834. characterMakers.push(() => makeCharacter(
  35835. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35836. {
  35837. side: {
  35838. height: math.unit(47.2, "meters"),
  35839. weight: math.unit(10000, "tons"),
  35840. name: "Side",
  35841. image: {
  35842. source: "./media/characters/raylldo/side.svg",
  35843. extra: 2363/642,
  35844. bottom: 221/2584
  35845. }
  35846. },
  35847. top: {
  35848. height: math.unit(240, "meters"),
  35849. weight: math.unit(10000, "tons"),
  35850. name: "Top",
  35851. image: {
  35852. source: "./media/characters/raylldo/top.svg"
  35853. }
  35854. },
  35855. bottom: {
  35856. height: math.unit(240, "meters"),
  35857. weight: math.unit(10000, "tons"),
  35858. name: "Bottom",
  35859. image: {
  35860. source: "./media/characters/raylldo/bottom.svg"
  35861. }
  35862. },
  35863. head: {
  35864. height: math.unit(38.6, "meters"),
  35865. name: "Head",
  35866. image: {
  35867. source: "./media/characters/raylldo/head.svg",
  35868. extra: 1335/1112,
  35869. bottom: 0/1335
  35870. }
  35871. },
  35872. maw: {
  35873. height: math.unit(16.37, "meters"),
  35874. name: "Maw",
  35875. image: {
  35876. source: "./media/characters/raylldo/maw.svg",
  35877. extra: 883/660,
  35878. bottom: 0/883
  35879. },
  35880. extraAttributes: {
  35881. preyCapacity: {
  35882. name: "Capacity",
  35883. power: 3,
  35884. type: "volume",
  35885. base: math.unit(1000, "people")
  35886. },
  35887. tongueSize: {
  35888. name: "Tongue Size",
  35889. power: 2,
  35890. type: "area",
  35891. base: math.unit(21, "m^2")
  35892. }
  35893. }
  35894. },
  35895. forepaw: {
  35896. height: math.unit(18, "meters"),
  35897. name: "Forepaw",
  35898. image: {
  35899. source: "./media/characters/raylldo/forepaw.svg"
  35900. }
  35901. },
  35902. hindpaw: {
  35903. height: math.unit(23, "meters"),
  35904. name: "Hindpaw",
  35905. image: {
  35906. source: "./media/characters/raylldo/hindpaw.svg"
  35907. }
  35908. },
  35909. genitals: {
  35910. height: math.unit(42, "meters"),
  35911. name: "Genitals",
  35912. image: {
  35913. source: "./media/characters/raylldo/genitals.svg"
  35914. }
  35915. },
  35916. },
  35917. [
  35918. {
  35919. name: "Normal",
  35920. height: math.unit(47.2, "meters"),
  35921. default: true
  35922. },
  35923. ]
  35924. ))
  35925. characterMakers.push(() => makeCharacter(
  35926. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35927. {
  35928. anthroFront: {
  35929. height: math.unit(9, "feet"),
  35930. weight: math.unit(600, "lb"),
  35931. name: "Anthro (Front)",
  35932. image: {
  35933. source: "./media/characters/glint/anthro-front.svg",
  35934. extra: 1097/1018,
  35935. bottom: 28/1125
  35936. }
  35937. },
  35938. anthroBack: {
  35939. height: math.unit(9, "feet"),
  35940. weight: math.unit(600, "lb"),
  35941. name: "Anthro (Back)",
  35942. image: {
  35943. source: "./media/characters/glint/anthro-back.svg",
  35944. extra: 1154/997,
  35945. bottom: 36/1190
  35946. }
  35947. },
  35948. feral: {
  35949. height: math.unit(11, "feet"),
  35950. weight: math.unit(50000, "lb"),
  35951. name: "Feral",
  35952. image: {
  35953. source: "./media/characters/glint/feral.svg",
  35954. extra: 3035/1585,
  35955. bottom: 1169/4204
  35956. }
  35957. },
  35958. dickAnthro: {
  35959. height: math.unit(0.7, "meters"),
  35960. name: "Dick (Anthro)",
  35961. image: {
  35962. source: "./media/characters/glint/dick-anthro.svg"
  35963. }
  35964. },
  35965. dickFeral: {
  35966. height: math.unit(2.65, "meters"),
  35967. name: "Dick (Feral)",
  35968. image: {
  35969. source: "./media/characters/glint/dick-feral.svg"
  35970. }
  35971. },
  35972. slitHidden: {
  35973. height: math.unit(5.85, "meters"),
  35974. name: "Slit (Hidden)",
  35975. image: {
  35976. source: "./media/characters/glint/slit-hidden.svg"
  35977. }
  35978. },
  35979. slitErect: {
  35980. height: math.unit(5.85, "meters"),
  35981. name: "Slit (Erect)",
  35982. image: {
  35983. source: "./media/characters/glint/slit-erect.svg"
  35984. }
  35985. },
  35986. mawAnthro: {
  35987. height: math.unit(0.63, "meters"),
  35988. name: "Maw (Anthro)",
  35989. image: {
  35990. source: "./media/characters/glint/maw.svg"
  35991. }
  35992. },
  35993. mawFeral: {
  35994. height: math.unit(2.89, "meters"),
  35995. name: "Maw (Feral)",
  35996. image: {
  35997. source: "./media/characters/glint/maw.svg"
  35998. }
  35999. },
  36000. },
  36001. [
  36002. {
  36003. name: "Normal",
  36004. height: math.unit(9, "feet"),
  36005. default: true
  36006. },
  36007. ]
  36008. ))
  36009. characterMakers.push(() => makeCharacter(
  36010. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36011. {
  36012. side: {
  36013. height: math.unit(15, "feet"),
  36014. weight: math.unit(5000, "kg"),
  36015. name: "Side",
  36016. image: {
  36017. source: "./media/characters/kairne/side.svg",
  36018. extra: 979/811,
  36019. bottom: 13/992
  36020. }
  36021. },
  36022. front: {
  36023. height: math.unit(15, "feet"),
  36024. weight: math.unit(5000, "kg"),
  36025. name: "Front",
  36026. image: {
  36027. source: "./media/characters/kairne/front.svg",
  36028. extra: 908/814,
  36029. bottom: 26/934
  36030. }
  36031. },
  36032. sideNsfw: {
  36033. height: math.unit(15, "feet"),
  36034. weight: math.unit(5000, "kg"),
  36035. name: "Side (NSFW)",
  36036. image: {
  36037. source: "./media/characters/kairne/side-nsfw.svg",
  36038. extra: 979/811,
  36039. bottom: 13/992
  36040. }
  36041. },
  36042. frontNsfw: {
  36043. height: math.unit(15, "feet"),
  36044. weight: math.unit(5000, "kg"),
  36045. name: "Front (NSFW)",
  36046. image: {
  36047. source: "./media/characters/kairne/front-nsfw.svg",
  36048. extra: 908/814,
  36049. bottom: 26/934
  36050. }
  36051. },
  36052. dickCaged: {
  36053. height: math.unit(0.65, "meters"),
  36054. name: "Dick-caged",
  36055. image: {
  36056. source: "./media/characters/kairne/dick-caged.svg"
  36057. }
  36058. },
  36059. dick: {
  36060. height: math.unit(0.79, "meters"),
  36061. name: "Dick",
  36062. image: {
  36063. source: "./media/characters/kairne/dick.svg"
  36064. }
  36065. },
  36066. genitals: {
  36067. height: math.unit(1.29, "meters"),
  36068. name: "Genitals",
  36069. image: {
  36070. source: "./media/characters/kairne/genitals.svg"
  36071. }
  36072. },
  36073. maw: {
  36074. height: math.unit(1.73, "meters"),
  36075. name: "Maw",
  36076. image: {
  36077. source: "./media/characters/kairne/maw.svg"
  36078. }
  36079. },
  36080. },
  36081. [
  36082. {
  36083. name: "Normal",
  36084. height: math.unit(15, "feet"),
  36085. default: true
  36086. },
  36087. ]
  36088. ))
  36089. characterMakers.push(() => makeCharacter(
  36090. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36091. {
  36092. front: {
  36093. height: math.unit(5 + 8/12, "feet"),
  36094. weight: math.unit(139, "lb"),
  36095. name: "Front",
  36096. image: {
  36097. source: "./media/characters/biscuit-jackal/front.svg",
  36098. extra: 2106/1961,
  36099. bottom: 58/2164
  36100. }
  36101. },
  36102. back: {
  36103. height: math.unit(5 + 8/12, "feet"),
  36104. weight: math.unit(139, "lb"),
  36105. name: "Back",
  36106. image: {
  36107. source: "./media/characters/biscuit-jackal/back.svg",
  36108. extra: 2132/1976,
  36109. bottom: 57/2189
  36110. }
  36111. },
  36112. werejackal: {
  36113. height: math.unit(6 + 3/12, "feet"),
  36114. weight: math.unit(188, "lb"),
  36115. name: "Werejackal",
  36116. image: {
  36117. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36118. extra: 2373/2178,
  36119. bottom: 53/2426
  36120. }
  36121. },
  36122. },
  36123. [
  36124. {
  36125. name: "Normal",
  36126. height: math.unit(5 + 8/12, "feet"),
  36127. default: true
  36128. },
  36129. ]
  36130. ))
  36131. characterMakers.push(() => makeCharacter(
  36132. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36133. {
  36134. front: {
  36135. height: math.unit(140, "cm"),
  36136. weight: math.unit(45, "kg"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/tayra-white/front.svg",
  36140. extra: 2229/2192,
  36141. bottom: 75/2304
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(140, "cm"),
  36149. default: true
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36155. {
  36156. front: {
  36157. height: math.unit(4 + 5/12, "feet"),
  36158. name: "Front",
  36159. image: {
  36160. source: "./media/characters/scoop/front.svg",
  36161. extra: 1257/1136,
  36162. bottom: 69/1326
  36163. }
  36164. },
  36165. back: {
  36166. height: math.unit(4 + 5/12, "feet"),
  36167. name: "Back",
  36168. image: {
  36169. source: "./media/characters/scoop/back.svg",
  36170. extra: 1321/1152,
  36171. bottom: 32/1353
  36172. }
  36173. },
  36174. maw: {
  36175. height: math.unit(0.68, "feet"),
  36176. name: "Maw",
  36177. image: {
  36178. source: "./media/characters/scoop/maw.svg"
  36179. }
  36180. },
  36181. },
  36182. [
  36183. {
  36184. name: "Really Small",
  36185. height: math.unit(1, "mm")
  36186. },
  36187. {
  36188. name: "Micro",
  36189. height: math.unit(1, "inch")
  36190. },
  36191. {
  36192. name: "Normal",
  36193. height: math.unit(4 + 5/12, "feet"),
  36194. default: true
  36195. },
  36196. {
  36197. name: "Macro",
  36198. height: math.unit(200, "feet")
  36199. },
  36200. {
  36201. name: "Megamacro",
  36202. height: math.unit(3240, "feet")
  36203. },
  36204. {
  36205. name: "Teramacro",
  36206. height: math.unit(2500, "miles")
  36207. },
  36208. ]
  36209. ))
  36210. characterMakers.push(() => makeCharacter(
  36211. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36212. {
  36213. front: {
  36214. height: math.unit(15 + 7/12, "feet"),
  36215. weight: math.unit(1150, "tons"),
  36216. name: "Front",
  36217. image: {
  36218. source: "./media/characters/saphinara/front.svg",
  36219. extra: 1837/1643,
  36220. bottom: 84/1921
  36221. },
  36222. form: "normal",
  36223. default: true
  36224. },
  36225. side: {
  36226. height: math.unit(15 + 7/12, "feet"),
  36227. weight: math.unit(1150, "tons"),
  36228. name: "Side",
  36229. image: {
  36230. source: "./media/characters/saphinara/side.svg",
  36231. extra: 605/547,
  36232. bottom: 6/611
  36233. },
  36234. form: "normal"
  36235. },
  36236. back: {
  36237. height: math.unit(15 + 7/12, "feet"),
  36238. weight: math.unit(1150, "tons"),
  36239. name: "Back",
  36240. image: {
  36241. source: "./media/characters/saphinara/back.svg",
  36242. extra: 591/531,
  36243. bottom: 13/604
  36244. },
  36245. form: "normal"
  36246. },
  36247. frontTail: {
  36248. height: math.unit(15 + 7/12, "feet"),
  36249. weight: math.unit(1150, "tons"),
  36250. name: "Front (Full Tail)",
  36251. image: {
  36252. source: "./media/characters/saphinara/front-tail.svg",
  36253. extra: 2256/1630,
  36254. bottom: 261/2517
  36255. },
  36256. form: "normal"
  36257. },
  36258. insides: {
  36259. height: math.unit(11.92, "feet"),
  36260. name: "Insides",
  36261. image: {
  36262. source: "./media/characters/saphinara/insides.svg"
  36263. },
  36264. form: "normal"
  36265. },
  36266. head: {
  36267. height: math.unit(4.17, "feet"),
  36268. name: "Head",
  36269. image: {
  36270. source: "./media/characters/saphinara/head.svg"
  36271. },
  36272. form: "normal"
  36273. },
  36274. tongue: {
  36275. height: math.unit(4.60, "feet"),
  36276. name: "Tongue",
  36277. image: {
  36278. source: "./media/characters/saphinara/tongue.svg"
  36279. },
  36280. form: "normal"
  36281. },
  36282. headEnraged: {
  36283. height: math.unit(5.55, "feet"),
  36284. name: "Head (Enraged)",
  36285. image: {
  36286. source: "./media/characters/saphinara/head-enraged.svg"
  36287. },
  36288. form: "normal"
  36289. },
  36290. wings: {
  36291. height: math.unit(11.95, "feet"),
  36292. name: "Wings",
  36293. image: {
  36294. source: "./media/characters/saphinara/wings.svg"
  36295. },
  36296. form: "normal"
  36297. },
  36298. feathers: {
  36299. height: math.unit(8.92, "feet"),
  36300. name: "Feathers",
  36301. image: {
  36302. source: "./media/characters/saphinara/feathers.svg"
  36303. },
  36304. form: "normal"
  36305. },
  36306. shackles: {
  36307. height: math.unit(2, "feet"),
  36308. name: "Shackles",
  36309. image: {
  36310. source: "./media/characters/saphinara/shackles.svg"
  36311. },
  36312. form: "normal"
  36313. },
  36314. eyes: {
  36315. height: math.unit(1.331, "feet"),
  36316. name: "Eyes",
  36317. image: {
  36318. source: "./media/characters/saphinara/eyes.svg"
  36319. },
  36320. form: "normal"
  36321. },
  36322. eyesEnraged: {
  36323. height: math.unit(1.331, "feet"),
  36324. name: "Eyes (Enraged)",
  36325. image: {
  36326. source: "./media/characters/saphinara/eyes-enraged.svg"
  36327. },
  36328. form: "normal"
  36329. },
  36330. trueFormSide: {
  36331. height: math.unit(200, "feet"),
  36332. weight: math.unit(1e7, "tons"),
  36333. name: "Side",
  36334. image: {
  36335. source: "./media/characters/saphinara/true-form-side.svg",
  36336. extra: 1399/770,
  36337. bottom: 97/1496
  36338. },
  36339. form: "true-form",
  36340. default: true
  36341. },
  36342. trueFormMaw: {
  36343. height: math.unit(71.5, "feet"),
  36344. name: "Maw",
  36345. image: {
  36346. source: "./media/characters/saphinara/true-form-maw.svg",
  36347. extra: 2302/1453,
  36348. bottom: 0/2302
  36349. },
  36350. form: "true-form"
  36351. },
  36352. meowberusSide: {
  36353. height: math.unit(75, "feet"),
  36354. weight: math.unit(180000, "kg"),
  36355. preyCapacity: math.unit(50000, "people"),
  36356. name: "Side",
  36357. image: {
  36358. source: "./media/characters/saphinara/meowberus-side.svg",
  36359. extra: 1400/711,
  36360. bottom: 126/1526
  36361. },
  36362. form: "meowberus",
  36363. extraAttributes: {
  36364. "pawArea": {
  36365. name: "Paw Size",
  36366. power: 2,
  36367. type: "area",
  36368. base: math.unit(35, "m^2")
  36369. }
  36370. }
  36371. },
  36372. },
  36373. [
  36374. {
  36375. name: "Normal",
  36376. height: math.unit(15 + 7/12, "feet"),
  36377. default: true,
  36378. form: "normal"
  36379. },
  36380. {
  36381. name: "Angry",
  36382. height: math.unit(30 + 6/12, "feet"),
  36383. form: "normal"
  36384. },
  36385. {
  36386. name: "Enraged",
  36387. height: math.unit(102 + 1/12, "feet"),
  36388. form: "normal"
  36389. },
  36390. {
  36391. name: "True",
  36392. height: math.unit(200, "feet"),
  36393. default: true,
  36394. form: "true-form"
  36395. },
  36396. {
  36397. name: "Normal",
  36398. height: math.unit(75, "feet"),
  36399. default: true,
  36400. form: "meowberus"
  36401. },
  36402. ],
  36403. {
  36404. "normal": {
  36405. name: "Normal",
  36406. default: true
  36407. },
  36408. "true-form": {
  36409. name: "True Form"
  36410. },
  36411. "meowberus": {
  36412. name: "Meowberus",
  36413. },
  36414. }
  36415. ))
  36416. characterMakers.push(() => makeCharacter(
  36417. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36418. {
  36419. front: {
  36420. height: math.unit(6 + 8/12, "feet"),
  36421. weight: math.unit(300, "lb"),
  36422. name: "Front",
  36423. image: {
  36424. source: "./media/characters/jrain/front.svg",
  36425. extra: 3039/2865,
  36426. bottom: 399/3438
  36427. }
  36428. },
  36429. back: {
  36430. height: math.unit(6 + 8/12, "feet"),
  36431. weight: math.unit(300, "lb"),
  36432. name: "Back",
  36433. image: {
  36434. source: "./media/characters/jrain/back.svg",
  36435. extra: 3089/2938,
  36436. bottom: 172/3261
  36437. }
  36438. },
  36439. head: {
  36440. height: math.unit(2.14, "feet"),
  36441. name: "Head",
  36442. image: {
  36443. source: "./media/characters/jrain/head.svg"
  36444. }
  36445. },
  36446. maw: {
  36447. height: math.unit(1.77, "feet"),
  36448. name: "Maw",
  36449. image: {
  36450. source: "./media/characters/jrain/maw.svg"
  36451. }
  36452. },
  36453. leftHand: {
  36454. height: math.unit(1.1, "feet"),
  36455. name: "Left Hand",
  36456. image: {
  36457. source: "./media/characters/jrain/left-hand.svg"
  36458. }
  36459. },
  36460. rightHand: {
  36461. height: math.unit(1.1, "feet"),
  36462. name: "Right Hand",
  36463. image: {
  36464. source: "./media/characters/jrain/right-hand.svg"
  36465. }
  36466. },
  36467. eye: {
  36468. height: math.unit(0.35, "feet"),
  36469. name: "Eye",
  36470. image: {
  36471. source: "./media/characters/jrain/eye.svg"
  36472. }
  36473. },
  36474. },
  36475. [
  36476. {
  36477. name: "Normal",
  36478. height: math.unit(6 + 8/12, "feet"),
  36479. default: true
  36480. },
  36481. {
  36482. name: "Casually Large",
  36483. height: math.unit(25, "feet")
  36484. },
  36485. {
  36486. name: "Giant",
  36487. height: math.unit(100, "feet")
  36488. },
  36489. {
  36490. name: "Kaiju",
  36491. height: math.unit(300, "feet")
  36492. },
  36493. ]
  36494. ))
  36495. characterMakers.push(() => makeCharacter(
  36496. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36497. {
  36498. dragon: {
  36499. height: math.unit(5, "meters"),
  36500. name: "Dragon",
  36501. image: {
  36502. source: "./media/characters/sabrina/dragon.svg",
  36503. extra: 3670 / 2365,
  36504. bottom: 333 / 4003
  36505. }
  36506. },
  36507. gryphon: {
  36508. height: math.unit(3, "meters"),
  36509. name: "Gryphon",
  36510. image: {
  36511. source: "./media/characters/sabrina/gryphon.svg",
  36512. extra: 1576 / 945,
  36513. bottom: 71 / 1647
  36514. }
  36515. },
  36516. snake: {
  36517. height: math.unit(12, "meters"),
  36518. name: "Snake",
  36519. image: {
  36520. source: "./media/characters/sabrina/snake.svg",
  36521. extra: 1758 / 1320,
  36522. bottom: 186 / 1944
  36523. }
  36524. },
  36525. collar: {
  36526. height: math.unit(1.86, "meters"),
  36527. name: "Collar",
  36528. image: {
  36529. source: "./media/characters/sabrina/collar.svg"
  36530. }
  36531. },
  36532. eye: {
  36533. height: math.unit(0.53, "meters"),
  36534. name: "Eye",
  36535. image: {
  36536. source: "./media/characters/sabrina/eye.svg"
  36537. }
  36538. },
  36539. foot: {
  36540. height: math.unit(1.86, "meters"),
  36541. name: "Foot",
  36542. image: {
  36543. source: "./media/characters/sabrina/foot.svg"
  36544. }
  36545. },
  36546. hand: {
  36547. height: math.unit(1.32, "meters"),
  36548. name: "Hand",
  36549. image: {
  36550. source: "./media/characters/sabrina/hand.svg"
  36551. }
  36552. },
  36553. head: {
  36554. height: math.unit(2.44, "meters"),
  36555. name: "Head",
  36556. image: {
  36557. source: "./media/characters/sabrina/head.svg"
  36558. }
  36559. },
  36560. headAngry: {
  36561. height: math.unit(2.44, "meters"),
  36562. name: "Head (Angry))",
  36563. image: {
  36564. source: "./media/characters/sabrina/head-angry.svg"
  36565. }
  36566. },
  36567. maw: {
  36568. height: math.unit(1.65, "meters"),
  36569. name: "Maw",
  36570. image: {
  36571. source: "./media/characters/sabrina/maw.svg"
  36572. }
  36573. },
  36574. spikes: {
  36575. height: math.unit(1.69, "meters"),
  36576. name: "Spikes",
  36577. image: {
  36578. source: "./media/characters/sabrina/spikes.svg"
  36579. }
  36580. },
  36581. stomach: {
  36582. height: math.unit(1.15, "meters"),
  36583. name: "Stomach",
  36584. image: {
  36585. source: "./media/characters/sabrina/stomach.svg"
  36586. }
  36587. },
  36588. tongue: {
  36589. height: math.unit(1.27, "meters"),
  36590. name: "Tongue",
  36591. image: {
  36592. source: "./media/characters/sabrina/tongue.svg"
  36593. }
  36594. },
  36595. wingDorsal: {
  36596. height: math.unit(4.85, "meters"),
  36597. name: "Wing (Dorsal)",
  36598. image: {
  36599. source: "./media/characters/sabrina/wing-dorsal.svg"
  36600. }
  36601. },
  36602. wingVentral: {
  36603. height: math.unit(4.85, "meters"),
  36604. name: "Wing (Ventral)",
  36605. image: {
  36606. source: "./media/characters/sabrina/wing-ventral.svg"
  36607. }
  36608. },
  36609. },
  36610. [
  36611. {
  36612. name: "Normal",
  36613. height: math.unit(5, "meters"),
  36614. default: true
  36615. },
  36616. ]
  36617. ))
  36618. characterMakers.push(() => makeCharacter(
  36619. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36620. {
  36621. frontMaid: {
  36622. height: math.unit(5 + 5/12, "feet"),
  36623. weight: math.unit(130, "lb"),
  36624. name: "Front (Maid)",
  36625. image: {
  36626. source: "./media/characters/midnight-tales/front-maid.svg",
  36627. extra: 489/454,
  36628. bottom: 61/550
  36629. }
  36630. },
  36631. frontFormal: {
  36632. height: math.unit(5 + 5/12, "feet"),
  36633. weight: math.unit(130, "lb"),
  36634. name: "Front (Formal)",
  36635. image: {
  36636. source: "./media/characters/midnight-tales/front-formal.svg",
  36637. extra: 489/454,
  36638. bottom: 61/550
  36639. }
  36640. },
  36641. back: {
  36642. height: math.unit(5 + 5/12, "feet"),
  36643. weight: math.unit(130, "lb"),
  36644. name: "Back",
  36645. image: {
  36646. source: "./media/characters/midnight-tales/back.svg",
  36647. extra: 498/456,
  36648. bottom: 33/531
  36649. }
  36650. },
  36651. frontBeast: {
  36652. height: math.unit(40, "feet"),
  36653. weight: math.unit(64000, "lb"),
  36654. name: "Front (Beast)",
  36655. image: {
  36656. source: "./media/characters/midnight-tales/front-beast.svg",
  36657. extra: 927/860,
  36658. bottom: 53/980
  36659. }
  36660. },
  36661. backBeast: {
  36662. height: math.unit(40, "feet"),
  36663. weight: math.unit(64000, "lb"),
  36664. name: "Back (Beast)",
  36665. image: {
  36666. source: "./media/characters/midnight-tales/back-beast.svg",
  36667. extra: 929/855,
  36668. bottom: 16/945
  36669. }
  36670. },
  36671. footBeast: {
  36672. height: math.unit(6.7, "feet"),
  36673. name: "Foot (Beast)",
  36674. image: {
  36675. source: "./media/characters/midnight-tales/foot-beast.svg"
  36676. }
  36677. },
  36678. headBeast: {
  36679. height: math.unit(8, "feet"),
  36680. name: "Head (Beast)",
  36681. image: {
  36682. source: "./media/characters/midnight-tales/head-beast.svg"
  36683. }
  36684. },
  36685. },
  36686. [
  36687. {
  36688. name: "Normal",
  36689. height: math.unit(5 + 5 / 12, "feet"),
  36690. default: true
  36691. },
  36692. {
  36693. name: "Macro",
  36694. height: math.unit(25, "feet")
  36695. },
  36696. ]
  36697. ))
  36698. characterMakers.push(() => makeCharacter(
  36699. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36700. {
  36701. front: {
  36702. height: math.unit(5 + 10/12, "feet"),
  36703. name: "Front",
  36704. image: {
  36705. source: "./media/characters/argon/front.svg",
  36706. extra: 2009/1935,
  36707. bottom: 118/2127
  36708. }
  36709. },
  36710. back: {
  36711. height: math.unit(5 + 10/12, "feet"),
  36712. name: "Back",
  36713. image: {
  36714. source: "./media/characters/argon/back.svg",
  36715. extra: 2047/1992,
  36716. bottom: 20/2067
  36717. }
  36718. },
  36719. frontDressed: {
  36720. height: math.unit(5 + 10/12, "feet"),
  36721. name: "Front (Dressed)",
  36722. image: {
  36723. source: "./media/characters/argon/front-dressed.svg",
  36724. extra: 2009/1935,
  36725. bottom: 118/2127
  36726. }
  36727. },
  36728. },
  36729. [
  36730. {
  36731. name: "Normal",
  36732. height: math.unit(5 + 10/12, "feet"),
  36733. default: true
  36734. },
  36735. ]
  36736. ))
  36737. characterMakers.push(() => makeCharacter(
  36738. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36739. {
  36740. front: {
  36741. height: math.unit(8 + 6/12, "feet"),
  36742. weight: math.unit(1150, "lb"),
  36743. name: "Front",
  36744. image: {
  36745. source: "./media/characters/kichi/front.svg",
  36746. extra: 1267/1164,
  36747. bottom: 61/1328
  36748. }
  36749. },
  36750. back: {
  36751. height: math.unit(8 + 6/12, "feet"),
  36752. weight: math.unit(1150, "lb"),
  36753. name: "Back",
  36754. image: {
  36755. source: "./media/characters/kichi/back.svg",
  36756. extra: 1273/1166,
  36757. bottom: 33/1306
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Normal",
  36764. height: math.unit(8 + 6/12, "feet"),
  36765. default: true
  36766. },
  36767. ]
  36768. ))
  36769. characterMakers.push(() => makeCharacter(
  36770. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36771. {
  36772. front: {
  36773. height: math.unit(6, "feet"),
  36774. weight: math.unit(210, "lb"),
  36775. name: "Front",
  36776. image: {
  36777. source: "./media/characters/manetel-greyscale/front.svg",
  36778. extra: 350/312,
  36779. bottom: 8/358
  36780. }
  36781. },
  36782. },
  36783. [
  36784. {
  36785. name: "Micro",
  36786. height: math.unit(2, "inches")
  36787. },
  36788. {
  36789. name: "Normal",
  36790. height: math.unit(6, "feet"),
  36791. default: true
  36792. },
  36793. {
  36794. name: "Minimacro",
  36795. height: math.unit(17, "feet")
  36796. },
  36797. {
  36798. name: "Macro",
  36799. height: math.unit(117, "feet")
  36800. },
  36801. ]
  36802. ))
  36803. characterMakers.push(() => makeCharacter(
  36804. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36805. {
  36806. side: {
  36807. height: math.unit(5 + 1/12, "feet"),
  36808. weight: math.unit(418, "lb"),
  36809. name: "Side",
  36810. image: {
  36811. source: "./media/characters/softpurr/side.svg",
  36812. extra: 1993/1945,
  36813. bottom: 134/2127
  36814. }
  36815. },
  36816. front: {
  36817. height: math.unit(5 + 1/12, "feet"),
  36818. weight: math.unit(418, "lb"),
  36819. name: "Front",
  36820. image: {
  36821. source: "./media/characters/softpurr/front.svg",
  36822. extra: 1950/1856,
  36823. bottom: 174/2124
  36824. }
  36825. },
  36826. paw: {
  36827. height: math.unit(1, "feet"),
  36828. name: "Paw",
  36829. image: {
  36830. source: "./media/characters/softpurr/paw.svg"
  36831. }
  36832. },
  36833. },
  36834. [
  36835. {
  36836. name: "Normal",
  36837. height: math.unit(5 + 1/12, "feet"),
  36838. default: true
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36844. {
  36845. front: {
  36846. height: math.unit(260, "meters"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/anahita/front.svg",
  36850. extra: 665/635,
  36851. bottom: 89/754
  36852. }
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "Macro",
  36858. height: math.unit(260, "meters"),
  36859. default: true
  36860. },
  36861. ]
  36862. ))
  36863. characterMakers.push(() => makeCharacter(
  36864. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36865. {
  36866. front: {
  36867. height: math.unit(4 + 10/12, "feet"),
  36868. weight: math.unit(160, "lb"),
  36869. name: "Front",
  36870. image: {
  36871. source: "./media/characters/chip-mouse/front.svg",
  36872. extra: 3528/3408,
  36873. bottom: 0/3528
  36874. }
  36875. },
  36876. frontNsfw: {
  36877. height: math.unit(4 + 10/12, "feet"),
  36878. weight: math.unit(160, "lb"),
  36879. name: "Front (NSFW)",
  36880. image: {
  36881. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36882. extra: 3528/3408,
  36883. bottom: 0/3528
  36884. }
  36885. },
  36886. },
  36887. [
  36888. {
  36889. name: "Normal",
  36890. height: math.unit(4 + 10/12, "feet"),
  36891. default: true
  36892. },
  36893. ]
  36894. ))
  36895. characterMakers.push(() => makeCharacter(
  36896. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36897. {
  36898. side: {
  36899. height: math.unit(10, "feet"),
  36900. weight: math.unit(14000, "lb"),
  36901. name: "Side",
  36902. image: {
  36903. source: "./media/characters/kremm/side.svg",
  36904. extra: 1390/1053,
  36905. bottom: 90/1480
  36906. }
  36907. },
  36908. gut: {
  36909. height: math.unit(5.8, "feet"),
  36910. name: "Gut",
  36911. image: {
  36912. source: "./media/characters/kremm/gut.svg"
  36913. }
  36914. },
  36915. ass: {
  36916. height: math.unit(6.1, "feet"),
  36917. name: "Ass",
  36918. image: {
  36919. source: "./media/characters/kremm/ass.svg"
  36920. }
  36921. },
  36922. jaws: {
  36923. height: math.unit(2.2, "feet"),
  36924. name: "Jaws",
  36925. image: {
  36926. source: "./media/characters/kremm/jaws.svg"
  36927. }
  36928. },
  36929. dick: {
  36930. height: math.unit(4.26, "feet"),
  36931. name: "Dick",
  36932. image: {
  36933. source: "./media/characters/kremm/dick.svg"
  36934. }
  36935. },
  36936. },
  36937. [
  36938. {
  36939. name: "Normal",
  36940. height: math.unit(10, "feet"),
  36941. default: true
  36942. },
  36943. ]
  36944. ))
  36945. characterMakers.push(() => makeCharacter(
  36946. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36947. {
  36948. front: {
  36949. height: math.unit(30, "stories"),
  36950. name: "Front",
  36951. image: {
  36952. source: "./media/characters/kai/front.svg",
  36953. extra: 1892/1718,
  36954. bottom: 162/2054
  36955. }
  36956. },
  36957. },
  36958. [
  36959. {
  36960. name: "Macro",
  36961. height: math.unit(30, "stories"),
  36962. default: true
  36963. },
  36964. ]
  36965. ))
  36966. characterMakers.push(() => makeCharacter(
  36967. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36968. {
  36969. front: {
  36970. height: math.unit(6 + 4/12, "feet"),
  36971. weight: math.unit(145, "lb"),
  36972. name: "Front",
  36973. image: {
  36974. source: "./media/characters/sykes/front.svg",
  36975. extra: 1321 / 1187,
  36976. bottom: 66 / 1387
  36977. }
  36978. },
  36979. back: {
  36980. height: math.unit(6 + 4/12, "feet"),
  36981. weight: math.unit(145, "lb"),
  36982. name: "Back",
  36983. image: {
  36984. source: "./media/characters/sykes/back.svg",
  36985. extra: 1326/1181,
  36986. bottom: 31/1357
  36987. }
  36988. },
  36989. traditionalOutfit: {
  36990. height: math.unit(6 + 4/12, "feet"),
  36991. weight: math.unit(145, "lb"),
  36992. name: "Traditional Outfit",
  36993. image: {
  36994. source: "./media/characters/sykes/traditional-outfit.svg",
  36995. extra: 1321 / 1187,
  36996. bottom: 66 / 1387
  36997. }
  36998. },
  36999. adventureOutfit: {
  37000. height: math.unit(6 + 4/12, "feet"),
  37001. weight: math.unit(145, "lb"),
  37002. name: "Adventure Outfit",
  37003. image: {
  37004. source: "./media/characters/sykes/adventure-outfit.svg",
  37005. extra: 1321 / 1187,
  37006. bottom: 66 / 1387
  37007. }
  37008. },
  37009. handLeft: {
  37010. height: math.unit(0.9, "feet"),
  37011. name: "Hand (Left)",
  37012. image: {
  37013. source: "./media/characters/sykes/hand-left.svg"
  37014. }
  37015. },
  37016. handRight: {
  37017. height: math.unit(0.839, "feet"),
  37018. name: "Hand (Right)",
  37019. image: {
  37020. source: "./media/characters/sykes/hand-right.svg"
  37021. }
  37022. },
  37023. leftFoot: {
  37024. height: math.unit(1.2, "feet"),
  37025. name: "Foot (Left)",
  37026. image: {
  37027. source: "./media/characters/sykes/foot-left.svg"
  37028. }
  37029. },
  37030. rightFoot: {
  37031. height: math.unit(1.2, "feet"),
  37032. name: "Foot (Right)",
  37033. image: {
  37034. source: "./media/characters/sykes/foot-right.svg"
  37035. }
  37036. },
  37037. maw: {
  37038. height: math.unit(1.93, "feet"),
  37039. name: "Maw",
  37040. image: {
  37041. source: "./media/characters/sykes/maw.svg"
  37042. }
  37043. },
  37044. teeth: {
  37045. height: math.unit(0.51, "feet"),
  37046. name: "Teeth",
  37047. image: {
  37048. source: "./media/characters/sykes/teeth.svg"
  37049. }
  37050. },
  37051. tongue: {
  37052. height: math.unit(2.13, "feet"),
  37053. name: "Tongue",
  37054. image: {
  37055. source: "./media/characters/sykes/tongue.svg"
  37056. }
  37057. },
  37058. uvula: {
  37059. height: math.unit(0.16, "feet"),
  37060. name: "Uvula",
  37061. image: {
  37062. source: "./media/characters/sykes/uvula.svg"
  37063. }
  37064. },
  37065. collar: {
  37066. height: math.unit(0.287, "feet"),
  37067. name: "Collar",
  37068. image: {
  37069. source: "./media/characters/sykes/collar.svg"
  37070. }
  37071. },
  37072. tail: {
  37073. height: math.unit(3.8, "feet"),
  37074. name: "Tail",
  37075. image: {
  37076. source: "./media/characters/sykes/tail.svg"
  37077. }
  37078. },
  37079. },
  37080. [
  37081. {
  37082. name: "Shrunken",
  37083. height: math.unit(5, "inches")
  37084. },
  37085. {
  37086. name: "Normal",
  37087. height: math.unit(6 + 4 / 12, "feet"),
  37088. default: true
  37089. },
  37090. {
  37091. name: "Big",
  37092. height: math.unit(15, "feet")
  37093. },
  37094. ]
  37095. ))
  37096. characterMakers.push(() => makeCharacter(
  37097. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37098. {
  37099. front: {
  37100. height: math.unit(5 + 8/12, "feet"),
  37101. weight: math.unit(190, "lb"),
  37102. name: "Front",
  37103. image: {
  37104. source: "./media/characters/oven-otter/front.svg",
  37105. extra: 1809/1740,
  37106. bottom: 181/1990
  37107. }
  37108. },
  37109. back: {
  37110. height: math.unit(5 + 8/12, "feet"),
  37111. weight: math.unit(190, "lb"),
  37112. name: "Back",
  37113. image: {
  37114. source: "./media/characters/oven-otter/back.svg",
  37115. extra: 1709/1635,
  37116. bottom: 118/1827
  37117. }
  37118. },
  37119. hand: {
  37120. height: math.unit(1.07, "feet"),
  37121. name: "Hand",
  37122. image: {
  37123. source: "./media/characters/oven-otter/hand.svg"
  37124. }
  37125. },
  37126. beans: {
  37127. height: math.unit(1.74, "feet"),
  37128. name: "Beans",
  37129. image: {
  37130. source: "./media/characters/oven-otter/beans.svg"
  37131. }
  37132. },
  37133. },
  37134. [
  37135. {
  37136. name: "Micro",
  37137. height: math.unit(0.5, "inches")
  37138. },
  37139. {
  37140. name: "Normal",
  37141. height: math.unit(5 + 8/12, "feet"),
  37142. default: true
  37143. },
  37144. {
  37145. name: "Macro",
  37146. height: math.unit(250, "feet")
  37147. },
  37148. {
  37149. name: "Really High",
  37150. height: math.unit(420, "feet")
  37151. },
  37152. ]
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37156. {
  37157. front: {
  37158. height: math.unit(5, "meters"),
  37159. weight: math.unit(292000000000000, "kg"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/devourer/front.svg",
  37163. extra: 1800/1733,
  37164. bottom: 211/2011
  37165. }
  37166. },
  37167. maw: {
  37168. height: math.unit(1.1, "meter"),
  37169. name: "Maw",
  37170. image: {
  37171. source: "./media/characters/devourer/maw.svg"
  37172. }
  37173. },
  37174. },
  37175. [
  37176. {
  37177. name: "Small",
  37178. height: math.unit(3, "meters")
  37179. },
  37180. {
  37181. name: "Large",
  37182. height: math.unit(5, "meters"),
  37183. default: true
  37184. },
  37185. ]
  37186. ))
  37187. characterMakers.push(() => makeCharacter(
  37188. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37189. {
  37190. front: {
  37191. height: math.unit(6, "feet"),
  37192. weight: math.unit(400, "lb"),
  37193. name: "Front",
  37194. image: {
  37195. source: "./media/characters/ellarby/front.svg",
  37196. extra: 1909/1763,
  37197. bottom: 80/1989
  37198. }
  37199. },
  37200. back: {
  37201. height: math.unit(6, "feet"),
  37202. weight: math.unit(400, "lb"),
  37203. name: "Back",
  37204. image: {
  37205. source: "./media/characters/ellarby/back.svg",
  37206. extra: 1914/1784,
  37207. bottom: 172/2086
  37208. }
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "Mischief",
  37214. height: math.unit(18, "inches")
  37215. },
  37216. {
  37217. name: "Trouble",
  37218. height: math.unit(12, "feet")
  37219. },
  37220. {
  37221. name: "Havoc",
  37222. height: math.unit(200, "feet"),
  37223. default: true
  37224. },
  37225. {
  37226. name: "Pandemonium",
  37227. height: math.unit(1, "mile")
  37228. },
  37229. {
  37230. name: "Catastrophe",
  37231. height: math.unit(100, "miles")
  37232. },
  37233. ]
  37234. ))
  37235. characterMakers.push(() => makeCharacter(
  37236. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37237. {
  37238. front: {
  37239. height: math.unit(4.7, "meters"),
  37240. weight: math.unit(6500, "kg"),
  37241. name: "Front",
  37242. image: {
  37243. source: "./media/characters/vex/front.svg",
  37244. extra: 1288/1140,
  37245. bottom: 100/1388
  37246. }
  37247. },
  37248. },
  37249. [
  37250. {
  37251. name: "Normal",
  37252. height: math.unit(4.7, "meters"),
  37253. default: true
  37254. },
  37255. ]
  37256. ))
  37257. characterMakers.push(() => makeCharacter(
  37258. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37259. {
  37260. normal: {
  37261. height: math.unit(6, "feet"),
  37262. weight: math.unit(350, "lb"),
  37263. name: "Normal",
  37264. image: {
  37265. source: "./media/characters/teshy/normal.svg",
  37266. extra: 1795/1735,
  37267. bottom: 16/1811
  37268. }
  37269. },
  37270. monsterFront: {
  37271. height: math.unit(12, "feet"),
  37272. weight: math.unit(4700, "lb"),
  37273. name: "Monster (Front)",
  37274. image: {
  37275. source: "./media/characters/teshy/monster-front.svg",
  37276. extra: 2042/2034,
  37277. bottom: 128/2170
  37278. }
  37279. },
  37280. monsterSide: {
  37281. height: math.unit(12, "feet"),
  37282. weight: math.unit(4700, "lb"),
  37283. name: "Monster (Side)",
  37284. image: {
  37285. source: "./media/characters/teshy/monster-side.svg",
  37286. extra: 2067/2056,
  37287. bottom: 70/2137
  37288. }
  37289. },
  37290. monsterBack: {
  37291. height: math.unit(12, "feet"),
  37292. weight: math.unit(4700, "lb"),
  37293. name: "Monster (Back)",
  37294. image: {
  37295. source: "./media/characters/teshy/monster-back.svg",
  37296. extra: 1921/1914,
  37297. bottom: 171/2092
  37298. }
  37299. },
  37300. },
  37301. [
  37302. {
  37303. name: "Normal",
  37304. height: math.unit(6, "feet"),
  37305. default: true
  37306. },
  37307. ]
  37308. ))
  37309. characterMakers.push(() => makeCharacter(
  37310. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37311. {
  37312. front: {
  37313. height: math.unit(6, "feet"),
  37314. name: "Front",
  37315. image: {
  37316. source: "./media/characters/ramey/front.svg",
  37317. extra: 790/787,
  37318. bottom: 27/817
  37319. }
  37320. },
  37321. },
  37322. [
  37323. {
  37324. name: "Normal",
  37325. height: math.unit(6, "feet"),
  37326. default: true
  37327. },
  37328. ]
  37329. ))
  37330. characterMakers.push(() => makeCharacter(
  37331. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37332. {
  37333. front: {
  37334. height: math.unit(5 + 5/12, "feet"),
  37335. weight: math.unit(120, "lb"),
  37336. name: "Front",
  37337. image: {
  37338. source: "./media/characters/phirae/front.svg",
  37339. extra: 2491/2436,
  37340. bottom: 38/2529
  37341. }
  37342. },
  37343. },
  37344. [
  37345. {
  37346. name: "Normal",
  37347. height: math.unit(5 + 5/12, "feet"),
  37348. default: true
  37349. },
  37350. ]
  37351. ))
  37352. characterMakers.push(() => makeCharacter(
  37353. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37354. {
  37355. front: {
  37356. height: math.unit(5 + 3/12, "feet"),
  37357. name: "Front",
  37358. image: {
  37359. source: "./media/characters/stagglas/front.svg",
  37360. extra: 962/882,
  37361. bottom: 53/1015
  37362. }
  37363. },
  37364. feral: {
  37365. height: math.unit(335, "cm"),
  37366. name: "Feral",
  37367. image: {
  37368. source: "./media/characters/stagglas/feral.svg",
  37369. extra: 1732/1090,
  37370. bottom: 48/1780
  37371. }
  37372. },
  37373. },
  37374. [
  37375. {
  37376. name: "Normal",
  37377. height: math.unit(5 + 3/12, "feet"),
  37378. default: true
  37379. },
  37380. ]
  37381. ))
  37382. characterMakers.push(() => makeCharacter(
  37383. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37384. {
  37385. front: {
  37386. height: math.unit(5 + 4/12, "feet"),
  37387. weight: math.unit(145, "lb"),
  37388. name: "Front",
  37389. image: {
  37390. source: "./media/characters/starra/front.svg",
  37391. extra: 1790/1691,
  37392. bottom: 91/1881
  37393. }
  37394. },
  37395. },
  37396. [
  37397. {
  37398. name: "Normal",
  37399. height: math.unit(5 + 4/12, "feet"),
  37400. default: true
  37401. },
  37402. ]
  37403. ))
  37404. characterMakers.push(() => makeCharacter(
  37405. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37406. {
  37407. front: {
  37408. height: math.unit(3.5, "meters"),
  37409. name: "Front",
  37410. image: {
  37411. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37412. extra: 1248/972,
  37413. bottom: 38/1286
  37414. }
  37415. },
  37416. },
  37417. [
  37418. {
  37419. name: "Normal",
  37420. height: math.unit(3.5, "meters"),
  37421. default: true
  37422. },
  37423. ]
  37424. ))
  37425. characterMakers.push(() => makeCharacter(
  37426. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37427. {
  37428. side: {
  37429. height: math.unit(8 + 2/12, "feet"),
  37430. weight: math.unit(1240, "lb"),
  37431. name: "Side",
  37432. image: {
  37433. source: "./media/characters/mika-valentine/side.svg",
  37434. extra: 2670/2501,
  37435. bottom: 250/2920
  37436. }
  37437. },
  37438. },
  37439. [
  37440. {
  37441. name: "Normal",
  37442. height: math.unit(8 + 2/12, "feet"),
  37443. default: true
  37444. },
  37445. ]
  37446. ))
  37447. characterMakers.push(() => makeCharacter(
  37448. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37449. {
  37450. front: {
  37451. height: math.unit(7 + 2/12, "feet"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/xoltol/front.svg",
  37455. extra: 2212/2124,
  37456. bottom: 84/2296
  37457. }
  37458. },
  37459. side: {
  37460. height: math.unit(7 + 2/12, "feet"),
  37461. name: "Side",
  37462. image: {
  37463. source: "./media/characters/xoltol/side.svg",
  37464. extra: 2273/2197,
  37465. bottom: 26/2299
  37466. }
  37467. },
  37468. hand: {
  37469. height: math.unit(2.5, "feet"),
  37470. name: "Hand",
  37471. image: {
  37472. source: "./media/characters/xoltol/hand.svg"
  37473. }
  37474. },
  37475. },
  37476. [
  37477. {
  37478. name: "Small-ish",
  37479. height: math.unit(5 + 11/12, "feet")
  37480. },
  37481. {
  37482. name: "Normal",
  37483. height: math.unit(7 + 2/12, "feet")
  37484. },
  37485. {
  37486. name: "\"Macro\"",
  37487. height: math.unit(14 + 9/12, "feet"),
  37488. default: true
  37489. },
  37490. {
  37491. name: "Alternate Height",
  37492. height: math.unit(20, "feet")
  37493. },
  37494. {
  37495. name: "Actually Macro",
  37496. height: math.unit(100, "feet")
  37497. },
  37498. ]
  37499. ))
  37500. characterMakers.push(() => makeCharacter(
  37501. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37502. {
  37503. front: {
  37504. height: math.unit(5 + 2/12, "feet"),
  37505. weight: math.unit(75, "kg"),
  37506. name: "Front",
  37507. image: {
  37508. source: "./media/characters/kotetsu-redwood/front.svg",
  37509. extra: 1053/942,
  37510. bottom: 60/1113
  37511. }
  37512. },
  37513. },
  37514. [
  37515. {
  37516. name: "Normal",
  37517. height: math.unit(5 + 2/12, "feet"),
  37518. default: true
  37519. },
  37520. ]
  37521. ))
  37522. characterMakers.push(() => makeCharacter(
  37523. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37524. {
  37525. front: {
  37526. height: math.unit(2.4, "meters"),
  37527. weight: math.unit(125, "kg"),
  37528. name: "Front",
  37529. image: {
  37530. source: "./media/characters/lilith/front.svg",
  37531. extra: 1590/1513,
  37532. bottom: 203/1793
  37533. }
  37534. },
  37535. },
  37536. [
  37537. {
  37538. name: "Humanoid",
  37539. height: math.unit(2.4, "meters")
  37540. },
  37541. {
  37542. name: "Normal",
  37543. height: math.unit(6, "meters"),
  37544. default: true
  37545. },
  37546. {
  37547. name: "Largest",
  37548. height: math.unit(55, "meters")
  37549. },
  37550. ]
  37551. ))
  37552. characterMakers.push(() => makeCharacter(
  37553. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37554. {
  37555. front: {
  37556. height: math.unit(8 + 4/12, "feet"),
  37557. weight: math.unit(535, "lb"),
  37558. name: "Front",
  37559. image: {
  37560. source: "./media/characters/beh'kah-bolger/front.svg",
  37561. extra: 1660/1603,
  37562. bottom: 37/1697
  37563. }
  37564. },
  37565. },
  37566. [
  37567. {
  37568. name: "Normal",
  37569. height: math.unit(8 + 4/12, "feet"),
  37570. default: true
  37571. },
  37572. {
  37573. name: "Kaiju",
  37574. height: math.unit(250, "feet")
  37575. },
  37576. {
  37577. name: "Still Growing",
  37578. height: math.unit(10, "miles")
  37579. },
  37580. {
  37581. name: "Continental",
  37582. height: math.unit(5000, "miles")
  37583. },
  37584. {
  37585. name: "Final Form",
  37586. height: math.unit(2500000, "miles")
  37587. },
  37588. ]
  37589. ))
  37590. characterMakers.push(() => makeCharacter(
  37591. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37592. {
  37593. front: {
  37594. height: math.unit(7 + 2/12, "feet"),
  37595. weight: math.unit(230, "kg"),
  37596. name: "Front",
  37597. image: {
  37598. source: "./media/characters/tatyana-milewska/front.svg",
  37599. extra: 1199/1150,
  37600. bottom: 86/1285
  37601. }
  37602. },
  37603. },
  37604. [
  37605. {
  37606. name: "Normal",
  37607. height: math.unit(7 + 2/12, "feet"),
  37608. default: true
  37609. },
  37610. {
  37611. name: "Big",
  37612. height: math.unit(12, "feet")
  37613. },
  37614. {
  37615. name: "Minimacro",
  37616. height: math.unit(20, "feet")
  37617. },
  37618. {
  37619. name: "Macro",
  37620. height: math.unit(120, "feet")
  37621. },
  37622. ]
  37623. ))
  37624. characterMakers.push(() => makeCharacter(
  37625. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37626. {
  37627. front: {
  37628. height: math.unit(7 + 8/12, "feet"),
  37629. weight: math.unit(152, "kg"),
  37630. name: "Front",
  37631. image: {
  37632. source: "./media/characters/helen-arri/front.svg",
  37633. extra: 440/423,
  37634. bottom: 14/454
  37635. }
  37636. },
  37637. back: {
  37638. height: math.unit(7 + 8/12, "feet"),
  37639. weight: math.unit(152, "kg"),
  37640. name: "Back",
  37641. image: {
  37642. source: "./media/characters/helen-arri/back.svg",
  37643. extra: 443/426,
  37644. bottom: 8/451
  37645. }
  37646. },
  37647. },
  37648. [
  37649. {
  37650. name: "Normal",
  37651. height: math.unit(7 + 8/12, "feet"),
  37652. default: true
  37653. },
  37654. {
  37655. name: "Big",
  37656. height: math.unit(14, "feet")
  37657. },
  37658. {
  37659. name: "Minimacro",
  37660. height: math.unit(24, "feet")
  37661. },
  37662. {
  37663. name: "Macro",
  37664. height: math.unit(140, "feet")
  37665. },
  37666. ]
  37667. ))
  37668. characterMakers.push(() => makeCharacter(
  37669. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37670. {
  37671. front: {
  37672. height: math.unit(6, "meters"),
  37673. name: "Front",
  37674. image: {
  37675. source: "./media/characters/ehanu-rehu/front.svg",
  37676. extra: 1800/1800,
  37677. bottom: 59/1859
  37678. }
  37679. },
  37680. },
  37681. [
  37682. {
  37683. name: "Normal",
  37684. height: math.unit(6, "meters"),
  37685. default: true
  37686. },
  37687. ]
  37688. ))
  37689. characterMakers.push(() => makeCharacter(
  37690. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37691. {
  37692. front: {
  37693. height: math.unit(7 + 3/12, "feet"),
  37694. name: "Front",
  37695. image: {
  37696. source: "./media/characters/renholder/front.svg",
  37697. extra: 3096/2960,
  37698. bottom: 250/3346
  37699. }
  37700. },
  37701. },
  37702. [
  37703. {
  37704. name: "Normal Bat",
  37705. height: math.unit(7 + 3/12, "feet"),
  37706. default: true
  37707. },
  37708. {
  37709. name: "Slightly Tall Bat",
  37710. height: math.unit(100, "feet")
  37711. },
  37712. {
  37713. name: "Big Bat",
  37714. height: math.unit(1000, "feet")
  37715. },
  37716. {
  37717. name: "City-Sized Bat",
  37718. height: math.unit(200000, "feet")
  37719. },
  37720. {
  37721. name: "Bigger Bat",
  37722. height: math.unit(10000, "miles")
  37723. },
  37724. {
  37725. name: "Solar Sized Bat",
  37726. height: math.unit(100, "AU")
  37727. },
  37728. {
  37729. name: "Galactic Bat",
  37730. height: math.unit(200000, "lightyears")
  37731. },
  37732. {
  37733. name: "Universally Known Bat",
  37734. height: math.unit(1, "universe")
  37735. },
  37736. ]
  37737. ))
  37738. characterMakers.push(() => makeCharacter(
  37739. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37740. {
  37741. front: {
  37742. height: math.unit(6 + 11/12, "feet"),
  37743. weight: math.unit(250, "lb"),
  37744. name: "Front",
  37745. image: {
  37746. source: "./media/characters/cookiecat/front.svg",
  37747. extra: 893/827,
  37748. bottom: 14/907
  37749. }
  37750. },
  37751. },
  37752. [
  37753. {
  37754. name: "Micro",
  37755. height: math.unit(3, "inches")
  37756. },
  37757. {
  37758. name: "Normal",
  37759. height: math.unit(6 + 11/12, "feet"),
  37760. default: true
  37761. },
  37762. {
  37763. name: "Macro",
  37764. height: math.unit(100, "feet")
  37765. },
  37766. {
  37767. name: "Macro+",
  37768. height: math.unit(404, "feet")
  37769. },
  37770. {
  37771. name: "Megamacro",
  37772. height: math.unit(165, "miles")
  37773. },
  37774. {
  37775. name: "Planetary",
  37776. height: math.unit(4600, "miles")
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(10 + 3/12, "feet"),
  37785. weight: math.unit(1500, "lb"),
  37786. name: "Front",
  37787. image: {
  37788. source: "./media/characters/tux-kusanagi/front.svg",
  37789. extra: 944/840,
  37790. bottom: 39/983
  37791. }
  37792. },
  37793. back: {
  37794. height: math.unit(10 + 3/12, "feet"),
  37795. weight: math.unit(1500, "lb"),
  37796. name: "Back",
  37797. image: {
  37798. source: "./media/characters/tux-kusanagi/back.svg",
  37799. extra: 941/842,
  37800. bottom: 28/969
  37801. }
  37802. },
  37803. rump: {
  37804. height: math.unit(5.25, "feet"),
  37805. name: "Rump",
  37806. image: {
  37807. source: "./media/characters/tux-kusanagi/rump.svg"
  37808. }
  37809. },
  37810. beak: {
  37811. height: math.unit(1.54, "feet"),
  37812. name: "Beak",
  37813. image: {
  37814. source: "./media/characters/tux-kusanagi/beak.svg"
  37815. }
  37816. },
  37817. },
  37818. [
  37819. {
  37820. name: "Normal",
  37821. height: math.unit(10 + 3/12, "feet"),
  37822. default: true
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37828. {
  37829. front: {
  37830. height: math.unit(58, "feet"),
  37831. weight: math.unit(200, "tons"),
  37832. name: "Front",
  37833. image: {
  37834. source: "./media/characters/uzarmazari/front.svg",
  37835. extra: 1575/1455,
  37836. bottom: 152/1727
  37837. }
  37838. },
  37839. back: {
  37840. height: math.unit(58, "feet"),
  37841. weight: math.unit(200, "tons"),
  37842. name: "Back",
  37843. image: {
  37844. source: "./media/characters/uzarmazari/back.svg",
  37845. extra: 1585/1510,
  37846. bottom: 157/1742
  37847. }
  37848. },
  37849. head: {
  37850. height: math.unit(26, "feet"),
  37851. name: "Head",
  37852. image: {
  37853. source: "./media/characters/uzarmazari/head.svg"
  37854. }
  37855. },
  37856. },
  37857. [
  37858. {
  37859. name: "Normal",
  37860. height: math.unit(58, "feet"),
  37861. default: true
  37862. },
  37863. ]
  37864. ))
  37865. characterMakers.push(() => makeCharacter(
  37866. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37867. {
  37868. side: {
  37869. height: math.unit(15, "feet"),
  37870. name: "Side",
  37871. image: {
  37872. source: "./media/characters/akitu/side.svg",
  37873. extra: 1421/1321,
  37874. bottom: 157/1578
  37875. }
  37876. },
  37877. front: {
  37878. height: math.unit(15, "feet"),
  37879. name: "Front",
  37880. image: {
  37881. source: "./media/characters/akitu/front.svg",
  37882. extra: 1435/1326,
  37883. bottom: 232/1667
  37884. }
  37885. },
  37886. },
  37887. [
  37888. {
  37889. name: "Normal",
  37890. height: math.unit(15, "feet"),
  37891. default: true
  37892. },
  37893. ]
  37894. ))
  37895. characterMakers.push(() => makeCharacter(
  37896. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37897. {
  37898. front: {
  37899. height: math.unit(10 + 8/12, "feet"),
  37900. name: "Front",
  37901. image: {
  37902. source: "./media/characters/azalie-croixland/front.svg",
  37903. extra: 1972/1856,
  37904. bottom: 31/2003
  37905. }
  37906. },
  37907. },
  37908. [
  37909. {
  37910. name: "Original Height",
  37911. height: math.unit(5 + 4/12, "feet")
  37912. },
  37913. {
  37914. name: "Normal Height",
  37915. height: math.unit(10 + 8/12, "feet"),
  37916. default: true
  37917. },
  37918. ]
  37919. ))
  37920. characterMakers.push(() => makeCharacter(
  37921. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37922. {
  37923. side: {
  37924. height: math.unit(7 + 1/12, "feet"),
  37925. weight: math.unit(245, "lb"),
  37926. name: "Side",
  37927. image: {
  37928. source: "./media/characters/kavus-kazian/side.svg",
  37929. extra: 349/342,
  37930. bottom: 15/364
  37931. }
  37932. },
  37933. },
  37934. [
  37935. {
  37936. name: "Normal",
  37937. height: math.unit(7 + 1/12, "feet"),
  37938. default: true
  37939. },
  37940. ]
  37941. ))
  37942. characterMakers.push(() => makeCharacter(
  37943. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37944. {
  37945. normalFront: {
  37946. height: math.unit(5 + 11/12, "feet"),
  37947. name: "Front",
  37948. image: {
  37949. source: "./media/characters/moonlight-rose/normal-front.svg",
  37950. extra: 1980/1825,
  37951. bottom: 18/1998
  37952. },
  37953. form: "normal",
  37954. default: true
  37955. },
  37956. normalBack: {
  37957. height: math.unit(5 + 11/12, "feet"),
  37958. name: "Back",
  37959. image: {
  37960. source: "./media/characters/moonlight-rose/normal-back.svg",
  37961. extra: 2010/1839,
  37962. bottom: 10/2020
  37963. },
  37964. form: "normal"
  37965. },
  37966. demonFront: {
  37967. height: math.unit(1.5, "earths"),
  37968. name: "Front",
  37969. image: {
  37970. source: "./media/characters/moonlight-rose/demon.svg",
  37971. extra: 1400/1294,
  37972. bottom: 45/1445
  37973. },
  37974. form: "demon",
  37975. default: true
  37976. },
  37977. terraFront: {
  37978. height: math.unit(1.5, "earths"),
  37979. name: "Front",
  37980. image: {
  37981. source: "./media/characters/moonlight-rose/terra.svg"
  37982. },
  37983. form: "terra",
  37984. default: true
  37985. },
  37986. jupiterFront: {
  37987. height: math.unit(69911*2, "km"),
  37988. name: "Front",
  37989. image: {
  37990. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37991. extra: 1367/1286,
  37992. bottom: 55/1422
  37993. },
  37994. form: "jupiter",
  37995. default: true
  37996. },
  37997. neptuneFront: {
  37998. height: math.unit(24622*2, "feet"),
  37999. name: "Front",
  38000. image: {
  38001. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38002. extra: 1851/1712,
  38003. bottom: 0/1851
  38004. },
  38005. form: "neptune",
  38006. default: true
  38007. },
  38008. },
  38009. [
  38010. {
  38011. name: "\"Natural\" Height",
  38012. height: math.unit(5 + 11/12, "feet"),
  38013. form: "normal"
  38014. },
  38015. {
  38016. name: "Smallest comfortable size",
  38017. height: math.unit(40, "meters"),
  38018. form: "normal"
  38019. },
  38020. {
  38021. name: "Common size",
  38022. height: math.unit(50, "km"),
  38023. form: "normal",
  38024. default: true
  38025. },
  38026. {
  38027. name: "Normal",
  38028. height: math.unit(1.5, "earths"),
  38029. form: "demon",
  38030. default: true
  38031. },
  38032. {
  38033. name: "Universal",
  38034. height: math.unit(15, "universes"),
  38035. form: "demon"
  38036. },
  38037. {
  38038. name: "Earth",
  38039. height: math.unit(1.5, "earths"),
  38040. form: "terra",
  38041. default: true
  38042. },
  38043. {
  38044. name: "Super Earth",
  38045. height: math.unit(67.5, "earths"),
  38046. form: "terra"
  38047. },
  38048. {
  38049. name: "Doesn't fit in a solar system...",
  38050. height: math.unit(1, "galaxy"),
  38051. form: "terra"
  38052. },
  38053. {
  38054. name: "Saturn",
  38055. height: math.unit(58232*2, "km"),
  38056. form: "jupiter"
  38057. },
  38058. {
  38059. name: "Jupiter",
  38060. height: math.unit(69911*2, "km"),
  38061. form: "jupiter",
  38062. default: true
  38063. },
  38064. {
  38065. name: "HD 100546 b",
  38066. height: math.unit(482938, "km"),
  38067. form: "jupiter"
  38068. },
  38069. {
  38070. name: "Enceladus",
  38071. height: math.unit(513*2, "km"),
  38072. form: "neptune"
  38073. },
  38074. {
  38075. name: "Europe",
  38076. height: math.unit(1560*2, "km"),
  38077. form: "neptune"
  38078. },
  38079. {
  38080. name: "Neptune",
  38081. height: math.unit(24622*2, "km"),
  38082. form: "neptune",
  38083. default: true
  38084. },
  38085. {
  38086. name: "CoRoT-9b",
  38087. height: math.unit(75067*2, "km"),
  38088. form: "neptune"
  38089. },
  38090. ],
  38091. {
  38092. "normal": {
  38093. name: "Normal",
  38094. default: true
  38095. },
  38096. "demon": {
  38097. name: "Demon"
  38098. },
  38099. "terra": {
  38100. name: "Terra"
  38101. },
  38102. "jupiter": {
  38103. name: "Jupiter"
  38104. },
  38105. "neptune": {
  38106. name: "Neptune"
  38107. }
  38108. }
  38109. ))
  38110. characterMakers.push(() => makeCharacter(
  38111. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38112. {
  38113. front: {
  38114. height: math.unit(16, "feet"),
  38115. weight: math.unit(610, "kg"),
  38116. name: "Front",
  38117. image: {
  38118. source: "./media/characters/huckle/front.svg",
  38119. extra: 1731/1625,
  38120. bottom: 33/1764
  38121. }
  38122. },
  38123. back: {
  38124. height: math.unit(16, "feet"),
  38125. weight: math.unit(610, "kg"),
  38126. name: "Back",
  38127. image: {
  38128. source: "./media/characters/huckle/back.svg",
  38129. extra: 1738/1651,
  38130. bottom: 37/1775
  38131. }
  38132. },
  38133. laughing: {
  38134. height: math.unit(3.75, "feet"),
  38135. name: "Laughing",
  38136. image: {
  38137. source: "./media/characters/huckle/laughing.svg"
  38138. }
  38139. },
  38140. angry: {
  38141. height: math.unit(4.15, "feet"),
  38142. name: "Angry",
  38143. image: {
  38144. source: "./media/characters/huckle/angry.svg"
  38145. }
  38146. },
  38147. },
  38148. [
  38149. {
  38150. name: "Normal",
  38151. height: math.unit(16, "feet"),
  38152. default: true
  38153. },
  38154. {
  38155. name: "Mini Macro",
  38156. height: math.unit(463, "feet")
  38157. },
  38158. {
  38159. name: "Macro",
  38160. height: math.unit(1680, "meters")
  38161. },
  38162. {
  38163. name: "Mega Macro",
  38164. height: math.unit(175, "km")
  38165. },
  38166. {
  38167. name: "Terra Macro",
  38168. height: math.unit(32, "gigameters")
  38169. },
  38170. {
  38171. name: "Multiverse+",
  38172. height: math.unit(2.56e23, "yottameters")
  38173. },
  38174. ]
  38175. ))
  38176. characterMakers.push(() => makeCharacter(
  38177. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38178. {
  38179. front: {
  38180. height: math.unit(6 + 9/12, "feet"),
  38181. weight: math.unit(280, "lb"),
  38182. name: "Front",
  38183. image: {
  38184. source: "./media/characters/candy/front.svg",
  38185. extra: 234/217,
  38186. bottom: 11/245
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Really Small",
  38193. height: math.unit(0.1, "nm")
  38194. },
  38195. {
  38196. name: "Micro",
  38197. height: math.unit(2, "inches")
  38198. },
  38199. {
  38200. name: "Normal",
  38201. height: math.unit(6 + 9/12, "feet"),
  38202. default: true
  38203. },
  38204. {
  38205. name: "Small Macro",
  38206. height: math.unit(69, "feet")
  38207. },
  38208. {
  38209. name: "Macro",
  38210. height: math.unit(160, "feet")
  38211. },
  38212. {
  38213. name: "Megamacro",
  38214. height: math.unit(22000, "miles")
  38215. },
  38216. {
  38217. name: "Gigamacro",
  38218. height: math.unit(50000, "miles")
  38219. },
  38220. ]
  38221. ))
  38222. characterMakers.push(() => makeCharacter(
  38223. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38224. {
  38225. front: {
  38226. height: math.unit(4, "feet"),
  38227. weight: math.unit(90, "lb"),
  38228. name: "Front",
  38229. image: {
  38230. source: "./media/characters/joey-mcdonald/front.svg",
  38231. extra: 1059/852,
  38232. bottom: 33/1092
  38233. }
  38234. },
  38235. back: {
  38236. height: math.unit(4, "feet"),
  38237. weight: math.unit(90, "lb"),
  38238. name: "Back",
  38239. image: {
  38240. source: "./media/characters/joey-mcdonald/back.svg",
  38241. extra: 1077/879,
  38242. bottom: 5/1082
  38243. }
  38244. },
  38245. frontKobold: {
  38246. height: math.unit(4, "feet"),
  38247. weight: math.unit(100, "lb"),
  38248. name: "Front-kobold",
  38249. image: {
  38250. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38251. extra: 1480/1367,
  38252. bottom: 0/1480
  38253. }
  38254. },
  38255. backKobold: {
  38256. height: math.unit(4, "feet"),
  38257. weight: math.unit(100, "lb"),
  38258. name: "Back-kobold",
  38259. image: {
  38260. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38261. extra: 1449/1361,
  38262. bottom: 0/1449
  38263. }
  38264. },
  38265. },
  38266. [
  38267. {
  38268. name: "Normal",
  38269. height: math.unit(4, "feet"),
  38270. default: true
  38271. },
  38272. ]
  38273. ))
  38274. characterMakers.push(() => makeCharacter(
  38275. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38276. {
  38277. front: {
  38278. height: math.unit(12 + 6/12, "feet"),
  38279. name: "Front",
  38280. image: {
  38281. source: "./media/characters/kass-lockheed/front.svg",
  38282. extra: 354/343,
  38283. bottom: 9/363
  38284. }
  38285. },
  38286. back: {
  38287. height: math.unit(12 + 6/12, "feet"),
  38288. name: "Back",
  38289. image: {
  38290. source: "./media/characters/kass-lockheed/back.svg",
  38291. extra: 364/352,
  38292. bottom: 3/367
  38293. }
  38294. },
  38295. dick: {
  38296. height: math.unit(3.12, "feet"),
  38297. name: "Dick",
  38298. image: {
  38299. source: "./media/characters/kass-lockheed/dick.svg"
  38300. }
  38301. },
  38302. head: {
  38303. height: math.unit(2.6, "feet"),
  38304. name: "Head",
  38305. image: {
  38306. source: "./media/characters/kass-lockheed/head.svg"
  38307. }
  38308. },
  38309. bleh: {
  38310. height: math.unit(2.85, "feet"),
  38311. name: "Bleh",
  38312. image: {
  38313. source: "./media/characters/kass-lockheed/bleh.svg"
  38314. }
  38315. },
  38316. smug: {
  38317. height: math.unit(2.85, "feet"),
  38318. name: "Smug",
  38319. image: {
  38320. source: "./media/characters/kass-lockheed/smug.svg"
  38321. }
  38322. },
  38323. },
  38324. [
  38325. {
  38326. name: "Normal",
  38327. height: math.unit(12 + 6/12, "feet"),
  38328. default: true
  38329. },
  38330. ]
  38331. ))
  38332. characterMakers.push(() => makeCharacter(
  38333. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38334. {
  38335. front: {
  38336. height: math.unit(6 + 2/12, "feet"),
  38337. name: "Front",
  38338. image: {
  38339. source: "./media/characters/taylor/front.svg",
  38340. extra: 639/495,
  38341. bottom: 12/651
  38342. }
  38343. },
  38344. },
  38345. [
  38346. {
  38347. name: "Normal",
  38348. height: math.unit(6 + 2/12, "feet"),
  38349. default: true
  38350. },
  38351. {
  38352. name: "Big",
  38353. height: math.unit(15, "feet")
  38354. },
  38355. {
  38356. name: "Lorg",
  38357. height: math.unit(80, "feet")
  38358. },
  38359. {
  38360. name: "Too Lorg",
  38361. height: math.unit(120, "feet")
  38362. },
  38363. ]
  38364. ))
  38365. characterMakers.push(() => makeCharacter(
  38366. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38367. {
  38368. front: {
  38369. height: math.unit(15, "feet"),
  38370. name: "Front",
  38371. image: {
  38372. source: "./media/characters/kaizer/front.svg",
  38373. extra: 1612/1436,
  38374. bottom: 43/1655
  38375. }
  38376. },
  38377. },
  38378. [
  38379. {
  38380. name: "Normal",
  38381. height: math.unit(15, "feet"),
  38382. default: true
  38383. },
  38384. ]
  38385. ))
  38386. characterMakers.push(() => makeCharacter(
  38387. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38388. {
  38389. front: {
  38390. height: math.unit(2, "feet"),
  38391. weight: math.unit(30, "lb"),
  38392. name: "Front",
  38393. image: {
  38394. source: "./media/characters/sandy/front.svg",
  38395. extra: 1439/1307,
  38396. bottom: 194/1633
  38397. }
  38398. },
  38399. },
  38400. [
  38401. {
  38402. name: "Normal",
  38403. height: math.unit(2, "feet"),
  38404. default: true
  38405. },
  38406. ]
  38407. ))
  38408. characterMakers.push(() => makeCharacter(
  38409. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38410. {
  38411. front: {
  38412. height: math.unit(3, "feet"),
  38413. name: "Front",
  38414. image: {
  38415. source: "./media/characters/mellvi/front.svg",
  38416. extra: 1831/1630,
  38417. bottom: 58/1889
  38418. }
  38419. },
  38420. },
  38421. [
  38422. {
  38423. name: "Normal",
  38424. height: math.unit(3, "feet"),
  38425. default: true
  38426. },
  38427. ]
  38428. ))
  38429. characterMakers.push(() => makeCharacter(
  38430. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38431. {
  38432. front: {
  38433. height: math.unit(5 + 11/12, "feet"),
  38434. weight: math.unit(200, "lb"),
  38435. name: "Front",
  38436. image: {
  38437. source: "./media/characters/shirou/front.svg",
  38438. extra: 2491/2383,
  38439. bottom: 189/2680
  38440. }
  38441. },
  38442. back: {
  38443. height: math.unit(5 + 11/12, "feet"),
  38444. weight: math.unit(200, "lb"),
  38445. name: "Back",
  38446. image: {
  38447. source: "./media/characters/shirou/back.svg",
  38448. extra: 2554/2450,
  38449. bottom: 76/2630
  38450. }
  38451. },
  38452. },
  38453. [
  38454. {
  38455. name: "Normal",
  38456. height: math.unit(5 + 11/12, "feet"),
  38457. default: true
  38458. },
  38459. ]
  38460. ))
  38461. characterMakers.push(() => makeCharacter(
  38462. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38463. {
  38464. front: {
  38465. height: math.unit(6 + 3/12, "feet"),
  38466. weight: math.unit(177, "lb"),
  38467. name: "Front",
  38468. image: {
  38469. source: "./media/characters/noryu/front.svg",
  38470. extra: 973/885,
  38471. bottom: 10/983
  38472. }
  38473. },
  38474. },
  38475. [
  38476. {
  38477. name: "Normal",
  38478. height: math.unit(6 + 3/12, "feet"),
  38479. default: true
  38480. },
  38481. ]
  38482. ))
  38483. characterMakers.push(() => makeCharacter(
  38484. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38485. {
  38486. front: {
  38487. height: math.unit(5 + 6/12, "feet"),
  38488. weight: math.unit(170, "lb"),
  38489. name: "Front",
  38490. image: {
  38491. source: "./media/characters/mevolas-rubenido/front.svg",
  38492. extra: 2109/1901,
  38493. bottom: 96/2205
  38494. }
  38495. },
  38496. },
  38497. [
  38498. {
  38499. name: "Normal",
  38500. height: math.unit(5 + 6/12, "feet"),
  38501. default: true
  38502. },
  38503. ]
  38504. ))
  38505. characterMakers.push(() => makeCharacter(
  38506. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38507. {
  38508. front: {
  38509. height: math.unit(100, "feet"),
  38510. name: "Front",
  38511. image: {
  38512. source: "./media/characters/dee/front.svg",
  38513. extra: 2153/2036,
  38514. bottom: 59/2212
  38515. }
  38516. },
  38517. back: {
  38518. height: math.unit(100, "feet"),
  38519. name: "Back",
  38520. image: {
  38521. source: "./media/characters/dee/back.svg",
  38522. extra: 2183/2058,
  38523. bottom: 75/2258
  38524. }
  38525. },
  38526. foot: {
  38527. height: math.unit(19.43, "feet"),
  38528. name: "Foot",
  38529. image: {
  38530. source: "./media/characters/dee/foot.svg"
  38531. }
  38532. },
  38533. hoof: {
  38534. height: math.unit(20.6, "feet"),
  38535. name: "Hoof",
  38536. image: {
  38537. source: "./media/characters/dee/hoof.svg"
  38538. }
  38539. },
  38540. },
  38541. [
  38542. {
  38543. name: "Macro",
  38544. height: math.unit(100, "feet"),
  38545. default: true
  38546. },
  38547. ]
  38548. ))
  38549. characterMakers.push(() => makeCharacter(
  38550. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38551. {
  38552. front: {
  38553. height: math.unit(5 + 6/12, "feet"),
  38554. name: "Front",
  38555. image: {
  38556. source: "./media/characters/teh/front.svg",
  38557. extra: 1002/847,
  38558. bottom: 62/1064
  38559. }
  38560. },
  38561. },
  38562. [
  38563. {
  38564. name: "Normal",
  38565. height: math.unit(5 + 6/12, "feet"),
  38566. default: true
  38567. },
  38568. ]
  38569. ))
  38570. characterMakers.push(() => makeCharacter(
  38571. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38572. {
  38573. side: {
  38574. height: math.unit(6 + 1/12, "feet"),
  38575. weight: math.unit(204, "lb"),
  38576. name: "Side",
  38577. image: {
  38578. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38579. extra: 974/775,
  38580. bottom: 169/1143
  38581. }
  38582. },
  38583. sitting: {
  38584. height: math.unit(6 + 2/12, "feet"),
  38585. weight: math.unit(204, "lb"),
  38586. name: "Sitting",
  38587. image: {
  38588. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38589. extra: 1175/964,
  38590. bottom: 378/1553
  38591. }
  38592. },
  38593. },
  38594. [
  38595. {
  38596. name: "Normal",
  38597. height: math.unit(6 + 1/12, "feet"),
  38598. default: true
  38599. },
  38600. ]
  38601. ))
  38602. characterMakers.push(() => makeCharacter(
  38603. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38604. {
  38605. front: {
  38606. height: math.unit(6, "inches"),
  38607. name: "Front",
  38608. image: {
  38609. source: "./media/characters/tululi/front.svg",
  38610. extra: 1997/1876,
  38611. bottom: 20/2017
  38612. }
  38613. },
  38614. },
  38615. [
  38616. {
  38617. name: "Normal",
  38618. height: math.unit(6, "inches"),
  38619. default: true
  38620. },
  38621. ]
  38622. ))
  38623. characterMakers.push(() => makeCharacter(
  38624. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38625. {
  38626. front: {
  38627. height: math.unit(4 + 1/12, "feet"),
  38628. name: "Front",
  38629. image: {
  38630. source: "./media/characters/star/front.svg",
  38631. extra: 1493/1189,
  38632. bottom: 48/1541
  38633. }
  38634. },
  38635. },
  38636. [
  38637. {
  38638. name: "Normal",
  38639. height: math.unit(4 + 1/12, "feet"),
  38640. default: true
  38641. },
  38642. ]
  38643. ))
  38644. characterMakers.push(() => makeCharacter(
  38645. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38646. {
  38647. front: {
  38648. height: math.unit(6 + 3/12, "feet"),
  38649. name: "Front",
  38650. image: {
  38651. source: "./media/characters/comet/front.svg",
  38652. extra: 1681/1462,
  38653. bottom: 26/1707
  38654. }
  38655. },
  38656. },
  38657. [
  38658. {
  38659. name: "Normal",
  38660. height: math.unit(6 + 3/12, "feet"),
  38661. default: true
  38662. },
  38663. ]
  38664. ))
  38665. characterMakers.push(() => makeCharacter(
  38666. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38667. {
  38668. front: {
  38669. height: math.unit(950, "feet"),
  38670. name: "Front",
  38671. image: {
  38672. source: "./media/characters/vortex/front.svg",
  38673. extra: 1497/1434,
  38674. bottom: 56/1553
  38675. }
  38676. },
  38677. maw: {
  38678. height: math.unit(285, "feet"),
  38679. name: "Maw",
  38680. image: {
  38681. source: "./media/characters/vortex/maw.svg"
  38682. }
  38683. },
  38684. },
  38685. [
  38686. {
  38687. name: "Macro",
  38688. height: math.unit(950, "feet"),
  38689. default: true
  38690. },
  38691. ]
  38692. ))
  38693. characterMakers.push(() => makeCharacter(
  38694. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38695. {
  38696. front: {
  38697. height: math.unit(600, "feet"),
  38698. weight: math.unit(0.02, "grams"),
  38699. name: "Front",
  38700. image: {
  38701. source: "./media/characters/doodle/front.svg",
  38702. extra: 1578/1413,
  38703. bottom: 37/1615
  38704. }
  38705. },
  38706. },
  38707. [
  38708. {
  38709. name: "Macro",
  38710. height: math.unit(600, "feet"),
  38711. default: true
  38712. },
  38713. ]
  38714. ))
  38715. characterMakers.push(() => makeCharacter(
  38716. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38717. {
  38718. front: {
  38719. height: math.unit(6 + 6/12, "feet"),
  38720. name: "Front",
  38721. image: {
  38722. source: "./media/characters/jai/front.svg",
  38723. extra: 1645/1534,
  38724. bottom: 115/1760
  38725. }
  38726. },
  38727. },
  38728. [
  38729. {
  38730. name: "Normal",
  38731. height: math.unit(6 + 6/12, "feet"),
  38732. default: true
  38733. },
  38734. ]
  38735. ))
  38736. characterMakers.push(() => makeCharacter(
  38737. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38738. {
  38739. front: {
  38740. height: math.unit(6 + 8/12, "feet"),
  38741. name: "Front",
  38742. image: {
  38743. source: "./media/characters/pixel/front.svg",
  38744. extra: 1900/1735,
  38745. bottom: 63/1963
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "Normal",
  38752. height: math.unit(6 + 8/12, "feet"),
  38753. default: true
  38754. },
  38755. ]
  38756. ))
  38757. characterMakers.push(() => makeCharacter(
  38758. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38759. {
  38760. back: {
  38761. height: math.unit(4 + 1/12, "feet"),
  38762. weight: math.unit(75, "lb"),
  38763. name: "Back",
  38764. image: {
  38765. source: "./media/characters/rhett/back.svg",
  38766. extra: 930/878,
  38767. bottom: 25/955
  38768. }
  38769. },
  38770. front: {
  38771. height: math.unit(4 + 1/12, "feet"),
  38772. weight: math.unit(75, "lb"),
  38773. name: "Front",
  38774. image: {
  38775. source: "./media/characters/rhett/front.svg",
  38776. extra: 1682/1586,
  38777. bottom: 92/1774
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Micro",
  38784. height: math.unit(8, "inches")
  38785. },
  38786. {
  38787. name: "Tiny",
  38788. height: math.unit(2, "feet")
  38789. },
  38790. {
  38791. name: "Normal",
  38792. height: math.unit(4 + 1/12, "feet"),
  38793. default: true
  38794. },
  38795. ]
  38796. ))
  38797. characterMakers.push(() => makeCharacter(
  38798. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38799. {
  38800. front: {
  38801. height: math.unit(3 + 3/12, "feet"),
  38802. name: "Front",
  38803. image: {
  38804. source: "./media/characters/penny/front.svg",
  38805. extra: 1406/1311,
  38806. bottom: 26/1432
  38807. }
  38808. },
  38809. },
  38810. [
  38811. {
  38812. name: "Normal",
  38813. height: math.unit(3 + 3/12, "feet"),
  38814. default: true
  38815. },
  38816. ]
  38817. ))
  38818. characterMakers.push(() => makeCharacter(
  38819. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38820. {
  38821. front: {
  38822. height: math.unit(4 + 11/12, "feet"),
  38823. name: "Front",
  38824. image: {
  38825. source: "./media/characters/monty/front.svg",
  38826. extra: 1479/1209,
  38827. bottom: 0/1479
  38828. }
  38829. },
  38830. },
  38831. [
  38832. {
  38833. name: "Normal",
  38834. height: math.unit(4 + 11/12, "feet"),
  38835. default: true
  38836. },
  38837. ]
  38838. ))
  38839. characterMakers.push(() => makeCharacter(
  38840. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38841. {
  38842. front: {
  38843. height: math.unit(8 + 4/12, "feet"),
  38844. name: "Front",
  38845. image: {
  38846. source: "./media/characters/sterling/front.svg",
  38847. extra: 1420/1236,
  38848. bottom: 27/1447
  38849. }
  38850. },
  38851. },
  38852. [
  38853. {
  38854. name: "Normal",
  38855. height: math.unit(8 + 4/12, "feet"),
  38856. default: true
  38857. },
  38858. ]
  38859. ))
  38860. characterMakers.push(() => makeCharacter(
  38861. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38862. {
  38863. front: {
  38864. height: math.unit(15, "feet"),
  38865. name: "Front",
  38866. image: {
  38867. source: "./media/characters/marble/front.svg",
  38868. extra: 973/937,
  38869. bottom: 32/1005
  38870. }
  38871. },
  38872. },
  38873. [
  38874. {
  38875. name: "Normal",
  38876. height: math.unit(15, "feet"),
  38877. default: true
  38878. },
  38879. ]
  38880. ))
  38881. characterMakers.push(() => makeCharacter(
  38882. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38883. {
  38884. front: {
  38885. height: math.unit(3, "inches"),
  38886. name: "Front",
  38887. image: {
  38888. source: "./media/characters/powder/front.svg",
  38889. extra: 1504/1334,
  38890. bottom: 518/2022
  38891. }
  38892. },
  38893. },
  38894. [
  38895. {
  38896. name: "Normal",
  38897. height: math.unit(3, "inches"),
  38898. default: true
  38899. },
  38900. ]
  38901. ))
  38902. characterMakers.push(() => makeCharacter(
  38903. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38904. {
  38905. front: {
  38906. height: math.unit(4 + 5/12, "feet"),
  38907. name: "Front",
  38908. image: {
  38909. source: "./media/characters/joey-raccoon/front.svg",
  38910. extra: 1273/1197,
  38911. bottom: 0/1273
  38912. }
  38913. },
  38914. },
  38915. [
  38916. {
  38917. name: "Normal",
  38918. height: math.unit(4 + 5/12, "feet"),
  38919. default: true
  38920. },
  38921. ]
  38922. ))
  38923. characterMakers.push(() => makeCharacter(
  38924. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38925. {
  38926. front: {
  38927. height: math.unit(8 + 4/12, "feet"),
  38928. name: "Front",
  38929. image: {
  38930. source: "./media/characters/vick/front.svg",
  38931. extra: 2187/2118,
  38932. bottom: 47/2234
  38933. }
  38934. },
  38935. },
  38936. [
  38937. {
  38938. name: "Normal",
  38939. height: math.unit(8 + 4/12, "feet"),
  38940. default: true
  38941. },
  38942. ]
  38943. ))
  38944. characterMakers.push(() => makeCharacter(
  38945. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38946. {
  38947. front: {
  38948. height: math.unit(5 + 5/12, "feet"),
  38949. name: "Front",
  38950. image: {
  38951. source: "./media/characters/mitsy/front.svg",
  38952. extra: 1842/1695,
  38953. bottom: 0/1842
  38954. }
  38955. },
  38956. },
  38957. [
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(5 + 5/12, "feet"),
  38961. default: true
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38967. {
  38968. front: {
  38969. height: math.unit(6 + 3/12, "feet"),
  38970. name: "Front",
  38971. image: {
  38972. source: "./media/characters/silvy/front.svg",
  38973. extra: 1995/1836,
  38974. bottom: 225/2220
  38975. }
  38976. },
  38977. },
  38978. [
  38979. {
  38980. name: "Normal",
  38981. height: math.unit(6 + 3/12, "feet"),
  38982. default: true
  38983. },
  38984. ]
  38985. ))
  38986. characterMakers.push(() => makeCharacter(
  38987. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38988. {
  38989. front: {
  38990. height: math.unit(3 + 8/12, "feet"),
  38991. name: "Front",
  38992. image: {
  38993. source: "./media/characters/rodney/front.svg",
  38994. extra: 1956/1747,
  38995. bottom: 31/1987
  38996. }
  38997. },
  38998. frontDressed: {
  38999. height: math.unit(2.9, "feet"),
  39000. name: "Front (Dressed)",
  39001. image: {
  39002. source: "./media/characters/rodney/front-dressed.svg",
  39003. extra: 1382/1241,
  39004. bottom: 385/1767
  39005. }
  39006. },
  39007. },
  39008. [
  39009. {
  39010. name: "Normal",
  39011. height: math.unit(3 + 8/12, "feet"),
  39012. default: true
  39013. },
  39014. ]
  39015. ))
  39016. characterMakers.push(() => makeCharacter(
  39017. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39018. {
  39019. front: {
  39020. height: math.unit(5 + 9/12, "feet"),
  39021. weight: math.unit(194, "lbs"),
  39022. name: "Front",
  39023. image: {
  39024. source: "./media/characters/zakail-sudekai/front.svg",
  39025. extra: 2696/2533,
  39026. bottom: 248/2944
  39027. }
  39028. },
  39029. maw: {
  39030. height: math.unit(1.35, "feet"),
  39031. name: "Maw",
  39032. image: {
  39033. source: "./media/characters/zakail-sudekai/maw.svg"
  39034. }
  39035. },
  39036. },
  39037. [
  39038. {
  39039. name: "Normal",
  39040. height: math.unit(5 + 9/12, "feet"),
  39041. default: true
  39042. },
  39043. ]
  39044. ))
  39045. characterMakers.push(() => makeCharacter(
  39046. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39047. {
  39048. front: {
  39049. height: math.unit(8 + 4/12, "feet"),
  39050. weight: math.unit(1200, "lb"),
  39051. name: "Front",
  39052. image: {
  39053. source: "./media/characters/eleanor/front.svg",
  39054. extra: 1226/1192,
  39055. bottom: 52/1278
  39056. }
  39057. },
  39058. back: {
  39059. height: math.unit(8 + 4/12, "feet"),
  39060. weight: math.unit(1200, "lb"),
  39061. name: "Back",
  39062. image: {
  39063. source: "./media/characters/eleanor/back.svg",
  39064. extra: 1242/1184,
  39065. bottom: 60/1302
  39066. }
  39067. },
  39068. head: {
  39069. height: math.unit(2.62, "feet"),
  39070. name: "Head",
  39071. image: {
  39072. source: "./media/characters/eleanor/head.svg"
  39073. }
  39074. },
  39075. },
  39076. [
  39077. {
  39078. name: "Normal",
  39079. height: math.unit(8 + 4/12, "feet"),
  39080. default: true
  39081. },
  39082. ]
  39083. ))
  39084. characterMakers.push(() => makeCharacter(
  39085. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39086. {
  39087. front: {
  39088. height: math.unit(8 + 4/12, "feet"),
  39089. weight: math.unit(750, "lb"),
  39090. name: "Front",
  39091. image: {
  39092. source: "./media/characters/tanya/front.svg",
  39093. extra: 1749/1615,
  39094. bottom: 33/1782
  39095. }
  39096. },
  39097. },
  39098. [
  39099. {
  39100. name: "Normal",
  39101. height: math.unit(8 + 4/12, "feet"),
  39102. default: true
  39103. },
  39104. ]
  39105. ))
  39106. characterMakers.push(() => makeCharacter(
  39107. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39108. {
  39109. front: {
  39110. height: math.unit(5, "feet"),
  39111. weight: math.unit(225, "lb"),
  39112. name: "Front",
  39113. image: {
  39114. source: "./media/characters/cindy/front.svg",
  39115. extra: 1320/1250,
  39116. bottom: 42/1362
  39117. }
  39118. },
  39119. frontDressed: {
  39120. height: math.unit(5, "feet"),
  39121. weight: math.unit(225, "lb"),
  39122. name: "Front (Dressed)",
  39123. image: {
  39124. source: "./media/characters/cindy/front-dressed.svg",
  39125. extra: 1320/1250,
  39126. bottom: 42/1362
  39127. }
  39128. },
  39129. back: {
  39130. height: math.unit(5, "feet"),
  39131. weight: math.unit(225, "lb"),
  39132. name: "Back",
  39133. image: {
  39134. source: "./media/characters/cindy/back.svg",
  39135. extra: 1384/1346,
  39136. bottom: 14/1398
  39137. }
  39138. },
  39139. },
  39140. [
  39141. {
  39142. name: "Normal",
  39143. height: math.unit(5, "feet"),
  39144. default: true
  39145. },
  39146. ]
  39147. ))
  39148. characterMakers.push(() => makeCharacter(
  39149. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39150. {
  39151. front: {
  39152. height: math.unit(6 + 9/12, "feet"),
  39153. weight: math.unit(440, "lb"),
  39154. name: "Front",
  39155. image: {
  39156. source: "./media/characters/wilbur-owen/front.svg",
  39157. extra: 1575/1448,
  39158. bottom: 72/1647
  39159. }
  39160. },
  39161. back: {
  39162. height: math.unit(6 + 9/12, "feet"),
  39163. weight: math.unit(440, "lb"),
  39164. name: "Back",
  39165. image: {
  39166. source: "./media/characters/wilbur-owen/back.svg",
  39167. extra: 1578/1445,
  39168. bottom: 36/1614
  39169. }
  39170. },
  39171. },
  39172. [
  39173. {
  39174. name: "Normal",
  39175. height: math.unit(6 + 9/12, "feet"),
  39176. default: true
  39177. },
  39178. ]
  39179. ))
  39180. characterMakers.push(() => makeCharacter(
  39181. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39182. {
  39183. front: {
  39184. height: math.unit(6 + 5/12, "feet"),
  39185. weight: math.unit(650, "lb"),
  39186. name: "Front",
  39187. image: {
  39188. source: "./media/characters/keegan/front.svg",
  39189. extra: 2387/2198,
  39190. bottom: 33/2420
  39191. }
  39192. },
  39193. side: {
  39194. height: math.unit(6 + 5/12, "feet"),
  39195. weight: math.unit(650, "lb"),
  39196. name: "Side",
  39197. image: {
  39198. source: "./media/characters/keegan/side.svg",
  39199. extra: 2390/2202,
  39200. bottom: 47/2437
  39201. }
  39202. },
  39203. back: {
  39204. height: math.unit(6 + 5/12, "feet"),
  39205. weight: math.unit(650, "lb"),
  39206. name: "Back",
  39207. image: {
  39208. source: "./media/characters/keegan/back.svg",
  39209. extra: 2418/2268,
  39210. bottom: 15/2433
  39211. }
  39212. },
  39213. frontSfw: {
  39214. height: math.unit(6 + 5/12, "feet"),
  39215. weight: math.unit(650, "lb"),
  39216. name: "Front (SFW)",
  39217. image: {
  39218. source: "./media/characters/keegan/front-sfw.svg",
  39219. extra: 2387/2198,
  39220. bottom: 33/2420
  39221. }
  39222. },
  39223. beans: {
  39224. height: math.unit(1.85, "feet"),
  39225. name: "Beans",
  39226. image: {
  39227. source: "./media/characters/keegan/beans.svg"
  39228. }
  39229. },
  39230. },
  39231. [
  39232. {
  39233. name: "Normal",
  39234. height: math.unit(6 + 5/12, "feet"),
  39235. default: true
  39236. },
  39237. ]
  39238. ))
  39239. characterMakers.push(() => makeCharacter(
  39240. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39241. {
  39242. front: {
  39243. height: math.unit(9, "feet"),
  39244. name: "Front",
  39245. image: {
  39246. source: "./media/characters/colton/front.svg",
  39247. extra: 1589/1326,
  39248. bottom: 139/1728
  39249. }
  39250. },
  39251. },
  39252. [
  39253. {
  39254. name: "Normal",
  39255. height: math.unit(9, "feet"),
  39256. default: true
  39257. },
  39258. ]
  39259. ))
  39260. characterMakers.push(() => makeCharacter(
  39261. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39262. {
  39263. front: {
  39264. height: math.unit(2 + 9/12, "feet"),
  39265. name: "Front",
  39266. image: {
  39267. source: "./media/characters/bora/front.svg",
  39268. extra: 1265/1250,
  39269. bottom: 24/1289
  39270. }
  39271. },
  39272. },
  39273. [
  39274. {
  39275. name: "Normal",
  39276. height: math.unit(2 + 9/12, "feet"),
  39277. default: true
  39278. },
  39279. ]
  39280. ))
  39281. characterMakers.push(() => makeCharacter(
  39282. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39283. {
  39284. front: {
  39285. height: math.unit(8, "feet"),
  39286. name: "Front",
  39287. image: {
  39288. source: "./media/characters/myu-myu/front.svg",
  39289. extra: 1949/1857,
  39290. bottom: 90/2039
  39291. }
  39292. },
  39293. },
  39294. [
  39295. {
  39296. name: "Normal",
  39297. height: math.unit(8, "feet"),
  39298. default: true
  39299. },
  39300. {
  39301. name: "Big",
  39302. height: math.unit(15, "feet")
  39303. },
  39304. {
  39305. name: "BIG",
  39306. height: math.unit(25, "feet")
  39307. },
  39308. ]
  39309. ))
  39310. characterMakers.push(() => makeCharacter(
  39311. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39312. {
  39313. side: {
  39314. height: math.unit(7 + 5/12, "feet"),
  39315. weight: math.unit(2800, "lb"),
  39316. name: "Side",
  39317. image: {
  39318. source: "./media/characters/haloren/side.svg",
  39319. extra: 1793/409,
  39320. bottom: 59/1852
  39321. }
  39322. },
  39323. frontPaw: {
  39324. height: math.unit(2.36, "feet"),
  39325. name: "Front paw",
  39326. image: {
  39327. source: "./media/characters/haloren/front-paw.svg"
  39328. }
  39329. },
  39330. hindPaw: {
  39331. height: math.unit(3.18, "feet"),
  39332. name: "Hind paw",
  39333. image: {
  39334. source: "./media/characters/haloren/hind-paw.svg"
  39335. }
  39336. },
  39337. maw: {
  39338. height: math.unit(5.05, "feet"),
  39339. name: "Maw",
  39340. image: {
  39341. source: "./media/characters/haloren/maw.svg"
  39342. }
  39343. },
  39344. dick: {
  39345. height: math.unit(2.90, "feet"),
  39346. name: "Dick",
  39347. image: {
  39348. source: "./media/characters/haloren/dick.svg"
  39349. }
  39350. },
  39351. },
  39352. [
  39353. {
  39354. name: "Normal",
  39355. height: math.unit(7 + 5/12, "feet"),
  39356. default: true
  39357. },
  39358. {
  39359. name: "Enhanced",
  39360. height: math.unit(14 + 3/12, "feet")
  39361. },
  39362. ]
  39363. ))
  39364. characterMakers.push(() => makeCharacter(
  39365. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39366. {
  39367. front: {
  39368. height: math.unit(171, "cm"),
  39369. name: "Front",
  39370. image: {
  39371. source: "./media/characters/kimmy/front.svg",
  39372. extra: 1491/1435,
  39373. bottom: 53/1544
  39374. }
  39375. },
  39376. },
  39377. [
  39378. {
  39379. name: "Small",
  39380. height: math.unit(9, "cm")
  39381. },
  39382. {
  39383. name: "Normal",
  39384. height: math.unit(171, "cm"),
  39385. default: true
  39386. },
  39387. ]
  39388. ))
  39389. characterMakers.push(() => makeCharacter(
  39390. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39391. {
  39392. front: {
  39393. height: math.unit(8, "feet"),
  39394. weight: math.unit(300, "lb"),
  39395. name: "Front",
  39396. image: {
  39397. source: "./media/characters/galeboomer/front.svg",
  39398. extra: 4651/4415,
  39399. bottom: 162/4813
  39400. }
  39401. },
  39402. back: {
  39403. height: math.unit(8, "feet"),
  39404. weight: math.unit(300, "lb"),
  39405. name: "Back",
  39406. image: {
  39407. source: "./media/characters/galeboomer/back.svg",
  39408. extra: 4544/4314,
  39409. bottom: 16/4560
  39410. }
  39411. },
  39412. frontAlt: {
  39413. height: math.unit(8, "feet"),
  39414. weight: math.unit(300, "lb"),
  39415. name: "Front (Alt)",
  39416. image: {
  39417. source: "./media/characters/galeboomer/front-alt.svg",
  39418. extra: 4458/4228,
  39419. bottom: 68/4526
  39420. }
  39421. },
  39422. maw: {
  39423. height: math.unit(1.2, "feet"),
  39424. name: "Maw",
  39425. image: {
  39426. source: "./media/characters/galeboomer/maw.svg"
  39427. }
  39428. },
  39429. },
  39430. [
  39431. {
  39432. name: "Normal",
  39433. height: math.unit(8, "feet"),
  39434. default: true
  39435. },
  39436. ]
  39437. ))
  39438. characterMakers.push(() => makeCharacter(
  39439. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39440. {
  39441. front: {
  39442. height: math.unit(5 + 9/12, "feet"),
  39443. weight: math.unit(120, "lb"),
  39444. name: "Front",
  39445. image: {
  39446. source: "./media/characters/chyr/front.svg",
  39447. extra: 1323/1254,
  39448. bottom: 63/1386
  39449. }
  39450. },
  39451. back: {
  39452. height: math.unit(5 + 9/12, "feet"),
  39453. weight: math.unit(120, "lb"),
  39454. name: "Back",
  39455. image: {
  39456. source: "./media/characters/chyr/back.svg",
  39457. extra: 1323/1252,
  39458. bottom: 48/1371
  39459. }
  39460. },
  39461. },
  39462. [
  39463. {
  39464. name: "Normal",
  39465. height: math.unit(5 + 9/12, "feet"),
  39466. default: true
  39467. },
  39468. ]
  39469. ))
  39470. characterMakers.push(() => makeCharacter(
  39471. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39472. {
  39473. front: {
  39474. height: math.unit(7, "feet"),
  39475. weight: math.unit(310, "lb"),
  39476. name: "Front",
  39477. image: {
  39478. source: "./media/characters/solarus/front.svg",
  39479. extra: 2415/2021,
  39480. bottom: 103/2518
  39481. }
  39482. },
  39483. back: {
  39484. height: math.unit(7, "feet"),
  39485. weight: math.unit(310, "lb"),
  39486. name: "Back",
  39487. image: {
  39488. source: "./media/characters/solarus/back.svg",
  39489. extra: 2463/2089,
  39490. bottom: 79/2542
  39491. }
  39492. },
  39493. },
  39494. [
  39495. {
  39496. name: "Normal",
  39497. height: math.unit(7, "feet"),
  39498. default: true
  39499. },
  39500. ]
  39501. ))
  39502. characterMakers.push(() => makeCharacter(
  39503. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39504. {
  39505. front: {
  39506. height: math.unit(16, "feet"),
  39507. name: "Front",
  39508. image: {
  39509. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39510. extra: 1844/1780,
  39511. bottom: 58/1902
  39512. }
  39513. },
  39514. winterCoat: {
  39515. height: math.unit(16, "feet"),
  39516. name: "Winter Coat",
  39517. image: {
  39518. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39519. extra: 1807/1775,
  39520. bottom: 69/1876
  39521. }
  39522. },
  39523. },
  39524. [
  39525. {
  39526. name: "Normal",
  39527. height: math.unit(16, "feet"),
  39528. default: true
  39529. },
  39530. {
  39531. name: "Chicago Size",
  39532. height: math.unit(560, "feet")
  39533. },
  39534. ]
  39535. ))
  39536. characterMakers.push(() => makeCharacter(
  39537. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39538. {
  39539. front: {
  39540. height: math.unit(11 + 6/12, "feet"),
  39541. weight: math.unit(1366, "lb"),
  39542. name: "Front",
  39543. image: {
  39544. source: "./media/characters/lexor/front.svg",
  39545. extra: 1560/1481,
  39546. bottom: 211/1771
  39547. }
  39548. },
  39549. back: {
  39550. height: math.unit(11 + 6/12, "feet"),
  39551. weight: math.unit(1366, "lb"),
  39552. name: "Back",
  39553. image: {
  39554. source: "./media/characters/lexor/back.svg",
  39555. extra: 1614/1533,
  39556. bottom: 76/1690
  39557. }
  39558. },
  39559. maw: {
  39560. height: math.unit(3, "feet"),
  39561. name: "Maw",
  39562. image: {
  39563. source: "./media/characters/lexor/maw.svg"
  39564. }
  39565. },
  39566. dick: {
  39567. height: math.unit(2.59, "feet"),
  39568. name: "Dick",
  39569. image: {
  39570. source: "./media/characters/lexor/dick.svg"
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Normal",
  39577. height: math.unit(11 + 6/12, "feet"),
  39578. default: true
  39579. },
  39580. ]
  39581. ))
  39582. characterMakers.push(() => makeCharacter(
  39583. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39584. {
  39585. front: {
  39586. height: math.unit(5 + 8/12, "feet"),
  39587. name: "Front",
  39588. image: {
  39589. source: "./media/characters/magnum/front.svg",
  39590. extra: 942/855,
  39591. bottom: 26/968
  39592. }
  39593. },
  39594. },
  39595. [
  39596. {
  39597. name: "Normal",
  39598. height: math.unit(5 + 8/12, "feet"),
  39599. default: true
  39600. },
  39601. ]
  39602. ))
  39603. characterMakers.push(() => makeCharacter(
  39604. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39605. {
  39606. front: {
  39607. height: math.unit(18 + 4/12, "feet"),
  39608. weight: math.unit(1500, "kg"),
  39609. name: "Front",
  39610. image: {
  39611. source: "./media/characters/solas-sharpsman/front.svg",
  39612. extra: 1698/1589,
  39613. bottom: 0/1698
  39614. }
  39615. },
  39616. },
  39617. [
  39618. {
  39619. name: "Normal",
  39620. height: math.unit(18 + 4/12, "feet"),
  39621. default: true
  39622. },
  39623. ]
  39624. ))
  39625. characterMakers.push(() => makeCharacter(
  39626. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39627. {
  39628. front: {
  39629. height: math.unit(5 + 5/12, "feet"),
  39630. weight: math.unit(180, "lb"),
  39631. name: "Front",
  39632. image: {
  39633. source: "./media/characters/october/front.svg",
  39634. extra: 1800/1650,
  39635. bottom: 0/1800
  39636. }
  39637. },
  39638. frontNsfw: {
  39639. height: math.unit(5 + 5/12, "feet"),
  39640. weight: math.unit(180, "lb"),
  39641. name: "Front (NSFW)",
  39642. image: {
  39643. source: "./media/characters/october/front-nsfw.svg",
  39644. extra: 1392/1307,
  39645. bottom: 42/1434
  39646. }
  39647. },
  39648. },
  39649. [
  39650. {
  39651. name: "Normal",
  39652. height: math.unit(5 + 5/12, "feet"),
  39653. default: true
  39654. },
  39655. ]
  39656. ))
  39657. characterMakers.push(() => makeCharacter(
  39658. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39659. {
  39660. front: {
  39661. height: math.unit(8 + 6/12, "feet"),
  39662. name: "Front",
  39663. image: {
  39664. source: "./media/characters/essynkardi/front.svg",
  39665. extra: 1541/1457,
  39666. bottom: 47/1588
  39667. }
  39668. },
  39669. },
  39670. [
  39671. {
  39672. name: "Normal",
  39673. height: math.unit(8 + 6/12, "feet"),
  39674. default: true
  39675. },
  39676. ]
  39677. ))
  39678. characterMakers.push(() => makeCharacter(
  39679. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39680. {
  39681. front: {
  39682. height: math.unit(6 + 6/12, "feet"),
  39683. weight: math.unit(7, "lb"),
  39684. name: "Front",
  39685. image: {
  39686. source: "./media/characters/icky/front.svg",
  39687. extra: 813/782,
  39688. bottom: 66/879
  39689. }
  39690. },
  39691. back: {
  39692. height: math.unit(6 + 6/12, "feet"),
  39693. weight: math.unit(7, "lb"),
  39694. name: "Back",
  39695. image: {
  39696. source: "./media/characters/icky/back.svg",
  39697. extra: 754/735,
  39698. bottom: 56/810
  39699. }
  39700. },
  39701. },
  39702. [
  39703. {
  39704. name: "Normal",
  39705. height: math.unit(6 + 6/12, "feet"),
  39706. default: true
  39707. },
  39708. ]
  39709. ))
  39710. characterMakers.push(() => makeCharacter(
  39711. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39712. {
  39713. front: {
  39714. height: math.unit(15, "feet"),
  39715. name: "Front",
  39716. image: {
  39717. source: "./media/characters/rojas/front.svg",
  39718. extra: 1462/1408,
  39719. bottom: 95/1557
  39720. }
  39721. },
  39722. back: {
  39723. height: math.unit(15, "feet"),
  39724. name: "Back",
  39725. image: {
  39726. source: "./media/characters/rojas/back.svg",
  39727. extra: 1023/954,
  39728. bottom: 28/1051
  39729. }
  39730. },
  39731. },
  39732. [
  39733. {
  39734. name: "Normal",
  39735. height: math.unit(15, "feet"),
  39736. default: true
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39742. {
  39743. frontHuman: {
  39744. height: math.unit(5 + 7/12, "feet"),
  39745. name: "Front (Human)",
  39746. image: {
  39747. source: "./media/characters/alek-dryagan/front-human.svg",
  39748. extra: 1687/1667,
  39749. bottom: 69/1756
  39750. }
  39751. },
  39752. backHuman: {
  39753. height: math.unit(5 + 7/12, "feet"),
  39754. name: "Back (Human)",
  39755. image: {
  39756. source: "./media/characters/alek-dryagan/back-human.svg",
  39757. extra: 1670/1649,
  39758. bottom: 65/1735
  39759. }
  39760. },
  39761. frontDemi: {
  39762. height: math.unit(65, "feet"),
  39763. name: "Front (Demi)",
  39764. image: {
  39765. source: "./media/characters/alek-dryagan/front-demi.svg",
  39766. extra: 1669/1642,
  39767. bottom: 49/1718
  39768. }
  39769. },
  39770. backDemi: {
  39771. height: math.unit(65, "feet"),
  39772. name: "Back (Demi)",
  39773. image: {
  39774. source: "./media/characters/alek-dryagan/back-demi.svg",
  39775. extra: 1658/1637,
  39776. bottom: 40/1698
  39777. }
  39778. },
  39779. mawHuman: {
  39780. height: math.unit(0.3, "feet"),
  39781. name: "Maw (Human)",
  39782. image: {
  39783. source: "./media/characters/alek-dryagan/maw-human.svg"
  39784. }
  39785. },
  39786. mawDemi: {
  39787. height: math.unit(3.8, "feet"),
  39788. name: "Maw (Demi)",
  39789. image: {
  39790. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39791. }
  39792. },
  39793. },
  39794. [
  39795. {
  39796. name: "Normal",
  39797. height: math.unit(5 + 7/12, "feet"),
  39798. default: true
  39799. },
  39800. ]
  39801. ))
  39802. characterMakers.push(() => makeCharacter(
  39803. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39804. {
  39805. frontHuman: {
  39806. height: math.unit(5 + 2/12, "feet"),
  39807. name: "Front (Human)",
  39808. image: {
  39809. source: "./media/characters/gen/front-human.svg",
  39810. extra: 1627/1538,
  39811. bottom: 71/1698
  39812. }
  39813. },
  39814. backHuman: {
  39815. height: math.unit(5 + 2/12, "feet"),
  39816. name: "Back (Human)",
  39817. image: {
  39818. source: "./media/characters/gen/back-human.svg",
  39819. extra: 1638/1548,
  39820. bottom: 69/1707
  39821. }
  39822. },
  39823. frontDemi: {
  39824. height: math.unit(5 + 2/12, "feet"),
  39825. name: "Front (Demi)",
  39826. image: {
  39827. source: "./media/characters/gen/front-demi.svg",
  39828. extra: 1627/1538,
  39829. bottom: 71/1698
  39830. }
  39831. },
  39832. backDemi: {
  39833. height: math.unit(5 + 2/12, "feet"),
  39834. name: "Back (Demi)",
  39835. image: {
  39836. source: "./media/characters/gen/back-demi.svg",
  39837. extra: 1638/1548,
  39838. bottom: 69/1707
  39839. }
  39840. },
  39841. },
  39842. [
  39843. {
  39844. name: "Normal",
  39845. height: math.unit(5 + 2/12, "feet"),
  39846. default: true
  39847. },
  39848. ]
  39849. ))
  39850. characterMakers.push(() => makeCharacter(
  39851. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39852. {
  39853. frontImp: {
  39854. height: math.unit(1 + 11/12, "feet"),
  39855. name: "Front (Imp)",
  39856. image: {
  39857. source: "./media/characters/max-kobold/front-imp.svg",
  39858. extra: 1238/1134,
  39859. bottom: 81/1319
  39860. }
  39861. },
  39862. backImp: {
  39863. height: math.unit(1 + 11/12, "feet"),
  39864. name: "Back (Imp)",
  39865. image: {
  39866. source: "./media/characters/max-kobold/back-imp.svg",
  39867. extra: 1334/1175,
  39868. bottom: 34/1368
  39869. }
  39870. },
  39871. frontDemi: {
  39872. height: math.unit(5 + 9/12, "feet"),
  39873. name: "Front (Demi)",
  39874. image: {
  39875. source: "./media/characters/max-kobold/front-demi.svg",
  39876. extra: 1715/1685,
  39877. bottom: 54/1769
  39878. }
  39879. },
  39880. backDemi: {
  39881. height: math.unit(5 + 9/12, "feet"),
  39882. name: "Back (Demi)",
  39883. image: {
  39884. source: "./media/characters/max-kobold/back-demi.svg",
  39885. extra: 1752/1729,
  39886. bottom: 41/1793
  39887. }
  39888. },
  39889. handImp: {
  39890. height: math.unit(0.45, "feet"),
  39891. name: "Hand (Imp)",
  39892. image: {
  39893. source: "./media/characters/max-kobold/hand.svg"
  39894. }
  39895. },
  39896. pawImp: {
  39897. height: math.unit(0.46, "feet"),
  39898. name: "Paw (Imp)",
  39899. image: {
  39900. source: "./media/characters/max-kobold/paw.svg"
  39901. }
  39902. },
  39903. handDemi: {
  39904. height: math.unit(0.80, "feet"),
  39905. name: "Hand (Demi)",
  39906. image: {
  39907. source: "./media/characters/max-kobold/hand.svg"
  39908. }
  39909. },
  39910. pawDemi: {
  39911. height: math.unit(1.1, "feet"),
  39912. name: "Paw (Demi)",
  39913. image: {
  39914. source: "./media/characters/max-kobold/paw.svg"
  39915. }
  39916. },
  39917. headImp: {
  39918. height: math.unit(1.33, "feet"),
  39919. name: "Head (Imp)",
  39920. image: {
  39921. source: "./media/characters/max-kobold/head-imp.svg"
  39922. }
  39923. },
  39924. mawImp: {
  39925. height: math.unit(0.75, "feet"),
  39926. name: "Maw (Imp)",
  39927. image: {
  39928. source: "./media/characters/max-kobold/maw-imp.svg"
  39929. }
  39930. },
  39931. mawDemi: {
  39932. height: math.unit(0.42, "feet"),
  39933. name: "Maw (Demi)",
  39934. image: {
  39935. source: "./media/characters/max-kobold/maw-demi.svg"
  39936. }
  39937. },
  39938. },
  39939. [
  39940. {
  39941. name: "Normal",
  39942. height: math.unit(1 + 11/12, "feet"),
  39943. default: true
  39944. },
  39945. ]
  39946. ))
  39947. characterMakers.push(() => makeCharacter(
  39948. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39949. {
  39950. front: {
  39951. height: math.unit(7 + 5/12, "feet"),
  39952. name: "Front",
  39953. image: {
  39954. source: "./media/characters/carbon/front.svg",
  39955. extra: 1754/1689,
  39956. bottom: 65/1819
  39957. }
  39958. },
  39959. back: {
  39960. height: math.unit(7 + 5/12, "feet"),
  39961. name: "Back",
  39962. image: {
  39963. source: "./media/characters/carbon/back.svg",
  39964. extra: 1762/1695,
  39965. bottom: 24/1786
  39966. }
  39967. },
  39968. frontGigantamax: {
  39969. height: math.unit(150, "feet"),
  39970. name: "Front (Gigantamax)",
  39971. image: {
  39972. source: "./media/characters/carbon/front-gigantamax.svg",
  39973. extra: 1826/1669,
  39974. bottom: 59/1885
  39975. }
  39976. },
  39977. backGigantamax: {
  39978. height: math.unit(150, "feet"),
  39979. name: "Back (Gigantamax)",
  39980. image: {
  39981. source: "./media/characters/carbon/back-gigantamax.svg",
  39982. extra: 1796/1653,
  39983. bottom: 53/1849
  39984. }
  39985. },
  39986. maw: {
  39987. height: math.unit(0.48, "feet"),
  39988. name: "Maw",
  39989. image: {
  39990. source: "./media/characters/carbon/maw.svg"
  39991. }
  39992. },
  39993. mawGigantamax: {
  39994. height: math.unit(7.5, "feet"),
  39995. name: "Maw (Gigantamax)",
  39996. image: {
  39997. source: "./media/characters/carbon/maw-gigantamax.svg"
  39998. }
  39999. },
  40000. },
  40001. [
  40002. {
  40003. name: "Normal",
  40004. height: math.unit(7 + 5/12, "feet"),
  40005. default: true
  40006. },
  40007. ]
  40008. ))
  40009. characterMakers.push(() => makeCharacter(
  40010. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40011. {
  40012. front: {
  40013. height: math.unit(6, "feet"),
  40014. name: "Front",
  40015. image: {
  40016. source: "./media/characters/maverick/front.svg",
  40017. extra: 1672/1661,
  40018. bottom: 85/1757
  40019. }
  40020. },
  40021. back: {
  40022. height: math.unit(6, "feet"),
  40023. name: "Back",
  40024. image: {
  40025. source: "./media/characters/maverick/back.svg",
  40026. extra: 1642/1631,
  40027. bottom: 38/1680
  40028. }
  40029. },
  40030. },
  40031. [
  40032. {
  40033. name: "Normal",
  40034. height: math.unit(6, "feet"),
  40035. default: true
  40036. },
  40037. ]
  40038. ))
  40039. characterMakers.push(() => makeCharacter(
  40040. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40041. {
  40042. front: {
  40043. height: math.unit(15, "feet"),
  40044. weight: math.unit(615, "lb"),
  40045. name: "Front",
  40046. image: {
  40047. source: "./media/characters/grockle/front.svg",
  40048. extra: 1535/1427,
  40049. bottom: 56/1591
  40050. }
  40051. },
  40052. },
  40053. [
  40054. {
  40055. name: "Normal",
  40056. height: math.unit(15, "feet"),
  40057. default: true
  40058. },
  40059. {
  40060. name: "Large",
  40061. height: math.unit(150, "feet")
  40062. },
  40063. {
  40064. name: "Macro",
  40065. height: math.unit(1876, "feet")
  40066. },
  40067. {
  40068. name: "Mega Macro",
  40069. height: math.unit(121940, "feet")
  40070. },
  40071. {
  40072. name: "Giga Macro",
  40073. height: math.unit(750, "km")
  40074. },
  40075. {
  40076. name: "Tera Macro",
  40077. height: math.unit(750000, "km")
  40078. },
  40079. {
  40080. name: "Galactic",
  40081. height: math.unit(1.4e5, "km")
  40082. },
  40083. {
  40084. name: "Godlike",
  40085. height: math.unit(9.8e280, "galaxies")
  40086. },
  40087. ]
  40088. ))
  40089. characterMakers.push(() => makeCharacter(
  40090. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40091. {
  40092. front: {
  40093. height: math.unit(11, "meters"),
  40094. weight: math.unit(20, "tonnes"),
  40095. name: "Front",
  40096. image: {
  40097. source: "./media/characters/alistair/front.svg",
  40098. extra: 1265/1009,
  40099. bottom: 93/1358
  40100. }
  40101. },
  40102. },
  40103. [
  40104. {
  40105. name: "Normal",
  40106. height: math.unit(11, "meters"),
  40107. default: true
  40108. },
  40109. ]
  40110. ))
  40111. characterMakers.push(() => makeCharacter(
  40112. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40113. {
  40114. front: {
  40115. height: math.unit(5 + 8/12, "feet"),
  40116. name: "Front",
  40117. image: {
  40118. source: "./media/characters/haruka/front.svg",
  40119. extra: 2012/1952,
  40120. bottom: 0/2012
  40121. }
  40122. },
  40123. },
  40124. [
  40125. {
  40126. name: "Normal",
  40127. height: math.unit(5 + 8/12, "feet"),
  40128. default: true
  40129. },
  40130. ]
  40131. ))
  40132. characterMakers.push(() => makeCharacter(
  40133. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40134. {
  40135. back: {
  40136. height: math.unit(9, "feet"),
  40137. name: "Back",
  40138. image: {
  40139. source: "./media/characters/vivian-sylveon/back.svg",
  40140. extra: 1853/1714,
  40141. bottom: 0/1853
  40142. }
  40143. },
  40144. hyper: {
  40145. height: math.unit(5.58, "feet"),
  40146. name: "Hyper",
  40147. preyCapacity: math.unit(2.80616218797, "m^3"),
  40148. image: {
  40149. source: "./media/characters/vivian-sylveon/hyper.svg",
  40150. extra: 999/676,
  40151. bottom: 697/1696
  40152. },
  40153. },
  40154. paw: {
  40155. height: math.unit(1.8, "feet"),
  40156. name: "Paw",
  40157. image: {
  40158. source: "./media/characters/vivian-sylveon/paw.svg"
  40159. }
  40160. },
  40161. danger: {
  40162. height: math.unit(7.5, "feet"),
  40163. name: "DANGER",
  40164. image: {
  40165. source: "./media/characters/vivian-sylveon/danger.svg"
  40166. }
  40167. },
  40168. },
  40169. [
  40170. {
  40171. name: "Normal",
  40172. height: math.unit(9, "feet"),
  40173. default: true
  40174. },
  40175. {
  40176. name: "Macro",
  40177. height: math.unit(500, "feet")
  40178. },
  40179. {
  40180. name: "Megamacro",
  40181. height: math.unit(600, "miles")
  40182. },
  40183. {
  40184. name: "Gigamacro",
  40185. height: math.unit(30000, "miles")
  40186. },
  40187. ]
  40188. ))
  40189. characterMakers.push(() => makeCharacter(
  40190. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40191. {
  40192. anthro: {
  40193. height: math.unit(5 + 10/12, "feet"),
  40194. weight: math.unit(100, "lb"),
  40195. name: "Anthro",
  40196. image: {
  40197. source: "./media/characters/daiki/anthro.svg",
  40198. extra: 1115/1027,
  40199. bottom: 69/1184
  40200. }
  40201. },
  40202. feral: {
  40203. height: math.unit(200, "feet"),
  40204. name: "Feral",
  40205. image: {
  40206. source: "./media/characters/daiki/feral.svg",
  40207. extra: 1256/313,
  40208. bottom: 39/1295
  40209. }
  40210. },
  40211. feralHead: {
  40212. height: math.unit(171, "feet"),
  40213. name: "Feral Head",
  40214. image: {
  40215. source: "./media/characters/daiki/feral-head.svg"
  40216. }
  40217. },
  40218. manaDragon: {
  40219. height: math.unit(170, "meters"),
  40220. name: "Mana-dragon",
  40221. image: {
  40222. source: "./media/characters/daiki/mana-dragon.svg",
  40223. extra: 763/420,
  40224. bottom: 97/860
  40225. }
  40226. },
  40227. },
  40228. [
  40229. {
  40230. name: "Normal",
  40231. height: math.unit(5 + 10/12, "feet"),
  40232. default: true
  40233. },
  40234. ]
  40235. ))
  40236. characterMakers.push(() => makeCharacter(
  40237. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40238. {
  40239. fullyEquippedFront: {
  40240. height: math.unit(3 + 1/12, "feet"),
  40241. weight: math.unit(24, "lb"),
  40242. name: "Fully Equipped (Front)",
  40243. image: {
  40244. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40245. extra: 687/605,
  40246. bottom: 18/705
  40247. }
  40248. },
  40249. fullyEquippedBack: {
  40250. height: math.unit(3 + 1/12, "feet"),
  40251. weight: math.unit(24, "lb"),
  40252. name: "Fully Equipped (Back)",
  40253. image: {
  40254. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40255. extra: 689/590,
  40256. bottom: 18/707
  40257. }
  40258. },
  40259. dailyWear: {
  40260. height: math.unit(3 + 1/12, "feet"),
  40261. weight: math.unit(24, "lb"),
  40262. name: "Daily Wear",
  40263. image: {
  40264. source: "./media/characters/tea-spot/daily-wear.svg",
  40265. extra: 701/620,
  40266. bottom: 21/722
  40267. }
  40268. },
  40269. maidWork: {
  40270. height: math.unit(3 + 1/12, "feet"),
  40271. weight: math.unit(24, "lb"),
  40272. name: "Maid Work",
  40273. image: {
  40274. source: "./media/characters/tea-spot/maid-work.svg",
  40275. extra: 693/609,
  40276. bottom: 15/708
  40277. }
  40278. },
  40279. },
  40280. [
  40281. {
  40282. name: "Normal",
  40283. height: math.unit(3 + 1/12, "feet"),
  40284. default: true
  40285. },
  40286. ]
  40287. ))
  40288. characterMakers.push(() => makeCharacter(
  40289. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40290. {
  40291. front: {
  40292. height: math.unit(175, "cm"),
  40293. weight: math.unit(75, "kg"),
  40294. name: "Front",
  40295. image: {
  40296. source: "./media/characters/chee/front.svg",
  40297. extra: 1796/1740,
  40298. bottom: 40/1836
  40299. }
  40300. },
  40301. },
  40302. [
  40303. {
  40304. name: "Micro-Micro",
  40305. height: math.unit(1, "nm")
  40306. },
  40307. {
  40308. name: "Micro-erst",
  40309. height: math.unit(1, "micrometer")
  40310. },
  40311. {
  40312. name: "Micro-er",
  40313. height: math.unit(1, "cm")
  40314. },
  40315. {
  40316. name: "Normal",
  40317. height: math.unit(175, "cm"),
  40318. default: true
  40319. },
  40320. {
  40321. name: "Macro",
  40322. height: math.unit(100, "m")
  40323. },
  40324. {
  40325. name: "Macro-er",
  40326. height: math.unit(1, "km")
  40327. },
  40328. {
  40329. name: "Macro-erst",
  40330. height: math.unit(10, "km")
  40331. },
  40332. {
  40333. name: "Macro-Macro",
  40334. height: math.unit(100, "km")
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40340. {
  40341. front: {
  40342. height: math.unit(11 + 9/12, "feet"),
  40343. weight: math.unit(935, "lb"),
  40344. name: "Front",
  40345. image: {
  40346. source: "./media/characters/kingsley/front.svg",
  40347. extra: 1803/1674,
  40348. bottom: 127/1930
  40349. }
  40350. },
  40351. frontNude: {
  40352. height: math.unit(11 + 9/12, "feet"),
  40353. weight: math.unit(935, "lb"),
  40354. name: "Front (Nude)",
  40355. image: {
  40356. source: "./media/characters/kingsley/front-nude.svg",
  40357. extra: 1803/1674,
  40358. bottom: 127/1930
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Normal",
  40365. height: math.unit(11 + 9/12, "feet"),
  40366. default: true
  40367. },
  40368. ]
  40369. ))
  40370. characterMakers.push(() => makeCharacter(
  40371. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40372. {
  40373. side: {
  40374. height: math.unit(9, "feet"),
  40375. name: "Side",
  40376. image: {
  40377. source: "./media/characters/rymel/side.svg",
  40378. extra: 792/469,
  40379. bottom: 121/913
  40380. }
  40381. },
  40382. maw: {
  40383. height: math.unit(2.4, "meters"),
  40384. name: "Maw",
  40385. image: {
  40386. source: "./media/characters/rymel/maw.svg"
  40387. }
  40388. },
  40389. },
  40390. [
  40391. {
  40392. name: "House Drake",
  40393. height: math.unit(2, "feet")
  40394. },
  40395. {
  40396. name: "Reduced",
  40397. height: math.unit(4.5, "feet")
  40398. },
  40399. {
  40400. name: "Normal",
  40401. height: math.unit(9, "feet"),
  40402. default: true
  40403. },
  40404. ]
  40405. ))
  40406. characterMakers.push(() => makeCharacter(
  40407. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40408. {
  40409. front: {
  40410. height: math.unit(1.74, "meters"),
  40411. weight: math.unit(55, "kg"),
  40412. name: "Front",
  40413. image: {
  40414. source: "./media/characters/rubus/front.svg",
  40415. extra: 1894/1742,
  40416. bottom: 44/1938
  40417. }
  40418. },
  40419. },
  40420. [
  40421. {
  40422. name: "Normal",
  40423. height: math.unit(1.74, "meters"),
  40424. default: true
  40425. },
  40426. ]
  40427. ))
  40428. characterMakers.push(() => makeCharacter(
  40429. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40430. {
  40431. front: {
  40432. height: math.unit(5 + 2/12, "feet"),
  40433. weight: math.unit(112, "lb"),
  40434. name: "Front",
  40435. image: {
  40436. source: "./media/characters/cassie-kingston/front.svg",
  40437. extra: 1438/1390,
  40438. bottom: 47/1485
  40439. }
  40440. },
  40441. },
  40442. [
  40443. {
  40444. name: "Normal",
  40445. height: math.unit(5 + 2/12, "feet"),
  40446. default: true
  40447. },
  40448. {
  40449. name: "Macro",
  40450. height: math.unit(128, "feet")
  40451. },
  40452. {
  40453. name: "Megamacro",
  40454. height: math.unit(2.56, "miles")
  40455. },
  40456. ]
  40457. ))
  40458. characterMakers.push(() => makeCharacter(
  40459. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40460. {
  40461. front: {
  40462. height: math.unit(7, "feet"),
  40463. name: "Front",
  40464. image: {
  40465. source: "./media/characters/fox/front.svg",
  40466. extra: 1798/1703,
  40467. bottom: 55/1853
  40468. }
  40469. },
  40470. back: {
  40471. height: math.unit(7, "feet"),
  40472. name: "Back",
  40473. image: {
  40474. source: "./media/characters/fox/back.svg",
  40475. extra: 1748/1649,
  40476. bottom: 32/1780
  40477. }
  40478. },
  40479. head: {
  40480. height: math.unit(1.95, "feet"),
  40481. name: "Head",
  40482. image: {
  40483. source: "./media/characters/fox/head.svg"
  40484. }
  40485. },
  40486. dick: {
  40487. height: math.unit(1.33, "feet"),
  40488. name: "Dick",
  40489. image: {
  40490. source: "./media/characters/fox/dick.svg"
  40491. }
  40492. },
  40493. foot: {
  40494. height: math.unit(1, "feet"),
  40495. name: "Foot",
  40496. image: {
  40497. source: "./media/characters/fox/foot.svg"
  40498. }
  40499. },
  40500. paw: {
  40501. height: math.unit(0.92, "feet"),
  40502. name: "Paw",
  40503. image: {
  40504. source: "./media/characters/fox/paw.svg"
  40505. }
  40506. },
  40507. },
  40508. [
  40509. {
  40510. name: "Small",
  40511. height: math.unit(3, "inches")
  40512. },
  40513. {
  40514. name: "\"Realistic\"",
  40515. height: math.unit(7, "feet")
  40516. },
  40517. {
  40518. name: "Normal",
  40519. height: math.unit(150, "feet"),
  40520. default: true
  40521. },
  40522. {
  40523. name: "BIG",
  40524. height: math.unit(1200, "feet")
  40525. },
  40526. {
  40527. name: "👀",
  40528. height: math.unit(5, "miles")
  40529. },
  40530. {
  40531. name: "👀👀👀",
  40532. height: math.unit(64, "miles")
  40533. },
  40534. ]
  40535. ))
  40536. characterMakers.push(() => makeCharacter(
  40537. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40538. {
  40539. front: {
  40540. height: math.unit(625, "feet"),
  40541. name: "Front",
  40542. image: {
  40543. source: "./media/characters/asonja-rossa/front.svg",
  40544. extra: 1833/1686,
  40545. bottom: 24/1857
  40546. }
  40547. },
  40548. back: {
  40549. height: math.unit(625, "feet"),
  40550. name: "Back",
  40551. image: {
  40552. source: "./media/characters/asonja-rossa/back.svg",
  40553. extra: 1852/1753,
  40554. bottom: 26/1878
  40555. }
  40556. },
  40557. },
  40558. [
  40559. {
  40560. name: "Macro",
  40561. height: math.unit(625, "feet"),
  40562. default: true
  40563. },
  40564. ]
  40565. ))
  40566. characterMakers.push(() => makeCharacter(
  40567. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40568. {
  40569. side: {
  40570. height: math.unit(8, "feet"),
  40571. name: "Side",
  40572. image: {
  40573. source: "./media/characters/rezukii/side.svg",
  40574. extra: 979/542,
  40575. bottom: 87/1066
  40576. }
  40577. },
  40578. sitting: {
  40579. height: math.unit(14.6, "feet"),
  40580. name: "Sitting",
  40581. image: {
  40582. source: "./media/characters/rezukii/sitting.svg",
  40583. extra: 1023/813,
  40584. bottom: 45/1068
  40585. }
  40586. },
  40587. },
  40588. [
  40589. {
  40590. name: "Tiny",
  40591. height: math.unit(2, "feet")
  40592. },
  40593. {
  40594. name: "Smol",
  40595. height: math.unit(4, "feet")
  40596. },
  40597. {
  40598. name: "Normal",
  40599. height: math.unit(8, "feet"),
  40600. default: true
  40601. },
  40602. {
  40603. name: "Big",
  40604. height: math.unit(12, "feet")
  40605. },
  40606. {
  40607. name: "Macro",
  40608. height: math.unit(30, "feet")
  40609. },
  40610. ]
  40611. ))
  40612. characterMakers.push(() => makeCharacter(
  40613. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40614. {
  40615. front: {
  40616. height: math.unit(14, "feet"),
  40617. weight: math.unit(9.5, "tonnes"),
  40618. name: "Front",
  40619. image: {
  40620. source: "./media/characters/dawnheart/front.svg",
  40621. extra: 2792/2675,
  40622. bottom: 64/2856
  40623. }
  40624. },
  40625. },
  40626. [
  40627. {
  40628. name: "Normal",
  40629. height: math.unit(14, "feet"),
  40630. default: true
  40631. },
  40632. ]
  40633. ))
  40634. characterMakers.push(() => makeCharacter(
  40635. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40636. {
  40637. front: {
  40638. height: math.unit(1.7, "m"),
  40639. name: "Front",
  40640. image: {
  40641. source: "./media/characters/gladi/front.svg",
  40642. extra: 1460/1362,
  40643. bottom: 19/1479
  40644. }
  40645. },
  40646. back: {
  40647. height: math.unit(1.7, "m"),
  40648. name: "Back",
  40649. image: {
  40650. source: "./media/characters/gladi/back.svg",
  40651. extra: 1459/1357,
  40652. bottom: 12/1471
  40653. }
  40654. },
  40655. feral: {
  40656. height: math.unit(2.05, "m"),
  40657. name: "Feral",
  40658. image: {
  40659. source: "./media/characters/gladi/feral.svg",
  40660. extra: 821/557,
  40661. bottom: 91/912
  40662. }
  40663. },
  40664. },
  40665. [
  40666. {
  40667. name: "Shortest",
  40668. height: math.unit(70, "cm")
  40669. },
  40670. {
  40671. name: "Normal",
  40672. height: math.unit(1.7, "m")
  40673. },
  40674. {
  40675. name: "Macro",
  40676. height: math.unit(10, "m"),
  40677. default: true
  40678. },
  40679. {
  40680. name: "Tallest",
  40681. height: math.unit(200, "m")
  40682. },
  40683. ]
  40684. ))
  40685. characterMakers.push(() => makeCharacter(
  40686. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40687. {
  40688. front: {
  40689. height: math.unit(5 + 7/12, "feet"),
  40690. weight: math.unit(2, "tons"),
  40691. name: "Front",
  40692. image: {
  40693. source: "./media/characters/erdno/front.svg",
  40694. extra: 1234/1129,
  40695. bottom: 35/1269
  40696. }
  40697. },
  40698. angled: {
  40699. height: math.unit(5 + 7/12, "feet"),
  40700. weight: math.unit(2, "tons"),
  40701. name: "Angled",
  40702. image: {
  40703. source: "./media/characters/erdno/angled.svg",
  40704. extra: 1185/1139,
  40705. bottom: 36/1221
  40706. }
  40707. },
  40708. side: {
  40709. height: math.unit(5 + 7/12, "feet"),
  40710. weight: math.unit(2, "tons"),
  40711. name: "Side",
  40712. image: {
  40713. source: "./media/characters/erdno/side.svg",
  40714. extra: 1191/1144,
  40715. bottom: 40/1231
  40716. }
  40717. },
  40718. back: {
  40719. height: math.unit(5 + 7/12, "feet"),
  40720. weight: math.unit(2, "tons"),
  40721. name: "Back",
  40722. image: {
  40723. source: "./media/characters/erdno/back.svg",
  40724. extra: 1202/1146,
  40725. bottom: 17/1219
  40726. }
  40727. },
  40728. frontNsfw: {
  40729. height: math.unit(5 + 7/12, "feet"),
  40730. weight: math.unit(2, "tons"),
  40731. name: "Front (NSFW)",
  40732. image: {
  40733. source: "./media/characters/erdno/front-nsfw.svg",
  40734. extra: 1234/1129,
  40735. bottom: 35/1269
  40736. }
  40737. },
  40738. angledNsfw: {
  40739. height: math.unit(5 + 7/12, "feet"),
  40740. weight: math.unit(2, "tons"),
  40741. name: "Angled (NSFW)",
  40742. image: {
  40743. source: "./media/characters/erdno/angled-nsfw.svg",
  40744. extra: 1185/1139,
  40745. bottom: 36/1221
  40746. }
  40747. },
  40748. sideNsfw: {
  40749. height: math.unit(5 + 7/12, "feet"),
  40750. weight: math.unit(2, "tons"),
  40751. name: "Side (NSFW)",
  40752. image: {
  40753. source: "./media/characters/erdno/side-nsfw.svg",
  40754. extra: 1191/1144,
  40755. bottom: 40/1231
  40756. }
  40757. },
  40758. backNsfw: {
  40759. height: math.unit(5 + 7/12, "feet"),
  40760. weight: math.unit(2, "tons"),
  40761. name: "Back (NSFW)",
  40762. image: {
  40763. source: "./media/characters/erdno/back-nsfw.svg",
  40764. extra: 1202/1146,
  40765. bottom: 17/1219
  40766. }
  40767. },
  40768. frontHyper: {
  40769. height: math.unit(5 + 7/12, "feet"),
  40770. weight: math.unit(2, "tons"),
  40771. name: "Front (Hyper)",
  40772. image: {
  40773. source: "./media/characters/erdno/front-hyper.svg",
  40774. extra: 1298/1136,
  40775. bottom: 35/1333
  40776. }
  40777. },
  40778. },
  40779. [
  40780. {
  40781. name: "Normal",
  40782. height: math.unit(5 + 7/12, "feet"),
  40783. default: true
  40784. },
  40785. {
  40786. name: "Big",
  40787. height: math.unit(5.7, "meters")
  40788. },
  40789. {
  40790. name: "Macro",
  40791. height: math.unit(5.7, "kilometers")
  40792. },
  40793. {
  40794. name: "Megamacro",
  40795. height: math.unit(5.7, "earths")
  40796. },
  40797. ]
  40798. ))
  40799. characterMakers.push(() => makeCharacter(
  40800. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40801. {
  40802. front: {
  40803. height: math.unit(5 + 10/12, "feet"),
  40804. weight: math.unit(150, "lb"),
  40805. name: "Front",
  40806. image: {
  40807. source: "./media/characters/jamie/front.svg",
  40808. extra: 1908/1768,
  40809. bottom: 19/1927
  40810. }
  40811. },
  40812. },
  40813. [
  40814. {
  40815. name: "Minimum",
  40816. height: math.unit(2, "cm")
  40817. },
  40818. {
  40819. name: "Micro",
  40820. height: math.unit(3, "inches")
  40821. },
  40822. {
  40823. name: "Normal",
  40824. height: math.unit(5 + 10/12, "feet"),
  40825. default: true
  40826. },
  40827. {
  40828. name: "Macro",
  40829. height: math.unit(150, "feet")
  40830. },
  40831. {
  40832. name: "Megamacro",
  40833. height: math.unit(10000, "m")
  40834. },
  40835. ]
  40836. ))
  40837. characterMakers.push(() => makeCharacter(
  40838. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40839. {
  40840. front: {
  40841. height: math.unit(2, "meters"),
  40842. weight: math.unit(100, "kg"),
  40843. name: "Front",
  40844. image: {
  40845. source: "./media/characters/shiron/front.svg",
  40846. extra: 2103/1985,
  40847. bottom: 98/2201
  40848. }
  40849. },
  40850. back: {
  40851. height: math.unit(2, "meters"),
  40852. weight: math.unit(100, "kg"),
  40853. name: "Back",
  40854. image: {
  40855. source: "./media/characters/shiron/back.svg",
  40856. extra: 2110/2015,
  40857. bottom: 89/2199
  40858. }
  40859. },
  40860. hand: {
  40861. height: math.unit(0.96, "feet"),
  40862. name: "Hand",
  40863. image: {
  40864. source: "./media/characters/shiron/hand.svg"
  40865. }
  40866. },
  40867. foot: {
  40868. height: math.unit(1.464, "feet"),
  40869. name: "Foot",
  40870. image: {
  40871. source: "./media/characters/shiron/foot.svg"
  40872. }
  40873. },
  40874. },
  40875. [
  40876. {
  40877. name: "Normal",
  40878. height: math.unit(2, "meters")
  40879. },
  40880. {
  40881. name: "Macro",
  40882. height: math.unit(500, "meters"),
  40883. default: true
  40884. },
  40885. {
  40886. name: "Megamacro",
  40887. height: math.unit(20, "km")
  40888. },
  40889. ]
  40890. ))
  40891. characterMakers.push(() => makeCharacter(
  40892. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40893. {
  40894. front: {
  40895. height: math.unit(6, "feet"),
  40896. name: "Front",
  40897. image: {
  40898. source: "./media/characters/sam/front.svg",
  40899. extra: 849/826,
  40900. bottom: 19/868
  40901. }
  40902. },
  40903. },
  40904. [
  40905. {
  40906. name: "Normal",
  40907. height: math.unit(6, "feet"),
  40908. default: true
  40909. },
  40910. ]
  40911. ))
  40912. characterMakers.push(() => makeCharacter(
  40913. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40914. {
  40915. front: {
  40916. height: math.unit(8 + 4/12, "feet"),
  40917. weight: math.unit(122, "kg"),
  40918. name: "Front",
  40919. image: {
  40920. source: "./media/characters/namori-kurogawa/front.svg",
  40921. extra: 1894/1576,
  40922. bottom: 34/1928
  40923. }
  40924. },
  40925. },
  40926. [
  40927. {
  40928. name: "Normal",
  40929. height: math.unit(8 + 4/12, "feet"),
  40930. default: true
  40931. },
  40932. ]
  40933. ))
  40934. characterMakers.push(() => makeCharacter(
  40935. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40936. {
  40937. front: {
  40938. height: math.unit(9, "feet"),
  40939. weight: math.unit(621, "lb"),
  40940. name: "Front",
  40941. image: {
  40942. source: "./media/characters/unmru/front.svg",
  40943. extra: 1853/1747,
  40944. bottom: 73/1926
  40945. }
  40946. },
  40947. side: {
  40948. height: math.unit(9, "feet"),
  40949. weight: math.unit(621, "lb"),
  40950. name: "Side",
  40951. image: {
  40952. source: "./media/characters/unmru/side.svg",
  40953. extra: 1781/1671,
  40954. bottom: 127/1908
  40955. }
  40956. },
  40957. back: {
  40958. height: math.unit(9, "feet"),
  40959. weight: math.unit(621, "lb"),
  40960. name: "Back",
  40961. image: {
  40962. source: "./media/characters/unmru/back.svg",
  40963. extra: 1894/1765,
  40964. bottom: 75/1969
  40965. }
  40966. },
  40967. dick: {
  40968. height: math.unit(3, "feet"),
  40969. weight: math.unit(35, "lb"),
  40970. name: "Dick",
  40971. image: {
  40972. source: "./media/characters/unmru/dick.svg"
  40973. }
  40974. },
  40975. },
  40976. [
  40977. {
  40978. name: "Normal",
  40979. height: math.unit(9, "feet")
  40980. },
  40981. {
  40982. name: "Natural",
  40983. height: math.unit(27, "feet"),
  40984. default: true
  40985. },
  40986. {
  40987. name: "Giant",
  40988. height: math.unit(90, "feet")
  40989. },
  40990. {
  40991. name: "Kaiju",
  40992. height: math.unit(270, "feet")
  40993. },
  40994. {
  40995. name: "Macro",
  40996. height: math.unit(900, "feet")
  40997. },
  40998. {
  40999. name: "Macro+",
  41000. height: math.unit(2700, "feet")
  41001. },
  41002. {
  41003. name: "Megamacro",
  41004. height: math.unit(9000, "feet")
  41005. },
  41006. {
  41007. name: "City-Crushing",
  41008. height: math.unit(27000, "feet")
  41009. },
  41010. {
  41011. name: "Mountain-Mashing",
  41012. height: math.unit(90000, "feet")
  41013. },
  41014. {
  41015. name: "Earth-Eclipsing",
  41016. height: math.unit(2.7e8, "feet")
  41017. },
  41018. {
  41019. name: "Sol-Swallowing",
  41020. height: math.unit(9e10, "feet")
  41021. },
  41022. {
  41023. name: "Majoris-Munching",
  41024. height: math.unit(2.7e13, "feet")
  41025. },
  41026. ]
  41027. ))
  41028. characterMakers.push(() => makeCharacter(
  41029. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41030. {
  41031. front: {
  41032. height: math.unit(1, "inch"),
  41033. name: "Front",
  41034. image: {
  41035. source: "./media/characters/squeaks-mouse/front.svg",
  41036. extra: 352/308,
  41037. bottom: 25/377
  41038. }
  41039. },
  41040. },
  41041. [
  41042. {
  41043. name: "Micro",
  41044. height: math.unit(1, "inch"),
  41045. default: true
  41046. },
  41047. ]
  41048. ))
  41049. characterMakers.push(() => makeCharacter(
  41050. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41051. {
  41052. side: {
  41053. height: math.unit(35, "feet"),
  41054. name: "Side",
  41055. image: {
  41056. source: "./media/characters/sayko/side.svg",
  41057. extra: 1697/1021,
  41058. bottom: 82/1779
  41059. }
  41060. },
  41061. head: {
  41062. height: math.unit(16, "feet"),
  41063. name: "Head",
  41064. image: {
  41065. source: "./media/characters/sayko/head.svg"
  41066. }
  41067. },
  41068. forepaw: {
  41069. height: math.unit(7.85, "feet"),
  41070. name: "Forepaw",
  41071. image: {
  41072. source: "./media/characters/sayko/forepaw.svg"
  41073. }
  41074. },
  41075. hindpaw: {
  41076. height: math.unit(8.8, "feet"),
  41077. name: "Hindpaw",
  41078. image: {
  41079. source: "./media/characters/sayko/hindpaw.svg"
  41080. }
  41081. },
  41082. },
  41083. [
  41084. {
  41085. name: "Normal",
  41086. height: math.unit(35, "feet"),
  41087. default: true
  41088. },
  41089. {
  41090. name: "Colossus",
  41091. height: math.unit(100, "meters")
  41092. },
  41093. {
  41094. name: "\"Small\" Deity",
  41095. height: math.unit(1, "km")
  41096. },
  41097. {
  41098. name: "\"Large\" Deity",
  41099. height: math.unit(15, "km")
  41100. },
  41101. ]
  41102. ))
  41103. characterMakers.push(() => makeCharacter(
  41104. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41105. {
  41106. front: {
  41107. height: math.unit(6, "feet"),
  41108. weight: math.unit(250, "lb"),
  41109. name: "Front",
  41110. image: {
  41111. source: "./media/characters/mukiro/front.svg",
  41112. extra: 1368/1310,
  41113. bottom: 34/1402
  41114. }
  41115. },
  41116. },
  41117. [
  41118. {
  41119. name: "Normal",
  41120. height: math.unit(6, "feet"),
  41121. default: true
  41122. },
  41123. ]
  41124. ))
  41125. characterMakers.push(() => makeCharacter(
  41126. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41127. {
  41128. front: {
  41129. height: math.unit(12 + 4/12, "feet"),
  41130. name: "Front",
  41131. image: {
  41132. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41133. extra: 1346/1311,
  41134. bottom: 65/1411
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Base",
  41141. height: math.unit(12 + 4/12, "feet"),
  41142. default: true
  41143. },
  41144. {
  41145. name: "Macro",
  41146. height: math.unit(150, "feet")
  41147. },
  41148. {
  41149. name: "Mega",
  41150. height: math.unit(2, "miles")
  41151. },
  41152. {
  41153. name: "Demi God",
  41154. height: math.unit(4, "AU")
  41155. },
  41156. {
  41157. name: "God Size",
  41158. height: math.unit(1, "universe")
  41159. },
  41160. ]
  41161. ))
  41162. characterMakers.push(() => makeCharacter(
  41163. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41164. {
  41165. front: {
  41166. height: math.unit(3 + 3/12, "feet"),
  41167. weight: math.unit(88, "lb"),
  41168. name: "Front",
  41169. image: {
  41170. source: "./media/characters/trey/front.svg",
  41171. extra: 1815/1509,
  41172. bottom: 60/1875
  41173. }
  41174. },
  41175. },
  41176. [
  41177. {
  41178. name: "Normal",
  41179. height: math.unit(3 + 3/12, "feet"),
  41180. default: true
  41181. },
  41182. ]
  41183. ))
  41184. characterMakers.push(() => makeCharacter(
  41185. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41186. {
  41187. front: {
  41188. height: math.unit(4, "meters"),
  41189. name: "Front",
  41190. image: {
  41191. source: "./media/characters/adelonda/front.svg",
  41192. extra: 1077/982,
  41193. bottom: 39/1116
  41194. }
  41195. },
  41196. back: {
  41197. height: math.unit(4, "meters"),
  41198. name: "Back",
  41199. image: {
  41200. source: "./media/characters/adelonda/back.svg",
  41201. extra: 1105/1003,
  41202. bottom: 25/1130
  41203. }
  41204. },
  41205. feral: {
  41206. height: math.unit(40/1.5, "meters"),
  41207. name: "Feral",
  41208. image: {
  41209. source: "./media/characters/adelonda/feral.svg",
  41210. extra: 597/271,
  41211. bottom: 387/984
  41212. }
  41213. },
  41214. },
  41215. [
  41216. {
  41217. name: "Normal",
  41218. height: math.unit(4, "meters"),
  41219. default: true
  41220. },
  41221. ]
  41222. ))
  41223. characterMakers.push(() => makeCharacter(
  41224. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41225. {
  41226. front: {
  41227. height: math.unit(8 + 4/12, "feet"),
  41228. weight: math.unit(670, "lb"),
  41229. name: "Front",
  41230. image: {
  41231. source: "./media/characters/acadiel/front.svg",
  41232. extra: 1901/1595,
  41233. bottom: 142/2043
  41234. }
  41235. },
  41236. },
  41237. [
  41238. {
  41239. name: "Normal",
  41240. height: math.unit(8 + 4/12, "feet"),
  41241. default: true
  41242. },
  41243. {
  41244. name: "Macro",
  41245. height: math.unit(200, "feet")
  41246. },
  41247. ]
  41248. ))
  41249. characterMakers.push(() => makeCharacter(
  41250. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41251. {
  41252. front: {
  41253. height: math.unit(6 + 2/12, "feet"),
  41254. weight: math.unit(185, "lb"),
  41255. name: "Front",
  41256. image: {
  41257. source: "./media/characters/kayne-ein/front.svg",
  41258. extra: 1780/1560,
  41259. bottom: 81/1861
  41260. }
  41261. },
  41262. },
  41263. [
  41264. {
  41265. name: "Normal",
  41266. height: math.unit(6 + 2/12, "feet"),
  41267. default: true
  41268. },
  41269. {
  41270. name: "Transformation Stage",
  41271. height: math.unit(15, "feet")
  41272. },
  41273. {
  41274. name: "Macro",
  41275. height: math.unit(150, "feet")
  41276. },
  41277. {
  41278. name: "Earth's Shadow",
  41279. height: math.unit(6200, "miles")
  41280. },
  41281. {
  41282. name: "Universal Demon",
  41283. height: math.unit(28e9, "parsecs")
  41284. },
  41285. {
  41286. name: "Multiverse God",
  41287. height: math.unit(3, "multiverses")
  41288. },
  41289. ]
  41290. ))
  41291. characterMakers.push(() => makeCharacter(
  41292. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41293. {
  41294. front: {
  41295. height: math.unit(5 + 5/12, "feet"),
  41296. name: "Front",
  41297. image: {
  41298. source: "./media/characters/fawn/front.svg",
  41299. extra: 1873/1731,
  41300. bottom: 95/1968
  41301. }
  41302. },
  41303. back: {
  41304. height: math.unit(5 + 5/12, "feet"),
  41305. name: "Back",
  41306. image: {
  41307. source: "./media/characters/fawn/back.svg",
  41308. extra: 1813/1700,
  41309. bottom: 14/1827
  41310. }
  41311. },
  41312. hoof: {
  41313. height: math.unit(1.45, "feet"),
  41314. name: "Hoof",
  41315. image: {
  41316. source: "./media/characters/fawn/hoof.svg"
  41317. }
  41318. },
  41319. },
  41320. [
  41321. {
  41322. name: "Normal",
  41323. height: math.unit(5 + 5/12, "feet"),
  41324. default: true
  41325. },
  41326. ]
  41327. ))
  41328. characterMakers.push(() => makeCharacter(
  41329. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41330. {
  41331. front: {
  41332. height: math.unit(2 + 5/12, "feet"),
  41333. name: "Front",
  41334. image: {
  41335. source: "./media/characters/orion/front.svg",
  41336. extra: 1366/1304,
  41337. bottom: 43/1409
  41338. }
  41339. },
  41340. paw: {
  41341. height: math.unit(0.52, "feet"),
  41342. name: "Paw",
  41343. image: {
  41344. source: "./media/characters/orion/paw.svg"
  41345. }
  41346. },
  41347. },
  41348. [
  41349. {
  41350. name: "Normal",
  41351. height: math.unit(2 + 5/12, "feet"),
  41352. default: true
  41353. },
  41354. ]
  41355. ))
  41356. characterMakers.push(() => makeCharacter(
  41357. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41358. {
  41359. front: {
  41360. height: math.unit(5 + 10/12, "feet"),
  41361. name: "Front",
  41362. image: {
  41363. source: "./media/characters/vera/front.svg",
  41364. extra: 1680/1575,
  41365. bottom: 49/1729
  41366. }
  41367. },
  41368. back: {
  41369. height: math.unit(5 + 10/12, "feet"),
  41370. name: "Back",
  41371. image: {
  41372. source: "./media/characters/vera/back.svg",
  41373. extra: 1700/1588,
  41374. bottom: 18/1718
  41375. }
  41376. },
  41377. arcanine: {
  41378. height: math.unit(6 + 8/12, "feet"),
  41379. name: "Arcanine",
  41380. image: {
  41381. source: "./media/characters/vera/arcanine.svg",
  41382. extra: 1590/1511,
  41383. bottom: 71/1661
  41384. }
  41385. },
  41386. maw: {
  41387. height: math.unit(0.82, "feet"),
  41388. name: "Maw",
  41389. image: {
  41390. source: "./media/characters/vera/maw.svg"
  41391. }
  41392. },
  41393. mawArcanine: {
  41394. height: math.unit(0.97, "feet"),
  41395. name: "Maw (Arcanine)",
  41396. image: {
  41397. source: "./media/characters/vera/maw-arcanine.svg"
  41398. }
  41399. },
  41400. paw: {
  41401. height: math.unit(0.75, "feet"),
  41402. name: "Paw",
  41403. image: {
  41404. source: "./media/characters/vera/paw.svg"
  41405. }
  41406. },
  41407. pawprint: {
  41408. height: math.unit(0.52, "feet"),
  41409. name: "Pawprint",
  41410. image: {
  41411. source: "./media/characters/vera/pawprint.svg"
  41412. }
  41413. },
  41414. },
  41415. [
  41416. {
  41417. name: "Normal",
  41418. height: math.unit(5 + 10/12, "feet"),
  41419. default: true
  41420. },
  41421. {
  41422. name: "Macro",
  41423. height: math.unit(75, "feet")
  41424. },
  41425. ]
  41426. ))
  41427. characterMakers.push(() => makeCharacter(
  41428. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41429. {
  41430. front: {
  41431. height: math.unit(4, "feet"),
  41432. weight: math.unit(40, "lb"),
  41433. name: "Front",
  41434. image: {
  41435. source: "./media/characters/orvan-rabbit/front.svg",
  41436. extra: 1896/1642,
  41437. bottom: 29/1925
  41438. }
  41439. },
  41440. },
  41441. [
  41442. {
  41443. name: "Normal",
  41444. height: math.unit(4, "feet"),
  41445. default: true
  41446. },
  41447. ]
  41448. ))
  41449. characterMakers.push(() => makeCharacter(
  41450. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41451. {
  41452. front: {
  41453. height: math.unit(6, "feet"),
  41454. weight: math.unit(168, "lb"),
  41455. name: "Front",
  41456. image: {
  41457. source: "./media/characters/lisa/front.svg",
  41458. extra: 2065/1867,
  41459. bottom: 46/2111
  41460. }
  41461. },
  41462. back: {
  41463. height: math.unit(6, "feet"),
  41464. weight: math.unit(168, "lb"),
  41465. name: "Back",
  41466. image: {
  41467. source: "./media/characters/lisa/back.svg",
  41468. extra: 1982/1838,
  41469. bottom: 29/2011
  41470. }
  41471. },
  41472. maw: {
  41473. height: math.unit(0.81, "feet"),
  41474. name: "Maw",
  41475. image: {
  41476. source: "./media/characters/lisa/maw.svg"
  41477. }
  41478. },
  41479. paw: {
  41480. height: math.unit(0.9, "feet"),
  41481. name: "Paw",
  41482. image: {
  41483. source: "./media/characters/lisa/paw.svg"
  41484. }
  41485. },
  41486. caribousune: {
  41487. height: math.unit(7 + 2/12, "feet"),
  41488. weight: math.unit(268, "lb"),
  41489. name: "Caribousune",
  41490. image: {
  41491. source: "./media/characters/lisa/caribousune.svg",
  41492. extra: 1843/1633,
  41493. bottom: 29/1872
  41494. }
  41495. },
  41496. frontCaribousune: {
  41497. height: math.unit(7 + 2/12, "feet"),
  41498. weight: math.unit(268, "lb"),
  41499. name: "Front (Caribousune)",
  41500. image: {
  41501. source: "./media/characters/lisa/front-caribousune.svg",
  41502. extra: 1818/1638,
  41503. bottom: 52/1870
  41504. }
  41505. },
  41506. sideCaribousune: {
  41507. height: math.unit(7 + 2/12, "feet"),
  41508. weight: math.unit(268, "lb"),
  41509. name: "Side (Caribousune)",
  41510. image: {
  41511. source: "./media/characters/lisa/side-caribousune.svg",
  41512. extra: 1851/1635,
  41513. bottom: 16/1867
  41514. }
  41515. },
  41516. backCaribousune: {
  41517. height: math.unit(7 + 2/12, "feet"),
  41518. weight: math.unit(268, "lb"),
  41519. name: "Back (Caribousune)",
  41520. image: {
  41521. source: "./media/characters/lisa/back-caribousune.svg",
  41522. extra: 1801/1604,
  41523. bottom: 44/1845
  41524. }
  41525. },
  41526. caribou: {
  41527. height: math.unit(7 + 2/12, "feet"),
  41528. weight: math.unit(268, "lb"),
  41529. name: "Caribou",
  41530. image: {
  41531. source: "./media/characters/lisa/caribou.svg",
  41532. extra: 1843/1633,
  41533. bottom: 29/1872
  41534. }
  41535. },
  41536. frontCaribou: {
  41537. height: math.unit(7 + 2/12, "feet"),
  41538. weight: math.unit(268, "lb"),
  41539. name: "Front (Caribou)",
  41540. image: {
  41541. source: "./media/characters/lisa/front-caribou.svg",
  41542. extra: 1818/1638,
  41543. bottom: 52/1870
  41544. }
  41545. },
  41546. sideCaribou: {
  41547. height: math.unit(7 + 2/12, "feet"),
  41548. weight: math.unit(268, "lb"),
  41549. name: "Side (Caribou)",
  41550. image: {
  41551. source: "./media/characters/lisa/side-caribou.svg",
  41552. extra: 1851/1635,
  41553. bottom: 16/1867
  41554. }
  41555. },
  41556. backCaribou: {
  41557. height: math.unit(7 + 2/12, "feet"),
  41558. weight: math.unit(268, "lb"),
  41559. name: "Back (Caribou)",
  41560. image: {
  41561. source: "./media/characters/lisa/back-caribou.svg",
  41562. extra: 1801/1604,
  41563. bottom: 44/1845
  41564. }
  41565. },
  41566. mawCaribou: {
  41567. height: math.unit(1.45, "feet"),
  41568. name: "Maw (Caribou)",
  41569. image: {
  41570. source: "./media/characters/lisa/maw-caribou.svg"
  41571. }
  41572. },
  41573. mawCaribousune: {
  41574. height: math.unit(1.45, "feet"),
  41575. name: "Maw (Caribousune)",
  41576. image: {
  41577. source: "./media/characters/lisa/maw-caribousune.svg"
  41578. }
  41579. },
  41580. pawCaribousune: {
  41581. height: math.unit(1.61, "feet"),
  41582. name: "Paw (Caribou)",
  41583. image: {
  41584. source: "./media/characters/lisa/paw-caribousune.svg"
  41585. }
  41586. },
  41587. },
  41588. [
  41589. {
  41590. name: "Normal",
  41591. height: math.unit(6, "feet")
  41592. },
  41593. {
  41594. name: "God Size",
  41595. height: math.unit(72, "feet"),
  41596. default: true
  41597. },
  41598. {
  41599. name: "Towering",
  41600. height: math.unit(288, "feet")
  41601. },
  41602. {
  41603. name: "City Size",
  41604. height: math.unit(48384, "feet")
  41605. },
  41606. {
  41607. name: "Continental",
  41608. height: math.unit(4200, "miles")
  41609. },
  41610. {
  41611. name: "Planet Eater",
  41612. height: math.unit(42, "earths")
  41613. },
  41614. {
  41615. name: "Star Swallower",
  41616. height: math.unit(42, "solarradii")
  41617. },
  41618. {
  41619. name: "System Swallower",
  41620. height: math.unit(84000, "AU")
  41621. },
  41622. {
  41623. name: "Galaxy Gobbler",
  41624. height: math.unit(42, "galaxies")
  41625. },
  41626. {
  41627. name: "Universe Devourer",
  41628. height: math.unit(42, "universes")
  41629. },
  41630. {
  41631. name: "Multiverse Muncher",
  41632. height: math.unit(42, "multiverses")
  41633. },
  41634. ]
  41635. ))
  41636. characterMakers.push(() => makeCharacter(
  41637. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41638. {
  41639. front: {
  41640. height: math.unit(36, "feet"),
  41641. name: "Front",
  41642. image: {
  41643. source: "./media/characters/shadow-rat/front.svg",
  41644. extra: 1845/1758,
  41645. bottom: 83/1928
  41646. }
  41647. },
  41648. },
  41649. [
  41650. {
  41651. name: "Macro",
  41652. height: math.unit(36, "feet"),
  41653. default: true
  41654. },
  41655. ]
  41656. ))
  41657. characterMakers.push(() => makeCharacter(
  41658. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41659. {
  41660. side: {
  41661. height: math.unit(8, "feet"),
  41662. weight: math.unit(2630, "lb"),
  41663. name: "Side",
  41664. image: {
  41665. source: "./media/characters/torallia/side.svg",
  41666. extra: 2164/2021,
  41667. bottom: 371/2535
  41668. }
  41669. },
  41670. },
  41671. [
  41672. {
  41673. name: "Mortal Interaction",
  41674. height: math.unit(8, "feet")
  41675. },
  41676. {
  41677. name: "Natural",
  41678. height: math.unit(24, "feet"),
  41679. default: true
  41680. },
  41681. {
  41682. name: "Giant",
  41683. height: math.unit(80, "feet")
  41684. },
  41685. {
  41686. name: "Kaiju",
  41687. height: math.unit(240, "feet")
  41688. },
  41689. {
  41690. name: "Macro",
  41691. height: math.unit(800, "feet")
  41692. },
  41693. {
  41694. name: "Macro+",
  41695. height: math.unit(2400, "feet")
  41696. },
  41697. {
  41698. name: "Macro++",
  41699. height: math.unit(8000, "feet")
  41700. },
  41701. {
  41702. name: "City-Crushing",
  41703. height: math.unit(24000, "feet")
  41704. },
  41705. {
  41706. name: "Mountain-Mashing",
  41707. height: math.unit(80000, "feet")
  41708. },
  41709. {
  41710. name: "District Demolisher",
  41711. height: math.unit(240000, "feet")
  41712. },
  41713. {
  41714. name: "Tri-County Terror",
  41715. height: math.unit(800000, "feet")
  41716. },
  41717. {
  41718. name: "State Smasher",
  41719. height: math.unit(2.4e6, "feet")
  41720. },
  41721. {
  41722. name: "Nation Nemesis",
  41723. height: math.unit(8e6, "feet")
  41724. },
  41725. {
  41726. name: "Continent Cracker",
  41727. height: math.unit(2.4e7, "feet")
  41728. },
  41729. {
  41730. name: "Planet-Pillaging",
  41731. height: math.unit(8e7, "feet")
  41732. },
  41733. {
  41734. name: "Earth-Eclipsing",
  41735. height: math.unit(2.4e8, "feet")
  41736. },
  41737. {
  41738. name: "Jovian-Jostling",
  41739. height: math.unit(8e8, "feet")
  41740. },
  41741. {
  41742. name: "Gas Giant Gulper",
  41743. height: math.unit(2.4e9, "feet")
  41744. },
  41745. {
  41746. name: "Astral Annihilator",
  41747. height: math.unit(8e9, "feet")
  41748. },
  41749. {
  41750. name: "Celestial Conqueror",
  41751. height: math.unit(2.4e10, "feet")
  41752. },
  41753. {
  41754. name: "Sol-Swallowing",
  41755. height: math.unit(8e10, "feet")
  41756. },
  41757. {
  41758. name: "Hunter of the Heavens",
  41759. height: math.unit(2.4e13, "feet")
  41760. },
  41761. ]
  41762. ))
  41763. characterMakers.push(() => makeCharacter(
  41764. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41765. {
  41766. front: {
  41767. height: math.unit(10, "feet"),
  41768. weight: math.unit(844, "kilograms"),
  41769. name: "Front",
  41770. image: {
  41771. source: "./media/characters/rebecca-pawlson/front.svg",
  41772. extra: 1196/1099,
  41773. bottom: 81/1277
  41774. },
  41775. extraAttributes: {
  41776. "pawSize": {
  41777. name: "Paw Size",
  41778. power: 2,
  41779. type: "area",
  41780. base: math.unit(0.2 * 0.375, "meters^2")
  41781. },
  41782. "handSize": {
  41783. name: "Hand Size",
  41784. power: 2,
  41785. type: "area",
  41786. base: math.unit(0.2 * 0.35, "meters^2")
  41787. },
  41788. "breastDiameter": {
  41789. name: "Breast Diameter",
  41790. power: 1,
  41791. type: "length",
  41792. base: math.unit(0.5, "meters")
  41793. },
  41794. "breastVolume": {
  41795. name: "Breast Volume",
  41796. power: 3,
  41797. type: "volume",
  41798. base: math.unit(0.065, "m^3")
  41799. },
  41800. "breastMass": {
  41801. name: "Breast Mass",
  41802. power: 3,
  41803. type: "mass",
  41804. base: math.unit(65, "kg")
  41805. },
  41806. "nippleDiameter": {
  41807. name: "Nipple Diameter",
  41808. power: 1,
  41809. type: "length",
  41810. base: math.unit(0.1, "meters")
  41811. },
  41812. }
  41813. },
  41814. back: {
  41815. height: math.unit(10, "feet"),
  41816. weight: math.unit(844, "kilograms"),
  41817. name: "Back",
  41818. image: {
  41819. source: "./media/characters/rebecca-pawlson/back.svg",
  41820. extra: 879/776,
  41821. bottom: 43/922
  41822. },
  41823. extraAttributes: {
  41824. "pawSize": {
  41825. name: "Paw Size",
  41826. power: 2,
  41827. type: "area",
  41828. base: math.unit(0.2 * 0.375, "meters^2")
  41829. },
  41830. "handSize": {
  41831. name: "Hand Size",
  41832. power: 2,
  41833. type: "area",
  41834. base: math.unit(0.2 * 0.35, "meters^2")
  41835. },
  41836. "breastDiameter": {
  41837. name: "Breast Diameter",
  41838. power: 1,
  41839. type: "length",
  41840. base: math.unit(0.5, "meters")
  41841. },
  41842. "breastVolume": {
  41843. name: "Breast Volume",
  41844. power: 3,
  41845. type: "volume",
  41846. base: math.unit(0.065, "m^3")
  41847. },
  41848. "breastMass": {
  41849. name: "Breast Mass",
  41850. power: 3,
  41851. type: "mass",
  41852. base: math.unit(65, "kg")
  41853. },
  41854. "nippleDiameter": {
  41855. name: "Nipple Diameter",
  41856. power: 1,
  41857. type: "length",
  41858. base: math.unit(0.1, "meters")
  41859. },
  41860. }
  41861. },
  41862. },
  41863. [
  41864. {
  41865. name: "Normal",
  41866. height: math.unit(6 + 8/12, "feet")
  41867. },
  41868. {
  41869. name: "Mini Macro",
  41870. height: math.unit(10, "feet"),
  41871. default: true
  41872. },
  41873. {
  41874. name: "Macro",
  41875. height: math.unit(100, "feet")
  41876. },
  41877. {
  41878. name: "Mega Macro",
  41879. height: math.unit(2500, "feet")
  41880. },
  41881. {
  41882. name: "Giga Macro",
  41883. height: math.unit(50, "miles")
  41884. },
  41885. ]
  41886. ))
  41887. characterMakers.push(() => makeCharacter(
  41888. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41889. {
  41890. front: {
  41891. height: math.unit(7 + 6/12, "feet"),
  41892. weight: math.unit(600, "lb"),
  41893. name: "Front",
  41894. image: {
  41895. source: "./media/characters/moxie-nova/front.svg",
  41896. extra: 1734/1652,
  41897. bottom: 41/1775
  41898. }
  41899. },
  41900. },
  41901. [
  41902. {
  41903. name: "Normal",
  41904. height: math.unit(7 + 6/12, "feet"),
  41905. default: true
  41906. },
  41907. ]
  41908. ))
  41909. characterMakers.push(() => makeCharacter(
  41910. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41911. {
  41912. goat: {
  41913. height: math.unit(4, "feet"),
  41914. weight: math.unit(180, "lb"),
  41915. name: "Goat",
  41916. image: {
  41917. source: "./media/characters/tiffany/goat.svg",
  41918. extra: 1845/1595,
  41919. bottom: 106/1951
  41920. }
  41921. },
  41922. front: {
  41923. height: math.unit(5, "feet"),
  41924. weight: math.unit(150, "lb"),
  41925. name: "Foxcoon",
  41926. image: {
  41927. source: "./media/characters/tiffany/foxcoon.svg",
  41928. extra: 1941/1845,
  41929. bottom: 58/1999
  41930. }
  41931. },
  41932. },
  41933. [
  41934. {
  41935. name: "Normal",
  41936. height: math.unit(5, "feet"),
  41937. default: true
  41938. },
  41939. ]
  41940. ))
  41941. characterMakers.push(() => makeCharacter(
  41942. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41943. {
  41944. front: {
  41945. height: math.unit(8, "feet"),
  41946. weight: math.unit(300, "lb"),
  41947. name: "Front",
  41948. image: {
  41949. source: "./media/characters/raxinath/front.svg",
  41950. extra: 1407/1309,
  41951. bottom: 39/1446
  41952. }
  41953. },
  41954. back: {
  41955. height: math.unit(8, "feet"),
  41956. weight: math.unit(300, "lb"),
  41957. name: "Back",
  41958. image: {
  41959. source: "./media/characters/raxinath/back.svg",
  41960. extra: 1405/1315,
  41961. bottom: 9/1414
  41962. }
  41963. },
  41964. },
  41965. [
  41966. {
  41967. name: "Speck",
  41968. height: math.unit(0.5, "nm")
  41969. },
  41970. {
  41971. name: "Micro",
  41972. height: math.unit(3, "inches")
  41973. },
  41974. {
  41975. name: "Kobold",
  41976. height: math.unit(3, "feet")
  41977. },
  41978. {
  41979. name: "Normal",
  41980. height: math.unit(8, "feet"),
  41981. default: true
  41982. },
  41983. {
  41984. name: "Giant",
  41985. height: math.unit(50, "feet")
  41986. },
  41987. {
  41988. name: "Macro",
  41989. height: math.unit(1000, "feet")
  41990. },
  41991. {
  41992. name: "Megamacro",
  41993. height: math.unit(1, "mile")
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41999. {
  42000. front: {
  42001. height: math.unit(10, "feet"),
  42002. weight: math.unit(1442, "lb"),
  42003. name: "Front",
  42004. image: {
  42005. source: "./media/characters/mal-dragon/front.svg",
  42006. extra: 1515/1444,
  42007. bottom: 113/1628
  42008. }
  42009. },
  42010. back: {
  42011. height: math.unit(10, "feet"),
  42012. weight: math.unit(1442, "lb"),
  42013. name: "Back",
  42014. image: {
  42015. source: "./media/characters/mal-dragon/back.svg",
  42016. extra: 1527/1434,
  42017. bottom: 25/1552
  42018. }
  42019. },
  42020. },
  42021. [
  42022. {
  42023. name: "Mortal Interaction",
  42024. height: math.unit(10, "feet"),
  42025. default: true
  42026. },
  42027. {
  42028. name: "Large",
  42029. height: math.unit(30, "feet")
  42030. },
  42031. {
  42032. name: "Kaiju",
  42033. height: math.unit(300, "feet")
  42034. },
  42035. {
  42036. name: "Megamacro",
  42037. height: math.unit(10000, "feet")
  42038. },
  42039. {
  42040. name: "Continent Cracker",
  42041. height: math.unit(30000000, "feet")
  42042. },
  42043. {
  42044. name: "Sol-Swallowing",
  42045. height: math.unit(1e11, "feet")
  42046. },
  42047. {
  42048. name: "Light Universal",
  42049. height: math.unit(5, "universes")
  42050. },
  42051. {
  42052. name: "Universe Atoms",
  42053. height: math.unit(1.829e9, "universes")
  42054. },
  42055. {
  42056. name: "Light Multiversal",
  42057. height: math.unit(5, "multiverses")
  42058. },
  42059. {
  42060. name: "Multiverse Atoms",
  42061. height: math.unit(1.829e9, "multiverses")
  42062. },
  42063. {
  42064. name: "Fabric of Time",
  42065. height: math.unit(1e262, "multiverses")
  42066. },
  42067. ]
  42068. ))
  42069. characterMakers.push(() => makeCharacter(
  42070. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42071. {
  42072. front: {
  42073. height: math.unit(9, "feet"),
  42074. weight: math.unit(1050, "lb"),
  42075. name: "Front",
  42076. image: {
  42077. source: "./media/characters/tabitha/front.svg",
  42078. extra: 2083/1994,
  42079. bottom: 68/2151
  42080. }
  42081. },
  42082. },
  42083. [
  42084. {
  42085. name: "Baseline",
  42086. height: math.unit(9, "feet"),
  42087. default: true
  42088. },
  42089. {
  42090. name: "Giant",
  42091. height: math.unit(90, "feet")
  42092. },
  42093. {
  42094. name: "Macro",
  42095. height: math.unit(900, "feet")
  42096. },
  42097. {
  42098. name: "Megamacro",
  42099. height: math.unit(9000, "feet")
  42100. },
  42101. {
  42102. name: "City-Crushing",
  42103. height: math.unit(27000, "feet")
  42104. },
  42105. {
  42106. name: "Mountain-Mashing",
  42107. height: math.unit(90000, "feet")
  42108. },
  42109. {
  42110. name: "Nation Nemesis",
  42111. height: math.unit(9e6, "feet")
  42112. },
  42113. {
  42114. name: "Continent Cracker",
  42115. height: math.unit(27e6, "feet")
  42116. },
  42117. {
  42118. name: "Earth-Eclipsing",
  42119. height: math.unit(2.7e8, "feet")
  42120. },
  42121. {
  42122. name: "Gas Giant Gulper",
  42123. height: math.unit(2.7e9, "feet")
  42124. },
  42125. {
  42126. name: "Sol-Swallowing",
  42127. height: math.unit(9e10, "feet")
  42128. },
  42129. {
  42130. name: "Galaxy Gulper",
  42131. height: math.unit(9, "galaxies")
  42132. },
  42133. {
  42134. name: "Cosmos Churner",
  42135. height: math.unit(9, "universes")
  42136. },
  42137. ]
  42138. ))
  42139. characterMakers.push(() => makeCharacter(
  42140. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42141. {
  42142. front: {
  42143. height: math.unit(160, "cm"),
  42144. weight: math.unit(55, "kg"),
  42145. name: "Front",
  42146. image: {
  42147. source: "./media/characters/tow/front.svg",
  42148. extra: 1751/1722,
  42149. bottom: 74/1825
  42150. }
  42151. },
  42152. },
  42153. [
  42154. {
  42155. name: "Norm",
  42156. height: math.unit(160, "cm")
  42157. },
  42158. {
  42159. name: "Casual",
  42160. height: math.unit(3200, "m"),
  42161. default: true
  42162. },
  42163. {
  42164. name: "Show-Off",
  42165. height: math.unit(160, "km")
  42166. },
  42167. ]
  42168. ))
  42169. characterMakers.push(() => makeCharacter(
  42170. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42171. {
  42172. front: {
  42173. height: math.unit(7 + 11/12, "feet"),
  42174. weight: math.unit(342.8, "lb"),
  42175. name: "Front",
  42176. image: {
  42177. source: "./media/characters/vivian-orca-dragon/front.svg",
  42178. extra: 1890/1865,
  42179. bottom: 28/1918
  42180. }
  42181. },
  42182. },
  42183. [
  42184. {
  42185. name: "Micro",
  42186. height: math.unit(5, "inches")
  42187. },
  42188. {
  42189. name: "Normal",
  42190. height: math.unit(7 + 11/12, "feet"),
  42191. default: true
  42192. },
  42193. {
  42194. name: "Macro",
  42195. height: math.unit(395 + 7/12, "feet")
  42196. },
  42197. ]
  42198. ))
  42199. characterMakers.push(() => makeCharacter(
  42200. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42201. {
  42202. side: {
  42203. height: math.unit(10, "feet"),
  42204. weight: math.unit(1442, "lb"),
  42205. name: "Side",
  42206. image: {
  42207. source: "./media/characters/lotherakon/side.svg",
  42208. extra: 1604/1497,
  42209. bottom: 89/1693
  42210. }
  42211. },
  42212. },
  42213. [
  42214. {
  42215. name: "Mortal Interaction",
  42216. height: math.unit(10, "feet")
  42217. },
  42218. {
  42219. name: "Large",
  42220. height: math.unit(30, "feet"),
  42221. default: true
  42222. },
  42223. {
  42224. name: "Giant",
  42225. height: math.unit(100, "feet")
  42226. },
  42227. {
  42228. name: "Kaiju",
  42229. height: math.unit(300, "feet")
  42230. },
  42231. {
  42232. name: "Macro",
  42233. height: math.unit(1000, "feet")
  42234. },
  42235. {
  42236. name: "Macro+",
  42237. height: math.unit(3000, "feet")
  42238. },
  42239. {
  42240. name: "Megamacro",
  42241. height: math.unit(10000, "feet")
  42242. },
  42243. {
  42244. name: "City-Crushing",
  42245. height: math.unit(30000, "feet")
  42246. },
  42247. {
  42248. name: "Continent Cracker",
  42249. height: math.unit(30e6, "feet")
  42250. },
  42251. {
  42252. name: "Earth Eclipsing",
  42253. height: math.unit(3e8, "feet")
  42254. },
  42255. {
  42256. name: "Gas Giant Gulper",
  42257. height: math.unit(3e9, "feet")
  42258. },
  42259. {
  42260. name: "Sol-Swallowing",
  42261. height: math.unit(1e11, "feet")
  42262. },
  42263. {
  42264. name: "System Swallower",
  42265. height: math.unit(3e14, "feet")
  42266. },
  42267. {
  42268. name: "Galaxy Gulper",
  42269. height: math.unit(10, "galaxies")
  42270. },
  42271. {
  42272. name: "Light Universal",
  42273. height: math.unit(5, "universes")
  42274. },
  42275. {
  42276. name: "Universe Palm",
  42277. height: math.unit(20, "universes")
  42278. },
  42279. {
  42280. name: "Light Multiversal",
  42281. height: math.unit(5, "multiverses")
  42282. },
  42283. {
  42284. name: "Multiverse Palm",
  42285. height: math.unit(20, "multiverses")
  42286. },
  42287. {
  42288. name: "Inferno Incarnate",
  42289. height: math.unit(1e7, "multiverses")
  42290. },
  42291. ]
  42292. ))
  42293. characterMakers.push(() => makeCharacter(
  42294. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42295. {
  42296. front: {
  42297. height: math.unit(8, "feet"),
  42298. weight: math.unit(1200, "lb"),
  42299. name: "Front",
  42300. image: {
  42301. source: "./media/characters/malithee/front.svg",
  42302. extra: 1675/1640,
  42303. bottom: 162/1837
  42304. }
  42305. },
  42306. },
  42307. [
  42308. {
  42309. name: "Mortal Interaction",
  42310. height: math.unit(8, "feet"),
  42311. default: true
  42312. },
  42313. {
  42314. name: "Large",
  42315. height: math.unit(24, "feet")
  42316. },
  42317. {
  42318. name: "Kaiju",
  42319. height: math.unit(240, "feet")
  42320. },
  42321. {
  42322. name: "Megamacro",
  42323. height: math.unit(8000, "feet")
  42324. },
  42325. {
  42326. name: "Continent Cracker",
  42327. height: math.unit(24e6, "feet")
  42328. },
  42329. {
  42330. name: "Earth-Eclipsing",
  42331. height: math.unit(2.4e8, "feet")
  42332. },
  42333. {
  42334. name: "Sol-Swallowing",
  42335. height: math.unit(8e10, "feet")
  42336. },
  42337. {
  42338. name: "Galaxy Gulper",
  42339. height: math.unit(8, "galaxies")
  42340. },
  42341. {
  42342. name: "Light Universal",
  42343. height: math.unit(4, "universes")
  42344. },
  42345. {
  42346. name: "Universe Atoms",
  42347. height: math.unit(1.829e9, "universes")
  42348. },
  42349. {
  42350. name: "Light Multiversal",
  42351. height: math.unit(4, "multiverses")
  42352. },
  42353. {
  42354. name: "Multiverse Atoms",
  42355. height: math.unit(1.829e9, "multiverses")
  42356. },
  42357. {
  42358. name: "Nigh-Omnipresence",
  42359. height: math.unit(8e261, "multiverses")
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42365. {
  42366. front: {
  42367. height: math.unit(10, "feet"),
  42368. weight: math.unit(1500, "lb"),
  42369. name: "Front",
  42370. image: {
  42371. source: "./media/characters/miles-thestia/front.svg",
  42372. extra: 1812/1727,
  42373. bottom: 86/1898
  42374. }
  42375. },
  42376. back: {
  42377. height: math.unit(10, "feet"),
  42378. weight: math.unit(1500, "lb"),
  42379. name: "Back",
  42380. image: {
  42381. source: "./media/characters/miles-thestia/back.svg",
  42382. extra: 1799/1690,
  42383. bottom: 47/1846
  42384. }
  42385. },
  42386. frontNsfw: {
  42387. height: math.unit(10, "feet"),
  42388. weight: math.unit(1500, "lb"),
  42389. name: "Front (NSFW)",
  42390. image: {
  42391. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42392. extra: 1812/1727,
  42393. bottom: 86/1898
  42394. }
  42395. },
  42396. },
  42397. [
  42398. {
  42399. name: "Mini-Macro",
  42400. height: math.unit(10, "feet"),
  42401. default: true
  42402. },
  42403. ]
  42404. ))
  42405. characterMakers.push(() => makeCharacter(
  42406. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42407. {
  42408. front: {
  42409. height: math.unit(25, "feet"),
  42410. name: "Front",
  42411. image: {
  42412. source: "./media/characters/titan-s-wulf/front.svg",
  42413. extra: 1560/1484,
  42414. bottom: 76/1636
  42415. }
  42416. },
  42417. },
  42418. [
  42419. {
  42420. name: "Smallest",
  42421. height: math.unit(25, "feet"),
  42422. default: true
  42423. },
  42424. {
  42425. name: "Normal",
  42426. height: math.unit(200, "feet")
  42427. },
  42428. {
  42429. name: "Macro",
  42430. height: math.unit(200000, "feet")
  42431. },
  42432. {
  42433. name: "Multiversal Original",
  42434. height: math.unit(10000, "multiverses")
  42435. },
  42436. ]
  42437. ))
  42438. characterMakers.push(() => makeCharacter(
  42439. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42440. {
  42441. front: {
  42442. height: math.unit(8, "feet"),
  42443. weight: math.unit(553, "lb"),
  42444. name: "Front",
  42445. image: {
  42446. source: "./media/characters/tawendeh/front.svg",
  42447. extra: 2365/2268,
  42448. bottom: 83/2448
  42449. }
  42450. },
  42451. frontClothed: {
  42452. height: math.unit(8, "feet"),
  42453. weight: math.unit(553, "lb"),
  42454. name: "Front (Clothed)",
  42455. image: {
  42456. source: "./media/characters/tawendeh/front-clothed.svg",
  42457. extra: 2365/2268,
  42458. bottom: 83/2448
  42459. }
  42460. },
  42461. back: {
  42462. height: math.unit(8, "feet"),
  42463. weight: math.unit(553, "lb"),
  42464. name: "Back",
  42465. image: {
  42466. source: "./media/characters/tawendeh/back.svg",
  42467. extra: 2397/2294,
  42468. bottom: 42/2439
  42469. }
  42470. },
  42471. },
  42472. [
  42473. {
  42474. name: "Mortal Interaction",
  42475. height: math.unit(8, "feet"),
  42476. default: true
  42477. },
  42478. {
  42479. name: "Giant",
  42480. height: math.unit(80, "feet")
  42481. },
  42482. {
  42483. name: "Macro",
  42484. height: math.unit(800, "feet")
  42485. },
  42486. {
  42487. name: "Megamacro",
  42488. height: math.unit(8000, "feet")
  42489. },
  42490. {
  42491. name: "City-Crushing",
  42492. height: math.unit(24000, "feet")
  42493. },
  42494. {
  42495. name: "Mountain-Mashing",
  42496. height: math.unit(80000, "feet")
  42497. },
  42498. {
  42499. name: "Nation Nemesis",
  42500. height: math.unit(8e6, "feet")
  42501. },
  42502. {
  42503. name: "Continent Cracker",
  42504. height: math.unit(24e6, "feet")
  42505. },
  42506. {
  42507. name: "Earth-Eclipsing",
  42508. height: math.unit(2.4e8, "feet")
  42509. },
  42510. {
  42511. name: "Gas Giant Gulper",
  42512. height: math.unit(2.4e9, "feet")
  42513. },
  42514. {
  42515. name: "Sol-Swallowing",
  42516. height: math.unit(8e10, "feet")
  42517. },
  42518. {
  42519. name: "Galaxy Gulper",
  42520. height: math.unit(8, "galaxies")
  42521. },
  42522. {
  42523. name: "Cosmos Churner",
  42524. height: math.unit(8, "universes")
  42525. },
  42526. {
  42527. name: "Omnipotent Otter",
  42528. height: math.unit(80, "universes")
  42529. },
  42530. ]
  42531. ))
  42532. characterMakers.push(() => makeCharacter(
  42533. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42534. {
  42535. front: {
  42536. height: math.unit(2.6, "meters"),
  42537. weight: math.unit(900, "kg"),
  42538. name: "Front",
  42539. image: {
  42540. source: "./media/characters/neesha/front.svg",
  42541. extra: 1803/1653,
  42542. bottom: 128/1931
  42543. }
  42544. },
  42545. },
  42546. [
  42547. {
  42548. name: "Normal",
  42549. height: math.unit(2.6, "meters"),
  42550. default: true
  42551. },
  42552. {
  42553. name: "Macro",
  42554. height: math.unit(50, "meters")
  42555. },
  42556. ]
  42557. ))
  42558. characterMakers.push(() => makeCharacter(
  42559. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42560. {
  42561. front: {
  42562. height: math.unit(5, "feet"),
  42563. weight: math.unit(185, "lb"),
  42564. name: "Front",
  42565. image: {
  42566. source: "./media/characters/kyera/front.svg",
  42567. extra: 1875/1790,
  42568. bottom: 96/1971
  42569. }
  42570. },
  42571. },
  42572. [
  42573. {
  42574. name: "Normal",
  42575. height: math.unit(5, "feet"),
  42576. default: true
  42577. },
  42578. ]
  42579. ))
  42580. characterMakers.push(() => makeCharacter(
  42581. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42582. {
  42583. front: {
  42584. height: math.unit(7 + 6/12, "feet"),
  42585. weight: math.unit(540, "lb"),
  42586. name: "Front",
  42587. image: {
  42588. source: "./media/characters/yuko/front.svg",
  42589. extra: 1282/1222,
  42590. bottom: 101/1383
  42591. }
  42592. },
  42593. frontClothed: {
  42594. height: math.unit(7 + 6/12, "feet"),
  42595. weight: math.unit(540, "lb"),
  42596. name: "Front (Clothed)",
  42597. image: {
  42598. source: "./media/characters/yuko/front-clothed.svg",
  42599. extra: 1282/1222,
  42600. bottom: 101/1383
  42601. }
  42602. },
  42603. },
  42604. [
  42605. {
  42606. name: "Normal",
  42607. height: math.unit(7 + 6/12, "feet"),
  42608. default: true
  42609. },
  42610. {
  42611. name: "Macro",
  42612. height: math.unit(26 + 9/12, "feet")
  42613. },
  42614. {
  42615. name: "Megamacro",
  42616. height: math.unit(300, "feet")
  42617. },
  42618. {
  42619. name: "Gigamacro",
  42620. height: math.unit(5000, "feet")
  42621. },
  42622. {
  42623. name: "Planetary",
  42624. height: math.unit(10000, "miles")
  42625. },
  42626. ]
  42627. ))
  42628. characterMakers.push(() => makeCharacter(
  42629. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42630. {
  42631. front: {
  42632. height: math.unit(8 + 2/12, "feet"),
  42633. weight: math.unit(600, "lb"),
  42634. name: "Front",
  42635. image: {
  42636. source: "./media/characters/deam-nitrel/front.svg",
  42637. extra: 1308/1234,
  42638. bottom: 125/1433
  42639. }
  42640. },
  42641. },
  42642. [
  42643. {
  42644. name: "Normal",
  42645. height: math.unit(8 + 2/12, "feet"),
  42646. default: true
  42647. },
  42648. ]
  42649. ))
  42650. characterMakers.push(() => makeCharacter(
  42651. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42652. {
  42653. front: {
  42654. height: math.unit(6.1, "feet"),
  42655. weight: math.unit(180, "lb"),
  42656. name: "Front",
  42657. image: {
  42658. source: "./media/characters/skyress/front.svg",
  42659. extra: 1045/915,
  42660. bottom: 28/1073
  42661. }
  42662. },
  42663. maw: {
  42664. height: math.unit(1, "feet"),
  42665. name: "Maw",
  42666. image: {
  42667. source: "./media/characters/skyress/maw.svg"
  42668. }
  42669. },
  42670. },
  42671. [
  42672. {
  42673. name: "Normal",
  42674. height: math.unit(6.1, "feet"),
  42675. default: true
  42676. },
  42677. {
  42678. name: "Macro",
  42679. height: math.unit(200, "feet")
  42680. },
  42681. ]
  42682. ))
  42683. characterMakers.push(() => makeCharacter(
  42684. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42685. {
  42686. front: {
  42687. height: math.unit(4 + 2/12, "feet"),
  42688. weight: math.unit(40, "kg"),
  42689. name: "Front",
  42690. image: {
  42691. source: "./media/characters/amethyst-jones/front.svg",
  42692. extra: 1220/1150,
  42693. bottom: 101/1321
  42694. }
  42695. },
  42696. },
  42697. [
  42698. {
  42699. name: "Normal",
  42700. height: math.unit(4 + 2/12, "feet"),
  42701. default: true
  42702. },
  42703. ]
  42704. ))
  42705. characterMakers.push(() => makeCharacter(
  42706. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42707. {
  42708. front: {
  42709. height: math.unit(1.7, "m"),
  42710. weight: math.unit(135, "lb"),
  42711. name: "Front",
  42712. image: {
  42713. source: "./media/characters/jade/front.svg",
  42714. extra: 1818/1767,
  42715. bottom: 32/1850
  42716. }
  42717. },
  42718. back: {
  42719. height: math.unit(1.7, "m"),
  42720. weight: math.unit(135, "lb"),
  42721. name: "Back",
  42722. image: {
  42723. source: "./media/characters/jade/back.svg",
  42724. extra: 1869/1809,
  42725. bottom: 35/1904
  42726. }
  42727. },
  42728. hand: {
  42729. height: math.unit(0.24, "m"),
  42730. name: "Hand",
  42731. image: {
  42732. source: "./media/characters/jade/hand.svg"
  42733. }
  42734. },
  42735. foot: {
  42736. height: math.unit(0.263, "m"),
  42737. name: "Foot",
  42738. image: {
  42739. source: "./media/characters/jade/foot.svg"
  42740. }
  42741. },
  42742. dick: {
  42743. height: math.unit(0.47, "m"),
  42744. name: "Dick",
  42745. image: {
  42746. source: "./media/characters/jade/dick.svg"
  42747. }
  42748. },
  42749. },
  42750. [
  42751. {
  42752. name: "Micro",
  42753. height: math.unit(22, "cm")
  42754. },
  42755. {
  42756. name: "Normal",
  42757. height: math.unit(1.7, "m"),
  42758. default: true
  42759. },
  42760. {
  42761. name: "Macro",
  42762. height: math.unit(152, "m")
  42763. },
  42764. ]
  42765. ))
  42766. characterMakers.push(() => makeCharacter(
  42767. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42768. {
  42769. front: {
  42770. height: math.unit(100, "miles"),
  42771. weight: math.unit(20000, "tons"),
  42772. name: "Front",
  42773. image: {
  42774. source: "./media/characters/cookie/front.svg",
  42775. extra: 1125/1070,
  42776. bottom: 30/1155
  42777. }
  42778. },
  42779. },
  42780. [
  42781. {
  42782. name: "Big",
  42783. height: math.unit(50, "feet")
  42784. },
  42785. {
  42786. name: "Macro",
  42787. height: math.unit(100, "miles"),
  42788. default: true
  42789. },
  42790. {
  42791. name: "Megamacro",
  42792. height: math.unit(90000, "miles")
  42793. },
  42794. ]
  42795. ))
  42796. characterMakers.push(() => makeCharacter(
  42797. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42798. {
  42799. front: {
  42800. height: math.unit(6, "feet"),
  42801. weight: math.unit(145, "lb"),
  42802. name: "Front",
  42803. image: {
  42804. source: "./media/characters/farzian/front.svg",
  42805. extra: 1902/1693,
  42806. bottom: 108/2010
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Macro",
  42813. height: math.unit(500, "feet"),
  42814. default: true
  42815. },
  42816. ]
  42817. ))
  42818. characterMakers.push(() => makeCharacter(
  42819. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42820. {
  42821. front: {
  42822. height: math.unit(3 + 6/12, "feet"),
  42823. weight: math.unit(50, "lb"),
  42824. name: "Front",
  42825. image: {
  42826. source: "./media/characters/kimberly-tilson/front.svg",
  42827. extra: 1400/1322,
  42828. bottom: 36/1436
  42829. }
  42830. },
  42831. back: {
  42832. height: math.unit(3 + 6/12, "feet"),
  42833. weight: math.unit(50, "lb"),
  42834. name: "Back",
  42835. image: {
  42836. source: "./media/characters/kimberly-tilson/back.svg",
  42837. extra: 1370/1307,
  42838. bottom: 20/1390
  42839. }
  42840. },
  42841. },
  42842. [
  42843. {
  42844. name: "Normal",
  42845. height: math.unit(3 + 6/12, "feet"),
  42846. default: true
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42852. {
  42853. front: {
  42854. height: math.unit(350, "meters"),
  42855. weight: math.unit(7.57059e+8, "lb"),
  42856. name: "Front",
  42857. image: {
  42858. source: "./media/characters/harthos/front.svg",
  42859. extra: 455/446,
  42860. bottom: 15/470
  42861. },
  42862. form: "peacekeeper",
  42863. default: true
  42864. },
  42865. allusus_front: {
  42866. height: math.unit(270, "meters"),
  42867. weight: math.unit(3.47550e+8, "lb"),
  42868. name: "Front",
  42869. image: {
  42870. source: "./media/characters/harthos/allusus-front.svg",
  42871. extra: 455/446,
  42872. bottom: 15/470
  42873. },
  42874. form: "allusus",
  42875. },
  42876. },
  42877. [
  42878. {
  42879. name: "Macro",
  42880. height: math.unit(350, "meters"),
  42881. default: true,
  42882. form: "peacekeeper"
  42883. },
  42884. {
  42885. name: "Macro",
  42886. height: math.unit(270, "meters"),
  42887. default: true,
  42888. form: "allusus"
  42889. },
  42890. ],
  42891. {
  42892. "peacekeeper": {
  42893. name: "Peacekeeper",
  42894. default: true
  42895. },
  42896. "allusus": {
  42897. name: "Allusus",
  42898. },
  42899. }
  42900. ))
  42901. characterMakers.push(() => makeCharacter(
  42902. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42903. {
  42904. front: {
  42905. height: math.unit(15, "feet"),
  42906. name: "Front",
  42907. image: {
  42908. source: "./media/characters/hypatia/front.svg",
  42909. extra: 1653/1591,
  42910. bottom: 79/1732
  42911. }
  42912. },
  42913. },
  42914. [
  42915. {
  42916. name: "Normal",
  42917. height: math.unit(15, "feet")
  42918. },
  42919. {
  42920. name: "Small",
  42921. height: math.unit(300, "feet")
  42922. },
  42923. {
  42924. name: "Macro",
  42925. height: math.unit(2500, "feet"),
  42926. default: true
  42927. },
  42928. {
  42929. name: "Mega Macro",
  42930. height: math.unit(1500, "miles")
  42931. },
  42932. {
  42933. name: "Giga Macro",
  42934. height: math.unit(1.5e6, "miles")
  42935. },
  42936. ]
  42937. ))
  42938. characterMakers.push(() => makeCharacter(
  42939. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42940. {
  42941. front: {
  42942. height: math.unit(6, "feet"),
  42943. weight: math.unit(200, "lb"),
  42944. name: "Front",
  42945. image: {
  42946. source: "./media/characters/wulver/front.svg",
  42947. extra: 1724/1632,
  42948. bottom: 130/1854
  42949. }
  42950. },
  42951. frontNsfw: {
  42952. height: math.unit(6, "feet"),
  42953. weight: math.unit(200, "lb"),
  42954. name: "Front (NSFW)",
  42955. image: {
  42956. source: "./media/characters/wulver/front-nsfw.svg",
  42957. extra: 1724/1632,
  42958. bottom: 130/1854
  42959. }
  42960. },
  42961. },
  42962. [
  42963. {
  42964. name: "Human-Sized",
  42965. height: math.unit(6, "feet")
  42966. },
  42967. {
  42968. name: "Normal",
  42969. height: math.unit(4, "meters"),
  42970. default: true
  42971. },
  42972. {
  42973. name: "Large",
  42974. height: math.unit(6, "m")
  42975. },
  42976. ]
  42977. ))
  42978. characterMakers.push(() => makeCharacter(
  42979. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42980. {
  42981. front: {
  42982. height: math.unit(7, "feet"),
  42983. name: "Front",
  42984. image: {
  42985. source: "./media/characters/maru/front.svg",
  42986. extra: 1595/1570,
  42987. bottom: 0/1595
  42988. }
  42989. },
  42990. },
  42991. [
  42992. {
  42993. name: "Normal",
  42994. height: math.unit(7, "feet"),
  42995. default: true
  42996. },
  42997. {
  42998. name: "Macro",
  42999. height: math.unit(700, "feet")
  43000. },
  43001. {
  43002. name: "Mega Macro",
  43003. height: math.unit(25, "miles")
  43004. },
  43005. ]
  43006. ))
  43007. characterMakers.push(() => makeCharacter(
  43008. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43009. {
  43010. front: {
  43011. height: math.unit(6, "feet"),
  43012. weight: math.unit(170, "lb"),
  43013. name: "Front",
  43014. image: {
  43015. source: "./media/characters/xenon/front.svg",
  43016. extra: 1376/1305,
  43017. bottom: 56/1432
  43018. }
  43019. },
  43020. back: {
  43021. height: math.unit(6, "feet"),
  43022. weight: math.unit(170, "lb"),
  43023. name: "Back",
  43024. image: {
  43025. source: "./media/characters/xenon/back.svg",
  43026. extra: 1328/1259,
  43027. bottom: 95/1423
  43028. }
  43029. },
  43030. maw: {
  43031. height: math.unit(0.52, "feet"),
  43032. name: "Maw",
  43033. image: {
  43034. source: "./media/characters/xenon/maw.svg"
  43035. }
  43036. },
  43037. handLeft: {
  43038. height: math.unit(0.82 * 169 / 153, "feet"),
  43039. name: "Hand (Left)",
  43040. image: {
  43041. source: "./media/characters/xenon/hand-left.svg"
  43042. }
  43043. },
  43044. handRight: {
  43045. height: math.unit(0.82, "feet"),
  43046. name: "Hand (Right)",
  43047. image: {
  43048. source: "./media/characters/xenon/hand-right.svg"
  43049. }
  43050. },
  43051. footLeft: {
  43052. height: math.unit(1.13, "feet"),
  43053. name: "Foot (Left)",
  43054. image: {
  43055. source: "./media/characters/xenon/foot-left.svg"
  43056. }
  43057. },
  43058. footRight: {
  43059. height: math.unit(1.13 * 194 / 196, "feet"),
  43060. name: "Foot (Right)",
  43061. image: {
  43062. source: "./media/characters/xenon/foot-right.svg"
  43063. }
  43064. },
  43065. },
  43066. [
  43067. {
  43068. name: "Micro",
  43069. height: math.unit(0.8, "inches")
  43070. },
  43071. {
  43072. name: "Normal",
  43073. height: math.unit(6, "feet")
  43074. },
  43075. {
  43076. name: "Macro",
  43077. height: math.unit(50, "feet"),
  43078. default: true
  43079. },
  43080. {
  43081. name: "Macro+",
  43082. height: math.unit(250, "feet")
  43083. },
  43084. {
  43085. name: "Megamacro",
  43086. height: math.unit(1500, "feet")
  43087. },
  43088. ]
  43089. ))
  43090. characterMakers.push(() => makeCharacter(
  43091. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43092. {
  43093. front: {
  43094. height: math.unit(7 + 5/12, "feet"),
  43095. name: "Front",
  43096. image: {
  43097. source: "./media/characters/zane/front.svg",
  43098. extra: 1260/1203,
  43099. bottom: 94/1354
  43100. }
  43101. },
  43102. back: {
  43103. height: math.unit(5.05, "feet"),
  43104. name: "Back",
  43105. image: {
  43106. source: "./media/characters/zane/back.svg",
  43107. extra: 893/829,
  43108. bottom: 30/923
  43109. }
  43110. },
  43111. werewolf: {
  43112. height: math.unit(11, "feet"),
  43113. name: "Werewolf",
  43114. image: {
  43115. source: "./media/characters/zane/werewolf.svg",
  43116. extra: 1383/1323,
  43117. bottom: 89/1472
  43118. }
  43119. },
  43120. foot: {
  43121. height: math.unit(1.46, "feet"),
  43122. name: "Foot",
  43123. image: {
  43124. source: "./media/characters/zane/foot.svg"
  43125. }
  43126. },
  43127. footFront: {
  43128. height: math.unit(0.784, "feet"),
  43129. name: "Foot (Front)",
  43130. image: {
  43131. source: "./media/characters/zane/foot-front.svg"
  43132. }
  43133. },
  43134. dick: {
  43135. height: math.unit(1.95, "feet"),
  43136. name: "Dick",
  43137. image: {
  43138. source: "./media/characters/zane/dick.svg"
  43139. }
  43140. },
  43141. dickWerewolf: {
  43142. height: math.unit(3.77, "feet"),
  43143. name: "Dick (Werewolf)",
  43144. image: {
  43145. source: "./media/characters/zane/dick.svg"
  43146. }
  43147. },
  43148. },
  43149. [
  43150. {
  43151. name: "Normal",
  43152. height: math.unit(7 + 5/12, "feet"),
  43153. default: true
  43154. },
  43155. ]
  43156. ))
  43157. characterMakers.push(() => makeCharacter(
  43158. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43159. {
  43160. front: {
  43161. height: math.unit(6 + 2/12, "feet"),
  43162. weight: math.unit(284, "lb"),
  43163. name: "Front",
  43164. image: {
  43165. source: "./media/characters/benni-desparque/front.svg",
  43166. extra: 878/729,
  43167. bottom: 58/936
  43168. }
  43169. },
  43170. back: {
  43171. height: math.unit(6 + 2/12, "feet"),
  43172. weight: math.unit(284, "lb"),
  43173. name: "Back",
  43174. image: {
  43175. source: "./media/characters/benni-desparque/back.svg",
  43176. extra: 901/756,
  43177. bottom: 51/952
  43178. }
  43179. },
  43180. dressed: {
  43181. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43182. weight: math.unit(284, "lb"),
  43183. name: "Dressed",
  43184. image: {
  43185. source: "./media/characters/benni-desparque/dressed.svg",
  43186. extra: 1514/1276,
  43187. bottom: 65/1579
  43188. }
  43189. },
  43190. hand: {
  43191. height: math.unit(1.28, "feet"),
  43192. name: "Hand",
  43193. image: {
  43194. source: "./media/characters/benni-desparque/hand.svg"
  43195. }
  43196. },
  43197. foot: {
  43198. height: math.unit(1.53, "feet"),
  43199. name: "Foot",
  43200. image: {
  43201. source: "./media/characters/benni-desparque/foot.svg"
  43202. }
  43203. },
  43204. aiControlUnit: {
  43205. height: math.unit(0.175, "feet"),
  43206. name: "AI Control Unit",
  43207. image: {
  43208. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43209. }
  43210. },
  43211. },
  43212. [
  43213. {
  43214. name: "Civilian",
  43215. height: math.unit(6 + 2/12, "feet")
  43216. },
  43217. {
  43218. name: "Normal",
  43219. height: math.unit(98, "feet"),
  43220. default: true
  43221. },
  43222. {
  43223. name: "Kaiju Fighter",
  43224. height: math.unit(268, "feet")
  43225. },
  43226. ]
  43227. ))
  43228. characterMakers.push(() => makeCharacter(
  43229. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43230. {
  43231. front: {
  43232. height: math.unit(5, "feet"),
  43233. weight: math.unit(105, "lb"),
  43234. name: "Front",
  43235. image: {
  43236. source: "./media/characters/maxine/front.svg",
  43237. extra: 1386/1250,
  43238. bottom: 71/1457
  43239. }
  43240. },
  43241. },
  43242. [
  43243. {
  43244. name: "Normal",
  43245. height: math.unit(5, "feet"),
  43246. default: true
  43247. },
  43248. ]
  43249. ))
  43250. characterMakers.push(() => makeCharacter(
  43251. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43252. {
  43253. front: {
  43254. height: math.unit(11 + 7/12, "feet"),
  43255. weight: math.unit(9576, "lb"),
  43256. name: "Front",
  43257. image: {
  43258. source: "./media/characters/scaly/front.svg",
  43259. extra: 888/867,
  43260. bottom: 36/924
  43261. }
  43262. },
  43263. },
  43264. [
  43265. {
  43266. name: "Normal",
  43267. height: math.unit(11 + 7/12, "feet"),
  43268. default: true
  43269. },
  43270. ]
  43271. ))
  43272. characterMakers.push(() => makeCharacter(
  43273. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43274. {
  43275. front: {
  43276. height: math.unit(6 + 3/12, "feet"),
  43277. name: "Front",
  43278. image: {
  43279. source: "./media/characters/saelria/front.svg",
  43280. extra: 1243/1138,
  43281. bottom: 46/1289
  43282. }
  43283. },
  43284. },
  43285. [
  43286. {
  43287. name: "Micro",
  43288. height: math.unit(6, "inches"),
  43289. },
  43290. {
  43291. name: "Normal",
  43292. height: math.unit(6 + 3/12, "feet"),
  43293. default: true
  43294. },
  43295. {
  43296. name: "Macro",
  43297. height: math.unit(25, "feet")
  43298. },
  43299. ]
  43300. ))
  43301. characterMakers.push(() => makeCharacter(
  43302. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43303. {
  43304. front: {
  43305. height: math.unit(80, "meters"),
  43306. weight: math.unit(7000, "tonnes"),
  43307. name: "Front",
  43308. image: {
  43309. source: "./media/characters/tef/front.svg",
  43310. extra: 2036/1991,
  43311. bottom: 54/2090
  43312. }
  43313. },
  43314. back: {
  43315. height: math.unit(80, "meters"),
  43316. weight: math.unit(7000, "tonnes"),
  43317. name: "Back",
  43318. image: {
  43319. source: "./media/characters/tef/back.svg",
  43320. extra: 2036/1991,
  43321. bottom: 54/2090
  43322. }
  43323. },
  43324. },
  43325. [
  43326. {
  43327. name: "Macro",
  43328. height: math.unit(80, "meters"),
  43329. default: true
  43330. },
  43331. ]
  43332. ))
  43333. characterMakers.push(() => makeCharacter(
  43334. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43335. {
  43336. front: {
  43337. height: math.unit(13, "feet"),
  43338. weight: math.unit(6, "tons"),
  43339. name: "Front",
  43340. image: {
  43341. source: "./media/characters/rover/front.svg",
  43342. extra: 1233/1156,
  43343. bottom: 50/1283
  43344. }
  43345. },
  43346. back: {
  43347. height: math.unit(13, "feet"),
  43348. weight: math.unit(6, "tons"),
  43349. name: "Back",
  43350. image: {
  43351. source: "./media/characters/rover/back.svg",
  43352. extra: 1327/1258,
  43353. bottom: 39/1366
  43354. }
  43355. },
  43356. },
  43357. [
  43358. {
  43359. name: "Normal",
  43360. height: math.unit(13, "feet"),
  43361. default: true
  43362. },
  43363. {
  43364. name: "Macro",
  43365. height: math.unit(1300, "feet")
  43366. },
  43367. {
  43368. name: "Megamacro",
  43369. height: math.unit(1300, "miles")
  43370. },
  43371. {
  43372. name: "Gigamacro",
  43373. height: math.unit(1300000, "miles")
  43374. },
  43375. ]
  43376. ))
  43377. characterMakers.push(() => makeCharacter(
  43378. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43379. {
  43380. front: {
  43381. height: math.unit(10, "feet"),
  43382. weight: math.unit(500, "lb"),
  43383. name: "Front",
  43384. image: {
  43385. source: "./media/characters/ariz/front.svg",
  43386. extra: 461/450,
  43387. bottom: 16/477
  43388. }
  43389. },
  43390. },
  43391. [
  43392. {
  43393. name: "MiniMacro",
  43394. height: math.unit(10, "feet"),
  43395. default: true
  43396. },
  43397. ]
  43398. ))
  43399. characterMakers.push(() => makeCharacter(
  43400. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43401. {
  43402. front: {
  43403. height: math.unit(6, "feet"),
  43404. weight: math.unit(140, "lb"),
  43405. name: "Front",
  43406. image: {
  43407. source: "./media/characters/sigrun/front.svg",
  43408. extra: 1418/1359,
  43409. bottom: 27/1445
  43410. }
  43411. },
  43412. },
  43413. [
  43414. {
  43415. name: "Macro",
  43416. height: math.unit(35, "feet"),
  43417. default: true
  43418. },
  43419. ]
  43420. ))
  43421. characterMakers.push(() => makeCharacter(
  43422. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43423. {
  43424. front: {
  43425. height: math.unit(6, "feet"),
  43426. weight: math.unit(150, "lb"),
  43427. name: "Front",
  43428. image: {
  43429. source: "./media/characters/numin/front.svg",
  43430. extra: 1433/1388,
  43431. bottom: 12/1445
  43432. }
  43433. },
  43434. },
  43435. [
  43436. {
  43437. name: "Macro",
  43438. height: math.unit(21.5, "km"),
  43439. default: true
  43440. },
  43441. ]
  43442. ))
  43443. characterMakers.push(() => makeCharacter(
  43444. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43445. {
  43446. front: {
  43447. height: math.unit(6, "feet"),
  43448. weight: math.unit(463, "lb"),
  43449. name: "Front",
  43450. image: {
  43451. source: "./media/characters/melwa/front.svg",
  43452. extra: 1307/1248,
  43453. bottom: 93/1400
  43454. }
  43455. },
  43456. },
  43457. [
  43458. {
  43459. name: "Macro",
  43460. height: math.unit(50, "meters"),
  43461. default: true
  43462. },
  43463. ]
  43464. ))
  43465. characterMakers.push(() => makeCharacter(
  43466. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43467. {
  43468. front: {
  43469. height: math.unit(325, "feet"),
  43470. name: "Front",
  43471. image: {
  43472. source: "./media/characters/zorkaiju/front.svg",
  43473. extra: 1955/1814,
  43474. bottom: 40/1995
  43475. }
  43476. },
  43477. frontExtended: {
  43478. height: math.unit(325, "feet"),
  43479. name: "Front (Extended)",
  43480. image: {
  43481. source: "./media/characters/zorkaiju/front-extended.svg",
  43482. extra: 1955/1814,
  43483. bottom: 40/1995
  43484. }
  43485. },
  43486. side: {
  43487. height: math.unit(325, "feet"),
  43488. name: "Side",
  43489. image: {
  43490. source: "./media/characters/zorkaiju/side.svg",
  43491. extra: 1495/1396,
  43492. bottom: 17/1512
  43493. }
  43494. },
  43495. sideExtended: {
  43496. height: math.unit(325, "feet"),
  43497. name: "Side (Extended)",
  43498. image: {
  43499. source: "./media/characters/zorkaiju/side-extended.svg",
  43500. extra: 1495/1396,
  43501. bottom: 17/1512
  43502. }
  43503. },
  43504. back: {
  43505. height: math.unit(325, "feet"),
  43506. name: "Back",
  43507. image: {
  43508. source: "./media/characters/zorkaiju/back.svg",
  43509. extra: 1959/1821,
  43510. bottom: 31/1990
  43511. }
  43512. },
  43513. backExtended: {
  43514. height: math.unit(325, "feet"),
  43515. name: "Back (Extended)",
  43516. image: {
  43517. source: "./media/characters/zorkaiju/back-extended.svg",
  43518. extra: 1959/1821,
  43519. bottom: 31/1990
  43520. }
  43521. },
  43522. hand: {
  43523. height: math.unit(58.4, "feet"),
  43524. name: "Hand",
  43525. image: {
  43526. source: "./media/characters/zorkaiju/hand.svg"
  43527. }
  43528. },
  43529. handExtended: {
  43530. height: math.unit(61.4, "feet"),
  43531. name: "Hand (Extended)",
  43532. image: {
  43533. source: "./media/characters/zorkaiju/hand-extended.svg"
  43534. }
  43535. },
  43536. foot: {
  43537. height: math.unit(95, "feet"),
  43538. name: "Foot",
  43539. image: {
  43540. source: "./media/characters/zorkaiju/foot.svg"
  43541. }
  43542. },
  43543. leftArm: {
  43544. height: math.unit(59, "feet"),
  43545. name: "Left Arm",
  43546. image: {
  43547. source: "./media/characters/zorkaiju/left-arm.svg"
  43548. }
  43549. },
  43550. rightArm: {
  43551. height: math.unit(59, "feet"),
  43552. name: "Right Arm",
  43553. image: {
  43554. source: "./media/characters/zorkaiju/right-arm.svg"
  43555. }
  43556. },
  43557. leftArmExtended: {
  43558. height: math.unit(59 * 1.033546, "feet"),
  43559. name: "Left Arm (Extended)",
  43560. image: {
  43561. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43562. }
  43563. },
  43564. rightArmExtended: {
  43565. height: math.unit(59 * 1.0496, "feet"),
  43566. name: "Right Arm (Extended)",
  43567. image: {
  43568. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43569. }
  43570. },
  43571. tail: {
  43572. height: math.unit(104, "feet"),
  43573. name: "Tail",
  43574. image: {
  43575. source: "./media/characters/zorkaiju/tail.svg"
  43576. }
  43577. },
  43578. tailExtended: {
  43579. height: math.unit(104, "feet"),
  43580. name: "Tail (Extended)",
  43581. image: {
  43582. source: "./media/characters/zorkaiju/tail-extended.svg"
  43583. }
  43584. },
  43585. tailBottom: {
  43586. height: math.unit(104, "feet"),
  43587. name: "Tail Bottom",
  43588. image: {
  43589. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43590. }
  43591. },
  43592. crystal: {
  43593. height: math.unit(27.54, "feet"),
  43594. name: "Crystal",
  43595. image: {
  43596. source: "./media/characters/zorkaiju/crystal.svg"
  43597. }
  43598. },
  43599. },
  43600. [
  43601. {
  43602. name: "Kaiju",
  43603. height: math.unit(325, "feet"),
  43604. default: true
  43605. },
  43606. ]
  43607. ))
  43608. characterMakers.push(() => makeCharacter(
  43609. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43610. {
  43611. front: {
  43612. height: math.unit(6 + 1/12, "feet"),
  43613. weight: math.unit(115, "lb"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/bailey-belfry/front.svg",
  43617. extra: 1240/1121,
  43618. bottom: 101/1341
  43619. }
  43620. },
  43621. },
  43622. [
  43623. {
  43624. name: "Normal",
  43625. height: math.unit(6 + 1/12, "feet"),
  43626. default: true
  43627. },
  43628. ]
  43629. ))
  43630. characterMakers.push(() => makeCharacter(
  43631. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43632. {
  43633. side: {
  43634. height: math.unit(4, "meters"),
  43635. weight: math.unit(250, "kg"),
  43636. name: "Side",
  43637. image: {
  43638. source: "./media/characters/blacky/side.svg",
  43639. extra: 1027/919,
  43640. bottom: 43/1070
  43641. }
  43642. },
  43643. maw: {
  43644. height: math.unit(1, "meters"),
  43645. name: "Maw",
  43646. image: {
  43647. source: "./media/characters/blacky/maw.svg"
  43648. }
  43649. },
  43650. paw: {
  43651. height: math.unit(1, "meters"),
  43652. name: "Paw",
  43653. image: {
  43654. source: "./media/characters/blacky/paw.svg"
  43655. }
  43656. },
  43657. },
  43658. [
  43659. {
  43660. name: "Normal",
  43661. height: math.unit(4, "meters"),
  43662. default: true
  43663. },
  43664. ]
  43665. ))
  43666. characterMakers.push(() => makeCharacter(
  43667. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43668. {
  43669. front: {
  43670. height: math.unit(170, "cm"),
  43671. weight: math.unit(66, "kg"),
  43672. name: "Front",
  43673. image: {
  43674. source: "./media/characters/thux-ei/front.svg",
  43675. extra: 1109/1011,
  43676. bottom: 8/1117
  43677. }
  43678. },
  43679. },
  43680. [
  43681. {
  43682. name: "Normal",
  43683. height: math.unit(170, "cm"),
  43684. default: true
  43685. },
  43686. ]
  43687. ))
  43688. characterMakers.push(() => makeCharacter(
  43689. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43690. {
  43691. front: {
  43692. height: math.unit(5, "feet"),
  43693. weight: math.unit(120, "lb"),
  43694. name: "Front",
  43695. image: {
  43696. source: "./media/characters/roxanne-voltaire/front.svg",
  43697. extra: 1901/1779,
  43698. bottom: 53/1954
  43699. }
  43700. },
  43701. },
  43702. [
  43703. {
  43704. name: "Normal",
  43705. height: math.unit(5, "feet"),
  43706. default: true
  43707. },
  43708. {
  43709. name: "Giant",
  43710. height: math.unit(50, "feet")
  43711. },
  43712. {
  43713. name: "Titan",
  43714. height: math.unit(500, "feet")
  43715. },
  43716. {
  43717. name: "Macro",
  43718. height: math.unit(5000, "feet")
  43719. },
  43720. {
  43721. name: "Megamacro",
  43722. height: math.unit(50000, "feet")
  43723. },
  43724. {
  43725. name: "Gigamacro",
  43726. height: math.unit(500000, "feet")
  43727. },
  43728. {
  43729. name: "Teramacro",
  43730. height: math.unit(5e6, "feet")
  43731. },
  43732. ]
  43733. ))
  43734. characterMakers.push(() => makeCharacter(
  43735. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43736. {
  43737. front: {
  43738. height: math.unit(6 + 2/12, "feet"),
  43739. name: "Front",
  43740. image: {
  43741. source: "./media/characters/squeaks/front.svg",
  43742. extra: 1823/1768,
  43743. bottom: 138/1961
  43744. }
  43745. },
  43746. },
  43747. [
  43748. {
  43749. name: "Micro",
  43750. height: math.unit(0.5, "inches")
  43751. },
  43752. {
  43753. name: "Normal",
  43754. height: math.unit(6 + 2/12, "feet"),
  43755. default: true
  43756. },
  43757. {
  43758. name: "Macro",
  43759. height: math.unit(600, "feet")
  43760. },
  43761. ]
  43762. ))
  43763. characterMakers.push(() => makeCharacter(
  43764. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43765. {
  43766. front: {
  43767. height: math.unit(1.72, "meters"),
  43768. name: "Front",
  43769. image: {
  43770. source: "./media/characters/archinger/front.svg",
  43771. extra: 1861/1675,
  43772. bottom: 125/1986
  43773. }
  43774. },
  43775. back: {
  43776. height: math.unit(1.72, "meters"),
  43777. name: "Back",
  43778. image: {
  43779. source: "./media/characters/archinger/back.svg",
  43780. extra: 1844/1701,
  43781. bottom: 104/1948
  43782. }
  43783. },
  43784. cock: {
  43785. height: math.unit(0.59, "feet"),
  43786. name: "Cock",
  43787. image: {
  43788. source: "./media/characters/archinger/cock.svg"
  43789. }
  43790. },
  43791. },
  43792. [
  43793. {
  43794. name: "Normal",
  43795. height: math.unit(1.72, "meters"),
  43796. default: true
  43797. },
  43798. {
  43799. name: "Macro",
  43800. height: math.unit(84, "meters")
  43801. },
  43802. {
  43803. name: "Macro+",
  43804. height: math.unit(112, "meters")
  43805. },
  43806. {
  43807. name: "Macro++",
  43808. height: math.unit(960, "meters")
  43809. },
  43810. {
  43811. name: "Macro+++",
  43812. height: math.unit(4, "km")
  43813. },
  43814. {
  43815. name: "Macro++++",
  43816. height: math.unit(48, "km")
  43817. },
  43818. {
  43819. name: "Macro+++++",
  43820. height: math.unit(4500, "km")
  43821. },
  43822. ]
  43823. ))
  43824. characterMakers.push(() => makeCharacter(
  43825. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43826. {
  43827. front: {
  43828. height: math.unit(5 + 5/12, "feet"),
  43829. name: "Front",
  43830. image: {
  43831. source: "./media/characters/alsnapz/front.svg",
  43832. extra: 1157/1065,
  43833. bottom: 42/1199
  43834. }
  43835. },
  43836. },
  43837. [
  43838. {
  43839. name: "Normal",
  43840. height: math.unit(5 + 5/12, "feet"),
  43841. default: true
  43842. },
  43843. ]
  43844. ))
  43845. characterMakers.push(() => makeCharacter(
  43846. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43847. {
  43848. side: {
  43849. height: math.unit(3.2, "earths"),
  43850. name: "Side",
  43851. image: {
  43852. source: "./media/characters/mag/side.svg",
  43853. extra: 1331/1008,
  43854. bottom: 52/1383
  43855. }
  43856. },
  43857. wing: {
  43858. height: math.unit(1.94, "earths"),
  43859. name: "Wing",
  43860. image: {
  43861. source: "./media/characters/mag/wing.svg"
  43862. }
  43863. },
  43864. dick: {
  43865. height: math.unit(1.8, "earths"),
  43866. name: "Dick",
  43867. image: {
  43868. source: "./media/characters/mag/dick.svg"
  43869. }
  43870. },
  43871. ass: {
  43872. height: math.unit(1.33, "earths"),
  43873. name: "Ass",
  43874. image: {
  43875. source: "./media/characters/mag/ass.svg"
  43876. }
  43877. },
  43878. head: {
  43879. height: math.unit(1.1, "earths"),
  43880. name: "Head",
  43881. image: {
  43882. source: "./media/characters/mag/head.svg"
  43883. }
  43884. },
  43885. maw: {
  43886. height: math.unit(1.62, "earths"),
  43887. name: "Maw",
  43888. image: {
  43889. source: "./media/characters/mag/maw.svg"
  43890. }
  43891. },
  43892. },
  43893. [
  43894. {
  43895. name: "Small",
  43896. height: math.unit(162, "feet")
  43897. },
  43898. {
  43899. name: "Normal",
  43900. height: math.unit(3.2, "earths"),
  43901. default: true
  43902. },
  43903. ]
  43904. ))
  43905. characterMakers.push(() => makeCharacter(
  43906. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43907. {
  43908. front: {
  43909. height: math.unit(512, "feet"),
  43910. weight: math.unit(63509, "tonnes"),
  43911. name: "Front",
  43912. image: {
  43913. source: "./media/characters/vorrel-harroc/front.svg",
  43914. extra: 1075/1063,
  43915. bottom: 62/1137
  43916. }
  43917. },
  43918. },
  43919. [
  43920. {
  43921. name: "Normal",
  43922. height: math.unit(10, "feet")
  43923. },
  43924. {
  43925. name: "Macro",
  43926. height: math.unit(512, "feet"),
  43927. default: true
  43928. },
  43929. {
  43930. name: "Megamacro",
  43931. height: math.unit(256, "miles")
  43932. },
  43933. {
  43934. name: "Gigamacro",
  43935. height: math.unit(4096, "miles")
  43936. },
  43937. ]
  43938. ))
  43939. characterMakers.push(() => makeCharacter(
  43940. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43941. {
  43942. side: {
  43943. height: math.unit(50, "feet"),
  43944. name: "Side",
  43945. image: {
  43946. source: "./media/characters/froimar/side.svg",
  43947. extra: 855/638,
  43948. bottom: 99/954
  43949. }
  43950. },
  43951. },
  43952. [
  43953. {
  43954. name: "Macro",
  43955. height: math.unit(50, "feet"),
  43956. default: true
  43957. },
  43958. ]
  43959. ))
  43960. characterMakers.push(() => makeCharacter(
  43961. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43962. {
  43963. front: {
  43964. height: math.unit(210, "miles"),
  43965. name: "Front",
  43966. image: {
  43967. source: "./media/characters/timothy/front.svg",
  43968. extra: 1007/943,
  43969. bottom: 62/1069
  43970. }
  43971. },
  43972. frontSkirt: {
  43973. height: math.unit(210, "miles"),
  43974. name: "Front (Skirt)",
  43975. image: {
  43976. source: "./media/characters/timothy/front-skirt.svg",
  43977. extra: 1007/943,
  43978. bottom: 62/1069
  43979. }
  43980. },
  43981. frontCoat: {
  43982. height: math.unit(210, "miles"),
  43983. name: "Front (Coat)",
  43984. image: {
  43985. source: "./media/characters/timothy/front-coat.svg",
  43986. extra: 1007/943,
  43987. bottom: 62/1069
  43988. }
  43989. },
  43990. },
  43991. [
  43992. {
  43993. name: "Macro",
  43994. height: math.unit(210, "miles"),
  43995. default: true
  43996. },
  43997. {
  43998. name: "Megamacro",
  43999. height: math.unit(210000, "miles")
  44000. },
  44001. ]
  44002. ))
  44003. characterMakers.push(() => makeCharacter(
  44004. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44005. {
  44006. front: {
  44007. height: math.unit(188, "feet"),
  44008. name: "Front",
  44009. image: {
  44010. source: "./media/characters/pyotr/front.svg",
  44011. extra: 1912/1826,
  44012. bottom: 18/1930
  44013. }
  44014. },
  44015. },
  44016. [
  44017. {
  44018. name: "Macro",
  44019. height: math.unit(188, "feet"),
  44020. default: true
  44021. },
  44022. {
  44023. name: "Megamacro",
  44024. height: math.unit(8, "miles")
  44025. },
  44026. ]
  44027. ))
  44028. characterMakers.push(() => makeCharacter(
  44029. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44030. {
  44031. side: {
  44032. height: math.unit(10, "feet"),
  44033. weight: math.unit(4500, "lb"),
  44034. name: "Side",
  44035. image: {
  44036. source: "./media/characters/ackart/side.svg",
  44037. extra: 1776/1668,
  44038. bottom: 116/1892
  44039. }
  44040. },
  44041. },
  44042. [
  44043. {
  44044. name: "Normal",
  44045. height: math.unit(10, "feet"),
  44046. default: true
  44047. },
  44048. ]
  44049. ))
  44050. characterMakers.push(() => makeCharacter(
  44051. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44052. {
  44053. side: {
  44054. height: math.unit(21, "feet"),
  44055. name: "Side",
  44056. image: {
  44057. source: "./media/characters/nolow/side.svg",
  44058. extra: 1484/1434,
  44059. bottom: 85/1569
  44060. }
  44061. },
  44062. sideErect: {
  44063. height: math.unit(21, "feet"),
  44064. name: "Side-erect",
  44065. image: {
  44066. source: "./media/characters/nolow/side-erect.svg",
  44067. extra: 1484/1434,
  44068. bottom: 85/1569
  44069. }
  44070. },
  44071. },
  44072. [
  44073. {
  44074. name: "Regular",
  44075. height: math.unit(12, "feet")
  44076. },
  44077. {
  44078. name: "Big Chee",
  44079. height: math.unit(21, "feet"),
  44080. default: true
  44081. },
  44082. ]
  44083. ))
  44084. characterMakers.push(() => makeCharacter(
  44085. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44086. {
  44087. front: {
  44088. height: math.unit(7, "feet"),
  44089. weight: math.unit(250, "lb"),
  44090. name: "Front",
  44091. image: {
  44092. source: "./media/characters/nines/front.svg",
  44093. extra: 1741/1607,
  44094. bottom: 41/1782
  44095. }
  44096. },
  44097. side: {
  44098. height: math.unit(7, "feet"),
  44099. weight: math.unit(250, "lb"),
  44100. name: "Side",
  44101. image: {
  44102. source: "./media/characters/nines/side.svg",
  44103. extra: 1854/1735,
  44104. bottom: 93/1947
  44105. }
  44106. },
  44107. back: {
  44108. height: math.unit(7, "feet"),
  44109. weight: math.unit(250, "lb"),
  44110. name: "Back",
  44111. image: {
  44112. source: "./media/characters/nines/back.svg",
  44113. extra: 1748/1615,
  44114. bottom: 20/1768
  44115. }
  44116. },
  44117. },
  44118. [
  44119. {
  44120. name: "Megamacro",
  44121. height: math.unit(99, "km"),
  44122. default: true
  44123. },
  44124. ]
  44125. ))
  44126. characterMakers.push(() => makeCharacter(
  44127. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44128. {
  44129. front: {
  44130. height: math.unit(5 + 10/12, "feet"),
  44131. weight: math.unit(210, "lb"),
  44132. name: "Front",
  44133. image: {
  44134. source: "./media/characters/zenith/front.svg",
  44135. extra: 1531/1452,
  44136. bottom: 198/1729
  44137. }
  44138. },
  44139. back: {
  44140. height: math.unit(5 + 10/12, "feet"),
  44141. weight: math.unit(210, "lb"),
  44142. name: "Back",
  44143. image: {
  44144. source: "./media/characters/zenith/back.svg",
  44145. extra: 1571/1487,
  44146. bottom: 75/1646
  44147. }
  44148. },
  44149. },
  44150. [
  44151. {
  44152. name: "Normal",
  44153. height: math.unit(5 + 10/12, "feet"),
  44154. default: true
  44155. }
  44156. ]
  44157. ))
  44158. characterMakers.push(() => makeCharacter(
  44159. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44160. {
  44161. front: {
  44162. height: math.unit(4, "feet"),
  44163. weight: math.unit(60, "lb"),
  44164. name: "Front",
  44165. image: {
  44166. source: "./media/characters/jasper/front.svg",
  44167. extra: 1450/1379,
  44168. bottom: 19/1469
  44169. }
  44170. },
  44171. },
  44172. [
  44173. {
  44174. name: "Normal",
  44175. height: math.unit(4, "feet"),
  44176. default: true
  44177. },
  44178. ]
  44179. ))
  44180. characterMakers.push(() => makeCharacter(
  44181. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44182. {
  44183. front: {
  44184. height: math.unit(6 + 5/12, "feet"),
  44185. weight: math.unit(290, "lb"),
  44186. name: "Front",
  44187. image: {
  44188. source: "./media/characters/tiberius-thyben/front.svg",
  44189. extra: 757/739,
  44190. bottom: 39/796
  44191. }
  44192. },
  44193. },
  44194. [
  44195. {
  44196. name: "Micro",
  44197. height: math.unit(1.5, "inches")
  44198. },
  44199. {
  44200. name: "Normal",
  44201. height: math.unit(6 + 5/12, "feet"),
  44202. default: true
  44203. },
  44204. {
  44205. name: "Macro",
  44206. height: math.unit(300, "feet")
  44207. },
  44208. ]
  44209. ))
  44210. characterMakers.push(() => makeCharacter(
  44211. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44212. {
  44213. front: {
  44214. height: math.unit(5 + 6/12, "feet"),
  44215. weight: math.unit(60, "kg"),
  44216. name: "Front",
  44217. image: {
  44218. source: "./media/characters/sabre/front.svg",
  44219. extra: 738/671,
  44220. bottom: 27/765
  44221. }
  44222. },
  44223. },
  44224. [
  44225. {
  44226. name: "Teeny",
  44227. height: math.unit(2, "inches")
  44228. },
  44229. {
  44230. name: "Smol",
  44231. height: math.unit(8, "inches")
  44232. },
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(5 + 6/12, "feet"),
  44236. default: true
  44237. },
  44238. {
  44239. name: "Mini-Macro",
  44240. height: math.unit(15, "feet")
  44241. },
  44242. {
  44243. name: "Macro",
  44244. height: math.unit(50, "feet")
  44245. },
  44246. ]
  44247. ))
  44248. characterMakers.push(() => makeCharacter(
  44249. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44250. {
  44251. front: {
  44252. height: math.unit(6 + 4/12, "feet"),
  44253. weight: math.unit(170, "lb"),
  44254. name: "Front",
  44255. image: {
  44256. source: "./media/characters/charlie/front.svg",
  44257. extra: 1348/1228,
  44258. bottom: 15/1363
  44259. }
  44260. },
  44261. },
  44262. [
  44263. {
  44264. name: "Macro",
  44265. height: math.unit(1700, "meters"),
  44266. default: true
  44267. },
  44268. {
  44269. name: "MegaMacro",
  44270. height: math.unit(20400, "meters")
  44271. },
  44272. ]
  44273. ))
  44274. characterMakers.push(() => makeCharacter(
  44275. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44276. {
  44277. front: {
  44278. height: math.unit(1.96, "meters"),
  44279. weight: math.unit(220, "lb"),
  44280. name: "Front",
  44281. image: {
  44282. source: "./media/characters/susan-grant/front.svg",
  44283. extra: 482/478,
  44284. bottom: 7/489
  44285. }
  44286. },
  44287. },
  44288. [
  44289. {
  44290. name: "Normal",
  44291. height: math.unit(1.96, "meters"),
  44292. default: true
  44293. },
  44294. {
  44295. name: "Macro",
  44296. height: math.unit(76.2, "meters")
  44297. },
  44298. {
  44299. name: "MegaMacro",
  44300. height: math.unit(305, "meters")
  44301. },
  44302. {
  44303. name: "GigaMacro",
  44304. height: math.unit(1220, "meters")
  44305. },
  44306. {
  44307. name: "SuperMacro",
  44308. height: math.unit(4878, "meters")
  44309. },
  44310. ]
  44311. ))
  44312. characterMakers.push(() => makeCharacter(
  44313. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44314. {
  44315. front: {
  44316. height: math.unit(5 + 4/12, "feet"),
  44317. weight: math.unit(110, "lb"),
  44318. name: "Front",
  44319. image: {
  44320. source: "./media/characters/axel-isanov/front.svg",
  44321. extra: 1096/1065,
  44322. bottom: 13/1109
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "Normal",
  44329. height: math.unit(5 + 4/12, "feet"),
  44330. default: true
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44336. {
  44337. front: {
  44338. height: math.unit(9, "feet"),
  44339. weight: math.unit(467, "lb"),
  44340. name: "Front",
  44341. image: {
  44342. source: "./media/characters/necahual/front.svg",
  44343. extra: 920/873,
  44344. bottom: 26/946
  44345. }
  44346. },
  44347. back: {
  44348. height: math.unit(9, "feet"),
  44349. weight: math.unit(467, "lb"),
  44350. name: "Back",
  44351. image: {
  44352. source: "./media/characters/necahual/back.svg",
  44353. extra: 930/884,
  44354. bottom: 16/946
  44355. }
  44356. },
  44357. frontUnderwear: {
  44358. height: math.unit(9, "feet"),
  44359. weight: math.unit(467, "lb"),
  44360. name: "Front (Underwear)",
  44361. image: {
  44362. source: "./media/characters/necahual/front-underwear.svg",
  44363. extra: 920/873,
  44364. bottom: 26/946
  44365. }
  44366. },
  44367. frontDressed: {
  44368. height: math.unit(9, "feet"),
  44369. weight: math.unit(467, "lb"),
  44370. name: "Front (Dressed)",
  44371. image: {
  44372. source: "./media/characters/necahual/front-dressed.svg",
  44373. extra: 920/873,
  44374. bottom: 26/946
  44375. }
  44376. },
  44377. },
  44378. [
  44379. {
  44380. name: "Comprsesed",
  44381. height: math.unit(9, "feet")
  44382. },
  44383. {
  44384. name: "Natural",
  44385. height: math.unit(15, "feet"),
  44386. default: true
  44387. },
  44388. {
  44389. name: "Boosted",
  44390. height: math.unit(50, "feet")
  44391. },
  44392. {
  44393. name: "Boosted+",
  44394. height: math.unit(150, "feet")
  44395. },
  44396. {
  44397. name: "Max",
  44398. height: math.unit(500, "feet")
  44399. },
  44400. ]
  44401. ))
  44402. characterMakers.push(() => makeCharacter(
  44403. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44404. {
  44405. front: {
  44406. height: math.unit(22 + 1/12, "feet"),
  44407. weight: math.unit(3200, "lb"),
  44408. name: "Front",
  44409. image: {
  44410. source: "./media/characters/theo-acacia/front.svg",
  44411. extra: 1796/1741,
  44412. bottom: 83/1879
  44413. }
  44414. },
  44415. frontUnderwear: {
  44416. height: math.unit(22 + 1/12, "feet"),
  44417. weight: math.unit(3200, "lb"),
  44418. name: "Front (Underwear)",
  44419. image: {
  44420. source: "./media/characters/theo-acacia/front-underwear.svg",
  44421. extra: 1796/1741,
  44422. bottom: 83/1879
  44423. }
  44424. },
  44425. frontNude: {
  44426. height: math.unit(22 + 1/12, "feet"),
  44427. weight: math.unit(3200, "lb"),
  44428. name: "Front (Nude)",
  44429. image: {
  44430. source: "./media/characters/theo-acacia/front-nude.svg",
  44431. extra: 1796/1741,
  44432. bottom: 83/1879
  44433. }
  44434. },
  44435. },
  44436. [
  44437. {
  44438. name: "Normal",
  44439. height: math.unit(22 + 1/12, "feet"),
  44440. default: true
  44441. },
  44442. ]
  44443. ))
  44444. characterMakers.push(() => makeCharacter(
  44445. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44446. {
  44447. front: {
  44448. height: math.unit(20, "feet"),
  44449. name: "Front",
  44450. image: {
  44451. source: "./media/characters/astra/front.svg",
  44452. extra: 1850/1714,
  44453. bottom: 106/1956
  44454. }
  44455. },
  44456. frontUndressed: {
  44457. height: math.unit(20, "feet"),
  44458. name: "Front (Undressed)",
  44459. image: {
  44460. source: "./media/characters/astra/front-undressed.svg",
  44461. extra: 1926/1749,
  44462. bottom: 0/1926
  44463. }
  44464. },
  44465. hand: {
  44466. height: math.unit(1.53, "feet"),
  44467. name: "Hand",
  44468. image: {
  44469. source: "./media/characters/astra/hand.svg"
  44470. }
  44471. },
  44472. paw: {
  44473. height: math.unit(1.53, "feet"),
  44474. name: "Paw",
  44475. image: {
  44476. source: "./media/characters/astra/paw.svg"
  44477. }
  44478. },
  44479. },
  44480. [
  44481. {
  44482. name: "Smallest",
  44483. height: math.unit(20, "feet")
  44484. },
  44485. {
  44486. name: "Normal",
  44487. height: math.unit(1e9, "miles"),
  44488. default: true
  44489. },
  44490. {
  44491. name: "Larger",
  44492. height: math.unit(5, "multiverses")
  44493. },
  44494. {
  44495. name: "Largest",
  44496. height: math.unit(1e9, "multiverses")
  44497. },
  44498. ]
  44499. ))
  44500. characterMakers.push(() => makeCharacter(
  44501. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44502. {
  44503. front: {
  44504. height: math.unit(8, "feet"),
  44505. name: "Front",
  44506. image: {
  44507. source: "./media/characters/breanna/front.svg",
  44508. extra: 1912/1632,
  44509. bottom: 33/1945
  44510. }
  44511. },
  44512. },
  44513. [
  44514. {
  44515. name: "Smallest",
  44516. height: math.unit(8, "feet")
  44517. },
  44518. {
  44519. name: "Normal",
  44520. height: math.unit(1, "mile"),
  44521. default: true
  44522. },
  44523. {
  44524. name: "Maximum",
  44525. height: math.unit(1500000000000, "lightyears")
  44526. },
  44527. ]
  44528. ))
  44529. characterMakers.push(() => makeCharacter(
  44530. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44531. {
  44532. front: {
  44533. height: math.unit(5 + 11/12, "feet"),
  44534. weight: math.unit(155, "lb"),
  44535. name: "Front",
  44536. image: {
  44537. source: "./media/characters/cai/front.svg",
  44538. extra: 1823/1702,
  44539. bottom: 32/1855
  44540. }
  44541. },
  44542. back: {
  44543. height: math.unit(5 + 11/12, "feet"),
  44544. weight: math.unit(155, "lb"),
  44545. name: "Back",
  44546. image: {
  44547. source: "./media/characters/cai/back.svg",
  44548. extra: 1809/1708,
  44549. bottom: 31/1840
  44550. }
  44551. },
  44552. },
  44553. [
  44554. {
  44555. name: "Normal",
  44556. height: math.unit(5 + 11/12, "feet"),
  44557. default: true
  44558. },
  44559. {
  44560. name: "Big",
  44561. height: math.unit(15, "feet")
  44562. },
  44563. {
  44564. name: "Macro",
  44565. height: math.unit(200, "feet")
  44566. },
  44567. ]
  44568. ))
  44569. characterMakers.push(() => makeCharacter(
  44570. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44571. {
  44572. front: {
  44573. height: math.unit(5 + 6/12, "feet"),
  44574. weight: math.unit(160, "lb"),
  44575. name: "Front",
  44576. image: {
  44577. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44578. extra: 1227/1174,
  44579. bottom: 37/1264
  44580. }
  44581. },
  44582. },
  44583. [
  44584. {
  44585. name: "Macro",
  44586. height: math.unit(444, "meters"),
  44587. default: true
  44588. },
  44589. ]
  44590. ))
  44591. characterMakers.push(() => makeCharacter(
  44592. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44593. {
  44594. front: {
  44595. height: math.unit(18 + 7/12, "feet"),
  44596. name: "Front",
  44597. image: {
  44598. source: "./media/characters/rex/front.svg",
  44599. extra: 1941/1807,
  44600. bottom: 66/2007
  44601. }
  44602. },
  44603. back: {
  44604. height: math.unit(18 + 7/12, "feet"),
  44605. name: "Back",
  44606. image: {
  44607. source: "./media/characters/rex/back.svg",
  44608. extra: 1937/1822,
  44609. bottom: 42/1979
  44610. }
  44611. },
  44612. boot: {
  44613. height: math.unit(3.45, "feet"),
  44614. name: "Boot",
  44615. image: {
  44616. source: "./media/characters/rex/boot.svg"
  44617. }
  44618. },
  44619. paw: {
  44620. height: math.unit(4.17, "feet"),
  44621. name: "Paw",
  44622. image: {
  44623. source: "./media/characters/rex/paw.svg"
  44624. }
  44625. },
  44626. head: {
  44627. height: math.unit(6.728, "feet"),
  44628. name: "Head",
  44629. image: {
  44630. source: "./media/characters/rex/head.svg"
  44631. }
  44632. },
  44633. },
  44634. [
  44635. {
  44636. name: "Nano",
  44637. height: math.unit(18 + 7/12, "feet")
  44638. },
  44639. {
  44640. name: "Micro",
  44641. height: math.unit(1.5, "megameters")
  44642. },
  44643. {
  44644. name: "Normal",
  44645. height: math.unit(440, "megameters"),
  44646. default: true
  44647. },
  44648. {
  44649. name: "Macro",
  44650. height: math.unit(2.5, "gigameters")
  44651. },
  44652. {
  44653. name: "Gigamacro",
  44654. height: math.unit(2, "galaxies")
  44655. },
  44656. ]
  44657. ))
  44658. characterMakers.push(() => makeCharacter(
  44659. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44660. {
  44661. side: {
  44662. height: math.unit(32, "feet"),
  44663. weight: math.unit(250000, "lb"),
  44664. name: "Side",
  44665. image: {
  44666. source: "./media/characters/silverwing/side.svg",
  44667. extra: 1100/1019,
  44668. bottom: 204/1304
  44669. }
  44670. },
  44671. },
  44672. [
  44673. {
  44674. name: "Normal",
  44675. height: math.unit(32, "feet"),
  44676. default: true
  44677. },
  44678. ]
  44679. ))
  44680. characterMakers.push(() => makeCharacter(
  44681. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44682. {
  44683. front: {
  44684. height: math.unit(6 + 6/12, "feet"),
  44685. weight: math.unit(350, "lb"),
  44686. name: "Front",
  44687. image: {
  44688. source: "./media/characters/tristan-hawthorne/front.svg",
  44689. extra: 1159/1124,
  44690. bottom: 37/1196
  44691. },
  44692. form: "labrador",
  44693. default: true
  44694. },
  44695. skunkFront: {
  44696. height: math.unit(4 + 6/12, "feet"),
  44697. weight: math.unit(120, "lb"),
  44698. name: "Front",
  44699. image: {
  44700. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44701. extra: 1609/1551,
  44702. bottom: 169/1778
  44703. },
  44704. form: "skunk",
  44705. default: true
  44706. },
  44707. },
  44708. [
  44709. {
  44710. name: "Normal",
  44711. height: math.unit(6 + 6/12, "feet"),
  44712. form: "labrador",
  44713. default: true
  44714. },
  44715. {
  44716. name: "Normal",
  44717. height: math.unit(4 + 6/12, "feet"),
  44718. form: "skunk",
  44719. default: true
  44720. },
  44721. ],
  44722. {
  44723. "labrador": {
  44724. name: "Labrador",
  44725. default: true
  44726. },
  44727. "skunk": {
  44728. name: "Skunk"
  44729. }
  44730. }
  44731. ))
  44732. characterMakers.push(() => makeCharacter(
  44733. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44734. {
  44735. front: {
  44736. height: math.unit(5 + 11/12, "feet"),
  44737. weight: math.unit(190, "lb"),
  44738. name: "Front",
  44739. image: {
  44740. source: "./media/characters/mizu/front.svg",
  44741. extra: 1988/1788,
  44742. bottom: 14/2002
  44743. }
  44744. },
  44745. },
  44746. [
  44747. {
  44748. name: "Normal",
  44749. height: math.unit(5 + 11/12, "feet"),
  44750. default: true
  44751. },
  44752. ]
  44753. ))
  44754. characterMakers.push(() => makeCharacter(
  44755. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44756. {
  44757. front: {
  44758. height: math.unit(1.7, "feet"),
  44759. weight: math.unit(50, "lb"),
  44760. name: "Front",
  44761. image: {
  44762. source: "./media/characters/dechroma/front.svg",
  44763. extra: 1095/859,
  44764. bottom: 64/1159
  44765. }
  44766. },
  44767. },
  44768. [
  44769. {
  44770. name: "Normal",
  44771. height: math.unit(1.7, "feet"),
  44772. default: true
  44773. },
  44774. ]
  44775. ))
  44776. characterMakers.push(() => makeCharacter(
  44777. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44778. {
  44779. side: {
  44780. height: math.unit(30, "feet"),
  44781. name: "Side",
  44782. image: {
  44783. source: "./media/characters/veluren-thanazel/side.svg",
  44784. extra: 1611/633,
  44785. bottom: 118/1729
  44786. }
  44787. },
  44788. front: {
  44789. height: math.unit(30, "feet"),
  44790. name: "Front",
  44791. image: {
  44792. source: "./media/characters/veluren-thanazel/front.svg",
  44793. extra: 1486/636,
  44794. bottom: 238/1724
  44795. }
  44796. },
  44797. head: {
  44798. height: math.unit(21.4, "feet"),
  44799. name: "Head",
  44800. image: {
  44801. source: "./media/characters/veluren-thanazel/head.svg"
  44802. }
  44803. },
  44804. genitals: {
  44805. height: math.unit(19.4, "feet"),
  44806. name: "Genitals",
  44807. image: {
  44808. source: "./media/characters/veluren-thanazel/genitals.svg"
  44809. }
  44810. },
  44811. },
  44812. [
  44813. {
  44814. name: "Social",
  44815. height: math.unit(6, "feet")
  44816. },
  44817. {
  44818. name: "Play",
  44819. height: math.unit(12, "feet")
  44820. },
  44821. {
  44822. name: "True",
  44823. height: math.unit(30, "feet"),
  44824. default: true
  44825. },
  44826. ]
  44827. ))
  44828. characterMakers.push(() => makeCharacter(
  44829. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44830. {
  44831. front: {
  44832. height: math.unit(7 + 6/12, "feet"),
  44833. weight: math.unit(500, "kg"),
  44834. name: "Front",
  44835. image: {
  44836. source: "./media/characters/arcturas/front.svg",
  44837. extra: 1700/1500,
  44838. bottom: 145/1845
  44839. }
  44840. },
  44841. },
  44842. [
  44843. {
  44844. name: "Normal",
  44845. height: math.unit(7 + 6/12, "feet"),
  44846. default: true
  44847. },
  44848. ]
  44849. ))
  44850. characterMakers.push(() => makeCharacter(
  44851. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44852. {
  44853. side: {
  44854. height: math.unit(6, "feet"),
  44855. weight: math.unit(2, "tons"),
  44856. name: "Side",
  44857. image: {
  44858. source: "./media/characters/vitaen/side.svg",
  44859. extra: 1157/617,
  44860. bottom: 122/1279
  44861. }
  44862. },
  44863. },
  44864. [
  44865. {
  44866. name: "Normal",
  44867. height: math.unit(6, "feet"),
  44868. default: true
  44869. },
  44870. ]
  44871. ))
  44872. characterMakers.push(() => makeCharacter(
  44873. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44874. {
  44875. front: {
  44876. height: math.unit(19, "feet"),
  44877. name: "Front",
  44878. image: {
  44879. source: "./media/characters/fia-dreamweaver/front.svg",
  44880. extra: 1630/1504,
  44881. bottom: 25/1655
  44882. }
  44883. },
  44884. },
  44885. [
  44886. {
  44887. name: "Normal",
  44888. height: math.unit(19, "feet"),
  44889. default: true
  44890. },
  44891. ]
  44892. ))
  44893. characterMakers.push(() => makeCharacter(
  44894. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44895. {
  44896. front: {
  44897. height: math.unit(5 + 4/12, "feet"),
  44898. name: "Front",
  44899. image: {
  44900. source: "./media/characters/artan/front.svg",
  44901. extra: 1618/1535,
  44902. bottom: 46/1664
  44903. }
  44904. },
  44905. back: {
  44906. height: math.unit(5 + 4/12, "feet"),
  44907. name: "Back",
  44908. image: {
  44909. source: "./media/characters/artan/back.svg",
  44910. extra: 1618/1543,
  44911. bottom: 31/1649
  44912. }
  44913. },
  44914. },
  44915. [
  44916. {
  44917. name: "Normal",
  44918. height: math.unit(5 + 4/12, "feet"),
  44919. default: true
  44920. },
  44921. ]
  44922. ))
  44923. characterMakers.push(() => makeCharacter(
  44924. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44925. {
  44926. side: {
  44927. height: math.unit(182, "cm"),
  44928. weight: math.unit(1000, "lb"),
  44929. name: "Side",
  44930. image: {
  44931. source: "./media/characters/silver-dragon/side.svg",
  44932. extra: 710/287,
  44933. bottom: 88/798
  44934. }
  44935. },
  44936. },
  44937. [
  44938. {
  44939. name: "Normal",
  44940. height: math.unit(182, "cm"),
  44941. default: true
  44942. },
  44943. ]
  44944. ))
  44945. characterMakers.push(() => makeCharacter(
  44946. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44947. {
  44948. side: {
  44949. height: math.unit(6 + 6/12, "feet"),
  44950. weight: math.unit(1.5, "tons"),
  44951. name: "Side",
  44952. image: {
  44953. source: "./media/characters/zephyr/side.svg",
  44954. extra: 1433/586,
  44955. bottom: 109/1542
  44956. }
  44957. },
  44958. },
  44959. [
  44960. {
  44961. name: "Normal",
  44962. height: math.unit(6 + 6/12, "feet"),
  44963. default: true
  44964. },
  44965. ]
  44966. ))
  44967. characterMakers.push(() => makeCharacter(
  44968. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44969. {
  44970. side: {
  44971. height: math.unit(1, "feet"),
  44972. name: "Side",
  44973. image: {
  44974. source: "./media/characters/vixye/side.svg",
  44975. extra: 632/541,
  44976. bottom: 0/632
  44977. }
  44978. },
  44979. },
  44980. [
  44981. {
  44982. name: "Normal",
  44983. height: math.unit(1, "feet"),
  44984. default: true
  44985. },
  44986. {
  44987. name: "True",
  44988. height: math.unit(1e15, "multiverses")
  44989. },
  44990. ]
  44991. ))
  44992. characterMakers.push(() => makeCharacter(
  44993. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44994. {
  44995. front: {
  44996. height: math.unit(8 + 2/12, "feet"),
  44997. weight: math.unit(650, "lb"),
  44998. name: "Front",
  44999. image: {
  45000. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45001. extra: 1174/1137,
  45002. bottom: 82/1256
  45003. }
  45004. },
  45005. back: {
  45006. height: math.unit(8 + 2/12, "feet"),
  45007. weight: math.unit(650, "lb"),
  45008. name: "Back",
  45009. image: {
  45010. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45011. extra: 1204/1157,
  45012. bottom: 46/1250
  45013. }
  45014. },
  45015. },
  45016. [
  45017. {
  45018. name: "Wildform",
  45019. height: math.unit(8 + 2/12, "feet"),
  45020. default: true
  45021. },
  45022. ]
  45023. ))
  45024. characterMakers.push(() => makeCharacter(
  45025. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45026. {
  45027. front: {
  45028. height: math.unit(18, "feet"),
  45029. name: "Front",
  45030. image: {
  45031. source: "./media/characters/cyphin/front.svg",
  45032. extra: 970/886,
  45033. bottom: 42/1012
  45034. }
  45035. },
  45036. back: {
  45037. height: math.unit(18, "feet"),
  45038. name: "Back",
  45039. image: {
  45040. source: "./media/characters/cyphin/back.svg",
  45041. extra: 1009/894,
  45042. bottom: 24/1033
  45043. }
  45044. },
  45045. head: {
  45046. height: math.unit(5.05, "feet"),
  45047. name: "Head",
  45048. image: {
  45049. source: "./media/characters/cyphin/head.svg"
  45050. }
  45051. },
  45052. tailbud: {
  45053. height: math.unit(5, "feet"),
  45054. name: "Tailbud",
  45055. image: {
  45056. source: "./media/characters/cyphin/tailbud.svg"
  45057. }
  45058. },
  45059. },
  45060. [
  45061. ]
  45062. ))
  45063. characterMakers.push(() => makeCharacter(
  45064. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45065. {
  45066. side: {
  45067. height: math.unit(10, "feet"),
  45068. weight: math.unit(6, "tons"),
  45069. name: "Side",
  45070. image: {
  45071. source: "./media/characters/raijin/side.svg",
  45072. extra: 1529/613,
  45073. bottom: 337/1866
  45074. }
  45075. },
  45076. },
  45077. [
  45078. {
  45079. name: "Normal",
  45080. height: math.unit(10, "feet"),
  45081. default: true
  45082. },
  45083. ]
  45084. ))
  45085. characterMakers.push(() => makeCharacter(
  45086. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45087. {
  45088. side: {
  45089. height: math.unit(9, "feet"),
  45090. name: "Side",
  45091. image: {
  45092. source: "./media/characters/nilghais/side.svg",
  45093. extra: 1047/744,
  45094. bottom: 91/1138
  45095. }
  45096. },
  45097. head: {
  45098. height: math.unit(3.14, "feet"),
  45099. name: "Head",
  45100. image: {
  45101. source: "./media/characters/nilghais/head.svg"
  45102. }
  45103. },
  45104. mouth: {
  45105. height: math.unit(4.6, "feet"),
  45106. name: "Mouth",
  45107. image: {
  45108. source: "./media/characters/nilghais/mouth.svg"
  45109. }
  45110. },
  45111. wings: {
  45112. height: math.unit(24, "feet"),
  45113. name: "Wings",
  45114. image: {
  45115. source: "./media/characters/nilghais/wings.svg"
  45116. }
  45117. },
  45118. ass: {
  45119. height: math.unit(6.12, "feet"),
  45120. name: "Ass",
  45121. image: {
  45122. source: "./media/characters/nilghais/ass.svg"
  45123. }
  45124. },
  45125. },
  45126. [
  45127. {
  45128. name: "Normal",
  45129. height: math.unit(9, "feet"),
  45130. default: true
  45131. },
  45132. ]
  45133. ))
  45134. characterMakers.push(() => makeCharacter(
  45135. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45136. {
  45137. regular: {
  45138. height: math.unit(16 + 2/12, "feet"),
  45139. weight: math.unit(2300, "lb"),
  45140. name: "Regular",
  45141. image: {
  45142. source: "./media/characters/zolgar/regular.svg",
  45143. extra: 1246/1004,
  45144. bottom: 124/1370
  45145. }
  45146. },
  45147. boxers: {
  45148. height: math.unit(16 + 2/12, "feet"),
  45149. weight: math.unit(2300, "lb"),
  45150. name: "Boxers",
  45151. image: {
  45152. source: "./media/characters/zolgar/boxers.svg",
  45153. extra: 1246/1004,
  45154. bottom: 124/1370
  45155. }
  45156. },
  45157. armored: {
  45158. height: math.unit(16 + 2/12, "feet"),
  45159. weight: math.unit(2300, "lb"),
  45160. name: "Armored",
  45161. image: {
  45162. source: "./media/characters/zolgar/armored.svg",
  45163. extra: 1246/1004,
  45164. bottom: 124/1370
  45165. }
  45166. },
  45167. goth: {
  45168. height: math.unit(16 + 2/12, "feet"),
  45169. weight: math.unit(2300, "lb"),
  45170. name: "Goth",
  45171. image: {
  45172. source: "./media/characters/zolgar/goth.svg",
  45173. extra: 1246/1004,
  45174. bottom: 124/1370
  45175. }
  45176. },
  45177. },
  45178. [
  45179. {
  45180. name: "Shrunken Down",
  45181. height: math.unit(9 + 2/12, "feet")
  45182. },
  45183. {
  45184. name: "Normal",
  45185. height: math.unit(16 + 2/12, "feet"),
  45186. default: true
  45187. },
  45188. ]
  45189. ))
  45190. characterMakers.push(() => makeCharacter(
  45191. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45192. {
  45193. front: {
  45194. height: math.unit(6, "feet"),
  45195. weight: math.unit(168, "lb"),
  45196. name: "Front",
  45197. image: {
  45198. source: "./media/characters/luca/front.svg",
  45199. extra: 841/667,
  45200. bottom: 102/943
  45201. }
  45202. },
  45203. },
  45204. [
  45205. {
  45206. name: "Normal",
  45207. height: math.unit(6, "feet"),
  45208. default: true
  45209. },
  45210. ]
  45211. ))
  45212. characterMakers.push(() => makeCharacter(
  45213. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45214. {
  45215. side: {
  45216. height: math.unit(7 + 3/12, "feet"),
  45217. weight: math.unit(312, "lb"),
  45218. name: "Side",
  45219. image: {
  45220. source: "./media/characters/zezo/side.svg",
  45221. extra: 1192/1067,
  45222. bottom: 63/1255
  45223. }
  45224. },
  45225. },
  45226. [
  45227. {
  45228. name: "Normal",
  45229. height: math.unit(7 + 3/12, "feet"),
  45230. default: true
  45231. },
  45232. ]
  45233. ))
  45234. characterMakers.push(() => makeCharacter(
  45235. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45236. {
  45237. front: {
  45238. height: math.unit(5 + 5/12, "feet"),
  45239. weight: math.unit(170, "lb"),
  45240. name: "Front",
  45241. image: {
  45242. source: "./media/characters/mayso/front.svg",
  45243. extra: 1215/1108,
  45244. bottom: 16/1231
  45245. }
  45246. },
  45247. },
  45248. [
  45249. {
  45250. name: "Normal",
  45251. height: math.unit(5 + 5/12, "feet"),
  45252. default: true
  45253. },
  45254. ]
  45255. ))
  45256. characterMakers.push(() => makeCharacter(
  45257. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45258. {
  45259. front: {
  45260. height: math.unit(4 + 3/12, "feet"),
  45261. weight: math.unit(80, "lb"),
  45262. name: "Front",
  45263. image: {
  45264. source: "./media/characters/hess/front.svg",
  45265. extra: 1200/1123,
  45266. bottom: 16/1216
  45267. }
  45268. },
  45269. },
  45270. [
  45271. {
  45272. name: "Normal",
  45273. height: math.unit(4 + 3/12, "feet"),
  45274. default: true
  45275. },
  45276. ]
  45277. ))
  45278. characterMakers.push(() => makeCharacter(
  45279. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45280. {
  45281. front: {
  45282. height: math.unit(1.9, "meters"),
  45283. name: "Front",
  45284. image: {
  45285. source: "./media/characters/ashgar/front.svg",
  45286. extra: 1177/1146,
  45287. bottom: 99/1276
  45288. }
  45289. },
  45290. back: {
  45291. height: math.unit(1.9, "meters"),
  45292. name: "Back",
  45293. image: {
  45294. source: "./media/characters/ashgar/back.svg",
  45295. extra: 1201/1183,
  45296. bottom: 53/1254
  45297. }
  45298. },
  45299. feral: {
  45300. height: math.unit(1.4, "meters"),
  45301. name: "Feral",
  45302. image: {
  45303. source: "./media/characters/ashgar/feral.svg",
  45304. extra: 370/345,
  45305. bottom: 45/415
  45306. }
  45307. },
  45308. },
  45309. [
  45310. {
  45311. name: "Normal",
  45312. height: math.unit(1.9, "meters"),
  45313. default: true
  45314. },
  45315. ]
  45316. ))
  45317. characterMakers.push(() => makeCharacter(
  45318. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45319. {
  45320. regular: {
  45321. height: math.unit(6, "feet"),
  45322. weight: math.unit(220, "lb"),
  45323. name: "Regular",
  45324. image: {
  45325. source: "./media/characters/phillip/regular.svg",
  45326. extra: 1373/1277,
  45327. bottom: 75/1448
  45328. }
  45329. },
  45330. dressed: {
  45331. height: math.unit(6, "feet"),
  45332. weight: math.unit(220, "lb"),
  45333. name: "Dressed",
  45334. image: {
  45335. source: "./media/characters/phillip/dressed.svg",
  45336. extra: 1373/1277,
  45337. bottom: 75/1448
  45338. }
  45339. },
  45340. paw: {
  45341. height: math.unit(1.44, "feet"),
  45342. name: "Paw",
  45343. image: {
  45344. source: "./media/characters/phillip/paw.svg"
  45345. }
  45346. },
  45347. },
  45348. [
  45349. {
  45350. name: "Normal",
  45351. height: math.unit(6, "feet"),
  45352. default: true
  45353. },
  45354. ]
  45355. ))
  45356. characterMakers.push(() => makeCharacter(
  45357. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45358. {
  45359. side: {
  45360. height: math.unit(42, "feet"),
  45361. name: "Side",
  45362. image: {
  45363. source: "./media/characters/uvula/side.svg",
  45364. extra: 683/586,
  45365. bottom: 60/743
  45366. }
  45367. },
  45368. front: {
  45369. height: math.unit(42, "feet"),
  45370. name: "Front",
  45371. image: {
  45372. source: "./media/characters/uvula/front.svg",
  45373. extra: 705/613,
  45374. bottom: 54/759
  45375. }
  45376. },
  45377. maw: {
  45378. height: math.unit(23.5, "feet"),
  45379. name: "Maw",
  45380. image: {
  45381. source: "./media/characters/uvula/maw.svg"
  45382. }
  45383. },
  45384. },
  45385. [
  45386. {
  45387. name: "Original Size",
  45388. height: math.unit(14, "inches")
  45389. },
  45390. {
  45391. name: "Human Size",
  45392. height: math.unit(6, "feet")
  45393. },
  45394. {
  45395. name: "Big",
  45396. height: math.unit(42, "feet"),
  45397. default: true
  45398. },
  45399. {
  45400. name: "Bigger",
  45401. height: math.unit(100, "feet")
  45402. },
  45403. ]
  45404. ))
  45405. characterMakers.push(() => makeCharacter(
  45406. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45407. {
  45408. front: {
  45409. height: math.unit(5 + 11/12, "feet"),
  45410. name: "Front",
  45411. image: {
  45412. source: "./media/characters/lannah/front.svg",
  45413. extra: 1208/1113,
  45414. bottom: 97/1305
  45415. }
  45416. },
  45417. },
  45418. [
  45419. {
  45420. name: "Normal",
  45421. height: math.unit(5 + 11/12, "feet"),
  45422. default: true
  45423. },
  45424. ]
  45425. ))
  45426. characterMakers.push(() => makeCharacter(
  45427. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45428. {
  45429. front: {
  45430. height: math.unit(6 + 3/12, "feet"),
  45431. weight: math.unit(3.5, "tons"),
  45432. name: "Front",
  45433. image: {
  45434. source: "./media/characters/emberflame/front.svg",
  45435. extra: 1198/672,
  45436. bottom: 82/1280
  45437. }
  45438. },
  45439. side: {
  45440. height: math.unit(6 + 3/12, "feet"),
  45441. weight: math.unit(3.5, "tons"),
  45442. name: "Side",
  45443. image: {
  45444. source: "./media/characters/emberflame/side.svg",
  45445. extra: 938/527,
  45446. bottom: 56/994
  45447. }
  45448. },
  45449. },
  45450. [
  45451. {
  45452. name: "Normal",
  45453. height: math.unit(6 + 3/12, "feet"),
  45454. default: true
  45455. },
  45456. ]
  45457. ))
  45458. characterMakers.push(() => makeCharacter(
  45459. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45460. {
  45461. side: {
  45462. height: math.unit(17.5, "feet"),
  45463. weight: math.unit(35, "tons"),
  45464. name: "Side",
  45465. image: {
  45466. source: "./media/characters/sophie-ambrose/side.svg",
  45467. extra: 1573/1242,
  45468. bottom: 71/1644
  45469. }
  45470. },
  45471. maw: {
  45472. height: math.unit(7.4, "feet"),
  45473. name: "Maw",
  45474. image: {
  45475. source: "./media/characters/sophie-ambrose/maw.svg"
  45476. }
  45477. },
  45478. },
  45479. [
  45480. {
  45481. name: "Normal",
  45482. height: math.unit(17.5, "feet"),
  45483. default: true
  45484. },
  45485. ]
  45486. ))
  45487. characterMakers.push(() => makeCharacter(
  45488. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45489. {
  45490. front: {
  45491. height: math.unit(280, "feet"),
  45492. weight: math.unit(550, "tons"),
  45493. name: "Front",
  45494. image: {
  45495. source: "./media/characters/king-mugi/front.svg",
  45496. extra: 1102/947,
  45497. bottom: 104/1206
  45498. }
  45499. },
  45500. },
  45501. [
  45502. {
  45503. name: "King Mugi",
  45504. height: math.unit(280, "feet"),
  45505. default: true
  45506. },
  45507. ]
  45508. ))
  45509. characterMakers.push(() => makeCharacter(
  45510. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45511. {
  45512. female: {
  45513. height: math.unit(300, "meters"),
  45514. name: "Front",
  45515. image: {
  45516. source: "./media/characters/nova-fox/female.svg",
  45517. extra: 664/632,
  45518. bottom: 51/715
  45519. },
  45520. form: "female",
  45521. default: true
  45522. },
  45523. male: {
  45524. height: math.unit(300, "meters"),
  45525. name: "Front",
  45526. image: {
  45527. source: "./media/characters/nova-fox/male.svg",
  45528. extra: 663/631,
  45529. bottom: 30/693
  45530. },
  45531. form: "male",
  45532. default: true
  45533. },
  45534. },
  45535. [
  45536. {
  45537. name: "Macro",
  45538. height: math.unit(300, "meters"),
  45539. default: true,
  45540. allForms: true
  45541. },
  45542. ],
  45543. {
  45544. "female": {
  45545. name: "Female",
  45546. default: true
  45547. },
  45548. "male": {
  45549. name: "Male",
  45550. },
  45551. }
  45552. ))
  45553. characterMakers.push(() => makeCharacter(
  45554. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45555. {
  45556. front: {
  45557. height: math.unit(6 + 3/12, "feet"),
  45558. weight: math.unit(170, "lb"),
  45559. name: "Front",
  45560. image: {
  45561. source: "./media/characters/sam-bat/front.svg",
  45562. extra: 1601/1411,
  45563. bottom: 125/1726
  45564. }
  45565. },
  45566. back: {
  45567. height: math.unit(6 + 3/12, "feet"),
  45568. weight: math.unit(170, "lb"),
  45569. name: "Back",
  45570. image: {
  45571. source: "./media/characters/sam-bat/back.svg",
  45572. extra: 1577/1405,
  45573. bottom: 58/1635
  45574. }
  45575. },
  45576. },
  45577. [
  45578. {
  45579. name: "Normal",
  45580. height: math.unit(6 + 3/12, "feet"),
  45581. default: true
  45582. },
  45583. ]
  45584. ))
  45585. characterMakers.push(() => makeCharacter(
  45586. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45587. {
  45588. front: {
  45589. height: math.unit(59, "feet"),
  45590. weight: math.unit(40000, "lb"),
  45591. name: "Front",
  45592. image: {
  45593. source: "./media/characters/inari/front.svg",
  45594. extra: 1884/1350,
  45595. bottom: 95/1979
  45596. }
  45597. },
  45598. },
  45599. [
  45600. {
  45601. name: "Gigantamax",
  45602. height: math.unit(59, "feet"),
  45603. default: true
  45604. },
  45605. ]
  45606. ))
  45607. characterMakers.push(() => makeCharacter(
  45608. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45609. {
  45610. front: {
  45611. height: math.unit(5 + 8/12, "feet"),
  45612. name: "Front",
  45613. image: {
  45614. source: "./media/characters/elizabeth/front.svg",
  45615. extra: 1395/1298,
  45616. bottom: 54/1449
  45617. }
  45618. },
  45619. mouth: {
  45620. height: math.unit(1.97, "feet"),
  45621. name: "Mouth",
  45622. image: {
  45623. source: "./media/characters/elizabeth/mouth.svg"
  45624. }
  45625. },
  45626. foot: {
  45627. height: math.unit(1.17, "feet"),
  45628. name: "Foot",
  45629. image: {
  45630. source: "./media/characters/elizabeth/foot.svg"
  45631. }
  45632. },
  45633. },
  45634. [
  45635. {
  45636. name: "Normal",
  45637. height: math.unit(5 + 8/12, "feet"),
  45638. default: true
  45639. },
  45640. {
  45641. name: "Minimacro",
  45642. height: math.unit(18, "feet")
  45643. },
  45644. {
  45645. name: "Macro",
  45646. height: math.unit(180, "feet")
  45647. },
  45648. ]
  45649. ))
  45650. characterMakers.push(() => makeCharacter(
  45651. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45652. {
  45653. front: {
  45654. height: math.unit(5 + 2/12, "feet"),
  45655. name: "Front",
  45656. image: {
  45657. source: "./media/characters/october-gossamer/front.svg",
  45658. extra: 505/454,
  45659. bottom: 7/512
  45660. }
  45661. },
  45662. back: {
  45663. height: math.unit(5 + 2/12, "feet"),
  45664. name: "Back",
  45665. image: {
  45666. source: "./media/characters/october-gossamer/back.svg",
  45667. extra: 501/454,
  45668. bottom: 11/512
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(5 + 2/12, "feet"),
  45676. default: true
  45677. },
  45678. ]
  45679. ))
  45680. characterMakers.push(() => makeCharacter(
  45681. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45682. {
  45683. front: {
  45684. height: math.unit(5, "feet"),
  45685. name: "Front",
  45686. image: {
  45687. source: "./media/characters/epiglottis/front.svg",
  45688. extra: 923/849,
  45689. bottom: 17/940
  45690. }
  45691. },
  45692. },
  45693. [
  45694. {
  45695. name: "Original Size",
  45696. height: math.unit(10, "inches")
  45697. },
  45698. {
  45699. name: "Human Size",
  45700. height: math.unit(5, "feet"),
  45701. default: true
  45702. },
  45703. {
  45704. name: "Big",
  45705. height: math.unit(25, "feet")
  45706. },
  45707. {
  45708. name: "Bigger",
  45709. height: math.unit(50, "feet")
  45710. },
  45711. {
  45712. name: "oh lawd",
  45713. height: math.unit(75, "feet")
  45714. },
  45715. ]
  45716. ))
  45717. characterMakers.push(() => makeCharacter(
  45718. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45719. {
  45720. front: {
  45721. height: math.unit(2 + 4/12, "feet"),
  45722. weight: math.unit(60, "lb"),
  45723. name: "Front",
  45724. image: {
  45725. source: "./media/characters/lerm/front.svg",
  45726. extra: 796/790,
  45727. bottom: 79/875
  45728. }
  45729. },
  45730. },
  45731. [
  45732. {
  45733. name: "Normal",
  45734. height: math.unit(2 + 4/12, "feet"),
  45735. default: true
  45736. },
  45737. ]
  45738. ))
  45739. characterMakers.push(() => makeCharacter(
  45740. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45741. {
  45742. front: {
  45743. height: math.unit(5.5, "feet"),
  45744. weight: math.unit(130, "lb"),
  45745. name: "Front",
  45746. image: {
  45747. source: "./media/characters/xena-nebadon/front.svg",
  45748. extra: 1828/1730,
  45749. bottom: 79/1907
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Tiny Puppy",
  45756. height: math.unit(3, "inches")
  45757. },
  45758. {
  45759. name: "Normal",
  45760. height: math.unit(5.5, "feet"),
  45761. default: true
  45762. },
  45763. {
  45764. name: "Lotta Lady",
  45765. height: math.unit(12, "feet")
  45766. },
  45767. {
  45768. name: "Pretty Big",
  45769. height: math.unit(100, "feet")
  45770. },
  45771. {
  45772. name: "Big",
  45773. height: math.unit(500, "feet")
  45774. },
  45775. {
  45776. name: "Skyscraper Toys",
  45777. height: math.unit(2500, "feet")
  45778. },
  45779. {
  45780. name: "Plane Catcher",
  45781. height: math.unit(8, "miles")
  45782. },
  45783. {
  45784. name: "Planet Toys",
  45785. height: math.unit(15, "earths")
  45786. },
  45787. {
  45788. name: "Stardust",
  45789. height: math.unit(0.25, "galaxies")
  45790. },
  45791. {
  45792. name: "Snacks",
  45793. height: math.unit(70, "universes")
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45799. {
  45800. front: {
  45801. height: math.unit(1.6, "meters"),
  45802. weight: math.unit(60, "kg"),
  45803. name: "Front",
  45804. image: {
  45805. source: "./media/characters/bounty/front.svg",
  45806. extra: 1426/1308,
  45807. bottom: 15/1441
  45808. }
  45809. },
  45810. back: {
  45811. height: math.unit(1.6, "meters"),
  45812. weight: math.unit(60, "kg"),
  45813. name: "Back",
  45814. image: {
  45815. source: "./media/characters/bounty/back.svg",
  45816. extra: 1417/1307,
  45817. bottom: 8/1425
  45818. }
  45819. },
  45820. },
  45821. [
  45822. {
  45823. name: "Normal",
  45824. height: math.unit(1.6, "meters"),
  45825. default: true
  45826. },
  45827. {
  45828. name: "Macro",
  45829. height: math.unit(300, "meters")
  45830. },
  45831. ]
  45832. ))
  45833. characterMakers.push(() => makeCharacter(
  45834. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45835. {
  45836. front: {
  45837. height: math.unit(2 + 8/12, "feet"),
  45838. weight: math.unit(15, "lb"),
  45839. name: "Front",
  45840. image: {
  45841. source: "./media/characters/mochi/front.svg",
  45842. extra: 1022/852,
  45843. bottom: 435/1457
  45844. }
  45845. },
  45846. back: {
  45847. height: math.unit(2 + 8/12, "feet"),
  45848. weight: math.unit(15, "lb"),
  45849. name: "Back",
  45850. image: {
  45851. source: "./media/characters/mochi/back.svg",
  45852. extra: 1335/1119,
  45853. bottom: 39/1374
  45854. }
  45855. },
  45856. bird: {
  45857. height: math.unit(2 + 8/12, "feet"),
  45858. weight: math.unit(15, "lb"),
  45859. name: "Bird",
  45860. image: {
  45861. source: "./media/characters/mochi/bird.svg",
  45862. extra: 1251/1113,
  45863. bottom: 178/1429
  45864. }
  45865. },
  45866. kaiju: {
  45867. height: math.unit(154, "feet"),
  45868. weight: math.unit(1e7, "lb"),
  45869. name: "Kaiju",
  45870. image: {
  45871. source: "./media/characters/mochi/kaiju.svg",
  45872. extra: 460/324,
  45873. bottom: 40/500
  45874. }
  45875. },
  45876. head: {
  45877. height: math.unit(1.21, "feet"),
  45878. name: "Head",
  45879. image: {
  45880. source: "./media/characters/mochi/head.svg"
  45881. }
  45882. },
  45883. alternateTail: {
  45884. height: math.unit(2 + 8/12, "feet"),
  45885. weight: math.unit(45, "lb"),
  45886. name: "Alternate Tail",
  45887. image: {
  45888. source: "./media/characters/mochi/alternate-tail.svg",
  45889. extra: 139/76,
  45890. bottom: 45/184
  45891. }
  45892. },
  45893. },
  45894. [
  45895. {
  45896. name: "Micro",
  45897. height: math.unit(2, "inches")
  45898. },
  45899. {
  45900. name: "Normal",
  45901. height: math.unit(2 + 8/12, "feet"),
  45902. default: true
  45903. },
  45904. {
  45905. name: "Macro",
  45906. height: math.unit(106, "feet")
  45907. },
  45908. ]
  45909. ))
  45910. characterMakers.push(() => makeCharacter(
  45911. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45912. {
  45913. front: {
  45914. height: math.unit(5.67, "feet"),
  45915. weight: math.unit(135, "lb"),
  45916. name: "Front",
  45917. image: {
  45918. source: "./media/characters/sarel/front.svg",
  45919. extra: 865/788,
  45920. bottom: 97/962
  45921. }
  45922. },
  45923. back: {
  45924. height: math.unit(5.67, "feet"),
  45925. weight: math.unit(135, "lb"),
  45926. name: "Back",
  45927. image: {
  45928. source: "./media/characters/sarel/back.svg",
  45929. extra: 857/777,
  45930. bottom: 32/889
  45931. }
  45932. },
  45933. chozoan: {
  45934. height: math.unit(5.67, "feet"),
  45935. weight: math.unit(135, "lb"),
  45936. name: "Chozoan",
  45937. image: {
  45938. source: "./media/characters/sarel/chozoan.svg",
  45939. extra: 865/788,
  45940. bottom: 97/962
  45941. }
  45942. },
  45943. current: {
  45944. height: math.unit(5.67, "feet"),
  45945. weight: math.unit(135, "lb"),
  45946. name: "Current",
  45947. image: {
  45948. source: "./media/characters/sarel/current.svg",
  45949. extra: 865/788,
  45950. bottom: 97/962
  45951. }
  45952. },
  45953. head: {
  45954. height: math.unit(1.77, "feet"),
  45955. name: "Head",
  45956. image: {
  45957. source: "./media/characters/sarel/head.svg"
  45958. }
  45959. },
  45960. claws: {
  45961. height: math.unit(1.8, "feet"),
  45962. name: "Claws",
  45963. image: {
  45964. source: "./media/characters/sarel/claws.svg"
  45965. }
  45966. },
  45967. clawsAlt: {
  45968. height: math.unit(1.8, "feet"),
  45969. name: "Claws-alt",
  45970. image: {
  45971. source: "./media/characters/sarel/claws-alt.svg"
  45972. }
  45973. },
  45974. },
  45975. [
  45976. {
  45977. name: "Normal",
  45978. height: math.unit(5.67, "feet"),
  45979. default: true
  45980. },
  45981. ]
  45982. ))
  45983. characterMakers.push(() => makeCharacter(
  45984. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45985. {
  45986. front: {
  45987. height: math.unit(5500, "feet"),
  45988. name: "Front",
  45989. image: {
  45990. source: "./media/characters/alyonia/front.svg",
  45991. extra: 1200/1135,
  45992. bottom: 29/1229
  45993. }
  45994. },
  45995. back: {
  45996. height: math.unit(5500, "feet"),
  45997. name: "Back",
  45998. image: {
  45999. source: "./media/characters/alyonia/back.svg",
  46000. extra: 1205/1138,
  46001. bottom: 10/1215
  46002. }
  46003. },
  46004. },
  46005. [
  46006. {
  46007. name: "Small",
  46008. height: math.unit(10, "feet")
  46009. },
  46010. {
  46011. name: "Macro",
  46012. height: math.unit(500, "feet")
  46013. },
  46014. {
  46015. name: "Mega Macro",
  46016. height: math.unit(5500, "feet"),
  46017. default: true
  46018. },
  46019. {
  46020. name: "Mega Macro+",
  46021. height: math.unit(500000, "feet")
  46022. },
  46023. {
  46024. name: "Giga Macro",
  46025. height: math.unit(3000, "miles")
  46026. },
  46027. {
  46028. name: "Tera Macro",
  46029. height: math.unit(2.8e6, "miles")
  46030. },
  46031. {
  46032. name: "Galactic",
  46033. height: math.unit(120000, "lightyears")
  46034. },
  46035. ]
  46036. ))
  46037. characterMakers.push(() => makeCharacter(
  46038. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46039. {
  46040. werewolf: {
  46041. height: math.unit(8, "feet"),
  46042. weight: math.unit(425, "lb"),
  46043. name: "Werewolf",
  46044. image: {
  46045. source: "./media/characters/autumn/werewolf.svg",
  46046. extra: 2154/2031,
  46047. bottom: 160/2314
  46048. }
  46049. },
  46050. human: {
  46051. height: math.unit(5 + 8/12, "feet"),
  46052. weight: math.unit(150, "lb"),
  46053. name: "Human",
  46054. image: {
  46055. source: "./media/characters/autumn/human.svg",
  46056. extra: 1200/1149,
  46057. bottom: 30/1230
  46058. }
  46059. },
  46060. },
  46061. [
  46062. {
  46063. name: "Normal",
  46064. height: math.unit(8, "feet"),
  46065. default: true
  46066. },
  46067. ]
  46068. ))
  46069. characterMakers.push(() => makeCharacter(
  46070. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46071. {
  46072. front: {
  46073. height: math.unit(8 + 5/12, "feet"),
  46074. weight: math.unit(825, "lb"),
  46075. name: "Front",
  46076. image: {
  46077. source: "./media/characters/cobalt-charizard/front.svg",
  46078. extra: 1268/1155,
  46079. bottom: 122/1390
  46080. }
  46081. },
  46082. side: {
  46083. height: math.unit(8 + 5/12, "feet"),
  46084. weight: math.unit(825, "lb"),
  46085. name: "Side",
  46086. image: {
  46087. source: "./media/characters/cobalt-charizard/side.svg",
  46088. extra: 1348/1257,
  46089. bottom: 58/1406
  46090. }
  46091. },
  46092. gMax: {
  46093. height: math.unit(134 + 11/12, "feet"),
  46094. name: "G-Max",
  46095. image: {
  46096. source: "./media/characters/cobalt-charizard/g-max.svg",
  46097. extra: 1835/1541,
  46098. bottom: 151/1986
  46099. }
  46100. },
  46101. },
  46102. [
  46103. {
  46104. name: "Normal",
  46105. height: math.unit(8 + 5/12, "feet"),
  46106. default: true
  46107. },
  46108. ]
  46109. ))
  46110. characterMakers.push(() => makeCharacter(
  46111. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46112. {
  46113. front: {
  46114. height: math.unit(6 + 3/12, "feet"),
  46115. weight: math.unit(210, "lb"),
  46116. name: "Front",
  46117. image: {
  46118. source: "./media/characters/stella/front.svg",
  46119. extra: 3549/3335,
  46120. bottom: 51/3600
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Normal",
  46127. height: math.unit(6 + 3/12, "feet"),
  46128. default: true
  46129. },
  46130. ]
  46131. ))
  46132. characterMakers.push(() => makeCharacter(
  46133. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46134. {
  46135. front: {
  46136. height: math.unit(5, "feet"),
  46137. weight: math.unit(90, "lb"),
  46138. name: "Front",
  46139. image: {
  46140. source: "./media/characters/riley-bishop/front.svg",
  46141. extra: 1450/1428,
  46142. bottom: 152/1602
  46143. }
  46144. },
  46145. },
  46146. [
  46147. {
  46148. name: "Normal",
  46149. height: math.unit(5, "feet"),
  46150. default: true
  46151. },
  46152. ]
  46153. ))
  46154. characterMakers.push(() => makeCharacter(
  46155. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46156. {
  46157. side: {
  46158. height: math.unit(8 + 2/12, "feet"),
  46159. weight: math.unit(500, "kg"),
  46160. name: "Side",
  46161. image: {
  46162. source: "./media/characters/theo-arcanine/side.svg",
  46163. extra: 1342/1074,
  46164. bottom: 111/1453
  46165. }
  46166. },
  46167. },
  46168. [
  46169. {
  46170. name: "Normal",
  46171. height: math.unit(8 + 2/12, "feet"),
  46172. default: true
  46173. },
  46174. ]
  46175. ))
  46176. characterMakers.push(() => makeCharacter(
  46177. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46178. {
  46179. front: {
  46180. height: math.unit(4, "feet"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/kali/front.svg",
  46184. extra: 1074/867,
  46185. bottom: 34/1108
  46186. }
  46187. },
  46188. back: {
  46189. height: math.unit(4, "feet"),
  46190. name: "Back",
  46191. image: {
  46192. source: "./media/characters/kali/back.svg",
  46193. extra: 1068/863,
  46194. bottom: 26/1094
  46195. }
  46196. },
  46197. frontAlt: {
  46198. height: math.unit(4, "feet"),
  46199. name: "Front (Alt)",
  46200. image: {
  46201. source: "./media/characters/kali/front-alt.svg",
  46202. extra: 1921/1357,
  46203. bottom: 70/1991
  46204. }
  46205. },
  46206. },
  46207. [
  46208. {
  46209. name: "Normal",
  46210. height: math.unit(4, "feet"),
  46211. default: true
  46212. },
  46213. {
  46214. name: "Big'vali",
  46215. height: math.unit(11, "feet")
  46216. },
  46217. {
  46218. name: "Macro",
  46219. height: math.unit(32, "meters")
  46220. },
  46221. {
  46222. name: "Macro+",
  46223. height: math.unit(150, "meters")
  46224. },
  46225. {
  46226. name: "Megamacro",
  46227. height: math.unit(7500, "meters")
  46228. },
  46229. {
  46230. name: "Megamacro+",
  46231. height: math.unit(80, "kilometers")
  46232. },
  46233. ]
  46234. ))
  46235. characterMakers.push(() => makeCharacter(
  46236. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46237. {
  46238. side: {
  46239. height: math.unit(5 + 11/12, "feet"),
  46240. weight: math.unit(236, "lb"),
  46241. name: "Side",
  46242. image: {
  46243. source: "./media/characters/gapp/side.svg",
  46244. extra: 775/340,
  46245. bottom: 58/833
  46246. }
  46247. },
  46248. mouth: {
  46249. height: math.unit(2.98, "feet"),
  46250. name: "Mouth",
  46251. image: {
  46252. source: "./media/characters/gapp/mouth.svg"
  46253. }
  46254. },
  46255. },
  46256. [
  46257. {
  46258. name: "Normal",
  46259. height: math.unit(5 + 1/12, "feet"),
  46260. default: true
  46261. },
  46262. ]
  46263. ))
  46264. characterMakers.push(() => makeCharacter(
  46265. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46266. {
  46267. front: {
  46268. height: math.unit(6, "feet"),
  46269. name: "Front",
  46270. image: {
  46271. source: "./media/characters/persephone/front.svg",
  46272. extra: 1895/1717,
  46273. bottom: 96/1991
  46274. }
  46275. },
  46276. back: {
  46277. height: math.unit(6, "feet"),
  46278. name: "Back",
  46279. image: {
  46280. source: "./media/characters/persephone/back.svg",
  46281. extra: 1868/1679,
  46282. bottom: 26/1894
  46283. }
  46284. },
  46285. casual: {
  46286. height: math.unit(6, "feet"),
  46287. name: "Casual",
  46288. image: {
  46289. source: "./media/characters/persephone/casual.svg",
  46290. extra: 1713/1541,
  46291. bottom: 76/1789
  46292. }
  46293. },
  46294. gaming: {
  46295. height: math.unit(3.55, "feet"),
  46296. name: "Gaming",
  46297. image: {
  46298. source: "./media/characters/persephone/gaming.svg",
  46299. extra: 1242/1038,
  46300. bottom: 66/1308
  46301. }
  46302. },
  46303. head: {
  46304. height: math.unit(2.15, "feet"),
  46305. name: "😐",
  46306. image: {
  46307. source: "./media/characters/persephone/head.svg"
  46308. }
  46309. },
  46310. talking: {
  46311. height: math.unit(2.5, "feet"),
  46312. name: "💬",
  46313. image: {
  46314. source: "./media/characters/persephone/talking.svg"
  46315. }
  46316. },
  46317. hmm: {
  46318. height: math.unit(2.28, "feet"),
  46319. name: "🤨",
  46320. image: {
  46321. source: "./media/characters/persephone/hmm.svg"
  46322. }
  46323. },
  46324. },
  46325. [
  46326. {
  46327. name: "Human Size",
  46328. height: math.unit(6, "feet")
  46329. },
  46330. {
  46331. name: "Big Steppy",
  46332. height: math.unit(600, "meters"),
  46333. default: true
  46334. },
  46335. {
  46336. name: "Galaxy Brain",
  46337. height: math.unit(1, "zettameter")
  46338. },
  46339. ]
  46340. ))
  46341. characterMakers.push(() => makeCharacter(
  46342. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46343. {
  46344. front: {
  46345. height: math.unit(1.85, "meters"),
  46346. name: "Front",
  46347. image: {
  46348. source: "./media/characters/riley-foxthing/front.svg",
  46349. extra: 1495/1354,
  46350. bottom: 122/1617
  46351. }
  46352. },
  46353. frontAlt: {
  46354. height: math.unit(1.85, "meters"),
  46355. name: "Front (Alt)",
  46356. image: {
  46357. source: "./media/characters/riley-foxthing/front-alt.svg",
  46358. extra: 1572/1389,
  46359. bottom: 116/1688
  46360. }
  46361. },
  46362. },
  46363. [
  46364. {
  46365. name: "Normal Sized",
  46366. height: math.unit(1.85, "meters"),
  46367. default: true
  46368. },
  46369. {
  46370. name: "Quite Sizable",
  46371. height: math.unit(5, "meters")
  46372. },
  46373. {
  46374. name: "Rather Large",
  46375. height: math.unit(20, "meters")
  46376. },
  46377. {
  46378. name: "Macro",
  46379. height: math.unit(450, "meters")
  46380. },
  46381. {
  46382. name: "Giga",
  46383. height: math.unit(5, "km")
  46384. },
  46385. ]
  46386. ))
  46387. characterMakers.push(() => makeCharacter(
  46388. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46389. {
  46390. front: {
  46391. height: math.unit(6, "feet"),
  46392. weight: math.unit(200, "lb"),
  46393. name: "Front",
  46394. image: {
  46395. source: "./media/characters/blizzard/front.svg",
  46396. extra: 1136/990,
  46397. bottom: 136/1272
  46398. }
  46399. },
  46400. back: {
  46401. height: math.unit(6, "feet"),
  46402. weight: math.unit(200, "lb"),
  46403. name: "Back",
  46404. image: {
  46405. source: "./media/characters/blizzard/back.svg",
  46406. extra: 1175/1034,
  46407. bottom: 97/1272
  46408. }
  46409. },
  46410. sitting: {
  46411. height: math.unit(3.725, "feet"),
  46412. weight: math.unit(200, "lb"),
  46413. name: "Sitting",
  46414. image: {
  46415. source: "./media/characters/blizzard/sitting.svg",
  46416. extra: 581/485,
  46417. bottom: 90/671
  46418. }
  46419. },
  46420. frontWizard: {
  46421. height: math.unit(7.9, "feet"),
  46422. weight: math.unit(200, "lb"),
  46423. name: "Front (Wizard)",
  46424. image: {
  46425. source: "./media/characters/blizzard/front-wizard.svg"
  46426. }
  46427. },
  46428. backWizard: {
  46429. height: math.unit(7.9, "feet"),
  46430. weight: math.unit(200, "lb"),
  46431. name: "Back (Wizard)",
  46432. image: {
  46433. source: "./media/characters/blizzard/back-wizard.svg"
  46434. }
  46435. },
  46436. frontNsfw: {
  46437. height: math.unit(6, "feet"),
  46438. weight: math.unit(200, "lb"),
  46439. name: "Front (NSFW)",
  46440. image: {
  46441. source: "./media/characters/blizzard/front-nsfw.svg",
  46442. extra: 1136/990,
  46443. bottom: 136/1272
  46444. }
  46445. },
  46446. backNsfw: {
  46447. height: math.unit(6, "feet"),
  46448. weight: math.unit(200, "lb"),
  46449. name: "Back (NSFW)",
  46450. image: {
  46451. source: "./media/characters/blizzard/back-nsfw.svg",
  46452. extra: 1175/1034,
  46453. bottom: 97/1272
  46454. }
  46455. },
  46456. sittingNsfw: {
  46457. height: math.unit(3.725, "feet"),
  46458. weight: math.unit(200, "lb"),
  46459. name: "Sitting (NSFW)",
  46460. image: {
  46461. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46462. extra: 581/485,
  46463. bottom: 90/671
  46464. }
  46465. },
  46466. wizardFrontNsfw: {
  46467. height: math.unit(7.9, "feet"),
  46468. weight: math.unit(200, "lb"),
  46469. name: "Wizard (Front, NSFW)",
  46470. image: {
  46471. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46472. }
  46473. },
  46474. },
  46475. [
  46476. {
  46477. name: "Normal",
  46478. height: math.unit(6, "feet"),
  46479. default: true
  46480. },
  46481. ]
  46482. ))
  46483. characterMakers.push(() => makeCharacter(
  46484. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46485. {
  46486. front: {
  46487. height: math.unit(5 + 2/12, "feet"),
  46488. name: "Front",
  46489. image: {
  46490. source: "./media/characters/lumi/front.svg",
  46491. extra: 1328/1268,
  46492. bottom: 103/1431
  46493. }
  46494. },
  46495. back: {
  46496. height: math.unit(5 + 2/12, "feet"),
  46497. name: "Back",
  46498. image: {
  46499. source: "./media/characters/lumi/back.svg",
  46500. extra: 1381/1327,
  46501. bottom: 43/1424
  46502. }
  46503. },
  46504. },
  46505. [
  46506. {
  46507. name: "Normal",
  46508. height: math.unit(5 + 2/12, "feet"),
  46509. default: true
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46515. {
  46516. front: {
  46517. height: math.unit(5 + 9/12, "feet"),
  46518. name: "Front",
  46519. image: {
  46520. source: "./media/characters/aliya-cotton/front.svg",
  46521. extra: 577/564,
  46522. bottom: 29/606
  46523. }
  46524. },
  46525. },
  46526. [
  46527. {
  46528. name: "Normal",
  46529. height: math.unit(5 + 9/12, "feet"),
  46530. default: true
  46531. },
  46532. ]
  46533. ))
  46534. characterMakers.push(() => makeCharacter(
  46535. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46536. {
  46537. front: {
  46538. height: math.unit(2.7, "meters"),
  46539. weight: math.unit(25000, "lb"),
  46540. name: "Front",
  46541. image: {
  46542. source: "./media/characters/noah-luxray/front.svg",
  46543. extra: 1644/825,
  46544. bottom: 339/1983
  46545. }
  46546. },
  46547. side: {
  46548. height: math.unit(2.97, "meters"),
  46549. weight: math.unit(25000, "lb"),
  46550. name: "Side",
  46551. image: {
  46552. source: "./media/characters/noah-luxray/side.svg",
  46553. extra: 1319/650,
  46554. bottom: 163/1482
  46555. }
  46556. },
  46557. dick: {
  46558. height: math.unit(7.4, "feet"),
  46559. weight: math.unit(2500, "lb"),
  46560. name: "Dick",
  46561. image: {
  46562. source: "./media/characters/noah-luxray/dick.svg"
  46563. }
  46564. },
  46565. dickAlt: {
  46566. height: math.unit(10.83, "feet"),
  46567. weight: math.unit(2500, "lb"),
  46568. name: "Dick-alt",
  46569. image: {
  46570. source: "./media/characters/noah-luxray/dick-alt.svg"
  46571. }
  46572. },
  46573. },
  46574. [
  46575. {
  46576. name: "BIG",
  46577. height: math.unit(2.7, "meters"),
  46578. default: true
  46579. },
  46580. ]
  46581. ))
  46582. characterMakers.push(() => makeCharacter(
  46583. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46584. {
  46585. standing: {
  46586. height: math.unit(183, "cm"),
  46587. weight: math.unit(68, "kg"),
  46588. name: "Standing",
  46589. image: {
  46590. source: "./media/characters/arion/standing.svg",
  46591. extra: 1869/1807,
  46592. bottom: 93/1962
  46593. }
  46594. },
  46595. reclining: {
  46596. height: math.unit(70.5, "cm"),
  46597. weight: math.unit(68, "lb"),
  46598. name: "Reclining",
  46599. image: {
  46600. source: "./media/characters/arion/reclining.svg",
  46601. extra: 937/870,
  46602. bottom: 63/1000
  46603. }
  46604. },
  46605. },
  46606. [
  46607. {
  46608. name: "Colossus Size, Low",
  46609. height: math.unit(33, "meters"),
  46610. default: true
  46611. },
  46612. {
  46613. name: "Colossus Size, Mid",
  46614. height: math.unit(52, "meters")
  46615. },
  46616. {
  46617. name: "Colossus Size, High",
  46618. height: math.unit(60, "meters")
  46619. },
  46620. {
  46621. name: "Titan Size, Low",
  46622. height: math.unit(91, "meters"),
  46623. },
  46624. {
  46625. name: "Titan Size, Mid",
  46626. height: math.unit(122, "meters")
  46627. },
  46628. {
  46629. name: "Titan Size, High",
  46630. height: math.unit(162, "meters")
  46631. },
  46632. ]
  46633. ))
  46634. characterMakers.push(() => makeCharacter(
  46635. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46636. {
  46637. front: {
  46638. height: math.unit(53, "meters"),
  46639. name: "Front",
  46640. image: {
  46641. source: "./media/characters/stellar-marbey/front.svg",
  46642. extra: 1913/1805,
  46643. bottom: 92/2005
  46644. }
  46645. },
  46646. back: {
  46647. height: math.unit(53, "meters"),
  46648. name: "Back",
  46649. image: {
  46650. source: "./media/characters/stellar-marbey/back.svg",
  46651. extra: 1960/1851,
  46652. bottom: 28/1988
  46653. }
  46654. },
  46655. mouth: {
  46656. height: math.unit(3.5, "meters"),
  46657. name: "Mouth",
  46658. image: {
  46659. source: "./media/characters/stellar-marbey/mouth.svg"
  46660. }
  46661. },
  46662. },
  46663. [
  46664. {
  46665. name: "Macro",
  46666. height: math.unit(53, "meters"),
  46667. default: true
  46668. },
  46669. ]
  46670. ))
  46671. characterMakers.push(() => makeCharacter(
  46672. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46673. {
  46674. front: {
  46675. height: math.unit(8 + 1/12, "feet"),
  46676. weight: math.unit(233, "lb"),
  46677. name: "Front",
  46678. image: {
  46679. source: "./media/characters/matsu/front.svg",
  46680. extra: 832/772,
  46681. bottom: 40/872
  46682. }
  46683. },
  46684. back: {
  46685. height: math.unit(8 + 1/12, "feet"),
  46686. weight: math.unit(233, "lb"),
  46687. name: "Back",
  46688. image: {
  46689. source: "./media/characters/matsu/back.svg",
  46690. extra: 839/780,
  46691. bottom: 47/886
  46692. }
  46693. },
  46694. },
  46695. [
  46696. {
  46697. name: "Normal",
  46698. height: math.unit(8 + 1/12, "feet"),
  46699. default: true
  46700. },
  46701. ]
  46702. ))
  46703. characterMakers.push(() => makeCharacter(
  46704. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46705. {
  46706. front: {
  46707. height: math.unit(4, "feet"),
  46708. weight: math.unit(148, "lb"),
  46709. name: "Front",
  46710. image: {
  46711. source: "./media/characters/thiz/front.svg",
  46712. extra: 1913/1748,
  46713. bottom: 62/1975
  46714. }
  46715. },
  46716. },
  46717. [
  46718. {
  46719. name: "Normal",
  46720. height: math.unit(4, "feet"),
  46721. default: true
  46722. },
  46723. ]
  46724. ))
  46725. characterMakers.push(() => makeCharacter(
  46726. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46727. {
  46728. front: {
  46729. height: math.unit(7 + 6/12, "feet"),
  46730. weight: math.unit(267, "lb"),
  46731. name: "Front",
  46732. image: {
  46733. source: "./media/characters/marcel/front.svg",
  46734. extra: 1221/1096,
  46735. bottom: 76/1297
  46736. }
  46737. },
  46738. },
  46739. [
  46740. {
  46741. name: "Normal",
  46742. height: math.unit(7 + 6/12, "feet"),
  46743. default: true
  46744. },
  46745. ]
  46746. ))
  46747. characterMakers.push(() => makeCharacter(
  46748. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46749. {
  46750. side: {
  46751. height: math.unit(42, "meters"),
  46752. name: "Side",
  46753. image: {
  46754. source: "./media/characters/flake/side.svg",
  46755. extra: 1525/1306,
  46756. bottom: 209/1734
  46757. }
  46758. },
  46759. },
  46760. [
  46761. {
  46762. name: "Normal",
  46763. height: math.unit(42, "meters"),
  46764. default: true
  46765. },
  46766. ]
  46767. ))
  46768. characterMakers.push(() => makeCharacter(
  46769. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46770. {
  46771. dressed: {
  46772. height: math.unit(6 + 4/12, "feet"),
  46773. weight: math.unit(520, "lb"),
  46774. name: "Dressed",
  46775. image: {
  46776. source: "./media/characters/someonne/dressed.svg",
  46777. extra: 1020/1010,
  46778. bottom: 178/1198
  46779. }
  46780. },
  46781. undressed: {
  46782. height: math.unit(6 + 4/12, "feet"),
  46783. weight: math.unit(520, "lb"),
  46784. name: "Undressed",
  46785. image: {
  46786. source: "./media/characters/someonne/undressed.svg",
  46787. extra: 1019/1014,
  46788. bottom: 169/1188
  46789. }
  46790. },
  46791. },
  46792. [
  46793. {
  46794. name: "Normal",
  46795. height: math.unit(6 + 4/12, "feet"),
  46796. default: true
  46797. },
  46798. ]
  46799. ))
  46800. characterMakers.push(() => makeCharacter(
  46801. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46802. {
  46803. front: {
  46804. height: math.unit(3, "feet"),
  46805. weight: math.unit(30, "lb"),
  46806. name: "Front",
  46807. image: {
  46808. source: "./media/characters/till/front.svg",
  46809. extra: 892/823,
  46810. bottom: 55/947
  46811. }
  46812. },
  46813. },
  46814. [
  46815. {
  46816. name: "Normal",
  46817. height: math.unit(3, "feet"),
  46818. default: true
  46819. },
  46820. ]
  46821. ))
  46822. characterMakers.push(() => makeCharacter(
  46823. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46824. {
  46825. front: {
  46826. height: math.unit(9 + 8/12, "feet"),
  46827. weight: math.unit(800, "lb"),
  46828. name: "Front",
  46829. image: {
  46830. source: "./media/characters/sydney-heki/front.svg",
  46831. extra: 1360/1300,
  46832. bottom: 22/1382
  46833. }
  46834. },
  46835. back: {
  46836. height: math.unit(9 + 8/12, "feet"),
  46837. weight: math.unit(800, "lb"),
  46838. name: "Back",
  46839. image: {
  46840. source: "./media/characters/sydney-heki/back.svg",
  46841. extra: 1356/1293,
  46842. bottom: 12/1368
  46843. }
  46844. },
  46845. frontDressed: {
  46846. height: math.unit(9 + 8/12, "feet"),
  46847. weight: math.unit(800, "lb"),
  46848. name: "Front-dressed",
  46849. image: {
  46850. source: "./media/characters/sydney-heki/front-dressed.svg",
  46851. extra: 1360/1300,
  46852. bottom: 22/1382
  46853. }
  46854. },
  46855. },
  46856. [
  46857. {
  46858. name: "Normal",
  46859. height: math.unit(9 + 8/12, "feet"),
  46860. default: true
  46861. },
  46862. {
  46863. name: "Macro",
  46864. height: math.unit(500, "feet")
  46865. },
  46866. {
  46867. name: "Megamacro",
  46868. height: math.unit(3.6, "miles")
  46869. },
  46870. ]
  46871. ))
  46872. characterMakers.push(() => makeCharacter(
  46873. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46874. {
  46875. front: {
  46876. height: math.unit(200, "cm"),
  46877. weight: math.unit(250, "lb"),
  46878. name: "Front",
  46879. image: {
  46880. source: "./media/characters/fowler-karlsson/front.svg",
  46881. extra: 897/845,
  46882. bottom: 123/1020
  46883. }
  46884. },
  46885. back: {
  46886. height: math.unit(200, "cm"),
  46887. weight: math.unit(250, "lb"),
  46888. name: "Back",
  46889. image: {
  46890. source: "./media/characters/fowler-karlsson/back.svg",
  46891. extra: 999/944,
  46892. bottom: 26/1025
  46893. }
  46894. },
  46895. dick: {
  46896. height: math.unit(1.92, "feet"),
  46897. weight: math.unit(150, "lb"),
  46898. name: "Dick",
  46899. image: {
  46900. source: "./media/characters/fowler-karlsson/dick.svg"
  46901. }
  46902. },
  46903. },
  46904. [
  46905. {
  46906. name: "Normal",
  46907. height: math.unit(200, "cm"),
  46908. default: true
  46909. },
  46910. {
  46911. name: "Smaller Macro",
  46912. height: math.unit(90, "m")
  46913. },
  46914. {
  46915. name: "Macro",
  46916. height: math.unit(150, "m")
  46917. },
  46918. {
  46919. name: "Bigger Macro",
  46920. height: math.unit(300, "m")
  46921. },
  46922. ]
  46923. ))
  46924. characterMakers.push(() => makeCharacter(
  46925. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46926. {
  46927. side: {
  46928. height: math.unit(8 + 2/12, "feet"),
  46929. weight: math.unit(1, "tonne"),
  46930. name: "Side",
  46931. image: {
  46932. source: "./media/characters/rylide/side.svg",
  46933. extra: 1318/1034,
  46934. bottom: 106/1424
  46935. }
  46936. },
  46937. sitting: {
  46938. height: math.unit(303, "cm"),
  46939. weight: math.unit(1, "tonne"),
  46940. name: "Sitting",
  46941. image: {
  46942. source: "./media/characters/rylide/sitting.svg",
  46943. extra: 1303/1103,
  46944. bottom: 36/1339
  46945. }
  46946. },
  46947. },
  46948. [
  46949. {
  46950. name: "Normal",
  46951. height: math.unit(8 + 2/12, "feet"),
  46952. default: true
  46953. },
  46954. ]
  46955. ))
  46956. characterMakers.push(() => makeCharacter(
  46957. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46958. {
  46959. front: {
  46960. height: math.unit(5 + 10/12, "feet"),
  46961. weight: math.unit(160, "lb"),
  46962. name: "Front",
  46963. image: {
  46964. source: "./media/characters/pudask/front.svg",
  46965. extra: 1616/1590,
  46966. bottom: 161/1777
  46967. }
  46968. },
  46969. },
  46970. [
  46971. {
  46972. name: "Ferret Height",
  46973. height: math.unit(2 + 5/12, "feet")
  46974. },
  46975. {
  46976. name: "Canon Height",
  46977. height: math.unit(5 + 10/12, "feet"),
  46978. default: true
  46979. },
  46980. ]
  46981. ))
  46982. characterMakers.push(() => makeCharacter(
  46983. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46984. {
  46985. front: {
  46986. height: math.unit(3 + 6/12, "feet"),
  46987. weight: math.unit(60, "lb"),
  46988. name: "Front",
  46989. image: {
  46990. source: "./media/characters/ramita/front.svg",
  46991. extra: 1402/1232,
  46992. bottom: 62/1464
  46993. }
  46994. },
  46995. dressed: {
  46996. height: math.unit(3 + 6/12, "feet"),
  46997. weight: math.unit(60, "lb"),
  46998. name: "Dressed",
  46999. image: {
  47000. source: "./media/characters/ramita/dressed.svg",
  47001. extra: 1534/1249,
  47002. bottom: 50/1584
  47003. }
  47004. },
  47005. },
  47006. [
  47007. {
  47008. name: "Normal",
  47009. height: math.unit(3 + 6/12, "feet"),
  47010. default: true
  47011. },
  47012. ]
  47013. ))
  47014. characterMakers.push(() => makeCharacter(
  47015. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47016. {
  47017. front: {
  47018. height: math.unit(8, "feet"),
  47019. name: "Front",
  47020. image: {
  47021. source: "./media/characters/ark/front.svg",
  47022. extra: 772/693,
  47023. bottom: 45/817
  47024. }
  47025. },
  47026. },
  47027. [
  47028. {
  47029. name: "Normal",
  47030. height: math.unit(8, "feet"),
  47031. default: true
  47032. },
  47033. ]
  47034. ))
  47035. characterMakers.push(() => makeCharacter(
  47036. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47037. {
  47038. front: {
  47039. height: math.unit(6, "feet"),
  47040. weight: math.unit(250, "lb"),
  47041. volume: math.unit(5/8, "gallons"),
  47042. name: "Front",
  47043. image: {
  47044. source: "./media/characters/ludwig-horn/front.svg",
  47045. extra: 1782/1635,
  47046. bottom: 96/1878
  47047. }
  47048. },
  47049. back: {
  47050. height: math.unit(6, "feet"),
  47051. weight: math.unit(250, "lb"),
  47052. volume: math.unit(5/8, "gallons"),
  47053. name: "Back",
  47054. image: {
  47055. source: "./media/characters/ludwig-horn/back.svg",
  47056. extra: 1874/1729,
  47057. bottom: 27/1901
  47058. }
  47059. },
  47060. dick: {
  47061. height: math.unit(1.05, "feet"),
  47062. weight: math.unit(15, "lb"),
  47063. volume: math.unit(5/8, "gallons"),
  47064. name: "Dick",
  47065. image: {
  47066. source: "./media/characters/ludwig-horn/dick.svg"
  47067. }
  47068. },
  47069. },
  47070. [
  47071. {
  47072. name: "Small",
  47073. height: math.unit(6, "feet")
  47074. },
  47075. {
  47076. name: "Typical",
  47077. height: math.unit(12, "feet"),
  47078. default: true
  47079. },
  47080. {
  47081. name: "Building",
  47082. height: math.unit(80, "feet")
  47083. },
  47084. {
  47085. name: "Town",
  47086. height: math.unit(800, "feet")
  47087. },
  47088. {
  47089. name: "Kingdom",
  47090. height: math.unit(80000, "feet")
  47091. },
  47092. {
  47093. name: "Planet",
  47094. height: math.unit(8000000, "feet")
  47095. },
  47096. {
  47097. name: "Universe",
  47098. height: math.unit(8000000000, "feet")
  47099. },
  47100. {
  47101. name: "Transcended",
  47102. height: math.unit(8e27, "feet")
  47103. },
  47104. ]
  47105. ))
  47106. characterMakers.push(() => makeCharacter(
  47107. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47108. {
  47109. front: {
  47110. height: math.unit(5, "feet"),
  47111. weight: math.unit(50, "kg"),
  47112. name: "Front",
  47113. image: {
  47114. source: "./media/characters/biot-avery/front.svg",
  47115. extra: 1295/1232,
  47116. bottom: 86/1381
  47117. }
  47118. },
  47119. },
  47120. [
  47121. {
  47122. name: "Normal",
  47123. height: math.unit(5, "feet"),
  47124. default: true
  47125. },
  47126. ]
  47127. ))
  47128. characterMakers.push(() => makeCharacter(
  47129. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47130. {
  47131. front: {
  47132. height: math.unit(6, "feet"),
  47133. name: "Front",
  47134. image: {
  47135. source: "./media/characters/kitsune-kiro/front.svg",
  47136. extra: 1270/1158,
  47137. bottom: 42/1312
  47138. }
  47139. },
  47140. frontAlt: {
  47141. height: math.unit(6, "feet"),
  47142. name: "Front-alt",
  47143. image: {
  47144. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47145. extra: 1130/1081,
  47146. bottom: 36/1166
  47147. }
  47148. },
  47149. },
  47150. [
  47151. {
  47152. name: "Smol",
  47153. height: math.unit(3, "feet")
  47154. },
  47155. {
  47156. name: "Normal",
  47157. height: math.unit(6, "feet"),
  47158. default: true
  47159. },
  47160. ]
  47161. ))
  47162. characterMakers.push(() => makeCharacter(
  47163. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47164. {
  47165. front: {
  47166. height: math.unit(6, "feet"),
  47167. weight: math.unit(125, "lb"),
  47168. name: "Front",
  47169. image: {
  47170. source: "./media/characters/jack-thatcher/front.svg",
  47171. extra: 1474/1370,
  47172. bottom: 26/1500
  47173. }
  47174. },
  47175. back: {
  47176. height: math.unit(6, "feet"),
  47177. weight: math.unit(125, "lb"),
  47178. name: "Back",
  47179. image: {
  47180. source: "./media/characters/jack-thatcher/back.svg",
  47181. extra: 1489/1384,
  47182. bottom: 18/1507
  47183. }
  47184. },
  47185. },
  47186. [
  47187. {
  47188. name: "Normal",
  47189. height: math.unit(6, "feet"),
  47190. default: true
  47191. },
  47192. {
  47193. name: "Macro",
  47194. height: math.unit(75, "feet")
  47195. },
  47196. {
  47197. name: "Macro-er",
  47198. height: math.unit(250, "feet")
  47199. },
  47200. ]
  47201. ))
  47202. characterMakers.push(() => makeCharacter(
  47203. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47204. {
  47205. front: {
  47206. height: math.unit(7, "feet"),
  47207. weight: math.unit(110, "kg"),
  47208. name: "Front",
  47209. image: {
  47210. source: "./media/characters/max-hyper/front.svg",
  47211. extra: 1969/1881,
  47212. bottom: 49/2018
  47213. }
  47214. },
  47215. },
  47216. [
  47217. {
  47218. name: "Normal",
  47219. height: math.unit(7, "feet"),
  47220. default: true
  47221. },
  47222. ]
  47223. ))
  47224. characterMakers.push(() => makeCharacter(
  47225. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47226. {
  47227. front: {
  47228. height: math.unit(5 + 5/12, "feet"),
  47229. weight: math.unit(160, "lb"),
  47230. name: "Front",
  47231. image: {
  47232. source: "./media/characters/spook/front.svg",
  47233. extra: 794/791,
  47234. bottom: 54/848
  47235. }
  47236. },
  47237. back: {
  47238. height: math.unit(5 + 5/12, "feet"),
  47239. weight: math.unit(160, "lb"),
  47240. name: "Back",
  47241. image: {
  47242. source: "./media/characters/spook/back.svg",
  47243. extra: 812/798,
  47244. bottom: 32/844
  47245. }
  47246. },
  47247. },
  47248. [
  47249. {
  47250. name: "Normal",
  47251. height: math.unit(5 + 5/12, "feet"),
  47252. default: true
  47253. },
  47254. ]
  47255. ))
  47256. characterMakers.push(() => makeCharacter(
  47257. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47258. {
  47259. front: {
  47260. height: math.unit(18, "feet"),
  47261. name: "Front",
  47262. image: {
  47263. source: "./media/characters/xeaduulix/front.svg",
  47264. extra: 1380/1166,
  47265. bottom: 110/1490
  47266. }
  47267. },
  47268. back: {
  47269. height: math.unit(18, "feet"),
  47270. name: "Back",
  47271. image: {
  47272. source: "./media/characters/xeaduulix/back.svg",
  47273. extra: 1592/1170,
  47274. bottom: 128/1720
  47275. }
  47276. },
  47277. frontNsfw: {
  47278. height: math.unit(18, "feet"),
  47279. name: "Front (NSFW)",
  47280. image: {
  47281. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47282. extra: 1380/1166,
  47283. bottom: 110/1490
  47284. }
  47285. },
  47286. backNsfw: {
  47287. height: math.unit(18, "feet"),
  47288. name: "Back (NSFW)",
  47289. image: {
  47290. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47291. extra: 1592/1170,
  47292. bottom: 128/1720
  47293. }
  47294. },
  47295. },
  47296. [
  47297. {
  47298. name: "Normal",
  47299. height: math.unit(18, "feet"),
  47300. default: true
  47301. },
  47302. ]
  47303. ))
  47304. characterMakers.push(() => makeCharacter(
  47305. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47306. {
  47307. spreadWings: {
  47308. height: math.unit(20, "feet"),
  47309. name: "Spread Wings",
  47310. image: {
  47311. source: "./media/characters/fledge/spread-wings.svg",
  47312. extra: 693/635,
  47313. bottom: 26/719
  47314. }
  47315. },
  47316. front: {
  47317. height: math.unit(20, "feet"),
  47318. name: "Front",
  47319. image: {
  47320. source: "./media/characters/fledge/front.svg",
  47321. extra: 684/637,
  47322. bottom: 18/702
  47323. }
  47324. },
  47325. frontAlt: {
  47326. height: math.unit(20, "feet"),
  47327. name: "Front (Alt)",
  47328. image: {
  47329. source: "./media/characters/fledge/front-alt.svg",
  47330. extra: 708/664,
  47331. bottom: 13/721
  47332. }
  47333. },
  47334. back: {
  47335. height: math.unit(20, "feet"),
  47336. name: "Back",
  47337. image: {
  47338. source: "./media/characters/fledge/back.svg",
  47339. extra: 718/634,
  47340. bottom: 22/740
  47341. }
  47342. },
  47343. head: {
  47344. height: math.unit(5.55, "feet"),
  47345. name: "Head",
  47346. image: {
  47347. source: "./media/characters/fledge/head.svg"
  47348. }
  47349. },
  47350. headAlt: {
  47351. height: math.unit(5.1, "feet"),
  47352. name: "Head (Alt)",
  47353. image: {
  47354. source: "./media/characters/fledge/head-alt.svg"
  47355. }
  47356. },
  47357. },
  47358. [
  47359. {
  47360. name: "Small",
  47361. height: math.unit(6 + 2/12, "feet")
  47362. },
  47363. {
  47364. name: "Big",
  47365. height: math.unit(20, "feet"),
  47366. default: true
  47367. },
  47368. {
  47369. name: "Giant",
  47370. height: math.unit(100, "feet")
  47371. },
  47372. {
  47373. name: "Macro",
  47374. height: math.unit(200, "feet")
  47375. },
  47376. ]
  47377. ))
  47378. characterMakers.push(() => makeCharacter(
  47379. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47380. {
  47381. front: {
  47382. height: math.unit(1, "meter"),
  47383. name: "Front",
  47384. image: {
  47385. source: "./media/characters/atlas-morenai/front.svg",
  47386. extra: 1275/1043,
  47387. bottom: 19/1294
  47388. }
  47389. },
  47390. back: {
  47391. height: math.unit(1, "meter"),
  47392. name: "Back",
  47393. image: {
  47394. source: "./media/characters/atlas-morenai/back.svg",
  47395. extra: 1141/1001,
  47396. bottom: 25/1166
  47397. }
  47398. },
  47399. },
  47400. [
  47401. {
  47402. name: "Normal",
  47403. height: math.unit(1, "meter"),
  47404. default: true
  47405. },
  47406. {
  47407. name: "Magic-Infused",
  47408. height: math.unit(5, "meters")
  47409. },
  47410. ]
  47411. ))
  47412. characterMakers.push(() => makeCharacter(
  47413. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47414. {
  47415. front: {
  47416. height: math.unit(5, "meters"),
  47417. name: "Front",
  47418. image: {
  47419. source: "./media/characters/cintia/front.svg",
  47420. extra: 1312/1228,
  47421. bottom: 38/1350
  47422. }
  47423. },
  47424. back: {
  47425. height: math.unit(5, "meters"),
  47426. name: "Back",
  47427. image: {
  47428. source: "./media/characters/cintia/back.svg",
  47429. extra: 1260/1166,
  47430. bottom: 98/1358
  47431. }
  47432. },
  47433. frontDick: {
  47434. height: math.unit(5, "meters"),
  47435. name: "Front (Dick)",
  47436. image: {
  47437. source: "./media/characters/cintia/front-dick.svg",
  47438. extra: 1312/1228,
  47439. bottom: 38/1350
  47440. }
  47441. },
  47442. backDick: {
  47443. height: math.unit(5, "meters"),
  47444. name: "Back (Dick)",
  47445. image: {
  47446. source: "./media/characters/cintia/back-dick.svg",
  47447. extra: 1260/1166,
  47448. bottom: 98/1358
  47449. }
  47450. },
  47451. bust: {
  47452. height: math.unit(1.97, "meters"),
  47453. name: "Bust",
  47454. image: {
  47455. source: "./media/characters/cintia/bust.svg",
  47456. extra: 617/565,
  47457. bottom: 0/617
  47458. }
  47459. },
  47460. },
  47461. [
  47462. {
  47463. name: "Normal",
  47464. height: math.unit(5, "meters"),
  47465. default: true
  47466. },
  47467. ]
  47468. ))
  47469. characterMakers.push(() => makeCharacter(
  47470. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47471. {
  47472. side: {
  47473. height: math.unit(100, "feet"),
  47474. name: "Side",
  47475. image: {
  47476. source: "./media/characters/denora/side.svg",
  47477. extra: 875/803,
  47478. bottom: 9/884
  47479. }
  47480. },
  47481. },
  47482. [
  47483. {
  47484. name: "Standard",
  47485. height: math.unit(100, "feet"),
  47486. default: true
  47487. },
  47488. {
  47489. name: "Grand",
  47490. height: math.unit(1000, "feet")
  47491. },
  47492. {
  47493. name: "Conquering",
  47494. height: math.unit(10000, "feet")
  47495. },
  47496. ]
  47497. ))
  47498. characterMakers.push(() => makeCharacter(
  47499. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47500. {
  47501. dressed: {
  47502. height: math.unit(8 + 5/12, "feet"),
  47503. weight: math.unit(700, "lb"),
  47504. name: "Dressed",
  47505. image: {
  47506. source: "./media/characters/kiva/dressed.svg",
  47507. extra: 1102/1055,
  47508. bottom: 60/1162
  47509. }
  47510. },
  47511. nude: {
  47512. height: math.unit(8 + 5/12, "feet"),
  47513. weight: math.unit(700, "lb"),
  47514. name: "Nude",
  47515. image: {
  47516. source: "./media/characters/kiva/nude.svg",
  47517. extra: 1102/1055,
  47518. bottom: 60/1162
  47519. }
  47520. },
  47521. },
  47522. [
  47523. {
  47524. name: "Base Height",
  47525. height: math.unit(8 + 5/12, "feet"),
  47526. default: true
  47527. },
  47528. {
  47529. name: "Macro",
  47530. height: math.unit(100, "feet")
  47531. },
  47532. {
  47533. name: "Max",
  47534. height: math.unit(3280, "feet")
  47535. },
  47536. ]
  47537. ))
  47538. characterMakers.push(() => makeCharacter(
  47539. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47540. {
  47541. front: {
  47542. height: math.unit(6 + 8/12, "feet"),
  47543. weight: math.unit(250, "lb"),
  47544. name: "Front",
  47545. image: {
  47546. source: "./media/characters/ztragon/front.svg",
  47547. extra: 1825/1684,
  47548. bottom: 98/1923
  47549. }
  47550. },
  47551. },
  47552. [
  47553. {
  47554. name: "Normal",
  47555. height: math.unit(6 + 8/12, "feet"),
  47556. default: true
  47557. },
  47558. {
  47559. name: "Macro",
  47560. height: math.unit(80, "feet")
  47561. },
  47562. ]
  47563. ))
  47564. characterMakers.push(() => makeCharacter(
  47565. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47566. {
  47567. front: {
  47568. height: math.unit(10.4, "feet"),
  47569. weight: math.unit(2, "tons"),
  47570. name: "Front",
  47571. image: {
  47572. source: "./media/characters/yesenia/front.svg",
  47573. extra: 1479/1474,
  47574. bottom: 233/1712
  47575. }
  47576. },
  47577. },
  47578. [
  47579. {
  47580. name: "Normal",
  47581. height: math.unit(10.4, "feet"),
  47582. default: true
  47583. },
  47584. ]
  47585. ))
  47586. characterMakers.push(() => makeCharacter(
  47587. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47588. {
  47589. normal: {
  47590. height: math.unit(6 + 1/12, "feet"),
  47591. weight: math.unit(180, "lb"),
  47592. name: "Normal",
  47593. image: {
  47594. source: "./media/characters/leanne-lycheborne/normal.svg",
  47595. extra: 1748/1660,
  47596. bottom: 98/1846
  47597. }
  47598. },
  47599. were: {
  47600. height: math.unit(12, "feet"),
  47601. weight: math.unit(1600, "lb"),
  47602. name: "Were",
  47603. image: {
  47604. source: "./media/characters/leanne-lycheborne/were.svg",
  47605. extra: 1485/1432,
  47606. bottom: 66/1551
  47607. }
  47608. },
  47609. },
  47610. [
  47611. {
  47612. name: "Normal",
  47613. height: math.unit(6 + 1/12, "feet"),
  47614. default: true
  47615. },
  47616. ]
  47617. ))
  47618. characterMakers.push(() => makeCharacter(
  47619. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47620. {
  47621. side: {
  47622. height: math.unit(13, "feet"),
  47623. name: "Side",
  47624. image: {
  47625. source: "./media/characters/kira-tyler/side.svg",
  47626. extra: 693/393,
  47627. bottom: 58/751
  47628. }
  47629. },
  47630. },
  47631. [
  47632. {
  47633. name: "Normal",
  47634. height: math.unit(13, "feet"),
  47635. default: true
  47636. },
  47637. ]
  47638. ))
  47639. characterMakers.push(() => makeCharacter(
  47640. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47641. {
  47642. front: {
  47643. height: math.unit(10.3, "feet"),
  47644. weight: math.unit(150, "lb"),
  47645. name: "Front",
  47646. image: {
  47647. source: "./media/characters/blaze/front.svg",
  47648. extra: 1378/1286,
  47649. bottom: 172/1550
  47650. }
  47651. },
  47652. },
  47653. [
  47654. {
  47655. name: "Normal",
  47656. height: math.unit(10.3, "feet"),
  47657. default: true
  47658. },
  47659. ]
  47660. ))
  47661. characterMakers.push(() => makeCharacter(
  47662. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47663. {
  47664. side: {
  47665. height: math.unit(2, "meters"),
  47666. weight: math.unit(400, "kg"),
  47667. name: "Side",
  47668. image: {
  47669. source: "./media/characters/anu/side.svg",
  47670. extra: 506/394,
  47671. bottom: 18/524
  47672. }
  47673. },
  47674. },
  47675. [
  47676. {
  47677. name: "Humanoid",
  47678. height: math.unit(2, "meters")
  47679. },
  47680. {
  47681. name: "Normal",
  47682. height: math.unit(5, "meters"),
  47683. default: true
  47684. },
  47685. ]
  47686. ))
  47687. characterMakers.push(() => makeCharacter(
  47688. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47689. {
  47690. front: {
  47691. height: math.unit(5 + 5/12, "feet"),
  47692. weight: math.unit(170, "lb"),
  47693. name: "Front",
  47694. image: {
  47695. source: "./media/characters/synx-the-lynx/front.svg",
  47696. extra: 1893/1745,
  47697. bottom: 17/1910
  47698. }
  47699. },
  47700. side: {
  47701. height: math.unit(5 + 5/12, "feet"),
  47702. weight: math.unit(170, "lb"),
  47703. name: "Side",
  47704. image: {
  47705. source: "./media/characters/synx-the-lynx/side.svg",
  47706. extra: 1884/1740,
  47707. bottom: 39/1923
  47708. }
  47709. },
  47710. back: {
  47711. height: math.unit(5 + 5/12, "feet"),
  47712. weight: math.unit(170, "lb"),
  47713. name: "Back",
  47714. image: {
  47715. source: "./media/characters/synx-the-lynx/back.svg",
  47716. extra: 1903/1755,
  47717. bottom: 14/1917
  47718. }
  47719. },
  47720. },
  47721. [
  47722. {
  47723. name: "Normal",
  47724. height: math.unit(5 + 5/12, "feet"),
  47725. default: true
  47726. },
  47727. ]
  47728. ))
  47729. characterMakers.push(() => makeCharacter(
  47730. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47731. {
  47732. back: {
  47733. height: math.unit(15, "feet"),
  47734. name: "Back",
  47735. image: {
  47736. source: "./media/characters/nadezda-fex/back.svg",
  47737. extra: 1695/1481,
  47738. bottom: 25/1720
  47739. }
  47740. },
  47741. },
  47742. [
  47743. {
  47744. name: "Normal",
  47745. height: math.unit(15, "feet"),
  47746. default: true
  47747. },
  47748. {
  47749. name: "Macro",
  47750. height: math.unit(2.5, "miles")
  47751. },
  47752. {
  47753. name: "Goddess",
  47754. height: math.unit(2, "multiverses")
  47755. },
  47756. ]
  47757. ))
  47758. characterMakers.push(() => makeCharacter(
  47759. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47760. {
  47761. front: {
  47762. height: math.unit(216, "cm"),
  47763. name: "Front",
  47764. image: {
  47765. source: "./media/characters/lev/front.svg",
  47766. extra: 1728/1670,
  47767. bottom: 82/1810
  47768. }
  47769. },
  47770. back: {
  47771. height: math.unit(216, "cm"),
  47772. name: "Back",
  47773. image: {
  47774. source: "./media/characters/lev/back.svg",
  47775. extra: 1738/1675,
  47776. bottom: 24/1762
  47777. }
  47778. },
  47779. dressed: {
  47780. height: math.unit(216, "cm"),
  47781. name: "Dressed",
  47782. image: {
  47783. source: "./media/characters/lev/dressed.svg",
  47784. extra: 1397/1351,
  47785. bottom: 73/1470
  47786. }
  47787. },
  47788. head: {
  47789. height: math.unit(0.51, "meter"),
  47790. name: "Head",
  47791. image: {
  47792. source: "./media/characters/lev/head.svg"
  47793. }
  47794. },
  47795. },
  47796. [
  47797. {
  47798. name: "Normal",
  47799. height: math.unit(216, "cm"),
  47800. default: true
  47801. },
  47802. {
  47803. name: "Relatively Macro",
  47804. height: math.unit(80, "meters")
  47805. },
  47806. {
  47807. name: "Megamacro",
  47808. height: math.unit(21600, "meters")
  47809. },
  47810. {
  47811. name: "Megamacro+",
  47812. height: math.unit(64800, "meters")
  47813. },
  47814. ]
  47815. ))
  47816. characterMakers.push(() => makeCharacter(
  47817. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47818. {
  47819. front: {
  47820. height: math.unit(2, "meters"),
  47821. weight: math.unit(80, "kg"),
  47822. name: "Front",
  47823. image: {
  47824. source: "./media/characters/moka/front.svg",
  47825. extra: 1337/1255,
  47826. bottom: 58/1395
  47827. }
  47828. },
  47829. },
  47830. [
  47831. {
  47832. name: "Micro",
  47833. height: math.unit(15, "cm")
  47834. },
  47835. {
  47836. name: "Normal",
  47837. height: math.unit(2, "meters"),
  47838. default: true
  47839. },
  47840. {
  47841. name: "Macro",
  47842. height: math.unit(20, "meters"),
  47843. },
  47844. ]
  47845. ))
  47846. characterMakers.push(() => makeCharacter(
  47847. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47848. {
  47849. front: {
  47850. height: math.unit(9, "feet"),
  47851. weight: math.unit(240, "lb"),
  47852. name: "Front",
  47853. image: {
  47854. source: "./media/characters/kuzco/front.svg",
  47855. extra: 1593/1487,
  47856. bottom: 32/1625
  47857. }
  47858. },
  47859. side: {
  47860. height: math.unit(9, "feet"),
  47861. weight: math.unit(240, "lb"),
  47862. name: "Side",
  47863. image: {
  47864. source: "./media/characters/kuzco/side.svg",
  47865. extra: 1575/1485,
  47866. bottom: 30/1605
  47867. }
  47868. },
  47869. back: {
  47870. height: math.unit(9, "feet"),
  47871. weight: math.unit(240, "lb"),
  47872. name: "Back",
  47873. image: {
  47874. source: "./media/characters/kuzco/back.svg",
  47875. extra: 1603/1514,
  47876. bottom: 14/1617
  47877. }
  47878. },
  47879. },
  47880. [
  47881. {
  47882. name: "Normal",
  47883. height: math.unit(9, "feet"),
  47884. default: true
  47885. },
  47886. ]
  47887. ))
  47888. characterMakers.push(() => makeCharacter(
  47889. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47890. {
  47891. side: {
  47892. height: math.unit(2, "meters"),
  47893. weight: math.unit(300, "kg"),
  47894. name: "Side",
  47895. image: {
  47896. source: "./media/characters/ceruleus/side.svg",
  47897. extra: 1068/974,
  47898. bottom: 126/1194
  47899. }
  47900. },
  47901. maw: {
  47902. height: math.unit(0.8125, "meter"),
  47903. name: "Maw",
  47904. image: {
  47905. source: "./media/characters/ceruleus/maw.svg"
  47906. }
  47907. },
  47908. },
  47909. [
  47910. {
  47911. name: "Normal",
  47912. height: math.unit(16, "meters"),
  47913. default: true
  47914. },
  47915. ]
  47916. ))
  47917. characterMakers.push(() => makeCharacter(
  47918. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47919. {
  47920. front: {
  47921. height: math.unit(9, "feet"),
  47922. weight: math.unit(500, "kg"),
  47923. name: "Front",
  47924. image: {
  47925. source: "./media/characters/acouya/front.svg",
  47926. extra: 1660/1473,
  47927. bottom: 28/1688
  47928. }
  47929. },
  47930. },
  47931. [
  47932. {
  47933. name: "Normal",
  47934. height: math.unit(9, "feet"),
  47935. default: true
  47936. },
  47937. ]
  47938. ))
  47939. characterMakers.push(() => makeCharacter(
  47940. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47941. {
  47942. front: {
  47943. height: math.unit(5 + 6/12, "feet"),
  47944. weight: math.unit(195, "lb"),
  47945. name: "Front",
  47946. image: {
  47947. source: "./media/characters/vant/front.svg",
  47948. extra: 1396/1320,
  47949. bottom: 20/1416
  47950. }
  47951. },
  47952. back: {
  47953. height: math.unit(5 + 6/12, "feet"),
  47954. weight: math.unit(195, "lb"),
  47955. name: "Back",
  47956. image: {
  47957. source: "./media/characters/vant/back.svg",
  47958. extra: 1396/1320,
  47959. bottom: 20/1416
  47960. }
  47961. },
  47962. maw: {
  47963. height: math.unit(0.75, "feet"),
  47964. name: "Maw",
  47965. image: {
  47966. source: "./media/characters/vant/maw.svg"
  47967. }
  47968. },
  47969. paw: {
  47970. height: math.unit(1.07, "feet"),
  47971. name: "Paw",
  47972. image: {
  47973. source: "./media/characters/vant/paw.svg"
  47974. }
  47975. },
  47976. },
  47977. [
  47978. {
  47979. name: "Micro",
  47980. height: math.unit(0.25, "inches")
  47981. },
  47982. {
  47983. name: "Normal",
  47984. height: math.unit(5 + 6/12, "feet"),
  47985. default: true
  47986. },
  47987. {
  47988. name: "Macro",
  47989. height: math.unit(75, "feet")
  47990. },
  47991. ]
  47992. ))
  47993. characterMakers.push(() => makeCharacter(
  47994. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47995. {
  47996. front: {
  47997. height: math.unit(30, "meters"),
  47998. weight: math.unit(363, "tons"),
  47999. name: "Front",
  48000. image: {
  48001. source: "./media/characters/ahra/front.svg",
  48002. extra: 1914/1814,
  48003. bottom: 46/1960
  48004. }
  48005. },
  48006. },
  48007. [
  48008. {
  48009. name: "Macro",
  48010. height: math.unit(30, "meters"),
  48011. default: true
  48012. },
  48013. ]
  48014. ))
  48015. characterMakers.push(() => makeCharacter(
  48016. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48017. {
  48018. undressed: {
  48019. height: math.unit(2, "m"),
  48020. weight: math.unit(250, "kg"),
  48021. name: "Undressed",
  48022. image: {
  48023. source: "./media/characters/coriander/undressed.svg",
  48024. extra: 1757/1606,
  48025. bottom: 107/1864
  48026. }
  48027. },
  48028. dressed: {
  48029. height: math.unit(2, "m"),
  48030. weight: math.unit(250, "kg"),
  48031. name: "Dressed",
  48032. image: {
  48033. source: "./media/characters/coriander/dressed.svg",
  48034. extra: 1757/1606,
  48035. bottom: 107/1864
  48036. }
  48037. },
  48038. },
  48039. [
  48040. {
  48041. name: "Normal",
  48042. height: math.unit(4, "meters"),
  48043. default: true
  48044. },
  48045. {
  48046. name: "XL",
  48047. height: math.unit(6, "meters")
  48048. },
  48049. {
  48050. name: "XXL",
  48051. height: math.unit(8, "meters")
  48052. },
  48053. ]
  48054. ))
  48055. characterMakers.push(() => makeCharacter(
  48056. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48057. {
  48058. front: {
  48059. height: math.unit(6, "feet"),
  48060. name: "Front",
  48061. image: {
  48062. source: "./media/characters/syrinx/front.svg",
  48063. extra: 1557/1259,
  48064. bottom: 171/1728
  48065. }
  48066. },
  48067. },
  48068. [
  48069. {
  48070. name: "Normal",
  48071. height: math.unit(6 + 3/12, "feet"),
  48072. default: true
  48073. },
  48074. ]
  48075. ))
  48076. characterMakers.push(() => makeCharacter(
  48077. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48078. {
  48079. front: {
  48080. height: math.unit(11 + 6/12, "feet"),
  48081. weight: math.unit(1.5, "tons"),
  48082. name: "Front",
  48083. image: {
  48084. source: "./media/characters/bor/front.svg",
  48085. extra: 1189/1109,
  48086. bottom: 170/1359
  48087. }
  48088. },
  48089. },
  48090. [
  48091. {
  48092. name: "Normal",
  48093. height: math.unit(11 + 6/12, "feet"),
  48094. default: true
  48095. },
  48096. {
  48097. name: "Macro",
  48098. height: math.unit(32 + 9/12, "feet")
  48099. },
  48100. ]
  48101. ))
  48102. characterMakers.push(() => makeCharacter(
  48103. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48104. {
  48105. anthro: {
  48106. height: math.unit(9, "feet"),
  48107. weight: math.unit(2076, "lb"),
  48108. name: "Anthro",
  48109. image: {
  48110. source: "./media/characters/abacus/anthro.svg",
  48111. extra: 1540/1494,
  48112. bottom: 233/1773
  48113. }
  48114. },
  48115. pigeon: {
  48116. height: math.unit(1, "feet"),
  48117. name: "Pigeon",
  48118. image: {
  48119. source: "./media/characters/abacus/pigeon.svg",
  48120. extra: 528/525,
  48121. bottom: 46/574
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(9, "feet"),
  48129. default: true
  48130. },
  48131. ]
  48132. ))
  48133. characterMakers.push(() => makeCharacter(
  48134. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48135. {
  48136. side: {
  48137. height: math.unit(6, "feet"),
  48138. name: "Side",
  48139. image: {
  48140. source: "./media/characters/delkhan/side.svg",
  48141. extra: 1884/1786,
  48142. bottom: 308/2192
  48143. }
  48144. },
  48145. head: {
  48146. height: math.unit(3.38, "feet"),
  48147. name: "Head",
  48148. image: {
  48149. source: "./media/characters/delkhan/head.svg"
  48150. }
  48151. },
  48152. },
  48153. [
  48154. {
  48155. name: "Normal",
  48156. height: math.unit(72, "feet"),
  48157. default: true
  48158. },
  48159. {
  48160. name: "Giant",
  48161. height: math.unit(172, "feet")
  48162. },
  48163. ]
  48164. ))
  48165. characterMakers.push(() => makeCharacter(
  48166. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48167. {
  48168. standing: {
  48169. height: math.unit(6, "feet"),
  48170. name: "Standing",
  48171. image: {
  48172. source: "./media/characters/euchidat/standing.svg",
  48173. extra: 1612/1553,
  48174. bottom: 116/1728
  48175. }
  48176. },
  48177. leaning: {
  48178. height: math.unit(6, "feet"),
  48179. name: "Leaning",
  48180. image: {
  48181. source: "./media/characters/euchidat/leaning.svg",
  48182. extra: 1719/1674,
  48183. bottom: 27/1746
  48184. }
  48185. },
  48186. },
  48187. [
  48188. {
  48189. name: "Normal",
  48190. height: math.unit(175, "feet"),
  48191. default: true
  48192. },
  48193. {
  48194. name: "Megamacro",
  48195. height: math.unit(190, "miles")
  48196. },
  48197. {
  48198. name: "Gigamacro",
  48199. height: math.unit(190000, "miles")
  48200. },
  48201. ]
  48202. ))
  48203. characterMakers.push(() => makeCharacter(
  48204. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48205. {
  48206. front: {
  48207. height: math.unit(6, "feet"),
  48208. weight: math.unit(150, "lb"),
  48209. name: "Front",
  48210. image: {
  48211. source: "./media/characters/rebecca-stack/front.svg",
  48212. extra: 1256/1201,
  48213. bottom: 18/1274
  48214. }
  48215. },
  48216. },
  48217. [
  48218. {
  48219. name: "Normal",
  48220. height: math.unit(5 + 8/12, "feet"),
  48221. default: true
  48222. },
  48223. {
  48224. name: "Demolitionist",
  48225. height: math.unit(200, "feet")
  48226. },
  48227. {
  48228. name: "Out of Control",
  48229. height: math.unit(2, "miles")
  48230. },
  48231. {
  48232. name: "Giga",
  48233. height: math.unit(7200, "miles")
  48234. },
  48235. ]
  48236. ))
  48237. characterMakers.push(() => makeCharacter(
  48238. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48239. {
  48240. front: {
  48241. height: math.unit(6, "feet"),
  48242. weight: math.unit(150, "lb"),
  48243. name: "Front",
  48244. image: {
  48245. source: "./media/characters/jenny-cartwright/front.svg",
  48246. extra: 1384/1376,
  48247. bottom: 58/1442
  48248. }
  48249. },
  48250. },
  48251. [
  48252. {
  48253. name: "Normal",
  48254. height: math.unit(6 + 7/12, "feet"),
  48255. default: true
  48256. },
  48257. {
  48258. name: "Librarian",
  48259. height: math.unit(55, "feet")
  48260. },
  48261. {
  48262. name: "Sightseer",
  48263. height: math.unit(50, "miles")
  48264. },
  48265. {
  48266. name: "Giga",
  48267. height: math.unit(30000, "miles")
  48268. },
  48269. ]
  48270. ))
  48271. characterMakers.push(() => makeCharacter(
  48272. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48273. {
  48274. nude: {
  48275. height: math.unit(8, "feet"),
  48276. weight: math.unit(225, "lb"),
  48277. name: "Nude",
  48278. image: {
  48279. source: "./media/characters/marvy/nude.svg",
  48280. extra: 1900/1683,
  48281. bottom: 89/1989
  48282. }
  48283. },
  48284. dressed: {
  48285. height: math.unit(8, "feet"),
  48286. weight: math.unit(225, "lb"),
  48287. name: "Dressed",
  48288. image: {
  48289. source: "./media/characters/marvy/dressed.svg",
  48290. extra: 1900/1683,
  48291. bottom: 89/1989
  48292. }
  48293. },
  48294. head: {
  48295. height: math.unit(2.85, "feet"),
  48296. name: "Head",
  48297. image: {
  48298. source: "./media/characters/marvy/head.svg"
  48299. }
  48300. },
  48301. },
  48302. [
  48303. {
  48304. name: "Normal",
  48305. height: math.unit(8, "feet"),
  48306. default: true
  48307. },
  48308. ]
  48309. ))
  48310. characterMakers.push(() => makeCharacter(
  48311. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48312. {
  48313. front: {
  48314. height: math.unit(8, "feet"),
  48315. weight: math.unit(250, "lb"),
  48316. name: "Front",
  48317. image: {
  48318. source: "./media/characters/leah/front.svg",
  48319. extra: 1257/1149,
  48320. bottom: 109/1366
  48321. }
  48322. },
  48323. },
  48324. [
  48325. {
  48326. name: "Normal",
  48327. height: math.unit(8, "feet"),
  48328. default: true
  48329. },
  48330. {
  48331. name: "Minimacro",
  48332. height: math.unit(40, "feet")
  48333. },
  48334. {
  48335. name: "Macro",
  48336. height: math.unit(124, "feet")
  48337. },
  48338. {
  48339. name: "Megamacro",
  48340. height: math.unit(850, "feet")
  48341. },
  48342. ]
  48343. ))
  48344. characterMakers.push(() => makeCharacter(
  48345. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48346. {
  48347. side: {
  48348. height: math.unit(13 + 6/12, "feet"),
  48349. weight: math.unit(3200, "lb"),
  48350. name: "Side",
  48351. image: {
  48352. source: "./media/characters/alvir/side.svg",
  48353. extra: 896/589,
  48354. bottom: 26/922
  48355. }
  48356. },
  48357. },
  48358. [
  48359. {
  48360. name: "Normal",
  48361. height: math.unit(13 + 6/12, "feet"),
  48362. default: true
  48363. },
  48364. ]
  48365. ))
  48366. characterMakers.push(() => makeCharacter(
  48367. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48368. {
  48369. front: {
  48370. height: math.unit(5 + 4/12, "feet"),
  48371. weight: math.unit(236, "lb"),
  48372. name: "Front",
  48373. image: {
  48374. source: "./media/characters/zaina-khalil/front.svg",
  48375. extra: 1533/1485,
  48376. bottom: 94/1627
  48377. }
  48378. },
  48379. side: {
  48380. height: math.unit(5 + 4/12, "feet"),
  48381. weight: math.unit(236, "lb"),
  48382. name: "Side",
  48383. image: {
  48384. source: "./media/characters/zaina-khalil/side.svg",
  48385. extra: 1537/1498,
  48386. bottom: 66/1603
  48387. }
  48388. },
  48389. back: {
  48390. height: math.unit(5 + 4/12, "feet"),
  48391. weight: math.unit(236, "lb"),
  48392. name: "Back",
  48393. image: {
  48394. source: "./media/characters/zaina-khalil/back.svg",
  48395. extra: 1546/1494,
  48396. bottom: 89/1635
  48397. }
  48398. },
  48399. },
  48400. [
  48401. {
  48402. name: "Normal",
  48403. height: math.unit(5 + 4/12, "feet"),
  48404. default: true
  48405. },
  48406. ]
  48407. ))
  48408. characterMakers.push(() => makeCharacter(
  48409. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48410. {
  48411. side: {
  48412. height: math.unit(12, "feet"),
  48413. weight: math.unit(4000, "lb"),
  48414. name: "Side",
  48415. image: {
  48416. source: "./media/characters/terry/side.svg",
  48417. extra: 1518/1439,
  48418. bottom: 149/1667
  48419. }
  48420. },
  48421. },
  48422. [
  48423. {
  48424. name: "Normal",
  48425. height: math.unit(12, "feet"),
  48426. default: true
  48427. },
  48428. ]
  48429. ))
  48430. characterMakers.push(() => makeCharacter(
  48431. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48432. {
  48433. front: {
  48434. height: math.unit(12, "feet"),
  48435. weight: math.unit(1500, "lb"),
  48436. name: "Front",
  48437. image: {
  48438. source: "./media/characters/kahea/front.svg",
  48439. extra: 1722/1617,
  48440. bottom: 179/1901
  48441. }
  48442. },
  48443. },
  48444. [
  48445. {
  48446. name: "Normal",
  48447. height: math.unit(12, "feet"),
  48448. default: true
  48449. },
  48450. ]
  48451. ))
  48452. characterMakers.push(() => makeCharacter(
  48453. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48454. {
  48455. demonFront: {
  48456. height: math.unit(36, "feet"),
  48457. name: "Front",
  48458. image: {
  48459. source: "./media/characters/alex-xuria/demon-front.svg",
  48460. extra: 1705/1673,
  48461. bottom: 198/1903
  48462. },
  48463. form: "demon",
  48464. default: true
  48465. },
  48466. demonBack: {
  48467. height: math.unit(36, "feet"),
  48468. name: "Back",
  48469. image: {
  48470. source: "./media/characters/alex-xuria/demon-back.svg",
  48471. extra: 1725/1693,
  48472. bottom: 70/1795
  48473. },
  48474. form: "demon"
  48475. },
  48476. demonHead: {
  48477. height: math.unit(2.14, "meters"),
  48478. name: "Head",
  48479. image: {
  48480. source: "./media/characters/alex-xuria/demon-head.svg"
  48481. },
  48482. form: "demon"
  48483. },
  48484. demonHand: {
  48485. height: math.unit(1.61, "meters"),
  48486. name: "Hand",
  48487. image: {
  48488. source: "./media/characters/alex-xuria/demon-hand.svg"
  48489. },
  48490. form: "demon"
  48491. },
  48492. demonPaw: {
  48493. height: math.unit(1.35, "meters"),
  48494. name: "Paw",
  48495. image: {
  48496. source: "./media/characters/alex-xuria/demon-paw.svg"
  48497. },
  48498. form: "demon"
  48499. },
  48500. demonFoot: {
  48501. height: math.unit(2.2, "meters"),
  48502. name: "Foot",
  48503. image: {
  48504. source: "./media/characters/alex-xuria/demon-foot.svg"
  48505. },
  48506. form: "demon"
  48507. },
  48508. demonCock: {
  48509. height: math.unit(1.74, "meters"),
  48510. name: "Cock",
  48511. image: {
  48512. source: "./media/characters/alex-xuria/demon-cock.svg"
  48513. },
  48514. form: "demon"
  48515. },
  48516. demonTailClosed: {
  48517. height: math.unit(1.47, "meters"),
  48518. name: "Tail (Closed)",
  48519. image: {
  48520. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48521. },
  48522. form: "demon"
  48523. },
  48524. demonTailOpen: {
  48525. height: math.unit(2.85, "meters"),
  48526. name: "Tail (Open)",
  48527. image: {
  48528. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48529. },
  48530. form: "demon"
  48531. },
  48532. incubusFront: {
  48533. height: math.unit(12, "feet"),
  48534. name: "Front",
  48535. image: {
  48536. source: "./media/characters/alex-xuria/incubus-front.svg",
  48537. extra: 1754/1677,
  48538. bottom: 125/1879
  48539. },
  48540. form: "incubus",
  48541. default: true
  48542. },
  48543. incubusBack: {
  48544. height: math.unit(12, "feet"),
  48545. name: "Back",
  48546. image: {
  48547. source: "./media/characters/alex-xuria/incubus-back.svg",
  48548. extra: 1702/1647,
  48549. bottom: 30/1732
  48550. },
  48551. form: "incubus"
  48552. },
  48553. incubusHead: {
  48554. height: math.unit(3.45, "feet"),
  48555. name: "Head",
  48556. image: {
  48557. source: "./media/characters/alex-xuria/incubus-head.svg"
  48558. },
  48559. form: "incubus"
  48560. },
  48561. rabbitFront: {
  48562. height: math.unit(6, "feet"),
  48563. name: "Front",
  48564. image: {
  48565. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48566. extra: 1369/1349,
  48567. bottom: 45/1414
  48568. },
  48569. form: "rabbit",
  48570. default: true
  48571. },
  48572. rabbitSide: {
  48573. height: math.unit(6, "feet"),
  48574. name: "Side",
  48575. image: {
  48576. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48577. extra: 1370/1356,
  48578. bottom: 37/1407
  48579. },
  48580. form: "rabbit"
  48581. },
  48582. rabbitBack: {
  48583. height: math.unit(6, "feet"),
  48584. name: "Back",
  48585. image: {
  48586. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48587. extra: 1375/1358,
  48588. bottom: 43/1418
  48589. },
  48590. form: "rabbit"
  48591. },
  48592. },
  48593. [
  48594. {
  48595. name: "Normal",
  48596. height: math.unit(6, "feet"),
  48597. default: true,
  48598. form: "rabbit"
  48599. },
  48600. {
  48601. name: "Incubus",
  48602. height: math.unit(12, "feet"),
  48603. default: true,
  48604. form: "incubus"
  48605. },
  48606. {
  48607. name: "Demon",
  48608. height: math.unit(36, "feet"),
  48609. default: true,
  48610. form: "demon"
  48611. }
  48612. ],
  48613. {
  48614. "demon": {
  48615. name: "Demon",
  48616. default: true
  48617. },
  48618. "incubus": {
  48619. name: "Incubus",
  48620. },
  48621. "rabbit": {
  48622. name: "Rabbit"
  48623. }
  48624. }
  48625. ))
  48626. characterMakers.push(() => makeCharacter(
  48627. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48628. {
  48629. front: {
  48630. height: math.unit(7 + 5/12, "feet"),
  48631. weight: math.unit(510, "lb"),
  48632. name: "Front",
  48633. image: {
  48634. source: "./media/characters/syrup/front.svg",
  48635. extra: 932/916,
  48636. bottom: 26/958
  48637. }
  48638. },
  48639. },
  48640. [
  48641. {
  48642. name: "Normal",
  48643. height: math.unit(7 + 5/12, "feet"),
  48644. default: true
  48645. },
  48646. {
  48647. name: "Big",
  48648. height: math.unit(50, "feet")
  48649. },
  48650. {
  48651. name: "Macro",
  48652. height: math.unit(300, "feet")
  48653. },
  48654. {
  48655. name: "Megamacro",
  48656. height: math.unit(1, "mile")
  48657. },
  48658. ]
  48659. ))
  48660. characterMakers.push(() => makeCharacter(
  48661. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48662. {
  48663. front: {
  48664. height: math.unit(6 + 9/12, "feet"),
  48665. name: "Front",
  48666. image: {
  48667. source: "./media/characters/zeimne/front.svg",
  48668. extra: 1969/1806,
  48669. bottom: 53/2022
  48670. }
  48671. },
  48672. },
  48673. [
  48674. {
  48675. name: "Normal",
  48676. height: math.unit(6 + 9/12, "feet"),
  48677. default: true
  48678. },
  48679. {
  48680. name: "Giant",
  48681. height: math.unit(550, "feet")
  48682. },
  48683. {
  48684. name: "Mega",
  48685. height: math.unit(3, "miles")
  48686. },
  48687. {
  48688. name: "Giga",
  48689. height: math.unit(250, "miles")
  48690. },
  48691. {
  48692. name: "Tera",
  48693. height: math.unit(1, "AU")
  48694. },
  48695. ]
  48696. ))
  48697. characterMakers.push(() => makeCharacter(
  48698. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48699. {
  48700. front: {
  48701. height: math.unit(5 + 2/12, "feet"),
  48702. name: "Front",
  48703. image: {
  48704. source: "./media/characters/grar/front.svg",
  48705. extra: 1331/1119,
  48706. bottom: 60/1391
  48707. }
  48708. },
  48709. back: {
  48710. height: math.unit(5 + 2/12, "feet"),
  48711. name: "Back",
  48712. image: {
  48713. source: "./media/characters/grar/back.svg",
  48714. extra: 1385/1169,
  48715. bottom: 23/1408
  48716. }
  48717. },
  48718. },
  48719. [
  48720. {
  48721. name: "Normal",
  48722. height: math.unit(5 + 2/12, "feet"),
  48723. default: true
  48724. },
  48725. ]
  48726. ))
  48727. characterMakers.push(() => makeCharacter(
  48728. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48729. {
  48730. front: {
  48731. height: math.unit(13 + 7/12, "feet"),
  48732. weight: math.unit(2200, "lb"),
  48733. name: "Front",
  48734. image: {
  48735. source: "./media/characters/endraya/front.svg",
  48736. extra: 1289/1215,
  48737. bottom: 50/1339
  48738. }
  48739. },
  48740. nude: {
  48741. height: math.unit(13 + 7/12, "feet"),
  48742. weight: math.unit(2200, "lb"),
  48743. name: "Nude",
  48744. image: {
  48745. source: "./media/characters/endraya/nude.svg",
  48746. extra: 1247/1171,
  48747. bottom: 40/1287
  48748. }
  48749. },
  48750. head: {
  48751. height: math.unit(2.6, "feet"),
  48752. name: "Head",
  48753. image: {
  48754. source: "./media/characters/endraya/head.svg"
  48755. }
  48756. },
  48757. slit: {
  48758. height: math.unit(3.4, "feet"),
  48759. name: "Slit",
  48760. image: {
  48761. source: "./media/characters/endraya/slit.svg"
  48762. }
  48763. },
  48764. },
  48765. [
  48766. {
  48767. name: "Normal",
  48768. height: math.unit(13 + 7/12, "feet"),
  48769. default: true
  48770. },
  48771. {
  48772. name: "Macro",
  48773. height: math.unit(200, "feet")
  48774. },
  48775. ]
  48776. ))
  48777. characterMakers.push(() => makeCharacter(
  48778. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48779. {
  48780. front: {
  48781. height: math.unit(1.81, "meters"),
  48782. weight: math.unit(69, "kg"),
  48783. name: "Front",
  48784. image: {
  48785. source: "./media/characters/rodryana/front.svg",
  48786. extra: 2002/1921,
  48787. bottom: 53/2055
  48788. }
  48789. },
  48790. back: {
  48791. height: math.unit(1.81, "meters"),
  48792. weight: math.unit(69, "kg"),
  48793. name: "Back",
  48794. image: {
  48795. source: "./media/characters/rodryana/back.svg",
  48796. extra: 1993/1926,
  48797. bottom: 48/2041
  48798. }
  48799. },
  48800. maw: {
  48801. height: math.unit(0.19769417475, "meters"),
  48802. name: "Maw",
  48803. image: {
  48804. source: "./media/characters/rodryana/maw.svg"
  48805. }
  48806. },
  48807. slit: {
  48808. height: math.unit(0.31631067961, "meters"),
  48809. name: "Slit",
  48810. image: {
  48811. source: "./media/characters/rodryana/slit.svg"
  48812. }
  48813. },
  48814. },
  48815. [
  48816. {
  48817. name: "Normal",
  48818. height: math.unit(1.81, "meters")
  48819. },
  48820. {
  48821. name: "Mini Macro",
  48822. height: math.unit(181, "meters")
  48823. },
  48824. {
  48825. name: "Macro",
  48826. height: math.unit(452, "meters"),
  48827. default: true
  48828. },
  48829. {
  48830. name: "Mega Macro",
  48831. height: math.unit(1.375, "km")
  48832. },
  48833. {
  48834. name: "Giga Macro",
  48835. height: math.unit(13.575, "km")
  48836. },
  48837. ]
  48838. ))
  48839. characterMakers.push(() => makeCharacter(
  48840. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48841. {
  48842. front: {
  48843. height: math.unit(6, "feet"),
  48844. weight: math.unit(1000, "lb"),
  48845. name: "Front",
  48846. image: {
  48847. source: "./media/characters/asaya/front.svg",
  48848. extra: 1460/1200,
  48849. bottom: 71/1531
  48850. }
  48851. },
  48852. },
  48853. [
  48854. {
  48855. name: "Normal",
  48856. height: math.unit(8, "km"),
  48857. default: true
  48858. },
  48859. ]
  48860. ))
  48861. characterMakers.push(() => makeCharacter(
  48862. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48863. {
  48864. front: {
  48865. height: math.unit(3.5, "meters"),
  48866. name: "Front",
  48867. image: {
  48868. source: "./media/characters/sarzu-and-israz/front.svg",
  48869. extra: 1570/1558,
  48870. bottom: 150/1720
  48871. },
  48872. },
  48873. back: {
  48874. height: math.unit(3.5, "meters"),
  48875. name: "Back",
  48876. image: {
  48877. source: "./media/characters/sarzu-and-israz/back.svg",
  48878. extra: 1523/1509,
  48879. bottom: 132/1655
  48880. },
  48881. },
  48882. frontFemale: {
  48883. height: math.unit(3.5, "meters"),
  48884. name: "Front (Female)",
  48885. image: {
  48886. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48887. extra: 1570/1558,
  48888. bottom: 150/1720
  48889. },
  48890. },
  48891. frontHerm: {
  48892. height: math.unit(3.5, "meters"),
  48893. name: "Front (Herm)",
  48894. image: {
  48895. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48896. extra: 1570/1558,
  48897. bottom: 150/1720
  48898. },
  48899. },
  48900. },
  48901. [
  48902. {
  48903. name: "Normal",
  48904. height: math.unit(3.5, "meters"),
  48905. default: true,
  48906. },
  48907. {
  48908. name: "Macro",
  48909. height: math.unit(65.5, "meters"),
  48910. },
  48911. ],
  48912. ))
  48913. characterMakers.push(() => makeCharacter(
  48914. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48915. {
  48916. front: {
  48917. height: math.unit(6, "feet"),
  48918. weight: math.unit(250, "lb"),
  48919. name: "Front",
  48920. image: {
  48921. source: "./media/characters/zenimma/front.svg",
  48922. extra: 1346/1320,
  48923. bottom: 58/1404
  48924. }
  48925. },
  48926. back: {
  48927. height: math.unit(6, "feet"),
  48928. weight: math.unit(250, "lb"),
  48929. name: "Back",
  48930. image: {
  48931. source: "./media/characters/zenimma/back.svg",
  48932. extra: 1324/1308,
  48933. bottom: 44/1368
  48934. }
  48935. },
  48936. dick: {
  48937. height: math.unit(1.44, "feet"),
  48938. name: "Dick",
  48939. image: {
  48940. source: "./media/characters/zenimma/dick.svg"
  48941. }
  48942. },
  48943. },
  48944. [
  48945. {
  48946. name: "Canon Height",
  48947. height: math.unit(66, "miles"),
  48948. default: true
  48949. },
  48950. ]
  48951. ))
  48952. characterMakers.push(() => makeCharacter(
  48953. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48954. {
  48955. nude: {
  48956. height: math.unit(6, "feet"),
  48957. weight: math.unit(150, "lb"),
  48958. name: "Nude",
  48959. image: {
  48960. source: "./media/characters/shavon/nude.svg",
  48961. extra: 1242/1096,
  48962. bottom: 98/1340
  48963. }
  48964. },
  48965. dressed: {
  48966. height: math.unit(6, "feet"),
  48967. weight: math.unit(150, "lb"),
  48968. name: "Dressed",
  48969. image: {
  48970. source: "./media/characters/shavon/dressed.svg",
  48971. extra: 1242/1096,
  48972. bottom: 98/1340
  48973. }
  48974. },
  48975. },
  48976. [
  48977. {
  48978. name: "Macro",
  48979. height: math.unit(255, "feet"),
  48980. default: true
  48981. },
  48982. ]
  48983. ))
  48984. characterMakers.push(() => makeCharacter(
  48985. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48986. {
  48987. front: {
  48988. height: math.unit(6, "feet"),
  48989. name: "Front",
  48990. image: {
  48991. source: "./media/characters/steph/front.svg",
  48992. extra: 1430/1330,
  48993. bottom: 54/1484
  48994. }
  48995. },
  48996. },
  48997. [
  48998. {
  48999. name: "Normal",
  49000. height: math.unit(6, "feet"),
  49001. default: true
  49002. },
  49003. ]
  49004. ))
  49005. characterMakers.push(() => makeCharacter(
  49006. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49007. {
  49008. front: {
  49009. height: math.unit(9, "feet"),
  49010. weight: math.unit(400, "lb"),
  49011. name: "Front",
  49012. image: {
  49013. source: "./media/characters/kil'aman/front.svg",
  49014. extra: 1210/1159,
  49015. bottom: 109/1319
  49016. }
  49017. },
  49018. head: {
  49019. height: math.unit(2.14, "feet"),
  49020. name: "Head",
  49021. image: {
  49022. source: "./media/characters/kil'aman/head.svg"
  49023. }
  49024. },
  49025. maw: {
  49026. height: math.unit(1.21, "feet"),
  49027. name: "Maw",
  49028. image: {
  49029. source: "./media/characters/kil'aman/maw.svg"
  49030. }
  49031. },
  49032. foot: {
  49033. height: math.unit(1.7, "feet"),
  49034. name: "Foot",
  49035. image: {
  49036. source: "./media/characters/kil'aman/foot.svg"
  49037. }
  49038. },
  49039. dick: {
  49040. height: math.unit(2.1, "feet"),
  49041. name: "Dick",
  49042. image: {
  49043. source: "./media/characters/kil'aman/dick.svg"
  49044. }
  49045. },
  49046. },
  49047. [
  49048. {
  49049. name: "Normal",
  49050. height: math.unit(9, "feet")
  49051. },
  49052. {
  49053. name: "Canon Height",
  49054. height: math.unit(10, "miles"),
  49055. default: true
  49056. },
  49057. {
  49058. name: "Maximum",
  49059. height: math.unit(6e9, "miles")
  49060. },
  49061. ]
  49062. ))
  49063. characterMakers.push(() => makeCharacter(
  49064. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49065. {
  49066. front: {
  49067. height: math.unit(90, "feet"),
  49068. weight: math.unit(675000, "lb"),
  49069. name: "Front",
  49070. image: {
  49071. source: "./media/characters/qadan/front.svg",
  49072. extra: 1012/1004,
  49073. bottom: 78/1090
  49074. }
  49075. },
  49076. back: {
  49077. height: math.unit(90, "feet"),
  49078. weight: math.unit(675000, "lb"),
  49079. name: "Back",
  49080. image: {
  49081. source: "./media/characters/qadan/back.svg",
  49082. extra: 1042/1031,
  49083. bottom: 55/1097
  49084. }
  49085. },
  49086. armored: {
  49087. height: math.unit(90, "feet"),
  49088. weight: math.unit(675000, "lb"),
  49089. name: "Armored",
  49090. image: {
  49091. source: "./media/characters/qadan/armored.svg",
  49092. extra: 1047/1037,
  49093. bottom: 48/1095
  49094. }
  49095. },
  49096. },
  49097. [
  49098. {
  49099. name: "Normal",
  49100. height: math.unit(90, "feet"),
  49101. default: true
  49102. },
  49103. ]
  49104. ))
  49105. characterMakers.push(() => makeCharacter(
  49106. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49107. {
  49108. front: {
  49109. height: math.unit(6, "feet"),
  49110. weight: math.unit(225, "lb"),
  49111. name: "Front",
  49112. image: {
  49113. source: "./media/characters/brooke/front.svg",
  49114. extra: 1050/1010,
  49115. bottom: 66/1116
  49116. }
  49117. },
  49118. back: {
  49119. height: math.unit(6, "feet"),
  49120. weight: math.unit(225, "lb"),
  49121. name: "Back",
  49122. image: {
  49123. source: "./media/characters/brooke/back.svg",
  49124. extra: 1053/1013,
  49125. bottom: 41/1094
  49126. }
  49127. },
  49128. dressed: {
  49129. height: math.unit(6, "feet"),
  49130. weight: math.unit(225, "lb"),
  49131. name: "Dressed",
  49132. image: {
  49133. source: "./media/characters/brooke/dressed.svg",
  49134. extra: 1050/1010,
  49135. bottom: 66/1116
  49136. }
  49137. },
  49138. },
  49139. [
  49140. {
  49141. name: "Canon Height",
  49142. height: math.unit(500, "miles"),
  49143. default: true
  49144. },
  49145. ]
  49146. ))
  49147. characterMakers.push(() => makeCharacter(
  49148. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49149. {
  49150. front: {
  49151. height: math.unit(6 + 2/12, "feet"),
  49152. weight: math.unit(210, "lb"),
  49153. name: "Front",
  49154. image: {
  49155. source: "./media/characters/wubs/front.svg",
  49156. extra: 1345/1325,
  49157. bottom: 70/1415
  49158. }
  49159. },
  49160. back: {
  49161. height: math.unit(6 + 2/12, "feet"),
  49162. weight: math.unit(210, "lb"),
  49163. name: "Back",
  49164. image: {
  49165. source: "./media/characters/wubs/back.svg",
  49166. extra: 1296/1275,
  49167. bottom: 58/1354
  49168. }
  49169. },
  49170. },
  49171. [
  49172. {
  49173. name: "Normal",
  49174. height: math.unit(6 + 2/12, "feet"),
  49175. default: true
  49176. },
  49177. {
  49178. name: "Macro",
  49179. height: math.unit(1000, "feet")
  49180. },
  49181. {
  49182. name: "Megamacro",
  49183. height: math.unit(1, "mile")
  49184. },
  49185. ]
  49186. ))
  49187. characterMakers.push(() => makeCharacter(
  49188. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49189. {
  49190. front: {
  49191. height: math.unit(4, "feet"),
  49192. weight: math.unit(120, "lb"),
  49193. name: "Front",
  49194. image: {
  49195. source: "./media/characters/blue/front.svg",
  49196. extra: 1636/1525,
  49197. bottom: 43/1679
  49198. }
  49199. },
  49200. back: {
  49201. height: math.unit(4, "feet"),
  49202. weight: math.unit(120, "lb"),
  49203. name: "Back",
  49204. image: {
  49205. source: "./media/characters/blue/back.svg",
  49206. extra: 1660/1560,
  49207. bottom: 57/1717
  49208. }
  49209. },
  49210. paws: {
  49211. height: math.unit(0.826, "feet"),
  49212. name: "Paws",
  49213. image: {
  49214. source: "./media/characters/blue/paws.svg"
  49215. }
  49216. },
  49217. },
  49218. [
  49219. {
  49220. name: "Micro",
  49221. height: math.unit(3, "inches")
  49222. },
  49223. {
  49224. name: "Normal",
  49225. height: math.unit(4, "feet"),
  49226. default: true
  49227. },
  49228. {
  49229. name: "Femenine Form",
  49230. height: math.unit(14, "feet")
  49231. },
  49232. {
  49233. name: "Werebat Form",
  49234. height: math.unit(18, "feet")
  49235. },
  49236. ]
  49237. ))
  49238. characterMakers.push(() => makeCharacter(
  49239. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49240. {
  49241. female: {
  49242. height: math.unit(7 + 4/12, "feet"),
  49243. weight: math.unit(243, "lb"),
  49244. name: "Female",
  49245. image: {
  49246. source: "./media/characters/kaya/female.svg",
  49247. extra: 975/898,
  49248. bottom: 34/1009
  49249. }
  49250. },
  49251. herm: {
  49252. height: math.unit(7 + 4/12, "feet"),
  49253. weight: math.unit(243, "lb"),
  49254. name: "Herm",
  49255. image: {
  49256. source: "./media/characters/kaya/herm.svg",
  49257. extra: 975/898,
  49258. bottom: 34/1009
  49259. }
  49260. },
  49261. },
  49262. [
  49263. {
  49264. name: "Normal",
  49265. height: math.unit(7 + 4/12, "feet"),
  49266. default: true
  49267. },
  49268. ]
  49269. ))
  49270. characterMakers.push(() => makeCharacter(
  49271. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49272. {
  49273. female: {
  49274. height: math.unit(9 + 4/12, "feet"),
  49275. weight: math.unit(398, "lb"),
  49276. name: "Female",
  49277. image: {
  49278. source: "./media/characters/kassandra/female.svg",
  49279. extra: 908/839,
  49280. bottom: 61/969
  49281. }
  49282. },
  49283. intersex: {
  49284. height: math.unit(9 + 4/12, "feet"),
  49285. weight: math.unit(398, "lb"),
  49286. name: "Intersex",
  49287. image: {
  49288. source: "./media/characters/kassandra/intersex.svg",
  49289. extra: 908/839,
  49290. bottom: 61/969
  49291. }
  49292. },
  49293. },
  49294. [
  49295. {
  49296. name: "Normal",
  49297. height: math.unit(9 + 4/12, "feet"),
  49298. default: true
  49299. },
  49300. ]
  49301. ))
  49302. characterMakers.push(() => makeCharacter(
  49303. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49304. {
  49305. front: {
  49306. height: math.unit(3, "meters"),
  49307. name: "Front",
  49308. image: {
  49309. source: "./media/characters/amy/front.svg",
  49310. extra: 1380/1343,
  49311. bottom: 70/1450
  49312. }
  49313. },
  49314. back: {
  49315. height: math.unit(3, "meters"),
  49316. name: "Back",
  49317. image: {
  49318. source: "./media/characters/amy/back.svg",
  49319. extra: 1380/1347,
  49320. bottom: 66/1446
  49321. }
  49322. },
  49323. },
  49324. [
  49325. {
  49326. name: "Normal",
  49327. height: math.unit(3, "meters"),
  49328. default: true
  49329. },
  49330. ]
  49331. ))
  49332. characterMakers.push(() => makeCharacter(
  49333. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49334. {
  49335. side: {
  49336. height: math.unit(47, "cm"),
  49337. weight: math.unit(10.8, "kg"),
  49338. name: "Side",
  49339. image: {
  49340. source: "./media/characters/alphaschakal/side.svg",
  49341. extra: 1058/568,
  49342. bottom: 62/1120
  49343. }
  49344. },
  49345. back: {
  49346. height: math.unit(78, "cm"),
  49347. weight: math.unit(10.8, "kg"),
  49348. name: "Back",
  49349. image: {
  49350. source: "./media/characters/alphaschakal/back.svg",
  49351. extra: 1102/942,
  49352. bottom: 185/1287
  49353. }
  49354. },
  49355. head: {
  49356. height: math.unit(28, "cm"),
  49357. name: "Head",
  49358. image: {
  49359. source: "./media/characters/alphaschakal/head.svg",
  49360. extra: 696/508,
  49361. bottom: 0/696
  49362. }
  49363. },
  49364. paw: {
  49365. height: math.unit(16, "cm"),
  49366. name: "Paw",
  49367. image: {
  49368. source: "./media/characters/alphaschakal/paw.svg"
  49369. }
  49370. },
  49371. },
  49372. [
  49373. {
  49374. name: "Normal",
  49375. height: math.unit(47, "cm"),
  49376. default: true
  49377. },
  49378. {
  49379. name: "Macro",
  49380. height: math.unit(340, "cm")
  49381. },
  49382. ]
  49383. ))
  49384. characterMakers.push(() => makeCharacter(
  49385. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49386. {
  49387. front: {
  49388. height: math.unit(36, "earths"),
  49389. name: "Front",
  49390. image: {
  49391. source: "./media/characters/ecobyss/front.svg",
  49392. extra: 1282/1215,
  49393. bottom: 11/1293
  49394. }
  49395. },
  49396. back: {
  49397. height: math.unit(36, "earths"),
  49398. name: "Back",
  49399. image: {
  49400. source: "./media/characters/ecobyss/back.svg",
  49401. extra: 1291/1222,
  49402. bottom: 8/1299
  49403. }
  49404. },
  49405. },
  49406. [
  49407. {
  49408. name: "Normal",
  49409. height: math.unit(36, "earths"),
  49410. default: true
  49411. },
  49412. ]
  49413. ))
  49414. characterMakers.push(() => makeCharacter(
  49415. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49416. {
  49417. front: {
  49418. height: math.unit(12, "feet"),
  49419. name: "Front",
  49420. image: {
  49421. source: "./media/characters/vasuk/front.svg",
  49422. extra: 1326/1207,
  49423. bottom: 64/1390
  49424. }
  49425. },
  49426. },
  49427. [
  49428. {
  49429. name: "Normal",
  49430. height: math.unit(12, "feet"),
  49431. default: true
  49432. },
  49433. ]
  49434. ))
  49435. characterMakers.push(() => makeCharacter(
  49436. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49437. {
  49438. side: {
  49439. height: math.unit(100, "feet"),
  49440. name: "Side",
  49441. image: {
  49442. source: "./media/characters/linneaus/side.svg",
  49443. extra: 987/807,
  49444. bottom: 47/1034
  49445. }
  49446. },
  49447. },
  49448. [
  49449. {
  49450. name: "Macro",
  49451. height: math.unit(100, "feet"),
  49452. default: true
  49453. },
  49454. ]
  49455. ))
  49456. characterMakers.push(() => makeCharacter(
  49457. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49458. {
  49459. front: {
  49460. height: math.unit(8, "feet"),
  49461. weight: math.unit(1200, "lb"),
  49462. name: "Front",
  49463. image: {
  49464. source: "./media/characters/nyterious-daligdig/front.svg",
  49465. extra: 1284/1094,
  49466. bottom: 84/1368
  49467. }
  49468. },
  49469. back: {
  49470. height: math.unit(8, "feet"),
  49471. weight: math.unit(1200, "lb"),
  49472. name: "Back",
  49473. image: {
  49474. source: "./media/characters/nyterious-daligdig/back.svg",
  49475. extra: 1301/1121,
  49476. bottom: 129/1430
  49477. }
  49478. },
  49479. mouth: {
  49480. height: math.unit(1.464, "feet"),
  49481. name: "Mouth",
  49482. image: {
  49483. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49484. }
  49485. },
  49486. },
  49487. [
  49488. {
  49489. name: "Small",
  49490. height: math.unit(8, "feet"),
  49491. default: true
  49492. },
  49493. {
  49494. name: "Normal",
  49495. height: math.unit(15, "feet")
  49496. },
  49497. {
  49498. name: "Macro",
  49499. height: math.unit(90, "feet")
  49500. },
  49501. ]
  49502. ))
  49503. characterMakers.push(() => makeCharacter(
  49504. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49505. {
  49506. front: {
  49507. height: math.unit(7 + 4/12, "feet"),
  49508. weight: math.unit(252, "lb"),
  49509. name: "Front",
  49510. image: {
  49511. source: "./media/characters/bandel/front.svg",
  49512. extra: 1946/1775,
  49513. bottom: 26/1972
  49514. }
  49515. },
  49516. back: {
  49517. height: math.unit(7 + 4/12, "feet"),
  49518. weight: math.unit(252, "lb"),
  49519. name: "Back",
  49520. image: {
  49521. source: "./media/characters/bandel/back.svg",
  49522. extra: 1940/1770,
  49523. bottom: 25/1965
  49524. }
  49525. },
  49526. maw: {
  49527. height: math.unit(2.15, "feet"),
  49528. name: "Maw",
  49529. image: {
  49530. source: "./media/characters/bandel/maw.svg"
  49531. }
  49532. },
  49533. stomach: {
  49534. height: math.unit(1.95, "feet"),
  49535. name: "Stomach",
  49536. image: {
  49537. source: "./media/characters/bandel/stomach.svg"
  49538. }
  49539. },
  49540. },
  49541. [
  49542. {
  49543. name: "Normal",
  49544. height: math.unit(7 + 4/12, "feet"),
  49545. default: true
  49546. },
  49547. ]
  49548. ))
  49549. characterMakers.push(() => makeCharacter(
  49550. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49551. {
  49552. front: {
  49553. height: math.unit(10 + 5/12, "feet"),
  49554. weight: math.unit(773.5, "kg"),
  49555. name: "Front",
  49556. image: {
  49557. source: "./media/characters/zed/front.svg",
  49558. extra: 987/941,
  49559. bottom: 52/1039
  49560. }
  49561. },
  49562. },
  49563. [
  49564. {
  49565. name: "Short",
  49566. height: math.unit(5 + 4/12, "feet")
  49567. },
  49568. {
  49569. name: "Average",
  49570. height: math.unit(10 + 5/12, "feet"),
  49571. default: true
  49572. },
  49573. {
  49574. name: "Mini-Macro",
  49575. height: math.unit(24 + 9/12, "feet")
  49576. },
  49577. {
  49578. name: "Macro",
  49579. height: math.unit(249, "feet")
  49580. },
  49581. {
  49582. name: "Mega-Macro",
  49583. height: math.unit(12490, "feet")
  49584. },
  49585. {
  49586. name: "Giga-Macro",
  49587. height: math.unit(24.9, "miles")
  49588. },
  49589. {
  49590. name: "Tera-Macro",
  49591. height: math.unit(24900, "miles")
  49592. },
  49593. {
  49594. name: "Cosmic Scale",
  49595. height: math.unit(38.9, "lightyears")
  49596. },
  49597. {
  49598. name: "Universal Scale",
  49599. height: math.unit(138e12, "lightyears")
  49600. },
  49601. ]
  49602. ))
  49603. characterMakers.push(() => makeCharacter(
  49604. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49605. {
  49606. front: {
  49607. height: math.unit(1561, "inches"),
  49608. name: "Front",
  49609. image: {
  49610. source: "./media/characters/ivan/front.svg",
  49611. extra: 1126/1071,
  49612. bottom: 26/1152
  49613. }
  49614. },
  49615. back: {
  49616. height: math.unit(1561, "inches"),
  49617. name: "Back",
  49618. image: {
  49619. source: "./media/characters/ivan/back.svg",
  49620. extra: 1134/1079,
  49621. bottom: 30/1164
  49622. }
  49623. },
  49624. },
  49625. [
  49626. {
  49627. name: "Normal",
  49628. height: math.unit(1561, "inches"),
  49629. default: true
  49630. },
  49631. ]
  49632. ))
  49633. characterMakers.push(() => makeCharacter(
  49634. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49635. {
  49636. front: {
  49637. height: math.unit(5 + 7/12, "feet"),
  49638. weight: math.unit(150, "lb"),
  49639. name: "Front",
  49640. image: {
  49641. source: "./media/characters/robin-arctic-hare/front.svg",
  49642. extra: 1148/974,
  49643. bottom: 20/1168
  49644. }
  49645. },
  49646. },
  49647. [
  49648. {
  49649. name: "Normal",
  49650. height: math.unit(5 + 7/12, "feet"),
  49651. default: true
  49652. },
  49653. ]
  49654. ))
  49655. characterMakers.push(() => makeCharacter(
  49656. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49657. {
  49658. side: {
  49659. height: math.unit(5, "feet"),
  49660. name: "Side",
  49661. image: {
  49662. source: "./media/characters/birch/side.svg",
  49663. extra: 985/796,
  49664. bottom: 111/1096
  49665. }
  49666. },
  49667. },
  49668. [
  49669. {
  49670. name: "Normal",
  49671. height: math.unit(5, "feet"),
  49672. default: true
  49673. },
  49674. ]
  49675. ))
  49676. characterMakers.push(() => makeCharacter(
  49677. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49678. {
  49679. front: {
  49680. height: math.unit(4, "feet"),
  49681. name: "Front",
  49682. image: {
  49683. source: "./media/characters/rasp/front.svg",
  49684. extra: 561/478,
  49685. bottom: 74/635
  49686. }
  49687. },
  49688. },
  49689. [
  49690. {
  49691. name: "Normal",
  49692. height: math.unit(4, "feet"),
  49693. default: true
  49694. },
  49695. ]
  49696. ))
  49697. characterMakers.push(() => makeCharacter(
  49698. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49699. {
  49700. front: {
  49701. height: math.unit(4 + 6/12, "feet"),
  49702. name: "Front",
  49703. image: {
  49704. source: "./media/characters/agatha/front.svg",
  49705. extra: 947/933,
  49706. bottom: 42/989
  49707. }
  49708. },
  49709. back: {
  49710. height: math.unit(4 + 6/12, "feet"),
  49711. name: "Back",
  49712. image: {
  49713. source: "./media/characters/agatha/back.svg",
  49714. extra: 935/922,
  49715. bottom: 48/983
  49716. }
  49717. },
  49718. },
  49719. [
  49720. {
  49721. name: "Normal",
  49722. height: math.unit(4 + 6 /12, "feet"),
  49723. default: true
  49724. },
  49725. {
  49726. name: "Max Size",
  49727. height: math.unit(500, "feet")
  49728. },
  49729. ]
  49730. ))
  49731. characterMakers.push(() => makeCharacter(
  49732. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49733. {
  49734. side: {
  49735. height: math.unit(30, "feet"),
  49736. name: "Side",
  49737. image: {
  49738. source: "./media/characters/roggy/side.svg",
  49739. extra: 909/643,
  49740. bottom: 63/972
  49741. }
  49742. },
  49743. lounging: {
  49744. height: math.unit(20, "feet"),
  49745. name: "Lounging",
  49746. image: {
  49747. source: "./media/characters/roggy/lounging.svg",
  49748. extra: 643/479,
  49749. bottom: 145/788
  49750. }
  49751. },
  49752. handpaw: {
  49753. height: math.unit(13.1, "feet"),
  49754. name: "Handpaw",
  49755. image: {
  49756. source: "./media/characters/roggy/handpaw.svg"
  49757. }
  49758. },
  49759. footpaw: {
  49760. height: math.unit(15.8, "feet"),
  49761. name: "Footpaw",
  49762. image: {
  49763. source: "./media/characters/roggy/footpaw.svg"
  49764. }
  49765. },
  49766. },
  49767. [
  49768. {
  49769. name: "Menacing",
  49770. height: math.unit(30, "feet"),
  49771. default: true
  49772. },
  49773. ]
  49774. ))
  49775. characterMakers.push(() => makeCharacter(
  49776. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49777. {
  49778. front: {
  49779. height: math.unit(5 + 7/12, "feet"),
  49780. weight: math.unit(135, "lb"),
  49781. name: "Front",
  49782. image: {
  49783. source: "./media/characters/naomi/front.svg",
  49784. extra: 1209/1154,
  49785. bottom: 129/1338
  49786. }
  49787. },
  49788. back: {
  49789. height: math.unit(5 + 7/12, "feet"),
  49790. weight: math.unit(135, "lb"),
  49791. name: "Back",
  49792. image: {
  49793. source: "./media/characters/naomi/back.svg",
  49794. extra: 1252/1190,
  49795. bottom: 23/1275
  49796. }
  49797. },
  49798. },
  49799. [
  49800. {
  49801. name: "Normal",
  49802. height: math.unit(5 + 7 /12, "feet"),
  49803. default: true
  49804. },
  49805. ]
  49806. ))
  49807. characterMakers.push(() => makeCharacter(
  49808. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49809. {
  49810. side: {
  49811. height: math.unit(35, "meters"),
  49812. name: "Side",
  49813. image: {
  49814. source: "./media/characters/kimpi/side.svg",
  49815. extra: 419/382,
  49816. bottom: 63/482
  49817. }
  49818. },
  49819. hand: {
  49820. height: math.unit(8.96, "meters"),
  49821. name: "Hand",
  49822. image: {
  49823. source: "./media/characters/kimpi/hand.svg"
  49824. }
  49825. },
  49826. },
  49827. [
  49828. {
  49829. name: "Normal",
  49830. height: math.unit(35, "meters"),
  49831. default: true
  49832. },
  49833. ]
  49834. ))
  49835. characterMakers.push(() => makeCharacter(
  49836. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49837. {
  49838. front: {
  49839. height: math.unit(4 + 4/12, "feet"),
  49840. name: "Front",
  49841. image: {
  49842. source: "./media/characters/pepper-purrloin/front.svg",
  49843. extra: 1141/1024,
  49844. bottom: 21/1162
  49845. }
  49846. },
  49847. },
  49848. [
  49849. {
  49850. name: "Normal",
  49851. height: math.unit(4 + 4/12, "feet"),
  49852. default: true
  49853. },
  49854. ]
  49855. ))
  49856. characterMakers.push(() => makeCharacter(
  49857. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49858. {
  49859. front: {
  49860. height: math.unit(6 + 2/12, "feet"),
  49861. name: "Front",
  49862. image: {
  49863. source: "./media/characters/raphael/front.svg",
  49864. extra: 1101/962,
  49865. bottom: 59/1160
  49866. }
  49867. },
  49868. },
  49869. [
  49870. {
  49871. name: "Normal",
  49872. height: math.unit(6 + 2/12, "feet"),
  49873. default: true
  49874. },
  49875. ]
  49876. ))
  49877. characterMakers.push(() => makeCharacter(
  49878. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49879. {
  49880. front: {
  49881. height: math.unit(6, "feet"),
  49882. weight: math.unit(150, "lb"),
  49883. name: "Front",
  49884. image: {
  49885. source: "./media/characters/victor-williams/front.svg",
  49886. extra: 1894/1825,
  49887. bottom: 67/1961
  49888. }
  49889. },
  49890. },
  49891. [
  49892. {
  49893. name: "Normal",
  49894. height: math.unit(6, "feet"),
  49895. default: true
  49896. },
  49897. ]
  49898. ))
  49899. characterMakers.push(() => makeCharacter(
  49900. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49901. {
  49902. front: {
  49903. height: math.unit(5 + 8/12, "feet"),
  49904. weight: math.unit(150, "lb"),
  49905. name: "Front",
  49906. image: {
  49907. source: "./media/characters/rachel/front.svg",
  49908. extra: 1902/1787,
  49909. bottom: 46/1948
  49910. }
  49911. },
  49912. },
  49913. [
  49914. {
  49915. name: "Base Height",
  49916. height: math.unit(5 + 8/12, "feet"),
  49917. default: true
  49918. },
  49919. {
  49920. name: "Macro",
  49921. height: math.unit(200, "feet")
  49922. },
  49923. {
  49924. name: "Mega Macro",
  49925. height: math.unit(1, "mile")
  49926. },
  49927. {
  49928. name: "Giga Macro",
  49929. height: math.unit(1500, "miles")
  49930. },
  49931. {
  49932. name: "Tera Macro",
  49933. height: math.unit(8000, "miles")
  49934. },
  49935. {
  49936. name: "Tera Macro+",
  49937. height: math.unit(2e5, "miles")
  49938. },
  49939. ]
  49940. ))
  49941. characterMakers.push(() => makeCharacter(
  49942. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49943. {
  49944. front: {
  49945. height: math.unit(6.5, "feet"),
  49946. name: "Front",
  49947. image: {
  49948. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49949. extra: 860/819,
  49950. bottom: 307/1167
  49951. }
  49952. },
  49953. back: {
  49954. height: math.unit(6.5, "feet"),
  49955. name: "Back",
  49956. image: {
  49957. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49958. extra: 880/837,
  49959. bottom: 395/1275
  49960. }
  49961. },
  49962. sleeping: {
  49963. height: math.unit(2.79, "feet"),
  49964. name: "Sleeping",
  49965. image: {
  49966. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49967. extra: 465/383,
  49968. bottom: 263/728
  49969. }
  49970. },
  49971. maw: {
  49972. height: math.unit(2.52, "feet"),
  49973. name: "Maw",
  49974. image: {
  49975. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49976. }
  49977. },
  49978. },
  49979. [
  49980. {
  49981. name: "Normal",
  49982. height: math.unit(6.5, "feet"),
  49983. default: true
  49984. },
  49985. ]
  49986. ))
  49987. characterMakers.push(() => makeCharacter(
  49988. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49989. {
  49990. front: {
  49991. height: math.unit(5, "feet"),
  49992. name: "Front",
  49993. image: {
  49994. source: "./media/characters/nova-nerium/front.svg",
  49995. extra: 1548/1392,
  49996. bottom: 374/1922
  49997. }
  49998. },
  49999. back: {
  50000. height: math.unit(5, "feet"),
  50001. name: "Back",
  50002. image: {
  50003. source: "./media/characters/nova-nerium/back.svg",
  50004. extra: 1658/1468,
  50005. bottom: 257/1915
  50006. }
  50007. },
  50008. },
  50009. [
  50010. {
  50011. name: "Normal",
  50012. height: math.unit(5, "feet"),
  50013. default: true
  50014. },
  50015. ]
  50016. ))
  50017. characterMakers.push(() => makeCharacter(
  50018. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50019. {
  50020. front: {
  50021. height: math.unit(5 + 4/12, "feet"),
  50022. name: "Front",
  50023. image: {
  50024. source: "./media/characters/ashe-pyriph/front.svg",
  50025. extra: 1935/1747,
  50026. bottom: 60/1995
  50027. }
  50028. },
  50029. },
  50030. [
  50031. {
  50032. name: "Normal",
  50033. height: math.unit(5 + 4/12, "feet"),
  50034. default: true
  50035. },
  50036. ]
  50037. ))
  50038. characterMakers.push(() => makeCharacter(
  50039. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50040. {
  50041. front: {
  50042. height: math.unit(8.7, "feet"),
  50043. name: "Front",
  50044. image: {
  50045. source: "./media/characters/flicker-wisp/front.svg",
  50046. extra: 1835/1613,
  50047. bottom: 449/2284
  50048. }
  50049. },
  50050. side: {
  50051. height: math.unit(8.7, "feet"),
  50052. name: "Side",
  50053. image: {
  50054. source: "./media/characters/flicker-wisp/side.svg",
  50055. extra: 1841/1642,
  50056. bottom: 336/2177
  50057. },
  50058. default: true
  50059. },
  50060. maw: {
  50061. height: math.unit(3.35, "feet"),
  50062. name: "Maw",
  50063. image: {
  50064. source: "./media/characters/flicker-wisp/maw.svg",
  50065. extra: 2338/1506,
  50066. bottom: 0/2338
  50067. }
  50068. },
  50069. ovipositor: {
  50070. height: math.unit(4.95, "feet"),
  50071. name: "Ovipositor",
  50072. image: {
  50073. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50074. }
  50075. },
  50076. egg: {
  50077. height: math.unit(0.385, "feet"),
  50078. weight: math.unit(2, "lb"),
  50079. name: "Egg",
  50080. image: {
  50081. source: "./media/characters/flicker-wisp/egg.svg"
  50082. }
  50083. },
  50084. },
  50085. [
  50086. {
  50087. name: "Normal",
  50088. height: math.unit(8.7, "feet"),
  50089. default: true
  50090. },
  50091. ]
  50092. ))
  50093. characterMakers.push(() => makeCharacter(
  50094. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50095. {
  50096. side: {
  50097. height: math.unit(11, "feet"),
  50098. name: "Side",
  50099. image: {
  50100. source: "./media/characters/faefnul/side.svg",
  50101. extra: 1100/1007,
  50102. bottom: 0/1100
  50103. }
  50104. },
  50105. },
  50106. [
  50107. {
  50108. name: "Normal",
  50109. height: math.unit(11, "feet"),
  50110. default: true
  50111. },
  50112. ]
  50113. ))
  50114. characterMakers.push(() => makeCharacter(
  50115. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50116. {
  50117. front: {
  50118. height: math.unit(6 + 2/12, "feet"),
  50119. name: "Front",
  50120. image: {
  50121. source: "./media/characters/shady/front.svg",
  50122. extra: 502/461,
  50123. bottom: 9/511
  50124. }
  50125. },
  50126. kneeling: {
  50127. height: math.unit(4.6, "feet"),
  50128. name: "Kneeling",
  50129. image: {
  50130. source: "./media/characters/shady/kneeling.svg",
  50131. extra: 1328/1219,
  50132. bottom: 117/1445
  50133. }
  50134. },
  50135. maw: {
  50136. height: math.unit(2, "feet"),
  50137. name: "Maw",
  50138. image: {
  50139. source: "./media/characters/shady/maw.svg"
  50140. }
  50141. },
  50142. },
  50143. [
  50144. {
  50145. name: "Nano",
  50146. height: math.unit(1, "mm")
  50147. },
  50148. {
  50149. name: "Micro",
  50150. height: math.unit(12, "mm")
  50151. },
  50152. {
  50153. name: "Tiny",
  50154. height: math.unit(3, "inches")
  50155. },
  50156. {
  50157. name: "Normal",
  50158. height: math.unit(6 + 2/12, "feet"),
  50159. default: true
  50160. },
  50161. {
  50162. name: "Big",
  50163. height: math.unit(15, "feet")
  50164. },
  50165. {
  50166. name: "Macro",
  50167. height: math.unit(150, "feet")
  50168. },
  50169. {
  50170. name: "Titanic",
  50171. height: math.unit(500, "feet")
  50172. },
  50173. ]
  50174. ))
  50175. characterMakers.push(() => makeCharacter(
  50176. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50177. {
  50178. front: {
  50179. height: math.unit(12, "feet"),
  50180. name: "Front",
  50181. image: {
  50182. source: "./media/characters/fenrir/front.svg",
  50183. extra: 968/875,
  50184. bottom: 22/990
  50185. }
  50186. },
  50187. },
  50188. [
  50189. {
  50190. name: "Big",
  50191. height: math.unit(12, "feet"),
  50192. default: true
  50193. },
  50194. ]
  50195. ))
  50196. characterMakers.push(() => makeCharacter(
  50197. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50198. {
  50199. front: {
  50200. height: math.unit(5 + 4/12, "feet"),
  50201. name: "Front",
  50202. image: {
  50203. source: "./media/characters/makar/front.svg",
  50204. extra: 1181/1112,
  50205. bottom: 78/1259
  50206. }
  50207. },
  50208. },
  50209. [
  50210. {
  50211. name: "Normal",
  50212. height: math.unit(5 + 4/12, "feet"),
  50213. default: true
  50214. },
  50215. ]
  50216. ))
  50217. characterMakers.push(() => makeCharacter(
  50218. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50219. {
  50220. front: {
  50221. height: math.unit(5 + 7/12, "feet"),
  50222. name: "Front",
  50223. image: {
  50224. source: "./media/characters/callow/front.svg",
  50225. extra: 1482/1304,
  50226. bottom: 23/1505
  50227. }
  50228. },
  50229. back: {
  50230. height: math.unit(5 + 7/12, "feet"),
  50231. name: "Back",
  50232. image: {
  50233. source: "./media/characters/callow/back.svg",
  50234. extra: 1484/1296,
  50235. bottom: 25/1509
  50236. }
  50237. },
  50238. },
  50239. [
  50240. {
  50241. name: "Micro",
  50242. height: math.unit(3, "inches"),
  50243. default: true
  50244. },
  50245. {
  50246. name: "Normal",
  50247. height: math.unit(5 + 7/12, "feet")
  50248. },
  50249. ]
  50250. ))
  50251. characterMakers.push(() => makeCharacter(
  50252. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50253. {
  50254. front: {
  50255. height: math.unit(6 + 2/12, "feet"),
  50256. name: "Front",
  50257. image: {
  50258. source: "./media/characters/natel/front.svg",
  50259. extra: 1833/1692,
  50260. bottom: 166/1999
  50261. }
  50262. },
  50263. },
  50264. [
  50265. {
  50266. name: "Normal",
  50267. height: math.unit(6 + 2/12, "feet"),
  50268. default: true
  50269. },
  50270. ]
  50271. ))
  50272. characterMakers.push(() => makeCharacter(
  50273. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50274. {
  50275. front: {
  50276. height: math.unit(1.75, "meters"),
  50277. name: "Front",
  50278. image: {
  50279. source: "./media/characters/misu/front.svg",
  50280. extra: 1690/1558,
  50281. bottom: 234/1924
  50282. }
  50283. },
  50284. back: {
  50285. height: math.unit(1.75, "meters"),
  50286. name: "Back",
  50287. image: {
  50288. source: "./media/characters/misu/back.svg",
  50289. extra: 1762/1618,
  50290. bottom: 146/1908
  50291. }
  50292. },
  50293. frontNude: {
  50294. height: math.unit(1.75, "meters"),
  50295. name: "Front (Nude)",
  50296. image: {
  50297. source: "./media/characters/misu/front-nude.svg",
  50298. extra: 1690/1558,
  50299. bottom: 234/1924
  50300. }
  50301. },
  50302. backNude: {
  50303. height: math.unit(1.75, "meters"),
  50304. name: "Back (Nude)",
  50305. image: {
  50306. source: "./media/characters/misu/back-nude.svg",
  50307. extra: 1762/1618,
  50308. bottom: 146/1908
  50309. }
  50310. },
  50311. frontErect: {
  50312. height: math.unit(1.75, "meters"),
  50313. name: "Front (Erect)",
  50314. image: {
  50315. source: "./media/characters/misu/front-erect.svg",
  50316. extra: 1690/1558,
  50317. bottom: 234/1924
  50318. }
  50319. },
  50320. maw: {
  50321. height: math.unit(0.47, "meters"),
  50322. name: "Maw",
  50323. image: {
  50324. source: "./media/characters/misu/maw.svg"
  50325. }
  50326. },
  50327. head: {
  50328. height: math.unit(0.35, "meters"),
  50329. name: "Head",
  50330. image: {
  50331. source: "./media/characters/misu/head.svg"
  50332. }
  50333. },
  50334. rear: {
  50335. height: math.unit(0.47, "meters"),
  50336. name: "Rear",
  50337. image: {
  50338. source: "./media/characters/misu/rear.svg"
  50339. }
  50340. },
  50341. },
  50342. [
  50343. {
  50344. name: "Normal",
  50345. height: math.unit(1.75, "meters")
  50346. },
  50347. {
  50348. name: "Not good for the people",
  50349. height: math.unit(42, "meters")
  50350. },
  50351. {
  50352. name: "Not good for the neighborhood",
  50353. height: math.unit(135, "meters")
  50354. },
  50355. {
  50356. name: "Bit bigger problem",
  50357. height: math.unit(380, "meters"),
  50358. default: true
  50359. },
  50360. {
  50361. name: "Not good for the city",
  50362. height: math.unit(1.5, "km")
  50363. },
  50364. {
  50365. name: "Not good for the county",
  50366. height: math.unit(5.5, "km")
  50367. },
  50368. {
  50369. name: "Not good for the state",
  50370. height: math.unit(25, "km")
  50371. },
  50372. {
  50373. name: "Not good for the country",
  50374. height: math.unit(125, "km")
  50375. },
  50376. {
  50377. name: "Not good for the continent",
  50378. height: math.unit(2100, "km")
  50379. },
  50380. {
  50381. name: "Not good for the planet",
  50382. height: math.unit(35000, "km")
  50383. },
  50384. {
  50385. name: "Just no",
  50386. height: math.unit(8.5e18, "km")
  50387. },
  50388. ]
  50389. ))
  50390. characterMakers.push(() => makeCharacter(
  50391. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50392. {
  50393. front: {
  50394. height: math.unit(6.5, "feet"),
  50395. name: "Front",
  50396. image: {
  50397. source: "./media/characters/poppy/front.svg",
  50398. extra: 1878/1812,
  50399. bottom: 43/1921
  50400. }
  50401. },
  50402. feet: {
  50403. height: math.unit(1.06, "feet"),
  50404. name: "Feet",
  50405. image: {
  50406. source: "./media/characters/poppy/feet.svg",
  50407. extra: 1083/1083,
  50408. bottom: 87/1170
  50409. }
  50410. },
  50411. },
  50412. [
  50413. {
  50414. name: "Human",
  50415. height: math.unit(6.5, "feet")
  50416. },
  50417. {
  50418. name: "Default",
  50419. height: math.unit(300, "feet"),
  50420. default: true
  50421. },
  50422. {
  50423. name: "Huge",
  50424. height: math.unit(850, "feet")
  50425. },
  50426. {
  50427. name: "Mega",
  50428. height: math.unit(8000, "feet")
  50429. },
  50430. {
  50431. name: "Giga",
  50432. height: math.unit(300, "miles")
  50433. },
  50434. ]
  50435. ))
  50436. characterMakers.push(() => makeCharacter(
  50437. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50438. {
  50439. bipedal: {
  50440. height: math.unit(7, "feet"),
  50441. name: "Bipedal",
  50442. image: {
  50443. source: "./media/characters/zener/bipedal.svg",
  50444. extra: 874/805,
  50445. bottom: 109/983
  50446. }
  50447. },
  50448. quadrupedal: {
  50449. height: math.unit(4.64, "feet"),
  50450. name: "Quadrupedal",
  50451. image: {
  50452. source: "./media/characters/zener/quadrupedal.svg",
  50453. extra: 638/507,
  50454. bottom: 190/828
  50455. }
  50456. },
  50457. cock: {
  50458. height: math.unit(18, "inches"),
  50459. name: "Cock",
  50460. image: {
  50461. source: "./media/characters/zener/cock.svg"
  50462. }
  50463. },
  50464. },
  50465. [
  50466. {
  50467. name: "Normal",
  50468. height: math.unit(7, "feet"),
  50469. default: true
  50470. },
  50471. ]
  50472. ))
  50473. characterMakers.push(() => makeCharacter(
  50474. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50475. {
  50476. nude: {
  50477. height: math.unit(5 + 6/12, "feet"),
  50478. name: "Nude",
  50479. image: {
  50480. source: "./media/characters/charlie-dog/nude.svg",
  50481. extra: 768/734,
  50482. bottom: 26/794
  50483. }
  50484. },
  50485. dressed: {
  50486. height: math.unit(5 + 6/12, "feet"),
  50487. name: "Dressed",
  50488. image: {
  50489. source: "./media/characters/charlie-dog/dressed.svg",
  50490. extra: 768/734,
  50491. bottom: 26/794
  50492. }
  50493. },
  50494. },
  50495. [
  50496. {
  50497. name: "Normal",
  50498. height: math.unit(5 + 6/12, "feet"),
  50499. default: true
  50500. },
  50501. ]
  50502. ))
  50503. characterMakers.push(() => makeCharacter(
  50504. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50505. {
  50506. front: {
  50507. height: math.unit(6 + 4/12, "feet"),
  50508. name: "Front",
  50509. image: {
  50510. source: "./media/characters/ir'istrasz/front.svg",
  50511. extra: 1014/977,
  50512. bottom: 65/1079
  50513. }
  50514. },
  50515. back: {
  50516. height: math.unit(6 + 4/12, "feet"),
  50517. name: "Back",
  50518. image: {
  50519. source: "./media/characters/ir'istrasz/back.svg",
  50520. extra: 1024/992,
  50521. bottom: 34/1058
  50522. }
  50523. },
  50524. },
  50525. [
  50526. {
  50527. name: "Normal",
  50528. height: math.unit(6 + 4/12, "feet"),
  50529. default: true
  50530. },
  50531. ]
  50532. ))
  50533. characterMakers.push(() => makeCharacter(
  50534. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50535. {
  50536. front: {
  50537. height: math.unit(5 + 8/12, "feet"),
  50538. name: "Front",
  50539. image: {
  50540. source: "./media/characters/dee-ditto/front.svg",
  50541. extra: 1874/1785,
  50542. bottom: 68/1942
  50543. }
  50544. },
  50545. back: {
  50546. height: math.unit(5 + 8/12, "feet"),
  50547. name: "Back",
  50548. image: {
  50549. source: "./media/characters/dee-ditto/back.svg",
  50550. extra: 1870/1783,
  50551. bottom: 77/1947
  50552. }
  50553. },
  50554. },
  50555. [
  50556. {
  50557. name: "Normal",
  50558. height: math.unit(5 + 8/12, "feet"),
  50559. default: true
  50560. },
  50561. ]
  50562. ))
  50563. characterMakers.push(() => makeCharacter(
  50564. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50565. {
  50566. front: {
  50567. height: math.unit(7 + 6/12, "feet"),
  50568. name: "Front",
  50569. image: {
  50570. source: "./media/characters/fey/front.svg",
  50571. extra: 995/979,
  50572. bottom: 30/1025
  50573. }
  50574. },
  50575. back: {
  50576. height: math.unit(7 + 6/12, "feet"),
  50577. name: "Back",
  50578. image: {
  50579. source: "./media/characters/fey/back.svg",
  50580. extra: 1079/1008,
  50581. bottom: 5/1084
  50582. }
  50583. },
  50584. dressed: {
  50585. height: math.unit(7 + 6/12, "feet"),
  50586. name: "Dressed",
  50587. image: {
  50588. source: "./media/characters/fey/dressed.svg",
  50589. extra: 995/979,
  50590. bottom: 30/1025
  50591. }
  50592. },
  50593. },
  50594. [
  50595. {
  50596. name: "Normal",
  50597. height: math.unit(7 + 6/12, "feet"),
  50598. default: true
  50599. },
  50600. ]
  50601. ))
  50602. characterMakers.push(() => makeCharacter(
  50603. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50604. {
  50605. standing: {
  50606. height: math.unit(17, "feet"),
  50607. name: "Standing",
  50608. image: {
  50609. source: "./media/characters/aster/standing.svg",
  50610. extra: 1798/1598,
  50611. bottom: 117/1915
  50612. }
  50613. },
  50614. },
  50615. [
  50616. {
  50617. name: "Normal",
  50618. height: math.unit(17, "feet"),
  50619. default: true
  50620. },
  50621. {
  50622. name: "Homewrecker",
  50623. height: math.unit(95, "feet")
  50624. },
  50625. {
  50626. name: "Planet Devourer",
  50627. height: math.unit(1008000, "miles")
  50628. },
  50629. ]
  50630. ))
  50631. characterMakers.push(() => makeCharacter(
  50632. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50633. {
  50634. front: {
  50635. height: math.unit(6 + 5/12, "feet"),
  50636. weight: math.unit(265, "lb"),
  50637. name: "Front",
  50638. image: {
  50639. source: "./media/characters/devon-childs/front.svg",
  50640. extra: 1795/1721,
  50641. bottom: 41/1836
  50642. }
  50643. },
  50644. side: {
  50645. height: math.unit(6 + 5/12, "feet"),
  50646. weight: math.unit(265, "lb"),
  50647. name: "Side",
  50648. image: {
  50649. source: "./media/characters/devon-childs/side.svg",
  50650. extra: 1812/1738,
  50651. bottom: 30/1842
  50652. }
  50653. },
  50654. back: {
  50655. height: math.unit(6 + 5/12, "feet"),
  50656. weight: math.unit(265, "lb"),
  50657. name: "Back",
  50658. image: {
  50659. source: "./media/characters/devon-childs/back.svg",
  50660. extra: 1808/1735,
  50661. bottom: 23/1831
  50662. }
  50663. },
  50664. hand: {
  50665. height: math.unit(1.464, "feet"),
  50666. name: "Hand",
  50667. image: {
  50668. source: "./media/characters/devon-childs/hand.svg"
  50669. }
  50670. },
  50671. foot: {
  50672. height: math.unit(1.6, "feet"),
  50673. name: "Foot",
  50674. image: {
  50675. source: "./media/characters/devon-childs/foot.svg"
  50676. }
  50677. },
  50678. },
  50679. [
  50680. {
  50681. name: "Micro",
  50682. height: math.unit(7, "cm")
  50683. },
  50684. {
  50685. name: "Normal",
  50686. height: math.unit(6 + 5/12, "feet"),
  50687. default: true
  50688. },
  50689. {
  50690. name: "Macro",
  50691. height: math.unit(154, "feet")
  50692. },
  50693. ]
  50694. ))
  50695. characterMakers.push(() => makeCharacter(
  50696. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50697. {
  50698. front: {
  50699. height: math.unit(6, "feet"),
  50700. weight: math.unit(180, "lb"),
  50701. name: "Front",
  50702. image: {
  50703. source: "./media/characters/lydemox-vir/front.svg",
  50704. extra: 1632/1435,
  50705. bottom: 58/1690
  50706. }
  50707. },
  50708. frontSFW: {
  50709. height: math.unit(6, "feet"),
  50710. weight: math.unit(180, "lb"),
  50711. name: "Front (SFW)",
  50712. image: {
  50713. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50714. extra: 1632/1435,
  50715. bottom: 58/1690
  50716. }
  50717. },
  50718. back: {
  50719. height: math.unit(6, "feet"),
  50720. weight: math.unit(180, "lb"),
  50721. name: "Back",
  50722. image: {
  50723. source: "./media/characters/lydemox-vir/back.svg",
  50724. extra: 1593/1408,
  50725. bottom: 31/1624
  50726. }
  50727. },
  50728. paw: {
  50729. height: math.unit(1.85, "feet"),
  50730. name: "Paw",
  50731. image: {
  50732. source: "./media/characters/lydemox-vir/paw.svg"
  50733. }
  50734. },
  50735. dick: {
  50736. height: math.unit(1.8, "feet"),
  50737. name: "Dick",
  50738. image: {
  50739. source: "./media/characters/lydemox-vir/dick.svg"
  50740. }
  50741. },
  50742. },
  50743. [
  50744. {
  50745. name: "Macro",
  50746. height: math.unit(100, "feet"),
  50747. default: true
  50748. },
  50749. {
  50750. name: "Teramacro",
  50751. height: math.unit(1, "earth")
  50752. },
  50753. {
  50754. name: "Planetary",
  50755. height: math.unit(20, "earths")
  50756. },
  50757. ]
  50758. ))
  50759. characterMakers.push(() => makeCharacter(
  50760. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50761. {
  50762. front: {
  50763. height: math.unit(15 + 8/12, "feet"),
  50764. weight: math.unit(1237, "kg"),
  50765. name: "Front",
  50766. image: {
  50767. source: "./media/characters/mia/front.svg",
  50768. extra: 1573/1446,
  50769. bottom: 58/1631
  50770. }
  50771. },
  50772. },
  50773. [
  50774. {
  50775. name: "Small",
  50776. height: math.unit(9 + 5/12, "feet")
  50777. },
  50778. {
  50779. name: "Normal",
  50780. height: math.unit(15 + 8/12, "feet"),
  50781. default: true
  50782. },
  50783. ]
  50784. ))
  50785. characterMakers.push(() => makeCharacter(
  50786. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50787. {
  50788. front: {
  50789. height: math.unit(10 + 6/12, "feet"),
  50790. weight: math.unit(1.3, "tons"),
  50791. name: "Front",
  50792. image: {
  50793. source: "./media/characters/mr-graves/front.svg",
  50794. extra: 1779/1695,
  50795. bottom: 198/1977
  50796. }
  50797. },
  50798. },
  50799. [
  50800. {
  50801. name: "Normal",
  50802. height: math.unit(10 + 6 /12, "feet"),
  50803. default: true
  50804. },
  50805. ]
  50806. ))
  50807. characterMakers.push(() => makeCharacter(
  50808. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50809. {
  50810. dressedFront: {
  50811. height: math.unit(5 + 8/12, "feet"),
  50812. weight: math.unit(125, "lb"),
  50813. name: "Dressed (Front)",
  50814. image: {
  50815. source: "./media/characters/jess/dressed-front.svg",
  50816. extra: 1176/1152,
  50817. bottom: 42/1218
  50818. }
  50819. },
  50820. dressedSide: {
  50821. height: math.unit(5 + 8/12, "feet"),
  50822. weight: math.unit(125, "lb"),
  50823. name: "Dressed (Side)",
  50824. image: {
  50825. source: "./media/characters/jess/dressed-side.svg",
  50826. extra: 1204/1190,
  50827. bottom: 6/1210
  50828. }
  50829. },
  50830. nudeFront: {
  50831. height: math.unit(5 + 8/12, "feet"),
  50832. weight: math.unit(125, "lb"),
  50833. name: "Nude (Front)",
  50834. image: {
  50835. source: "./media/characters/jess/nude-front.svg",
  50836. extra: 1176/1152,
  50837. bottom: 42/1218
  50838. }
  50839. },
  50840. nudeSide: {
  50841. height: math.unit(5 + 8/12, "feet"),
  50842. weight: math.unit(125, "lb"),
  50843. name: "Nude (Side)",
  50844. image: {
  50845. source: "./media/characters/jess/nude-side.svg",
  50846. extra: 1204/1190,
  50847. bottom: 6/1210
  50848. }
  50849. },
  50850. organsFront: {
  50851. height: math.unit(2.83799342105, "feet"),
  50852. name: "Organs (Front)",
  50853. image: {
  50854. source: "./media/characters/jess/organs-front.svg"
  50855. }
  50856. },
  50857. organsSide: {
  50858. height: math.unit(2.64225290474, "feet"),
  50859. name: "Organs (Side)",
  50860. image: {
  50861. source: "./media/characters/jess/organs-side.svg"
  50862. }
  50863. },
  50864. digestiveTractFront: {
  50865. height: math.unit(2.8106580871, "feet"),
  50866. name: "Digestive Tract (Front)",
  50867. image: {
  50868. source: "./media/characters/jess/digestive-tract-front.svg"
  50869. }
  50870. },
  50871. digestiveTractSide: {
  50872. height: math.unit(2.54365045014, "feet"),
  50873. name: "Digestive Tract (Side)",
  50874. image: {
  50875. source: "./media/characters/jess/digestive-tract-side.svg"
  50876. }
  50877. },
  50878. respiratorySystemFront: {
  50879. height: math.unit(1.11196233456, "feet"),
  50880. name: "Respiratory System (Front)",
  50881. image: {
  50882. source: "./media/characters/jess/respiratory-system-front.svg"
  50883. }
  50884. },
  50885. respiratorySystemSide: {
  50886. height: math.unit(0.89327966297, "feet"),
  50887. name: "Respiratory System (Side)",
  50888. image: {
  50889. source: "./media/characters/jess/respiratory-system-side.svg"
  50890. }
  50891. },
  50892. urinaryTractFront: {
  50893. height: math.unit(1.16126356186, "feet"),
  50894. name: "Urinary Tract (Front)",
  50895. image: {
  50896. source: "./media/characters/jess/urinary-tract-front.svg"
  50897. }
  50898. },
  50899. urinaryTractSide: {
  50900. height: math.unit(1.20910039627, "feet"),
  50901. name: "Urinary Tract (Side)",
  50902. image: {
  50903. source: "./media/characters/jess/urinary-tract-side.svg"
  50904. }
  50905. },
  50906. reproductiveOrgansFront: {
  50907. height: math.unit(0.48422591566, "feet"),
  50908. name: "Reproductive Organs (Front)",
  50909. image: {
  50910. source: "./media/characters/jess/reproductive-organs-front.svg"
  50911. }
  50912. },
  50913. reproductiveOrgansSide: {
  50914. height: math.unit(0.61553314481, "feet"),
  50915. name: "Reproductive Organs (Side)",
  50916. image: {
  50917. source: "./media/characters/jess/reproductive-organs-side.svg"
  50918. }
  50919. },
  50920. breastsFront: {
  50921. height: math.unit(0.47690395121, "feet"),
  50922. name: "Breasts (Front)",
  50923. image: {
  50924. source: "./media/characters/jess/breasts-front.svg"
  50925. }
  50926. },
  50927. breastsSide: {
  50928. height: math.unit(0.30556998307, "feet"),
  50929. name: "Breasts (Side)",
  50930. image: {
  50931. source: "./media/characters/jess/breasts-side.svg"
  50932. }
  50933. },
  50934. heartFront: {
  50935. height: math.unit(0.53011022622, "feet"),
  50936. name: "Heart (Front)",
  50937. image: {
  50938. source: "./media/characters/jess/heart-front.svg"
  50939. }
  50940. },
  50941. heartSide: {
  50942. height: math.unit(0.51790695213, "feet"),
  50943. name: "Heart (Side)",
  50944. image: {
  50945. source: "./media/characters/jess/heart-side.svg"
  50946. }
  50947. },
  50948. earsAndNoseFront: {
  50949. height: math.unit(0.29385483995, "feet"),
  50950. name: "Ears and Nose (Front)",
  50951. image: {
  50952. source: "./media/characters/jess/ears-and-nose-front.svg"
  50953. }
  50954. },
  50955. earsAndNoseSide: {
  50956. height: math.unit(0.18109658741, "feet"),
  50957. name: "Ears and Nose (Side)",
  50958. image: {
  50959. source: "./media/characters/jess/ears-and-nose-side.svg"
  50960. }
  50961. },
  50962. },
  50963. [
  50964. {
  50965. name: "Normal",
  50966. height: math.unit(5 + 8/12, "feet"),
  50967. default: true
  50968. },
  50969. ]
  50970. ))
  50971. characterMakers.push(() => makeCharacter(
  50972. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50973. {
  50974. front: {
  50975. height: math.unit(6, "feet"),
  50976. weight: math.unit(6.64467e-7, "grams"),
  50977. name: "Front",
  50978. image: {
  50979. source: "./media/characters/wimpering/front.svg",
  50980. extra: 597/587,
  50981. bottom: 34/631
  50982. }
  50983. },
  50984. },
  50985. [
  50986. {
  50987. name: "Micro",
  50988. height: math.unit(0.4, "mm"),
  50989. default: true
  50990. },
  50991. ]
  50992. ))
  50993. characterMakers.push(() => makeCharacter(
  50994. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50995. {
  50996. front: {
  50997. height: math.unit(5 + 2/12, "feet"),
  50998. weight: math.unit(110, "lb"),
  50999. name: "Front",
  51000. image: {
  51001. source: "./media/characters/keltre/front.svg",
  51002. extra: 1099/1057,
  51003. bottom: 22/1121
  51004. }
  51005. },
  51006. back: {
  51007. height: math.unit(5 + 2/12, "feet"),
  51008. weight: math.unit(110, "lb"),
  51009. name: "Back",
  51010. image: {
  51011. source: "./media/characters/keltre/back.svg",
  51012. extra: 1095/1053,
  51013. bottom: 17/1112
  51014. }
  51015. },
  51016. dressed: {
  51017. height: math.unit(5 + 2/12, "feet"),
  51018. weight: math.unit(110, "lb"),
  51019. name: "Dressed",
  51020. image: {
  51021. source: "./media/characters/keltre/dressed.svg",
  51022. extra: 1099/1057,
  51023. bottom: 22/1121
  51024. }
  51025. },
  51026. winter: {
  51027. height: math.unit(5 + 2/12, "feet"),
  51028. weight: math.unit(110, "lb"),
  51029. name: "Winter",
  51030. image: {
  51031. source: "./media/characters/keltre/winter.svg",
  51032. extra: 1099/1057,
  51033. bottom: 22/1121
  51034. }
  51035. },
  51036. head: {
  51037. height: math.unit(1.61 * 0.86, "feet"),
  51038. name: "Head",
  51039. image: {
  51040. source: "./media/characters/keltre/head.svg",
  51041. extra: 534/421,
  51042. bottom: 0/534
  51043. }
  51044. },
  51045. hand: {
  51046. height: math.unit(1.3 * 0.86, "feet"),
  51047. name: "Hand",
  51048. image: {
  51049. source: "./media/characters/keltre/hand.svg"
  51050. }
  51051. },
  51052. foot: {
  51053. height: math.unit(1.8 * 0.86, "feet"),
  51054. name: "Foot",
  51055. image: {
  51056. source: "./media/characters/keltre/foot.svg"
  51057. }
  51058. },
  51059. },
  51060. [
  51061. {
  51062. name: "Fine",
  51063. height: math.unit(1, "inch")
  51064. },
  51065. {
  51066. name: "Dimnutive",
  51067. height: math.unit(4, "inches")
  51068. },
  51069. {
  51070. name: "Tiny",
  51071. height: math.unit(1, "foot")
  51072. },
  51073. {
  51074. name: "Small",
  51075. height: math.unit(3, "feet")
  51076. },
  51077. {
  51078. name: "Normal",
  51079. height: math.unit(5 + 2/12, "feet"),
  51080. default: true
  51081. },
  51082. ]
  51083. ))
  51084. characterMakers.push(() => makeCharacter(
  51085. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51086. {
  51087. front: {
  51088. height: math.unit(6 + 2/12, "feet"),
  51089. name: "Front",
  51090. image: {
  51091. source: "./media/characters/nox/front.svg",
  51092. extra: 1917/1830,
  51093. bottom: 74/1991
  51094. }
  51095. },
  51096. back: {
  51097. height: math.unit(6 + 2/12, "feet"),
  51098. name: "Back",
  51099. image: {
  51100. source: "./media/characters/nox/back.svg",
  51101. extra: 1896/1815,
  51102. bottom: 21/1917
  51103. }
  51104. },
  51105. head: {
  51106. height: math.unit(1.1, "feet"),
  51107. name: "Head",
  51108. image: {
  51109. source: "./media/characters/nox/head.svg",
  51110. extra: 874/704,
  51111. bottom: 0/874
  51112. }
  51113. },
  51114. tattoo: {
  51115. height: math.unit(0.729, "feet"),
  51116. name: "Tattoo",
  51117. image: {
  51118. source: "./media/characters/nox/tattoo.svg"
  51119. }
  51120. },
  51121. },
  51122. [
  51123. {
  51124. name: "Normal",
  51125. height: math.unit(6 + 2/12, "feet")
  51126. },
  51127. {
  51128. name: "Gigamacro",
  51129. height: math.unit(2, "earths"),
  51130. default: true
  51131. },
  51132. {
  51133. name: "Cosmic",
  51134. height: math.unit(867, "yottameters")
  51135. },
  51136. ]
  51137. ))
  51138. characterMakers.push(() => makeCharacter(
  51139. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51140. {
  51141. front: {
  51142. height: math.unit(6, "feet"),
  51143. weight: math.unit(150, "lb"),
  51144. name: "Front",
  51145. image: {
  51146. source: "./media/characters/caspian/front.svg",
  51147. extra: 1443/1359,
  51148. bottom: 0/1443
  51149. }
  51150. },
  51151. back: {
  51152. height: math.unit(6, "feet"),
  51153. weight: math.unit(150, "lb"),
  51154. name: "Back",
  51155. image: {
  51156. source: "./media/characters/caspian/back.svg",
  51157. extra: 1379/1309,
  51158. bottom: 0/1379
  51159. }
  51160. },
  51161. head: {
  51162. height: math.unit(0.9, "feet"),
  51163. name: "Head",
  51164. image: {
  51165. source: "./media/characters/caspian/head.svg",
  51166. extra: 692/492,
  51167. bottom: 0/692
  51168. }
  51169. },
  51170. headAlt: {
  51171. height: math.unit(0.95, "feet"),
  51172. name: "Head (Alt)",
  51173. image: {
  51174. source: "./media/characters/caspian/head-alt.svg",
  51175. extra: 668/508,
  51176. bottom: 0/668
  51177. }
  51178. },
  51179. hand: {
  51180. height: math.unit(0.8, "feet"),
  51181. name: "Hand",
  51182. image: {
  51183. source: "./media/characters/caspian/hand.svg"
  51184. }
  51185. },
  51186. paw: {
  51187. height: math.unit(0.95, "feet"),
  51188. name: "Paw",
  51189. image: {
  51190. source: "./media/characters/caspian/paw.svg"
  51191. }
  51192. },
  51193. },
  51194. [
  51195. {
  51196. name: "Normal",
  51197. height: math.unit(162, "feet"),
  51198. default: true
  51199. },
  51200. ]
  51201. ))
  51202. characterMakers.push(() => makeCharacter(
  51203. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51204. {
  51205. front: {
  51206. height: math.unit(6, "feet"),
  51207. name: "Front",
  51208. image: {
  51209. source: "./media/characters/myra-aisling/front.svg",
  51210. extra: 1268/1166,
  51211. bottom: 73/1341
  51212. }
  51213. },
  51214. back: {
  51215. height: math.unit(6, "feet"),
  51216. name: "Back",
  51217. image: {
  51218. source: "./media/characters/myra-aisling/back.svg",
  51219. extra: 1249/1149,
  51220. bottom: 79/1328
  51221. }
  51222. },
  51223. dressed: {
  51224. height: math.unit(6, "feet"),
  51225. name: "Dressed",
  51226. image: {
  51227. source: "./media/characters/myra-aisling/dressed.svg",
  51228. extra: 1290/1189,
  51229. bottom: 47/1337
  51230. }
  51231. },
  51232. hand: {
  51233. height: math.unit(1.1, "feet"),
  51234. name: "Hand",
  51235. image: {
  51236. source: "./media/characters/myra-aisling/hand.svg"
  51237. }
  51238. },
  51239. paw: {
  51240. height: math.unit(1.23, "feet"),
  51241. name: "Paw",
  51242. image: {
  51243. source: "./media/characters/myra-aisling/paw.svg"
  51244. }
  51245. },
  51246. },
  51247. [
  51248. {
  51249. name: "Normal",
  51250. height: math.unit(160, "feet"),
  51251. default: true
  51252. },
  51253. ]
  51254. ))
  51255. characterMakers.push(() => makeCharacter(
  51256. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51257. {
  51258. front: {
  51259. height: math.unit(6, "feet"),
  51260. name: "Front",
  51261. image: {
  51262. source: "./media/characters/tenley-sidero/front.svg",
  51263. extra: 1365/1276,
  51264. bottom: 47/1412
  51265. }
  51266. },
  51267. back: {
  51268. height: math.unit(6, "feet"),
  51269. name: "Back",
  51270. image: {
  51271. source: "./media/characters/tenley-sidero/back.svg",
  51272. extra: 1383/1283,
  51273. bottom: 35/1418
  51274. }
  51275. },
  51276. dressed: {
  51277. height: math.unit(6, "feet"),
  51278. name: "Dressed",
  51279. image: {
  51280. source: "./media/characters/tenley-sidero/dressed.svg",
  51281. extra: 1364/1275,
  51282. bottom: 42/1406
  51283. }
  51284. },
  51285. head: {
  51286. height: math.unit(1.47, "feet"),
  51287. name: "Head",
  51288. image: {
  51289. source: "./media/characters/tenley-sidero/head.svg",
  51290. extra: 610/490,
  51291. bottom: 0/610
  51292. }
  51293. },
  51294. },
  51295. [
  51296. {
  51297. name: "Normal",
  51298. height: math.unit(154, "feet"),
  51299. default: true
  51300. },
  51301. ]
  51302. ))
  51303. characterMakers.push(() => makeCharacter(
  51304. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51305. {
  51306. front: {
  51307. height: math.unit(5, "inches"),
  51308. name: "Front",
  51309. image: {
  51310. source: "./media/characters/mallory/front.svg",
  51311. extra: 1919/1678,
  51312. bottom: 29/1948
  51313. }
  51314. },
  51315. hand: {
  51316. height: math.unit(0.73, "inches"),
  51317. name: "Hand",
  51318. image: {
  51319. source: "./media/characters/mallory/hand.svg"
  51320. }
  51321. },
  51322. paw: {
  51323. height: math.unit(0.68, "inches"),
  51324. name: "Paw",
  51325. image: {
  51326. source: "./media/characters/mallory/paw.svg"
  51327. }
  51328. },
  51329. },
  51330. [
  51331. {
  51332. name: "Small",
  51333. height: math.unit(5, "inches"),
  51334. default: true
  51335. },
  51336. ]
  51337. ))
  51338. characterMakers.push(() => makeCharacter(
  51339. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51340. {
  51341. naked: {
  51342. height: math.unit(6, "feet"),
  51343. name: "Naked",
  51344. image: {
  51345. source: "./media/characters/mab/naked.svg",
  51346. extra: 1855/1757,
  51347. bottom: 208/2063
  51348. }
  51349. },
  51350. outside: {
  51351. height: math.unit(6, "feet"),
  51352. name: "Outside",
  51353. image: {
  51354. source: "./media/characters/mab/outside.svg",
  51355. extra: 1855/1757,
  51356. bottom: 208/2063
  51357. }
  51358. },
  51359. party: {
  51360. height: math.unit(6, "feet"),
  51361. name: "Party",
  51362. image: {
  51363. source: "./media/characters/mab/party.svg",
  51364. extra: 1855/1757,
  51365. bottom: 208/2063
  51366. }
  51367. },
  51368. },
  51369. [
  51370. {
  51371. name: "Normal",
  51372. height: math.unit(165, "feet"),
  51373. default: true
  51374. },
  51375. ]
  51376. ))
  51377. characterMakers.push(() => makeCharacter(
  51378. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51379. {
  51380. feral: {
  51381. height: math.unit(12, "feet"),
  51382. weight: math.unit(20000, "lb"),
  51383. name: "Side",
  51384. image: {
  51385. source: "./media/characters/winter/feral.svg",
  51386. extra: 1286/943,
  51387. bottom: 112/1398
  51388. },
  51389. form: "feral",
  51390. default: true
  51391. },
  51392. feralNsfw: {
  51393. height: math.unit(12, "feet"),
  51394. weight: math.unit(20000, "lb"),
  51395. name: "Side (NSFW)",
  51396. image: {
  51397. source: "./media/characters/winter/feral-nsfw.svg",
  51398. extra: 1286/943,
  51399. bottom: 112/1398
  51400. },
  51401. form: "feral"
  51402. },
  51403. dick: {
  51404. height: math.unit(3.79, "feet"),
  51405. name: "Dick",
  51406. image: {
  51407. source: "./media/characters/winter/dick.svg"
  51408. },
  51409. form: "feral"
  51410. },
  51411. anthro: {
  51412. height: math.unit(12, "feet"),
  51413. weight: math.unit(10, "tons"),
  51414. name: "Anthro",
  51415. image: {
  51416. source: "./media/characters/winter/anthro.svg",
  51417. extra: 1701/1553,
  51418. bottom: 64/1765
  51419. },
  51420. form: "anthro",
  51421. default: true
  51422. },
  51423. },
  51424. [
  51425. {
  51426. name: "Big",
  51427. height: math.unit(12, "feet"),
  51428. default: true,
  51429. form: "feral"
  51430. },
  51431. {
  51432. name: "Big",
  51433. height: math.unit(12, "feet"),
  51434. default: true,
  51435. form: "anthro"
  51436. },
  51437. ],
  51438. {
  51439. "feral": {
  51440. name: "Feral",
  51441. default: true
  51442. },
  51443. "anthro": {
  51444. name: "Anthro"
  51445. }
  51446. }
  51447. ))
  51448. characterMakers.push(() => makeCharacter(
  51449. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51450. {
  51451. front: {
  51452. height: math.unit(4.1, "inches"),
  51453. name: "Front",
  51454. image: {
  51455. source: "./media/characters/alto/front.svg",
  51456. extra: 736/627,
  51457. bottom: 90/826
  51458. }
  51459. },
  51460. },
  51461. [
  51462. {
  51463. name: "Normal",
  51464. height: math.unit(4.1, "inches"),
  51465. default: true
  51466. },
  51467. ]
  51468. ))
  51469. characterMakers.push(() => makeCharacter(
  51470. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51471. {
  51472. sitting: {
  51473. height: math.unit(3, "feet"),
  51474. name: "Sitting",
  51475. image: {
  51476. source: "./media/characters/ratstrid-v/sitting.svg",
  51477. extra: 355/310,
  51478. bottom: 136/491
  51479. }
  51480. },
  51481. },
  51482. [
  51483. {
  51484. name: "Normal",
  51485. height: math.unit(3, "feet"),
  51486. default: true
  51487. },
  51488. ]
  51489. ))
  51490. characterMakers.push(() => makeCharacter(
  51491. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51492. {
  51493. back: {
  51494. height: math.unit(6, "feet"),
  51495. weight: math.unit(450, "lb"),
  51496. name: "Back",
  51497. image: {
  51498. source: "./media/characters/siz/back.svg",
  51499. extra: 1449/1274,
  51500. bottom: 13/1462
  51501. }
  51502. },
  51503. },
  51504. [
  51505. {
  51506. name: "Smallest",
  51507. height: math.unit(18 + 3/12, "feet")
  51508. },
  51509. {
  51510. name: "Modest",
  51511. height: math.unit(56 + 8/12, "feet"),
  51512. default: true
  51513. },
  51514. {
  51515. name: "Largest",
  51516. height: math.unit(3590, "feet")
  51517. },
  51518. ]
  51519. ))
  51520. characterMakers.push(() => makeCharacter(
  51521. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51522. {
  51523. front: {
  51524. height: math.unit(5 + 9/12, "feet"),
  51525. weight: math.unit(150, "lb"),
  51526. name: "Front",
  51527. image: {
  51528. source: "./media/characters/ven/front.svg",
  51529. extra: 1372/1320,
  51530. bottom: 73/1445
  51531. }
  51532. },
  51533. side: {
  51534. height: math.unit(5 + 9/12, "feet"),
  51535. weight: math.unit(1150, "lb"),
  51536. name: "Side",
  51537. image: {
  51538. source: "./media/characters/ven/side.svg",
  51539. extra: 1119/1070,
  51540. bottom: 42/1161
  51541. },
  51542. default: true
  51543. },
  51544. },
  51545. [
  51546. {
  51547. name: "Normal",
  51548. height: math.unit(5 + 9/12, "feet"),
  51549. default: true
  51550. },
  51551. ]
  51552. ))
  51553. characterMakers.push(() => makeCharacter(
  51554. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51555. {
  51556. front: {
  51557. height: math.unit(12, "feet"),
  51558. weight: math.unit(1000, "kg"),
  51559. name: "Front",
  51560. image: {
  51561. source: "./media/characters/maple/front.svg",
  51562. extra: 1193/1081,
  51563. bottom: 22/1215
  51564. }
  51565. },
  51566. },
  51567. [
  51568. {
  51569. name: "Compressed",
  51570. height: math.unit(7, "feet")
  51571. },
  51572. {
  51573. name: "Normal",
  51574. height: math.unit(12, "feet"),
  51575. default: true
  51576. },
  51577. ]
  51578. ))
  51579. characterMakers.push(() => makeCharacter(
  51580. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51581. {
  51582. front: {
  51583. height: math.unit(9, "feet"),
  51584. weight: math.unit(1500, "lb"),
  51585. name: "Front",
  51586. image: {
  51587. source: "./media/characters/nora/front.svg",
  51588. extra: 1348/1286,
  51589. bottom: 218/1566
  51590. }
  51591. },
  51592. erect: {
  51593. height: math.unit(9, "feet"),
  51594. weight: math.unit(11500, "lb"),
  51595. name: "Erect",
  51596. image: {
  51597. source: "./media/characters/nora/erect.svg",
  51598. extra: 1488/1433,
  51599. bottom: 133/1621
  51600. }
  51601. },
  51602. },
  51603. [
  51604. {
  51605. name: "Normal",
  51606. height: math.unit(9, "feet"),
  51607. default: true
  51608. },
  51609. ]
  51610. ))
  51611. characterMakers.push(() => makeCharacter(
  51612. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51613. {
  51614. front: {
  51615. height: math.unit(25, "feet"),
  51616. weight: math.unit(27500, "lb"),
  51617. name: "Front",
  51618. image: {
  51619. source: "./media/characters/north-caudin/front.svg",
  51620. extra: 1184/1082,
  51621. bottom: 23/1207
  51622. }
  51623. },
  51624. },
  51625. [
  51626. {
  51627. name: "Compressed",
  51628. height: math.unit(10, "feet")
  51629. },
  51630. {
  51631. name: "Normal",
  51632. height: math.unit(25, "feet"),
  51633. default: true
  51634. },
  51635. ]
  51636. ))
  51637. characterMakers.push(() => makeCharacter(
  51638. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51639. {
  51640. front: {
  51641. height: math.unit(9, "feet"),
  51642. weight: math.unit(1250, "lb"),
  51643. name: "Front",
  51644. image: {
  51645. source: "./media/characters/merrian/front.svg",
  51646. extra: 2393/2304,
  51647. bottom: 40/2433
  51648. }
  51649. },
  51650. },
  51651. [
  51652. {
  51653. name: "Normal",
  51654. height: math.unit(9, "feet"),
  51655. default: true
  51656. },
  51657. ]
  51658. ))
  51659. characterMakers.push(() => makeCharacter(
  51660. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51661. {
  51662. front: {
  51663. height: math.unit(9, "feet"),
  51664. weight: math.unit(1000, "lb"),
  51665. name: "Front",
  51666. image: {
  51667. source: "./media/characters/hazel/front.svg",
  51668. extra: 2351/2298,
  51669. bottom: 38/2389
  51670. }
  51671. },
  51672. },
  51673. [
  51674. {
  51675. name: "Normal",
  51676. height: math.unit(9, "feet"),
  51677. default: true
  51678. },
  51679. ]
  51680. ))
  51681. characterMakers.push(() => makeCharacter(
  51682. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51683. {
  51684. front: {
  51685. height: math.unit(13, "feet"),
  51686. weight: math.unit(3200, "lb"),
  51687. name: "Front",
  51688. image: {
  51689. source: "./media/characters/emma/front.svg",
  51690. extra: 2263/2029,
  51691. bottom: 68/2331
  51692. }
  51693. },
  51694. },
  51695. [
  51696. {
  51697. name: "Normal",
  51698. height: math.unit(13, "feet"),
  51699. default: true
  51700. },
  51701. ]
  51702. ))
  51703. characterMakers.push(() => makeCharacter(
  51704. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51705. {
  51706. front: {
  51707. height: math.unit(11 + 9/12, "feet"),
  51708. weight: math.unit(2500, "lb"),
  51709. name: "Front",
  51710. image: {
  51711. source: "./media/characters/ilumina/front.svg",
  51712. extra: 2248/2209,
  51713. bottom: 164/2412
  51714. }
  51715. },
  51716. },
  51717. [
  51718. {
  51719. name: "Normal",
  51720. height: math.unit(11 + 9/12, "feet"),
  51721. default: true
  51722. },
  51723. ]
  51724. ))
  51725. characterMakers.push(() => makeCharacter(
  51726. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51727. {
  51728. front: {
  51729. height: math.unit(8 + 10/12, "feet"),
  51730. weight: math.unit(1350, "lb"),
  51731. name: "Front",
  51732. image: {
  51733. source: "./media/characters/moonshine/front.svg",
  51734. extra: 2395/2288,
  51735. bottom: 40/2435
  51736. }
  51737. },
  51738. },
  51739. [
  51740. {
  51741. name: "Normal",
  51742. height: math.unit(8 + 10/12, "feet"),
  51743. default: true
  51744. },
  51745. ]
  51746. ))
  51747. characterMakers.push(() => makeCharacter(
  51748. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51749. {
  51750. front: {
  51751. height: math.unit(14, "feet"),
  51752. weight: math.unit(3400, "lb"),
  51753. name: "Front",
  51754. image: {
  51755. source: "./media/characters/aletia/front.svg",
  51756. extra: 1185/1052,
  51757. bottom: 21/1206
  51758. }
  51759. },
  51760. },
  51761. [
  51762. {
  51763. name: "Compressed",
  51764. height: math.unit(8, "feet")
  51765. },
  51766. {
  51767. name: "Normal",
  51768. height: math.unit(14, "feet"),
  51769. default: true
  51770. },
  51771. ]
  51772. ))
  51773. characterMakers.push(() => makeCharacter(
  51774. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51775. {
  51776. front: {
  51777. height: math.unit(17, "feet"),
  51778. weight: math.unit(6500, "lb"),
  51779. name: "Front",
  51780. image: {
  51781. source: "./media/characters/deidra/front.svg",
  51782. extra: 1201/1081,
  51783. bottom: 16/1217
  51784. }
  51785. },
  51786. },
  51787. [
  51788. {
  51789. name: "Compressed",
  51790. height: math.unit(9 + 6/12, "feet")
  51791. },
  51792. {
  51793. name: "Normal",
  51794. height: math.unit(17, "feet"),
  51795. default: true
  51796. },
  51797. ]
  51798. ))
  51799. characterMakers.push(() => makeCharacter(
  51800. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51801. {
  51802. front: {
  51803. height: math.unit(7 + 4/12, "feet"),
  51804. weight: math.unit(280, "lb"),
  51805. name: "Front",
  51806. image: {
  51807. source: "./media/characters/freki-yrmori/front.svg",
  51808. extra: 1286/1182,
  51809. bottom: 29/1315
  51810. }
  51811. },
  51812. maw: {
  51813. height: math.unit(0.9, "feet"),
  51814. name: "Maw",
  51815. image: {
  51816. source: "./media/characters/freki-yrmori/maw.svg"
  51817. }
  51818. },
  51819. },
  51820. [
  51821. {
  51822. name: "Normal",
  51823. height: math.unit(7 + 4/12, "feet"),
  51824. default: true
  51825. },
  51826. {
  51827. name: "Macro",
  51828. height: math.unit(38.5, "meters")
  51829. },
  51830. ]
  51831. ))
  51832. characterMakers.push(() => makeCharacter(
  51833. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51834. {
  51835. side: {
  51836. height: math.unit(47.2, "meters"),
  51837. weight: math.unit(10000, "tons"),
  51838. name: "Side",
  51839. image: {
  51840. source: "./media/characters/aetherios/side.svg",
  51841. extra: 2363/642,
  51842. bottom: 221/2584
  51843. }
  51844. },
  51845. top: {
  51846. height: math.unit(240, "meters"),
  51847. weight: math.unit(10000, "tons"),
  51848. name: "Top",
  51849. image: {
  51850. source: "./media/characters/aetherios/top.svg"
  51851. }
  51852. },
  51853. bottom: {
  51854. height: math.unit(240, "meters"),
  51855. weight: math.unit(10000, "tons"),
  51856. name: "Bottom",
  51857. image: {
  51858. source: "./media/characters/aetherios/bottom.svg"
  51859. }
  51860. },
  51861. head: {
  51862. height: math.unit(38.6, "meters"),
  51863. name: "Head",
  51864. image: {
  51865. source: "./media/characters/aetherios/head.svg",
  51866. extra: 1335/1112,
  51867. bottom: 0/1335
  51868. }
  51869. },
  51870. front: {
  51871. height: math.unit(29, "meters"),
  51872. name: "Front",
  51873. image: {
  51874. source: "./media/characters/aetherios/front.svg",
  51875. extra: 1266/953,
  51876. bottom: 158/1424
  51877. }
  51878. },
  51879. maw: {
  51880. height: math.unit(16.37, "meters"),
  51881. name: "Maw",
  51882. image: {
  51883. source: "./media/characters/aetherios/maw.svg",
  51884. extra: 748/637,
  51885. bottom: 0/748
  51886. },
  51887. extraAttributes: {
  51888. preyCapacity: {
  51889. name: "Capacity",
  51890. power: 3,
  51891. type: "volume",
  51892. base: math.unit(1000, "people")
  51893. },
  51894. tongueSize: {
  51895. name: "Tongue Size",
  51896. power: 2,
  51897. type: "area",
  51898. base: math.unit(21, "m^2")
  51899. }
  51900. }
  51901. },
  51902. forepaw: {
  51903. height: math.unit(18, "meters"),
  51904. name: "Forepaw",
  51905. image: {
  51906. source: "./media/characters/aetherios/forepaw.svg"
  51907. }
  51908. },
  51909. hindpaw: {
  51910. height: math.unit(23, "meters"),
  51911. name: "Hindpaw",
  51912. image: {
  51913. source: "./media/characters/aetherios/hindpaw.svg"
  51914. }
  51915. },
  51916. genitals: {
  51917. height: math.unit(42, "meters"),
  51918. name: "Genitals",
  51919. image: {
  51920. source: "./media/characters/aetherios/genitals.svg"
  51921. }
  51922. },
  51923. },
  51924. [
  51925. {
  51926. name: "Normal",
  51927. height: math.unit(47.2, "meters"),
  51928. default: true
  51929. },
  51930. {
  51931. name: "Macro",
  51932. height: math.unit(160, "meters")
  51933. },
  51934. {
  51935. name: "Mega",
  51936. height: math.unit(1.87, "km")
  51937. },
  51938. {
  51939. name: "Giga",
  51940. height: math.unit(40000, "km")
  51941. },
  51942. {
  51943. name: "Stellar",
  51944. height: math.unit(158000000, "km")
  51945. },
  51946. {
  51947. name: "Cosmic",
  51948. height: math.unit(9.46e12, "km")
  51949. },
  51950. ]
  51951. ))
  51952. characterMakers.push(() => makeCharacter(
  51953. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51954. {
  51955. front: {
  51956. height: math.unit(5 + 4/12, "feet"),
  51957. weight: math.unit(80, "lb"),
  51958. name: "Front",
  51959. image: {
  51960. source: "./media/characters/mizu-gieeg/front.svg",
  51961. extra: 850/709,
  51962. bottom: 52/902
  51963. }
  51964. },
  51965. back: {
  51966. height: math.unit(5 + 4/12, "feet"),
  51967. weight: math.unit(80, "lb"),
  51968. name: "Back",
  51969. image: {
  51970. source: "./media/characters/mizu-gieeg/back.svg",
  51971. extra: 882/745,
  51972. bottom: 25/907
  51973. }
  51974. },
  51975. },
  51976. [
  51977. {
  51978. name: "Normal",
  51979. height: math.unit(5 + 4/12, "feet"),
  51980. default: true
  51981. },
  51982. ]
  51983. ))
  51984. characterMakers.push(() => makeCharacter(
  51985. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51986. {
  51987. front: {
  51988. height: math.unit(6, "feet"),
  51989. name: "Front",
  51990. image: {
  51991. source: "./media/characters/roselle-st-papier/front.svg",
  51992. extra: 1430/1280,
  51993. bottom: 37/1467
  51994. }
  51995. },
  51996. back: {
  51997. height: math.unit(6, "feet"),
  51998. name: "Back",
  51999. image: {
  52000. source: "./media/characters/roselle-st-papier/back.svg",
  52001. extra: 1491/1296,
  52002. bottom: 23/1514
  52003. }
  52004. },
  52005. ear: {
  52006. height: math.unit(1.26, "feet"),
  52007. name: "Ear",
  52008. image: {
  52009. source: "./media/characters/roselle-st-papier/ear.svg"
  52010. }
  52011. },
  52012. },
  52013. [
  52014. {
  52015. name: "Normal",
  52016. height: math.unit(150, "feet"),
  52017. default: true
  52018. },
  52019. ]
  52020. ))
  52021. characterMakers.push(() => makeCharacter(
  52022. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52023. {
  52024. front: {
  52025. height: math.unit(1, "inches"),
  52026. name: "Front",
  52027. image: {
  52028. source: "./media/characters/valargent/front.svg",
  52029. extra: 1825/1694,
  52030. bottom: 62/1887
  52031. }
  52032. },
  52033. back: {
  52034. height: math.unit(1, "inches"),
  52035. name: "Back",
  52036. image: {
  52037. source: "./media/characters/valargent/back.svg",
  52038. extra: 1775/1682,
  52039. bottom: 88/1863
  52040. }
  52041. },
  52042. },
  52043. [
  52044. {
  52045. name: "Micro",
  52046. height: math.unit(1, "inch"),
  52047. default: true
  52048. },
  52049. ]
  52050. ))
  52051. characterMakers.push(() => makeCharacter(
  52052. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52053. {
  52054. front: {
  52055. height: math.unit(3.4, "meters"),
  52056. name: "Front",
  52057. image: {
  52058. source: "./media/characters/zarina/front.svg",
  52059. extra: 1733/1425,
  52060. bottom: 93/1826
  52061. }
  52062. },
  52063. squatting: {
  52064. height: math.unit(2.14, "meters"),
  52065. name: "Squatting",
  52066. image: {
  52067. source: "./media/characters/zarina/squatting.svg",
  52068. extra: 1073/788,
  52069. bottom: 63/1136
  52070. }
  52071. },
  52072. back: {
  52073. height: math.unit(2.14, "meters"),
  52074. name: "Back",
  52075. image: {
  52076. source: "./media/characters/zarina/back.svg",
  52077. extra: 1128/885,
  52078. bottom: 0/1128
  52079. }
  52080. },
  52081. },
  52082. [
  52083. {
  52084. name: "Normal",
  52085. height: math.unit(3.4, "meters"),
  52086. default: true
  52087. },
  52088. {
  52089. name: "Big",
  52090. height: math.unit(5, "meters")
  52091. },
  52092. {
  52093. name: "Macro",
  52094. height: math.unit(110, "meters")
  52095. },
  52096. ]
  52097. ))
  52098. characterMakers.push(() => makeCharacter(
  52099. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52100. {
  52101. front: {
  52102. height: math.unit(7, "feet"),
  52103. name: "Front",
  52104. image: {
  52105. source: "./media/characters/ventus-astro-fox/front.svg",
  52106. extra: 1792/1623,
  52107. bottom: 28/1820
  52108. }
  52109. },
  52110. back: {
  52111. height: math.unit(7, "feet"),
  52112. name: "Back",
  52113. image: {
  52114. source: "./media/characters/ventus-astro-fox/back.svg",
  52115. extra: 1789/1620,
  52116. bottom: 31/1820
  52117. }
  52118. },
  52119. outfit: {
  52120. height: math.unit(7, "feet"),
  52121. name: "Outfit",
  52122. image: {
  52123. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52124. extra: 1054/925,
  52125. bottom: 15/1069
  52126. }
  52127. },
  52128. head: {
  52129. height: math.unit(1.12, "feet"),
  52130. name: "Head",
  52131. image: {
  52132. source: "./media/characters/ventus-astro-fox/head.svg",
  52133. extra: 866/504,
  52134. bottom: 0/866
  52135. }
  52136. },
  52137. hand: {
  52138. height: math.unit(1, "feet"),
  52139. name: "Hand",
  52140. image: {
  52141. source: "./media/characters/ventus-astro-fox/hand.svg"
  52142. }
  52143. },
  52144. paw: {
  52145. height: math.unit(1.5, "feet"),
  52146. name: "Paw",
  52147. image: {
  52148. source: "./media/characters/ventus-astro-fox/paw.svg"
  52149. }
  52150. },
  52151. },
  52152. [
  52153. {
  52154. name: "Normal",
  52155. height: math.unit(7, "feet"),
  52156. default: true
  52157. },
  52158. {
  52159. name: "Macro",
  52160. height: math.unit(200, "feet")
  52161. },
  52162. {
  52163. name: "Cosmic",
  52164. height: math.unit(3, "universes")
  52165. },
  52166. ]
  52167. ))
  52168. characterMakers.push(() => makeCharacter(
  52169. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52170. {
  52171. front: {
  52172. height: math.unit(3, "meters"),
  52173. weight: math.unit(7000, "lb"),
  52174. name: "Front",
  52175. image: {
  52176. source: "./media/characters/core-t/front.svg",
  52177. extra: 5729/4941,
  52178. bottom: 1129/6858
  52179. }
  52180. },
  52181. },
  52182. [
  52183. {
  52184. name: "Big",
  52185. height: math.unit(3, "meters"),
  52186. default: true
  52187. },
  52188. ]
  52189. ))
  52190. characterMakers.push(() => makeCharacter(
  52191. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52192. {
  52193. normal: {
  52194. height: math.unit(6 + 6/12, "feet"),
  52195. weight: math.unit(275, "lb"),
  52196. name: "Front",
  52197. image: {
  52198. source: "./media/characters/cadbunny/normal.svg",
  52199. extra: 1129/947,
  52200. bottom: 93/1222
  52201. },
  52202. default: true,
  52203. form: "normal"
  52204. },
  52205. gigantamax: {
  52206. height: math.unit(26, "feet"),
  52207. weight: math.unit(16000, "lb"),
  52208. name: "Front",
  52209. image: {
  52210. source: "./media/characters/cadbunny/gigantamax.svg",
  52211. extra: 1133/944,
  52212. bottom: 90/1223
  52213. },
  52214. default: true,
  52215. form: "gigantamax"
  52216. },
  52217. },
  52218. [
  52219. {
  52220. name: "Normal",
  52221. height: math.unit(6 + 6/12, "feet"),
  52222. default: true,
  52223. form: "normal"
  52224. },
  52225. {
  52226. name: "Small",
  52227. height: math.unit(26, "feet"),
  52228. default: true,
  52229. form: "gigantamax"
  52230. },
  52231. {
  52232. name: "Large",
  52233. height: math.unit(78, "feet"),
  52234. form: "gigantamax"
  52235. },
  52236. ],
  52237. {
  52238. "normal": {
  52239. name: "Normal",
  52240. default: true
  52241. },
  52242. "gigantamax": {
  52243. name: "Gigantamax"
  52244. }
  52245. }
  52246. ))
  52247. characterMakers.push(() => makeCharacter(
  52248. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52249. {
  52250. anthroFront: {
  52251. height: math.unit(8, "feet"),
  52252. weight: math.unit(300, "lb"),
  52253. name: "Front",
  52254. image: {
  52255. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52256. extra: 1272/1176,
  52257. bottom: 53/1325
  52258. },
  52259. form: "anthro",
  52260. default: true
  52261. },
  52262. feralSide: {
  52263. height: math.unit(4, "feet"),
  52264. weight: math.unit(250, "lb"),
  52265. name: "Side",
  52266. image: {
  52267. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52268. extra: 731/621,
  52269. bottom: 0/731
  52270. },
  52271. form: "feral",
  52272. default: true
  52273. },
  52274. },
  52275. [
  52276. {
  52277. name: "Regular",
  52278. height: math.unit(8, "feet"),
  52279. form: "anthro"
  52280. },
  52281. {
  52282. name: "Macro",
  52283. height: math.unit(250, "feet"),
  52284. form: "anthro",
  52285. default: true
  52286. },
  52287. {
  52288. name: "Regular",
  52289. height: math.unit(4, "feet"),
  52290. form: "feral"
  52291. },
  52292. {
  52293. name: "Macro",
  52294. height: math.unit(125, "feet"),
  52295. form: "feral",
  52296. default: true
  52297. },
  52298. ],
  52299. {
  52300. "anthro": {
  52301. name: "Anthro",
  52302. default: true
  52303. },
  52304. "feral": {
  52305. name: "Feral",
  52306. },
  52307. }
  52308. ))
  52309. characterMakers.push(() => makeCharacter(
  52310. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52311. {
  52312. front: {
  52313. height: math.unit(11 + 10/12, "feet"),
  52314. weight: math.unit(1587, "kg"),
  52315. name: "Front",
  52316. image: {
  52317. source: "./media/characters/maple-javira-dragon/front.svg",
  52318. extra: 1136/744,
  52319. bottom: 73/1209
  52320. }
  52321. },
  52322. side: {
  52323. height: math.unit(11 + 10/12, "feet"),
  52324. weight: math.unit(1587, "kg"),
  52325. name: "Side",
  52326. image: {
  52327. source: "./media/characters/maple-javira-dragon/side.svg",
  52328. extra: 712/505,
  52329. bottom: 17/729
  52330. }
  52331. },
  52332. head: {
  52333. height: math.unit(8.05, "feet"),
  52334. name: "Head",
  52335. image: {
  52336. source: "./media/characters/maple-javira-dragon/head.svg",
  52337. extra: 1420/1344,
  52338. bottom: 0/1420
  52339. }
  52340. },
  52341. },
  52342. [
  52343. {
  52344. name: "Normal",
  52345. height: math.unit(11 + 10/12, "feet"),
  52346. default: true
  52347. },
  52348. ]
  52349. ))
  52350. characterMakers.push(() => makeCharacter(
  52351. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52352. {
  52353. front: {
  52354. height: math.unit(117, "cm"),
  52355. weight: math.unit(50, "kg"),
  52356. name: "Front",
  52357. image: {
  52358. source: "./media/characters/sonia-wyverntail/front.svg",
  52359. extra: 708/592,
  52360. bottom: 25/733
  52361. }
  52362. },
  52363. },
  52364. [
  52365. {
  52366. name: "Normal",
  52367. height: math.unit(117, "cm"),
  52368. default: true
  52369. },
  52370. ]
  52371. ))
  52372. characterMakers.push(() => makeCharacter(
  52373. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52374. {
  52375. front: {
  52376. height: math.unit(6 + 5/12, "feet"),
  52377. name: "Front",
  52378. image: {
  52379. source: "./media/characters/micah/front.svg",
  52380. extra: 1758/1546,
  52381. bottom: 214/1972
  52382. }
  52383. },
  52384. },
  52385. [
  52386. {
  52387. name: "Normal",
  52388. height: math.unit(6 + 5/12, "feet"),
  52389. default: true
  52390. },
  52391. ]
  52392. ))
  52393. characterMakers.push(() => makeCharacter(
  52394. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52395. {
  52396. front: {
  52397. height: math.unit(1.75, "meters"),
  52398. weight: math.unit(100, "kg"),
  52399. name: "Front",
  52400. image: {
  52401. source: "./media/characters/zarya/front.svg",
  52402. extra: 741/735,
  52403. bottom: 44/785
  52404. },
  52405. extraAttributes: {
  52406. "tailLength": {
  52407. name: "Tail Length",
  52408. power: 1,
  52409. type: "length",
  52410. base: math.unit(180, "cm")
  52411. },
  52412. "pawLength": {
  52413. name: "Paw Length",
  52414. power: 1,
  52415. type: "length",
  52416. base: math.unit(31, "cm")
  52417. },
  52418. }
  52419. },
  52420. side: {
  52421. height: math.unit(1.75, "meters"),
  52422. weight: math.unit(100, "kg"),
  52423. name: "Side",
  52424. image: {
  52425. source: "./media/characters/zarya/side.svg",
  52426. extra: 776/770,
  52427. bottom: 17/793
  52428. },
  52429. extraAttributes: {
  52430. "tailLength": {
  52431. name: "Tail Length",
  52432. power: 1,
  52433. type: "length",
  52434. base: math.unit(180, "cm")
  52435. },
  52436. "pawLength": {
  52437. name: "Paw Length",
  52438. power: 1,
  52439. type: "length",
  52440. base: math.unit(31, "cm")
  52441. },
  52442. }
  52443. },
  52444. back: {
  52445. height: math.unit(1.75, "meters"),
  52446. weight: math.unit(100, "kg"),
  52447. name: "Back",
  52448. image: {
  52449. source: "./media/characters/zarya/back.svg",
  52450. extra: 741/735,
  52451. bottom: 44/785
  52452. },
  52453. extraAttributes: {
  52454. "tailLength": {
  52455. name: "Tail Length",
  52456. power: 1,
  52457. type: "length",
  52458. base: math.unit(180, "cm")
  52459. },
  52460. "pawLength": {
  52461. name: "Paw Length",
  52462. power: 1,
  52463. type: "length",
  52464. base: math.unit(31, "cm")
  52465. },
  52466. }
  52467. },
  52468. frontNoTail: {
  52469. height: math.unit(1.75, "meters"),
  52470. weight: math.unit(100, "kg"),
  52471. name: "Front (No Tail)",
  52472. image: {
  52473. source: "./media/characters/zarya/front-no-tail.svg",
  52474. extra: 741/735,
  52475. bottom: 44/785
  52476. },
  52477. extraAttributes: {
  52478. "tailLength": {
  52479. name: "Tail Length",
  52480. power: 1,
  52481. type: "length",
  52482. base: math.unit(180, "cm")
  52483. },
  52484. "pawLength": {
  52485. name: "Paw Length",
  52486. power: 1,
  52487. type: "length",
  52488. base: math.unit(31, "cm")
  52489. },
  52490. }
  52491. },
  52492. dressed: {
  52493. height: math.unit(1.75, "meters"),
  52494. weight: math.unit(100, "kg"),
  52495. name: "Dressed",
  52496. image: {
  52497. source: "./media/characters/zarya/dressed.svg",
  52498. extra: 683/672,
  52499. bottom: 79/762
  52500. },
  52501. extraAttributes: {
  52502. "tailLength": {
  52503. name: "Tail Length",
  52504. power: 1,
  52505. type: "length",
  52506. base: math.unit(180, "cm")
  52507. },
  52508. "pawLength": {
  52509. name: "Paw Length",
  52510. power: 1,
  52511. type: "length",
  52512. base: math.unit(31, "cm")
  52513. },
  52514. }
  52515. },
  52516. },
  52517. [
  52518. {
  52519. name: "Micro",
  52520. height: math.unit(5, "cm")
  52521. },
  52522. {
  52523. name: "Normal",
  52524. height: math.unit(1.75, "meters"),
  52525. default: true
  52526. },
  52527. {
  52528. name: "Macro",
  52529. height: math.unit(122, "meters")
  52530. },
  52531. ]
  52532. ))
  52533. characterMakers.push(() => makeCharacter(
  52534. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52535. {
  52536. front: {
  52537. height: math.unit(7.5, "feet"),
  52538. name: "Front",
  52539. image: {
  52540. source: "./media/characters/sven-hatisson/front.svg",
  52541. extra: 917/857,
  52542. bottom: 42/959
  52543. }
  52544. },
  52545. back: {
  52546. height: math.unit(7.5, "feet"),
  52547. name: "Back",
  52548. image: {
  52549. source: "./media/characters/sven-hatisson/back.svg",
  52550. extra: 903/856,
  52551. bottom: 15/918
  52552. }
  52553. },
  52554. },
  52555. [
  52556. {
  52557. name: "Base Height",
  52558. height: math.unit(7.5, "feet")
  52559. },
  52560. {
  52561. name: "Usual Height",
  52562. height: math.unit(13.5, "feet"),
  52563. default: true
  52564. },
  52565. {
  52566. name: "Smaller Macro",
  52567. height: math.unit(85, "feet")
  52568. },
  52569. {
  52570. name: "Moderate Macro",
  52571. height: math.unit(320, "feet")
  52572. },
  52573. {
  52574. name: "Large Macro",
  52575. height: math.unit(1000, "feet")
  52576. },
  52577. {
  52578. name: "Largest Size",
  52579. height: math.unit(2, "miles")
  52580. },
  52581. ]
  52582. ))
  52583. characterMakers.push(() => makeCharacter(
  52584. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52585. {
  52586. side: {
  52587. height: math.unit(1.8, "meters"),
  52588. weight: math.unit(275, "kg"),
  52589. name: "Side",
  52590. image: {
  52591. source: "./media/characters/terra/side.svg",
  52592. extra: 1273/1147,
  52593. bottom: 0/1273
  52594. }
  52595. },
  52596. },
  52597. [
  52598. {
  52599. name: "Normal",
  52600. height: math.unit(16.2, "meters"),
  52601. default: true
  52602. },
  52603. ]
  52604. ))
  52605. characterMakers.push(() => makeCharacter(
  52606. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52607. {
  52608. borzoiFront: {
  52609. height: math.unit(6 + 9/12, "feet"),
  52610. name: "Front",
  52611. image: {
  52612. source: "./media/characters/rae/borzoi-front.svg",
  52613. extra: 1161/1098,
  52614. bottom: 31/1192
  52615. },
  52616. form: "borzoi",
  52617. default: true
  52618. },
  52619. werewolfFront: {
  52620. height: math.unit(8 + 7/12, "feet"),
  52621. name: "Front",
  52622. image: {
  52623. source: "./media/characters/rae/werewolf-front.svg",
  52624. extra: 1411/1334,
  52625. bottom: 127/1538
  52626. },
  52627. form: "werewolf",
  52628. default: true
  52629. },
  52630. },
  52631. [
  52632. {
  52633. name: "Normal",
  52634. height: math.unit(6 + 9/12, "feet"),
  52635. default: true,
  52636. form: "borzoi"
  52637. },
  52638. {
  52639. name: "Normal",
  52640. height: math.unit(8 + 7/12, "feet"),
  52641. default: true,
  52642. form: "werewolf"
  52643. },
  52644. ],
  52645. {
  52646. "borzoi": {
  52647. name: "Borzoi",
  52648. default: true
  52649. },
  52650. "werewolf": {
  52651. name: "Werewolf",
  52652. },
  52653. }
  52654. ))
  52655. characterMakers.push(() => makeCharacter(
  52656. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52657. {
  52658. front: {
  52659. height: math.unit(8 + 7/12, "feet"),
  52660. weight: math.unit(482, "lb"),
  52661. name: "Front",
  52662. image: {
  52663. source: "./media/characters/kit/front.svg",
  52664. extra: 1247/1103,
  52665. bottom: 41/1288
  52666. }
  52667. },
  52668. back: {
  52669. height: math.unit(8 + 7/12, "feet"),
  52670. weight: math.unit(482, "lb"),
  52671. name: "Back",
  52672. image: {
  52673. source: "./media/characters/kit/back.svg",
  52674. extra: 1252/1123,
  52675. bottom: 21/1273
  52676. }
  52677. },
  52678. paw: {
  52679. height: math.unit(1.46, "feet"),
  52680. name: "Paw",
  52681. image: {
  52682. source: "./media/characters/kit/paw.svg"
  52683. }
  52684. },
  52685. },
  52686. [
  52687. {
  52688. name: "Normal",
  52689. height: math.unit(2.61, "meters"),
  52690. default: true
  52691. },
  52692. {
  52693. name: "\"Tall\"",
  52694. height: math.unit(8.21, "meters")
  52695. },
  52696. {
  52697. name: "Tall",
  52698. height: math.unit(19.6, "meters")
  52699. },
  52700. {
  52701. name: "Very Tall",
  52702. height: math.unit(57.91, "meters")
  52703. },
  52704. {
  52705. name: "Semi-Macro",
  52706. height: math.unit(138.64, "meters")
  52707. },
  52708. {
  52709. name: "Macro",
  52710. height: math.unit(831.99, "meters")
  52711. },
  52712. {
  52713. name: "EX-Macro",
  52714. height: math.unit(96451121, "meters")
  52715. },
  52716. {
  52717. name: "S1-Omnipotent",
  52718. height: math.unit(4.42074e+9, "meters")
  52719. },
  52720. {
  52721. name: "S2-Omnipotent",
  52722. height: math.unit(9.42074e+17, "meters")
  52723. },
  52724. {
  52725. name: "Omnipotent",
  52726. height: math.unit(4.23112e+24, "meters")
  52727. },
  52728. {
  52729. name: "Hypergod",
  52730. height: math.unit(5.05176e+27, "meters")
  52731. },
  52732. {
  52733. name: "Hypergod-EX",
  52734. height: math.unit(9.45532e+49, "meters")
  52735. },
  52736. {
  52737. name: "Hypergod-SP",
  52738. height: math.unit(9.45532e+195, "meters")
  52739. },
  52740. ]
  52741. ))
  52742. characterMakers.push(() => makeCharacter(
  52743. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52744. {
  52745. side: {
  52746. height: math.unit(0.6, "meters"),
  52747. weight: math.unit(24, "kg"),
  52748. name: "Side",
  52749. image: {
  52750. source: "./media/characters/celeste/side.svg",
  52751. extra: 810/517,
  52752. bottom: 53/863
  52753. }
  52754. },
  52755. },
  52756. [
  52757. {
  52758. name: "Velociraptor",
  52759. height: math.unit(0.6, "meters"),
  52760. default: true
  52761. },
  52762. {
  52763. name: "Utahraptor",
  52764. height: math.unit(1.8, "meters")
  52765. },
  52766. {
  52767. name: "Gallimimus",
  52768. height: math.unit(4.0, "meters")
  52769. },
  52770. {
  52771. name: "Large",
  52772. height: math.unit(20, "meters")
  52773. },
  52774. {
  52775. name: "Planetary",
  52776. height: math.unit(50, "megameters")
  52777. },
  52778. {
  52779. name: "Stellar",
  52780. height: math.unit(1.5, "gigameters")
  52781. },
  52782. {
  52783. name: "Galactic",
  52784. height: math.unit(100, "exameters")
  52785. },
  52786. ]
  52787. ))
  52788. characterMakers.push(() => makeCharacter(
  52789. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52790. {
  52791. front: {
  52792. height: math.unit(6, "feet"),
  52793. weight: math.unit(210, "lb"),
  52794. name: "Front",
  52795. image: {
  52796. source: "./media/characters/glacia/front.svg",
  52797. extra: 958/901,
  52798. bottom: 45/1003
  52799. }
  52800. },
  52801. },
  52802. [
  52803. {
  52804. name: "Macro",
  52805. height: math.unit(1000, "meters"),
  52806. default: true
  52807. },
  52808. ]
  52809. ))
  52810. characterMakers.push(() => makeCharacter(
  52811. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52812. {
  52813. front: {
  52814. height: math.unit(4, "meters"),
  52815. name: "Front",
  52816. image: {
  52817. source: "./media/characters/giri/front.svg",
  52818. extra: 966/894,
  52819. bottom: 21/987
  52820. }
  52821. },
  52822. },
  52823. [
  52824. {
  52825. name: "Normal",
  52826. height: math.unit(4, "meters"),
  52827. default: true
  52828. },
  52829. ]
  52830. ))
  52831. characterMakers.push(() => makeCharacter(
  52832. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52833. {
  52834. back: {
  52835. height: math.unit(4, "feet"),
  52836. weight: math.unit(37, "lb"),
  52837. name: "Back",
  52838. image: {
  52839. source: "./media/characters/tin/back.svg",
  52840. extra: 845/780,
  52841. bottom: 28/873
  52842. }
  52843. },
  52844. },
  52845. [
  52846. {
  52847. name: "Normal",
  52848. height: math.unit(4, "feet"),
  52849. default: true
  52850. },
  52851. ]
  52852. ))
  52853. characterMakers.push(() => makeCharacter(
  52854. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52855. {
  52856. front: {
  52857. height: math.unit(25, "feet"),
  52858. name: "Front",
  52859. image: {
  52860. source: "./media/characters/cadenza-vivace/front.svg",
  52861. extra: 1842/1578,
  52862. bottom: 30/1872
  52863. }
  52864. },
  52865. },
  52866. [
  52867. {
  52868. name: "Macro",
  52869. height: math.unit(25, "feet"),
  52870. default: true
  52871. },
  52872. ]
  52873. ))
  52874. characterMakers.push(() => makeCharacter(
  52875. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52876. {
  52877. front: {
  52878. height: math.unit(10, "feet"),
  52879. weight: math.unit(625, "kg"),
  52880. name: "Front",
  52881. image: {
  52882. source: "./media/characters/zain/front.svg",
  52883. extra: 1682/1498,
  52884. bottom: 223/1905
  52885. }
  52886. },
  52887. back: {
  52888. height: math.unit(10, "feet"),
  52889. weight: math.unit(625, "kg"),
  52890. name: "Back",
  52891. image: {
  52892. source: "./media/characters/zain/back.svg",
  52893. extra: 1814/1657,
  52894. bottom: 152/1966
  52895. }
  52896. },
  52897. head: {
  52898. height: math.unit(10, "feet"),
  52899. weight: math.unit(625, "kg"),
  52900. name: "Head",
  52901. image: {
  52902. source: "./media/characters/zain/head.svg",
  52903. extra: 1059/762,
  52904. bottom: 0/1059
  52905. }
  52906. },
  52907. },
  52908. [
  52909. {
  52910. name: "Normal",
  52911. height: math.unit(10, "feet"),
  52912. default: true
  52913. },
  52914. ]
  52915. ))
  52916. characterMakers.push(() => makeCharacter(
  52917. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52918. {
  52919. front: {
  52920. height: math.unit(6 + 5/12, "feet"),
  52921. weight: math.unit(750, "lb"),
  52922. name: "Front",
  52923. image: {
  52924. source: "./media/characters/ruchex/front.svg",
  52925. extra: 877/820,
  52926. bottom: 17/894
  52927. },
  52928. extraAttributes: {
  52929. "width": {
  52930. name: "Width",
  52931. power: 1,
  52932. type: "length",
  52933. base: math.unit(4.757, "feet")
  52934. },
  52935. }
  52936. },
  52937. },
  52938. [
  52939. {
  52940. name: "Normal",
  52941. height: math.unit(6 + 5/12, "feet"),
  52942. default: true
  52943. },
  52944. ]
  52945. ))
  52946. characterMakers.push(() => makeCharacter(
  52947. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52948. {
  52949. dressedFront: {
  52950. height: math.unit(191, "cm"),
  52951. weight: math.unit(80, "kg"),
  52952. name: "Front",
  52953. image: {
  52954. source: "./media/characters/buster/dressed-front.svg",
  52955. extra: 1022/973,
  52956. bottom: 69/1091
  52957. }
  52958. },
  52959. dressedBack: {
  52960. height: math.unit(191, "cm"),
  52961. weight: math.unit(80, "kg"),
  52962. name: "Back",
  52963. image: {
  52964. source: "./media/characters/buster/dressed-back.svg",
  52965. extra: 1018/970,
  52966. bottom: 55/1073
  52967. }
  52968. },
  52969. nudeFront: {
  52970. height: math.unit(191, "cm"),
  52971. weight: math.unit(80, "kg"),
  52972. name: "Front (Nude)",
  52973. image: {
  52974. source: "./media/characters/buster/nude-front.svg",
  52975. extra: 1022/973,
  52976. bottom: 69/1091
  52977. }
  52978. },
  52979. nudeBack: {
  52980. height: math.unit(191, "cm"),
  52981. weight: math.unit(80, "kg"),
  52982. name: "Back (Nude)",
  52983. image: {
  52984. source: "./media/characters/buster/nude-back.svg",
  52985. extra: 1018/970,
  52986. bottom: 55/1073
  52987. }
  52988. },
  52989. dick: {
  52990. height: math.unit(2.59, "feet"),
  52991. name: "Dick",
  52992. image: {
  52993. source: "./media/characters/buster/dick.svg"
  52994. }
  52995. },
  52996. ass: {
  52997. height: math.unit(1.2, "feet"),
  52998. name: "Ass",
  52999. image: {
  53000. source: "./media/characters/buster/ass.svg"
  53001. }
  53002. },
  53003. },
  53004. [
  53005. {
  53006. name: "Normal",
  53007. height: math.unit(191, "cm"),
  53008. default: true
  53009. },
  53010. ]
  53011. ))
  53012. characterMakers.push(() => makeCharacter(
  53013. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53014. {
  53015. side: {
  53016. height: math.unit(8.1, "feet"),
  53017. weight: math.unit(3500, "lb"),
  53018. name: "Side",
  53019. image: {
  53020. source: "./media/characters/sonya/side.svg",
  53021. extra: 1730/1317,
  53022. bottom: 86/1816
  53023. }
  53024. },
  53025. },
  53026. [
  53027. {
  53028. name: "Normal",
  53029. height: math.unit(8.1, "feet"),
  53030. default: true
  53031. },
  53032. ]
  53033. ))
  53034. characterMakers.push(() => makeCharacter(
  53035. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53036. {
  53037. front: {
  53038. height: math.unit(6, "feet"),
  53039. weight: math.unit(150, "lb"),
  53040. name: "Front",
  53041. image: {
  53042. source: "./media/characters/cadence-andrysiak/front.svg",
  53043. extra: 1164/1121,
  53044. bottom: 60/1224
  53045. }
  53046. },
  53047. back: {
  53048. height: math.unit(6, "feet"),
  53049. weight: math.unit(150, "lb"),
  53050. name: "Back",
  53051. image: {
  53052. source: "./media/characters/cadence-andrysiak/back.svg",
  53053. extra: 1200/1165,
  53054. bottom: 9/1209
  53055. }
  53056. },
  53057. dressed: {
  53058. height: math.unit(6, "feet"),
  53059. weight: math.unit(150, "lb"),
  53060. name: "Dressed",
  53061. image: {
  53062. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53063. extra: 1164/1121,
  53064. bottom: 60/1224
  53065. }
  53066. },
  53067. },
  53068. [
  53069. {
  53070. name: "Micro",
  53071. height: math.unit(1, "mm")
  53072. },
  53073. {
  53074. name: "Normal",
  53075. height: math.unit(6, "feet"),
  53076. default: true
  53077. },
  53078. ]
  53079. ))
  53080. characterMakers.push(() => makeCharacter(
  53081. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53082. {
  53083. front: {
  53084. height: math.unit(60, "inches"),
  53085. weight: math.unit(16, "lb"),
  53086. preyCapacity: math.unit(80, "liters"),
  53087. name: "Front",
  53088. image: {
  53089. source: "./media/characters/penny-lynx/front.svg",
  53090. extra: 1959/1769,
  53091. bottom: 49/2008
  53092. }
  53093. },
  53094. },
  53095. [
  53096. {
  53097. name: "Nokia",
  53098. height: math.unit(2, "inches")
  53099. },
  53100. {
  53101. name: "Desktop",
  53102. height: math.unit(24, "inches")
  53103. },
  53104. {
  53105. name: "TV",
  53106. height: math.unit(60, "inches")
  53107. },
  53108. {
  53109. name: "Jumbotron",
  53110. height: math.unit(12, "feet")
  53111. },
  53112. {
  53113. name: "Billboard",
  53114. height: math.unit(48, "feet"),
  53115. default: true
  53116. },
  53117. {
  53118. name: "IMAX",
  53119. height: math.unit(96, "feet")
  53120. },
  53121. {
  53122. name: "SINGULARITY",
  53123. height: math.unit(864938, "miles")
  53124. },
  53125. ]
  53126. ))
  53127. characterMakers.push(() => makeCharacter(
  53128. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53129. {
  53130. front: {
  53131. height: math.unit(5 + 4/12, "feet"),
  53132. weight: math.unit(230, "lb"),
  53133. name: "Front",
  53134. image: {
  53135. source: "./media/characters/sukebe/front.svg",
  53136. extra: 2130/2038,
  53137. bottom: 90/2220
  53138. }
  53139. },
  53140. back: {
  53141. height: math.unit(3.48, "feet"),
  53142. weight: math.unit(230, "lb"),
  53143. name: "Back",
  53144. image: {
  53145. source: "./media/characters/sukebe/back.svg",
  53146. extra: 1670/1604,
  53147. bottom: 0/1670
  53148. }
  53149. },
  53150. },
  53151. [
  53152. {
  53153. name: "Normal",
  53154. height: math.unit(5 + 4/12, "feet"),
  53155. default: true
  53156. },
  53157. ]
  53158. ))
  53159. characterMakers.push(() => makeCharacter(
  53160. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53161. {
  53162. front: {
  53163. height: math.unit(6, "feet"),
  53164. name: "Front",
  53165. image: {
  53166. source: "./media/characters/nylla/front.svg",
  53167. extra: 1868/1699,
  53168. bottom: 97/1965
  53169. }
  53170. },
  53171. back: {
  53172. height: math.unit(6, "feet"),
  53173. name: "Back",
  53174. image: {
  53175. source: "./media/characters/nylla/back.svg",
  53176. extra: 1889/1712,
  53177. bottom: 93/1982
  53178. }
  53179. },
  53180. frontNsfw: {
  53181. height: math.unit(6, "feet"),
  53182. name: "Front (NSFW)",
  53183. image: {
  53184. source: "./media/characters/nylla/front-nsfw.svg",
  53185. extra: 1868/1699,
  53186. bottom: 97/1965
  53187. },
  53188. extraAttributes: {
  53189. "dickLength": {
  53190. name: "Dick Length",
  53191. power: 1,
  53192. type: "length",
  53193. base: math.unit(1.4, "feet")
  53194. },
  53195. "cumVolume": {
  53196. name: "Cum Volume",
  53197. power: 3,
  53198. type: "volume",
  53199. base: math.unit(100, "mL")
  53200. },
  53201. }
  53202. },
  53203. backNsfw: {
  53204. height: math.unit(6, "feet"),
  53205. name: "Back (NSFW)",
  53206. image: {
  53207. source: "./media/characters/nylla/back-nsfw.svg",
  53208. extra: 1889/1712,
  53209. bottom: 93/1982
  53210. }
  53211. },
  53212. maw: {
  53213. height: math.unit(2.10, "feet"),
  53214. name: "Maw",
  53215. image: {
  53216. source: "./media/characters/nylla/maw.svg"
  53217. }
  53218. },
  53219. paws: {
  53220. height: math.unit(2.06, "feet"),
  53221. name: "Paws",
  53222. image: {
  53223. source: "./media/characters/nylla/paws.svg"
  53224. }
  53225. },
  53226. muzzle: {
  53227. height: math.unit(0.61, "feet"),
  53228. name: "Muzzle",
  53229. image: {
  53230. source: "./media/characters/nylla/muzzle.svg"
  53231. }
  53232. },
  53233. sheath: {
  53234. height: math.unit(1.305, "feet"),
  53235. name: "Sheath",
  53236. image: {
  53237. source: "./media/characters/nylla/sheath.svg"
  53238. }
  53239. },
  53240. },
  53241. [
  53242. {
  53243. name: "Micro",
  53244. height: math.unit(7.5, "inches")
  53245. },
  53246. {
  53247. name: "Normal",
  53248. height: math.unit(7, "feet"),
  53249. default: true
  53250. },
  53251. {
  53252. name: "Macro",
  53253. height: math.unit(60, "feet")
  53254. },
  53255. {
  53256. name: "Mega",
  53257. height: math.unit(200, "feet")
  53258. },
  53259. ]
  53260. ))
  53261. characterMakers.push(() => makeCharacter(
  53262. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53263. {
  53264. front: {
  53265. height: math.unit(10, "feet"),
  53266. weight: math.unit(2300, "lb"),
  53267. name: "Front",
  53268. image: {
  53269. source: "./media/characters/hunt3r/front.svg",
  53270. extra: 1909/1742,
  53271. bottom: 46/1955
  53272. }
  53273. },
  53274. },
  53275. [
  53276. {
  53277. name: "Normal",
  53278. height: math.unit(10, "feet"),
  53279. default: true
  53280. },
  53281. ]
  53282. ))
  53283. characterMakers.push(() => makeCharacter(
  53284. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53285. {
  53286. dressed: {
  53287. height: math.unit(11, "feet"),
  53288. weight: math.unit(18500, "lb"),
  53289. preyCapacity: math.unit(9, "people"),
  53290. name: "Dressed",
  53291. image: {
  53292. source: "./media/characters/cylphis/dressed.svg",
  53293. extra: 1028/1003,
  53294. bottom: 75/1103
  53295. },
  53296. },
  53297. undressed: {
  53298. height: math.unit(11, "feet"),
  53299. weight: math.unit(18500, "lb"),
  53300. preyCapacity: math.unit(9, "people"),
  53301. name: "Undressed",
  53302. image: {
  53303. source: "./media/characters/cylphis/undressed.svg",
  53304. extra: 1028/1003,
  53305. bottom: 75/1103
  53306. }
  53307. },
  53308. full: {
  53309. height: math.unit(11, "feet"),
  53310. weight: math.unit(18500 + 150*9, "lb"),
  53311. preyCapacity: math.unit(9, "people"),
  53312. name: "Full",
  53313. image: {
  53314. source: "./media/characters/cylphis/full.svg",
  53315. extra: 1028/1003,
  53316. bottom: 75/1103
  53317. }
  53318. },
  53319. },
  53320. [
  53321. {
  53322. name: "Small",
  53323. height: math.unit(8, "feet")
  53324. },
  53325. {
  53326. name: "Normal",
  53327. height: math.unit(11, "feet"),
  53328. default: true
  53329. },
  53330. ]
  53331. ))
  53332. characterMakers.push(() => makeCharacter(
  53333. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53334. {
  53335. front: {
  53336. height: math.unit(2 + 7/12, "feet"),
  53337. name: "Front",
  53338. image: {
  53339. source: "./media/characters/orishan/front.svg",
  53340. extra: 1058/1023,
  53341. bottom: 23/1081
  53342. }
  53343. },
  53344. back: {
  53345. height: math.unit(2 + 7/12, "feet"),
  53346. name: "Back",
  53347. image: {
  53348. source: "./media/characters/orishan/back.svg",
  53349. extra: 1058/1023,
  53350. bottom: 23/1081
  53351. }
  53352. },
  53353. },
  53354. [
  53355. {
  53356. name: "Micro",
  53357. height: math.unit(2, "cm")
  53358. },
  53359. {
  53360. name: "Normal",
  53361. height: math.unit(2 + 7/12, "feet"),
  53362. default: true
  53363. },
  53364. ]
  53365. ))
  53366. characterMakers.push(() => makeCharacter(
  53367. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53368. {
  53369. front: {
  53370. height: math.unit(3, "meters"),
  53371. weight: math.unit(508, "kg"),
  53372. name: "Front",
  53373. image: {
  53374. source: "./media/characters/seranis/front.svg",
  53375. extra: 1478/1454,
  53376. bottom: 41/1519
  53377. }
  53378. },
  53379. },
  53380. [
  53381. {
  53382. name: "Normal",
  53383. height: math.unit(3, "meters"),
  53384. default: true
  53385. },
  53386. {
  53387. name: "Macro",
  53388. height: math.unit(108, "meters")
  53389. },
  53390. {
  53391. name: "Megamacro",
  53392. height: math.unit(1250, "meters")
  53393. },
  53394. ]
  53395. ))
  53396. characterMakers.push(() => makeCharacter(
  53397. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53398. {
  53399. undressed: {
  53400. height: math.unit(5 + 3/12, "feet"),
  53401. name: "Undressed",
  53402. image: {
  53403. source: "./media/characters/ankou/undressed.svg",
  53404. extra: 1301/1213,
  53405. bottom: 87/1388
  53406. }
  53407. },
  53408. dressed: {
  53409. height: math.unit(5 + 3/12, "feet"),
  53410. name: "Dressed",
  53411. image: {
  53412. source: "./media/characters/ankou/dressed.svg",
  53413. extra: 1301/1213,
  53414. bottom: 87/1388
  53415. }
  53416. },
  53417. head: {
  53418. height: math.unit(1.61, "feet"),
  53419. name: "Head",
  53420. image: {
  53421. source: "./media/characters/ankou/head.svg"
  53422. }
  53423. },
  53424. },
  53425. [
  53426. {
  53427. name: "Normal",
  53428. height: math.unit(5 + 3/12, "feet"),
  53429. default: true
  53430. },
  53431. ]
  53432. ))
  53433. characterMakers.push(() => makeCharacter(
  53434. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53435. {
  53436. side: {
  53437. height: math.unit(6 + 3/12, "feet"),
  53438. weight: math.unit(200, "kg"),
  53439. name: "Side",
  53440. image: {
  53441. source: "./media/characters/juniper-skunktaur/side.svg",
  53442. extra: 1574/1229,
  53443. bottom: 38/1612
  53444. }
  53445. },
  53446. front: {
  53447. height: math.unit(6 + 3/12, "feet"),
  53448. weight: math.unit(200, "kg"),
  53449. name: "Front",
  53450. image: {
  53451. source: "./media/characters/juniper-skunktaur/front.svg",
  53452. extra: 1337/1278,
  53453. bottom: 22/1359
  53454. }
  53455. },
  53456. back: {
  53457. height: math.unit(6 + 3/12, "feet"),
  53458. weight: math.unit(200, "kg"),
  53459. name: "Back",
  53460. image: {
  53461. source: "./media/characters/juniper-skunktaur/back.svg",
  53462. extra: 1618/1273,
  53463. bottom: 13/1631
  53464. }
  53465. },
  53466. top: {
  53467. height: math.unit(2.62, "feet"),
  53468. weight: math.unit(200, "kg"),
  53469. name: "Top",
  53470. image: {
  53471. source: "./media/characters/juniper-skunktaur/top.svg"
  53472. }
  53473. },
  53474. },
  53475. [
  53476. {
  53477. name: "Normal",
  53478. height: math.unit(6 + 3/12, "feet"),
  53479. default: true
  53480. },
  53481. ]
  53482. ))
  53483. characterMakers.push(() => makeCharacter(
  53484. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53485. {
  53486. front: {
  53487. height: math.unit(20.5, "feet"),
  53488. name: "Front",
  53489. image: {
  53490. source: "./media/characters/rei/front.svg",
  53491. extra: 1349/1195,
  53492. bottom: 31/1380
  53493. }
  53494. },
  53495. back: {
  53496. height: math.unit(20.5, "feet"),
  53497. name: "Back",
  53498. image: {
  53499. source: "./media/characters/rei/back.svg",
  53500. extra: 1358/1204,
  53501. bottom: 22/1380
  53502. }
  53503. },
  53504. pawsDigi: {
  53505. height: math.unit(3.45, "feet"),
  53506. name: "Paws (Digi)",
  53507. image: {
  53508. source: "./media/characters/rei/paws-digi.svg"
  53509. }
  53510. },
  53511. pawsPlanti: {
  53512. height: math.unit(3.45, "feet"),
  53513. name: "Paws (Planti)",
  53514. image: {
  53515. source: "./media/characters/rei/paws-planti.svg"
  53516. }
  53517. },
  53518. },
  53519. [
  53520. {
  53521. name: "Normal",
  53522. height: math.unit(20.5, "feet"),
  53523. default: true
  53524. },
  53525. ]
  53526. ))
  53527. characterMakers.push(() => makeCharacter(
  53528. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53529. {
  53530. front: {
  53531. height: math.unit(5 + 11/12, "feet"),
  53532. name: "Front",
  53533. image: {
  53534. source: "./media/characters/carina/front.svg",
  53535. extra: 1720/1449,
  53536. bottom: 14/1734
  53537. }
  53538. },
  53539. back: {
  53540. height: math.unit(5 + 11/12, "feet"),
  53541. name: "Back",
  53542. image: {
  53543. source: "./media/characters/carina/back.svg",
  53544. extra: 1493/1445,
  53545. bottom: 17/1510
  53546. }
  53547. },
  53548. paw: {
  53549. height: math.unit(0.92, "feet"),
  53550. name: "Paw",
  53551. image: {
  53552. source: "./media/characters/carina/paw.svg"
  53553. }
  53554. },
  53555. },
  53556. [
  53557. {
  53558. name: "Normal",
  53559. height: math.unit(5 + 11/12, "feet"),
  53560. default: true
  53561. },
  53562. ]
  53563. ))
  53564. characterMakers.push(() => makeCharacter(
  53565. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53566. {
  53567. normal_front: {
  53568. height: math.unit(4.88, "meters"),
  53569. name: "Front",
  53570. image: {
  53571. source: "./media/characters/maya/normal-front.svg",
  53572. extra: 1222/1145,
  53573. bottom: 57/1279
  53574. },
  53575. form: "normal",
  53576. default: true
  53577. },
  53578. monstrous_front: {
  53579. height: math.unit(10, "meters"),
  53580. name: "Front",
  53581. image: {
  53582. source: "./media/characters/maya/monstrous-front.svg",
  53583. extra: 1523/1109,
  53584. bottom: 113/1636
  53585. },
  53586. form: "monstrous",
  53587. extraAttributes: {
  53588. "swallowSize": {
  53589. name: "Tailmaw Bite Size",
  53590. power: 3,
  53591. type: "volume",
  53592. base: math.unit(43000, "liters")
  53593. },
  53594. }
  53595. },
  53596. taur_front: {
  53597. height: math.unit(10, "meters"),
  53598. name: "Front",
  53599. image: {
  53600. source: "./media/characters/maya/taur-front.svg",
  53601. extra: 743/506,
  53602. bottom: 101/844
  53603. },
  53604. form: "taur",
  53605. },
  53606. },
  53607. [
  53608. {
  53609. name: "Normal",
  53610. height: math.unit(4.88, "meters"),
  53611. default: true,
  53612. form: "normal"
  53613. },
  53614. {
  53615. name: "Macro",
  53616. height: math.unit(38.1, "meters"),
  53617. form: "normal"
  53618. },
  53619. {
  53620. name: "Macro+",
  53621. height: math.unit(152.4, "meters"),
  53622. form: "normal"
  53623. },
  53624. {
  53625. name: "Macro++",
  53626. height: math.unit(16.09, "km"),
  53627. form: "normal"
  53628. },
  53629. {
  53630. name: "Mega-macro",
  53631. height: math.unit(700, "megameters"),
  53632. form: "normal"
  53633. },
  53634. {
  53635. name: "Satiated",
  53636. height: math.unit(10, "meters"),
  53637. default: true,
  53638. form: "monstrous"
  53639. },
  53640. {
  53641. name: "Hungry",
  53642. height: math.unit(75, "meters"),
  53643. form: "monstrous"
  53644. },
  53645. {
  53646. name: "Ravenous",
  53647. height: math.unit(500, "meters"),
  53648. form: "monstrous"
  53649. },
  53650. {
  53651. name: "\"Normal\"",
  53652. height: math.unit(10, "meters"),
  53653. form: "taur"
  53654. },
  53655. {
  53656. name: "Macro",
  53657. height: math.unit(50, "meters"),
  53658. form: "taur"
  53659. },
  53660. ],
  53661. {
  53662. "normal": {
  53663. name: "Normal",
  53664. default: true
  53665. },
  53666. "monstrous": {
  53667. name: "Monstrous",
  53668. },
  53669. "taur": {
  53670. name: "Taur",
  53671. },
  53672. }
  53673. ))
  53674. characterMakers.push(() => makeCharacter(
  53675. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53676. {
  53677. front: {
  53678. height: math.unit(6 + 2/12, "feet"),
  53679. weight: math.unit(500, "lb"),
  53680. preyCapacity: math.unit(4, "people"),
  53681. name: "Front",
  53682. image: {
  53683. source: "./media/characters/yepir/front.svg"
  53684. }
  53685. },
  53686. side: {
  53687. height: math.unit(6 + 2/12, "feet"),
  53688. weight: math.unit(500, "lb"),
  53689. preyCapacity: math.unit(4, "people"),
  53690. name: "Side",
  53691. image: {
  53692. source: "./media/characters/yepir/side.svg"
  53693. }
  53694. },
  53695. paw: {
  53696. height: math.unit(1.05, "feet"),
  53697. name: "Paw",
  53698. image: {
  53699. source: "./media/characters/yepir/paw.svg"
  53700. }
  53701. },
  53702. },
  53703. [
  53704. {
  53705. name: "Normal",
  53706. height: math.unit(6 + 2/12, "feet"),
  53707. default: true
  53708. },
  53709. ]
  53710. ))
  53711. characterMakers.push(() => makeCharacter(
  53712. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53713. {
  53714. front: {
  53715. height: math.unit(5 + 4/12, "feet"),
  53716. name: "Front",
  53717. image: {
  53718. source: "./media/characters/russec/front.svg",
  53719. extra: 1926/1626,
  53720. bottom: 72/1998
  53721. }
  53722. },
  53723. back: {
  53724. height: math.unit(5 + 4/12, "feet"),
  53725. name: "Back",
  53726. image: {
  53727. source: "./media/characters/russec/back.svg",
  53728. extra: 1910/1591,
  53729. bottom: 48/1958
  53730. }
  53731. },
  53732. },
  53733. [
  53734. {
  53735. name: "Small",
  53736. height: math.unit(5 + 4/12, "feet")
  53737. },
  53738. {
  53739. name: "Normal",
  53740. height: math.unit(72, "feet"),
  53741. default: true
  53742. },
  53743. ]
  53744. ))
  53745. characterMakers.push(() => makeCharacter(
  53746. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53747. {
  53748. side: {
  53749. height: math.unit(12, "feet"),
  53750. name: "Side",
  53751. image: {
  53752. source: "./media/characters/cianus/side.svg",
  53753. extra: 808/526,
  53754. bottom: 61/869
  53755. }
  53756. },
  53757. },
  53758. [
  53759. {
  53760. name: "Normal",
  53761. height: math.unit(12, "feet"),
  53762. default: true
  53763. },
  53764. ]
  53765. ))
  53766. characterMakers.push(() => makeCharacter(
  53767. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53768. {
  53769. front: {
  53770. height: math.unit(9 + 6/12, "feet"),
  53771. weight: math.unit(300, "lb"),
  53772. name: "Front",
  53773. image: {
  53774. source: "./media/characters/ahab/front.svg",
  53775. extra: 1897/1868,
  53776. bottom: 121/2018
  53777. }
  53778. },
  53779. frontNsfw: {
  53780. height: math.unit(9 + 6/12, "feet"),
  53781. weight: math.unit(300, "lb"),
  53782. name: "Front-nsfw",
  53783. image: {
  53784. source: "./media/characters/ahab/front-nsfw.svg",
  53785. extra: 1897/1868,
  53786. bottom: 121/2018
  53787. }
  53788. },
  53789. },
  53790. [
  53791. {
  53792. name: "Normal",
  53793. height: math.unit(9 + 6/12, "feet")
  53794. },
  53795. {
  53796. name: "Macro",
  53797. height: math.unit(657, "feet"),
  53798. default: true
  53799. },
  53800. ]
  53801. ))
  53802. characterMakers.push(() => makeCharacter(
  53803. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53804. {
  53805. front: {
  53806. height: math.unit(2.69, "meters"),
  53807. weight: math.unit(132, "kg"),
  53808. name: "Front",
  53809. image: {
  53810. source: "./media/characters/aarkus/front.svg",
  53811. extra: 1400/1231,
  53812. bottom: 34/1434
  53813. }
  53814. },
  53815. back: {
  53816. height: math.unit(2.69, "meters"),
  53817. weight: math.unit(132, "kg"),
  53818. name: "Back",
  53819. image: {
  53820. source: "./media/characters/aarkus/back.svg",
  53821. extra: 1381/1218,
  53822. bottom: 30/1411
  53823. }
  53824. },
  53825. frontNsfw: {
  53826. height: math.unit(2.69, "meters"),
  53827. weight: math.unit(132, "kg"),
  53828. name: "Front (NSFW)",
  53829. image: {
  53830. source: "./media/characters/aarkus/front-nsfw.svg",
  53831. extra: 1400/1231,
  53832. bottom: 34/1434
  53833. }
  53834. },
  53835. foot: {
  53836. height: math.unit(1.45, "feet"),
  53837. name: "Foot",
  53838. image: {
  53839. source: "./media/characters/aarkus/foot.svg"
  53840. }
  53841. },
  53842. head: {
  53843. height: math.unit(2.85, "feet"),
  53844. name: "Head",
  53845. image: {
  53846. source: "./media/characters/aarkus/head.svg"
  53847. }
  53848. },
  53849. headAlt: {
  53850. height: math.unit(3.07, "feet"),
  53851. name: "Head (Alt)",
  53852. image: {
  53853. source: "./media/characters/aarkus/head-alt.svg"
  53854. }
  53855. },
  53856. mouth: {
  53857. height: math.unit(1.25, "feet"),
  53858. name: "Mouth",
  53859. image: {
  53860. source: "./media/characters/aarkus/mouth.svg"
  53861. }
  53862. },
  53863. dick: {
  53864. height: math.unit(1.77, "feet"),
  53865. name: "Dick",
  53866. image: {
  53867. source: "./media/characters/aarkus/dick.svg"
  53868. }
  53869. },
  53870. },
  53871. [
  53872. {
  53873. name: "Normal",
  53874. height: math.unit(2.69, "meters"),
  53875. default: true
  53876. },
  53877. {
  53878. name: "Macro",
  53879. height: math.unit(269, "meters")
  53880. },
  53881. {
  53882. name: "Macro+",
  53883. height: math.unit(672.5, "meters")
  53884. },
  53885. {
  53886. name: "Megamacro",
  53887. height: math.unit(2.017, "km")
  53888. },
  53889. ]
  53890. ))
  53891. characterMakers.push(() => makeCharacter(
  53892. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53893. {
  53894. front: {
  53895. height: math.unit(23.47, "cm"),
  53896. weight: math.unit(600, "grams"),
  53897. name: "Front",
  53898. image: {
  53899. source: "./media/characters/diode/front.svg",
  53900. extra: 1778/1396,
  53901. bottom: 95/1873
  53902. }
  53903. },
  53904. side: {
  53905. height: math.unit(23.47, "cm"),
  53906. weight: math.unit(600, "grams"),
  53907. name: "Side",
  53908. image: {
  53909. source: "./media/characters/diode/side.svg",
  53910. extra: 1831/1404,
  53911. bottom: 86/1917
  53912. }
  53913. },
  53914. wings: {
  53915. height: math.unit(0.683, "feet"),
  53916. name: "Wings",
  53917. image: {
  53918. source: "./media/characters/diode/wings.svg"
  53919. }
  53920. },
  53921. },
  53922. [
  53923. {
  53924. name: "Normal",
  53925. height: math.unit(23.47, "cm"),
  53926. default: true
  53927. },
  53928. ]
  53929. ))
  53930. characterMakers.push(() => makeCharacter(
  53931. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53932. {
  53933. front: {
  53934. height: math.unit(6 + 3/12, "feet"),
  53935. weight: math.unit(250, "lb"),
  53936. name: "Front",
  53937. image: {
  53938. source: "./media/characters/reika/front.svg",
  53939. extra: 1120/1078,
  53940. bottom: 86/1206
  53941. }
  53942. },
  53943. },
  53944. [
  53945. {
  53946. name: "Normal",
  53947. height: math.unit(6 + 3/12, "feet"),
  53948. default: true
  53949. },
  53950. ]
  53951. ))
  53952. characterMakers.push(() => makeCharacter(
  53953. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53954. {
  53955. front: {
  53956. height: math.unit(16 + 8/12, "feet"),
  53957. weight: math.unit(9000, "lb"),
  53958. name: "Front",
  53959. image: {
  53960. source: "./media/characters/lokuto-takama/front.svg",
  53961. extra: 1774/1632,
  53962. bottom: 147/1921
  53963. },
  53964. extraAttributes: {
  53965. "bustWidth": {
  53966. name: "Bust Width",
  53967. power: 1,
  53968. type: "length",
  53969. base: math.unit(2.4, "meters")
  53970. },
  53971. "breastWeight": {
  53972. name: "Breast Weight",
  53973. power: 3,
  53974. type: "mass",
  53975. base: math.unit(1000, "kg")
  53976. },
  53977. }
  53978. },
  53979. },
  53980. [
  53981. {
  53982. name: "Normal",
  53983. height: math.unit(16 + 8/12, "feet"),
  53984. default: true
  53985. },
  53986. ]
  53987. ))
  53988. characterMakers.push(() => makeCharacter(
  53989. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53990. {
  53991. front: {
  53992. height: math.unit(10, "cm"),
  53993. weight: math.unit(850, "grams"),
  53994. name: "Front",
  53995. image: {
  53996. source: "./media/characters/owak-bone/front.svg",
  53997. extra: 1965/1801,
  53998. bottom: 31/1996
  53999. }
  54000. },
  54001. },
  54002. [
  54003. {
  54004. name: "Normal",
  54005. height: math.unit(10, "cm"),
  54006. default: true
  54007. },
  54008. ]
  54009. ))
  54010. characterMakers.push(() => makeCharacter(
  54011. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54012. {
  54013. front: {
  54014. height: math.unit(2 + 6/12, "feet"),
  54015. weight: math.unit(9, "lb"),
  54016. name: "Front",
  54017. image: {
  54018. source: "./media/characters/muffin/front.svg",
  54019. extra: 1220/1195,
  54020. bottom: 84/1304
  54021. }
  54022. },
  54023. },
  54024. [
  54025. {
  54026. name: "Normal",
  54027. height: math.unit(2 + 6/12, "feet"),
  54028. default: true
  54029. },
  54030. ]
  54031. ))
  54032. characterMakers.push(() => makeCharacter(
  54033. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54034. {
  54035. front: {
  54036. height: math.unit(7, "feet"),
  54037. name: "Front",
  54038. image: {
  54039. source: "./media/characters/chimera/front.svg",
  54040. extra: 1752/1614,
  54041. bottom: 68/1820
  54042. }
  54043. },
  54044. },
  54045. [
  54046. {
  54047. name: "Normal",
  54048. height: math.unit(7, "feet")
  54049. },
  54050. {
  54051. name: "Gigamacro",
  54052. height: math.unit(2.9, "gigameters"),
  54053. default: true
  54054. },
  54055. {
  54056. name: "Universal",
  54057. height: math.unit(1.56e26, "yottameters")
  54058. },
  54059. ]
  54060. ))
  54061. characterMakers.push(() => makeCharacter(
  54062. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54063. {
  54064. front: {
  54065. height: math.unit(3, "feet"),
  54066. weight: math.unit(20, "lb"),
  54067. name: "Front",
  54068. image: {
  54069. source: "./media/characters/kit-fennec-fox/front.svg",
  54070. extra: 1027/932,
  54071. bottom: 16/1043
  54072. }
  54073. },
  54074. back: {
  54075. height: math.unit(3, "feet"),
  54076. weight: math.unit(20, "lb"),
  54077. name: "Back",
  54078. image: {
  54079. source: "./media/characters/kit-fennec-fox/back.svg",
  54080. extra: 1027/932,
  54081. bottom: 16/1043
  54082. }
  54083. },
  54084. },
  54085. [
  54086. {
  54087. name: "Normal",
  54088. height: math.unit(3, "feet"),
  54089. default: true
  54090. },
  54091. ]
  54092. ))
  54093. characterMakers.push(() => makeCharacter(
  54094. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54095. {
  54096. front: {
  54097. height: math.unit(167, "cm"),
  54098. name: "Front",
  54099. image: {
  54100. source: "./media/characters/blue-otter/front.svg",
  54101. extra: 1951/1920,
  54102. bottom: 31/1982
  54103. }
  54104. },
  54105. },
  54106. [
  54107. {
  54108. name: "Otter-Sized",
  54109. height: math.unit(100, "cm")
  54110. },
  54111. {
  54112. name: "Normal",
  54113. height: math.unit(167, "cm"),
  54114. default: true
  54115. },
  54116. ]
  54117. ))
  54118. characterMakers.push(() => makeCharacter(
  54119. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54120. {
  54121. front: {
  54122. height: math.unit(4 + 4/12, "feet"),
  54123. name: "Front",
  54124. image: {
  54125. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54126. extra: 1072/1067,
  54127. bottom: 117/1189
  54128. }
  54129. },
  54130. back: {
  54131. height: math.unit(4 + 4/12, "feet"),
  54132. name: "Back",
  54133. image: {
  54134. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54135. extra: 1135/1129,
  54136. bottom: 57/1192
  54137. }
  54138. },
  54139. head: {
  54140. height: math.unit(1.77, "feet"),
  54141. name: "Head",
  54142. image: {
  54143. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54144. }
  54145. },
  54146. },
  54147. [
  54148. {
  54149. name: "Normal",
  54150. height: math.unit(4 + 4/12, "feet"),
  54151. default: true
  54152. },
  54153. ]
  54154. ))
  54155. characterMakers.push(() => makeCharacter(
  54156. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54157. {
  54158. front: {
  54159. height: math.unit(2, "inches"),
  54160. name: "Front",
  54161. image: {
  54162. source: "./media/characters/carley-hartford/front.svg",
  54163. extra: 1035/988,
  54164. bottom: 23/1058
  54165. }
  54166. },
  54167. back: {
  54168. height: math.unit(2, "inches"),
  54169. name: "Back",
  54170. image: {
  54171. source: "./media/characters/carley-hartford/back.svg",
  54172. extra: 1035/988,
  54173. bottom: 23/1058
  54174. }
  54175. },
  54176. dressed: {
  54177. height: math.unit(2, "inches"),
  54178. name: "Dressed",
  54179. image: {
  54180. source: "./media/characters/carley-hartford/dressed.svg",
  54181. extra: 651/620,
  54182. bottom: 0/651
  54183. }
  54184. },
  54185. },
  54186. [
  54187. {
  54188. name: "Micro",
  54189. height: math.unit(2, "inches"),
  54190. default: true
  54191. },
  54192. {
  54193. name: "Macro",
  54194. height: math.unit(6 + 3/12, "feet")
  54195. },
  54196. ]
  54197. ))
  54198. characterMakers.push(() => makeCharacter(
  54199. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54200. {
  54201. front: {
  54202. height: math.unit(2 + 3/12, "feet"),
  54203. weight: math.unit(15 + 7/16, "lb"),
  54204. name: "Front",
  54205. image: {
  54206. source: "./media/characters/duke/front.svg",
  54207. extra: 910/815,
  54208. bottom: 30/940
  54209. }
  54210. },
  54211. },
  54212. [
  54213. {
  54214. name: "Normal",
  54215. height: math.unit(2 + 3/12, "feet"),
  54216. default: true
  54217. },
  54218. ]
  54219. ))
  54220. characterMakers.push(() => makeCharacter(
  54221. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54222. {
  54223. front: {
  54224. height: math.unit(5 + 4/12, "feet"),
  54225. weight: math.unit(156, "lb"),
  54226. name: "Front",
  54227. image: {
  54228. source: "./media/characters/dein/front.svg",
  54229. extra: 855/815,
  54230. bottom: 48/903
  54231. }
  54232. },
  54233. side: {
  54234. height: math.unit(5 + 4/12, "feet"),
  54235. weight: math.unit(156, "lb"),
  54236. name: "side",
  54237. image: {
  54238. source: "./media/characters/dein/side.svg",
  54239. extra: 846/803,
  54240. bottom: 25/871
  54241. }
  54242. },
  54243. maw: {
  54244. height: math.unit(1.45, "feet"),
  54245. name: "Maw",
  54246. image: {
  54247. source: "./media/characters/dein/maw.svg"
  54248. }
  54249. },
  54250. },
  54251. [
  54252. {
  54253. name: "Ferret Sized",
  54254. height: math.unit(2 + 5/12, "feet")
  54255. },
  54256. {
  54257. name: "Normal",
  54258. height: math.unit(5 + 4/12, "feet"),
  54259. default: true
  54260. },
  54261. ]
  54262. ))
  54263. characterMakers.push(() => makeCharacter(
  54264. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54265. {
  54266. front: {
  54267. height: math.unit(84 + 8/12, "feet"),
  54268. weight: math.unit(942180, "lb"),
  54269. name: "Front",
  54270. image: {
  54271. source: "./media/characters/daurine-arima/front.svg",
  54272. extra: 1989/1782,
  54273. bottom: 37/2026
  54274. }
  54275. },
  54276. side: {
  54277. height: math.unit(84 + 8/12, "feet"),
  54278. weight: math.unit(942180, "lb"),
  54279. name: "Side",
  54280. image: {
  54281. source: "./media/characters/daurine-arima/side.svg",
  54282. extra: 1997/1790,
  54283. bottom: 21/2018
  54284. }
  54285. },
  54286. back: {
  54287. height: math.unit(84 + 8/12, "feet"),
  54288. weight: math.unit(942180, "lb"),
  54289. name: "Back",
  54290. image: {
  54291. source: "./media/characters/daurine-arima/back.svg",
  54292. extra: 1992/1800,
  54293. bottom: 12/2004
  54294. }
  54295. },
  54296. head: {
  54297. height: math.unit(15.5, "feet"),
  54298. name: "Head",
  54299. image: {
  54300. source: "./media/characters/daurine-arima/head.svg"
  54301. }
  54302. },
  54303. headAlt: {
  54304. height: math.unit(19.19, "feet"),
  54305. name: "Head (Alt)",
  54306. image: {
  54307. source: "./media/characters/daurine-arima/head-alt.svg"
  54308. }
  54309. },
  54310. },
  54311. [
  54312. {
  54313. name: "Minimum height",
  54314. height: math.unit(8 + 10/12, "feet")
  54315. },
  54316. {
  54317. name: "Comfort height",
  54318. height: math.unit(19 + 6 /12, "feet")
  54319. },
  54320. {
  54321. name: "\"Normal\" height",
  54322. height: math.unit(28 + 10/12, "feet")
  54323. },
  54324. {
  54325. name: "Base height",
  54326. height: math.unit(84 + 8/12, "feet"),
  54327. default: true
  54328. },
  54329. {
  54330. name: "Mini-macro",
  54331. height: math.unit(2360, "feet")
  54332. },
  54333. {
  54334. name: "Macro",
  54335. height: math.unit(10, "miles")
  54336. },
  54337. {
  54338. name: "Goddess",
  54339. height: math.unit(9.99e40, "yottameters")
  54340. },
  54341. ]
  54342. ))
  54343. characterMakers.push(() => makeCharacter(
  54344. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54345. {
  54346. front: {
  54347. height: math.unit(2.3, "meters"),
  54348. name: "Front",
  54349. image: {
  54350. source: "./media/characters/cilenomon/front.svg",
  54351. extra: 1963/1778,
  54352. bottom: 54/2017
  54353. }
  54354. },
  54355. },
  54356. [
  54357. {
  54358. name: "Normal",
  54359. height: math.unit(2.3, "meters"),
  54360. default: true
  54361. },
  54362. {
  54363. name: "Big",
  54364. height: math.unit(5, "meters")
  54365. },
  54366. {
  54367. name: "Macro",
  54368. height: math.unit(30, "meters")
  54369. },
  54370. {
  54371. name: "True",
  54372. height: math.unit(1, "universe")
  54373. },
  54374. ]
  54375. ))
  54376. characterMakers.push(() => makeCharacter(
  54377. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54378. {
  54379. front: {
  54380. height: math.unit(5, "feet"),
  54381. name: "Front",
  54382. image: {
  54383. source: "./media/characters/sen-mink/front.svg",
  54384. extra: 1727/1675,
  54385. bottom: 35/1762
  54386. }
  54387. },
  54388. },
  54389. [
  54390. {
  54391. name: "Normal",
  54392. height: math.unit(5, "feet"),
  54393. default: true
  54394. },
  54395. ]
  54396. ))
  54397. characterMakers.push(() => makeCharacter(
  54398. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54399. {
  54400. front: {
  54401. height: math.unit(5.42999, "feet"),
  54402. weight: math.unit(100, "lb"),
  54403. name: "Front",
  54404. image: {
  54405. source: "./media/characters/ophois/front.svg",
  54406. extra: 1429/1286,
  54407. bottom: 60/1489
  54408. }
  54409. },
  54410. },
  54411. [
  54412. {
  54413. name: "Normal",
  54414. height: math.unit(5.42999, "feet"),
  54415. default: true
  54416. },
  54417. ]
  54418. ))
  54419. characterMakers.push(() => makeCharacter(
  54420. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54421. {
  54422. front: {
  54423. height: math.unit(2, "meters"),
  54424. name: "Front",
  54425. image: {
  54426. source: "./media/characters/riley/front.svg",
  54427. extra: 1779/1754,
  54428. bottom: 139/1918
  54429. }
  54430. },
  54431. },
  54432. [
  54433. {
  54434. name: "Normal",
  54435. height: math.unit(2, "meters"),
  54436. default: true
  54437. },
  54438. ]
  54439. ))
  54440. characterMakers.push(() => makeCharacter(
  54441. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54442. {
  54443. front: {
  54444. height: math.unit(6 + 2/12, "feet"),
  54445. weight: math.unit(195, "lb"),
  54446. preyCapacity: math.unit(6, "people"),
  54447. name: "Front",
  54448. image: {
  54449. source: "./media/characters/shuken-flash/front.svg",
  54450. extra: 1905/1739,
  54451. bottom: 65/1970
  54452. }
  54453. },
  54454. back: {
  54455. height: math.unit(6 + 2/12, "feet"),
  54456. weight: math.unit(195, "lb"),
  54457. preyCapacity: math.unit(6, "people"),
  54458. name: "Back",
  54459. image: {
  54460. source: "./media/characters/shuken-flash/back.svg",
  54461. extra: 1912/1751,
  54462. bottom: 13/1925
  54463. }
  54464. },
  54465. },
  54466. [
  54467. {
  54468. name: "Normal",
  54469. height: math.unit(6 + 2/12, "feet"),
  54470. default: true
  54471. },
  54472. ]
  54473. ))
  54474. characterMakers.push(() => makeCharacter(
  54475. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54476. {
  54477. front: {
  54478. height: math.unit(5 + 9/12, "feet"),
  54479. weight: math.unit(150, "lb"),
  54480. name: "Front",
  54481. image: {
  54482. source: "./media/characters/plat/front.svg",
  54483. extra: 1816/1703,
  54484. bottom: 43/1859
  54485. }
  54486. },
  54487. side: {
  54488. height: math.unit(5 + 9/12, "feet"),
  54489. weight: math.unit(300, "lb"),
  54490. name: "Side",
  54491. image: {
  54492. source: "./media/characters/plat/side.svg",
  54493. extra: 1824/1699,
  54494. bottom: 18/1842
  54495. }
  54496. },
  54497. },
  54498. [
  54499. {
  54500. name: "Normal",
  54501. height: math.unit(5 + 9/12, "feet"),
  54502. default: true
  54503. },
  54504. ]
  54505. ))
  54506. characterMakers.push(() => makeCharacter(
  54507. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54508. {
  54509. front: {
  54510. height: math.unit(9, "feet"),
  54511. weight: math.unit(1800, "lb"),
  54512. name: "Front",
  54513. image: {
  54514. source: "./media/characters/elaine/front.svg",
  54515. extra: 1833/1354,
  54516. bottom: 25/1858
  54517. }
  54518. },
  54519. back: {
  54520. height: math.unit(8.8, "feet"),
  54521. weight: math.unit(1800, "lb"),
  54522. name: "Back",
  54523. image: {
  54524. source: "./media/characters/elaine/back.svg",
  54525. extra: 1641/1233,
  54526. bottom: 53/1694
  54527. }
  54528. },
  54529. },
  54530. [
  54531. {
  54532. name: "Normal",
  54533. height: math.unit(9, "feet"),
  54534. default: true
  54535. },
  54536. ]
  54537. ))
  54538. characterMakers.push(() => makeCharacter(
  54539. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54540. {
  54541. front: {
  54542. height: math.unit(17 + 9/12, "feet"),
  54543. weight: math.unit(8000, "lb"),
  54544. name: "Front",
  54545. image: {
  54546. source: "./media/characters/vera-raven/front.svg",
  54547. extra: 1457/1412,
  54548. bottom: 121/1578
  54549. }
  54550. },
  54551. side: {
  54552. height: math.unit(17 + 9/12, "feet"),
  54553. weight: math.unit(8000, "lb"),
  54554. name: "Side",
  54555. image: {
  54556. source: "./media/characters/vera-raven/side.svg",
  54557. extra: 1510/1464,
  54558. bottom: 54/1564
  54559. }
  54560. },
  54561. },
  54562. [
  54563. {
  54564. name: "Normal",
  54565. height: math.unit(17 + 9/12, "feet"),
  54566. default: true
  54567. },
  54568. ]
  54569. ))
  54570. characterMakers.push(() => makeCharacter(
  54571. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54572. {
  54573. dressed: {
  54574. height: math.unit(6 + 9/12, "feet"),
  54575. name: "Dressed",
  54576. image: {
  54577. source: "./media/characters/nakisha/dressed.svg",
  54578. extra: 1909/1757,
  54579. bottom: 48/1957
  54580. }
  54581. },
  54582. nude: {
  54583. height: math.unit(6 + 9/12, "feet"),
  54584. name: "Nude",
  54585. image: {
  54586. source: "./media/characters/nakisha/nude.svg",
  54587. extra: 1917/1765,
  54588. bottom: 34/1951
  54589. }
  54590. },
  54591. },
  54592. [
  54593. {
  54594. name: "Normal",
  54595. height: math.unit(6 + 9/12, "feet"),
  54596. default: true
  54597. },
  54598. ]
  54599. ))
  54600. characterMakers.push(() => makeCharacter(
  54601. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54602. {
  54603. front: {
  54604. height: math.unit(87, "meters"),
  54605. name: "Front",
  54606. image: {
  54607. source: "./media/characters/serafin/front.svg",
  54608. extra: 1919/1776,
  54609. bottom: 65/1984
  54610. }
  54611. },
  54612. },
  54613. [
  54614. {
  54615. name: "Normal",
  54616. height: math.unit(87, "meters"),
  54617. default: true
  54618. },
  54619. ]
  54620. ))
  54621. characterMakers.push(() => makeCharacter(
  54622. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54623. {
  54624. front: {
  54625. height: math.unit(6, "feet"),
  54626. weight: math.unit(200, "lb"),
  54627. name: "Front",
  54628. image: {
  54629. source: "./media/characters/poptart/front.svg",
  54630. extra: 615/583,
  54631. bottom: 23/638
  54632. }
  54633. },
  54634. back: {
  54635. height: math.unit(6, "feet"),
  54636. weight: math.unit(200, "lb"),
  54637. name: "Back",
  54638. image: {
  54639. source: "./media/characters/poptart/back.svg",
  54640. extra: 617/584,
  54641. bottom: 22/639
  54642. }
  54643. },
  54644. frontNsfw: {
  54645. height: math.unit(6, "feet"),
  54646. weight: math.unit(200, "lb"),
  54647. name: "Front (NSFW)",
  54648. image: {
  54649. source: "./media/characters/poptart/front-nsfw.svg",
  54650. extra: 615/583,
  54651. bottom: 23/638
  54652. }
  54653. },
  54654. backNsfw: {
  54655. height: math.unit(6, "feet"),
  54656. weight: math.unit(200, "lb"),
  54657. name: "Back (NSFW)",
  54658. image: {
  54659. source: "./media/characters/poptart/back-nsfw.svg",
  54660. extra: 617/584,
  54661. bottom: 22/639
  54662. }
  54663. },
  54664. hand: {
  54665. height: math.unit(1.14, "feet"),
  54666. name: "Hand",
  54667. image: {
  54668. source: "./media/characters/poptart/hand.svg"
  54669. }
  54670. },
  54671. foot: {
  54672. height: math.unit(1.5, "feet"),
  54673. name: "Foot",
  54674. image: {
  54675. source: "./media/characters/poptart/foot.svg"
  54676. }
  54677. },
  54678. },
  54679. [
  54680. {
  54681. name: "Normal",
  54682. height: math.unit(6, "feet"),
  54683. default: true
  54684. },
  54685. {
  54686. name: "Grande",
  54687. height: math.unit(350, "feet")
  54688. },
  54689. {
  54690. name: "Massif",
  54691. height: math.unit(967, "feet")
  54692. },
  54693. ]
  54694. ))
  54695. characterMakers.push(() => makeCharacter(
  54696. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54697. {
  54698. hyenaSide: {
  54699. height: math.unit(120, "cm"),
  54700. weight: math.unit(120, "lb"),
  54701. name: "Side",
  54702. image: {
  54703. source: "./media/characters/trance/hyena-side.svg",
  54704. extra: 998/904,
  54705. bottom: 76/1074
  54706. }
  54707. },
  54708. },
  54709. [
  54710. {
  54711. name: "Normal",
  54712. height: math.unit(120, "cm"),
  54713. default: true
  54714. },
  54715. {
  54716. name: "Dire",
  54717. height: math.unit(230, "cm")
  54718. },
  54719. {
  54720. name: "Macro",
  54721. height: math.unit(37, "feet")
  54722. },
  54723. ]
  54724. ))
  54725. characterMakers.push(() => makeCharacter(
  54726. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54727. {
  54728. front: {
  54729. height: math.unit(6 + 3/12, "feet"),
  54730. name: "Front",
  54731. image: {
  54732. source: "./media/characters/michael-berretta/front.svg",
  54733. extra: 515/494,
  54734. bottom: 20/535
  54735. }
  54736. },
  54737. back: {
  54738. height: math.unit(6 + 3/12, "feet"),
  54739. name: "Back",
  54740. image: {
  54741. source: "./media/characters/michael-berretta/back.svg",
  54742. extra: 520/497,
  54743. bottom: 21/541
  54744. }
  54745. },
  54746. frontNsfw: {
  54747. height: math.unit(6 + 3/12, "feet"),
  54748. name: "Front (NSFW)",
  54749. image: {
  54750. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54751. extra: 515/494,
  54752. bottom: 20/535
  54753. }
  54754. },
  54755. dick: {
  54756. height: math.unit(1, "feet"),
  54757. name: "Dick",
  54758. image: {
  54759. source: "./media/characters/michael-berretta/dick.svg"
  54760. }
  54761. },
  54762. },
  54763. [
  54764. {
  54765. name: "Normal",
  54766. height: math.unit(6 + 3/12, "feet"),
  54767. default: true
  54768. },
  54769. {
  54770. name: "Big",
  54771. height: math.unit(12, "feet")
  54772. },
  54773. {
  54774. name: "Macro",
  54775. height: math.unit(187.5, "feet")
  54776. },
  54777. ]
  54778. ))
  54779. characterMakers.push(() => makeCharacter(
  54780. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54781. {
  54782. front: {
  54783. height: math.unit(9 + 9/12, "feet"),
  54784. weight: math.unit(1244, "lb"),
  54785. name: "Front",
  54786. image: {
  54787. source: "./media/characters/stella-edgecomb/front.svg",
  54788. extra: 1835/1706,
  54789. bottom: 49/1884
  54790. }
  54791. },
  54792. pen: {
  54793. height: math.unit(0.95, "feet"),
  54794. name: "Pen",
  54795. image: {
  54796. source: "./media/characters/stella-edgecomb/pen.svg"
  54797. }
  54798. },
  54799. },
  54800. [
  54801. {
  54802. name: "Cozy Bear",
  54803. height: math.unit(0.5, "inches")
  54804. },
  54805. {
  54806. name: "Normal",
  54807. height: math.unit(9 + 9/12, "feet"),
  54808. default: true
  54809. },
  54810. {
  54811. name: "Giga Bear",
  54812. height: math.unit(1, "mile")
  54813. },
  54814. {
  54815. name: "Great Bear",
  54816. height: math.unit(53, "miles")
  54817. },
  54818. {
  54819. name: "Goddess Bear",
  54820. height: math.unit(40000, "miles")
  54821. },
  54822. {
  54823. name: "Sun Bear",
  54824. height: math.unit(900000, "miles")
  54825. },
  54826. ]
  54827. ))
  54828. characterMakers.push(() => makeCharacter(
  54829. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54830. {
  54831. anthroFront: {
  54832. height: math.unit(556, "cm"),
  54833. weight: math.unit(2650, "kg"),
  54834. preyCapacity: math.unit(3, "people"),
  54835. name: "Front",
  54836. image: {
  54837. source: "./media/characters/ash´iika/front.svg",
  54838. extra: 710/673,
  54839. bottom: 15/725
  54840. },
  54841. form: "anthro",
  54842. default: true
  54843. },
  54844. anthroSide: {
  54845. height: math.unit(556, "cm"),
  54846. weight: math.unit(2650, "kg"),
  54847. preyCapacity: math.unit(3, "people"),
  54848. name: "Side",
  54849. image: {
  54850. source: "./media/characters/ash´iika/side.svg",
  54851. extra: 696/676,
  54852. bottom: 13/709
  54853. },
  54854. form: "anthro"
  54855. },
  54856. anthroDressed: {
  54857. height: math.unit(556, "cm"),
  54858. weight: math.unit(2650, "kg"),
  54859. preyCapacity: math.unit(3, "people"),
  54860. name: "Dressed",
  54861. image: {
  54862. source: "./media/characters/ash´iika/dressed.svg",
  54863. extra: 710/673,
  54864. bottom: 15/725
  54865. },
  54866. form: "anthro"
  54867. },
  54868. anthroHead: {
  54869. height: math.unit(3.5, "feet"),
  54870. name: "Head",
  54871. image: {
  54872. source: "./media/characters/ash´iika/head.svg",
  54873. extra: 348/291,
  54874. bottom: 45/393
  54875. },
  54876. form: "anthro"
  54877. },
  54878. feralSide: {
  54879. height: math.unit(870, "cm"),
  54880. weight: math.unit(17500, "kg"),
  54881. preyCapacity: math.unit(15, "people"),
  54882. name: "Side",
  54883. image: {
  54884. source: "./media/characters/ash´iika/feral.svg",
  54885. extra: 595/199,
  54886. bottom: 7/602
  54887. },
  54888. form: "feral",
  54889. default: true,
  54890. },
  54891. },
  54892. [
  54893. {
  54894. name: "Normal",
  54895. height: math.unit(556, "cm"),
  54896. default: true,
  54897. form: "anthro"
  54898. },
  54899. {
  54900. name: "Macro",
  54901. height: math.unit(88, "meters"),
  54902. form: "anthro"
  54903. },
  54904. {
  54905. name: "Normal",
  54906. height: math.unit(870, "cm"),
  54907. default: true,
  54908. form: "feral"
  54909. },
  54910. {
  54911. name: "Large",
  54912. height: math.unit(25, "meters"),
  54913. form: "feral"
  54914. },
  54915. ],
  54916. {
  54917. "anthro": {
  54918. name: "Anthro",
  54919. default: true
  54920. },
  54921. "feral": {
  54922. name: "Feral",
  54923. },
  54924. }
  54925. ))
  54926. characterMakers.push(() => makeCharacter(
  54927. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54928. {
  54929. front: {
  54930. height: math.unit(10, "feet"),
  54931. weight: math.unit(800, "lb"),
  54932. name: "Front",
  54933. image: {
  54934. source: "./media/characters/yen/front.svg",
  54935. extra: 443/411,
  54936. bottom: 6/449
  54937. }
  54938. },
  54939. sleeping: {
  54940. height: math.unit(10, "feet"),
  54941. weight: math.unit(800, "lb"),
  54942. name: "Sleeping",
  54943. image: {
  54944. source: "./media/characters/yen/sleeping.svg",
  54945. extra: 470/422,
  54946. bottom: 0/470
  54947. }
  54948. },
  54949. head: {
  54950. height: math.unit(2.2, "feet"),
  54951. name: "Head",
  54952. image: {
  54953. source: "./media/characters/yen/head.svg"
  54954. }
  54955. },
  54956. headAlt: {
  54957. height: math.unit(2.1, "feet"),
  54958. name: "Head (Alt)",
  54959. image: {
  54960. source: "./media/characters/yen/head-alt.svg"
  54961. }
  54962. },
  54963. },
  54964. [
  54965. {
  54966. name: "Normal",
  54967. height: math.unit(10, "feet"),
  54968. default: true
  54969. },
  54970. ]
  54971. ))
  54972. characterMakers.push(() => makeCharacter(
  54973. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54974. {
  54975. front: {
  54976. height: math.unit(12, "feet"),
  54977. name: "Front",
  54978. image: {
  54979. source: "./media/characters/citra/front.svg",
  54980. extra: 1950/1710,
  54981. bottom: 47/1997
  54982. }
  54983. },
  54984. },
  54985. [
  54986. {
  54987. name: "Normal",
  54988. height: math.unit(12, "feet"),
  54989. default: true
  54990. },
  54991. ]
  54992. ))
  54993. characterMakers.push(() => makeCharacter(
  54994. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54995. {
  54996. side: {
  54997. height: math.unit(7 + 10/12, "feet"),
  54998. name: "Side",
  54999. image: {
  55000. source: "./media/characters/sholstim/side.svg",
  55001. extra: 786/682,
  55002. bottom: 40/826
  55003. }
  55004. },
  55005. },
  55006. [
  55007. {
  55008. name: "Normal",
  55009. height: math.unit(7 + 10/12, "feet"),
  55010. default: true
  55011. },
  55012. ]
  55013. ))
  55014. characterMakers.push(() => makeCharacter(
  55015. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55016. {
  55017. front: {
  55018. height: math.unit(3.10, "meters"),
  55019. name: "Front",
  55020. image: {
  55021. source: "./media/characters/aggyn/front.svg",
  55022. extra: 1188/963,
  55023. bottom: 24/1212
  55024. }
  55025. },
  55026. },
  55027. [
  55028. {
  55029. name: "Normal",
  55030. height: math.unit(3.10, "meters"),
  55031. default: true
  55032. },
  55033. ]
  55034. ))
  55035. characterMakers.push(() => makeCharacter(
  55036. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55037. {
  55038. front: {
  55039. height: math.unit(7 + 5/12, "feet"),
  55040. weight: math.unit(687, "lb"),
  55041. name: "Front",
  55042. image: {
  55043. source: "./media/characters/alsandair-hergenroether/front.svg",
  55044. extra: 1251/1186,
  55045. bottom: 75/1326
  55046. }
  55047. },
  55048. back: {
  55049. height: math.unit(7 + 5/12, "feet"),
  55050. weight: math.unit(687, "lb"),
  55051. name: "Back",
  55052. image: {
  55053. source: "./media/characters/alsandair-hergenroether/back.svg",
  55054. extra: 1290/1229,
  55055. bottom: 17/1307
  55056. }
  55057. },
  55058. },
  55059. [
  55060. {
  55061. name: "Max Compression",
  55062. height: math.unit(7 + 5/12, "feet"),
  55063. default: true
  55064. },
  55065. {
  55066. name: "\"Normal\"",
  55067. height: math.unit(2, "universes")
  55068. },
  55069. ]
  55070. ))
  55071. characterMakers.push(() => makeCharacter(
  55072. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55073. {
  55074. front: {
  55075. height: math.unit(4 + 1/12, "feet"),
  55076. weight: math.unit(92, "lb"),
  55077. name: "Front",
  55078. image: {
  55079. source: "./media/characters/ie/front.svg",
  55080. extra: 1585/1352,
  55081. bottom: 91/1676
  55082. }
  55083. },
  55084. },
  55085. [
  55086. {
  55087. name: "Normal",
  55088. height: math.unit(4 + 1/12, "feet"),
  55089. default: true
  55090. },
  55091. ]
  55092. ))
  55093. characterMakers.push(() => makeCharacter(
  55094. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55095. {
  55096. anthro: {
  55097. height: math.unit(6, "feet"),
  55098. weight: math.unit(150, "lb"),
  55099. name: "Front",
  55100. image: {
  55101. source: "./media/characters/willow/anthro.svg",
  55102. extra: 1073/986,
  55103. bottom: 34/1107
  55104. },
  55105. form: "anthro",
  55106. default: true
  55107. },
  55108. taur: {
  55109. height: math.unit(6, "feet"),
  55110. weight: math.unit(150, "lb"),
  55111. name: "Side",
  55112. image: {
  55113. source: "./media/characters/willow/taur.svg",
  55114. extra: 647/512,
  55115. bottom: 136/783
  55116. },
  55117. form: "taur",
  55118. default: true
  55119. },
  55120. },
  55121. [
  55122. {
  55123. name: "Humanoid",
  55124. height: math.unit(2.7, "meters"),
  55125. form: "anthro"
  55126. },
  55127. {
  55128. name: "Normal",
  55129. height: math.unit(9, "meters"),
  55130. form: "anthro",
  55131. default: true
  55132. },
  55133. {
  55134. name: "Humanoid",
  55135. height: math.unit(2.1, "meters"),
  55136. form: "taur"
  55137. },
  55138. {
  55139. name: "Normal",
  55140. height: math.unit(7, "meters"),
  55141. form: "taur",
  55142. default: true
  55143. },
  55144. ],
  55145. {
  55146. "anthro": {
  55147. name: "Anthro",
  55148. default: true
  55149. },
  55150. "taur": {
  55151. name: "Taur",
  55152. },
  55153. }
  55154. ))
  55155. characterMakers.push(() => makeCharacter(
  55156. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55157. {
  55158. front: {
  55159. height: math.unit(2 + 5/12, "feet"),
  55160. name: "Front",
  55161. image: {
  55162. source: "./media/characters/kyan/front.svg",
  55163. extra: 460/334,
  55164. bottom: 23/483
  55165. },
  55166. extraAttributes: {
  55167. "toeLength": {
  55168. name: "Toe Length",
  55169. power: 1,
  55170. type: "length",
  55171. base: math.unit(7, "cm")
  55172. },
  55173. "toeclawLength": {
  55174. name: "Toeclaw Length",
  55175. power: 1,
  55176. type: "length",
  55177. base: math.unit(4.7, "cm")
  55178. },
  55179. "earHeight": {
  55180. name: "Ear Height",
  55181. power: 1,
  55182. type: "length",
  55183. base: math.unit(14.1, "cm")
  55184. },
  55185. }
  55186. },
  55187. paws: {
  55188. height: math.unit(0.45, "feet"),
  55189. name: "Paws",
  55190. image: {
  55191. source: "./media/characters/kyan/paws.svg",
  55192. extra: 581/581,
  55193. bottom: 114/695
  55194. }
  55195. },
  55196. },
  55197. [
  55198. {
  55199. name: "Normal",
  55200. height: math.unit(2 + 5/12, "feet"),
  55201. default: true
  55202. },
  55203. ]
  55204. ))
  55205. characterMakers.push(() => makeCharacter(
  55206. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55207. {
  55208. front: {
  55209. height: math.unit(2 + 2/3, "feet"),
  55210. name: "Front",
  55211. image: {
  55212. source: "./media/characters/xazzon/front.svg",
  55213. extra: 1109/984,
  55214. bottom: 42/1151
  55215. }
  55216. },
  55217. back: {
  55218. height: math.unit(2 + 2/3, "feet"),
  55219. name: "Back",
  55220. image: {
  55221. source: "./media/characters/xazzon/back.svg",
  55222. extra: 1095/971,
  55223. bottom: 23/1118
  55224. }
  55225. },
  55226. },
  55227. [
  55228. {
  55229. name: "Normal",
  55230. height: math.unit(2 + 2/3, "feet"),
  55231. default: true
  55232. },
  55233. ]
  55234. ))
  55235. characterMakers.push(() => makeCharacter(
  55236. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55237. {
  55238. front: {
  55239. height: math.unit(8, "feet"),
  55240. weight: math.unit(300, "lb"),
  55241. name: "Front",
  55242. image: {
  55243. source: "./media/characters/khyla-shadowsong/front.svg",
  55244. extra: 861/798,
  55245. bottom: 32/893
  55246. }
  55247. },
  55248. side: {
  55249. height: math.unit(8, "feet"),
  55250. weight: math.unit(300, "lb"),
  55251. name: "Side",
  55252. image: {
  55253. source: "./media/characters/khyla-shadowsong/side.svg",
  55254. extra: 790/750,
  55255. bottom: 87/877
  55256. }
  55257. },
  55258. back: {
  55259. height: math.unit(8, "feet"),
  55260. weight: math.unit(300, "lb"),
  55261. name: "Back",
  55262. image: {
  55263. source: "./media/characters/khyla-shadowsong/back.svg",
  55264. extra: 855/808,
  55265. bottom: 14/869
  55266. }
  55267. },
  55268. head: {
  55269. height: math.unit(2.7, "feet"),
  55270. name: "Head",
  55271. image: {
  55272. source: "./media/characters/khyla-shadowsong/head.svg"
  55273. }
  55274. },
  55275. },
  55276. [
  55277. {
  55278. name: "Micro",
  55279. height: math.unit(6, "inches")
  55280. },
  55281. {
  55282. name: "Normal",
  55283. height: math.unit(8, "feet"),
  55284. default: true
  55285. },
  55286. ]
  55287. ))
  55288. characterMakers.push(() => makeCharacter(
  55289. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55290. {
  55291. hyperFront: {
  55292. height: math.unit(9 + 4/12, "feet"),
  55293. weight: math.unit(2000, "lb"),
  55294. name: "Front",
  55295. image: {
  55296. source: "./media/characters/tiden/hyper-front.svg",
  55297. extra: 400/382,
  55298. bottom: 6/406
  55299. },
  55300. form: "hyper",
  55301. },
  55302. regularFront: {
  55303. height: math.unit(7 + 10/12, "feet"),
  55304. weight: math.unit(470, "lb"),
  55305. name: "Front",
  55306. image: {
  55307. source: "./media/characters/tiden/regular-front.svg",
  55308. extra: 468/442,
  55309. bottom: 6/474
  55310. },
  55311. form: "regular",
  55312. },
  55313. },
  55314. [
  55315. {
  55316. name: "Normal",
  55317. height: math.unit(9 + 4/12, "feet"),
  55318. default: true,
  55319. form: "hyper"
  55320. },
  55321. {
  55322. name: "Normal",
  55323. height: math.unit(7 + 10/12, "feet"),
  55324. default: true,
  55325. form: "regular"
  55326. },
  55327. ],
  55328. {
  55329. "hyper": {
  55330. name: "Hyper",
  55331. default: true
  55332. },
  55333. "regular": {
  55334. name: "Regular",
  55335. },
  55336. }
  55337. ))
  55338. characterMakers.push(() => makeCharacter(
  55339. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55340. {
  55341. side: {
  55342. height: math.unit(6, "feet"),
  55343. weight: math.unit(150, "lb"),
  55344. name: "Side",
  55345. image: {
  55346. source: "./media/characters/jason-crowe/side.svg",
  55347. extra: 1771/766,
  55348. bottom: 219/1990
  55349. }
  55350. },
  55351. },
  55352. [
  55353. {
  55354. name: "Pocket Gryphon",
  55355. height: math.unit(6, "cm")
  55356. },
  55357. {
  55358. name: "Raven",
  55359. height: math.unit(60, "cm")
  55360. },
  55361. {
  55362. name: "Normal",
  55363. height: math.unit(1, "meter"),
  55364. default: true
  55365. },
  55366. ]
  55367. ))
  55368. characterMakers.push(() => makeCharacter(
  55369. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55370. {
  55371. front: {
  55372. height: math.unit(9 + 6/12, "feet"),
  55373. weight: math.unit(1100, "lb"),
  55374. name: "Front",
  55375. image: {
  55376. source: "./media/characters/django/front.svg",
  55377. extra: 1231/1136,
  55378. bottom: 34/1265
  55379. }
  55380. },
  55381. side: {
  55382. height: math.unit(9 + 6/12, "feet"),
  55383. weight: math.unit(1100, "lb"),
  55384. name: "Side",
  55385. image: {
  55386. source: "./media/characters/django/side.svg",
  55387. extra: 1267/1174,
  55388. bottom: 9/1276
  55389. }
  55390. },
  55391. },
  55392. [
  55393. {
  55394. name: "Normal",
  55395. height: math.unit(9 + 6/12, "feet"),
  55396. default: true
  55397. },
  55398. {
  55399. name: "Macro 1",
  55400. height: math.unit(50, "feet")
  55401. },
  55402. {
  55403. name: "Macro 2",
  55404. height: math.unit(500, "feet")
  55405. },
  55406. {
  55407. name: "Mega Macro",
  55408. height: math.unit(5300, "feet")
  55409. },
  55410. ]
  55411. ))
  55412. characterMakers.push(() => makeCharacter(
  55413. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55414. {
  55415. frontSfw: {
  55416. height: math.unit(120, "cm"),
  55417. weight: math.unit(15, "kg"),
  55418. name: "Front (SFW)",
  55419. image: {
  55420. source: "./media/characters/eri/front-sfw.svg",
  55421. extra: 1014/939,
  55422. bottom: 37/1051
  55423. },
  55424. form: "moth",
  55425. },
  55426. frontNsfw: {
  55427. height: math.unit(120, "cm"),
  55428. weight: math.unit(15, "kg"),
  55429. name: "Front (NSFW)",
  55430. image: {
  55431. source: "./media/characters/eri/front-nsfw.svg",
  55432. extra: 1014/939,
  55433. bottom: 37/1051
  55434. },
  55435. form: "moth",
  55436. default: true
  55437. },
  55438. egg: {
  55439. height: math.unit(10, "cm"),
  55440. name: "Egg",
  55441. image: {
  55442. source: "./media/characters/eri/egg.svg"
  55443. },
  55444. form: "egg",
  55445. default: true
  55446. },
  55447. },
  55448. [
  55449. {
  55450. name: "Normal",
  55451. height: math.unit(120, "cm"),
  55452. default: true,
  55453. form: "moth"
  55454. },
  55455. {
  55456. name: "Normal",
  55457. height: math.unit(10, "cm"),
  55458. default: true,
  55459. form: "egg"
  55460. },
  55461. ],
  55462. {
  55463. "moth": {
  55464. name: "Moth",
  55465. default: true
  55466. },
  55467. "egg": {
  55468. name: "Egg",
  55469. },
  55470. }
  55471. ))
  55472. characterMakers.push(() => makeCharacter(
  55473. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55474. {
  55475. front: {
  55476. height: math.unit(200, "feet"),
  55477. name: "Front",
  55478. image: {
  55479. source: "./media/characters/bishop-dowser/front.svg",
  55480. extra: 933/868,
  55481. bottom: 106/1039
  55482. }
  55483. },
  55484. },
  55485. [
  55486. {
  55487. name: "Giant",
  55488. height: math.unit(200, "feet"),
  55489. default: true
  55490. },
  55491. ]
  55492. ))
  55493. characterMakers.push(() => makeCharacter(
  55494. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55495. {
  55496. front: {
  55497. height: math.unit(2, "meters"),
  55498. preyCapacity: math.unit(3, "people"),
  55499. name: "Front",
  55500. image: {
  55501. source: "./media/characters/fryra/front.svg",
  55502. extra: 1025/948,
  55503. bottom: 30/1055
  55504. },
  55505. extraAttributes: {
  55506. "breastVolume": {
  55507. name: "Breast Volume",
  55508. power: 3,
  55509. type: "volume",
  55510. base: math.unit(8, "liters")
  55511. },
  55512. }
  55513. },
  55514. back: {
  55515. height: math.unit(2, "meters"),
  55516. preyCapacity: math.unit(3, "people"),
  55517. name: "Back",
  55518. image: {
  55519. source: "./media/characters/fryra/back.svg",
  55520. extra: 993/938,
  55521. bottom: 38/1031
  55522. },
  55523. extraAttributes: {
  55524. "breastVolume": {
  55525. name: "Breast Volume",
  55526. power: 3,
  55527. type: "volume",
  55528. base: math.unit(8, "liters")
  55529. },
  55530. }
  55531. },
  55532. head: {
  55533. height: math.unit(1.33, "feet"),
  55534. name: "Head",
  55535. image: {
  55536. source: "./media/characters/fryra/head.svg"
  55537. }
  55538. },
  55539. maw: {
  55540. height: math.unit(0.56, "feet"),
  55541. name: "Maw",
  55542. image: {
  55543. source: "./media/characters/fryra/maw.svg"
  55544. }
  55545. },
  55546. },
  55547. [
  55548. {
  55549. name: "Micro",
  55550. height: math.unit(5, "cm")
  55551. },
  55552. {
  55553. name: "Normal",
  55554. height: math.unit(2, "meters"),
  55555. default: true
  55556. },
  55557. {
  55558. name: "Small Macro",
  55559. height: math.unit(8, "meters")
  55560. },
  55561. {
  55562. name: "Macro",
  55563. height: math.unit(50, "meters")
  55564. },
  55565. {
  55566. name: "Megamacro",
  55567. height: math.unit(1, "km")
  55568. },
  55569. {
  55570. name: "Planetary",
  55571. height: math.unit(300000, "km")
  55572. },
  55573. {
  55574. name: "Universal",
  55575. height: math.unit(250, "lightyears")
  55576. },
  55577. {
  55578. name: "Fabric of Reality",
  55579. height: math.unit(1000, "multiverses")
  55580. },
  55581. ]
  55582. ))
  55583. characterMakers.push(() => makeCharacter(
  55584. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55585. {
  55586. frontDressed: {
  55587. height: math.unit(6 + 2/12, "feet"),
  55588. name: "Front (Dressed)",
  55589. image: {
  55590. source: "./media/characters/fiera/front-dressed.svg",
  55591. extra: 1883/1793,
  55592. bottom: 70/1953
  55593. }
  55594. },
  55595. backDressed: {
  55596. height: math.unit(6 + 2/12, "feet"),
  55597. name: "Back (Dressed)",
  55598. image: {
  55599. source: "./media/characters/fiera/back-dressed.svg",
  55600. extra: 1847/1780,
  55601. bottom: 70/1917
  55602. }
  55603. },
  55604. frontNude: {
  55605. height: math.unit(6 + 2/12, "feet"),
  55606. name: "Front (Nude)",
  55607. image: {
  55608. source: "./media/characters/fiera/front-nude.svg",
  55609. extra: 1875/1785,
  55610. bottom: 66/1941
  55611. }
  55612. },
  55613. backNude: {
  55614. height: math.unit(6 + 2/12, "feet"),
  55615. name: "Back (Nude)",
  55616. image: {
  55617. source: "./media/characters/fiera/back-nude.svg",
  55618. extra: 1855/1788,
  55619. bottom: 44/1899
  55620. }
  55621. },
  55622. maw: {
  55623. height: math.unit(1.3, "feet"),
  55624. name: "Maw",
  55625. image: {
  55626. source: "./media/characters/fiera/maw.svg"
  55627. }
  55628. },
  55629. paw: {
  55630. height: math.unit(1, "feet"),
  55631. name: "Paw",
  55632. image: {
  55633. source: "./media/characters/fiera/paw.svg"
  55634. }
  55635. },
  55636. shoe: {
  55637. height: math.unit(1.05, "feet"),
  55638. name: "Shoe",
  55639. image: {
  55640. source: "./media/characters/fiera/shoe.svg"
  55641. }
  55642. },
  55643. },
  55644. [
  55645. {
  55646. name: "Normal",
  55647. height: math.unit(6 + 2/12, "feet"),
  55648. default: true
  55649. },
  55650. {
  55651. name: "Size Difference",
  55652. height: math.unit(13, "feet")
  55653. },
  55654. {
  55655. name: "Macro",
  55656. height: math.unit(60, "feet")
  55657. },
  55658. {
  55659. name: "Mega Macro",
  55660. height: math.unit(200, "feet")
  55661. },
  55662. ]
  55663. ))
  55664. characterMakers.push(() => makeCharacter(
  55665. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55666. {
  55667. back: {
  55668. height: math.unit(6, "feet"),
  55669. name: "Back",
  55670. image: {
  55671. source: "./media/characters/flare/back.svg",
  55672. extra: 1883/1765,
  55673. bottom: 32/1915
  55674. }
  55675. },
  55676. },
  55677. [
  55678. {
  55679. name: "Normal",
  55680. height: math.unit(6 + 2/12, "feet"),
  55681. default: true
  55682. },
  55683. {
  55684. name: "Size Difference",
  55685. height: math.unit(13, "feet")
  55686. },
  55687. {
  55688. name: "Macro",
  55689. height: math.unit(60, "feet")
  55690. },
  55691. {
  55692. name: "Macro 2",
  55693. height: math.unit(100, "feet")
  55694. },
  55695. {
  55696. name: "Mega Macro",
  55697. height: math.unit(200, "feet")
  55698. },
  55699. ]
  55700. ))
  55701. characterMakers.push(() => makeCharacter(
  55702. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55703. {
  55704. front: {
  55705. height: math.unit(2.2, "m"),
  55706. weight: math.unit(300, "kg"),
  55707. name: "Front",
  55708. image: {
  55709. source: "./media/characters/hanna/front.svg",
  55710. extra: 1696/1502,
  55711. bottom: 206/1902
  55712. }
  55713. },
  55714. },
  55715. [
  55716. {
  55717. name: "Humanoid",
  55718. height: math.unit(2.2, "meters")
  55719. },
  55720. {
  55721. name: "Normal",
  55722. height: math.unit(4.8, "meters"),
  55723. default: true
  55724. },
  55725. ]
  55726. ))
  55727. characterMakers.push(() => makeCharacter(
  55728. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55729. {
  55730. front: {
  55731. height: math.unit(2.8, "meters"),
  55732. name: "Front",
  55733. image: {
  55734. source: "./media/characters/argo/front.svg",
  55735. extra: 731/518,
  55736. bottom: 84/815
  55737. }
  55738. },
  55739. },
  55740. [
  55741. {
  55742. name: "Normal",
  55743. height: math.unit(3, "meters"),
  55744. default: true
  55745. },
  55746. ]
  55747. ))
  55748. characterMakers.push(() => makeCharacter(
  55749. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55750. {
  55751. side: {
  55752. height: math.unit(3.8, "meters"),
  55753. name: "Side",
  55754. image: {
  55755. source: "./media/characters/sybil/side.svg",
  55756. extra: 382/361,
  55757. bottom: 25/407
  55758. }
  55759. },
  55760. },
  55761. [
  55762. {
  55763. name: "Normal",
  55764. height: math.unit(3.8, "meters"),
  55765. default: true
  55766. },
  55767. ]
  55768. ))
  55769. characterMakers.push(() => makeCharacter(
  55770. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55771. {
  55772. side: {
  55773. height: math.unit(6, "meters"),
  55774. name: "Side",
  55775. image: {
  55776. source: "./media/characters/plum/side.svg",
  55777. extra: 858/755,
  55778. bottom: 45/903
  55779. },
  55780. form: "taur",
  55781. default: true
  55782. },
  55783. back: {
  55784. height: math.unit(6.3, "meters"),
  55785. name: "Back",
  55786. image: {
  55787. source: "./media/characters/plum/back.svg",
  55788. extra: 887/813,
  55789. bottom: 32/919
  55790. },
  55791. form: "taur",
  55792. },
  55793. feral: {
  55794. height: math.unit(5.5, "meter"),
  55795. name: "Front",
  55796. image: {
  55797. source: "./media/characters/plum/feral.svg",
  55798. extra: 568/403,
  55799. bottom: 51/619
  55800. },
  55801. form: "feral",
  55802. default: true
  55803. },
  55804. head: {
  55805. height: math.unit(1.46, "meter"),
  55806. name: "Head",
  55807. image: {
  55808. source: "./media/characters/plum/head.svg"
  55809. },
  55810. form: "taur"
  55811. },
  55812. tailTop: {
  55813. height: math.unit(5.6, "meter"),
  55814. name: "Tail (Top)",
  55815. image: {
  55816. source: "./media/characters/plum/tail-top.svg"
  55817. },
  55818. form: "taur",
  55819. },
  55820. tailBottom: {
  55821. height: math.unit(5.6, "meter"),
  55822. name: "Tail (Bottom)",
  55823. image: {
  55824. source: "./media/characters/plum/tail-bottom.svg"
  55825. },
  55826. form: "taur",
  55827. },
  55828. feralHead: {
  55829. height: math.unit(2.56549521, "meter"),
  55830. name: "Head",
  55831. image: {
  55832. source: "./media/characters/plum/head.svg"
  55833. },
  55834. form: "feral"
  55835. },
  55836. feralTailTop: {
  55837. height: math.unit(5.44728435, "meter"),
  55838. name: "Tail (Top)",
  55839. image: {
  55840. source: "./media/characters/plum/tail-top.svg"
  55841. },
  55842. form: "feral",
  55843. },
  55844. feralTailBottom: {
  55845. height: math.unit(5.44728435, "meter"),
  55846. name: "Tail (Bottom)",
  55847. image: {
  55848. source: "./media/characters/plum/tail-bottom.svg"
  55849. },
  55850. form: "feral",
  55851. },
  55852. },
  55853. [
  55854. {
  55855. name: "Normal",
  55856. height: math.unit(6, "meters"),
  55857. default: true,
  55858. form: "taur"
  55859. },
  55860. {
  55861. name: "Normal",
  55862. height: math.unit(5.5, "meters"),
  55863. default: true,
  55864. form: "feral"
  55865. },
  55866. ],
  55867. {
  55868. "taur": {
  55869. name: "Taur",
  55870. default: true
  55871. },
  55872. "feral": {
  55873. name: "Feral",
  55874. },
  55875. }
  55876. ))
  55877. characterMakers.push(() => makeCharacter(
  55878. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55879. {
  55880. front: {
  55881. height: math.unit(6, "feet"),
  55882. weight: math.unit(115, "lb"),
  55883. name: "Front",
  55884. image: {
  55885. source: "./media/characters/celeste-kitsune/front.svg",
  55886. extra: 393/366,
  55887. bottom: 7/400
  55888. }
  55889. },
  55890. side: {
  55891. height: math.unit(6, "feet"),
  55892. weight: math.unit(115, "lb"),
  55893. name: "Side",
  55894. image: {
  55895. source: "./media/characters/celeste-kitsune/side.svg",
  55896. extra: 818/765,
  55897. bottom: 40/858
  55898. }
  55899. },
  55900. },
  55901. [
  55902. {
  55903. name: "Megamacro",
  55904. height: math.unit(1500, "miles"),
  55905. default: true
  55906. },
  55907. ]
  55908. ))
  55909. characterMakers.push(() => makeCharacter(
  55910. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55911. {
  55912. front: {
  55913. height: math.unit(8, "meters"),
  55914. name: "Front",
  55915. image: {
  55916. source: "./media/characters/io/front.svg",
  55917. extra: 865/722,
  55918. bottom: 58/923
  55919. }
  55920. },
  55921. back: {
  55922. height: math.unit(8, "meters"),
  55923. name: "Back",
  55924. image: {
  55925. source: "./media/characters/io/back.svg",
  55926. extra: 920/776,
  55927. bottom: 42/962
  55928. }
  55929. },
  55930. head: {
  55931. height: math.unit(5.09, "meters"),
  55932. name: "Head",
  55933. image: {
  55934. source: "./media/characters/io/head.svg"
  55935. }
  55936. },
  55937. hand: {
  55938. height: math.unit(1.6, "meters"),
  55939. name: "Hand",
  55940. image: {
  55941. source: "./media/characters/io/hand.svg"
  55942. }
  55943. },
  55944. foot: {
  55945. height: math.unit(2.4, "meters"),
  55946. name: "Foot",
  55947. image: {
  55948. source: "./media/characters/io/foot.svg"
  55949. }
  55950. },
  55951. },
  55952. [
  55953. {
  55954. name: "Normal",
  55955. height: math.unit(8, "meters"),
  55956. default: true
  55957. },
  55958. ]
  55959. ))
  55960. characterMakers.push(() => makeCharacter(
  55961. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55962. {
  55963. side: {
  55964. height: math.unit(6 + 3/12, "feet"),
  55965. weight: math.unit(225, "lb"),
  55966. name: "Side",
  55967. image: {
  55968. source: "./media/characters/silas/side.svg",
  55969. extra: 703/653,
  55970. bottom: 23/726
  55971. },
  55972. extraAttributes: {
  55973. "pawLength": {
  55974. name: "Paw Length",
  55975. power: 1,
  55976. type: "length",
  55977. base: math.unit(12, "inches")
  55978. },
  55979. "pawWidth": {
  55980. name: "Paw Width",
  55981. power: 1,
  55982. type: "length",
  55983. base: math.unit(4.5, "inches")
  55984. },
  55985. "pawArea": {
  55986. name: "Paw Area",
  55987. power: 2,
  55988. type: "area",
  55989. base: math.unit(12 * 4.5, "inches^2")
  55990. },
  55991. }
  55992. },
  55993. },
  55994. [
  55995. {
  55996. name: "Normal",
  55997. height: math.unit(6 + 3/12, "feet"),
  55998. default: true
  55999. },
  56000. ]
  56001. ))
  56002. characterMakers.push(() => makeCharacter(
  56003. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56004. {
  56005. back: {
  56006. height: math.unit(1.6, "meters"),
  56007. weight: math.unit(150, "lb"),
  56008. name: "Back",
  56009. image: {
  56010. source: "./media/characters/zari/back.svg",
  56011. extra: 424/411,
  56012. bottom: 32/456
  56013. },
  56014. extraAttributes: {
  56015. "bladderCapacity": {
  56016. name: "Bladder Size",
  56017. power: 3,
  56018. type: "volume",
  56019. base: math.unit(500, "mL")
  56020. },
  56021. "bladderFlow": {
  56022. name: "Flow Rate",
  56023. power: 3,
  56024. type: "volume",
  56025. base: math.unit(25, "mL")
  56026. },
  56027. }
  56028. },
  56029. },
  56030. [
  56031. {
  56032. name: "Normal",
  56033. height: math.unit(1.6, "meters"),
  56034. default: true
  56035. },
  56036. ]
  56037. ))
  56038. characterMakers.push(() => makeCharacter(
  56039. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56040. {
  56041. front: {
  56042. height: math.unit(25, "feet"),
  56043. weight: math.unit(5, "tons"),
  56044. name: "Front",
  56045. image: {
  56046. source: "./media/characters/charlie-human/front.svg",
  56047. extra: 1870/1740,
  56048. bottom: 102/1972
  56049. },
  56050. extraAttributes: {
  56051. "dickLength": {
  56052. name: "Dick Length",
  56053. power: 1,
  56054. type: "length",
  56055. base: math.unit(9, "feet")
  56056. },
  56057. }
  56058. },
  56059. back: {
  56060. height: math.unit(25, "feet"),
  56061. weight: math.unit(5, "tons"),
  56062. name: "Back",
  56063. image: {
  56064. source: "./media/characters/charlie-human/back.svg",
  56065. extra: 1858/1733,
  56066. bottom: 105/1963
  56067. },
  56068. extraAttributes: {
  56069. "dickLength": {
  56070. name: "Dick Length",
  56071. power: 1,
  56072. type: "length",
  56073. base: math.unit(9, "feet")
  56074. },
  56075. }
  56076. },
  56077. },
  56078. [
  56079. {
  56080. name: "\"Normal\"",
  56081. height: math.unit(6 + 4/12, "feet")
  56082. },
  56083. {
  56084. name: "Big",
  56085. height: math.unit(25, "feet"),
  56086. default: true
  56087. },
  56088. ]
  56089. ))
  56090. characterMakers.push(() => makeCharacter(
  56091. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56092. {
  56093. front: {
  56094. height: math.unit(6 + 4/12, "feet"),
  56095. weight: math.unit(320, "lb"),
  56096. name: "Front",
  56097. image: {
  56098. source: "./media/characters/ookitsu/front.svg",
  56099. extra: 1160/976,
  56100. bottom: 38/1198
  56101. }
  56102. },
  56103. frontNsfw: {
  56104. height: math.unit(6 + 4/12, "feet"),
  56105. weight: math.unit(320, "lb"),
  56106. name: "Front (NSFW)",
  56107. image: {
  56108. source: "./media/characters/ookitsu/front-nsfw.svg",
  56109. extra: 1160/976,
  56110. bottom: 38/1198
  56111. }
  56112. },
  56113. back: {
  56114. height: math.unit(6 + 4/12, "feet"),
  56115. weight: math.unit(320, "lb"),
  56116. name: "Back",
  56117. image: {
  56118. source: "./media/characters/ookitsu/back.svg",
  56119. extra: 1030/975,
  56120. bottom: 70/1100
  56121. }
  56122. },
  56123. head: {
  56124. height: math.unit(1.79, "feet"),
  56125. name: "Head",
  56126. image: {
  56127. source: "./media/characters/ookitsu/head.svg"
  56128. }
  56129. },
  56130. hand: {
  56131. height: math.unit(0.92, "feet"),
  56132. name: "Hand",
  56133. image: {
  56134. source: "./media/characters/ookitsu/hand.svg"
  56135. }
  56136. },
  56137. tails: {
  56138. height: math.unit(3.3, "feet"),
  56139. name: "Tails",
  56140. image: {
  56141. source: "./media/characters/ookitsu/tails.svg"
  56142. }
  56143. },
  56144. dick: {
  56145. height: math.unit(1.10833, "feet"),
  56146. name: "Dick",
  56147. image: {
  56148. source: "./media/characters/ookitsu/dick.svg"
  56149. }
  56150. },
  56151. },
  56152. [
  56153. {
  56154. name: "Normal",
  56155. height: math.unit(6 + 4/12, "feet"),
  56156. default: true
  56157. },
  56158. {
  56159. name: "Macro",
  56160. height: math.unit(30, "feet")
  56161. },
  56162. ]
  56163. ))
  56164. characterMakers.push(() => makeCharacter(
  56165. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56166. {
  56167. anthroFront: {
  56168. height: math.unit(6, "feet"),
  56169. weight: math.unit(250, "lb"),
  56170. name: "Front",
  56171. image: {
  56172. source: "./media/characters/jhusky/anthro-front.svg",
  56173. extra: 474/439,
  56174. bottom: 7/481
  56175. },
  56176. form: "anthro",
  56177. default: true
  56178. },
  56179. taurSideSfw: {
  56180. height: math.unit(6 + 4/12, "feet"),
  56181. weight: math.unit(500, "lb"),
  56182. name: "Side (SFW)",
  56183. image: {
  56184. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56185. extra: 1741/1629,
  56186. bottom: 196/1937
  56187. },
  56188. form: "taur",
  56189. default: true
  56190. },
  56191. taurSideNsfw: {
  56192. height: math.unit(6 + 4/12, "feet"),
  56193. weight: math.unit(500, "lb"),
  56194. name: "Taur (NSFW)",
  56195. image: {
  56196. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56197. extra: 1741/1629,
  56198. bottom: 196/1937
  56199. },
  56200. form: "taur",
  56201. },
  56202. },
  56203. [
  56204. {
  56205. name: "Huge",
  56206. height: math.unit(500, "feet"),
  56207. form: "anthro"
  56208. },
  56209. {
  56210. name: "Macro",
  56211. height: math.unit(1000, "feet"),
  56212. default: true,
  56213. form: "anthro"
  56214. },
  56215. {
  56216. name: "Megamacro",
  56217. height: math.unit(10000, "feet"),
  56218. form: "anthro"
  56219. },
  56220. {
  56221. name: "Huge",
  56222. height: math.unit(528, "feet"),
  56223. form: "taur"
  56224. },
  56225. {
  56226. name: "Macro",
  56227. height: math.unit(1056, "feet"),
  56228. default: true,
  56229. form: "taur"
  56230. },
  56231. {
  56232. name: "Megamacro",
  56233. height: math.unit(10556, "feet"),
  56234. form: "taur"
  56235. },
  56236. ],
  56237. {
  56238. "anthro": {
  56239. name: "Anthro",
  56240. default: true
  56241. },
  56242. "taur": {
  56243. name: "Taur",
  56244. },
  56245. }
  56246. ))
  56247. characterMakers.push(() => makeCharacter(
  56248. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56249. {
  56250. front: {
  56251. height: math.unit(8, "feet"),
  56252. weight: math.unit(500, "lb"),
  56253. name: "Front",
  56254. image: {
  56255. source: "./media/characters/armail/front.svg",
  56256. extra: 1753/1669,
  56257. bottom: 155/1908
  56258. }
  56259. },
  56260. back: {
  56261. height: math.unit(8, "feet"),
  56262. weight: math.unit(500, "lb"),
  56263. name: "Back",
  56264. image: {
  56265. source: "./media/characters/armail/back.svg",
  56266. extra: 1872/1803,
  56267. bottom: 63/1935
  56268. }
  56269. },
  56270. },
  56271. [
  56272. {
  56273. name: "Micro",
  56274. height: math.unit(0.25, "feet")
  56275. },
  56276. {
  56277. name: "Normal",
  56278. height: math.unit(8, "feet"),
  56279. default: true
  56280. },
  56281. {
  56282. name: "Mini-macro",
  56283. height: math.unit(30, "feet")
  56284. },
  56285. {
  56286. name: "Macro",
  56287. height: math.unit(400, "feet")
  56288. },
  56289. {
  56290. name: "Mega-macro",
  56291. height: math.unit(6000, "feet")
  56292. },
  56293. ]
  56294. ))
  56295. characterMakers.push(() => makeCharacter(
  56296. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56297. {
  56298. front: {
  56299. height: math.unit(6 + 7/12, "feet"),
  56300. weight: math.unit(210, "lb"),
  56301. name: "Front",
  56302. image: {
  56303. source: "./media/characters/wilfred-t-buxton/front.svg",
  56304. extra: 1068/882,
  56305. bottom: 28/1096
  56306. }
  56307. },
  56308. },
  56309. [
  56310. {
  56311. name: "Normal",
  56312. height: math.unit(6 + 7/12, "feet"),
  56313. default: true
  56314. },
  56315. ]
  56316. ))
  56317. characterMakers.push(() => makeCharacter(
  56318. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56319. {
  56320. front: {
  56321. height: math.unit(5 + 2/12, "feet"),
  56322. weight: math.unit(120, "lb"),
  56323. name: "Front",
  56324. image: {
  56325. source: "./media/characters/leighton-marrow/front.svg",
  56326. extra: 441/409,
  56327. bottom: 37/478
  56328. }
  56329. },
  56330. },
  56331. [
  56332. {
  56333. name: "Normal",
  56334. height: math.unit(5 + 2/12, "feet"),
  56335. default: true
  56336. },
  56337. ]
  56338. ))
  56339. characterMakers.push(() => makeCharacter(
  56340. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56341. {
  56342. front: {
  56343. height: math.unit(4, "meters"),
  56344. weight: math.unit(1200, "kg"),
  56345. name: "Front",
  56346. image: {
  56347. source: "./media/characters/licos/front.svg",
  56348. extra: 1727/1604,
  56349. bottom: 101/1828
  56350. },
  56351. form: "anthro",
  56352. default: true
  56353. },
  56354. taur_side: {
  56355. height: math.unit(20, "meters"),
  56356. weight: math.unit(1100000, "kg"),
  56357. name: "Side",
  56358. image: {
  56359. source: "./media/characters/licos/taur.svg",
  56360. extra: 1158/1091,
  56361. bottom: 80/1238
  56362. },
  56363. form: "taur",
  56364. default: true
  56365. },
  56366. },
  56367. [
  56368. {
  56369. name: "Normal",
  56370. height: math.unit(4, "meters"),
  56371. default: true,
  56372. form: "anthro"
  56373. },
  56374. {
  56375. name: "Normal",
  56376. height: math.unit(20, "meters"),
  56377. default: true,
  56378. form: "taur"
  56379. },
  56380. ],
  56381. {
  56382. "anthro": {
  56383. name: "Anthro",
  56384. default: true
  56385. },
  56386. "taur": {
  56387. name: "Taur",
  56388. },
  56389. }
  56390. ))
  56391. characterMakers.push(() => makeCharacter(
  56392. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56393. {
  56394. front: {
  56395. height: math.unit(10 + 3/12, "feet"),
  56396. name: "Front",
  56397. image: {
  56398. source: "./media/characters/theo-monkey/front.svg",
  56399. extra: 1735/1658,
  56400. bottom: 73/1808
  56401. }
  56402. },
  56403. back: {
  56404. height: math.unit(10 + 3/12, "feet"),
  56405. name: "Back",
  56406. image: {
  56407. source: "./media/characters/theo-monkey/back.svg",
  56408. extra: 1742/1664,
  56409. bottom: 33/1775
  56410. }
  56411. },
  56412. head: {
  56413. height: math.unit(2.29, "feet"),
  56414. name: "Head",
  56415. image: {
  56416. source: "./media/characters/theo-monkey/head.svg"
  56417. }
  56418. },
  56419. handPalm: {
  56420. height: math.unit(1.73, "feet"),
  56421. name: "Hand (Palm)",
  56422. image: {
  56423. source: "./media/characters/theo-monkey/hand-palm.svg"
  56424. }
  56425. },
  56426. handBack: {
  56427. height: math.unit(1.63, "feet"),
  56428. name: "Hand (Back)",
  56429. image: {
  56430. source: "./media/characters/theo-monkey/hand-back.svg"
  56431. }
  56432. },
  56433. footSole: {
  56434. height: math.unit(2.15, "feet"),
  56435. name: "Foot (Sole)",
  56436. image: {
  56437. source: "./media/characters/theo-monkey/foot-sole.svg"
  56438. }
  56439. },
  56440. footSide: {
  56441. height: math.unit(1.6, "feet"),
  56442. name: "Foot (Side)",
  56443. image: {
  56444. source: "./media/characters/theo-monkey/foot-side.svg"
  56445. }
  56446. },
  56447. },
  56448. [
  56449. {
  56450. name: "Normal",
  56451. height: math.unit(10 + 3/12, "feet"),
  56452. default: true
  56453. },
  56454. ]
  56455. ))
  56456. characterMakers.push(() => makeCharacter(
  56457. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56458. {
  56459. front: {
  56460. height: math.unit(11, "feet"),
  56461. weight: math.unit(3000, "lb"),
  56462. preyCapacity: math.unit(10, "people"),
  56463. name: "Front",
  56464. image: {
  56465. source: "./media/characters/brook/front.svg",
  56466. extra: 909/835,
  56467. bottom: 108/1017
  56468. }
  56469. },
  56470. back: {
  56471. height: math.unit(11, "feet"),
  56472. weight: math.unit(3000, "lb"),
  56473. preyCapacity: math.unit(10, "people"),
  56474. name: "Back",
  56475. image: {
  56476. source: "./media/characters/brook/back.svg",
  56477. extra: 976/916,
  56478. bottom: 34/1010
  56479. }
  56480. },
  56481. backAlt: {
  56482. height: math.unit(11, "feet"),
  56483. weight: math.unit(3000, "lb"),
  56484. preyCapacity: math.unit(10, "people"),
  56485. name: "Back (Alt)",
  56486. image: {
  56487. source: "./media/characters/brook/back-alt.svg",
  56488. extra: 1283/1213,
  56489. bottom: 35/1318
  56490. }
  56491. },
  56492. bust: {
  56493. height: math.unit(9.0859030837, "feet"),
  56494. weight: math.unit(3000, "lb"),
  56495. preyCapacity: math.unit(10, "people"),
  56496. name: "Bust",
  56497. image: {
  56498. source: "./media/characters/brook/bust.svg",
  56499. extra: 2043/1923,
  56500. bottom: 0/2043
  56501. }
  56502. },
  56503. },
  56504. [
  56505. {
  56506. name: "Small",
  56507. height: math.unit(11, "feet"),
  56508. default: true
  56509. },
  56510. {
  56511. name: "Towering",
  56512. height: math.unit(5, "km")
  56513. },
  56514. {
  56515. name: "Enormous",
  56516. height: math.unit(25, "earths")
  56517. },
  56518. ]
  56519. ))
  56520. characterMakers.push(() => makeCharacter(
  56521. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56522. {
  56523. front: {
  56524. height: math.unit(4, "feet"),
  56525. weight: math.unit(150, "lb"),
  56526. name: "Front",
  56527. image: {
  56528. source: "./media/characters/squishi/front.svg",
  56529. extra: 1428/1271,
  56530. bottom: 30/1458
  56531. },
  56532. extraAttributes: {
  56533. "pawSize": {
  56534. name: "Paw Size",
  56535. power: 1,
  56536. type: "length",
  56537. base: math.unit(14, "ShoeSizeMensUS"),
  56538. defaultUnit: "ShoeSizeMensUS"
  56539. },
  56540. }
  56541. },
  56542. side: {
  56543. height: math.unit(4, "feet"),
  56544. weight: math.unit(150, "lb"),
  56545. name: "Side",
  56546. image: {
  56547. source: "./media/characters/squishi/side.svg",
  56548. extra: 1428/1271,
  56549. bottom: 30/1458
  56550. },
  56551. extraAttributes: {
  56552. "pawSize": {
  56553. name: "Paw Size",
  56554. power: 1,
  56555. type: "length",
  56556. base: math.unit(14, "ShoeSizeMensUS"),
  56557. defaultUnit: "ShoeSizeMensUS"
  56558. },
  56559. }
  56560. },
  56561. back: {
  56562. height: math.unit(4, "feet"),
  56563. weight: math.unit(150, "lb"),
  56564. name: "Back",
  56565. image: {
  56566. source: "./media/characters/squishi/back.svg",
  56567. extra: 1428/1271,
  56568. bottom: 30/1458
  56569. },
  56570. extraAttributes: {
  56571. "pawSize": {
  56572. name: "Paw Size",
  56573. power: 1,
  56574. type: "length",
  56575. base: math.unit(14, "ShoeSizeMensUS"),
  56576. defaultUnit: "ShoeSizeMensUS"
  56577. },
  56578. }
  56579. },
  56580. },
  56581. [
  56582. {
  56583. name: "Normal",
  56584. height: math.unit(4, "feet"),
  56585. default: true
  56586. },
  56587. ]
  56588. ))
  56589. characterMakers.push(() => makeCharacter(
  56590. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56591. {
  56592. front: {
  56593. height: math.unit(7 + 8/12, "feet"),
  56594. weight: math.unit(333, "lb"),
  56595. name: "Front",
  56596. image: {
  56597. source: "./media/characters/vincent-vasroc/front.svg",
  56598. extra: 1962/1860,
  56599. bottom: 41/2003
  56600. }
  56601. },
  56602. back: {
  56603. height: math.unit(7 + 8/12, "feet"),
  56604. weight: math.unit(333, "lb"),
  56605. name: "Back",
  56606. image: {
  56607. source: "./media/characters/vincent-vasroc/back.svg",
  56608. extra: 1952/1815,
  56609. bottom: 33/1985
  56610. }
  56611. },
  56612. paw: {
  56613. height: math.unit(1.24, "feet"),
  56614. name: "Paw",
  56615. image: {
  56616. source: "./media/characters/vincent-vasroc/paw.svg"
  56617. }
  56618. },
  56619. ear: {
  56620. height: math.unit(0.75, "feet"),
  56621. name: "Ear",
  56622. image: {
  56623. source: "./media/characters/vincent-vasroc/ear.svg"
  56624. }
  56625. },
  56626. },
  56627. [
  56628. {
  56629. name: "Nano",
  56630. height: math.unit(92, "micrometers")
  56631. },
  56632. {
  56633. name: "Normal",
  56634. height: math.unit(7 + 8/12, "feet"),
  56635. default: true
  56636. },
  56637. ]
  56638. ))
  56639. characterMakers.push(() => makeCharacter(
  56640. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56641. {
  56642. frontNsfw: {
  56643. height: math.unit(40, "feet"),
  56644. weight: math.unit(58, "tons"),
  56645. name: "Front (NSFW)",
  56646. image: {
  56647. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56648. extra: 1265/965,
  56649. bottom: 155/1420
  56650. }
  56651. },
  56652. frontSfw: {
  56653. height: math.unit(40, "feet"),
  56654. weight: math.unit(58, "tons"),
  56655. name: "Front (SFW)",
  56656. image: {
  56657. source: "./media/characters/ru-kahn/front-sfw.svg",
  56658. extra: 1265/965,
  56659. bottom: 80/1345
  56660. }
  56661. },
  56662. },
  56663. [
  56664. {
  56665. name: "Small",
  56666. height: math.unit(4, "feet")
  56667. },
  56668. {
  56669. name: "Normal",
  56670. height: math.unit(40, "feet"),
  56671. default: true
  56672. },
  56673. {
  56674. name: "Macro",
  56675. height: math.unit(400, "feet")
  56676. },
  56677. ]
  56678. ))
  56679. characterMakers.push(() => makeCharacter(
  56680. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56681. {
  56682. frontNude: {
  56683. height: math.unit(6 + 5/12, "feet"),
  56684. name: "Front (Nude)",
  56685. image: {
  56686. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56687. extra: 1369/1366,
  56688. bottom: 68/1437
  56689. }
  56690. },
  56691. frontDressed: {
  56692. height: math.unit(6 + 5/12, "feet"),
  56693. name: "Front (Dressed)",
  56694. image: {
  56695. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56696. extra: 1369/1366,
  56697. bottom: 68/1437
  56698. }
  56699. },
  56700. },
  56701. [
  56702. {
  56703. name: "Normal",
  56704. height: math.unit(6 + 5/12, "feet"),
  56705. default: true
  56706. },
  56707. {
  56708. name: "Maximum",
  56709. height: math.unit(1930, "feet")
  56710. },
  56711. ]
  56712. ))
  56713. characterMakers.push(() => makeCharacter(
  56714. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56715. {
  56716. front: {
  56717. height: math.unit(5 + 6/12, "feet"),
  56718. name: "Front",
  56719. image: {
  56720. source: "./media/characters/kaja/front.svg",
  56721. extra: 1874/1514,
  56722. bottom: 117/1991
  56723. }
  56724. },
  56725. },
  56726. [
  56727. {
  56728. name: "Normal",
  56729. height: math.unit(5 + 6/12, "feet"),
  56730. default: true
  56731. },
  56732. ]
  56733. ))
  56734. characterMakers.push(() => makeCharacter(
  56735. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56736. {
  56737. front: {
  56738. height: math.unit(5 + 9/12, "feet"),
  56739. weight: math.unit(200, "lb"),
  56740. name: "Front",
  56741. image: {
  56742. source: "./media/characters/mark-smith/front.svg",
  56743. extra: 1004/943,
  56744. bottom: 58/1062
  56745. }
  56746. },
  56747. back: {
  56748. height: math.unit(5 + 9/12, "feet"),
  56749. weight: math.unit(200, "lb"),
  56750. name: "Back",
  56751. image: {
  56752. source: "./media/characters/mark-smith/back.svg",
  56753. extra: 1023/953,
  56754. bottom: 24/1047
  56755. }
  56756. },
  56757. head: {
  56758. height: math.unit(1.82, "feet"),
  56759. name: "Head",
  56760. image: {
  56761. source: "./media/characters/mark-smith/head.svg"
  56762. }
  56763. },
  56764. hand: {
  56765. height: math.unit(1.4, "feet"),
  56766. name: "Hand",
  56767. image: {
  56768. source: "./media/characters/mark-smith/hand.svg"
  56769. }
  56770. },
  56771. paw: {
  56772. height: math.unit(1.69, "feet"),
  56773. name: "Paw",
  56774. image: {
  56775. source: "./media/characters/mark-smith/paw.svg"
  56776. }
  56777. },
  56778. },
  56779. [
  56780. {
  56781. name: "Micro",
  56782. height: math.unit(0.25, "inches")
  56783. },
  56784. {
  56785. name: "Normal",
  56786. height: math.unit(5 + 9/12, "feet"),
  56787. default: true
  56788. },
  56789. {
  56790. name: "Macro",
  56791. height: math.unit(500, "feet")
  56792. },
  56793. ]
  56794. ))
  56795. characterMakers.push(() => makeCharacter(
  56796. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56797. {
  56798. frontNude: {
  56799. height: math.unit(6, "feet"),
  56800. name: "Front (Nude)",
  56801. image: {
  56802. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56803. extra: 1384/1321,
  56804. bottom: 57/1441
  56805. }
  56806. },
  56807. frontDressed: {
  56808. height: math.unit(6, "feet"),
  56809. name: "Front (Dressed)",
  56810. image: {
  56811. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56812. extra: 1384/1321,
  56813. bottom: 57/1441
  56814. }
  56815. },
  56816. },
  56817. [
  56818. {
  56819. name: "Normal",
  56820. height: math.unit(6, "feet"),
  56821. default: true
  56822. },
  56823. {
  56824. name: "Maximum",
  56825. height: math.unit(1776, "feet")
  56826. },
  56827. ]
  56828. ))
  56829. characterMakers.push(() => makeCharacter(
  56830. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56831. {
  56832. front: {
  56833. height: math.unit(2 + 4/12, "feet"),
  56834. weight: math.unit(350, "lb"),
  56835. name: "Front",
  56836. image: {
  56837. source: "./media/characters/devos/front.svg",
  56838. extra: 958/852,
  56839. bottom: 143/1101
  56840. }
  56841. },
  56842. },
  56843. [
  56844. {
  56845. name: "Base",
  56846. height: math.unit(2 + 4/12, "feet"),
  56847. default: true
  56848. },
  56849. ]
  56850. ))
  56851. characterMakers.push(() => makeCharacter(
  56852. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56853. {
  56854. front: {
  56855. height: math.unit(9 + 2/12, "feet"),
  56856. name: "Front",
  56857. image: {
  56858. source: "./media/characters/hiveheart/front.svg",
  56859. extra: 394/364,
  56860. bottom: 65/459
  56861. }
  56862. },
  56863. back: {
  56864. height: math.unit(9 + 2/12, "feet"),
  56865. name: "Back",
  56866. image: {
  56867. source: "./media/characters/hiveheart/back.svg",
  56868. extra: 374/357,
  56869. bottom: 63/437
  56870. }
  56871. },
  56872. },
  56873. [
  56874. {
  56875. name: "Base",
  56876. height: math.unit(9 + 2/12, "feet"),
  56877. default: true
  56878. },
  56879. ]
  56880. ))
  56881. characterMakers.push(() => makeCharacter(
  56882. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56883. {
  56884. front: {
  56885. height: math.unit(2.5, "inches"),
  56886. weight: math.unit(0.6, "oz"),
  56887. name: "Front",
  56888. image: {
  56889. source: "./media/characters/bryn/front.svg",
  56890. extra: 1484/1119,
  56891. bottom: 66/1550
  56892. }
  56893. },
  56894. back: {
  56895. height: math.unit(2.5, "inches"),
  56896. weight: math.unit(0.6, "oz"),
  56897. name: "Back",
  56898. image: {
  56899. source: "./media/characters/bryn/back.svg",
  56900. extra: 1472/1170,
  56901. bottom: 32/1504
  56902. }
  56903. },
  56904. wings: {
  56905. height: math.unit(2.5, "inches"),
  56906. weight: math.unit(0.6, "oz"),
  56907. name: "Wings",
  56908. image: {
  56909. source: "./media/characters/bryn/wings.svg",
  56910. extra: 567/448,
  56911. bottom: 10/577
  56912. }
  56913. },
  56914. dressed: {
  56915. height: math.unit(2.5, "inches"),
  56916. weight: math.unit(0.6, "oz"),
  56917. name: "Dressed",
  56918. image: {
  56919. source: "./media/characters/bryn/dressed.svg",
  56920. extra: 719/589,
  56921. bottom: 54/773
  56922. }
  56923. },
  56924. head: {
  56925. height: math.unit(1.75, "inches"),
  56926. name: "Head",
  56927. image: {
  56928. source: "./media/characters/bryn/head.svg"
  56929. }
  56930. },
  56931. foot: {
  56932. height: math.unit(0.4, "inches"),
  56933. name: "Foot",
  56934. image: {
  56935. source: "./media/characters/bryn/foot.svg"
  56936. }
  56937. },
  56938. },
  56939. [
  56940. {
  56941. name: "Normal",
  56942. height: math.unit(2.5, "inches"),
  56943. default: true
  56944. },
  56945. ]
  56946. ))
  56947. characterMakers.push(() => makeCharacter(
  56948. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56949. {
  56950. side: {
  56951. height: math.unit(7, "feet"),
  56952. weight: math.unit(657, "kg"),
  56953. name: "Side",
  56954. image: {
  56955. source: "./media/characters/delta/side.svg",
  56956. extra: 781/212,
  56957. bottom: 7/788
  56958. },
  56959. extraAttributes: {
  56960. "wingspan": {
  56961. name: "Wingspan",
  56962. power: 1,
  56963. type: "length",
  56964. base: math.unit(48, "feet")
  56965. },
  56966. "length": {
  56967. name: "Length",
  56968. power: 1,
  56969. type: "length",
  56970. base: math.unit(21, "feet")
  56971. },
  56972. "pawSize": {
  56973. name: "Paw Size",
  56974. power: 2,
  56975. type: "area",
  56976. base: math.unit(1.5*1.4, "feet^2")
  56977. },
  56978. }
  56979. },
  56980. },
  56981. [
  56982. {
  56983. name: "Normal",
  56984. height: math.unit(6, "feet"),
  56985. default: true
  56986. },
  56987. ]
  56988. ))
  56989. characterMakers.push(() => makeCharacter(
  56990. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56991. {
  56992. front: {
  56993. height: math.unit(6, "feet"),
  56994. name: "Front",
  56995. image: {
  56996. source: "./media/characters/pyrow/front.svg",
  56997. extra: 513/486,
  56998. bottom: 14/527
  56999. }
  57000. },
  57001. frontWing: {
  57002. height: math.unit(6, "feet"),
  57003. name: "Front (Wing)",
  57004. image: {
  57005. source: "./media/characters/pyrow/front-wing.svg",
  57006. extra: 539/383,
  57007. bottom: 20/559
  57008. }
  57009. },
  57010. back: {
  57011. height: math.unit(6, "feet"),
  57012. name: "Back",
  57013. image: {
  57014. source: "./media/characters/pyrow/back.svg",
  57015. extra: 500/473,
  57016. bottom: 9/509
  57017. }
  57018. },
  57019. },
  57020. [
  57021. {
  57022. name: "Normal",
  57023. height: math.unit(6, "feet"),
  57024. default: true
  57025. },
  57026. ]
  57027. ))
  57028. characterMakers.push(() => makeCharacter(
  57029. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57030. {
  57031. front: {
  57032. height: math.unit(5, "meters"),
  57033. weight: math.unit(3, "tonnes"),
  57034. name: "Front",
  57035. image: {
  57036. source: "./media/characters/velikan/front.svg",
  57037. extra: 867/744,
  57038. bottom: 71/938
  57039. },
  57040. extraAttributes: {
  57041. "shoeSize": {
  57042. name: "Shoe Size",
  57043. power: 1,
  57044. type: "length",
  57045. base: math.unit(135, "ShoeSizeUK"),
  57046. defaultUnit: "ShoeSizeUK"
  57047. },
  57048. }
  57049. },
  57050. },
  57051. [
  57052. {
  57053. name: "Normal",
  57054. height: math.unit(5, "meters"),
  57055. default: true
  57056. },
  57057. {
  57058. name: "Macro",
  57059. height: math.unit(1, "km")
  57060. },
  57061. {
  57062. name: "Mega Macro",
  57063. height: math.unit(100, "km")
  57064. },
  57065. {
  57066. name: "Giga Macro",
  57067. height: math.unit(2, "megameters")
  57068. },
  57069. {
  57070. name: "Planetary",
  57071. height: math.unit(22, "megameters")
  57072. },
  57073. {
  57074. name: "Solar",
  57075. height: math.unit(8, "gigameters")
  57076. },
  57077. {
  57078. name: "Cosmic",
  57079. height: math.unit(10, "zettameters")
  57080. },
  57081. {
  57082. name: "Omni",
  57083. height: math.unit(9e260, "multiverses")
  57084. },
  57085. ]
  57086. ))
  57087. characterMakers.push(() => makeCharacter(
  57088. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57089. {
  57090. front: {
  57091. height: math.unit(4 + 3/12, "feet"),
  57092. weight: math.unit(90, "lb"),
  57093. name: "Front",
  57094. image: {
  57095. source: "./media/characters/sabiki/front.svg",
  57096. extra: 1662/1423,
  57097. bottom: 65/1727
  57098. }
  57099. },
  57100. },
  57101. [
  57102. {
  57103. name: "Normal",
  57104. height: math.unit(4 + 3/12, "feet"),
  57105. default: true
  57106. },
  57107. ]
  57108. ))
  57109. characterMakers.push(() => makeCharacter(
  57110. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57111. {
  57112. frontSfw: {
  57113. height: math.unit(2, "mm"),
  57114. name: "Front (SFW)",
  57115. image: {
  57116. source: "./media/characters/carmel/front-sfw.svg",
  57117. extra: 1131/1006,
  57118. bottom: 66/1197
  57119. }
  57120. },
  57121. frontNsfw: {
  57122. height: math.unit(2, "mm"),
  57123. name: "Front (NSFW)",
  57124. image: {
  57125. source: "./media/characters/carmel/front-nsfw.svg",
  57126. extra: 1131/1006,
  57127. bottom: 66/1197
  57128. }
  57129. },
  57130. foot: {
  57131. height: math.unit(0.3, "mm"),
  57132. name: "Foot",
  57133. image: {
  57134. source: "./media/characters/carmel/foot.svg"
  57135. }
  57136. },
  57137. tongue: {
  57138. height: math.unit(0.71, "mm"),
  57139. name: "Tongue",
  57140. image: {
  57141. source: "./media/characters/carmel/tongue.svg"
  57142. }
  57143. },
  57144. dick: {
  57145. height: math.unit(0.085, "mm"),
  57146. name: "Dick",
  57147. image: {
  57148. source: "./media/characters/carmel/dick.svg"
  57149. }
  57150. },
  57151. },
  57152. [
  57153. {
  57154. name: "Micro",
  57155. height: math.unit(2, "mm"),
  57156. default: true
  57157. },
  57158. {
  57159. name: "Normal",
  57160. height: math.unit(4 + 8/12, "feet")
  57161. },
  57162. {
  57163. name: "Mega Macro",
  57164. height: math.unit(250, "feet")
  57165. },
  57166. {
  57167. name: "BIGGER",
  57168. height: math.unit(1000, "feet")
  57169. },
  57170. {
  57171. name: "BIGGEST",
  57172. height: math.unit(2, "miles")
  57173. },
  57174. ]
  57175. ))
  57176. characterMakers.push(() => makeCharacter(
  57177. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57178. {
  57179. front: {
  57180. height: math.unit(6.5, "feet"),
  57181. weight: math.unit(198, "lb"),
  57182. name: "Front",
  57183. image: {
  57184. source: "./media/characters/tamani/anthro.svg",
  57185. extra: 930/890,
  57186. bottom: 34/964
  57187. },
  57188. form: "anthro",
  57189. default: true
  57190. },
  57191. side: {
  57192. height: math.unit(6, "feet"),
  57193. weight: math.unit(198*2, "lb"),
  57194. name: "Side",
  57195. image: {
  57196. source: "./media/characters/tamani/feral.svg",
  57197. extra: 559/519,
  57198. bottom: 43/602
  57199. },
  57200. form: "feral"
  57201. },
  57202. },
  57203. [
  57204. {
  57205. name: "Normal",
  57206. height: math.unit(6.5, "feet"),
  57207. default: true,
  57208. form: "anthro"
  57209. },
  57210. {
  57211. name: "Normal",
  57212. height: math.unit(6, "feet"),
  57213. default: true,
  57214. form: "feral"
  57215. },
  57216. ],
  57217. {
  57218. "anthro": {
  57219. name: "Anthro",
  57220. default: true
  57221. },
  57222. "feral": {
  57223. name: "Feral",
  57224. },
  57225. }
  57226. ))
  57227. characterMakers.push(() => makeCharacter(
  57228. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57229. {
  57230. front: {
  57231. height: math.unit(4 + 1/12, "feet"),
  57232. weight: math.unit(114, "lb"),
  57233. name: "Front",
  57234. image: {
  57235. source: "./media/characters/dex/front.svg",
  57236. extra: 787/680,
  57237. bottom: 18/805
  57238. }
  57239. },
  57240. side: {
  57241. height: math.unit(4 + 1/12, "feet"),
  57242. weight: math.unit(114, "lb"),
  57243. name: "Side",
  57244. image: {
  57245. source: "./media/characters/dex/side.svg",
  57246. extra: 785/680,
  57247. bottom: 12/797
  57248. }
  57249. },
  57250. back: {
  57251. height: math.unit(4 + 1/12, "feet"),
  57252. weight: math.unit(114, "lb"),
  57253. name: "Back",
  57254. image: {
  57255. source: "./media/characters/dex/back.svg",
  57256. extra: 785/681,
  57257. bottom: 17/802
  57258. }
  57259. },
  57260. loungewear: {
  57261. height: math.unit(4 + 1/12, "feet"),
  57262. weight: math.unit(114, "lb"),
  57263. name: "Loungewear",
  57264. image: {
  57265. source: "./media/characters/dex/loungewear.svg",
  57266. extra: 787/680,
  57267. bottom: 18/805
  57268. }
  57269. },
  57270. workout: {
  57271. height: math.unit(4 + 1/12, "feet"),
  57272. weight: math.unit(114, "lb"),
  57273. name: "Workout",
  57274. image: {
  57275. source: "./media/characters/dex/workout.svg",
  57276. extra: 787/680,
  57277. bottom: 18/805
  57278. }
  57279. },
  57280. schoolUniform: {
  57281. height: math.unit(4 + 1/12, "feet"),
  57282. weight: math.unit(114, "lb"),
  57283. name: "School-uniform",
  57284. image: {
  57285. source: "./media/characters/dex/school-uniform.svg",
  57286. extra: 787/680,
  57287. bottom: 18/805
  57288. }
  57289. },
  57290. maw: {
  57291. height: math.unit(0.55, "feet"),
  57292. name: "Maw",
  57293. image: {
  57294. source: "./media/characters/dex/maw.svg"
  57295. }
  57296. },
  57297. paw: {
  57298. height: math.unit(0.87, "feet"),
  57299. name: "Paw",
  57300. image: {
  57301. source: "./media/characters/dex/paw.svg"
  57302. }
  57303. },
  57304. bust: {
  57305. height: math.unit(1.67, "feet"),
  57306. name: "Bust",
  57307. image: {
  57308. source: "./media/characters/dex/bust.svg"
  57309. }
  57310. },
  57311. },
  57312. [
  57313. {
  57314. name: "Normal",
  57315. height: math.unit(4 + 1/12, "feet"),
  57316. default: true
  57317. },
  57318. ]
  57319. ))
  57320. characterMakers.push(() => makeCharacter(
  57321. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57322. {
  57323. front: {
  57324. height: math.unit(4 + 3/12, "feet"),
  57325. weight: math.unit(60, "lb"),
  57326. name: "Front",
  57327. image: {
  57328. source: "./media/characters/silke/front.svg",
  57329. extra: 1334/1122,
  57330. bottom: 21/1355
  57331. }
  57332. },
  57333. back: {
  57334. height: math.unit(4 + 3/12, "feet"),
  57335. weight: math.unit(60, "lb"),
  57336. name: "Back",
  57337. image: {
  57338. source: "./media/characters/silke/back.svg",
  57339. extra: 1328/1092,
  57340. bottom: 16/1344
  57341. }
  57342. },
  57343. dressed: {
  57344. height: math.unit(4 + 3/12, "feet"),
  57345. weight: math.unit(60, "lb"),
  57346. name: "Dressed",
  57347. image: {
  57348. source: "./media/characters/silke/dressed.svg",
  57349. extra: 1334/1122,
  57350. bottom: 43/1377
  57351. }
  57352. },
  57353. },
  57354. [
  57355. {
  57356. name: "Normal",
  57357. height: math.unit(4 + 3/12, "feet"),
  57358. default: true
  57359. },
  57360. ]
  57361. ))
  57362. characterMakers.push(() => makeCharacter(
  57363. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57364. {
  57365. front: {
  57366. height: math.unit(1.58, "meters"),
  57367. weight: math.unit(47, "kg"),
  57368. name: "Front",
  57369. image: {
  57370. source: "./media/characters/wireshark/front.svg",
  57371. extra: 883/838,
  57372. bottom: 66/949
  57373. }
  57374. },
  57375. },
  57376. [
  57377. {
  57378. name: "Normal",
  57379. height: math.unit(1.58, "meters"),
  57380. default: true
  57381. },
  57382. ]
  57383. ))
  57384. characterMakers.push(() => makeCharacter(
  57385. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57386. {
  57387. front: {
  57388. height: math.unit(6, "meters"),
  57389. weight: math.unit(15000, "kg"),
  57390. name: "Front",
  57391. image: {
  57392. source: "./media/characters/gallagher/front.svg",
  57393. extra: 532/493,
  57394. bottom: 0/532
  57395. }
  57396. },
  57397. },
  57398. [
  57399. {
  57400. name: "Normal",
  57401. height: math.unit(6, "meters"),
  57402. default: true
  57403. },
  57404. ]
  57405. ))
  57406. characterMakers.push(() => makeCharacter(
  57407. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57408. {
  57409. front: {
  57410. height: math.unit(2.4, "meters"),
  57411. weight: math.unit(270, "kg"),
  57412. name: "Front",
  57413. image: {
  57414. source: "./media/characters/alice/front.svg",
  57415. extra: 950/900,
  57416. bottom: 36/986
  57417. }
  57418. },
  57419. side: {
  57420. height: math.unit(2.4, "meters"),
  57421. weight: math.unit(270, "kg"),
  57422. name: "Side",
  57423. image: {
  57424. source: "./media/characters/alice/side.svg",
  57425. extra: 921/876,
  57426. bottom: 19/940
  57427. }
  57428. },
  57429. dressed: {
  57430. height: math.unit(2.4, "meters"),
  57431. weight: math.unit(270, "kg"),
  57432. name: "Dressed",
  57433. image: {
  57434. source: "./media/characters/alice/dressed.svg",
  57435. extra: 905/850,
  57436. bottom: 81/986
  57437. }
  57438. },
  57439. fishnet: {
  57440. height: math.unit(2.4, "meters"),
  57441. weight: math.unit(270, "kg"),
  57442. name: "Fishnet",
  57443. image: {
  57444. source: "./media/characters/alice/fishnet.svg",
  57445. extra: 905/850,
  57446. bottom: 81/986
  57447. }
  57448. },
  57449. },
  57450. [
  57451. {
  57452. name: "Normal",
  57453. height: math.unit(2.4, "meters"),
  57454. default: true
  57455. },
  57456. ]
  57457. ))
  57458. characterMakers.push(() => makeCharacter(
  57459. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57460. {
  57461. front: {
  57462. height: math.unit(175.25, "feet"),
  57463. name: "Front",
  57464. image: {
  57465. source: "./media/characters/fio/front.svg",
  57466. extra: 1883/1591,
  57467. bottom: 34/1917
  57468. }
  57469. },
  57470. },
  57471. [
  57472. {
  57473. name: "Normal",
  57474. height: math.unit(175.25, "cm"),
  57475. default: true
  57476. },
  57477. ]
  57478. ))
  57479. characterMakers.push(() => makeCharacter(
  57480. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57481. {
  57482. side: {
  57483. height: math.unit(6, "meters"),
  57484. weight: math.unit(3400, "kg"),
  57485. preyCapacity: math.unit(1700, "liters"),
  57486. name: "Side",
  57487. image: {
  57488. source: "./media/characters/hass/side.svg",
  57489. extra: 1058/997,
  57490. bottom: 177/1235
  57491. }
  57492. },
  57493. feeding: {
  57494. height: math.unit(6*0.63, "meters"),
  57495. weight: math.unit(3400, "kg"),
  57496. preyCapacity: math.unit(1700, "liters"),
  57497. name: "Feeding",
  57498. image: {
  57499. source: "./media/characters/hass/feeding.svg",
  57500. extra: 689/579,
  57501. bottom: 146/835
  57502. }
  57503. },
  57504. guts: {
  57505. height: math.unit(6, "meters"),
  57506. weight: math.unit(3400, "kg"),
  57507. name: "Guts",
  57508. image: {
  57509. source: "./media/characters/hass/guts.svg",
  57510. extra: 1223/1198,
  57511. bottom: 182/1405
  57512. }
  57513. },
  57514. dickFront: {
  57515. height: math.unit(1.4, "meters"),
  57516. name: "Dick (Front)",
  57517. image: {
  57518. source: "./media/characters/hass/dick-front.svg"
  57519. }
  57520. },
  57521. dickSide: {
  57522. height: math.unit(1.3, "meters"),
  57523. name: "Dick (Side)",
  57524. image: {
  57525. source: "./media/characters/hass/dick-side.svg"
  57526. }
  57527. },
  57528. dickBack: {
  57529. height: math.unit(1.4, "meters"),
  57530. name: "Dick (Back)",
  57531. image: {
  57532. source: "./media/characters/hass/dick-back.svg"
  57533. }
  57534. },
  57535. },
  57536. [
  57537. {
  57538. name: "Normal",
  57539. height: math.unit(6, "meters"),
  57540. default: true
  57541. },
  57542. ]
  57543. ))
  57544. characterMakers.push(() => makeCharacter(
  57545. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57546. {
  57547. front: {
  57548. height: math.unit(4, "feet"),
  57549. weight: math.unit(60, "lb"),
  57550. name: "Front",
  57551. image: {
  57552. source: "./media/characters/hickory-finnegan/front.svg",
  57553. extra: 444/411,
  57554. bottom: 10/454
  57555. }
  57556. },
  57557. side: {
  57558. height: math.unit(4, "feet"),
  57559. weight: math.unit(60, "lb"),
  57560. name: "Side",
  57561. image: {
  57562. source: "./media/characters/hickory-finnegan/side.svg",
  57563. extra: 444/411,
  57564. bottom: 10/454
  57565. }
  57566. },
  57567. back: {
  57568. height: math.unit(4, "feet"),
  57569. weight: math.unit(60, "lb"),
  57570. name: "Back",
  57571. image: {
  57572. source: "./media/characters/hickory-finnegan/back.svg",
  57573. extra: 444/411,
  57574. bottom: 10/454
  57575. }
  57576. },
  57577. },
  57578. [
  57579. {
  57580. name: "Normal",
  57581. height: math.unit(4, "feet"),
  57582. default: true
  57583. },
  57584. ]
  57585. ))
  57586. characterMakers.push(() => makeCharacter(
  57587. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57588. {
  57589. snivy_front: {
  57590. height: math.unit(2, "feet"),
  57591. weight: math.unit(17.9, "lb"),
  57592. name: "Front",
  57593. image: {
  57594. source: "./media/characters/robin-phox/snivy-front.svg",
  57595. extra: 569/504,
  57596. bottom: 33/602
  57597. },
  57598. form: "snivy",
  57599. default: true
  57600. },
  57601. snivy_frontNsfw: {
  57602. height: math.unit(2, "feet"),
  57603. weight: math.unit(17.9, "lb"),
  57604. name: "Front (NSFW)",
  57605. image: {
  57606. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57607. extra: 569/504,
  57608. bottom: 33/602
  57609. },
  57610. form: "snivy",
  57611. },
  57612. snivy_back: {
  57613. height: math.unit(2, "feet"),
  57614. weight: math.unit(17.9, "lb"),
  57615. name: "Back",
  57616. image: {
  57617. source: "./media/characters/robin-phox/snivy-back.svg",
  57618. extra: 577/508,
  57619. bottom: 21/598
  57620. },
  57621. form: "snivy",
  57622. },
  57623. snivy_foot: {
  57624. height: math.unit(0.68, "feet"),
  57625. name: "Foot",
  57626. image: {
  57627. source: "./media/characters/robin-phox/snivy-foot.svg"
  57628. },
  57629. form: "snivy",
  57630. },
  57631. snivy_sole: {
  57632. height: math.unit(0.68, "feet"),
  57633. name: "Sole",
  57634. image: {
  57635. source: "./media/characters/robin-phox/snivy-sole.svg"
  57636. },
  57637. form: "snivy",
  57638. },
  57639. yoshi_front: {
  57640. height: math.unit(6, "feet"),
  57641. weight: math.unit(150, "lb"),
  57642. name: "Front",
  57643. image: {
  57644. source: "./media/characters/robin-phox/yoshi-front.svg",
  57645. extra: 890/792,
  57646. bottom: 29/919
  57647. },
  57648. form: "yoshi",
  57649. default: true
  57650. },
  57651. yoshi_frontNsfw: {
  57652. height: math.unit(6, "feet"),
  57653. weight: math.unit(150, "lb"),
  57654. name: "Front (NSFW)",
  57655. image: {
  57656. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57657. extra: 890/792,
  57658. bottom: 29/919
  57659. },
  57660. form: "yoshi",
  57661. },
  57662. yoshi_back: {
  57663. height: math.unit(6, "feet"),
  57664. weight: math.unit(150, "lb"),
  57665. name: "Back",
  57666. image: {
  57667. source: "./media/characters/robin-phox/yoshi-back.svg",
  57668. extra: 890/792,
  57669. bottom: 29/919
  57670. },
  57671. form: "yoshi",
  57672. },
  57673. yoshi_foot: {
  57674. height: math.unit(1.5, "feet"),
  57675. name: "Foot",
  57676. image: {
  57677. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57678. },
  57679. form: "yoshi",
  57680. },
  57681. delphox_front: {
  57682. height: math.unit(4 + 11/12, "feet"),
  57683. weight: math.unit(86, "lb"),
  57684. name: "Front",
  57685. image: {
  57686. source: "./media/characters/robin-phox/delphox-front.svg",
  57687. extra: 1266/1069,
  57688. bottom: 32/1298
  57689. },
  57690. form: "delphox",
  57691. default: true
  57692. },
  57693. delphox_frontNsfw: {
  57694. height: math.unit(4 + 11/12, "feet"),
  57695. weight: math.unit(86, "lb"),
  57696. name: "Front (NSFW)",
  57697. image: {
  57698. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57699. extra: 1266/1069,
  57700. bottom: 32/1298
  57701. },
  57702. form: "delphox",
  57703. },
  57704. delphox_back: {
  57705. height: math.unit(4 + 11/12, "feet"),
  57706. weight: math.unit(86, "lb"),
  57707. name: "Back",
  57708. image: {
  57709. source: "./media/characters/robin-phox/delphox-back.svg",
  57710. extra: 1269/1083,
  57711. bottom: 15/1284
  57712. },
  57713. form: "delphox",
  57714. },
  57715. mienshao_front: {
  57716. height: math.unit(4 + 7/12, "feet"),
  57717. weight: math.unit(78.3, "lb"),
  57718. name: "Front",
  57719. image: {
  57720. source: "./media/characters/robin-phox/mienshao-front.svg",
  57721. extra: 1052/970,
  57722. bottom: 108/1160
  57723. },
  57724. form: "mienshao",
  57725. default: true
  57726. },
  57727. mienshao_frontNsfw: {
  57728. height: math.unit(4 + 7/12, "feet"),
  57729. weight: math.unit(78.3, "lb"),
  57730. name: "Front (NSFW)",
  57731. image: {
  57732. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57733. extra: 1052/970,
  57734. bottom: 108/1160
  57735. },
  57736. form: "mienshao",
  57737. },
  57738. mienshao_back: {
  57739. height: math.unit(4 + 7/12, "feet"),
  57740. weight: math.unit(78.3, "lb"),
  57741. name: "Back",
  57742. image: {
  57743. source: "./media/characters/robin-phox/mienshao-back.svg",
  57744. extra: 1102/982,
  57745. bottom: 32/1134
  57746. },
  57747. form: "mienshao",
  57748. },
  57749. inteleon_front: {
  57750. height: math.unit(6 + 3/12, "feet"),
  57751. weight: math.unit(99.6, "lb"),
  57752. name: "Front",
  57753. image: {
  57754. source: "./media/characters/robin-phox/inteleon-front.svg",
  57755. extra: 910/799,
  57756. bottom: 76/986
  57757. },
  57758. form: "inteleon",
  57759. default: true
  57760. },
  57761. inteleon_frontNsfw: {
  57762. height: math.unit(6 + 3/12, "feet"),
  57763. weight: math.unit(99.6, "lb"),
  57764. name: "Front (NSFW)",
  57765. image: {
  57766. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57767. extra: 910/799,
  57768. bottom: 76/986
  57769. },
  57770. form: "inteleon",
  57771. },
  57772. inteleon_back: {
  57773. height: math.unit(6 + 3/12, "feet"),
  57774. weight: math.unit(99.6, "lb"),
  57775. name: "Back",
  57776. image: {
  57777. source: "./media/characters/robin-phox/inteleon-back.svg",
  57778. extra: 907/796,
  57779. bottom: 25/932
  57780. },
  57781. form: "inteleon",
  57782. },
  57783. reshiram_front: {
  57784. height: math.unit(10 + 6/12, "feet"),
  57785. weight: math.unit(727.5, "lb"),
  57786. name: "Front",
  57787. image: {
  57788. source: "./media/characters/robin-phox/reshiram-front.svg",
  57789. extra: 1198/940,
  57790. bottom: 123/1321
  57791. },
  57792. form: "reshiram",
  57793. },
  57794. reshiram_frontNsfw: {
  57795. height: math.unit(10 + 6/12, "feet"),
  57796. weight: math.unit(727.5, "lb"),
  57797. name: "Front-nsfw",
  57798. image: {
  57799. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57800. extra: 1198/940,
  57801. bottom: 123/1321
  57802. },
  57803. form: "reshiram",
  57804. },
  57805. reshiram_back: {
  57806. height: math.unit(10 + 6/12, "feet"),
  57807. weight: math.unit(727.5, "lb"),
  57808. name: "Back",
  57809. image: {
  57810. source: "./media/characters/robin-phox/reshiram-back.svg",
  57811. extra: 1024/904,
  57812. bottom: 85/1109
  57813. },
  57814. form: "reshiram",
  57815. },
  57816. samurott_front: {
  57817. height: math.unit(8, "feet"),
  57818. weight: math.unit(208.6, "lb"),
  57819. name: "Front",
  57820. image: {
  57821. source: "./media/characters/robin-phox/samurott-front.svg",
  57822. extra: 1048/984,
  57823. bottom: 100/1148
  57824. },
  57825. form: "samurott",
  57826. },
  57827. samurott_frontNsfw: {
  57828. height: math.unit(8, "feet"),
  57829. weight: math.unit(208.6, "lb"),
  57830. name: "Front-nsfw",
  57831. image: {
  57832. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57833. extra: 1048/984,
  57834. bottom: 100/1148
  57835. },
  57836. form: "samurott",
  57837. },
  57838. samurott_back: {
  57839. height: math.unit(8, "feet"),
  57840. weight: math.unit(208.6, "lb"),
  57841. name: "Back",
  57842. image: {
  57843. source: "./media/characters/robin-phox/samurott-back.svg",
  57844. extra: 1110/1042,
  57845. bottom: 12/1122
  57846. },
  57847. form: "samurott",
  57848. },
  57849. samurott_feral: {
  57850. height: math.unit(4 + 11/12, "feet"),
  57851. weight: math.unit(208.6, "lb"),
  57852. name: "Feral",
  57853. image: {
  57854. source: "./media/characters/robin-phox/samurott-feral.svg",
  57855. extra: 766/681,
  57856. bottom: 108/874
  57857. },
  57858. form: "samurott",
  57859. },
  57860. },
  57861. [
  57862. {
  57863. name: "Normal",
  57864. height: math.unit(2, "feet"),
  57865. default: true,
  57866. form: "snivy"
  57867. },
  57868. {
  57869. name: "Normal",
  57870. height: math.unit(6, "feet"),
  57871. default: true,
  57872. form: "yoshi"
  57873. },
  57874. {
  57875. name: "Normal",
  57876. height: math.unit(4 + 11/12, "feet"),
  57877. default: true,
  57878. form: "delphox"
  57879. },
  57880. {
  57881. name: "Normal",
  57882. height: math.unit(4 + 7/12, "feet"),
  57883. default: true,
  57884. form: "mienshao"
  57885. },
  57886. {
  57887. name: "Normal",
  57888. height: math.unit(6 + 3/12, "feet"),
  57889. default: true,
  57890. form: "inteleon"
  57891. },
  57892. {
  57893. name: "Normal",
  57894. height: math.unit(10 + 6/12, "feet"),
  57895. default: true,
  57896. form: "reshiram"
  57897. },
  57898. {
  57899. name: "Normal",
  57900. height: math.unit(8, "feet"),
  57901. default: true,
  57902. form: "samurott"
  57903. },
  57904. {
  57905. name: "Macro",
  57906. height: math.unit(500, "feet"),
  57907. allForms: true
  57908. },
  57909. {
  57910. name: "Mega Macro",
  57911. height: math.unit(10, "earths"),
  57912. allForms: true
  57913. },
  57914. {
  57915. name: "Giga Macro",
  57916. height: math.unit(1, "galaxy"),
  57917. allForms: true
  57918. },
  57919. {
  57920. name: "Godly Macro",
  57921. height: math.unit(1e10, "multiverses"),
  57922. allForms: true
  57923. },
  57924. ],
  57925. {
  57926. "snivy": {
  57927. name: "Snivy",
  57928. default: true
  57929. },
  57930. "yoshi": {
  57931. name: "Yoshi",
  57932. },
  57933. "delphox": {
  57934. name: "Delphox",
  57935. },
  57936. "mienshao": {
  57937. name: "Mienshao",
  57938. },
  57939. "inteleon": {
  57940. name: "Inteleon",
  57941. },
  57942. "reshiram": {
  57943. name: "Reshiram",
  57944. },
  57945. "samurott": {
  57946. name: "Samurott",
  57947. },
  57948. }
  57949. ))
  57950. characterMakers.push(() => makeCharacter(
  57951. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57952. {
  57953. front: {
  57954. height: math.unit(4, "feet"),
  57955. name: "Front",
  57956. image: {
  57957. source: "./media/characters/ash-leung/front.svg",
  57958. extra: 1916/1792,
  57959. bottom: 50/1966
  57960. }
  57961. },
  57962. },
  57963. [
  57964. {
  57965. name: "Atomic",
  57966. height: math.unit(1, "angstrom")
  57967. },
  57968. {
  57969. name: "Microscopic",
  57970. height: math.unit(4000, "angstroms")
  57971. },
  57972. {
  57973. name: "Speck",
  57974. height: math.unit(1, "mm")
  57975. },
  57976. {
  57977. name: "Small",
  57978. height: math.unit(1, "inch")
  57979. },
  57980. {
  57981. name: "Normal",
  57982. height: math.unit(4, "feet"),
  57983. default: true
  57984. },
  57985. ]
  57986. ))
  57987. characterMakers.push(() => makeCharacter(
  57988. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57989. {
  57990. frontDressed: {
  57991. height: math.unit(2.08, "meters"),
  57992. weight: math.unit(175, "lb"),
  57993. name: "Front (Dressed)",
  57994. image: {
  57995. source: "./media/characters/carie/front-dressed.svg",
  57996. extra: 456/417,
  57997. bottom: 7/463
  57998. }
  57999. },
  58000. backDressed: {
  58001. height: math.unit(2.08, "meters"),
  58002. weight: math.unit(175, "lb"),
  58003. name: "Back (Dressed)",
  58004. image: {
  58005. source: "./media/characters/carie/back-dressed.svg",
  58006. extra: 455/414,
  58007. bottom: 11/466
  58008. }
  58009. },
  58010. front: {
  58011. height: math.unit(2, "meters"),
  58012. weight: math.unit(175, "lb"),
  58013. name: "Front",
  58014. image: {
  58015. source: "./media/characters/carie/front.svg",
  58016. extra: 438/399,
  58017. bottom: 12/450
  58018. }
  58019. },
  58020. back: {
  58021. height: math.unit(2, "meters"),
  58022. weight: math.unit(175, "lb"),
  58023. name: "Back",
  58024. image: {
  58025. source: "./media/characters/carie/back.svg",
  58026. extra: 438/397,
  58027. bottom: 7/445
  58028. }
  58029. },
  58030. },
  58031. [
  58032. {
  58033. name: "Normal",
  58034. height: math.unit(2.08, "meters"),
  58035. default: true
  58036. },
  58037. {
  58038. name: "Macro",
  58039. height: math.unit(2.08e3, "meters")
  58040. },
  58041. {
  58042. name: "Mega Macro",
  58043. height: math.unit(2.08e6, "meters")
  58044. },
  58045. {
  58046. name: "Giga Macro",
  58047. height: math.unit(2.08e9, "meters")
  58048. },
  58049. {
  58050. name: "Tera Macro",
  58051. height: math.unit(2.08e12, "meters")
  58052. },
  58053. {
  58054. name: "Peta Macro",
  58055. height: math.unit(2.08e15, "meters")
  58056. },
  58057. {
  58058. name: "Exa Macro",
  58059. height: math.unit(2.08e18, "meters")
  58060. },
  58061. {
  58062. name: "Zetta Macro",
  58063. height: math.unit(2.08e21, "meters")
  58064. },
  58065. {
  58066. name: "Yotta Macro",
  58067. height: math.unit(2.08e24, "meters")
  58068. },
  58069. ]
  58070. ))
  58071. characterMakers.push(() => makeCharacter(
  58072. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58073. {
  58074. front: {
  58075. height: math.unit(5 + 2/12, "feet"),
  58076. weight: math.unit(120, "lb"),
  58077. name: "Front",
  58078. image: {
  58079. source: "./media/characters/sai-bree/front.svg",
  58080. extra: 1843/1702,
  58081. bottom: 91/1934
  58082. }
  58083. },
  58084. back: {
  58085. height: math.unit(5 + 2/12, "feet"),
  58086. weight: math.unit(120, "lb"),
  58087. name: "Back",
  58088. image: {
  58089. source: "./media/characters/sai-bree/back.svg",
  58090. extra: 1809/1637,
  58091. bottom: 56/1865
  58092. }
  58093. },
  58094. },
  58095. [
  58096. {
  58097. name: "Normal",
  58098. height: math.unit(5 + 2/12, "feet"),
  58099. default: true
  58100. },
  58101. {
  58102. name: "Macro",
  58103. height: math.unit(500, "feet")
  58104. },
  58105. ]
  58106. ))
  58107. characterMakers.push(() => makeCharacter(
  58108. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58109. {
  58110. side: {
  58111. height: math.unit(0.77, "meters"),
  58112. weight: math.unit(120, "lb"),
  58113. name: "Side",
  58114. image: {
  58115. source: "./media/characters/davwyn/side.svg",
  58116. extra: 1557/1225,
  58117. bottom: 131/1688
  58118. }
  58119. },
  58120. front: {
  58121. height: math.unit(0.835410, "meters"),
  58122. weight: math.unit(120, "lb"),
  58123. name: "Front",
  58124. image: {
  58125. source: "./media/characters/davwyn/front.svg",
  58126. extra: 870/843,
  58127. bottom: 175/1045
  58128. }
  58129. },
  58130. },
  58131. [
  58132. {
  58133. name: "Minidrake",
  58134. height: math.unit(0.77/4, "meters")
  58135. },
  58136. {
  58137. name: "Normal",
  58138. height: math.unit(0.77, "meters"),
  58139. default: true
  58140. },
  58141. ]
  58142. ))
  58143. characterMakers.push(() => makeCharacter(
  58144. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58145. {
  58146. front: {
  58147. height: math.unit(10 + 3/12, "feet"),
  58148. weight: math.unit(2857, "lb"),
  58149. name: "Front",
  58150. image: {
  58151. source: "./media/characters/balans/front.svg",
  58152. extra: 427/402,
  58153. bottom: 26/453
  58154. }
  58155. },
  58156. side: {
  58157. height: math.unit(10 + 3/12, "feet"),
  58158. weight: math.unit(2857, "lb"),
  58159. name: "Side",
  58160. image: {
  58161. source: "./media/characters/balans/side.svg",
  58162. extra: 397/371,
  58163. bottom: 17/414
  58164. }
  58165. },
  58166. back: {
  58167. height: math.unit(10 + 3/12, "feet"),
  58168. weight: math.unit(2857, "lb"),
  58169. name: "Back",
  58170. image: {
  58171. source: "./media/characters/balans/back.svg",
  58172. extra: 408/381,
  58173. bottom: 14/422
  58174. }
  58175. },
  58176. hand: {
  58177. height: math.unit(1.15, "feet"),
  58178. name: "Hand",
  58179. image: {
  58180. source: "./media/characters/balans/hand.svg"
  58181. }
  58182. },
  58183. footRest: {
  58184. height: math.unit(3.1, "feet"),
  58185. name: "Foot (Rest)",
  58186. image: {
  58187. source: "./media/characters/balans/foot-rest.svg"
  58188. }
  58189. },
  58190. footActive: {
  58191. height: math.unit(3.5, "feet"),
  58192. name: "Foot (Active)",
  58193. image: {
  58194. source: "./media/characters/balans/foot-active.svg"
  58195. }
  58196. },
  58197. },
  58198. [
  58199. {
  58200. name: "Normal",
  58201. height: math.unit(10 + 3/12, "feet"),
  58202. default: true
  58203. },
  58204. ]
  58205. ))
  58206. characterMakers.push(() => makeCharacter(
  58207. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58208. {
  58209. side: {
  58210. height: math.unit(9, "meters"),
  58211. weight: math.unit(114, "tonnes"),
  58212. name: "Side",
  58213. image: {
  58214. source: "./media/characters/eldkveikir/side.svg",
  58215. extra: 1927/338,
  58216. bottom: 42/1969
  58217. }
  58218. },
  58219. sitting: {
  58220. height: math.unit(13.4, "meters"),
  58221. weight: math.unit(114, "tonnes"),
  58222. name: "Sitting",
  58223. image: {
  58224. source: "./media/characters/eldkveikir/sitting.svg",
  58225. extra: 1108/963,
  58226. bottom: 610/1718
  58227. }
  58228. },
  58229. maw: {
  58230. height: math.unit(8.36, "meters"),
  58231. name: "Maw",
  58232. image: {
  58233. source: "./media/characters/eldkveikir/maw.svg"
  58234. }
  58235. },
  58236. hand: {
  58237. height: math.unit(4.84, "meters"),
  58238. name: "Hand",
  58239. image: {
  58240. source: "./media/characters/eldkveikir/hand.svg"
  58241. }
  58242. },
  58243. foot: {
  58244. height: math.unit(6.9, "meters"),
  58245. name: "Foot",
  58246. image: {
  58247. source: "./media/characters/eldkveikir/foot.svg"
  58248. }
  58249. },
  58250. genitals: {
  58251. height: math.unit(9.6, "meters"),
  58252. name: "Genitals",
  58253. image: {
  58254. source: "./media/characters/eldkveikir/genitals.svg"
  58255. }
  58256. },
  58257. },
  58258. [
  58259. {
  58260. name: "Normal",
  58261. height: math.unit(9, "meters"),
  58262. default: true
  58263. },
  58264. ]
  58265. ))
  58266. characterMakers.push(() => makeCharacter(
  58267. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58268. {
  58269. front: {
  58270. height: math.unit(14, "feet"),
  58271. weight: math.unit(4100, "lb"),
  58272. name: "Front",
  58273. image: {
  58274. source: "./media/characters/arrow/front.svg",
  58275. extra: 330/318,
  58276. bottom: 56/386
  58277. }
  58278. },
  58279. },
  58280. [
  58281. {
  58282. name: "Normal",
  58283. height: math.unit(14, "feet"),
  58284. default: true
  58285. },
  58286. {
  58287. name: "Minimacro",
  58288. height: math.unit(63, "feet")
  58289. },
  58290. {
  58291. name: "Macro",
  58292. height: math.unit(630, "feet")
  58293. },
  58294. {
  58295. name: "Megamacro",
  58296. height: math.unit(12600, "feet")
  58297. },
  58298. {
  58299. name: "Gigamacro",
  58300. height: math.unit(18000, "miles")
  58301. },
  58302. ]
  58303. ))
  58304. characterMakers.push(() => makeCharacter(
  58305. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58306. {
  58307. front: {
  58308. height: math.unit(10, "feet"),
  58309. weight: math.unit(2.4, "tons"),
  58310. name: "Front",
  58311. image: {
  58312. source: "./media/characters/3yk-k0-unit/front.svg",
  58313. extra: 573/561,
  58314. bottom: 33/606
  58315. }
  58316. },
  58317. back: {
  58318. height: math.unit(10, "feet"),
  58319. weight: math.unit(2.4, "tons"),
  58320. name: "Back",
  58321. image: {
  58322. source: "./media/characters/3yk-k0-unit/back.svg",
  58323. extra: 614/573,
  58324. bottom: 32/646
  58325. }
  58326. },
  58327. maw: {
  58328. height: math.unit(2.15, "feet"),
  58329. name: "Maw",
  58330. image: {
  58331. source: "./media/characters/3yk-k0-unit/maw.svg"
  58332. }
  58333. },
  58334. },
  58335. [
  58336. {
  58337. name: "Normal",
  58338. height: math.unit(10, "feet"),
  58339. default: true
  58340. },
  58341. ]
  58342. ))
  58343. characterMakers.push(() => makeCharacter(
  58344. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58345. {
  58346. front: {
  58347. height: math.unit(8 + 8/12, "feet"),
  58348. name: "Front",
  58349. image: {
  58350. source: "./media/characters/nemo/front.svg",
  58351. extra: 1308/1217,
  58352. bottom: 57/1365
  58353. }
  58354. },
  58355. },
  58356. [
  58357. {
  58358. name: "Normal",
  58359. height: math.unit(8 + 8/12, "feet"),
  58360. default: true
  58361. },
  58362. ]
  58363. ))
  58364. characterMakers.push(() => makeCharacter(
  58365. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58366. {
  58367. front: {
  58368. height: math.unit(8, "feet"),
  58369. weight: math.unit(760, "lb"),
  58370. name: "Front",
  58371. image: {
  58372. source: "./media/characters/rexx/front.svg",
  58373. extra: 786/750,
  58374. bottom: 17/803
  58375. },
  58376. extraAttributes: {
  58377. "pawLength": {
  58378. name: "Paw Length",
  58379. power: 1,
  58380. type: "length",
  58381. base: math.unit(27, "inches")
  58382. },
  58383. }
  58384. },
  58385. },
  58386. [
  58387. {
  58388. name: "Micro",
  58389. height: math.unit(2, "inches")
  58390. },
  58391. {
  58392. name: "Normal",
  58393. height: math.unit(8, "feet"),
  58394. default: true
  58395. },
  58396. {
  58397. name: "Macro",
  58398. height: math.unit(150, "feet")
  58399. },
  58400. ]
  58401. ))
  58402. characterMakers.push(() => makeCharacter(
  58403. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58404. {
  58405. front: {
  58406. height: math.unit(18, "feet"),
  58407. weight: math.unit(1975, "lb"),
  58408. name: "Front",
  58409. image: {
  58410. source: "./media/characters/draco/front.svg",
  58411. extra: 1325/1241,
  58412. bottom: 83/1408
  58413. }
  58414. },
  58415. back: {
  58416. height: math.unit(18, "feet"),
  58417. weight: math.unit(1975, "lb"),
  58418. name: "Back",
  58419. image: {
  58420. source: "./media/characters/draco/back.svg",
  58421. extra: 1332/1250,
  58422. bottom: 43/1375
  58423. }
  58424. },
  58425. dick: {
  58426. height: math.unit(7.5, "feet"),
  58427. name: "Dick",
  58428. image: {
  58429. source: "./media/characters/draco/dick.svg"
  58430. }
  58431. },
  58432. },
  58433. [
  58434. {
  58435. name: "Normal",
  58436. height: math.unit(18, "feet"),
  58437. default: true
  58438. },
  58439. ]
  58440. ))
  58441. characterMakers.push(() => makeCharacter(
  58442. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58443. {
  58444. front: {
  58445. height: math.unit(3.2, "meters"),
  58446. name: "Front",
  58447. image: {
  58448. source: "./media/characters/harriett/front.svg",
  58449. extra: 1966/1915,
  58450. bottom: 9/1975
  58451. }
  58452. },
  58453. },
  58454. [
  58455. {
  58456. name: "Normal",
  58457. height: math.unit(3.2, "meters"),
  58458. default: true
  58459. },
  58460. ]
  58461. ))
  58462. characterMakers.push(() => makeCharacter(
  58463. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58464. {
  58465. sitting: {
  58466. height: math.unit(0.8, "meter"),
  58467. name: "Sitting",
  58468. image: {
  58469. source: "./media/characters/serpentus/sitting.svg",
  58470. extra: 293/290,
  58471. bottom: 140/433
  58472. }
  58473. },
  58474. },
  58475. [
  58476. {
  58477. name: "Normal",
  58478. height: math.unit(0.8, "meter"),
  58479. default: true
  58480. },
  58481. ]
  58482. ))
  58483. characterMakers.push(() => makeCharacter(
  58484. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58485. {
  58486. front: {
  58487. height: math.unit(5.7174385736, "feet"),
  58488. name: "Front",
  58489. image: {
  58490. source: "./media/characters/nova-polecat/front.svg",
  58491. extra: 1317/1216,
  58492. bottom: 92/1409
  58493. }
  58494. },
  58495. },
  58496. [
  58497. {
  58498. name: "Normal",
  58499. height: math.unit(5.7174385736, "feet"),
  58500. default: true
  58501. },
  58502. ]
  58503. ))
  58504. characterMakers.push(() => makeCharacter(
  58505. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58506. {
  58507. front: {
  58508. height: math.unit(5 + 4/12, "feet"),
  58509. weight: math.unit(250, "lb"),
  58510. name: "Front",
  58511. image: {
  58512. source: "./media/characters/mook/front.svg",
  58513. extra: 1088/1037,
  58514. bottom: 132/1220
  58515. }
  58516. },
  58517. back: {
  58518. height: math.unit(5 + 1/12, "feet"),
  58519. weight: math.unit(250, "lb"),
  58520. name: "Back",
  58521. image: {
  58522. source: "./media/characters/mook/back.svg",
  58523. extra: 1184/905,
  58524. bottom: 96/1280
  58525. }
  58526. },
  58527. head: {
  58528. height: math.unit(1.85, "feet"),
  58529. name: "Head",
  58530. image: {
  58531. source: "./media/characters/mook/head.svg"
  58532. }
  58533. },
  58534. hand: {
  58535. height: math.unit(1.9, "feet"),
  58536. name: "Hand",
  58537. image: {
  58538. source: "./media/characters/mook/hand.svg"
  58539. }
  58540. },
  58541. palm: {
  58542. height: math.unit(1.84, "feet"),
  58543. name: "Palm",
  58544. image: {
  58545. source: "./media/characters/mook/palm.svg"
  58546. }
  58547. },
  58548. foot: {
  58549. height: math.unit(1.44, "feet"),
  58550. name: "Foot",
  58551. image: {
  58552. source: "./media/characters/mook/foot.svg"
  58553. }
  58554. },
  58555. sole: {
  58556. height: math.unit(1.44, "feet"),
  58557. name: "Sole",
  58558. image: {
  58559. source: "./media/characters/mook/sole.svg"
  58560. }
  58561. },
  58562. },
  58563. [
  58564. {
  58565. name: "Normal",
  58566. height: math.unit(5 + 4/12, "feet"),
  58567. default: true
  58568. },
  58569. {
  58570. name: "Big",
  58571. height: math.unit(12, "feet")
  58572. },
  58573. ]
  58574. ))
  58575. characterMakers.push(() => makeCharacter(
  58576. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58577. {
  58578. front: {
  58579. height: math.unit(6 + 10/12, "feet"),
  58580. weight: math.unit(233, "lb"),
  58581. name: "Front",
  58582. image: {
  58583. source: "./media/characters/kayla/front.svg",
  58584. extra: 1850/1775,
  58585. bottom: 65/1915
  58586. }
  58587. },
  58588. },
  58589. [
  58590. {
  58591. name: "Normal",
  58592. height: math.unit(6 + 10/12, "feet"),
  58593. default: true
  58594. },
  58595. {
  58596. name: "Amazonian",
  58597. height: math.unit(12 + 5/12, "feet")
  58598. },
  58599. {
  58600. name: "Mini Giantess",
  58601. height: math.unit(26, "feet")
  58602. },
  58603. {
  58604. name: "Giantess",
  58605. height: math.unit(200, "feet")
  58606. },
  58607. {
  58608. name: "Mega Giantess",
  58609. height: math.unit(2500, "feet")
  58610. },
  58611. {
  58612. name: "City Sized",
  58613. height: math.unit(50, "miles")
  58614. },
  58615. {
  58616. name: "Country Sized",
  58617. height: math.unit(500, "miles")
  58618. },
  58619. {
  58620. name: "Continent Sized",
  58621. height: math.unit(2500, "miles")
  58622. },
  58623. {
  58624. name: "Planet Sized",
  58625. height: math.unit(10000, "miles")
  58626. },
  58627. {
  58628. name: "Star Sized",
  58629. height: math.unit(5e6, "miles")
  58630. },
  58631. {
  58632. name: "Solar System Sized",
  58633. height: math.unit(125, "AU")
  58634. },
  58635. {
  58636. name: "Galaxy Sized",
  58637. height: math.unit(300e3, "lightyears")
  58638. },
  58639. {
  58640. name: "Universe Sized",
  58641. height: math.unit(200e9, "lightyears")
  58642. },
  58643. {
  58644. name: "Multiverse Sized",
  58645. height: math.unit(20, "exauniverses")
  58646. },
  58647. {
  58648. name: "Mother of Existence",
  58649. height: math.unit(1e6, "yottauniverses")
  58650. },
  58651. ]
  58652. ))
  58653. characterMakers.push(() => makeCharacter(
  58654. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58655. {
  58656. side: {
  58657. height: math.unit(9.5, "meters"),
  58658. name: "Side",
  58659. image: {
  58660. source: "./media/characters/kulve-ragnarok/side.svg",
  58661. extra: 364/326,
  58662. bottom: 50/414
  58663. }
  58664. },
  58665. },
  58666. [
  58667. {
  58668. name: "Normal",
  58669. height: math.unit(9.5, "meters"),
  58670. default: true
  58671. },
  58672. ]
  58673. ))
  58674. characterMakers.push(() => makeCharacter(
  58675. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58676. {
  58677. front: {
  58678. height: math.unit(8 + 9/12, "feet"),
  58679. name: "Front",
  58680. image: {
  58681. source: "./media/characters/atlas-goat/front.svg",
  58682. extra: 1462/1323,
  58683. bottom: 12/1474
  58684. }
  58685. },
  58686. },
  58687. [
  58688. {
  58689. name: "Normal",
  58690. height: math.unit(8 + 9/12, "feet"),
  58691. default: true
  58692. },
  58693. {
  58694. name: "Skyline",
  58695. height: math.unit(845, "feet")
  58696. },
  58697. {
  58698. name: "Orbital",
  58699. height: math.unit(93000, "miles")
  58700. },
  58701. {
  58702. name: "Constellation",
  58703. height: math.unit(27000, "lightyears")
  58704. },
  58705. ]
  58706. ))
  58707. characterMakers.push(() => makeCharacter(
  58708. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58709. {
  58710. side: {
  58711. height: math.unit(1.8, "meters"),
  58712. weight: math.unit(120, "kg"),
  58713. name: "Side",
  58714. image: {
  58715. source: "./media/characters/xie-ling/side.svg",
  58716. extra: 646/574,
  58717. bottom: 44/690
  58718. }
  58719. },
  58720. },
  58721. [
  58722. {
  58723. name: "Tiny",
  58724. height: math.unit(1.80, "meters")
  58725. },
  58726. {
  58727. name: "Small",
  58728. height: math.unit(6, "meters")
  58729. },
  58730. {
  58731. name: "Medium",
  58732. height: math.unit(15, "meters")
  58733. },
  58734. {
  58735. name: "Normal",
  58736. height: math.unit(30, "meters"),
  58737. default: true
  58738. },
  58739. {
  58740. name: "Above Normal",
  58741. height: math.unit(60, "meters")
  58742. },
  58743. {
  58744. name: "Big",
  58745. height: math.unit(220, "meters")
  58746. },
  58747. {
  58748. name: "Giant",
  58749. height: math.unit(2.2, "km")
  58750. },
  58751. {
  58752. name: "Macro",
  58753. height: math.unit(25, "km")
  58754. },
  58755. {
  58756. name: "Mega Macro",
  58757. height: math.unit(350, "km")
  58758. },
  58759. {
  58760. name: "Mega Macro+",
  58761. height: math.unit(5000, "km")
  58762. },
  58763. {
  58764. name: "Goddess",
  58765. height: math.unit(3, "multiverses")
  58766. },
  58767. ]
  58768. ))
  58769. characterMakers.push(() => makeCharacter(
  58770. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58771. {
  58772. frontSfw: {
  58773. height: math.unit(5 + 11/12, "feet"),
  58774. weight: math.unit(210, "lb"),
  58775. name: "Front",
  58776. image: {
  58777. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58778. extra: 1928/1821,
  58779. bottom: 45/1973
  58780. }
  58781. },
  58782. backSfw: {
  58783. height: math.unit(5 + 11/12, "feet"),
  58784. weight: math.unit(210, "lb"),
  58785. name: "Back",
  58786. image: {
  58787. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58788. extra: 1920/1813,
  58789. bottom: 34/1954
  58790. }
  58791. },
  58792. frontNsfw: {
  58793. height: math.unit(5 + 11/12, "feet"),
  58794. weight: math.unit(210, "lb"),
  58795. name: "Front (NSFW)",
  58796. image: {
  58797. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58798. extra: 1928/1821,
  58799. bottom: 45/1973
  58800. }
  58801. },
  58802. backNsfw: {
  58803. height: math.unit(5 + 11/12, "feet"),
  58804. weight: math.unit(210, "lb"),
  58805. name: "Back (NSFW)",
  58806. image: {
  58807. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58808. extra: 1920/1813,
  58809. bottom: 34/1954
  58810. }
  58811. },
  58812. },
  58813. [
  58814. {
  58815. name: "Normal",
  58816. height: math.unit(5 + 11/12, "feet"),
  58817. default: true
  58818. },
  58819. {
  58820. name: "Goddess",
  58821. height: math.unit(20 + 3/12, "feet")
  58822. },
  58823. {
  58824. name: "Breaker of Man",
  58825. height: math.unit(329 + 9/12, "feet")
  58826. },
  58827. {
  58828. name: "Solar Justice",
  58829. height: math.unit(0.6, "solarradii")
  58830. },
  58831. {
  58832. name: "She Who Judges",
  58833. height: math.unit(1, "universe")
  58834. },
  58835. ]
  58836. ))
  58837. characterMakers.push(() => makeCharacter(
  58838. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58839. {
  58840. casual_front: {
  58841. height: math.unit(6 + 1/12, "feet"),
  58842. weight: math.unit(190, "lb"),
  58843. preyCapacity: math.unit(1, "people"),
  58844. name: "Front",
  58845. image: {
  58846. source: "./media/characters/managarmr/casual-front.svg",
  58847. extra: 411/381,
  58848. bottom: 15/426
  58849. },
  58850. extraAttributes: {
  58851. "pawSize": {
  58852. name: "Paw Size",
  58853. power: 1,
  58854. type: "length",
  58855. base: math.unit(0.2, "meters")
  58856. },
  58857. },
  58858. form: "casual",
  58859. },
  58860. casual_back: {
  58861. height: math.unit(6 + 1/12, "feet"),
  58862. weight: math.unit(190, "lb"),
  58863. preyCapacity: math.unit(1, "people"),
  58864. name: "Back",
  58865. image: {
  58866. source: "./media/characters/managarmr/casual-back.svg",
  58867. extra: 413/383,
  58868. bottom: 13/426
  58869. },
  58870. extraAttributes: {
  58871. "pawSize": {
  58872. name: "Paw Size",
  58873. power: 1,
  58874. type: "length",
  58875. base: math.unit(0.2, "meters")
  58876. },
  58877. },
  58878. form: "casual",
  58879. },
  58880. base_front: {
  58881. height: math.unit(7, "feet"),
  58882. weight: math.unit(210, "lb"),
  58883. preyCapacity: math.unit(2, "people"),
  58884. name: "Front",
  58885. image: {
  58886. source: "./media/characters/managarmr/base-front.svg",
  58887. extra: 580/485,
  58888. bottom: 32/612
  58889. },
  58890. extraAttributes: {
  58891. "wingspan": {
  58892. name: "Wingspan",
  58893. power: 1,
  58894. type: "length",
  58895. base: math.unit(4, "meters")
  58896. },
  58897. "pawSize": {
  58898. name: "Paw Size",
  58899. power: 1,
  58900. type: "length",
  58901. base: math.unit(0.2, "meters")
  58902. },
  58903. },
  58904. form: "base",
  58905. },
  58906. "true-divine_front": {
  58907. height: math.unit(40, "feet"),
  58908. weight: math.unit(39000, "lb"),
  58909. preyCapacity: math.unit(375, "people"),
  58910. name: "Front",
  58911. image: {
  58912. source: "./media/characters/managarmr/true-divine-front.svg",
  58913. extra: 725/573,
  58914. bottom: 120/845
  58915. },
  58916. extraAttributes: {
  58917. "wingspan": {
  58918. name: "Wingspan",
  58919. power: 1,
  58920. type: "length",
  58921. base: math.unit(20, "meters")
  58922. },
  58923. "pawSize": {
  58924. name: "Paw Size",
  58925. power: 1,
  58926. type: "length",
  58927. base: math.unit(1.5, "meters")
  58928. },
  58929. },
  58930. form: "true-divine",
  58931. },
  58932. },
  58933. [
  58934. {
  58935. name: "Normal",
  58936. height: math.unit(6 + 1/12, "feet"),
  58937. form: "casual",
  58938. default: true
  58939. },
  58940. {
  58941. name: "Normal",
  58942. height: math.unit(7, "feet"),
  58943. form: "base",
  58944. default: true
  58945. },
  58946. ],
  58947. {
  58948. "casual": {
  58949. name: "Casual",
  58950. default: true
  58951. },
  58952. "base": {
  58953. name: "Base",
  58954. },
  58955. "true-divine": {
  58956. name: "True Divine",
  58957. },
  58958. }
  58959. ))
  58960. characterMakers.push(() => makeCharacter(
  58961. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58962. {
  58963. front: {
  58964. height: math.unit(1.8, "meters"),
  58965. weight: math.unit(110, "kg"),
  58966. name: "Front",
  58967. image: {
  58968. source: "./media/characters/mystra/front.svg",
  58969. extra: 529/442,
  58970. bottom: 31/560
  58971. }
  58972. },
  58973. frontLewd: {
  58974. height: math.unit(1.8, "meters"),
  58975. weight: math.unit(110, "kg"),
  58976. name: "Front (Lewd)",
  58977. image: {
  58978. source: "./media/characters/mystra/front-lewd.svg",
  58979. extra: 529/442,
  58980. bottom: 31/560
  58981. }
  58982. },
  58983. head: {
  58984. height: math.unit(1.63, "feet"),
  58985. name: "Head",
  58986. image: {
  58987. source: "./media/characters/mystra/head.svg"
  58988. }
  58989. },
  58990. paw: {
  58991. height: math.unit(1.9, "feet"),
  58992. name: "Paw",
  58993. image: {
  58994. source: "./media/characters/mystra/paw.svg"
  58995. }
  58996. },
  58997. },
  58998. [
  58999. {
  59000. name: "Incognito",
  59001. height: math.unit(2.3, "meters")
  59002. },
  59003. {
  59004. name: "Small Macro",
  59005. height: math.unit(300, "meters")
  59006. },
  59007. {
  59008. name: "Small Mega",
  59009. height: math.unit(2, "km")
  59010. },
  59011. {
  59012. name: "Mega",
  59013. height: math.unit(30, "km")
  59014. },
  59015. {
  59016. name: "Small Giga",
  59017. height: math.unit(100, "km")
  59018. },
  59019. {
  59020. name: "Giga",
  59021. height: math.unit(1000, "km"),
  59022. default: true
  59023. },
  59024. {
  59025. name: "Continental",
  59026. height: math.unit(5000, "km")
  59027. },
  59028. {
  59029. name: "Terra",
  59030. height: math.unit(20000, "km")
  59031. },
  59032. {
  59033. name: "Solar",
  59034. height: math.unit(2e6, "km")
  59035. },
  59036. {
  59037. name: "Galactic",
  59038. height: math.unit(528502, "lightyears")
  59039. },
  59040. {
  59041. name: "Universal",
  59042. height: math.unit(20, "universes")
  59043. },
  59044. ]
  59045. ))
  59046. characterMakers.push(() => makeCharacter(
  59047. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59048. {
  59049. front: {
  59050. height: math.unit(2, "meters"),
  59051. weight: math.unit(140, "kg"),
  59052. name: "Front",
  59053. image: {
  59054. source: "./media/characters/caleb/front.svg",
  59055. extra: 873/817,
  59056. bottom: 47/920
  59057. }
  59058. },
  59059. back: {
  59060. height: math.unit(2, "meters"),
  59061. weight: math.unit(140, "kg"),
  59062. name: "Back",
  59063. image: {
  59064. source: "./media/characters/caleb/back.svg",
  59065. extra: 877/828,
  59066. bottom: 24/901
  59067. }
  59068. },
  59069. snakeTail: {
  59070. height: math.unit(1.44, "feet"),
  59071. name: "Snake Tail",
  59072. image: {
  59073. source: "./media/characters/caleb/snake-tail.svg"
  59074. }
  59075. },
  59076. dick: {
  59077. height: math.unit(2.6, "feet"),
  59078. name: "Dick",
  59079. image: {
  59080. source: "./media/characters/caleb/dick.svg"
  59081. }
  59082. },
  59083. },
  59084. [
  59085. {
  59086. name: "Incognito",
  59087. height: math.unit(3, "meters")
  59088. },
  59089. {
  59090. name: "Home Size",
  59091. height: math.unit(200, "meters"),
  59092. default: true
  59093. },
  59094. {
  59095. name: "Macro",
  59096. height: math.unit(500, "meters")
  59097. },
  59098. {
  59099. name: "Big Macro",
  59100. height: math.unit(5, "km")
  59101. },
  59102. {
  59103. name: "Giga",
  59104. height: math.unit(250, "km")
  59105. },
  59106. {
  59107. name: "Giga+",
  59108. height: math.unit(5000, "km")
  59109. },
  59110. {
  59111. name: "Small Terra",
  59112. height: math.unit(35e3, "km")
  59113. },
  59114. {
  59115. name: "Terra",
  59116. height: math.unit(2e6, "km")
  59117. },
  59118. {
  59119. name: "Terra+",
  59120. height: math.unit(1.5e6, "km")
  59121. },
  59122. ]
  59123. ))
  59124. characterMakers.push(() => makeCharacter(
  59125. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59126. {
  59127. front: {
  59128. height: math.unit(2, "meters"),
  59129. weight: math.unit(120, "kg"),
  59130. name: "Front",
  59131. image: {
  59132. source: "./media/characters/gilirian/front.svg",
  59133. extra: 805/737,
  59134. bottom: 13/818
  59135. }
  59136. },
  59137. side: {
  59138. height: math.unit(2, "meters"),
  59139. weight: math.unit(120, "kg"),
  59140. name: "Side",
  59141. image: {
  59142. source: "./media/characters/gilirian/side.svg",
  59143. extra: 810/746,
  59144. bottom: 6/816
  59145. }
  59146. },
  59147. back: {
  59148. height: math.unit(2, "meters"),
  59149. weight: math.unit(120, "kg"),
  59150. name: "Back",
  59151. image: {
  59152. source: "./media/characters/gilirian/back.svg",
  59153. extra: 815/745,
  59154. bottom: 15/830
  59155. }
  59156. },
  59157. frontNsfw: {
  59158. height: math.unit(2, "meters"),
  59159. weight: math.unit(120, "kg"),
  59160. name: "Front (NSFW)",
  59161. image: {
  59162. source: "./media/characters/gilirian/front-nsfw.svg",
  59163. extra: 805/737,
  59164. bottom: 13/818
  59165. }
  59166. },
  59167. sideNsfw: {
  59168. height: math.unit(2, "meters"),
  59169. weight: math.unit(120, "kg"),
  59170. name: "Side (NSFW)",
  59171. image: {
  59172. source: "./media/characters/gilirian/side-nsfw.svg",
  59173. extra: 810/746,
  59174. bottom: 6/816
  59175. }
  59176. },
  59177. },
  59178. [
  59179. {
  59180. name: "Incognito",
  59181. height: math.unit(2, "meters"),
  59182. default: true
  59183. },
  59184. {
  59185. name: "Macro",
  59186. height: math.unit(250, "meters")
  59187. },
  59188. {
  59189. name: "Big Macro",
  59190. height: math.unit(1500, "meters")
  59191. },
  59192. {
  59193. name: "Mega",
  59194. height: math.unit(40, "km")
  59195. },
  59196. {
  59197. name: "Giga",
  59198. height: math.unit(300, "km")
  59199. },
  59200. {
  59201. name: "Extra Giga",
  59202. height: math.unit(5000, "km")
  59203. },
  59204. {
  59205. name: "Small Terra",
  59206. height: math.unit(10e3, "km")
  59207. },
  59208. {
  59209. name: "Terra",
  59210. height: math.unit(3e5, "km")
  59211. },
  59212. {
  59213. name: "Galactic",
  59214. height: math.unit(369950, "lightyears")
  59215. },
  59216. ]
  59217. ))
  59218. characterMakers.push(() => makeCharacter(
  59219. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59220. {
  59221. front: {
  59222. height: math.unit(2.5, "meters"),
  59223. weight: math.unit(230, "lb"),
  59224. name: "Front",
  59225. image: {
  59226. source: "./media/characters/tarken/front.svg",
  59227. extra: 764/720,
  59228. bottom: 49/813
  59229. }
  59230. },
  59231. back: {
  59232. height: math.unit(2.5, "meters"),
  59233. weight: math.unit(230, "lb"),
  59234. name: "Back",
  59235. image: {
  59236. source: "./media/characters/tarken/back.svg",
  59237. extra: 756/720,
  59238. bottom: 35/791
  59239. }
  59240. },
  59241. frontNsfw: {
  59242. height: math.unit(2.5, "meters"),
  59243. weight: math.unit(230, "lb"),
  59244. name: "Front (NSFW)",
  59245. image: {
  59246. source: "./media/characters/tarken/front-nsfw.svg",
  59247. extra: 764/720,
  59248. bottom: 49/813
  59249. }
  59250. },
  59251. backNsfw: {
  59252. height: math.unit(2.5, "meters"),
  59253. weight: math.unit(230, "lb"),
  59254. name: "Back (NSFW)",
  59255. image: {
  59256. source: "./media/characters/tarken/back-nsfw.svg",
  59257. extra: 756/720,
  59258. bottom: 35/791
  59259. }
  59260. },
  59261. head: {
  59262. height: math.unit(2.22, "feet"),
  59263. name: "Head",
  59264. image: {
  59265. source: "./media/characters/tarken/head.svg"
  59266. }
  59267. },
  59268. tail: {
  59269. height: math.unit(5.25, "feet"),
  59270. name: "Tail",
  59271. image: {
  59272. source: "./media/characters/tarken/tail.svg"
  59273. }
  59274. },
  59275. dick: {
  59276. height: math.unit(1.95, "feet"),
  59277. name: "Dick",
  59278. image: {
  59279. source: "./media/characters/tarken/dick.svg"
  59280. }
  59281. },
  59282. hand: {
  59283. height: math.unit(1.78, "feet"),
  59284. name: "Hand",
  59285. image: {
  59286. source: "./media/characters/tarken/hand.svg"
  59287. }
  59288. },
  59289. beam: {
  59290. height: math.unit(1.5, "feet"),
  59291. name: "Beam",
  59292. image: {
  59293. source: "./media/characters/tarken/beam.svg"
  59294. }
  59295. },
  59296. },
  59297. [
  59298. {
  59299. name: "Original Size",
  59300. height: math.unit(2.5, "meters")
  59301. },
  59302. {
  59303. name: "Macro",
  59304. height: math.unit(150, "meters"),
  59305. default: true
  59306. },
  59307. {
  59308. name: "Macro+",
  59309. height: math.unit(300, "meters")
  59310. },
  59311. {
  59312. name: "Mega",
  59313. height: math.unit(2, "km")
  59314. },
  59315. {
  59316. name: "Mega+",
  59317. height: math.unit(35, "km")
  59318. },
  59319.  {
  59320. name: "Mega++",
  59321. height: math.unit(60, "km")
  59322. },
  59323. {
  59324. name: "Giga",
  59325. height: math.unit(200, "km")
  59326. },
  59327. {
  59328. name: "Giga+",
  59329. height: math.unit(2500, "km")
  59330. },
  59331. {
  59332. name: "Giga++",
  59333. height: math.unit(6600, "km")
  59334. },
  59335. {
  59336. name: "Terra",
  59337. height: math.unit(20000, "km")
  59338. },
  59339. {
  59340. name: "Terra+",
  59341. height: math.unit(300000, "km")
  59342. },
  59343. ]
  59344. ))
  59345. characterMakers.push(() => makeCharacter(
  59346. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59347. {
  59348. magpie_dressed: {
  59349. height: math.unit(1.7, "meters"),
  59350. weight: math.unit(70, "kg"),
  59351. name: "Dressed",
  59352. image: {
  59353. source: "./media/characters/otreus/magpie-dressed.svg",
  59354. extra: 691/672,
  59355. bottom: 116/807
  59356. },
  59357. form: "magpie",
  59358. default: true
  59359. },
  59360. magpie_nude: {
  59361. height: math.unit(1.7, "meters"),
  59362. weight: math.unit(70, "kg"),
  59363. name: "Nude",
  59364. image: {
  59365. source: "./media/characters/otreus/magpie-nude.svg",
  59366. extra: 691/672,
  59367. bottom: 116/807
  59368. },
  59369. form: "magpie",
  59370. },
  59371. magpie_dressedLewd: {
  59372. height: math.unit(1.7, "meters"),
  59373. weight: math.unit(70, "kg"),
  59374. name: "Dressed (Lewd)",
  59375. image: {
  59376. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59377. extra: 691/672,
  59378. bottom: 116/807
  59379. },
  59380. form: "magpie",
  59381. },
  59382. magpie_nudeLewd: {
  59383. height: math.unit(1.7, "meters"),
  59384. weight: math.unit(70, "kg"),
  59385. name: "Nude (Lewd)",
  59386. image: {
  59387. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59388. extra: 691/672,
  59389. bottom: 116/807
  59390. },
  59391. form: "magpie",
  59392. },
  59393. magpie_leftFoot: {
  59394. height: math.unit(1.58, "feet"),
  59395. name: "Left Foot",
  59396. image: {
  59397. source: "./media/characters/otreus/magpie-left-foot.svg"
  59398. },
  59399. form: "magpie",
  59400. },
  59401. magpie_rightFoot: {
  59402. height: math.unit(1.58, "feet"),
  59403. name: "Right Foot",
  59404. image: {
  59405. source: "./media/characters/otreus/magpie-right-foot.svg"
  59406. },
  59407. form: "magpie",
  59408. },
  59409. magpie_wingspan: {
  59410. height: math.unit(2, "meters"),
  59411. weight: math.unit(70, "kg"),
  59412. name: "Wingspan",
  59413. image: {
  59414. source: "./media/characters/otreus/magpie-wingspan.svg"
  59415. },
  59416. extraAttributes: {
  59417. "wingspan": {
  59418. name: "Wingspan",
  59419. power: 1,
  59420. type: "length",
  59421. base: math.unit(3.35, "meters")
  59422. },
  59423. },
  59424. form: "magpie",
  59425. },
  59426. hippogriff_dressed: {
  59427. height: math.unit(1.7, "meters"),
  59428. weight: math.unit(70, "kg"),
  59429. name: "Dressed",
  59430. image: {
  59431. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59432. extra: 710/689,
  59433. bottom: 67/777
  59434. },
  59435. form: "hippogriff",
  59436. default: true
  59437. },
  59438. hippogriff_nude: {
  59439. height: math.unit(1.7, "meters"),
  59440. weight: math.unit(70, "kg"),
  59441. name: "Nude",
  59442. image: {
  59443. source: "./media/characters/otreus/hippogriff-nude.svg",
  59444. extra: 710/689,
  59445. bottom: 67/777
  59446. },
  59447. form: "hippogriff",
  59448. },
  59449. hippogriff_dressedLewd: {
  59450. height: math.unit(1.7, "meters"),
  59451. weight: math.unit(70, "kg"),
  59452. name: "Dressed (Lewd)",
  59453. image: {
  59454. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59455. extra: 710/689,
  59456. bottom: 67/777
  59457. },
  59458. form: "hippogriff",
  59459. },
  59460. hippogriff_nudeLewd: {
  59461. height: math.unit(1.7, "meters"),
  59462. weight: math.unit(70, "kg"),
  59463. name: "Nude (Lewd)",
  59464. image: {
  59465. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59466. extra: 710/689,
  59467. bottom: 67/777
  59468. },
  59469. form: "hippogriff",
  59470. },
  59471. },
  59472. [
  59473. {
  59474. name: "Original Size",
  59475. height: math.unit(1.7, "meters"),
  59476. allForms: true
  59477. },
  59478. {
  59479. name: "Incognito Size",
  59480. height: math.unit(2, "meters"),
  59481. allForms: true
  59482. },
  59483. {
  59484. name: "Mega",
  59485. height: math.unit(2, "km"),
  59486. allForms: true
  59487. },
  59488. {
  59489. name: "Mega+",
  59490. height: math.unit(40, "km"),
  59491. allForms: true
  59492. },
  59493. {
  59494. name: "Giga",
  59495. height: math.unit(250, "km"),
  59496. allForms: true
  59497. },
  59498. {
  59499. name: "Giga+",
  59500. height: math.unit(3000, "km"),
  59501. allForms: true
  59502. },
  59503. {
  59504. name: "Terra",
  59505. height: math.unit(20000, "km"),
  59506. allForms: true
  59507. },
  59508. {
  59509. name: "Solar (Home Size)",
  59510. height: math.unit(3e6, "km"),
  59511. allForms: true,
  59512. default: true
  59513. },
  59514. ],
  59515. {
  59516. "magpie": {
  59517. name: "Magpie",
  59518. default: true
  59519. },
  59520. "hippogriff": {
  59521. name: "Hippogriff",
  59522. },
  59523. }
  59524. ))
  59525. characterMakers.push(() => makeCharacter(
  59526. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59527. {
  59528. frontDressed: {
  59529. height: math.unit(1.8, "meters"),
  59530. weight: math.unit(90, "kg"),
  59531. name: "Front (Dressed)",
  59532. image: {
  59533. source: "./media/characters/thalia/front-dressed.svg",
  59534. extra: 478/402,
  59535. bottom: 55/533
  59536. }
  59537. },
  59538. backDressed: {
  59539. height: math.unit(1.8, "meters"),
  59540. weight: math.unit(90, "kg"),
  59541. name: "Back (Dressed)",
  59542. image: {
  59543. source: "./media/characters/thalia/back-dressed.svg",
  59544. extra: 500/424,
  59545. bottom: 15/515
  59546. }
  59547. },
  59548. frontNude: {
  59549. height: math.unit(1.8, "meters"),
  59550. weight: math.unit(90, "kg"),
  59551. name: "Front (Nude)",
  59552. image: {
  59553. source: "./media/characters/thalia/front-nude.svg",
  59554. extra: 478/402,
  59555. bottom: 55/533
  59556. }
  59557. },
  59558. backNude: {
  59559. height: math.unit(1.8, "meters"),
  59560. weight: math.unit(90, "kg"),
  59561. name: "Back (Nude)",
  59562. image: {
  59563. source: "./media/characters/thalia/back-nude.svg",
  59564. extra: 500/424,
  59565. bottom: 15/515
  59566. }
  59567. },
  59568. },
  59569. [
  59570. {
  59571. name: "Incognito",
  59572. height: math.unit(3, "meters")
  59573. },
  59574. {
  59575. name: "Macro",
  59576. height: math.unit(500, "meters")
  59577. },
  59578. {
  59579. name: "Mega",
  59580. height: math.unit(5, "km")
  59581. },
  59582. {
  59583. name: "Mega+",
  59584. height: math.unit(30, "km")
  59585. },
  59586. {
  59587. name: "Giga",
  59588. height: math.unit(350, "km")
  59589. },
  59590. {
  59591. name: "Giga+",
  59592. height: math.unit(4000, "km")
  59593. },
  59594. {
  59595. name: "Terra",
  59596. height: math.unit(35000, "km")
  59597. },
  59598. {
  59599. name: "Original Size",
  59600. height: math.unit(130000, "km")
  59601. },
  59602. {
  59603. name: "Solar (Home Size)",
  59604. height: math.unit(4e6, "km"),
  59605. default: true
  59606. },
  59607. ]
  59608. ))
  59609. characterMakers.push(() => makeCharacter(
  59610. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59611. {
  59612. front: {
  59613. height: math.unit(1.8, "meters"),
  59614. weight: math.unit(95, "kg"),
  59615. name: "Front",
  59616. image: {
  59617. source: "./media/characters/shango/front.svg",
  59618. extra: 1925/1774,
  59619. bottom: 67/1992
  59620. }
  59621. },
  59622. back: {
  59623. height: math.unit(1.8, "meters"),
  59624. weight: math.unit(95, "kg"),
  59625. name: "Back",
  59626. image: {
  59627. source: "./media/characters/shango/back.svg",
  59628. extra: 1915/1766,
  59629. bottom: 52/1967
  59630. }
  59631. },
  59632. frontLewd: {
  59633. height: math.unit(1.8, "meters"),
  59634. weight: math.unit(95, "kg"),
  59635. name: "Front (Lewd)",
  59636. image: {
  59637. source: "./media/characters/shango/front-lewd.svg",
  59638. extra: 1925/1774,
  59639. bottom: 67/1992
  59640. }
  59641. },
  59642. backLewd: {
  59643. height: math.unit(1.8, "meters"),
  59644. weight: math.unit(95, "kg"),
  59645. name: "Back (Lewd)",
  59646. image: {
  59647. source: "./media/characters/shango/back-lewd.svg",
  59648. extra: 1915/1766,
  59649. bottom: 52/1967
  59650. }
  59651. },
  59652. maw: {
  59653. height: math.unit(1.64, "feet"),
  59654. name: "Maw",
  59655. image: {
  59656. source: "./media/characters/shango/maw.svg"
  59657. }
  59658. },
  59659. dick: {
  59660. height: math.unit(2.14, "feet"),
  59661. name: "Dick",
  59662. image: {
  59663. source: "./media/characters/shango/dick.svg"
  59664. }
  59665. },
  59666. },
  59667. [
  59668. {
  59669. name: "Incognito",
  59670. height: math.unit(1.8, "meters")
  59671. },
  59672. {
  59673. name: "Home Size",
  59674. height: math.unit(60, "meters"),
  59675. default: true
  59676. },
  59677. {
  59678. name: "Macro",
  59679. height: math.unit(450, "meters")
  59680. },
  59681. {
  59682. name: "Mega",
  59683. height: math.unit(6, "km")
  59684. },
  59685. {
  59686. name: "Mega+",
  59687. height: math.unit(35, "km")
  59688. },
  59689. {
  59690. name: "Giga",
  59691. height: math.unit(500, "km")
  59692. },
  59693. {
  59694. name: "Giga+",
  59695. height: math.unit(5000, "km")
  59696. },
  59697. {
  59698. name: "Terra",
  59699. height: math.unit(60000, "km")
  59700. },
  59701. {
  59702. name: "Terra+",
  59703. height: math.unit(400000, "km")
  59704. },
  59705. ]
  59706. ))
  59707. characterMakers.push(() => makeCharacter(
  59708. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59709. {
  59710. front: {
  59711. height: math.unit(2, "meters"),
  59712. weight: math.unit(95, "kg"),
  59713. name: "Front",
  59714. image: {
  59715. source: "./media/characters/osiris-gryphon/front.svg",
  59716. extra: 1508/1313,
  59717. bottom: 87/1595
  59718. }
  59719. },
  59720. back: {
  59721. height: math.unit(2, "meters"),
  59722. weight: math.unit(95, "kg"),
  59723. name: "Back",
  59724. image: {
  59725. source: "./media/characters/osiris-gryphon/back.svg",
  59726. extra: 1436/1309,
  59727. bottom: 64/1500
  59728. }
  59729. },
  59730. frontLewd: {
  59731. height: math.unit(2, "meters"),
  59732. weight: math.unit(95, "kg"),
  59733. name: "Front-lewd",
  59734. image: {
  59735. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59736. extra: 1508/1313,
  59737. bottom: 87/1595
  59738. }
  59739. },
  59740. wing: {
  59741. height: math.unit(6.3333, "feet"),
  59742. name: "Wing",
  59743. image: {
  59744. source: "./media/characters/osiris-gryphon/wing.svg"
  59745. }
  59746. },
  59747. },
  59748. [
  59749. {
  59750. name: "Incognito",
  59751. height: math.unit(2, "meters")
  59752. },
  59753. {
  59754. name: "Home Size",
  59755. height: math.unit(30, "meters"),
  59756. default: true
  59757. },
  59758. {
  59759. name: "Macro",
  59760. height: math.unit(100, "meters")
  59761. },
  59762. {
  59763. name: "Macro+",
  59764. height: math.unit(350, "meters")
  59765. },
  59766. {
  59767. name: "Mega",
  59768. height: math.unit(40, "km")
  59769. },
  59770. {
  59771. name: "Giga",
  59772. height: math.unit(300, "km")
  59773. },
  59774. {
  59775. name: "Giga+",
  59776. height: math.unit(2000, "km")
  59777. },
  59778. {
  59779. name: "Terra",
  59780. height: math.unit(30000, "km")
  59781. },
  59782. ]
  59783. ))
  59784. characterMakers.push(() => makeCharacter(
  59785. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59786. {
  59787. front: {
  59788. height: math.unit(2.5, "meters"),
  59789. weight: math.unit(200, "kg"),
  59790. name: "Front",
  59791. image: {
  59792. source: "./media/characters/atlas-dragon/front.svg",
  59793. extra: 745/462,
  59794. bottom: 36/781
  59795. }
  59796. },
  59797. back: {
  59798. height: math.unit(2.5, "meters"),
  59799. weight: math.unit(200, "kg"),
  59800. name: "Back",
  59801. image: {
  59802. source: "./media/characters/atlas-dragon/back.svg",
  59803. extra: 848/822,
  59804. bottom: 57/905
  59805. }
  59806. },
  59807. frontLewd: {
  59808. height: math.unit(2.5, "meters"),
  59809. weight: math.unit(200, "kg"),
  59810. name: "Front (Lewd)",
  59811. image: {
  59812. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59813. extra: 745/462,
  59814. bottom: 36/781
  59815. }
  59816. },
  59817. backLewd: {
  59818. height: math.unit(2.5, "meters"),
  59819. weight: math.unit(200, "kg"),
  59820. name: "Back (Lewd)",
  59821. image: {
  59822. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59823. extra: 848/822,
  59824. bottom: 57/905
  59825. }
  59826. },
  59827. },
  59828. [
  59829. {
  59830. name: "Incognito",
  59831. height: math.unit(2.5, "meters")
  59832. },
  59833. {
  59834. name: "Small Macro",
  59835. height: math.unit(50, "meters")
  59836. },
  59837. {
  59838. name: "Macro",
  59839. height: math.unit(350, "meters")
  59840. },
  59841. {
  59842. name: "Mega",
  59843. height: math.unit(5.5, "kilometers")
  59844. },
  59845. {
  59846. name: "Mega+",
  59847. height: math.unit(50, "km")
  59848. },
  59849. {
  59850. name: "Giga",
  59851. height: math.unit(350, "km")
  59852. },
  59853. {
  59854. name: "Giga+",
  59855. height: math.unit(2000, "km")
  59856. },
  59857. {
  59858. name: "Giga++",
  59859. height: math.unit(6500, "km")
  59860. },
  59861. {
  59862. name: "Terra",
  59863. height: math.unit(30000, "km")
  59864. },
  59865. {
  59866. name: "Terra+",
  59867. height: math.unit(250000, "km")
  59868. },
  59869. {
  59870. name: "True Size",
  59871. height: math.unit(100, "multiverses"),
  59872. default: true
  59873. },
  59874. ]
  59875. ))
  59876. characterMakers.push(() => makeCharacter(
  59877. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59878. {
  59879. front: {
  59880. height: math.unit(1.8, "m"),
  59881. weight: math.unit(120, "kg"),
  59882. name: "Front",
  59883. image: {
  59884. source: "./media/characters/chey/front.svg",
  59885. extra: 1359/1270,
  59886. bottom: 18/1377
  59887. }
  59888. },
  59889. arm: {
  59890. height: math.unit(2.05, "feet"),
  59891. name: "Arm",
  59892. image: {
  59893. source: "./media/characters/chey/arm.svg"
  59894. }
  59895. },
  59896. head: {
  59897. height: math.unit(1.89, "feet"),
  59898. name: "Head",
  59899. image: {
  59900. source: "./media/characters/chey/head.svg"
  59901. }
  59902. },
  59903. },
  59904. [
  59905. {
  59906. name: "Original Size",
  59907. height: math.unit(5, "cm")
  59908. },
  59909. {
  59910. name: "Incognito Size",
  59911. height: math.unit(2.4, "m")
  59912. },
  59913. {
  59914. name: "Home Size",
  59915. height: math.unit(200, "meters"),
  59916. default: true
  59917. },
  59918. {
  59919. name: "Mega",
  59920. height: math.unit(2, "km")
  59921. },
  59922. {
  59923. name: "Giga (Preferred Size)",
  59924. height: math.unit(2000, "km")
  59925. },
  59926. {
  59927. name: "Giga+",
  59928. height: math.unit(6000, "km")
  59929. },
  59930. {
  59931. name: "Terra",
  59932. height: math.unit(17000, "km")
  59933. },
  59934. {
  59935. name: "Terra+",
  59936. height: math.unit(75000, "km")
  59937. },
  59938. {
  59939. name: "Terra++",
  59940. height: math.unit(225000, "km")
  59941. },
  59942. ]
  59943. ))
  59944. characterMakers.push(() => makeCharacter(
  59945. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59946. {
  59947. side: {
  59948. height: math.unit(7.8, "meters"),
  59949. name: "Side",
  59950. image: {
  59951. source: "./media/characters/ragnarok/side.svg",
  59952. extra: 725/621,
  59953. bottom: 72/797
  59954. }
  59955. },
  59956. },
  59957. [
  59958. {
  59959. name: "Normal",
  59960. height: math.unit(7.8, "meters"),
  59961. default: true
  59962. },
  59963. ]
  59964. ))
  59965. characterMakers.push(() => makeCharacter(
  59966. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59967. {
  59968. hyena_front: {
  59969. height: math.unit(2.1, "meters"),
  59970. weight: math.unit(110, "kg"),
  59971. name: "Front",
  59972. image: {
  59973. source: "./media/characters/nima/hyena-front.svg",
  59974. extra: 1904/1796,
  59975. bottom: 67/1971
  59976. },
  59977. form: "hyena",
  59978. },
  59979. hyena_back: {
  59980. height: math.unit(2.1, "meters"),
  59981. weight: math.unit(110, "kg"),
  59982. name: "Back",
  59983. image: {
  59984. source: "./media/characters/nima/hyena-back.svg",
  59985. extra: 1964/1884,
  59986. bottom: 35/1999
  59987. },
  59988. form: "hyena",
  59989. },
  59990. shark_front: {
  59991. height: math.unit(1.95, "meters"),
  59992. weight: math.unit(110, "kg"),
  59993. name: "Front",
  59994. image: {
  59995. source: "./media/characters/nima/shark-front.svg",
  59996. extra: 2238/2013,
  59997. bottom: 0/223
  59998. },
  59999. form: "shark",
  60000. },
  60001. paw: {
  60002. height: math.unit(1, "feet"),
  60003. name: "Paw",
  60004. image: {
  60005. source: "./media/characters/nima/paw.svg"
  60006. }
  60007. },
  60008. circlet: {
  60009. height: math.unit(0.3, "feet"),
  60010. name: "Circlet",
  60011. image: {
  60012. source: "./media/characters/nima/circlet.svg"
  60013. }
  60014. },
  60015. necklace: {
  60016. height: math.unit(1.2, "feet"),
  60017. name: "Necklace",
  60018. image: {
  60019. source: "./media/characters/nima/necklace.svg"
  60020. }
  60021. },
  60022. bracelet: {
  60023. height: math.unit(0.51, "feet"),
  60024. name: "Bracelet",
  60025. image: {
  60026. source: "./media/characters/nima/bracelet.svg"
  60027. }
  60028. },
  60029. armband: {
  60030. height: math.unit(1.3, "feet"),
  60031. name: "Armband",
  60032. image: {
  60033. source: "./media/characters/nima/armband.svg"
  60034. }
  60035. },
  60036. },
  60037. [
  60038. {
  60039. name: "Incognito",
  60040. height: math.unit(2.1, "meters"),
  60041. allForms: true
  60042. },
  60043. {
  60044. name: "Small Macro",
  60045. height: math.unit(50, "meters"),
  60046. allForms: true
  60047. },
  60048. {
  60049. name: "Macro",
  60050. height: math.unit(200, "meters"),
  60051. allForms: true
  60052. },
  60053. {
  60054. name: "Mega",
  60055. height: math.unit(2.5, "km"),
  60056. allForms: true
  60057. },
  60058. {
  60059. name: "Mega+",
  60060. height: math.unit(30, "km"),
  60061. allForms: true
  60062. },
  60063. {
  60064. name: "Giga (Home Size)",
  60065. height: math.unit(400, "km"),
  60066. allForms: true,
  60067. default: true
  60068. },
  60069. {
  60070. name: "Giga+",
  60071. height: math.unit(2500, "km"),
  60072. allForms: true
  60073. },
  60074. {
  60075. name: "Giga++",
  60076. height: math.unit(8000, "km"),
  60077. allForms: true
  60078. },
  60079. {
  60080. name: "Terra",
  60081. height: math.unit(20000, "km"),
  60082. allForms: true
  60083. },
  60084. {
  60085. name: "Terra+",
  60086. height: math.unit(70000, "km"),
  60087. allForms: true
  60088. },
  60089. {
  60090. name: "Terra++",
  60091. height: math.unit(600000, "km"),
  60092. allForms: true
  60093. },
  60094. {
  60095. name: "Galactic",
  60096. height: math.unit(40, "galaxies"),
  60097. allForms: true
  60098. },
  60099. {
  60100. name: "Universal",
  60101. height: math.unit(40, "universes"),
  60102. allForms: true
  60103. },
  60104. ],
  60105. {
  60106. "hyena": {
  60107. name: "Hyena",
  60108. default: true
  60109. },
  60110. "shark": {
  60111. name: "Shark",
  60112. },
  60113. }
  60114. ))
  60115. characterMakers.push(() => makeCharacter(
  60116. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60117. {
  60118. anthro_front: {
  60119. height: math.unit(1.5, "meters"),
  60120. name: "Front",
  60121. image: {
  60122. source: "./media/characters/adelaide/anthro-front.svg",
  60123. extra: 860/783,
  60124. bottom: 60/920
  60125. },
  60126. form: "anthro",
  60127. default: true
  60128. },
  60129. hand: {
  60130. height: math.unit(0.65, "feet"),
  60131. name: "Hand",
  60132. image: {
  60133. source: "./media/characters/adelaide/hand.svg"
  60134. },
  60135. form: "anthro"
  60136. },
  60137. foot: {
  60138. height: math.unit(1.38 * 259 / 314, "feet"),
  60139. name: "Foot",
  60140. image: {
  60141. source: "./media/characters/adelaide/foot.svg",
  60142. extra: 259/259,
  60143. bottom: 55/314
  60144. },
  60145. form: "anthro"
  60146. },
  60147. feather: {
  60148. height: math.unit(0.85, "feet"),
  60149. name: "Feather",
  60150. image: {
  60151. source: "./media/characters/adelaide/feather.svg"
  60152. },
  60153. form: "anthro"
  60154. },
  60155. feral_side: {
  60156. height: math.unit(1, "meters"),
  60157. name: "Side",
  60158. image: {
  60159. source: "./media/characters/adelaide/feral-side.svg",
  60160. extra: 550/467,
  60161. bottom: 37/587
  60162. },
  60163. form: "feral",
  60164. default: true
  60165. },
  60166. feral_hand: {
  60167. height: math.unit(0.58, "feet"),
  60168. name: "Hand",
  60169. image: {
  60170. source: "./media/characters/adelaide/hand.svg"
  60171. },
  60172. form: "feral"
  60173. },
  60174. feral_foot: {
  60175. height: math.unit(1.2 * 259 / 314, "feet"),
  60176. name: "Foot",
  60177. image: {
  60178. source: "./media/characters/adelaide/foot.svg",
  60179. extra: 259/259,
  60180. bottom: 55/314
  60181. },
  60182. form: "feral"
  60183. },
  60184. feral_feather: {
  60185. height: math.unit(0.63, "feet"),
  60186. name: "Feather",
  60187. image: {
  60188. source: "./media/characters/adelaide/feather.svg"
  60189. },
  60190. form: "feral"
  60191. },
  60192. },
  60193. [
  60194. {
  60195. name: "Normal",
  60196. height: math.unit(1.5, "meters"),
  60197. form: "anthro",
  60198. default: true
  60199. },
  60200. {
  60201. name: "Normal",
  60202. height: math.unit(1, "meters"),
  60203. form: "feral",
  60204. default: true
  60205. },
  60206. ],
  60207. {
  60208. "anthro": {
  60209. name: "Anthro",
  60210. default: true
  60211. },
  60212. "feral": {
  60213. name: "Feral",
  60214. },
  60215. }
  60216. ))
  60217. characterMakers.push(() => makeCharacter(
  60218. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60219. {
  60220. front: {
  60221. height: math.unit(2.5, "meters"),
  60222. name: "Front",
  60223. image: {
  60224. source: "./media/characters/goa/front.svg",
  60225. extra: 1109/1013,
  60226. bottom: 150/1259
  60227. }
  60228. },
  60229. },
  60230. [
  60231. {
  60232. name: "Normal",
  60233. height: math.unit(2.5, "meters"),
  60234. default: true
  60235. },
  60236. ]
  60237. ))
  60238. characterMakers.push(() => makeCharacter(
  60239. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60240. {
  60241. front: {
  60242. height: math.unit(2, "meters"),
  60243. weight: math.unit(100, "kg"),
  60244. name: "Front",
  60245. image: {
  60246. source: "./media/characters/kiki-weavile/front.svg",
  60247. extra: 357/332,
  60248. bottom: 60/417
  60249. }
  60250. },
  60251. },
  60252. [
  60253. {
  60254. name: "Normal",
  60255. height: math.unit(2, "meters"),
  60256. default: true
  60257. },
  60258. ]
  60259. ))
  60260. characterMakers.push(() => makeCharacter(
  60261. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60262. {
  60263. side: {
  60264. height: math.unit(1.6, "meters"),
  60265. name: "Side",
  60266. image: {
  60267. source: "./media/characters/liza/side.svg",
  60268. extra: 943/915,
  60269. bottom: 72/1015
  60270. }
  60271. },
  60272. },
  60273. [
  60274. {
  60275. name: "Normal",
  60276. height: math.unit(1.6, "meters"),
  60277. default: true
  60278. },
  60279. ]
  60280. ))
  60281. characterMakers.push(() => makeCharacter(
  60282. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60283. {
  60284. side: {
  60285. height: math.unit(2.5, "meters"),
  60286. preyCapacity: math.unit(1, "people"),
  60287. name: "Side",
  60288. image: {
  60289. source: "./media/characters/persephone-sweetbreath/side.svg",
  60290. extra: 796/700,
  60291. bottom: 44/840
  60292. }
  60293. },
  60294. sideVore: {
  60295. height: math.unit(2.5, "meters"),
  60296. preyCapacity: math.unit(1, "people"),
  60297. name: "Side (Full)",
  60298. image: {
  60299. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60300. extra: 796/700,
  60301. bottom: 44/840
  60302. }
  60303. },
  60304. },
  60305. [
  60306. {
  60307. name: "Normal",
  60308. height: math.unit(2.5, "meters"),
  60309. default: true
  60310. },
  60311. ]
  60312. ))
  60313. characterMakers.push(() => makeCharacter(
  60314. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60315. {
  60316. front: {
  60317. height: math.unit(32, "meters"),
  60318. name: "Front",
  60319. image: {
  60320. source: "./media/characters/pierce/front.svg",
  60321. extra: 1695/1475,
  60322. bottom: 185/1880
  60323. }
  60324. },
  60325. side: {
  60326. height: math.unit(32, "meters"),
  60327. name: "Side",
  60328. image: {
  60329. source: "./media/characters/pierce/side.svg",
  60330. extra: 974/859,
  60331. bottom: 43/1017
  60332. }
  60333. },
  60334. frontWingless: {
  60335. height: math.unit(32, "meters"),
  60336. name: "Front (Wingless)",
  60337. image: {
  60338. source: "./media/characters/pierce/front-wingless.svg",
  60339. extra: 1695/1475,
  60340. bottom: 185/1880
  60341. }
  60342. },
  60343. sideWingless: {
  60344. height: math.unit(32, "meters"),
  60345. name: "Side (Wingless)",
  60346. image: {
  60347. source: "./media/characters/pierce/side-wingless.svg",
  60348. extra: 974/859,
  60349. bottom: 43/1017
  60350. }
  60351. },
  60352. maw: {
  60353. height: math.unit(19.3, "meters"),
  60354. name: "Maw",
  60355. image: {
  60356. source: "./media/characters/pierce/maw.svg"
  60357. }
  60358. },
  60359. },
  60360. [
  60361. {
  60362. name: "Small",
  60363. height: math.unit(8.5, "meters")
  60364. },
  60365. {
  60366. name: "Normal",
  60367. height: math.unit(32, "meters"),
  60368. default: true
  60369. },
  60370. ]
  60371. ))
  60372. characterMakers.push(() => makeCharacter(
  60373. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60374. {
  60375. front: {
  60376. height: math.unit(2.3, "meters"),
  60377. weight: math.unit(165, "kg"),
  60378. name: "Front",
  60379. image: {
  60380. source: "./media/characters/shira/front.svg",
  60381. extra: 924/919,
  60382. bottom: 17/941
  60383. },
  60384. form: "cobra",
  60385. default: true
  60386. },
  60387. back: {
  60388. height: math.unit(2.3, "meters"),
  60389. weight: math.unit(165, "kg"),
  60390. name: "Back",
  60391. image: {
  60392. source: "./media/characters/shira/back.svg",
  60393. extra: 928/922,
  60394. bottom: 18/946
  60395. },
  60396. form: "cobra"
  60397. },
  60398. frontLewd: {
  60399. height: math.unit(2.3, "meters"),
  60400. weight: math.unit(165, "kg"),
  60401. name: "Front (Lewd)",
  60402. image: {
  60403. source: "./media/characters/shira/front-lewd.svg",
  60404. extra: 924/919,
  60405. bottom: 17/941
  60406. },
  60407. form: "cobra"
  60408. },
  60409. backLewd: {
  60410. height: math.unit(2.3, "meters"),
  60411. weight: math.unit(165, "kg"),
  60412. name: "Back (Lewd)",
  60413. image: {
  60414. source: "./media/characters/shira/back-lewd.svg",
  60415. extra: 928/922,
  60416. bottom: 18/946
  60417. },
  60418. form: "cobra"
  60419. },
  60420. maw: {
  60421. height: math.unit(1.14, "feet"),
  60422. name: "Maw",
  60423. image: {
  60424. source: "./media/characters/shira/maw.svg"
  60425. },
  60426. form: "cobra"
  60427. },
  60428. magma_front: {
  60429. height: math.unit(2.3, "meters"),
  60430. weight: math.unit(165, "kg"),
  60431. name: "Front",
  60432. image: {
  60433. source: "./media/characters/shira/magma-front.svg",
  60434. extra: 1870/1693,
  60435. bottom: 24/1894
  60436. },
  60437. form: "magma",
  60438. },
  60439. magma_back: {
  60440. height: math.unit(2.3, "meters"),
  60441. weight: math.unit(165, "kg"),
  60442. name: "Back",
  60443. image: {
  60444. source: "./media/characters/shira/magma-back.svg",
  60445. extra: 1918/1756,
  60446. bottom: 46/1964
  60447. },
  60448. form: "magma",
  60449. },
  60450. },
  60451. [
  60452. {
  60453. name: "Incognito",
  60454. height: math.unit(2.3, "meters"),
  60455. allForms: true
  60456. },
  60457. {
  60458. name: "Home Size",
  60459. height: math.unit(150, "meters"),
  60460. default: true,
  60461. allForms: true
  60462. },
  60463. {
  60464. name: "Macro",
  60465. height: math.unit(2, "km"),
  60466. allForms: true
  60467. },
  60468. {
  60469. name: "Mega",
  60470. height: math.unit(30, "km"),
  60471. allForms: true
  60472. },
  60473. {
  60474. name: "Giga",
  60475. height: math.unit(450, "km"),
  60476. allForms: true
  60477. },
  60478. {
  60479. name: "Giga+",
  60480. height: math.unit(3000, "km"),
  60481. allForms: true
  60482. },
  60483. {
  60484. name: "Giga++",
  60485. height: math.unit(6000, "km"),
  60486. allForms: true
  60487. },
  60488. {
  60489. name: "Terra",
  60490. height: math.unit(80000, "km"),
  60491. allForms: true
  60492. },
  60493. {
  60494. name: "Terra+",
  60495. height: math.unit(350000, "km"),
  60496. allForms: true
  60497. },
  60498. {
  60499. name: "Solar",
  60500. height: math.unit(1e6, "km"),
  60501. allForms: true
  60502. },
  60503. ],
  60504. {
  60505. "cobra": {
  60506. name: "Cobra",
  60507. default: true
  60508. },
  60509. "magma": {
  60510. name: "Magma Dragon",
  60511. },
  60512. }
  60513. ))
  60514. characterMakers.push(() => makeCharacter(
  60515. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60516. {
  60517. front: {
  60518. height: math.unit(2, "meters"),
  60519. weight: math.unit(160, "kg"),
  60520. name: "Front",
  60521. image: {
  60522. source: "./media/characters/daxerios/front.svg",
  60523. extra: 1334/1277,
  60524. bottom: 45/1379
  60525. }
  60526. },
  60527. frontLewd: {
  60528. height: math.unit(2, "meters"),
  60529. weight: math.unit(160, "kg"),
  60530. name: "Front (Lewd)",
  60531. image: {
  60532. source: "./media/characters/daxerios/front-lewd.svg",
  60533. extra: 1334/1277,
  60534. bottom: 45/1379
  60535. }
  60536. },
  60537. dick: {
  60538. height: math.unit(2.35, "feet"),
  60539. name: "Dick",
  60540. image: {
  60541. source: "./media/characters/daxerios/dick.svg"
  60542. }
  60543. },
  60544. },
  60545. [
  60546. {
  60547. name: "\"Small\"",
  60548. height: math.unit(5, "meters")
  60549. },
  60550. {
  60551. name: "Original Size",
  60552. height: math.unit(500, "meters"),
  60553. default: true
  60554. },
  60555. {
  60556. name: "Mega",
  60557. height: math.unit(2, "km")
  60558. },
  60559. {
  60560. name: "Mega+",
  60561. height: math.unit(35, "km")
  60562. },
  60563. {
  60564. name: "Giga",
  60565. height: math.unit(250, "km")
  60566. },
  60567. {
  60568. name: "Giga+",
  60569. height: math.unit(3000, "km")
  60570. },
  60571. {
  60572. name: "Terra",
  60573. height: math.unit(25000, "km")
  60574. },
  60575. {
  60576. name: "Terra+",
  60577. height: math.unit(300000, "km")
  60578. },
  60579. {
  60580. name: "Solar",
  60581. height: math.unit(1e6, "km")
  60582. },
  60583. ]
  60584. ))
  60585. characterMakers.push(() => makeCharacter(
  60586. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60587. {
  60588. front: {
  60589. height: math.unit(8 + 4/12, "feet"),
  60590. weight: math.unit(464, "lb"),
  60591. name: "Front",
  60592. image: {
  60593. source: "./media/characters/caveat/front.svg",
  60594. extra: 1861/1678,
  60595. bottom: 40/1901
  60596. }
  60597. },
  60598. },
  60599. [
  60600. {
  60601. name: "Normal",
  60602. height: math.unit(8 + 4/12, "feet"),
  60603. default: true
  60604. },
  60605. ]
  60606. ))
  60607. characterMakers.push(() => makeCharacter(
  60608. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60609. {
  60610. front: {
  60611. height: math.unit(12, "feet"),
  60612. weight: math.unit(1800, "lb"),
  60613. name: "Front",
  60614. image: {
  60615. source: "./media/characters/centbair/front.svg",
  60616. extra: 781/663,
  60617. bottom: 25/806
  60618. }
  60619. },
  60620. frontNsfw: {
  60621. height: math.unit(12, "feet"),
  60622. weight: math.unit(1800, "lb"),
  60623. name: "Front (NSFW)",
  60624. image: {
  60625. source: "./media/characters/centbair/front-nsfw.svg",
  60626. extra: 781/663,
  60627. bottom: 25/806
  60628. }
  60629. },
  60630. back: {
  60631. height: math.unit(12, "feet"),
  60632. weight: math.unit(1800, "lb"),
  60633. name: "Back",
  60634. image: {
  60635. source: "./media/characters/centbair/back.svg",
  60636. extra: 808/761,
  60637. bottom: 19/827
  60638. }
  60639. },
  60640. dick: {
  60641. height: math.unit(6.5, "feet"),
  60642. name: "Dick",
  60643. image: {
  60644. source: "./media/characters/centbair/dick.svg"
  60645. }
  60646. },
  60647. slit: {
  60648. height: math.unit(3.25, "feet"),
  60649. name: "Slit",
  60650. image: {
  60651. source: "./media/characters/centbair/slit.svg"
  60652. }
  60653. },
  60654. },
  60655. [
  60656. {
  60657. name: "Normal",
  60658. height: math.unit(12, "feet"),
  60659. default: true
  60660. },
  60661. ]
  60662. ))
  60663. characterMakers.push(() => makeCharacter(
  60664. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60665. {
  60666. front: {
  60667. height: math.unit(5 + 7/12, "feet"),
  60668. name: "Front",
  60669. image: {
  60670. source: "./media/characters/andy/front.svg",
  60671. extra: 634/588,
  60672. bottom: 36/670
  60673. },
  60674. extraAttributes: {
  60675. "pawLength": {
  60676. name: "Paw Length",
  60677. power: 1,
  60678. type: "length",
  60679. base: math.unit(1, "feet")
  60680. },
  60681. }
  60682. },
  60683. side: {
  60684. height: math.unit(5 + 7/12, "feet"),
  60685. name: "Side",
  60686. image: {
  60687. source: "./media/characters/andy/side.svg",
  60688. extra: 641/596,
  60689. bottom: 34/675
  60690. },
  60691. extraAttributes: {
  60692. "pawLength": {
  60693. name: "Paw Length",
  60694. power: 1,
  60695. type: "length",
  60696. base: math.unit(1, "feet")
  60697. },
  60698. }
  60699. },
  60700. back: {
  60701. height: math.unit(5 + 7/12, "feet"),
  60702. name: "Back",
  60703. image: {
  60704. source: "./media/characters/andy/back.svg",
  60705. extra: 618/583,
  60706. bottom: 39/657
  60707. },
  60708. extraAttributes: {
  60709. "pawLength": {
  60710. name: "Paw Length",
  60711. power: 1,
  60712. type: "length",
  60713. base: math.unit(1, "feet")
  60714. },
  60715. }
  60716. },
  60717. paw: {
  60718. height: math.unit(1.13, "feet"),
  60719. name: "Paw",
  60720. image: {
  60721. source: "./media/characters/andy/paw.svg"
  60722. }
  60723. },
  60724. },
  60725. [
  60726. {
  60727. name: "Micro",
  60728. height: math.unit(4, "inches")
  60729. },
  60730. {
  60731. name: "Normal",
  60732. height: math.unit(5 + 7/12, "feet"),
  60733. default: true
  60734. },
  60735. {
  60736. name: "Macro",
  60737. height: math.unit(390.42, "feet")
  60738. },
  60739. ]
  60740. ))
  60741. characterMakers.push(() => makeCharacter(
  60742. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60743. {
  60744. front: {
  60745. height: math.unit(7, "feet"),
  60746. weight: math.unit(250, "lb"),
  60747. name: "Front",
  60748. image: {
  60749. source: "./media/characters/vix-titan/front.svg",
  60750. extra: 460/428,
  60751. bottom: 15/475
  60752. },
  60753. extraAttributes: {
  60754. "pawWidth": {
  60755. name: "Paw Width",
  60756. power: 1,
  60757. type: "length",
  60758. base: math.unit(0.75, "feet")
  60759. },
  60760. }
  60761. },
  60762. },
  60763. [
  60764. {
  60765. name: "Normal",
  60766. height: math.unit(7, "feet"),
  60767. default: true
  60768. },
  60769. {
  60770. name: "Giant",
  60771. height: math.unit(1500, "feet")
  60772. },
  60773. {
  60774. name: "Mega",
  60775. height: math.unit(10, "miles")
  60776. },
  60777. {
  60778. name: "Giga",
  60779. height: math.unit(150, "miles")
  60780. },
  60781. {
  60782. name: "Tera",
  60783. height: math.unit(144000, "miles")
  60784. },
  60785. ]
  60786. ))
  60787. characterMakers.push(() => makeCharacter(
  60788. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60789. {
  60790. front: {
  60791. height: math.unit(6 + 2/12, "feet"),
  60792. name: "Front",
  60793. image: {
  60794. source: "./media/characters/reiku/front.svg",
  60795. extra: 1910/1757,
  60796. bottom: 103/2013
  60797. },
  60798. extraAttributes: {
  60799. "thighThickness": {
  60800. name: "Thigh Thickness",
  60801. power: 1,
  60802. type: "length",
  60803. base: math.unit(1.12, "feet")
  60804. },
  60805. "assThickness": {
  60806. name: "Ass Thickness",
  60807. power: 1,
  60808. type: "length",
  60809. base: math.unit(1.12*2, "feet")
  60810. },
  60811. }
  60812. },
  60813. side: {
  60814. height: math.unit(6 + 2/12, "feet"),
  60815. name: "Side",
  60816. image: {
  60817. source: "./media/characters/reiku/side.svg",
  60818. extra: 1846/1748,
  60819. bottom: 99/1945
  60820. },
  60821. extraAttributes: {
  60822. "thighThickness": {
  60823. name: "Thigh Thickness",
  60824. power: 1,
  60825. type: "length",
  60826. base: math.unit(1.12, "feet")
  60827. },
  60828. "assThickness": {
  60829. name: "Ass Thickness",
  60830. power: 1,
  60831. type: "length",
  60832. base: math.unit(1.12*2, "feet")
  60833. },
  60834. }
  60835. },
  60836. back: {
  60837. height: math.unit(6 + 2/12, "feet"),
  60838. name: "Back",
  60839. image: {
  60840. source: "./media/characters/reiku/back.svg",
  60841. extra: 1941/1786,
  60842. bottom: 34/1975
  60843. },
  60844. extraAttributes: {
  60845. "thighThickness": {
  60846. name: "Thigh Thickness",
  60847. power: 1,
  60848. type: "length",
  60849. base: math.unit(1.12, "feet")
  60850. },
  60851. "assThickness": {
  60852. name: "Ass Thickness",
  60853. power: 1,
  60854. type: "length",
  60855. base: math.unit(1.12*2, "feet")
  60856. },
  60857. }
  60858. },
  60859. head: {
  60860. height: math.unit(1.8, "feet"),
  60861. name: "Head",
  60862. image: {
  60863. source: "./media/characters/reiku/head.svg"
  60864. }
  60865. },
  60866. tailTop: {
  60867. height: math.unit(8.4, "feet"),
  60868. name: "Tail (Top)",
  60869. image: {
  60870. source: "./media/characters/reiku/tail-top.svg"
  60871. }
  60872. },
  60873. tailBottom: {
  60874. height: math.unit(8.4, "feet"),
  60875. name: "Tail (Bottom)",
  60876. image: {
  60877. source: "./media/characters/reiku/tail-bottom.svg"
  60878. }
  60879. },
  60880. foot: {
  60881. height: math.unit(2.6, "feet"),
  60882. name: "Foot",
  60883. image: {
  60884. source: "./media/characters/reiku/foot.svg"
  60885. }
  60886. },
  60887. footCurled: {
  60888. height: math.unit(2.3, "feet"),
  60889. name: "Foot (Curled)",
  60890. image: {
  60891. source: "./media/characters/reiku/foot-curled.svg"
  60892. }
  60893. },
  60894. footSide: {
  60895. height: math.unit(1.26, "feet"),
  60896. name: "Foot (Side)",
  60897. image: {
  60898. source: "./media/characters/reiku/foot-side.svg"
  60899. }
  60900. },
  60901. },
  60902. [
  60903. {
  60904. name: "Normal",
  60905. height: math.unit(6 + 2/12, "feet"),
  60906. default: true
  60907. },
  60908. ]
  60909. ))
  60910. characterMakers.push(() => makeCharacter(
  60911. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60912. {
  60913. front: {
  60914. height: math.unit(7, "feet"),
  60915. weight: math.unit(500, "kg"),
  60916. name: "Front",
  60917. image: {
  60918. source: "./media/characters/cialda/front.svg",
  60919. extra: 912/745,
  60920. bottom: 55/967
  60921. }
  60922. },
  60923. },
  60924. [
  60925. {
  60926. name: "Normal",
  60927. height: math.unit(7, "feet"),
  60928. default: true
  60929. },
  60930. ]
  60931. ))
  60932. characterMakers.push(() => makeCharacter(
  60933. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60934. {
  60935. side: {
  60936. height: math.unit(6, "feet"),
  60937. weight: math.unit(600, "lb"),
  60938. preyCapacity: math.unit(25, "liters"),
  60939. name: "Side",
  60940. image: {
  60941. source: "./media/characters/darkkin/side.svg",
  60942. extra: 1597/1447,
  60943. bottom: 101/1698
  60944. }
  60945. },
  60946. },
  60947. [
  60948. {
  60949. name: "Canon Height",
  60950. height: math.unit(568, "feet"),
  60951. default: true
  60952. },
  60953. ]
  60954. ))
  60955. characterMakers.push(() => makeCharacter(
  60956. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60957. {
  60958. front: {
  60959. height: math.unit(6, "feet"),
  60960. weight: math.unit(1500, "lb"),
  60961. preyCapacity: math.unit(3, "people"),
  60962. name: "Front",
  60963. image: {
  60964. source: "./media/characters/livnia/front.svg",
  60965. extra: 934/932,
  60966. bottom: 83/1017
  60967. }
  60968. },
  60969. back: {
  60970. height: math.unit(6, "feet"),
  60971. weight: math.unit(1500, "lb"),
  60972. preyCapacity: math.unit(3, "people"),
  60973. name: "Back",
  60974. image: {
  60975. source: "./media/characters/livnia/back.svg",
  60976. extra: 916/915,
  60977. bottom: 58/974
  60978. }
  60979. },
  60980. head: {
  60981. height: math.unit(1.53, "feet"),
  60982. name: "Head",
  60983. image: {
  60984. source: "./media/characters/livnia/head.svg"
  60985. }
  60986. },
  60987. maw: {
  60988. height: math.unit(0.78, "feet"),
  60989. name: "Maw",
  60990. image: {
  60991. source: "./media/characters/livnia/maw.svg"
  60992. }
  60993. },
  60994. genitals: {
  60995. height: math.unit(0.35, "feet"),
  60996. name: "Genitals",
  60997. image: {
  60998. source: "./media/characters/livnia/genitals.svg"
  60999. }
  61000. },
  61001. },
  61002. [
  61003. {
  61004. name: "Normal",
  61005. height: math.unit(1000, "feet"),
  61006. default: true
  61007. },
  61008. ]
  61009. ))
  61010. characterMakers.push(() => makeCharacter(
  61011. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61012. {
  61013. front: {
  61014. height: math.unit(4, "feet"),
  61015. weight: math.unit(73, "lb"),
  61016. name: "Front",
  61017. image: {
  61018. source: "./media/characters/hayaku/front.svg",
  61019. extra: 1011/888,
  61020. bottom: 33/1044
  61021. }
  61022. },
  61023. back: {
  61024. height: math.unit(4, "feet"),
  61025. weight: math.unit(73, "lb"),
  61026. name: "Back",
  61027. image: {
  61028. source: "./media/characters/hayaku/back.svg",
  61029. extra: 1040/930,
  61030. bottom: 20/1060
  61031. }
  61032. },
  61033. },
  61034. [
  61035. {
  61036. name: "Normal",
  61037. height: math.unit(4, "feet"),
  61038. default: true
  61039. },
  61040. ]
  61041. ))
  61042. characterMakers.push(() => makeCharacter(
  61043. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61044. {
  61045. front: {
  61046. height: math.unit(6 + 7/12, "feet"),
  61047. weight: math.unit(300, "lb"),
  61048. name: "Front",
  61049. image: {
  61050. source: "./media/characters/athena-bryzant/front.svg",
  61051. extra: 870/835,
  61052. bottom: 33/903
  61053. }
  61054. },
  61055. back: {
  61056. height: math.unit(6 + 7/12, "feet"),
  61057. weight: math.unit(300, "lb"),
  61058. name: "Back",
  61059. image: {
  61060. source: "./media/characters/athena-bryzant/back.svg",
  61061. extra: 858/823,
  61062. bottom: 30/888
  61063. }
  61064. },
  61065. head: {
  61066. height: math.unit(2.38, "feet"),
  61067. name: "Head",
  61068. image: {
  61069. source: "./media/characters/athena-bryzant/head.svg"
  61070. }
  61071. },
  61072. wings: {
  61073. height: math.unit(2.85, "feet"),
  61074. name: "Wings",
  61075. image: {
  61076. source: "./media/characters/athena-bryzant/wings.svg"
  61077. }
  61078. },
  61079. },
  61080. [
  61081. {
  61082. name: "Normal",
  61083. height: math.unit(6 + 7/12, "feet"),
  61084. default: true
  61085. },
  61086. {
  61087. name: "Big",
  61088. height: math.unit(8, "feet")
  61089. },
  61090. {
  61091. name: "Very Big",
  61092. height: math.unit(11, "feet")
  61093. },
  61094. ]
  61095. ))
  61096. characterMakers.push(() => makeCharacter(
  61097. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61098. {
  61099. side: {
  61100. height: math.unit(3, "meters"),
  61101. weight: math.unit(7500, "kg"),
  61102. preyCapacity: math.unit(1e12, "people"),
  61103. name: "Side",
  61104. image: {
  61105. source: "./media/characters/zel-kesh/side.svg",
  61106. extra: 910/407,
  61107. bottom: 147/1057
  61108. }
  61109. },
  61110. },
  61111. [
  61112. {
  61113. name: "Normal",
  61114. height: math.unit(3, "meters"),
  61115. default: true
  61116. },
  61117. ]
  61118. ))
  61119. characterMakers.push(() => makeCharacter(
  61120. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61121. {
  61122. front: {
  61123. height: math.unit(2, "meters"),
  61124. weight: math.unit(95, "kg"),
  61125. name: "Front",
  61126. image: {
  61127. source: "./media/characters/kane-fox/front.svg",
  61128. extra: 945/888,
  61129. bottom: 27/972
  61130. }
  61131. },
  61132. back: {
  61133. height: math.unit(2, "meters"),
  61134. weight: math.unit(95, "kg"),
  61135. name: "Back",
  61136. image: {
  61137. source: "./media/characters/kane-fox/back.svg",
  61138. extra: 959/914,
  61139. bottom: 15/974
  61140. }
  61141. },
  61142. frontLewd: {
  61143. height: math.unit(2, "meters"),
  61144. weight: math.unit(95, "kg"),
  61145. name: "Front (Lewd)",
  61146. image: {
  61147. source: "./media/characters/kane-fox/front-lewd.svg",
  61148. extra: 945/888,
  61149. bottom: 27/972
  61150. }
  61151. },
  61152. },
  61153. [
  61154. {
  61155. name: "Home Size",
  61156. height: math.unit(2, "meters"),
  61157. default: true
  61158. },
  61159. {
  61160. name: "Macro",
  61161. height: math.unit(200, "meters")
  61162. },
  61163. {
  61164. name: "Small Mega",
  61165. height: math.unit(3, "km")
  61166. },
  61167. {
  61168. name: "Mega",
  61169. height: math.unit(50, "km")
  61170. },
  61171. {
  61172. name: "Giga",
  61173. height: math.unit(200, "km")
  61174. },
  61175. {
  61176. name: "Giga+",
  61177. height: math.unit(2500, "km")
  61178. },
  61179. {
  61180. name: "Terra",
  61181. height: math.unit(70000, "km")
  61182. },
  61183. {
  61184. name: "Terra+",
  61185. height: math.unit(150000, "km")
  61186. },
  61187. {
  61188. name: "Terra++",
  61189. height: math.unit(400000, "km")
  61190. },
  61191. ]
  61192. ))
  61193. characterMakers.push(() => makeCharacter(
  61194. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61195. {
  61196. otter_front: {
  61197. height: math.unit(1.8, "meters"),
  61198. weight: math.unit(90, "kg"),
  61199. name: "Front",
  61200. image: {
  61201. source: "./media/characters/ayranus/otter-front.svg",
  61202. extra: 468/452,
  61203. bottom: 43/511
  61204. },
  61205. form: "otter",
  61206. },
  61207. otter_frontLewd: {
  61208. height: math.unit(1.8, "meters"),
  61209. weight: math.unit(90, "kg"),
  61210. name: "Front (Lewd)",
  61211. image: {
  61212. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61213. extra: 468/452,
  61214. bottom: 43/511
  61215. },
  61216. form: "otter",
  61217. },
  61218. lionbat_front: {
  61219. height: math.unit(1.8, "meters"),
  61220. weight: math.unit(90, "kg"),
  61221. name: "Front (Lewd)",
  61222. image: {
  61223. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61224. extra: 797/740,
  61225. bottom: 78/875
  61226. },
  61227. form: "lionbat",
  61228. },
  61229. paw: {
  61230. height: math.unit(1.5, "feet"),
  61231. name: "Paw",
  61232. image: {
  61233. source: "./media/characters/ayranus/paw.svg"
  61234. },
  61235. },
  61236. },
  61237. [
  61238. {
  61239. name: "Incognito",
  61240. height: math.unit(1.8, "meters"),
  61241. allForms: true
  61242. },
  61243. {
  61244. name: "Macro",
  61245. height: math.unit(60, "meters"),
  61246. allForms: true
  61247. },
  61248. {
  61249. name: "Macro+",
  61250. height: math.unit(200, "meters"),
  61251. allForms: true
  61252. },
  61253. {
  61254. name: "Mega",
  61255. height: math.unit(35, "km"),
  61256. allForms: true
  61257. },
  61258. {
  61259. name: "Giga",
  61260. height: math.unit(220, "km"),
  61261. allForms: true
  61262. },
  61263. {
  61264. name: "Giga+",
  61265. height: math.unit(1500, "km"),
  61266. allForms: true
  61267. },
  61268. {
  61269. name: "Terra",
  61270. height: math.unit(13000, "km"),
  61271. allForms: true
  61272. },
  61273. {
  61274. name: "Terra+",
  61275. height: math.unit(500000, "km"),
  61276. allForms: true
  61277. },
  61278. {
  61279. name: "Galactic",
  61280. height: math.unit(486080, "parsecs"),
  61281. default: true,
  61282. allForms: true
  61283. },
  61284. ],
  61285. {
  61286. "otter": {
  61287. name: "Otter",
  61288. default: true
  61289. },
  61290. "lionbat": {
  61291. name: "Lionbat",
  61292. },
  61293. }
  61294. ))
  61295. characterMakers.push(() => makeCharacter(
  61296. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61297. {
  61298. front: {
  61299. height: math.unit(7 + 4/12, "feet"),
  61300. weight: math.unit(400, "lb"),
  61301. name: "Front",
  61302. image: {
  61303. source: "./media/characters/proxy/front.svg",
  61304. extra: 1605/1542,
  61305. bottom: 55/1660
  61306. }
  61307. },
  61308. side: {
  61309. height: math.unit(7 + 4/12, "feet"),
  61310. weight: math.unit(400, "lb"),
  61311. name: "Side",
  61312. image: {
  61313. source: "./media/characters/proxy/side.svg",
  61314. extra: 794/759,
  61315. bottom: 6/800
  61316. }
  61317. },
  61318. hand: {
  61319. height: math.unit(1.54, "feet"),
  61320. name: "Hand",
  61321. image: {
  61322. source: "./media/characters/proxy/hand.svg"
  61323. }
  61324. },
  61325. paw: {
  61326. height: math.unit(1.53, "feet"),
  61327. name: "Paw",
  61328. image: {
  61329. source: "./media/characters/proxy/paw.svg"
  61330. }
  61331. },
  61332. maw: {
  61333. height: math.unit(1.9, "feet"),
  61334. name: "Maw",
  61335. image: {
  61336. source: "./media/characters/proxy/maw.svg"
  61337. }
  61338. },
  61339. },
  61340. [
  61341. {
  61342. name: "Normal",
  61343. height: math.unit(7 + 4/12, "feet"),
  61344. default: true
  61345. },
  61346. ]
  61347. ))
  61348. characterMakers.push(() => makeCharacter(
  61349. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61350. {
  61351. front: {
  61352. height: math.unit(4, "meters"),
  61353. name: "Front",
  61354. image: {
  61355. source: "./media/characters/crocozilla/front.svg",
  61356. extra: 1790/1742,
  61357. bottom: 78/1868
  61358. }
  61359. },
  61360. },
  61361. [
  61362. {
  61363. name: "Normal",
  61364. height: math.unit(4, "meters"),
  61365. default: true
  61366. },
  61367. ]
  61368. ))
  61369. characterMakers.push(() => makeCharacter(
  61370. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61371. {
  61372. front: {
  61373. height: math.unit(1.8, "meters"),
  61374. weight: math.unit(120, "kg"),
  61375. name: "Front",
  61376. image: {
  61377. source: "./media/characters/kurz/front.svg",
  61378. extra: 1960/1824,
  61379. bottom: 41/2001
  61380. }
  61381. },
  61382. back: {
  61383. height: math.unit(1.8, "meters"),
  61384. weight: math.unit(120, "kg"),
  61385. name: "Back",
  61386. image: {
  61387. source: "./media/characters/kurz/back.svg",
  61388. extra: 1906/1787,
  61389. bottom: 60/1966
  61390. }
  61391. },
  61392. frontLewd: {
  61393. height: math.unit(1.8, "meters"),
  61394. weight: math.unit(120, "kg"),
  61395. name: "Front (Lewd)",
  61396. image: {
  61397. source: "./media/characters/kurz/front-lewd.svg",
  61398. extra: 1960/1824,
  61399. bottom: 41/2001
  61400. }
  61401. },
  61402. maw: {
  61403. height: math.unit(0.69, "meters"),
  61404. name: "Maw",
  61405. image: {
  61406. source: "./media/characters/kurz/maw.svg"
  61407. }
  61408. },
  61409. },
  61410. [
  61411. {
  61412. name: "Original Size",
  61413. height: math.unit(1.8, "meters")
  61414. },
  61415. {
  61416. name: "Incognito Size",
  61417. height: math.unit(2.4, "meters"),
  61418. default: true
  61419. },
  61420. {
  61421. name: "Macro",
  61422. height: math.unit(30, "meters")
  61423. },
  61424. {
  61425. name: "Macro+",
  61426. height: math.unit(250, "meters")
  61427. },
  61428. {
  61429. name: "Mega",
  61430. height: math.unit(2, "km")
  61431. },
  61432. {
  61433. name: "Mega+",
  61434. height: math.unit(35, "km")
  61435. },
  61436. {
  61437. name: "Mega++",
  61438. height: math.unit(75, "km")
  61439. },
  61440. {
  61441. name: "Giga",
  61442. height: math.unit(250, "km")
  61443. },
  61444. {
  61445. name: "Terra",
  61446. height: math.unit(15000, "km")
  61447. },
  61448. {
  61449. name: "Terra+",
  61450. height: math.unit(2250000, "km")
  61451. },
  61452. ]
  61453. ))
  61454. characterMakers.push(() => makeCharacter(
  61455. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61456. {
  61457. front: {
  61458. height: math.unit(16 + 3/12, "feet"),
  61459. weight: math.unit(3575, "lb"),
  61460. name: "Front",
  61461. image: {
  61462. source: "./media/characters/nikita/front.svg",
  61463. extra: 1064/955,
  61464. bottom: 47/1111
  61465. }
  61466. },
  61467. },
  61468. [
  61469. {
  61470. name: "Normal",
  61471. height: math.unit(16 + 3/12, "feet"),
  61472. default: true
  61473. },
  61474. {
  61475. name: "Big",
  61476. height: math.unit(21, "feet")
  61477. },
  61478. {
  61479. name: "Biggest",
  61480. height: math.unit(50, "feet")
  61481. },
  61482. ]
  61483. ))
  61484. characterMakers.push(() => makeCharacter(
  61485. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61486. {
  61487. front: {
  61488. height: math.unit(1.92, "m"),
  61489. weight: math.unit(76, "kg"),
  61490. name: "Front",
  61491. image: {
  61492. source: "./media/characters/kyara/front.svg",
  61493. extra: 1550/1438,
  61494. bottom: 139/1689
  61495. }
  61496. },
  61497. back: {
  61498. height: math.unit(1.92, "m"),
  61499. weight: math.unit(76, "kg"),
  61500. name: "Back",
  61501. image: {
  61502. source: "./media/characters/kyara/back.svg",
  61503. extra: 1523/1427,
  61504. bottom: 83/1606
  61505. }
  61506. },
  61507. head: {
  61508. height: math.unit(1.22, "feet"),
  61509. name: "Head",
  61510. image: {
  61511. source: "./media/characters/kyara/head.svg"
  61512. }
  61513. },
  61514. maw: {
  61515. height: math.unit(0.73, "feet"),
  61516. name: "Maw",
  61517. image: {
  61518. source: "./media/characters/kyara/maw.svg"
  61519. }
  61520. },
  61521. paws: {
  61522. height: math.unit(0.95, "feet"),
  61523. name: "Paws",
  61524. image: {
  61525. source: "./media/characters/kyara/paws.svg"
  61526. }
  61527. },
  61528. },
  61529. [
  61530. {
  61531. name: "Normal",
  61532. height: math.unit(1.92, "meters"),
  61533. default: true
  61534. },
  61535. {
  61536. name: "Mini Macro",
  61537. height: math.unit(192, "meters")
  61538. },
  61539. {
  61540. name: "Macro",
  61541. height: math.unit(480, "meters")
  61542. },
  61543. {
  61544. name: "Mega Macro",
  61545. height: math.unit(1440, "meters")
  61546. },
  61547. ]
  61548. ))
  61549. characterMakers.push(() => makeCharacter(
  61550. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61551. {
  61552. front: {
  61553. height: math.unit(6, "feet"),
  61554. weight: math.unit(160, "lbs"),
  61555. preyCapacity: math.unit(0.05, "people"),
  61556. name: "Front",
  61557. image: {
  61558. source: "./media/characters/layla-amari/front.svg",
  61559. extra: 1922/1723,
  61560. bottom: 90/2012
  61561. }
  61562. },
  61563. back: {
  61564. height: math.unit(6, "feet"),
  61565. weight: math.unit(160, "lbs"),
  61566. preyCapacity: math.unit(0.05, "people"),
  61567. name: "Back",
  61568. image: {
  61569. source: "./media/characters/layla-amari/back.svg",
  61570. extra: 1917/1718,
  61571. bottom: 50/1967
  61572. }
  61573. },
  61574. frontDressed: {
  61575. height: math.unit(6, "feet"),
  61576. weight: math.unit(160, "lbs"),
  61577. preyCapacity: math.unit(0.05, "people"),
  61578. name: "Front (Dressed)",
  61579. image: {
  61580. source: "./media/characters/layla-amari/front-dressed.svg",
  61581. extra: 1922/1723,
  61582. bottom: 90/2012
  61583. }
  61584. },
  61585. face: {
  61586. height: math.unit(0.93, "feet"),
  61587. name: "Face",
  61588. image: {
  61589. source: "./media/characters/layla-amari/face.svg"
  61590. }
  61591. },
  61592. hand: {
  61593. height: math.unit(0.66 , "feet"),
  61594. name: "Hand",
  61595. image: {
  61596. source: "./media/characters/layla-amari/hand.svg"
  61597. }
  61598. },
  61599. foot: {
  61600. height: math.unit(1, "feet"),
  61601. name: "Foot",
  61602. image: {
  61603. source: "./media/characters/layla-amari/foot.svg"
  61604. }
  61605. },
  61606. necklace: {
  61607. height: math.unit(0.32, "feet"),
  61608. name: "Necklace",
  61609. image: {
  61610. source: "./media/characters/layla-amari/necklace.svg"
  61611. }
  61612. },
  61613. nipple: {
  61614. height: math.unit(0.2, "feet"),
  61615. name: "Nipple",
  61616. image: {
  61617. source: "./media/characters/layla-amari/nipple.svg"
  61618. }
  61619. },
  61620. slit: {
  61621. height: math.unit(0.26, "feet"),
  61622. name: "Slit",
  61623. image: {
  61624. source: "./media/characters/layla-amari/slit.svg"
  61625. }
  61626. },
  61627. },
  61628. [
  61629. {
  61630. name: "Natural",
  61631. height: math.unit(825, "feet"),
  61632. default: true
  61633. },
  61634. {
  61635. name: "Enhanced",
  61636. height: math.unit(8250, "feet")
  61637. },
  61638. {
  61639. name: "Apparent Size",
  61640. height: math.unit(9.04363e+8, "meters")
  61641. },
  61642. ]
  61643. ))
  61644. characterMakers.push(() => makeCharacter(
  61645. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61646. {
  61647. front: {
  61648. height: math.unit(1.3, "meters"),
  61649. name: "Front",
  61650. image: {
  61651. source: "./media/characters/percy/front.svg",
  61652. extra: 1444/1289,
  61653. bottom: 54/1498
  61654. }
  61655. },
  61656. },
  61657. [
  61658. {
  61659. name: "Normal",
  61660. height: math.unit(1.3, "meters"),
  61661. default: true
  61662. },
  61663. ]
  61664. ))
  61665. characterMakers.push(() => makeCharacter(
  61666. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61667. {
  61668. side: {
  61669. height: math.unit(10, "meters"),
  61670. name: "Side",
  61671. image: {
  61672. source: "./media/characters/grev/side.svg",
  61673. extra: 653/266,
  61674. bottom: 77/730
  61675. }
  61676. },
  61677. head: {
  61678. height: math.unit(16.2, "m"),
  61679. name: "Head",
  61680. image: {
  61681. source: "./media/characters/grev/head.svg"
  61682. }
  61683. },
  61684. dick: {
  61685. height: math.unit(2.8135932034, "m"),
  61686. name: "Dick",
  61687. image: {
  61688. source: "./media/characters/grev/dick.svg"
  61689. }
  61690. },
  61691. },
  61692. [
  61693. {
  61694. name: "Friend-Sized",
  61695. height: math.unit(80, "cm")
  61696. },
  61697. {
  61698. name: "Normal",
  61699. height: math.unit(10, "meters"),
  61700. default: true
  61701. },
  61702. {
  61703. name: "Macro",
  61704. height: math.unit(200, "meters")
  61705. },
  61706. ]
  61707. ))
  61708. characterMakers.push(() => makeCharacter(
  61709. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61710. {
  61711. front: {
  61712. height: math.unit(19.75, "feet"),
  61713. weight: math.unit(20000, "lb"),
  61714. name: "Front",
  61715. image: {
  61716. source: "./media/characters/azuuca/front.svg",
  61717. extra: 1593/1511,
  61718. bottom: 55/1648
  61719. }
  61720. },
  61721. },
  61722. [
  61723. {
  61724. name: "Normal",
  61725. height: math.unit(19.75, "feet"),
  61726. default: true
  61727. },
  61728. ]
  61729. ))
  61730. characterMakers.push(() => makeCharacter(
  61731. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61732. {
  61733. front: {
  61734. height: math.unit(15, "feet"),
  61735. weight: math.unit(1500, "lb"),
  61736. name: "Front",
  61737. image: {
  61738. source: "./media/characters/valuria/front.svg",
  61739. extra: 1588/1486,
  61740. bottom: 31/1619
  61741. }
  61742. },
  61743. },
  61744. [
  61745. {
  61746. name: "Normal",
  61747. height: math.unit(15, "feet"),
  61748. default: true
  61749. },
  61750. {
  61751. name: "Small",
  61752. height: math.unit(500, "feet")
  61753. },
  61754. {
  61755. name: "Macro",
  61756. height: math.unit(4000, "feet")
  61757. },
  61758. {
  61759. name: "Mega Macro",
  61760. height: math.unit(2000, "miles")
  61761. },
  61762. {
  61763. name: "Giga Macro",
  61764. height: math.unit(3e6, "miles")
  61765. },
  61766. ]
  61767. ))
  61768. characterMakers.push(() => makeCharacter(
  61769. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61770. {
  61771. front: {
  61772. height: math.unit(3500, "solarradii"),
  61773. name: "Front",
  61774. image: {
  61775. source: "./media/characters/terigaia/front.svg",
  61776. extra: 1531/1451,
  61777. bottom: 98/1629
  61778. }
  61779. },
  61780. },
  61781. [
  61782. {
  61783. name: "Normal",
  61784. height: math.unit(3500, "solarradii"),
  61785. default: true
  61786. },
  61787. ]
  61788. ))
  61789. characterMakers.push(() => makeCharacter(
  61790. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61791. {
  61792. front: {
  61793. height: math.unit(9.34, "feet"),
  61794. weight: math.unit(600, "lb"),
  61795. name: "Front",
  61796. image: {
  61797. source: "./media/characters/blair-blaziken/front.svg",
  61798. extra: 1557/1462,
  61799. bottom: 55/1612
  61800. }
  61801. },
  61802. },
  61803. [
  61804. {
  61805. name: "Normal",
  61806. height: math.unit(9.34, "feet"),
  61807. default: true
  61808. },
  61809. ]
  61810. ))
  61811. characterMakers.push(() => makeCharacter(
  61812. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61813. {
  61814. pistrogre_front: {
  61815. height: math.unit(10, "feet"),
  61816. weight: math.unit(10, "tons"),
  61817. name: "Front",
  61818. image: {
  61819. source: "./media/characters/braxia/pistrogre-front.svg",
  61820. extra: 1531/1334,
  61821. bottom: 114/1645
  61822. },
  61823. form: "pistrogre",
  61824. default: true
  61825. },
  61826. human_front: {
  61827. height: math.unit(10, "feet"),
  61828. weight: math.unit(10, "tons"),
  61829. name: "Front",
  61830. image: {
  61831. source: "./media/characters/braxia/human-front.svg",
  61832. extra: 1574/1501,
  61833. bottom: 37/1611
  61834. },
  61835. form: "human",
  61836. default: true
  61837. },
  61838. },
  61839. [
  61840. {
  61841. name: "Normal",
  61842. height: math.unit(10, "feet"),
  61843. default: true,
  61844. allForms: true
  61845. },
  61846. {
  61847. name: "Macro",
  61848. height: math.unit(1000, "feet"),
  61849. allForms: true
  61850. },
  61851. {
  61852. name: "Mega Macro",
  61853. height: math.unit(100, "miles"),
  61854. allForms: true
  61855. },
  61856. {
  61857. name: "Cosmic",
  61858. height: math.unit(1000000, "lightyears"),
  61859. allForms: true
  61860. },
  61861. {
  61862. name: "ϐѮԆԬӁꭍϞԢ",
  61863. height: math.unit(1000, "multiverses"),
  61864. allForms: true
  61865. },
  61866. ],
  61867. {
  61868. "pistrogre": {
  61869. name: "Pistrogre",
  61870. default: true
  61871. },
  61872. "human": {
  61873. name: "Human",
  61874. },
  61875. }
  61876. ))
  61877. characterMakers.push(() => makeCharacter(
  61878. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61879. {
  61880. front: {
  61881. height: math.unit(6 + 1/12, "feet"),
  61882. weight: math.unit(280, "lb"),
  61883. name: "Front",
  61884. image: {
  61885. source: "./media/characters/kiriga-yato/front.svg",
  61886. extra: 445/394,
  61887. bottom: 11/456
  61888. }
  61889. },
  61890. },
  61891. [
  61892. {
  61893. name: "Descended",
  61894. height: math.unit(3, "feet")
  61895. },
  61896. {
  61897. name: "Average",
  61898. height: math.unit(6 + 1/12, "feet"),
  61899. default: true
  61900. },
  61901. {
  61902. name: "Ascended",
  61903. height: math.unit(9 + 2/12, "feet")
  61904. },
  61905. ]
  61906. ))
  61907. characterMakers.push(() => makeCharacter(
  61908. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61909. {
  61910. front: {
  61911. height: math.unit(6, "feet"),
  61912. weight: math.unit(150, "lb"),
  61913. name: "Front",
  61914. image: {
  61915. source: "./media/characters/kylie/front.svg",
  61916. extra: 1114/1046,
  61917. bottom: 65/1179
  61918. },
  61919. extraAttributes: {
  61920. "hoofSize": {
  61921. name: "Hoof Size",
  61922. power: 2,
  61923. type: "area",
  61924. base: math.unit(0.034, "m^2")
  61925. },
  61926. "footSize": {
  61927. name: "Foot Size",
  61928. power: 2,
  61929. type: "area",
  61930. base: math.unit(0.75, "m^2")
  61931. },
  61932. }
  61933. },
  61934. side: {
  61935. height: math.unit(6, "feet"),
  61936. weight: math.unit(150, "lb"),
  61937. name: "Side",
  61938. image: {
  61939. source: "./media/characters/kylie/side.svg",
  61940. extra: 1178/1110,
  61941. bottom: 21/1199
  61942. },
  61943. extraAttributes: {
  61944. "hoofSize": {
  61945. name: "Hoof Size",
  61946. power: 2,
  61947. type: "area",
  61948. base: math.unit(0.034, "m^2")
  61949. },
  61950. "footSize": {
  61951. name: "Foot Size",
  61952. power: 2,
  61953. type: "area",
  61954. base: math.unit(0.75, "m^2")
  61955. },
  61956. }
  61957. },
  61958. back: {
  61959. height: math.unit(6, "feet"),
  61960. weight: math.unit(150, "lb"),
  61961. name: "Back",
  61962. image: {
  61963. source: "./media/characters/kylie/back.svg",
  61964. extra: 1115/1047,
  61965. bottom: 66/1181
  61966. },
  61967. extraAttributes: {
  61968. "hoofSize": {
  61969. name: "Hoof Size",
  61970. power: 2,
  61971. type: "area",
  61972. base: math.unit(0.034, "m^2")
  61973. },
  61974. "footSize": {
  61975. name: "Foot Size",
  61976. power: 2,
  61977. type: "area",
  61978. base: math.unit(0.75, "m^2")
  61979. },
  61980. }
  61981. },
  61982. head: {
  61983. height: math.unit(1.85, "feet"),
  61984. name: "Head",
  61985. image: {
  61986. source: "./media/characters/kylie/head.svg"
  61987. }
  61988. },
  61989. },
  61990. [
  61991. {
  61992. name: "Normal",
  61993. height: math.unit(90, "meters"),
  61994. default: true
  61995. },
  61996. ]
  61997. ))
  61998. characterMakers.push(() => makeCharacter(
  61999. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62000. {
  62001. front: {
  62002. height: math.unit(245, "feet"),
  62003. weight: math.unit(400000, "lb"),
  62004. name: "Front",
  62005. image: {
  62006. source: "./media/characters/sabado/front.svg",
  62007. extra: 1309/1164,
  62008. bottom: 29/1338
  62009. }
  62010. },
  62011. },
  62012. [
  62013. {
  62014. name: "Normal",
  62015. height: math.unit(245, "feet"),
  62016. default: true
  62017. },
  62018. ]
  62019. ))
  62020. characterMakers.push(() => makeCharacter(
  62021. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62022. {
  62023. shark_front: {
  62024. height: math.unit(2, "meters"),
  62025. weight: math.unit(200, "kg"),
  62026. name: "Front",
  62027. image: {
  62028. source: "./media/characters/zechal/shark-front.svg",
  62029. extra: 969/925,
  62030. bottom: 74/1043
  62031. },
  62032. form: "shark",
  62033. },
  62034. shark_back: {
  62035. height: math.unit(2, "meters"),
  62036. weight: math.unit(200, "kg"),
  62037. name: "Back",
  62038. image: {
  62039. source: "./media/characters/zechal/shark-back.svg",
  62040. extra: 994/949,
  62041. bottom: 176/1170
  62042. },
  62043. form: "shark",
  62044. },
  62045. shark_frontLewd: {
  62046. height: math.unit(2, "meters"),
  62047. weight: math.unit(200, "kg"),
  62048. name: "Front (Lewd)",
  62049. image: {
  62050. source: "./media/characters/zechal/shark-front-lewd.svg",
  62051. extra: 969/925,
  62052. bottom: 74/1043
  62053. },
  62054. form: "shark",
  62055. },
  62056. shark_side: {
  62057. height: math.unit(1.56, "meters"),
  62058. weight: math.unit(200, "kg"),
  62059. name: "Side",
  62060. image: {
  62061. source: "./media/characters/zechal/shark-side.svg"
  62062. },
  62063. form: "shark",
  62064. },
  62065. dragon_front: {
  62066. height: math.unit(2, "meters"),
  62067. weight: math.unit(200, "kg"),
  62068. name: "Front",
  62069. image: {
  62070. source: "./media/characters/zechal/dragon-front.svg",
  62071. extra: 1041/925,
  62072. bottom: 74/1115
  62073. },
  62074. form: "dragon",
  62075. },
  62076. dragon_back: {
  62077. height: math.unit(2, "meters"),
  62078. weight: math.unit(200, "kg"),
  62079. name: "Back",
  62080. image: {
  62081. source: "./media/characters/zechal/dragon-back.svg",
  62082. extra: 1061/949,
  62083. bottom: 176/1237
  62084. },
  62085. form: "dragon",
  62086. },
  62087. dragon_frontLewd: {
  62088. height: math.unit(2, "meters"),
  62089. weight: math.unit(200, "kg"),
  62090. name: "Front (Lewd)",
  62091. image: {
  62092. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62093. extra: 1041/925,
  62094. bottom: 74/1115
  62095. },
  62096. form: "dragon",
  62097. },
  62098. dragon_side: {
  62099. height: math.unit(1.56, "meters"),
  62100. weight: math.unit(200, "kg"),
  62101. name: "Side",
  62102. image: {
  62103. source: "./media/characters/zechal/dragon-side.svg"
  62104. },
  62105. form: "dragon",
  62106. },
  62107. foot: {
  62108. height: math.unit(0.5, "meters"),
  62109. name: "Foot",
  62110. image: {
  62111. source: "./media/characters/zechal/foot.svg"
  62112. }
  62113. },
  62114. sheathFront: {
  62115. height: math.unit(0.45, "meters"),
  62116. name: "Sheath (Front)",
  62117. image: {
  62118. source: "./media/characters/zechal/sheath-front.svg"
  62119. }
  62120. },
  62121. sheathSide: {
  62122. height: math.unit(0.45, "meters"),
  62123. name: "Sheath (Side)",
  62124. image: {
  62125. source: "./media/characters/zechal/sheath-side.svg"
  62126. }
  62127. },
  62128. },
  62129. [
  62130. {
  62131. name: "Incognito",
  62132. height: math.unit(2, "meters"),
  62133. allForms: true
  62134. },
  62135. {
  62136. name: "Small Rampage",
  62137. height: math.unit(25, "meters"),
  62138. allForms: true
  62139. },
  62140. {
  62141. name: "Home Size",
  62142. height: math.unit(250, "meters"),
  62143. allForms: true,
  62144. default: true
  62145. },
  62146. {
  62147. name: "Macro+",
  62148. height: math.unit(700, "meters"),
  62149. allForms: true
  62150. },
  62151. {
  62152. name: "Small Mega",
  62153. height: math.unit(3, "km"),
  62154. allForms: true
  62155. },
  62156. {
  62157. name: "Mega",
  62158. height: math.unit(15, "km"),
  62159. allForms: true
  62160. },
  62161. {
  62162. name: "Giga",
  62163. height: math.unit(300, "km"),
  62164. allForms: true
  62165. },
  62166. {
  62167. name: "Giga+",
  62168. height: math.unit(1750, "km"),
  62169. allForms: true
  62170. },
  62171. {
  62172. name: "Continental",
  62173. height: math.unit(5000, "km"),
  62174. allForms: true
  62175. },
  62176. {
  62177. name: "Terra",
  62178. height: math.unit(20000, "km"),
  62179. allForms: true
  62180. },
  62181. {
  62182. name: "Terra+",
  62183. height: math.unit(300000, "km"),
  62184. allForms: true
  62185. },
  62186. {
  62187. name: "Solar",
  62188. height: math.unit(40000000, "km"),
  62189. allForms: true
  62190. },
  62191. {
  62192. name: "Galactic",
  62193. height: math.unit(810133, "parsecs"),
  62194. allForms: true
  62195. },
  62196. {
  62197. name: "Universal",
  62198. height: math.unit(25, "universes"),
  62199. allForms: true
  62200. },
  62201. ],
  62202. {
  62203. "shark": {
  62204. name: "Shark",
  62205. default: true
  62206. },
  62207. "dragon": {
  62208. name: "Dragon",
  62209. },
  62210. }
  62211. ))
  62212. characterMakers.push(() => makeCharacter(
  62213. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62214. {
  62215. front: {
  62216. height: math.unit(2.2, "meters"),
  62217. weight: math.unit(150, "kg"),
  62218. name: "Front",
  62219. image: {
  62220. source: "./media/characters/sergis/front.svg",
  62221. extra: 1314/1312,
  62222. bottom: 112/1426
  62223. }
  62224. },
  62225. back: {
  62226. height: math.unit(2.2, "meters"),
  62227. weight: math.unit(150, "kg"),
  62228. name: "Back",
  62229. image: {
  62230. source: "./media/characters/sergis/back.svg",
  62231. extra: 1335/1333,
  62232. bottom: 19/1354
  62233. }
  62234. },
  62235. frontLewd: {
  62236. height: math.unit(2.2, "meters"),
  62237. weight: math.unit(150, "kg"),
  62238. name: "Front (Lewd)",
  62239. image: {
  62240. source: "./media/characters/sergis/front-lewd.svg",
  62241. extra: 1314/1312,
  62242. bottom: 112/1426
  62243. }
  62244. },
  62245. frontDressed: {
  62246. height: math.unit(2.2, "meters"),
  62247. weight: math.unit(150, "kg"),
  62248. name: "Front (Dressed)",
  62249. image: {
  62250. source: "./media/characters/sergis/front-dressed.svg",
  62251. extra: 1330/1328,
  62252. bottom: 95/1425
  62253. }
  62254. },
  62255. frontDressedLewd: {
  62256. height: math.unit(2.2, "meters"),
  62257. weight: math.unit(150, "kg"),
  62258. name: "Front (Dressed, Lewd)",
  62259. image: {
  62260. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62261. extra: 1330/1328,
  62262. bottom: 95/1425
  62263. }
  62264. },
  62265. maw: {
  62266. height: math.unit(0.48, "meters"),
  62267. name: "Maw",
  62268. image: {
  62269. source: "./media/characters/sergis/maw.svg"
  62270. }
  62271. },
  62272. sheath: {
  62273. height: math.unit(0.38, "meters"),
  62274. name: "Sheath",
  62275. image: {
  62276. source: "./media/characters/sergis/sheath.svg"
  62277. }
  62278. },
  62279. },
  62280. [
  62281. {
  62282. name: "Incognito Size",
  62283. height: math.unit(2.2, "meters")
  62284. },
  62285. {
  62286. name: "Small Macro",
  62287. height: math.unit(40, "meters")
  62288. },
  62289. {
  62290. name: "Macro",
  62291. height: math.unit(150, "meters")
  62292. },
  62293. {
  62294. name: "Macro+",
  62295. height: math.unit(300, "meters")
  62296. },
  62297. {
  62298. name: "Mega",
  62299. height: math.unit(2.5, "km")
  62300. },
  62301. {
  62302. name: "Mega+",
  62303. height: math.unit(30, "km")
  62304. },
  62305. {
  62306. name: "Home Size",
  62307. height: math.unit(300, "km"),
  62308. default: true
  62309. },
  62310. {
  62311. name: "Giga+",
  62312. height: math.unit(1000, "km")
  62313. },
  62314. {
  62315. name: "Giga++",
  62316. height: math.unit(6000, "km")
  62317. },
  62318. {
  62319. name: "Terra",
  62320. height: math.unit(70000, "km")
  62321. },
  62322. {
  62323. name: "Terra+",
  62324. height: math.unit(200000, "km")
  62325. },
  62326. {
  62327. name: "Galactic",
  62328. height: math.unit(634200, "lightyears")
  62329. },
  62330. ]
  62331. ))
  62332. characterMakers.push(() => makeCharacter(
  62333. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62334. {
  62335. standard: {
  62336. height: math.unit(1 + 5/12, "feet"),
  62337. name: "Standard",
  62338. image: {
  62339. source: "./media/characters/spade/standard.svg",
  62340. extra: 1794/1703,
  62341. bottom: 115/1909
  62342. }
  62343. },
  62344. disguised: {
  62345. height: math.unit(1 + 5/12, "feet"),
  62346. name: "Disguised",
  62347. image: {
  62348. source: "./media/characters/spade/disguised.svg",
  62349. extra: 1794/1700,
  62350. bottom: 98/1892
  62351. }
  62352. },
  62353. },
  62354. [
  62355. {
  62356. name: "Normal",
  62357. height: math.unit(1 + 5/12, "feet"),
  62358. default: true
  62359. },
  62360. ]
  62361. ))
  62362. characterMakers.push(() => makeCharacter(
  62363. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62364. {
  62365. frontNsfw: {
  62366. height: math.unit(5, "meters"),
  62367. weight: math.unit(2000, "kg"),
  62368. preyCapacity: math.unit(5, "people"),
  62369. name: "Front (NSFW)",
  62370. image: {
  62371. source: "./media/characters/zeanlain/front-nsfw.svg",
  62372. extra: 1087/938,
  62373. bottom: 93/1180
  62374. },
  62375. extraAttributes: {
  62376. "wingspan": {
  62377. name: "Wingspan",
  62378. power: 1,
  62379. type: "length",
  62380. base: math.unit(10, "meters")
  62381. },
  62382. "footSize": {
  62383. name: "Foot Size",
  62384. power: 1,
  62385. type: "length",
  62386. base: math.unit(0.68, "meters")
  62387. },
  62388. "cockLength": {
  62389. name: "Cock Length",
  62390. power: 1,
  62391. type: "length",
  62392. base: math.unit(1.69, "meters")
  62393. },
  62394. "ballVolume": {
  62395. name: "Ball Volume",
  62396. power: 3,
  62397. type: "volume",
  62398. base: math.unit(0.028, "m^3")
  62399. },
  62400. }
  62401. },
  62402. front: {
  62403. height: math.unit(5, "meters"),
  62404. weight: math.unit(2000, "kg"),
  62405. preyCapacity: math.unit(3, "people"),
  62406. name: "Front",
  62407. image: {
  62408. source: "./media/characters/zeanlain/front.svg",
  62409. extra: 1087/938,
  62410. bottom: 93/1180
  62411. },
  62412. extraAttributes: {
  62413. "wingspan": {
  62414. name: "Wingspan",
  62415. power: 1,
  62416. type: "length",
  62417. base: math.unit(10, "meters")
  62418. },
  62419. "footSize": {
  62420. name: "Foot Size",
  62421. power: 1,
  62422. type: "length",
  62423. base: math.unit(0.68, "meters")
  62424. },
  62425. }
  62426. },
  62427. },
  62428. [
  62429. {
  62430. name: "Normal",
  62431. height: math.unit(5, "meters"),
  62432. default: true
  62433. },
  62434. ]
  62435. ))
  62436. characterMakers.push(() => makeCharacter(
  62437. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62438. {
  62439. front: {
  62440. height: math.unit(10, "meters"),
  62441. weight: math.unit(250000, "kg"),
  62442. name: "Front",
  62443. image: {
  62444. source: "./media/characters/airamis/front.svg",
  62445. extra: 865/835,
  62446. bottom: 13/878
  62447. }
  62448. },
  62449. },
  62450. [
  62451. {
  62452. name: "Normal",
  62453. height: math.unit(10, "meters"),
  62454. default: true
  62455. },
  62456. ]
  62457. ))
  62458. characterMakers.push(() => makeCharacter(
  62459. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62460. {
  62461. front: {
  62462. height: math.unit(3 + 3/12, "feet"),
  62463. weight: math.unit(75, "lb"),
  62464. name: "Front",
  62465. image: {
  62466. source: "./media/characters/corra-tourmaline/front.svg",
  62467. extra: 1037/864,
  62468. bottom: 39/1076
  62469. }
  62470. },
  62471. back: {
  62472. height: math.unit(3 + 3/12, "feet"),
  62473. weight: math.unit(75, "lb"),
  62474. name: "Back",
  62475. image: {
  62476. source: "./media/characters/corra-tourmaline/back.svg",
  62477. extra: 1022/849,
  62478. bottom: 26/1048
  62479. }
  62480. },
  62481. dressed: {
  62482. height: math.unit(3 + 3/12, "feet"),
  62483. weight: math.unit(75, "lb"),
  62484. name: "Dressed",
  62485. image: {
  62486. source: "./media/characters/corra-tourmaline/dressed.svg",
  62487. extra: 1037/864,
  62488. bottom: 39/1076
  62489. }
  62490. },
  62491. beans: {
  62492. height: math.unit(0.37, "feet"),
  62493. name: "Beans",
  62494. image: {
  62495. source: "./media/characters/corra-tourmaline/beans.svg"
  62496. }
  62497. },
  62498. },
  62499. [
  62500. {
  62501. name: "Normal",
  62502. height: math.unit(3 + 3/12, "feet"),
  62503. default: true
  62504. },
  62505. {
  62506. name: "Macro",
  62507. height: math.unit(32, "feet")
  62508. },
  62509. ]
  62510. ))
  62511. characterMakers.push(() => makeCharacter(
  62512. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62513. {
  62514. front: {
  62515. height: math.unit(6 + 2/12, "feet"),
  62516. weight: math.unit(203, "lb"),
  62517. name: "Front",
  62518. image: {
  62519. source: "./media/characters/maki-kawa/front.svg",
  62520. extra: 950/890,
  62521. bottom: 62/1012
  62522. }
  62523. },
  62524. back: {
  62525. height: math.unit(6 + 2/12, "feet"),
  62526. weight: math.unit(203, "lb"),
  62527. name: "Back",
  62528. image: {
  62529. source: "./media/characters/maki-kawa/back.svg",
  62530. extra: 953/878,
  62531. bottom: 49/1002
  62532. }
  62533. },
  62534. frontBarista: {
  62535. height: math.unit(6 + 2/12, "feet"),
  62536. weight: math.unit(203, "lb"),
  62537. name: "Front (Barista)",
  62538. image: {
  62539. source: "./media/characters/maki-kawa/front-barista.svg",
  62540. extra: 943/883,
  62541. bottom: 69/1012
  62542. }
  62543. },
  62544. backBarista: {
  62545. height: math.unit(6 + 2/12, "feet"),
  62546. weight: math.unit(203, "lb"),
  62547. name: "Back (Barista)",
  62548. image: {
  62549. source: "./media/characters/maki-kawa/back-barista.svg",
  62550. extra: 953/878,
  62551. bottom: 49/1002
  62552. }
  62553. },
  62554. frontWrestler: {
  62555. height: math.unit(6 + 2/12, "feet"),
  62556. weight: math.unit(203, "lb"),
  62557. name: "Front (Wrestler)",
  62558. image: {
  62559. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62560. extra: 950/890,
  62561. bottom: 62/1012
  62562. }
  62563. },
  62564. backWrestler: {
  62565. height: math.unit(6 + 2/12, "feet"),
  62566. weight: math.unit(203, "lb"),
  62567. name: "Back (Wrestler)",
  62568. image: {
  62569. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62570. extra: 953/878,
  62571. bottom: 49/1002
  62572. }
  62573. },
  62574. headFront: {
  62575. height: math.unit(1.64, "feet"),
  62576. name: "Head (Front)",
  62577. image: {
  62578. source: "./media/characters/maki-kawa/head-front.svg"
  62579. }
  62580. },
  62581. headSide: {
  62582. height: math.unit(1.59, "feet"),
  62583. name: "Head (Side)",
  62584. image: {
  62585. source: "./media/characters/maki-kawa/head-side.svg"
  62586. }
  62587. },
  62588. paw: {
  62589. height: math.unit(0.9, "feet"),
  62590. name: "Paw",
  62591. image: {
  62592. source: "./media/characters/maki-kawa/paw.svg"
  62593. }
  62594. },
  62595. },
  62596. [
  62597. {
  62598. name: "Normal",
  62599. height: math.unit(6 + 2/12, "feet"),
  62600. default: true
  62601. },
  62602. {
  62603. name: "Macro",
  62604. height: math.unit(617, "feet")
  62605. },
  62606. ]
  62607. ))
  62608. characterMakers.push(() => makeCharacter(
  62609. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62610. {
  62611. front: {
  62612. height: math.unit(10, "feet"),
  62613. weight: math.unit(1500, "lb"),
  62614. name: "Front",
  62615. image: {
  62616. source: "./media/characters/lennox/front.svg",
  62617. extra: 1623/1496,
  62618. bottom: 18/1641
  62619. }
  62620. },
  62621. back: {
  62622. height: math.unit(10, "feet"),
  62623. weight: math.unit(1500, "lb"),
  62624. name: "Back",
  62625. image: {
  62626. source: "./media/characters/lennox/back.svg",
  62627. extra: 1641/1481,
  62628. bottom: 13/1654
  62629. }
  62630. },
  62631. maw: {
  62632. height: math.unit(2.94, "feet"),
  62633. name: "Maw",
  62634. image: {
  62635. source: "./media/characters/lennox/maw.svg"
  62636. }
  62637. },
  62638. },
  62639. [
  62640. {
  62641. name: "Micro",
  62642. height: math.unit(1, "inch")
  62643. },
  62644. {
  62645. name: "Normal",
  62646. height: math.unit(10, "feet"),
  62647. default: true
  62648. },
  62649. {
  62650. name: "Macro",
  62651. height: math.unit(200, "feet")
  62652. },
  62653. ]
  62654. ))
  62655. characterMakers.push(() => makeCharacter(
  62656. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62657. {
  62658. frontDressed: {
  62659. height: math.unit(15 + 7/12, "feet"),
  62660. weight: math.unit(5000, "lb"),
  62661. name: "Front (Dressed)",
  62662. image: {
  62663. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62664. extra: 1136/1023,
  62665. bottom: 51/1187
  62666. }
  62667. },
  62668. backDressed: {
  62669. height: math.unit(15 + 7/12, "feet"),
  62670. weight: math.unit(5000, "lb"),
  62671. name: "Back (Dressed)",
  62672. image: {
  62673. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62674. extra: 2359/2143,
  62675. bottom: 103/2462
  62676. }
  62677. },
  62678. front: {
  62679. height: math.unit(15 + 7/12, "feet"),
  62680. weight: math.unit(5000, "lb"),
  62681. name: "Front",
  62682. image: {
  62683. source: "./media/characters/vyse-iron-thunder/front.svg",
  62684. extra: 1136/1023,
  62685. bottom: 51/1187
  62686. }
  62687. },
  62688. hand: {
  62689. height: math.unit(2.36, "feet"),
  62690. name: "Hand",
  62691. image: {
  62692. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62693. }
  62694. },
  62695. foot: {
  62696. height: math.unit(1.72, "feet"),
  62697. name: "Foot",
  62698. image: {
  62699. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62700. }
  62701. },
  62702. mouth: {
  62703. height: math.unit(2, "feet"),
  62704. name: "Mouth",
  62705. image: {
  62706. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62707. }
  62708. },
  62709. eye: {
  62710. height: math.unit(0.58, "feet"),
  62711. name: "Eye",
  62712. image: {
  62713. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62714. }
  62715. },
  62716. },
  62717. [
  62718. {
  62719. name: "Normal",
  62720. height: math.unit(15 + 7/12, "feet"),
  62721. default: true
  62722. },
  62723. {
  62724. name: "Macro",
  62725. height: math.unit(157, "feet")
  62726. },
  62727. {
  62728. name: "Macro+",
  62729. height: math.unit(1570, "feet")
  62730. },
  62731. {
  62732. name: "Macro++",
  62733. height: math.unit(15700, "feet")
  62734. },
  62735. {
  62736. name: "Macro+++",
  62737. height: math.unit(157000, "feet")
  62738. },
  62739. {
  62740. name: "Macro++++",
  62741. height: math.unit(1570000, "feet")
  62742. },
  62743. ]
  62744. ))
  62745. characterMakers.push(() => makeCharacter(
  62746. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62747. {
  62748. side: {
  62749. height: math.unit(6, "feet"),
  62750. weight: math.unit(115, "lb"),
  62751. name: "Side",
  62752. image: {
  62753. source: "./media/characters/moonbeam/side.svg",
  62754. extra: 839/485,
  62755. bottom: 60/899
  62756. }
  62757. },
  62758. },
  62759. [
  62760. {
  62761. name: "Normal",
  62762. height: math.unit(6, "feet"),
  62763. default: true
  62764. },
  62765. ]
  62766. ))
  62767. characterMakers.push(() => makeCharacter(
  62768. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62769. {
  62770. front: {
  62771. height: math.unit(3500, "miles"),
  62772. weight: math.unit(1659, "petatonnes"),
  62773. name: "Front",
  62774. image: {
  62775. source: "./media/characters/baltica/front.svg",
  62776. extra: 429/428,
  62777. bottom: 41/470
  62778. }
  62779. },
  62780. back: {
  62781. height: math.unit(3500, "miles"),
  62782. weight: math.unit(1659, "petatonnes"),
  62783. name: "Back",
  62784. image: {
  62785. source: "./media/characters/baltica/back.svg",
  62786. extra: 452/451,
  62787. bottom: 8/460
  62788. }
  62789. },
  62790. },
  62791. [
  62792. {
  62793. name: "Gigamacro",
  62794. height: math.unit(3500, "miles"),
  62795. default: true
  62796. },
  62797. ]
  62798. ))
  62799. characterMakers.push(() => makeCharacter(
  62800. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62801. {
  62802. front: {
  62803. height: math.unit(6 + 10/12, "feet"),
  62804. weight: math.unit(200, "lb"),
  62805. name: "Front",
  62806. image: {
  62807. source: "./media/characters/shadow-wolf/front.svg",
  62808. extra: 1931/1760,
  62809. bottom: 88/2019
  62810. }
  62811. },
  62812. },
  62813. [
  62814. {
  62815. name: "Normal",
  62816. height: math.unit(6 + 10/12, "feet"),
  62817. default: true
  62818. },
  62819. ]
  62820. ))
  62821. characterMakers.push(() => makeCharacter(
  62822. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62823. {
  62824. front: {
  62825. height: math.unit(5 + 10/12, "feet"),
  62826. name: "Front",
  62827. image: {
  62828. source: "./media/characters/quincy-praying-mantis/front.svg",
  62829. extra: 1055/891,
  62830. bottom: 92/1147
  62831. }
  62832. },
  62833. soles: {
  62834. height: math.unit(0.85, "feet"),
  62835. name: "Soles",
  62836. image: {
  62837. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62838. extra: 429/324,
  62839. bottom: 89/518
  62840. },
  62841. extraAttributes: {
  62842. "shoeSize": {
  62843. name: "Shoe Size",
  62844. power: 1,
  62845. type: "length",
  62846. base: math.unit(23, "ShoeSizeMensUS"),
  62847. defaultUnit: "ShoeSizeMensUS"
  62848. },
  62849. }
  62850. },
  62851. foot: {
  62852. height: math.unit(0.72, "feet"),
  62853. name: "Foot",
  62854. image: {
  62855. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62856. extra: 349/349,
  62857. bottom: 76/425
  62858. }
  62859. },
  62860. },
  62861. [
  62862. {
  62863. name: "Normal",
  62864. height: math.unit(5 + 10/12, "feet"),
  62865. default: true
  62866. },
  62867. ]
  62868. ))
  62869. characterMakers.push(() => makeCharacter(
  62870. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62871. {
  62872. front: {
  62873. height: math.unit(6, "feet"),
  62874. name: "Front",
  62875. image: {
  62876. source: "./media/characters/christopher-redwood/front.svg",
  62877. extra: 1402/1341,
  62878. bottom: 23/1425
  62879. }
  62880. },
  62881. back: {
  62882. height: math.unit(6, "feet"),
  62883. name: "Back",
  62884. image: {
  62885. source: "./media/characters/christopher-redwood/back.svg",
  62886. extra: 1406/1345,
  62887. bottom: 36/1442
  62888. }
  62889. },
  62890. head: {
  62891. height: math.unit(1.685, "feet"),
  62892. name: "Head",
  62893. image: {
  62894. source: "./media/characters/christopher-redwood/head.svg"
  62895. }
  62896. },
  62897. },
  62898. [
  62899. {
  62900. name: "Normal",
  62901. height: math.unit(6, "feet"),
  62902. default: true
  62903. },
  62904. ]
  62905. ))
  62906. characterMakers.push(() => makeCharacter(
  62907. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62908. {
  62909. front: {
  62910. height: math.unit(1.9, "meters"),
  62911. weight: math.unit(140, "lb"),
  62912. name: "Front",
  62913. image: {
  62914. source: "./media/characters/kara-fox/front.svg",
  62915. extra: 766/711,
  62916. bottom: 41/807
  62917. }
  62918. },
  62919. back: {
  62920. height: math.unit(1.9, "meters"),
  62921. weight: math.unit(140, "lb"),
  62922. name: "Back",
  62923. image: {
  62924. source: "./media/characters/kara-fox/back.svg",
  62925. extra: 766/596,
  62926. bottom: 29/795
  62927. }
  62928. },
  62929. maw: {
  62930. height: math.unit(0.78, "feet"),
  62931. name: "Maw",
  62932. image: {
  62933. source: "./media/characters/kara-fox/maw.svg"
  62934. }
  62935. },
  62936. pawpads: {
  62937. height: math.unit(0.96, "feet"),
  62938. name: "Pawpads",
  62939. image: {
  62940. source: "./media/characters/kara-fox/pawpads.svg"
  62941. }
  62942. },
  62943. },
  62944. [
  62945. {
  62946. name: "Normal",
  62947. height: math.unit(1.9, "meters"),
  62948. default: true
  62949. },
  62950. {
  62951. name: "Giantess",
  62952. height: math.unit(80, "meters")
  62953. },
  62954. ]
  62955. ))
  62956. characterMakers.push(() => makeCharacter(
  62957. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62958. {
  62959. front: {
  62960. height: math.unit(12, "feet"),
  62961. name: "Front",
  62962. image: {
  62963. source: "./media/characters/naomi-espeon/front.svg",
  62964. extra: 892/797,
  62965. bottom: 5/897
  62966. }
  62967. },
  62968. back: {
  62969. height: math.unit(12, "feet"),
  62970. name: "Back",
  62971. image: {
  62972. source: "./media/characters/naomi-espeon/back.svg",
  62973. extra: 890/785,
  62974. bottom: 12/902
  62975. }
  62976. },
  62977. },
  62978. [
  62979. {
  62980. name: "Normal",
  62981. height: math.unit(12, "feet"),
  62982. default: true
  62983. },
  62984. ]
  62985. ))
  62986. characterMakers.push(() => makeCharacter(
  62987. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62988. {
  62989. anthro_front: {
  62990. height: math.unit(8, "feet"),
  62991. weight: math.unit(625, "lb"),
  62992. name: "Front",
  62993. image: {
  62994. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62995. extra: 638/574,
  62996. bottom: 73/711
  62997. },
  62998. form: "anthro",
  62999. default: true
  63000. },
  63001. anthro_back: {
  63002. height: math.unit(8, "feet"),
  63003. weight: math.unit(625, "lb"),
  63004. name: "Back",
  63005. image: {
  63006. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63007. extra: 674/614,
  63008. bottom: 7/681
  63009. },
  63010. form: "anthro",
  63011. },
  63012. taur_side: {
  63013. height: math.unit(16, "feet"),
  63014. weight: math.unit(4.5, "tons"),
  63015. name: "Side",
  63016. image: {
  63017. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63018. extra: 704/646,
  63019. bottom: 132/836
  63020. },
  63021. form: "taur",
  63022. default: true
  63023. },
  63024. },
  63025. [
  63026. {
  63027. name: "Normal",
  63028. height: math.unit(8, "feet"),
  63029. default: true,
  63030. form: "anthro"
  63031. },
  63032. {
  63033. name: "Normal",
  63034. height: math.unit(16, "feet"),
  63035. default: true,
  63036. form: "taur"
  63037. },
  63038. ],
  63039. {
  63040. "anthro": {
  63041. name: "Anthro",
  63042. default: true
  63043. },
  63044. "taur": {
  63045. name: "Taur",
  63046. },
  63047. }
  63048. ))
  63049. characterMakers.push(() => makeCharacter(
  63050. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63051. {
  63052. front: {
  63053. height: math.unit(190, "cm"),
  63054. weight: math.unit(110, "kg"),
  63055. name: "Front",
  63056. image: {
  63057. source: "./media/characters/amelie/front.svg",
  63058. extra: 530/442,
  63059. bottom: 35/565
  63060. }
  63061. },
  63062. },
  63063. [
  63064. {
  63065. name: "Normal",
  63066. height: math.unit(190, "cm"),
  63067. default: true
  63068. },
  63069. ]
  63070. ))
  63071. characterMakers.push(() => makeCharacter(
  63072. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63073. {
  63074. front: {
  63075. height: math.unit(21, "feet"),
  63076. weight: math.unit(30000, "lb"),
  63077. name: "Front",
  63078. image: {
  63079. source: "./media/characters/valence/front.svg",
  63080. extra: 1430/1306,
  63081. bottom: 51/1481
  63082. }
  63083. },
  63084. },
  63085. [
  63086. {
  63087. name: "Normal",
  63088. height: math.unit(21, "feet"),
  63089. default: true
  63090. },
  63091. ]
  63092. ))
  63093. characterMakers.push(() => makeCharacter(
  63094. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63095. {
  63096. front: {
  63097. height: math.unit(5 + 9/12, "feet"),
  63098. weight: math.unit(170, "lb"),
  63099. name: "Front",
  63100. image: {
  63101. source: "./media/characters/aurora-adkins/front.svg",
  63102. extra: 1141/1089,
  63103. bottom: 41/1182
  63104. }
  63105. },
  63106. },
  63107. [
  63108. {
  63109. name: "Tiny",
  63110. height: math.unit(7, "mm")
  63111. },
  63112. {
  63113. name: "Small",
  63114. height: math.unit(3.4, "inches")
  63115. },
  63116. {
  63117. name: "Normal",
  63118. height: math.unit(5 + 9/12, "feet"),
  63119. default: true
  63120. },
  63121. {
  63122. name: "Big",
  63123. height: math.unit(31, "feet")
  63124. },
  63125. {
  63126. name: "Giant",
  63127. height: math.unit(300, "feet")
  63128. },
  63129. ]
  63130. ))
  63131. characterMakers.push(() => makeCharacter(
  63132. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63133. {
  63134. front: {
  63135. height: math.unit(5 + 6/12, "feet"),
  63136. weight: math.unit(210, "lb"),
  63137. name: "Front",
  63138. image: {
  63139. source: "./media/characters/cyber/front.svg",
  63140. extra: 1968/1798,
  63141. bottom: 10/1978
  63142. },
  63143. extraAttributes: {
  63144. "shoeSize": {
  63145. name: "Shoe Size",
  63146. power: 1,
  63147. type: "length",
  63148. base: math.unit(30, "ShoeSizeMensUS")
  63149. },
  63150. }
  63151. },
  63152. },
  63153. [
  63154. {
  63155. name: "Normal",
  63156. height: math.unit(5 + 6/12, "feet"),
  63157. default: true
  63158. },
  63159. ]
  63160. ))
  63161. characterMakers.push(() => makeCharacter(
  63162. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63163. {
  63164. front: {
  63165. height: math.unit(6 + 6/12, "feet"),
  63166. weight: math.unit(140, "lb"),
  63167. name: "Front",
  63168. image: {
  63169. source: "./media/characters/sapphire-wairimea/front.svg",
  63170. extra: 475/458,
  63171. bottom: 14/489
  63172. }
  63173. },
  63174. },
  63175. [
  63176. {
  63177. name: "Normal",
  63178. height: math.unit(6 + 6/12, "feet")
  63179. },
  63180. {
  63181. name: "Macro",
  63182. height: math.unit(132, "feet"),
  63183. default: true
  63184. },
  63185. ]
  63186. ))
  63187. characterMakers.push(() => makeCharacter(
  63188. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63189. {
  63190. front: {
  63191. height: math.unit(1.6, "meters"),
  63192. weight: math.unit(100, "lb"),
  63193. name: "Front",
  63194. image: {
  63195. source: "./media/characters/cirkazi/front.svg",
  63196. extra: 489/477,
  63197. bottom: 0/489
  63198. }
  63199. },
  63200. },
  63201. [
  63202. {
  63203. name: "Normal",
  63204. height: math.unit(1.6, "meters")
  63205. },
  63206. {
  63207. name: "Macro",
  63208. height: math.unit(800, "feet"),
  63209. default: true
  63210. },
  63211. ]
  63212. ))
  63213. characterMakers.push(() => makeCharacter(
  63214. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63215. {
  63216. front: {
  63217. height: math.unit(5 + 10/12, "feet"),
  63218. weight: math.unit(145, "lb"),
  63219. name: "Front",
  63220. image: {
  63221. source: "./media/characters/corrin-cavelli/front.svg",
  63222. extra: 483/464,
  63223. bottom: 6/489
  63224. }
  63225. },
  63226. },
  63227. [
  63228. {
  63229. name: "Human",
  63230. height: math.unit(5 + 10/12, "feet")
  63231. },
  63232. {
  63233. name: "Giant",
  63234. height: math.unit(210, "feet"),
  63235. default: true
  63236. },
  63237. ]
  63238. ))
  63239. characterMakers.push(() => makeCharacter(
  63240. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63241. {
  63242. back: {
  63243. height: math.unit(5 + 6/12, "feet"),
  63244. weight: math.unit(115, "lb"),
  63245. name: "Back",
  63246. image: {
  63247. source: "./media/characters/lori-lopez/back.svg",
  63248. extra: 483/474,
  63249. bottom: 6/489
  63250. }
  63251. },
  63252. },
  63253. [
  63254. {
  63255. name: "Human",
  63256. height: math.unit(5 + 6/12, "feet")
  63257. },
  63258. {
  63259. name: "Macro",
  63260. height: math.unit(198, "feet"),
  63261. default: true
  63262. },
  63263. ]
  63264. ))
  63265. characterMakers.push(() => makeCharacter(
  63266. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63267. {
  63268. front: {
  63269. height: math.unit(6, "feet"),
  63270. weight: math.unit(220, "lb"),
  63271. name: "Front",
  63272. image: {
  63273. source: "./media/characters/sylvia-beauregard/front.svg",
  63274. extra: 483/479,
  63275. bottom: 6/489
  63276. }
  63277. },
  63278. },
  63279. [
  63280. {
  63281. name: "Macro",
  63282. height: math.unit(2071, "feet"),
  63283. default: true
  63284. },
  63285. ]
  63286. ))
  63287. characterMakers.push(() => makeCharacter(
  63288. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63289. {
  63290. back: {
  63291. height: math.unit(5 + 6/12, "feet"),
  63292. weight: math.unit(160, "lb"),
  63293. name: "Back",
  63294. image: {
  63295. source: "./media/characters/akiko-takahashi/back.svg",
  63296. extra: 459/454,
  63297. bottom: 27/486
  63298. }
  63299. },
  63300. },
  63301. [
  63302. {
  63303. name: "Human",
  63304. height: math.unit(5 + 6/12, "feet")
  63305. },
  63306. {
  63307. name: "Macro",
  63308. height: math.unit(198, "feet"),
  63309. default: true
  63310. },
  63311. {
  63312. name: "Megamacro",
  63313. height: math.unit(7128, "feet")
  63314. },
  63315. ]
  63316. ))
  63317. characterMakers.push(() => makeCharacter(
  63318. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63319. {
  63320. front: {
  63321. height: math.unit(6, "feet"),
  63322. weight: math.unit(140, "lb"),
  63323. name: "Front",
  63324. image: {
  63325. source: "./media/characters/velvet-garza/front.svg",
  63326. extra: 480/462,
  63327. bottom: 7/487
  63328. }
  63329. },
  63330. },
  63331. [
  63332. {
  63333. name: "Macro",
  63334. height: math.unit(37, "feet"),
  63335. default: true
  63336. },
  63337. ]
  63338. ))
  63339. characterMakers.push(() => makeCharacter(
  63340. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63341. {
  63342. front: {
  63343. height: math.unit(7 + 6/12, "feet"),
  63344. weight: math.unit(400, "lb"),
  63345. name: "Front",
  63346. image: {
  63347. source: "./media/characters/gaia/front.svg",
  63348. extra: 474/463,
  63349. bottom: 13/487
  63350. }
  63351. },
  63352. },
  63353. [
  63354. {
  63355. name: "MiniMacro",
  63356. height: math.unit(7 + 6/12, "feet")
  63357. },
  63358. {
  63359. name: "GigaMacro",
  63360. height: math.unit(14500, "feet"),
  63361. default: true
  63362. },
  63363. ]
  63364. ))
  63365. characterMakers.push(() => makeCharacter(
  63366. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63367. {
  63368. front: {
  63369. height: math.unit(6, "feet"),
  63370. weight: math.unit(150, "lb"),
  63371. name: "Front",
  63372. image: {
  63373. source: "./media/characters/tim/front.svg",
  63374. extra: 1878/1743,
  63375. bottom: 9/1887
  63376. }
  63377. },
  63378. frontDressed: {
  63379. height: math.unit(6, "feet"),
  63380. weight: math.unit(150, "lb"),
  63381. name: "Front (Dressed)",
  63382. image: {
  63383. source: "./media/characters/tim/front-dressed.svg",
  63384. extra: 1765/1485,
  63385. bottom: 48/1813
  63386. }
  63387. },
  63388. backDressed: {
  63389. height: math.unit(6, "feet"),
  63390. weight: math.unit(150, "lb"),
  63391. name: "Back (Dressed)",
  63392. image: {
  63393. source: "./media/characters/tim/back-dressed.svg",
  63394. extra: 1750/1465,
  63395. bottom: 25/1775
  63396. }
  63397. },
  63398. dick: {
  63399. height: math.unit(1.5, "feet"),
  63400. weight: math.unit(6, "lb"),
  63401. name: "Dick",
  63402. image: {
  63403. source: "./media/characters/tim/dick.svg"
  63404. }
  63405. },
  63406. hand: {
  63407. height: math.unit(0.522, "feet"),
  63408. name: "Hand",
  63409. image: {
  63410. source: "./media/characters/tim/hand.svg"
  63411. }
  63412. },
  63413. palm: {
  63414. height: math.unit(0.48, "feet"),
  63415. name: "Palm",
  63416. image: {
  63417. source: "./media/characters/tim/palm.svg"
  63418. }
  63419. },
  63420. paw: {
  63421. height: math.unit(0.9, "feet"),
  63422. name: "Paw",
  63423. image: {
  63424. source: "./media/characters/tim/paw.svg"
  63425. }
  63426. },
  63427. sole: {
  63428. height: math.unit(0.88, "feet"),
  63429. name: "Sole",
  63430. image: {
  63431. source: "./media/characters/tim/sole.svg"
  63432. }
  63433. },
  63434. },
  63435. [
  63436. {
  63437. name: "Macro",
  63438. height: math.unit(1000, "feet")
  63439. },
  63440. {
  63441. name: "Megamacro",
  63442. height: math.unit(10000, "feet"),
  63443. default: true
  63444. },
  63445. {
  63446. name: "Megamacro+",
  63447. height: math.unit(50000, "feet")
  63448. },
  63449. {
  63450. name: "Gigamacro",
  63451. height: math.unit(150000, "km")
  63452. },
  63453. ]
  63454. ))
  63455. characterMakers.push(() => makeCharacter(
  63456. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63457. {
  63458. front: {
  63459. height: math.unit(5 + 8/12, "feet"),
  63460. weight: math.unit(170, "lb"),
  63461. name: "Front",
  63462. image: {
  63463. source: "./media/characters/abel-delreoux/front.svg",
  63464. extra: 1615/1500,
  63465. bottom: 82/1697
  63466. }
  63467. },
  63468. back: {
  63469. height: math.unit(5 + 8/12, "feet"),
  63470. weight: math.unit(170, "lb"),
  63471. name: "Back",
  63472. image: {
  63473. source: "./media/characters/abel-delreoux/back.svg",
  63474. extra: 1644/1534,
  63475. bottom: 24/1668
  63476. }
  63477. },
  63478. casual: {
  63479. height: math.unit(5 + 8/12, "feet"),
  63480. weight: math.unit(170, "lb"),
  63481. name: "Casual",
  63482. image: {
  63483. source: "./media/characters/abel-delreoux/casual.svg",
  63484. extra: 1716/1598,
  63485. bottom: 29/1745
  63486. }
  63487. },
  63488. sleepy: {
  63489. height: math.unit(5 + 8/12, "feet"),
  63490. weight: math.unit(170, "lb"),
  63491. name: "Sleepy",
  63492. image: {
  63493. source: "./media/characters/abel-delreoux/sleepy.svg",
  63494. extra: 1649/1573,
  63495. bottom: 22/1671
  63496. }
  63497. },
  63498. fem: {
  63499. height: math.unit(5 + 8/12, "feet"),
  63500. weight: math.unit(170, "lb"),
  63501. name: "Fem",
  63502. image: {
  63503. source: "./media/characters/abel-delreoux/fem.svg",
  63504. extra: 1680/1564,
  63505. bottom: 17/1697
  63506. }
  63507. },
  63508. hand: {
  63509. height: math.unit(0.78, "feet"),
  63510. name: "Hand",
  63511. image: {
  63512. source: "./media/characters/abel-delreoux/hand.svg"
  63513. }
  63514. },
  63515. paw: {
  63516. height: math.unit(0.78, "feet"),
  63517. name: "Paw",
  63518. image: {
  63519. source: "./media/characters/abel-delreoux/paw.svg"
  63520. }
  63521. },
  63522. },
  63523. [
  63524. {
  63525. name: "Normal",
  63526. height: math.unit(5 + 8/12, "feet"),
  63527. default: true
  63528. },
  63529. ]
  63530. ))
  63531. characterMakers.push(() => makeCharacter(
  63532. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63533. {
  63534. front: {
  63535. height: math.unit(6, "feet"),
  63536. weight: math.unit(159, "lb"),
  63537. name: "Front",
  63538. image: {
  63539. source: "./media/characters/meus/front.svg",
  63540. extra: 938/843,
  63541. bottom: 37/975
  63542. }
  63543. },
  63544. back: {
  63545. height: math.unit(6, "feet"),
  63546. weight: math.unit(159, "lb"),
  63547. name: "Back",
  63548. image: {
  63549. source: "./media/characters/meus/back.svg",
  63550. extra: 967/873,
  63551. bottom: 12/979
  63552. }
  63553. },
  63554. },
  63555. [
  63556. {
  63557. name: "Micro",
  63558. height: math.unit(2, "inches")
  63559. },
  63560. {
  63561. name: "Mini",
  63562. height: math.unit(6, "inches")
  63563. },
  63564. {
  63565. name: "Normal",
  63566. height: math.unit(6, "feet"),
  63567. default: true
  63568. },
  63569. {
  63570. name: "Macro",
  63571. height: math.unit(84, "feet")
  63572. },
  63573. ]
  63574. ))
  63575. characterMakers.push(() => makeCharacter(
  63576. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63577. {
  63578. front: {
  63579. height: math.unit(60, "cm"),
  63580. weight: math.unit(18, "kg"),
  63581. name: "Front",
  63582. image: {
  63583. source: "./media/characters/yamato/front.svg",
  63584. extra: 733/688,
  63585. bottom: 29/762
  63586. }
  63587. },
  63588. },
  63589. [
  63590. {
  63591. name: "Micro",
  63592. height: math.unit(6, "cm")
  63593. },
  63594. {
  63595. name: "Normal",
  63596. height: math.unit(60, "cm"),
  63597. default: true
  63598. },
  63599. ]
  63600. ))
  63601. characterMakers.push(() => makeCharacter(
  63602. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63603. {
  63604. front: {
  63605. height: math.unit(9, "feet"),
  63606. weight: math.unit(518, "lb"),
  63607. name: "Front",
  63608. image: {
  63609. source: "./media/characters/barus/front.svg",
  63610. extra: 1877/1795,
  63611. bottom: 55/1932
  63612. }
  63613. },
  63614. },
  63615. [
  63616. {
  63617. name: "Base Height",
  63618. height: math.unit(9, "feet"),
  63619. default: true
  63620. },
  63621. {
  63622. name: "Large",
  63623. height: math.unit(18, "feet")
  63624. },
  63625. {
  63626. name: "Giant",
  63627. height: math.unit(100, "feet")
  63628. },
  63629. {
  63630. name: "Huge",
  63631. height: math.unit(500, "feet")
  63632. },
  63633. {
  63634. name: "Enormous",
  63635. height: math.unit(300, "meters")
  63636. },
  63637. {
  63638. name: "Deity Among Man",
  63639. height: math.unit(3000, "meters")
  63640. },
  63641. ]
  63642. ))
  63643. characterMakers.push(() => makeCharacter(
  63644. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63645. {
  63646. front: {
  63647. height: math.unit(1.7, "meters"),
  63648. name: "Front",
  63649. image: {
  63650. source: "./media/characters/yari/front.svg",
  63651. extra: 1210/1125,
  63652. bottom: 283/1493
  63653. }
  63654. },
  63655. back: {
  63656. height: math.unit(1.7, "meters"),
  63657. name: "Back",
  63658. image: {
  63659. source: "./media/characters/yari/back.svg",
  63660. extra: 1240/1195,
  63661. bottom: 180/1420
  63662. }
  63663. },
  63664. head: {
  63665. height: math.unit(1.26, "feet"),
  63666. name: "Head",
  63667. image: {
  63668. source: "./media/characters/yari/head.svg"
  63669. }
  63670. },
  63671. },
  63672. [
  63673. {
  63674. name: "Nano",
  63675. height: math.unit(0.5, "mm")
  63676. },
  63677. {
  63678. name: "Micro",
  63679. height: math.unit(3, "inches")
  63680. },
  63681. {
  63682. name: "Short",
  63683. height: math.unit(1.5, "meters")
  63684. },
  63685. {
  63686. name: "Norm",
  63687. height: math.unit(1.7, "meters"),
  63688. default: true
  63689. },
  63690. ]
  63691. ))
  63692. characterMakers.push(() => makeCharacter(
  63693. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63694. {
  63695. front: {
  63696. height: math.unit(5 + 2/12, "feet"),
  63697. weight: math.unit(110, "lb"),
  63698. name: "Front",
  63699. image: {
  63700. source: "./media/characters/salem/front.svg",
  63701. extra: 1895/1800,
  63702. bottom: 23/1918
  63703. }
  63704. },
  63705. back: {
  63706. height: math.unit(5 + 2/12, "feet"),
  63707. weight: math.unit(110, "lb"),
  63708. name: "Back",
  63709. image: {
  63710. source: "./media/characters/salem/back.svg",
  63711. extra: 1875/1802,
  63712. bottom: 20/1895
  63713. }
  63714. },
  63715. head: {
  63716. height: math.unit(1, "feet"),
  63717. name: "Head",
  63718. image: {
  63719. source: "./media/characters/salem/head.svg"
  63720. }
  63721. },
  63722. paw: {
  63723. height: math.unit(0.59, "feet"),
  63724. name: "Paw",
  63725. image: {
  63726. source: "./media/characters/salem/paw.svg"
  63727. }
  63728. },
  63729. beans: {
  63730. height: math.unit(0.66, "feet"),
  63731. name: "Beans",
  63732. image: {
  63733. source: "./media/characters/salem/beans.svg"
  63734. }
  63735. },
  63736. eye: {
  63737. height: math.unit(0.224, "feet"),
  63738. name: "Eye",
  63739. image: {
  63740. source: "./media/characters/salem/eye.svg"
  63741. }
  63742. },
  63743. semiferal: {
  63744. height: math.unit(2.3, "feet"),
  63745. name: "Semiferal",
  63746. image: {
  63747. source: "./media/characters/salem/semiferal.svg",
  63748. extra: 914/839,
  63749. bottom: 32/946
  63750. }
  63751. },
  63752. },
  63753. [
  63754. {
  63755. name: "Micro",
  63756. height: math.unit(4, "inches")
  63757. },
  63758. {
  63759. name: "Normal",
  63760. height: math.unit(5 + 2/12, "feet"),
  63761. default: true
  63762. },
  63763. {
  63764. name: "Macro",
  63765. height: math.unit(108, "feet")
  63766. },
  63767. {
  63768. name: "Macro+",
  63769. height: math.unit(1500, "feet")
  63770. },
  63771. ]
  63772. ))
  63773. characterMakers.push(() => makeCharacter(
  63774. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63775. {
  63776. front: {
  63777. height: math.unit(7 + 6/12, "feet"),
  63778. weight: math.unit(600, "kg"),
  63779. preyCapacity: math.unit(10, "people"),
  63780. name: "Front",
  63781. image: {
  63782. source: "./media/characters/kii/front.svg",
  63783. extra: 3296/3087,
  63784. bottom: 130/3426
  63785. }
  63786. },
  63787. },
  63788. [
  63789. {
  63790. name: "Normal",
  63791. height: math.unit(7 + 6/12, "feet"),
  63792. default: true
  63793. },
  63794. ]
  63795. ))
  63796. characterMakers.push(() => makeCharacter(
  63797. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63798. {
  63799. front: {
  63800. height: math.unit(2, "meters"),
  63801. weight: math.unit(200, "lb"),
  63802. name: "Front",
  63803. image: {
  63804. source: "./media/characters/taffy/front.svg",
  63805. extra: 1666/1618,
  63806. bottom: 157/1823
  63807. }
  63808. },
  63809. back: {
  63810. height: math.unit(2, "meters"),
  63811. weight: math.unit(200, "lb"),
  63812. name: "Back",
  63813. image: {
  63814. source: "./media/characters/taffy/back.svg",
  63815. extra: 1635/1583,
  63816. bottom: 153/1788
  63817. }
  63818. },
  63819. },
  63820. [
  63821. {
  63822. name: "Normal",
  63823. height: math.unit(2, "meters"),
  63824. default: true
  63825. },
  63826. ]
  63827. ))
  63828. characterMakers.push(() => makeCharacter(
  63829. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63830. {
  63831. front: {
  63832. height: math.unit(1.55, "meters"),
  63833. weight: math.unit(60, "kg"),
  63834. name: "Front",
  63835. image: {
  63836. source: "./media/characters/barley/front.svg",
  63837. extra: 1520/1340,
  63838. bottom: 47/1567
  63839. }
  63840. },
  63841. back: {
  63842. height: math.unit(1.55, "meters"),
  63843. weight: math.unit(60, "kg"),
  63844. name: "Back",
  63845. image: {
  63846. source: "./media/characters/barley/back.svg",
  63847. extra: 1543/1341,
  63848. bottom: 12/1555
  63849. }
  63850. },
  63851. feet: {
  63852. height: math.unit(2.18, "feet"),
  63853. name: "Feet",
  63854. image: {
  63855. source: "./media/characters/barley/feet.svg"
  63856. }
  63857. },
  63858. },
  63859. [
  63860. {
  63861. name: "Normal",
  63862. height: math.unit(1.55, "meters"),
  63863. default: true
  63864. },
  63865. ]
  63866. ))
  63867. characterMakers.push(() => makeCharacter(
  63868. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63869. {
  63870. dressed: {
  63871. height: math.unit(6, "feet"),
  63872. name: "Dressed",
  63873. image: {
  63874. source: "./media/characters/lydia-lopez/dressed.svg",
  63875. extra: 1319/1277,
  63876. bottom: 90/1409
  63877. }
  63878. },
  63879. nude: {
  63880. height: math.unit(6, "feet"),
  63881. name: "Nude",
  63882. image: {
  63883. source: "./media/characters/lydia-lopez/nude.svg",
  63884. extra: 1319/1277,
  63885. bottom: 90/1409
  63886. }
  63887. },
  63888. },
  63889. [
  63890. {
  63891. name: "Normal",
  63892. height: math.unit(6, "feet"),
  63893. default: true
  63894. },
  63895. {
  63896. name: "Maximum",
  63897. height: math.unit(2101, "feet")
  63898. },
  63899. ]
  63900. ))
  63901. characterMakers.push(() => makeCharacter(
  63902. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63903. {
  63904. front: {
  63905. height: math.unit(5 + 4/12, "feet"),
  63906. weight: math.unit(250, "lb"),
  63907. volume: math.unit(20, "gallons"),
  63908. name: "Front",
  63909. image: {
  63910. source: "./media/characters/kira-slime/front.svg",
  63911. extra: 442/403,
  63912. bottom: 18/460
  63913. }
  63914. },
  63915. frontNsfw: {
  63916. height: math.unit(5 + 4/12, "feet"),
  63917. weight: math.unit(250, "lb"),
  63918. volume: math.unit(20, "gallons"),
  63919. name: "Front (NSFW)",
  63920. image: {
  63921. source: "./media/characters/kira-slime/front-nsfw.svg",
  63922. extra: 442/403,
  63923. bottom: 18/460
  63924. }
  63925. },
  63926. },
  63927. [
  63928. {
  63929. name: "Droplet",
  63930. height: math.unit(0.0464452, "feet")
  63931. },
  63932. {
  63933. name: "Pint",
  63934. height: math.unit(0.9824, "feet")
  63935. },
  63936. {
  63937. name: "Bucket",
  63938. height: math.unit(2.83, "feet")
  63939. },
  63940. {
  63941. name: "Normal",
  63942. height: math.unit(5 + 4/12, "feet"),
  63943. default: true
  63944. },
  63945. {
  63946. name: "Tub",
  63947. height: math.unit(8.46614, "feet")
  63948. },
  63949. {
  63950. name: "Pool",
  63951. height: math.unit(31.1895, "feet")
  63952. },
  63953. {
  63954. name: "Pond",
  63955. height: math.unit(170.349, "feet")
  63956. },
  63957. {
  63958. name: "Lake",
  63959. height: math.unit(289334, "feet")
  63960. },
  63961. {
  63962. name: "Ocean",
  63963. height: math.unit(1.11940e+7, "feet")
  63964. },
  63965. ]
  63966. ))
  63967. characterMakers.push(() => makeCharacter(
  63968. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63969. {
  63970. front: {
  63971. height: math.unit(5 + 6/12, "feet"),
  63972. weight: math.unit(120, "lb"),
  63973. name: "Front",
  63974. image: {
  63975. source: "./media/characters/holiday/front.svg",
  63976. extra: 456/403,
  63977. bottom: 4/460
  63978. }
  63979. },
  63980. back: {
  63981. height: math.unit(5 + 6/12, "feet"),
  63982. weight: math.unit(120, "lb"),
  63983. name: "Back",
  63984. image: {
  63985. source: "./media/characters/holiday/back.svg",
  63986. extra: 450/404,
  63987. bottom: 12/462
  63988. }
  63989. },
  63990. head: {
  63991. height: math.unit(2.3, "feet"),
  63992. name: "Head",
  63993. image: {
  63994. source: "./media/characters/holiday/head.svg"
  63995. }
  63996. },
  63997. },
  63998. [
  63999. {
  64000. name: "Normal",
  64001. height: math.unit(5 + 6/12, "feet"),
  64002. default: true
  64003. },
  64004. {
  64005. name: "Macro",
  64006. height: math.unit(6574.25, "feet")
  64007. },
  64008. ]
  64009. ))
  64010. characterMakers.push(() => makeCharacter(
  64011. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64012. {
  64013. front: {
  64014. height: math.unit(6 + 2/12, "feet"),
  64015. weight: math.unit(200, "lb"),
  64016. name: "Front",
  64017. image: {
  64018. source: "./media/characters/camina/front.svg",
  64019. extra: 1048/985,
  64020. bottom: 30/1078
  64021. }
  64022. },
  64023. },
  64024. [
  64025. {
  64026. name: "Normal",
  64027. height: math.unit(6 + 2/12, "feet"),
  64028. default: true
  64029. },
  64030. ]
  64031. ))
  64032. characterMakers.push(() => makeCharacter(
  64033. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64034. {
  64035. front: {
  64036. height: math.unit(30, "cm"),
  64037. weight: math.unit(420, "grams"),
  64038. name: "Front",
  64039. image: {
  64040. source: "./media/characters/smuck/front.svg",
  64041. extra: 379/345,
  64042. bottom: 36/415
  64043. }
  64044. },
  64045. },
  64046. [
  64047. {
  64048. name: "Smuck-Sized",
  64049. height: math.unit(30, "cm"),
  64050. default: true
  64051. },
  64052. ]
  64053. ))
  64054. characterMakers.push(() => makeCharacter(
  64055. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64056. {
  64057. frontSfw: {
  64058. height: math.unit(10, "feet"),
  64059. weight: math.unit(1000, "kg"),
  64060. preyCapacity: math.unit(2, "people"),
  64061. name: "Front (SFW)",
  64062. image: {
  64063. source: "./media/characters/bylur/front-sfw.svg",
  64064. extra: 419/343,
  64065. bottom: 3/422
  64066. },
  64067. default: true
  64068. },
  64069. frontSheath: {
  64070. height: math.unit(10, "feet"),
  64071. weight: math.unit(1000, "kg"),
  64072. preyCapacity: math.unit(2, "people"),
  64073. name: "Front (Sheath)",
  64074. image: {
  64075. source: "./media/characters/bylur/front-sheath.svg",
  64076. extra: 419/343,
  64077. bottom: 3/422
  64078. }
  64079. },
  64080. frontErect: {
  64081. height: math.unit(10, "feet"),
  64082. weight: math.unit(1000, "kg"),
  64083. preyCapacity: math.unit(2, "people"),
  64084. name: "Front (Erect)",
  64085. image: {
  64086. source: "./media/characters/bylur/front-erect.svg",
  64087. extra: 419/343,
  64088. bottom: 3/422
  64089. }
  64090. },
  64091. back: {
  64092. height: math.unit(10, "feet"),
  64093. weight: math.unit(1000, "kg"),
  64094. preyCapacity: math.unit(2, "people"),
  64095. name: "Back",
  64096. image: {
  64097. source: "./media/characters/bylur/back.svg",
  64098. extra: 392/315,
  64099. bottom: 3/395
  64100. }
  64101. },
  64102. maw: {
  64103. height: math.unit(3.65, "feet"),
  64104. name: "Maw",
  64105. image: {
  64106. source: "./media/characters/bylur/maw.svg"
  64107. }
  64108. },
  64109. },
  64110. [
  64111. {
  64112. name: "Slightly Human Sized",
  64113. height: math.unit(10, "feet")
  64114. },
  64115. {
  64116. name: "Normal",
  64117. height: math.unit(35, "feet"),
  64118. default: true
  64119. },
  64120. {
  64121. name: "Macro",
  64122. height: math.unit(130, "feet")
  64123. },
  64124. ]
  64125. ))
  64126. characterMakers.push(() => makeCharacter(
  64127. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64128. {
  64129. frontNsfw: {
  64130. height: math.unit(6, "feet"),
  64131. weight: math.unit(250, "lb"),
  64132. preyCapacity: math.unit(0.05, "people"),
  64133. name: "Front (NSFW)",
  64134. image: {
  64135. source: "./media/characters/oarven/front-nsfw.svg",
  64136. extra: 1795/1783,
  64137. bottom: 142/1937
  64138. }
  64139. },
  64140. frontSfw: {
  64141. height: math.unit(6, "feet"),
  64142. weight: math.unit(250, "lb"),
  64143. preyCapacity: math.unit(0.05, "people"),
  64144. name: "Front (SFW)",
  64145. image: {
  64146. source: "./media/characters/oarven/front-sfw.svg",
  64147. extra: 1795/1783,
  64148. bottom: 142/1937
  64149. }
  64150. },
  64151. },
  64152. [
  64153. {
  64154. name: "Megamacro",
  64155. height: math.unit(5, "miles"),
  64156. default: true
  64157. },
  64158. {
  64159. name: "Maximum Height",
  64160. height: math.unit(5, "AUs")
  64161. },
  64162. ]
  64163. ))
  64164. characterMakers.push(() => makeCharacter(
  64165. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64166. {
  64167. side: {
  64168. height: math.unit(1065, "meters"),
  64169. weight: math.unit(1e12, "kg"),
  64170. volume: math.unit(3265000000, "m^3"),
  64171. name: "Side",
  64172. image: {
  64173. source: "./media/characters/solidarity/side.svg"
  64174. }
  64175. },
  64176. front: {
  64177. height: math.unit(1065, "meters"),
  64178. weight: math.unit(3265000000000, "kg"),
  64179. volume: math.unit(3265000000, "m^3"),
  64180. name: "Front",
  64181. image: {
  64182. source: "./media/characters/solidarity/front.svg"
  64183. }
  64184. },
  64185. top: {
  64186. height: math.unit(5823, "meters"),
  64187. weight: math.unit(3265000000000, "kg"),
  64188. volume: math.unit(3265000000, "m^3"),
  64189. name: "Top",
  64190. image: {
  64191. source: "./media/characters/solidarity/top.svg"
  64192. }
  64193. },
  64194. },
  64195. [
  64196. {
  64197. name: "Normal",
  64198. height: math.unit(1065, "meters"),
  64199. default: true
  64200. },
  64201. ]
  64202. ))
  64203. characterMakers.push(() => makeCharacter(
  64204. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64205. {
  64206. side: {
  64207. height: math.unit(18 + 4/12, "feet"),
  64208. weight: math.unit(13000, "kg"),
  64209. name: "Side",
  64210. image: {
  64211. source: "./media/characters/ani'szi/side.svg",
  64212. extra: 468/459,
  64213. bottom: 60/528
  64214. }
  64215. },
  64216. head: {
  64217. height: math.unit(4.8, "feet"),
  64218. name: "Head",
  64219. image: {
  64220. source: "./media/characters/ani'szi/head.svg"
  64221. }
  64222. },
  64223. jaws: {
  64224. height: math.unit(2.25, "feet"),
  64225. name: "Jaws",
  64226. image: {
  64227. source: "./media/characters/ani'szi/jaws.svg"
  64228. }
  64229. },
  64230. bust: {
  64231. height: math.unit(8.9, "feet"),
  64232. name: "Bust",
  64233. image: {
  64234. source: "./media/characters/ani'szi/bust.svg"
  64235. }
  64236. },
  64237. back: {
  64238. height: math.unit(13.53, "feet"),
  64239. name: "Back",
  64240. image: {
  64241. source: "./media/characters/ani'szi/back.svg"
  64242. }
  64243. },
  64244. eye: {
  64245. height: math.unit(0.44, "feet"),
  64246. name: "Eye",
  64247. image: {
  64248. source: "./media/characters/ani'szi/eye.svg"
  64249. }
  64250. },
  64251. },
  64252. [
  64253. {
  64254. name: "Normal",
  64255. height: math.unit(18 + 4/12, "feet"),
  64256. default: true
  64257. },
  64258. ]
  64259. ))
  64260. characterMakers.push(() => makeCharacter(
  64261. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64262. {
  64263. front: {
  64264. height: math.unit(7 + 6/12, "feet"),
  64265. weight: math.unit(300, "lb"),
  64266. name: "Front",
  64267. image: {
  64268. source: "./media/characters/rain/front.svg",
  64269. extra: 2955/2698,
  64270. bottom: 235/3190
  64271. }
  64272. },
  64273. dressed: {
  64274. height: math.unit(7 + 6/12, "feet"),
  64275. weight: math.unit(300, "lb"),
  64276. name: "Dressed",
  64277. image: {
  64278. source: "./media/characters/rain/dressed.svg",
  64279. extra: 2783/2572,
  64280. bottom: 430/3213
  64281. }
  64282. },
  64283. },
  64284. [
  64285. {
  64286. name: "Normal",
  64287. height: math.unit(7 + 6/12, "feet"),
  64288. default: true
  64289. },
  64290. {
  64291. name: "Macro",
  64292. height: math.unit(200, "feet")
  64293. },
  64294. {
  64295. name: "Macro+",
  64296. height: math.unit(500, "feet")
  64297. },
  64298. {
  64299. name: "Megamacro",
  64300. height: math.unit(5, "miles")
  64301. },
  64302. ]
  64303. ))
  64304. characterMakers.push(() => makeCharacter(
  64305. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64306. {
  64307. taur_side: {
  64308. height: math.unit(3, "meters"),
  64309. name: "Side",
  64310. image: {
  64311. source: "./media/characters/anise/taur-side.svg",
  64312. extra: 1833/926,
  64313. bottom: 134/1967
  64314. },
  64315. form: "taur",
  64316. default: true
  64317. },
  64318. feral_side: {
  64319. height: math.unit(3, "meters"),
  64320. name: "Side",
  64321. image: {
  64322. source: "./media/characters/anise/feral-side.svg",
  64323. extra: 681/349,
  64324. bottom: 26/707
  64325. },
  64326. form: "feral"
  64327. },
  64328. },
  64329. [
  64330. {
  64331. name: "Normal",
  64332. height: math.unit(3, "meters"),
  64333. default: true,
  64334. allForms: true
  64335. },
  64336. ],
  64337. {
  64338. "taur": {
  64339. name: "Taur",
  64340. default: true
  64341. },
  64342. "feral": {
  64343. name: "Feral",
  64344. },
  64345. }
  64346. ))
  64347. characterMakers.push(() => makeCharacter(
  64348. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64349. {
  64350. front: {
  64351. height: math.unit(1.9, "meters"),
  64352. weight: math.unit(75, "kg"),
  64353. name: "Front",
  64354. image: {
  64355. source: "./media/characters/sarina/front.svg",
  64356. extra: 1275/1200,
  64357. bottom: 49/1324
  64358. }
  64359. },
  64360. back: {
  64361. height: math.unit(1.9, "meters"),
  64362. weight: math.unit(75, "kg"),
  64363. name: "Back",
  64364. image: {
  64365. source: "./media/characters/sarina/back.svg",
  64366. extra: 1279/1209,
  64367. bottom: 14/1293
  64368. }
  64369. },
  64370. dressed: {
  64371. height: math.unit(1.9, "meters"),
  64372. weight: math.unit(75, "kg"),
  64373. name: "Dressed",
  64374. image: {
  64375. source: "./media/characters/sarina/dressed.svg",
  64376. extra: 1256/1187,
  64377. bottom: 56/1312
  64378. }
  64379. },
  64380. paw: {
  64381. height: math.unit(0.57, "feet"),
  64382. name: "Paw",
  64383. image: {
  64384. source: "./media/characters/sarina/paw.svg"
  64385. }
  64386. },
  64387. toering: {
  64388. height: math.unit(0.27, "feet"),
  64389. name: "Toering",
  64390. image: {
  64391. source: "./media/characters/sarina/toering.svg"
  64392. }
  64393. },
  64394. },
  64395. [
  64396. {
  64397. name: "Incognito",
  64398. height: math.unit(1.9, "meters")
  64399. },
  64400. {
  64401. name: "Home Size",
  64402. height: math.unit(160, "meters"),
  64403. default: true
  64404. },
  64405. {
  64406. name: "Mega",
  64407. height: math.unit(50, "km")
  64408. },
  64409. {
  64410. name: "Small Giga",
  64411. height: math.unit(250, "km")
  64412. },
  64413. {
  64414. name: "Giga (Preferred Size)",
  64415. height: math.unit(3000, "km")
  64416. },
  64417. {
  64418. name: "Terra",
  64419. height: math.unit(40000, "km")
  64420. },
  64421. {
  64422. name: "Terra+",
  64423. height: math.unit(400000, "km")
  64424. },
  64425. {
  64426. name: "Solar",
  64427. height: math.unit(35e6, "km")
  64428. },
  64429. {
  64430. name: "Galactic",
  64431. height: math.unit(648106, "parsecs")
  64432. },
  64433. {
  64434. name: "Universal",
  64435. height: math.unit(7, "universes")
  64436. },
  64437. {
  64438. name: "Universal+",
  64439. height: math.unit(30, "universes")
  64440. },
  64441. ]
  64442. ))
  64443. characterMakers.push(() => makeCharacter(
  64444. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64445. {
  64446. front: {
  64447. height: math.unit(5 + 6/12, "feet"),
  64448. name: "Front",
  64449. image: {
  64450. source: "./media/characters/sifray/front.svg",
  64451. extra: 722/691,
  64452. bottom: 64/786
  64453. }
  64454. },
  64455. },
  64456. [
  64457. {
  64458. name: "Normal",
  64459. height: math.unit(5 + 6/12, "feet"),
  64460. default: true
  64461. },
  64462. ]
  64463. ))
  64464. characterMakers.push(() => makeCharacter(
  64465. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64466. {
  64467. side: {
  64468. height: math.unit(2.64, "feet"),
  64469. weight: math.unit(100, "lb"),
  64470. preyCapacity: math.unit(3, "people"),
  64471. name: "Side",
  64472. image: {
  64473. source: "./media/characters/spots/side.svg",
  64474. extra: 1859/977,
  64475. bottom: 19/1878
  64476. },
  64477. extraAttributes: {
  64478. "preyPerMinute": {
  64479. name: "Prey Per Minute",
  64480. power: 3,
  64481. type: "volume",
  64482. base: math.unit(6, "people"),
  64483. defaultUnit: "people"
  64484. },
  64485. "preyPerDay": {
  64486. name: "Prey Per Day",
  64487. power: 3,
  64488. type: "volume",
  64489. base: math.unit(6 * 60 * 24, "people"),
  64490. defaultUnit: "people"
  64491. },
  64492. }
  64493. },
  64494. },
  64495. [
  64496. {
  64497. name: "Normal",
  64498. height: math.unit(2.64, "feet"),
  64499. default: true
  64500. },
  64501. ]
  64502. ))
  64503. characterMakers.push(() => makeCharacter(
  64504. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64505. {
  64506. front: {
  64507. height: math.unit(29 + 11/12, "feet"),
  64508. weight: math.unit(40, "tons"),
  64509. name: "Front",
  64510. image: {
  64511. source: "./media/characters/mona/front.svg",
  64512. extra: 1257/1116,
  64513. bottom: 34/1291
  64514. }
  64515. },
  64516. },
  64517. [
  64518. {
  64519. name: "Normal",
  64520. height: math.unit(29 + 11/12, "feet"),
  64521. default: true
  64522. },
  64523. ]
  64524. ))
  64525. characterMakers.push(() => makeCharacter(
  64526. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64527. {
  64528. front: {
  64529. height: math.unit(15, "feet"),
  64530. weight: math.unit(3000, "kg"),
  64531. preyCapacity: math.unit(5, "people"),
  64532. name: "Front",
  64533. image: {
  64534. source: "./media/characters/frostfire/front.svg",
  64535. extra: 675/558,
  64536. bottom: 73/748
  64537. }
  64538. },
  64539. side: {
  64540. height: math.unit(15, "feet"),
  64541. weight: math.unit(3000, "kg"),
  64542. preyCapacity: math.unit(5, "people"),
  64543. name: "Side",
  64544. image: {
  64545. source: "./media/characters/frostfire/side.svg",
  64546. extra: 687/585,
  64547. bottom: 50/737
  64548. }
  64549. },
  64550. back: {
  64551. height: math.unit(15, "feet"),
  64552. weight: math.unit(3000, "kg"),
  64553. preyCapacity: math.unit(5, "people"),
  64554. name: "Back",
  64555. image: {
  64556. source: "./media/characters/frostfire/back.svg",
  64557. extra: 707/607,
  64558. bottom: 16/723
  64559. }
  64560. },
  64561. head: {
  64562. height: math.unit(9.35, "feet"),
  64563. name: "Head",
  64564. image: {
  64565. source: "./media/characters/frostfire/head.svg"
  64566. }
  64567. },
  64568. maw: {
  64569. height: math.unit(3.32, "feet"),
  64570. name: "Maw",
  64571. image: {
  64572. source: "./media/characters/frostfire/maw.svg"
  64573. }
  64574. },
  64575. hand: {
  64576. height: math.unit(3.7, "feet"),
  64577. name: "Hand",
  64578. image: {
  64579. source: "./media/characters/frostfire/hand.svg"
  64580. }
  64581. },
  64582. paw: {
  64583. height: math.unit(5.8, "feet"),
  64584. name: "Paw",
  64585. image: {
  64586. source: "./media/characters/frostfire/paw.svg"
  64587. }
  64588. },
  64589. },
  64590. [
  64591. {
  64592. name: "Normal",
  64593. height: math.unit(15, "feet"),
  64594. default: true
  64595. },
  64596. ]
  64597. ))
  64598. characterMakers.push(() => makeCharacter(
  64599. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64600. {
  64601. front: {
  64602. height: math.unit(5 + 2/12, "feet"),
  64603. weight: math.unit(122, "lb"),
  64604. name: "Front",
  64605. image: {
  64606. source: "./media/characters/valeroo/front.svg",
  64607. extra: 1789/1534,
  64608. bottom: 66/1855
  64609. }
  64610. },
  64611. back: {
  64612. height: math.unit(5 + 2/12, "feet"),
  64613. weight: math.unit(122, "lb"),
  64614. name: "Back",
  64615. image: {
  64616. source: "./media/characters/valeroo/back.svg",
  64617. extra: 1848/1588,
  64618. bottom: 68/1916
  64619. }
  64620. },
  64621. head: {
  64622. height: math.unit(1.87, "feet"),
  64623. name: "Head",
  64624. image: {
  64625. source: "./media/characters/valeroo/head.svg"
  64626. }
  64627. },
  64628. hand: {
  64629. height: math.unit(0.82, "feet"),
  64630. name: "Hand",
  64631. image: {
  64632. source: "./media/characters/valeroo/hand.svg"
  64633. }
  64634. },
  64635. foot: {
  64636. height: math.unit(2.42, "feet"),
  64637. name: "Foot",
  64638. image: {
  64639. source: "./media/characters/valeroo/foot.svg"
  64640. }
  64641. },
  64642. },
  64643. [
  64644. {
  64645. name: "Normal",
  64646. height: math.unit(5 + 2/12, "feet"),
  64647. default: true
  64648. },
  64649. ]
  64650. ))
  64651. characterMakers.push(() => makeCharacter(
  64652. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64653. {
  64654. front: {
  64655. height: math.unit(11 + 3/12, "feet"),
  64656. name: "Front",
  64657. image: {
  64658. source: "./media/characters/corrin/front.svg",
  64659. extra: 665/597,
  64660. bottom: 74/739
  64661. }
  64662. },
  64663. },
  64664. [
  64665. {
  64666. name: "Standard",
  64667. height: math.unit(11 + 3/12, "feet"),
  64668. default: true
  64669. },
  64670. {
  64671. name: "The Boss",
  64672. height: math.unit(110, "feet")
  64673. },
  64674. {
  64675. name: "Shipbreaker",
  64676. height: math.unit(38, "km")
  64677. },
  64678. ]
  64679. ))
  64680. //characters
  64681. function makeCharacters() {
  64682. const results = [];
  64683. characterMakers.forEach(character => {
  64684. results.push(character());
  64685. });
  64686. return results;
  64687. }